Class .d.ts comments added

This commit is contained in:
tugcekucukoglu 2024-05-22 16:52:02 +03:00
parent 9c906b4122
commit 145c91adfb
97 changed files with 4744 additions and 858 deletions

View file

@ -10,16 +10,49 @@
import { BaseStyle } from '../../base/style';
export enum ImageClasses {
/**
* Class name of the root element
*/
root = 'p-image',
/**
* Class name of the preview mask element
*/
previewMask = 'p-image-preview-mask',
/**
* Class name of the preview icon element
*/
previewIcon = 'p-image-preview-icon',
/**
* Class name of the mask element
*/
mask = 'p-image-mask',
/**
* Class name of the toolbar element
*/
toolbar = 'p-image-toolbar',
/**
* Class name of the rotate right button element
*/
rotateRightButton = 'p-image-rotate-right-button',
/**
* Class name of the rotate left button element
*/
rotateLeftButton = 'p-image-rotate-left-button',
/**
* Class name of the zoom out button element
*/
zoomOutButton = 'p-image-zoom-out-button',
/**
* Class name of the zoom in button element
*/
zoomInButton = 'p-image-zoom-in-button',
/**
* Class name of the close button element
*/
closeButton = 'p-image-close-button',
/**
* Class name of the original element
*/
original = 'p-image-original'
}