Class .d.ts comments added
parent
9c906b4122
commit
145c91adfb
|
@ -10,6 +10,9 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum AccordionClasses {
|
export enum AccordionClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-accordion'
|
root = 'p-accordion'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,13 @@
|
||||||
import { BaseStyle } from '../../base/style/BaseStyle';
|
import { BaseStyle } from '../../base/style/BaseStyle';
|
||||||
|
|
||||||
export enum AccordionContentClasses {
|
export enum AccordionContentClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-accordioncontent',
|
root = 'p-accordioncontent',
|
||||||
|
/**
|
||||||
|
* Class name of the content element
|
||||||
|
*/
|
||||||
content = 'p-accordioncontent-content'
|
content = 'p-accordioncontent-content'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,13 @@
|
||||||
import { BaseStyle } from '../../base/style/BaseStyle';
|
import { BaseStyle } from '../../base/style/BaseStyle';
|
||||||
|
|
||||||
export enum AccordionHeaderClasses {
|
export enum AccordionHeaderClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-accordionheader',
|
root = 'p-accordionheader',
|
||||||
|
/**
|
||||||
|
* Class name of the toggleicon element
|
||||||
|
*/
|
||||||
toggleicon = 'p-accordionheader-toggle-icon'
|
toggleicon = 'p-accordionheader-toggle-icon'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,9 @@
|
||||||
import { BaseStyle } from '../../base/style/BaseStyle';
|
import { BaseStyle } from '../../base/style/BaseStyle';
|
||||||
|
|
||||||
export enum AccordionPanelClasses {
|
export enum AccordionPanelClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-accordionpanel'
|
root = 'p-accordionpanel'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,19 +10,61 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum AutoCompleteClasses {
|
export enum AutoCompleteClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-autocomplete',
|
root = 'p-autocomplete',
|
||||||
|
/**
|
||||||
|
* Class name of the input element
|
||||||
|
*/
|
||||||
pcInput = 'p-autocomplete-input',
|
pcInput = 'p-autocomplete-input',
|
||||||
|
/**
|
||||||
|
* Class name of the input multiple element
|
||||||
|
*/
|
||||||
inputMultiple = 'p-autocomplete-input-multiple',
|
inputMultiple = 'p-autocomplete-input-multiple',
|
||||||
|
/**
|
||||||
|
* Class name of the chip item element
|
||||||
|
*/
|
||||||
chipItem = 'p-autocomplete-chip-item',
|
chipItem = 'p-autocomplete-chip-item',
|
||||||
|
/**
|
||||||
|
* Class name of the chip element
|
||||||
|
*/
|
||||||
pcChip = 'p-autocomplete-chip',
|
pcChip = 'p-autocomplete-chip',
|
||||||
|
/**
|
||||||
|
* Class name of the chip icon element
|
||||||
|
*/
|
||||||
chipIcon = 'p-autocomplete-chip-icon',
|
chipIcon = 'p-autocomplete-chip-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the input chip element
|
||||||
|
*/
|
||||||
inputChip = 'p-autocomplete-input-chip',
|
inputChip = 'p-autocomplete-input-chip',
|
||||||
|
/**
|
||||||
|
* Class name of the loader element
|
||||||
|
*/
|
||||||
loader = 'p-autocomplete-loader',
|
loader = 'p-autocomplete-loader',
|
||||||
|
/**
|
||||||
|
* Class name of the dropdown element
|
||||||
|
*/
|
||||||
dropdown = 'p-autocomplete-dropdown',
|
dropdown = 'p-autocomplete-dropdown',
|
||||||
|
/**
|
||||||
|
* Class name of the panel element
|
||||||
|
*/
|
||||||
panel = 'p-autocomplete-overlay',
|
panel = 'p-autocomplete-overlay',
|
||||||
|
/**
|
||||||
|
* Class name of the list element
|
||||||
|
*/
|
||||||
list = 'p-autocomplete-list',
|
list = 'p-autocomplete-list',
|
||||||
|
/**
|
||||||
|
* Class name of the option group element
|
||||||
|
*/
|
||||||
optionGroup = 'p-autocomplete-option-group',
|
optionGroup = 'p-autocomplete-option-group',
|
||||||
|
/**
|
||||||
|
* Class name of the option element
|
||||||
|
*/
|
||||||
option = 'p-autocomplete-option',
|
option = 'p-autocomplete-option',
|
||||||
|
/**
|
||||||
|
* Class name of the empty message element
|
||||||
|
*/
|
||||||
emptyMessage = 'p-autocomplete-empty-message'
|
emptyMessage = 'p-autocomplete-empty-message'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,8 +10,17 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum AvatarClasses {
|
export enum AvatarClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-avatar',
|
root = 'p-avatar',
|
||||||
|
/**
|
||||||
|
* Class name of the label element
|
||||||
|
*/
|
||||||
label = 'p-avatar-label',
|
label = 'p-avatar-label',
|
||||||
|
/**
|
||||||
|
* Class name of the icon element
|
||||||
|
*/
|
||||||
icon = 'p-avatar-icon'
|
icon = 'p-avatar-icon'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,9 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum BadgeClasses {
|
export enum BadgeClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-badge'
|
root = 'p-badge'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,9 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum BlockUIClasses {
|
export enum BlockUIClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-blockui'
|
root = 'p-blockui'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,13 +10,37 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum BreadcrumbClasses {
|
export enum BreadcrumbClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-breadcrumb',
|
root = 'p-breadcrumb',
|
||||||
|
/**
|
||||||
|
* Class name of the list element
|
||||||
|
*/
|
||||||
list = 'p-breadcrumb-list',
|
list = 'p-breadcrumb-list',
|
||||||
|
/**
|
||||||
|
* Class name of the home item element
|
||||||
|
*/
|
||||||
homeItem = 'p-breadcrumb-home-item',
|
homeItem = 'p-breadcrumb-home-item',
|
||||||
|
/**
|
||||||
|
* Class name of the separator element
|
||||||
|
*/
|
||||||
separator = 'p-breadcrumb-separator',
|
separator = 'p-breadcrumb-separator',
|
||||||
|
/**
|
||||||
|
* Class name of the item element
|
||||||
|
*/
|
||||||
item = 'p-breadcrumb-item',
|
item = 'p-breadcrumb-item',
|
||||||
|
/**
|
||||||
|
* Class name of the item link element
|
||||||
|
*/
|
||||||
itemLink = 'p-breadcrumb-item-link',
|
itemLink = 'p-breadcrumb-item-link',
|
||||||
|
/**
|
||||||
|
* Class name of the item icon element
|
||||||
|
*/
|
||||||
itemIcon = 'p-breadcrumb-item-icon',
|
itemIcon = 'p-breadcrumb-item-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the item label element
|
||||||
|
*/
|
||||||
itemLabel = 'p-breadcrumb-item-label'
|
itemLabel = 'p-breadcrumb-item-label'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,9 +10,21 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum ButtonClasses {
|
export enum ButtonClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-button',
|
root = 'p-button',
|
||||||
|
/**
|
||||||
|
* Class name of the loading icon element
|
||||||
|
*/
|
||||||
loadingIcon = 'p-button-loading-icon',
|
loadingIcon = 'p-button-loading-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the icon element
|
||||||
|
*/
|
||||||
icon = 'p-button-icon',
|
icon = 'p-button-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the label element
|
||||||
|
*/
|
||||||
label = 'p-button-label'
|
label = 'p-button-label'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,9 @@
|
||||||
import { BaseStyle } from '../../base/style/BaseStyle';
|
import { BaseStyle } from '../../base/style/BaseStyle';
|
||||||
|
|
||||||
export enum ButtonGroupClasses {
|
export enum ButtonGroupClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-buttongroup'
|
root = 'p-buttongroup'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,13 +10,37 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum CardClasses {
|
export enum CardClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-card',
|
root = 'p-card',
|
||||||
|
/**
|
||||||
|
* Class name of the header element
|
||||||
|
*/
|
||||||
header = 'p-card-header',
|
header = 'p-card-header',
|
||||||
|
/**
|
||||||
|
* Class name of the body element
|
||||||
|
*/
|
||||||
body = 'p-card-body',
|
body = 'p-card-body',
|
||||||
|
/**
|
||||||
|
* Class name of the caption element
|
||||||
|
*/
|
||||||
caption = 'p-card-caption',
|
caption = 'p-card-caption',
|
||||||
|
/**
|
||||||
|
* Class name of the title element
|
||||||
|
*/
|
||||||
title = 'p-card-title',
|
title = 'p-card-title',
|
||||||
|
/**
|
||||||
|
* Class name of the subtitle element
|
||||||
|
*/
|
||||||
subtitle = 'p-card-subtitle',
|
subtitle = 'p-card-subtitle',
|
||||||
|
/**
|
||||||
|
* Class name of the content element
|
||||||
|
*/
|
||||||
content = 'p-card-content',
|
content = 'p-card-content',
|
||||||
|
/**
|
||||||
|
* Class name of the footer element
|
||||||
|
*/
|
||||||
footer = 'p-card-footer'
|
footer = 'p-card-footer'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,19 +10,61 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum CarouselClasses {
|
export enum CarouselClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-carousel',
|
root = 'p-carousel',
|
||||||
|
/**
|
||||||
|
* Class name of the header element
|
||||||
|
*/
|
||||||
header = 'p-carousel-header',
|
header = 'p-carousel-header',
|
||||||
|
/**
|
||||||
|
* Class name of the content container element
|
||||||
|
*/
|
||||||
contentContainer = 'p-carousel-content-container',
|
contentContainer = 'p-carousel-content-container',
|
||||||
|
/**
|
||||||
|
* Class name of the content element
|
||||||
|
*/
|
||||||
content = 'p-carousel-content',
|
content = 'p-carousel-content',
|
||||||
|
/**
|
||||||
|
* Class name of the previous button element
|
||||||
|
*/
|
||||||
pcPreviousButton = 'p-carousel-prev-button',
|
pcPreviousButton = 'p-carousel-prev-button',
|
||||||
|
/**
|
||||||
|
* Class name of the viewport element
|
||||||
|
*/
|
||||||
viewport = 'p-carousel-viewport',
|
viewport = 'p-carousel-viewport',
|
||||||
|
/**
|
||||||
|
* Class name of the item list element
|
||||||
|
*/
|
||||||
itemList = 'p-carousel-item-list',
|
itemList = 'p-carousel-item-list',
|
||||||
|
/**
|
||||||
|
* Class name of the item clone element
|
||||||
|
*/
|
||||||
itemClone = 'p-carousel-item-clone',
|
itemClone = 'p-carousel-item-clone',
|
||||||
|
/**
|
||||||
|
* Class name of the item element
|
||||||
|
*/
|
||||||
item = 'p-carousel-item',
|
item = 'p-carousel-item',
|
||||||
|
/**
|
||||||
|
* Class name of the next button element
|
||||||
|
*/
|
||||||
pcNextButton = 'p-carousel-next-button',
|
pcNextButton = 'p-carousel-next-button',
|
||||||
|
/**
|
||||||
|
* Class name of the indicator list element
|
||||||
|
*/
|
||||||
indicatorList = 'p-carousel-indicator-list',
|
indicatorList = 'p-carousel-indicator-list',
|
||||||
|
/**
|
||||||
|
* Class name of the indicator element
|
||||||
|
*/
|
||||||
indicator = 'p-carousel-indicator',
|
indicator = 'p-carousel-indicator',
|
||||||
|
/**
|
||||||
|
* Class name of the indicator button element
|
||||||
|
*/
|
||||||
indicatorButton = 'p-carousel-indicator-button',
|
indicatorButton = 'p-carousel-indicator-button',
|
||||||
|
/**
|
||||||
|
* Class name of the footer element
|
||||||
|
*/
|
||||||
footer = 'p-carousel-footer'
|
footer = 'p-carousel-footer'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,18 +10,57 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum CascadeSelectClasses {
|
export enum CascadeSelectClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-cascadeselect',
|
root = 'p-cascadeselect',
|
||||||
|
/**
|
||||||
|
* Class name of the label element
|
||||||
|
*/
|
||||||
label = 'p-cascadeselect-label',
|
label = 'p-cascadeselect-label',
|
||||||
|
/**
|
||||||
|
* Class name of the dropdown element
|
||||||
|
*/
|
||||||
dropdown = 'p-cascadeselect-dropdown',
|
dropdown = 'p-cascadeselect-dropdown',
|
||||||
|
/**
|
||||||
|
* Class name of the loading icon element
|
||||||
|
*/
|
||||||
loadingIcon = 'p-cascadeselect-loading-icon',
|
loadingIcon = 'p-cascadeselect-loading-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the dropdown icon element
|
||||||
|
*/
|
||||||
dropdownIcon = 'p-cascadeselect-dropdown-icon',
|
dropdownIcon = 'p-cascadeselect-dropdown-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the overlay element
|
||||||
|
*/
|
||||||
overlay = 'p-cascadeselect-overlay',
|
overlay = 'p-cascadeselect-overlay',
|
||||||
|
/**
|
||||||
|
* Class name of the list container element
|
||||||
|
*/
|
||||||
listContainer = 'p-cascadeselect-list-container',
|
listContainer = 'p-cascadeselect-list-container',
|
||||||
|
/**
|
||||||
|
* Class name of the list element
|
||||||
|
*/
|
||||||
list = 'p-cascadeselect-list',
|
list = 'p-cascadeselect-list',
|
||||||
|
/**
|
||||||
|
* Class name of the item element
|
||||||
|
*/
|
||||||
item = 'p-cascadeselect-item',
|
item = 'p-cascadeselect-item',
|
||||||
|
/**
|
||||||
|
* Class name of the item content element
|
||||||
|
*/
|
||||||
itemContent = 'p-cascadeselect-item-content',
|
itemContent = 'p-cascadeselect-item-content',
|
||||||
|
/**
|
||||||
|
* Class name of the item text element
|
||||||
|
*/
|
||||||
itemText = 'p-cascadeselect-item-text',
|
itemText = 'p-cascadeselect-item-text',
|
||||||
|
/**
|
||||||
|
* Class name of the group icon element
|
||||||
|
*/
|
||||||
groupIcon = 'p-cascadeselect-group-icon',
|
groupIcon = 'p-cascadeselect-group-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the item list element
|
||||||
|
*/
|
||||||
itemList = 'p-cascadeselect-item-list'
|
itemList = 'p-cascadeselect-item-list'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,9 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum ChartClasses {
|
export enum ChartClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-chart'
|
root = 'p-chart'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,9 +10,21 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum CheckboxClasses {
|
export enum CheckboxClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-checkbox',
|
root = 'p-checkbox',
|
||||||
|
/**
|
||||||
|
* Class name of the box element
|
||||||
|
*/
|
||||||
box = 'p-checkbox-box',
|
box = 'p-checkbox-box',
|
||||||
|
/**
|
||||||
|
* Class name of the input element
|
||||||
|
*/
|
||||||
input = 'p-checkbox-input',
|
input = 'p-checkbox-input',
|
||||||
|
/**
|
||||||
|
* Class name of the icon element
|
||||||
|
*/
|
||||||
icon = 'p-checkbox-icon'
|
icon = 'p-checkbox-icon'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,10 +10,25 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum ChipClasses {
|
export enum ChipClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-chip',
|
root = 'p-chip',
|
||||||
|
/**
|
||||||
|
* Class name of the image element
|
||||||
|
*/
|
||||||
image = 'p-chip-image',
|
image = 'p-chip-image',
|
||||||
|
/**
|
||||||
|
* Class name of the icon element
|
||||||
|
*/
|
||||||
icon = 'p-chip-icon',
|
icon = 'p-chip-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the label element
|
||||||
|
*/
|
||||||
label = 'p-chip-label',
|
label = 'p-chip-label',
|
||||||
|
/**
|
||||||
|
* Class name of the remove icon element
|
||||||
|
*/
|
||||||
removeIcon = 'p-chip-remove-icon'
|
removeIcon = 'p-chip-remove-icon'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,13 +10,37 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum ColorPickerClasses {
|
export enum ColorPickerClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-colorpicker',
|
root = 'p-colorpicker',
|
||||||
|
/**
|
||||||
|
* Class name of the preview element
|
||||||
|
*/
|
||||||
preview = 'p-colorpicker-preview',
|
preview = 'p-colorpicker-preview',
|
||||||
|
/**
|
||||||
|
* Class name of the panel element
|
||||||
|
*/
|
||||||
panel = 'p-colorpicker-panel',
|
panel = 'p-colorpicker-panel',
|
||||||
|
/**
|
||||||
|
* Class name of the color selector element
|
||||||
|
*/
|
||||||
colorSelector = 'p-colorpicker-color-selector',
|
colorSelector = 'p-colorpicker-color-selector',
|
||||||
|
/**
|
||||||
|
* Class name of the color background element
|
||||||
|
*/
|
||||||
colorBackground = 'p-colorpicker-color-background',
|
colorBackground = 'p-colorpicker-color-background',
|
||||||
|
/**
|
||||||
|
* Class name of the color handle element
|
||||||
|
*/
|
||||||
colorHandle = 'p-colorpicker-color-handle',
|
colorHandle = 'p-colorpicker-color-handle',
|
||||||
|
/**
|
||||||
|
* Class name of the hue element
|
||||||
|
*/
|
||||||
hue = 'p-colorpicker-hue',
|
hue = 'p-colorpicker-hue',
|
||||||
|
/**
|
||||||
|
* Class name of the hue handle element
|
||||||
|
*/
|
||||||
hueHandle = 'p-colorpicker-hue-handle'
|
hueHandle = 'p-colorpicker-hue-handle'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,10 +10,25 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum ConfirmDialogClasses {
|
export enum ConfirmDialogClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-confirmdialog',
|
root = 'p-confirmdialog',
|
||||||
|
/**
|
||||||
|
* Class name of the icon element
|
||||||
|
*/
|
||||||
icon = 'p-confirmdialog-icon',
|
icon = 'p-confirmdialog-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the message element
|
||||||
|
*/
|
||||||
message = 'p-confirmdialog-message',
|
message = 'p-confirmdialog-message',
|
||||||
|
/**
|
||||||
|
* Class name of the reject button element
|
||||||
|
*/
|
||||||
pcRejectButton = 'p-confirmdialog-reject-button',
|
pcRejectButton = 'p-confirmdialog-reject-button',
|
||||||
|
/**
|
||||||
|
* Class name of the accept button element
|
||||||
|
*/
|
||||||
pcAcceptButton = 'p-confirmdialog-accept-button'
|
pcAcceptButton = 'p-confirmdialog-accept-button'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,12 +10,33 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum ConfirmPopupClasses {
|
export enum ConfirmPopupClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-confirmpopup',
|
root = 'p-confirmpopup',
|
||||||
|
/**
|
||||||
|
* Class name of the content element
|
||||||
|
*/
|
||||||
content = 'p-confirmpopup-content',
|
content = 'p-confirmpopup-content',
|
||||||
|
/**
|
||||||
|
* Class name of the icon element
|
||||||
|
*/
|
||||||
icon = 'p-confirmpopup-icon',
|
icon = 'p-confirmpopup-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the message element
|
||||||
|
*/
|
||||||
message = 'p-confirmpopup-message',
|
message = 'p-confirmpopup-message',
|
||||||
|
/**
|
||||||
|
* Class name of the footer element
|
||||||
|
*/
|
||||||
footer = 'p-confirmpopup-footer',
|
footer = 'p-confirmpopup-footer',
|
||||||
|
/**
|
||||||
|
* Class name of the reject button element
|
||||||
|
*/
|
||||||
pcRejectButton = 'p-confirmpopup-reject-button',
|
pcRejectButton = 'p-confirmpopup-reject-button',
|
||||||
|
/**
|
||||||
|
* Class name of the accept button element
|
||||||
|
*/
|
||||||
pcAcceptButton = 'p-confirmpopup-accept-button'
|
pcAcceptButton = 'p-confirmpopup-accept-button'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -11,15 +11,45 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum ContextMenuClasses {
|
export enum ContextMenuClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-contextmenu',
|
root = 'p-contextmenu',
|
||||||
|
/**
|
||||||
|
* Class name of the root list element
|
||||||
|
*/
|
||||||
rootList = 'p-contextmenu-root-list',
|
rootList = 'p-contextmenu-root-list',
|
||||||
|
/**
|
||||||
|
* Class name of the item element
|
||||||
|
*/
|
||||||
item = 'p-contextmenu-item',
|
item = 'p-contextmenu-item',
|
||||||
|
/**
|
||||||
|
* Class name of the item content element
|
||||||
|
*/
|
||||||
itemContent = 'p-contextmenu-item-content',
|
itemContent = 'p-contextmenu-item-content',
|
||||||
|
/**
|
||||||
|
* Class name of the item link element
|
||||||
|
*/
|
||||||
itemLink = 'p-contextmenu-item-link',
|
itemLink = 'p-contextmenu-item-link',
|
||||||
|
/**
|
||||||
|
* Class name of the item icon element
|
||||||
|
*/
|
||||||
itemIcon = 'p-contextmenu-item-icon',
|
itemIcon = 'p-contextmenu-item-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the item label element
|
||||||
|
*/
|
||||||
itemLabel = 'p-contextmenu-item-label',
|
itemLabel = 'p-contextmenu-item-label',
|
||||||
|
/**
|
||||||
|
* Class name of the submenu icon element
|
||||||
|
*/
|
||||||
submenuIcon = 'p-contextmenu-submenu-icon',
|
submenuIcon = 'p-contextmenu-submenu-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the submenu element
|
||||||
|
*/
|
||||||
submenu = 'p-contextmenu-submenu',
|
submenu = 'p-contextmenu-submenu',
|
||||||
|
/**
|
||||||
|
* Class name of the separator element
|
||||||
|
*/
|
||||||
separator = 'p-contextmenu-separator'
|
separator = 'p-contextmenu-separator'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,53 +10,194 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum DataTableClasses {
|
export enum DataTableClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-datatable',
|
root = 'p-datatable',
|
||||||
|
/**
|
||||||
|
* Class name of the mask element
|
||||||
|
*/
|
||||||
mask = 'p-datatable-mask',
|
mask = 'p-datatable-mask',
|
||||||
|
/**
|
||||||
|
* Class name of the loading icon element
|
||||||
|
*/
|
||||||
loadingIcon = 'p-datatable-loading-icon',
|
loadingIcon = 'p-datatable-loading-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the header element
|
||||||
|
*/
|
||||||
header = 'p-datatable-header',
|
header = 'p-datatable-header',
|
||||||
|
/**
|
||||||
|
* Class name of the paginator element
|
||||||
|
*/
|
||||||
pcPaginator = 'p-datatable-paginator-[position]',
|
pcPaginator = 'p-datatable-paginator-[position]',
|
||||||
|
/**
|
||||||
|
* Class name of the table container element
|
||||||
|
*/
|
||||||
tableContainer = 'p-datatable-table-container',
|
tableContainer = 'p-datatable-table-container',
|
||||||
|
/**
|
||||||
|
* Class name of the table element
|
||||||
|
*/
|
||||||
table = 'p-datatable-table',
|
table = 'p-datatable-table',
|
||||||
|
/**
|
||||||
|
* Class name of the thead element
|
||||||
|
*/
|
||||||
thead = 'p-datatable-thead',
|
thead = 'p-datatable-thead',
|
||||||
|
/**
|
||||||
|
* Class name of the column resizer element
|
||||||
|
*/
|
||||||
columnResizer = 'p-datatable-column-resizer',
|
columnResizer = 'p-datatable-column-resizer',
|
||||||
|
/**
|
||||||
|
* Class name of the column header content element
|
||||||
|
*/
|
||||||
columnHeaderContent = 'p-datatable-column-header-content',
|
columnHeaderContent = 'p-datatable-column-header-content',
|
||||||
|
/**
|
||||||
|
* Class name of the column title element
|
||||||
|
*/
|
||||||
columnTitle = 'p-datatable-column-title',
|
columnTitle = 'p-datatable-column-title',
|
||||||
|
/**
|
||||||
|
* Class name of the sort icon element
|
||||||
|
*/
|
||||||
sortIcon = 'p-datatable-sort-icon',
|
sortIcon = 'p-datatable-sort-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the sort badge element
|
||||||
|
*/
|
||||||
pcSortBadge = 'p-datatable-sort-badge',
|
pcSortBadge = 'p-datatable-sort-badge',
|
||||||
|
/**
|
||||||
|
* Class name of the filter element
|
||||||
|
*/
|
||||||
filter = 'p-datatable-filter',
|
filter = 'p-datatable-filter',
|
||||||
|
/**
|
||||||
|
* Class name of the filter element container element
|
||||||
|
*/
|
||||||
filterElementContainer = 'p-datatable-filter-element-container',
|
filterElementContainer = 'p-datatable-filter-element-container',
|
||||||
|
/**
|
||||||
|
* Class name of the column filter button element
|
||||||
|
*/
|
||||||
pcColumnFilterButton = 'p-datatable-column-filter-button',
|
pcColumnFilterButton = 'p-datatable-column-filter-button',
|
||||||
|
/**
|
||||||
|
* Class name of the column filter clear button element
|
||||||
|
*/
|
||||||
pcColumnFilterClearButton = 'p-datatable-column-filter-clear-button',
|
pcColumnFilterClearButton = 'p-datatable-column-filter-clear-button',
|
||||||
|
/**
|
||||||
|
* Class name of the filter overlay element
|
||||||
|
*/
|
||||||
filterOverlay = 'p-datatable-filter-overlay',
|
filterOverlay = 'p-datatable-filter-overlay',
|
||||||
|
/**
|
||||||
|
* Class name of the filter constraint list element
|
||||||
|
*/
|
||||||
filterConstraintList = 'p-datatable-filter-constraint-list',
|
filterConstraintList = 'p-datatable-filter-constraint-list',
|
||||||
|
/**
|
||||||
|
* Class name of the filter constraint element
|
||||||
|
*/
|
||||||
filterConstraint = 'p-datatable-filter-constraint',
|
filterConstraint = 'p-datatable-filter-constraint',
|
||||||
|
/**
|
||||||
|
* Class name of the filter constraint separator element
|
||||||
|
*/
|
||||||
filterConstraintSeparator = 'p-datatable-filter-constraint-separator',
|
filterConstraintSeparator = 'p-datatable-filter-constraint-separator',
|
||||||
|
/**
|
||||||
|
* Class name of the filter operator element
|
||||||
|
*/
|
||||||
filterOperator = 'p-datatable-filter-operator',
|
filterOperator = 'p-datatable-filter-operator',
|
||||||
|
/**
|
||||||
|
* Class name of the filter operator dropdown element
|
||||||
|
*/
|
||||||
pcFilterOperatorDropdown = 'p-datatable-filter-operator-dropdown',
|
pcFilterOperatorDropdown = 'p-datatable-filter-operator-dropdown',
|
||||||
|
/**
|
||||||
|
* Class name of the filter rule list element
|
||||||
|
*/
|
||||||
filterRuleList = 'p-datatable-filter-rule-list',
|
filterRuleList = 'p-datatable-filter-rule-list',
|
||||||
|
/**
|
||||||
|
* Class name of the filter rule element
|
||||||
|
*/
|
||||||
filterRule = 'p-datatable-filter-rule',
|
filterRule = 'p-datatable-filter-rule',
|
||||||
|
/**
|
||||||
|
* Class name of the filter constraint dropdown element
|
||||||
|
*/
|
||||||
pcFilterConstraintDropdown = 'p-datatable-filter-constraint-dropdown',
|
pcFilterConstraintDropdown = 'p-datatable-filter-constraint-dropdown',
|
||||||
|
/**
|
||||||
|
* Class name of the filter remove rule button element
|
||||||
|
*/
|
||||||
pcFilterRemoveRuleButton = 'p-datatable-filter-remove-rule-button',
|
pcFilterRemoveRuleButton = 'p-datatable-filter-remove-rule-button',
|
||||||
pcFilterAddButton = 'p-column-filter-add-button',
|
pcFilterAddButton = 'p-column-filter-add-button',
|
||||||
|
/**
|
||||||
|
* Class name of the filter buttonbar element
|
||||||
|
*/
|
||||||
filterButtonbar = 'p-datatable-filter-buttonbar',
|
filterButtonbar = 'p-datatable-filter-buttonbar',
|
||||||
|
/**
|
||||||
|
* Class name of the filter clear button element
|
||||||
|
*/
|
||||||
pcFilterClearButton = 'p-datatable-filter-clear-button',
|
pcFilterClearButton = 'p-datatable-filter-clear-button',
|
||||||
|
/**
|
||||||
|
* Class name of the filter apply button element
|
||||||
|
*/
|
||||||
pcFilterApplyButton = 'p-datatable-filter-apply-button',
|
pcFilterApplyButton = 'p-datatable-filter-apply-button',
|
||||||
|
/**
|
||||||
|
* Class name of the tbody element
|
||||||
|
*/
|
||||||
tbody = 'p-datatable-tbody',
|
tbody = 'p-datatable-tbody',
|
||||||
|
/**
|
||||||
|
* Class name of the row group header element
|
||||||
|
*/
|
||||||
rowGroupHeader = 'p-datatable-row-group-header',
|
rowGroupHeader = 'p-datatable-row-group-header',
|
||||||
|
/**
|
||||||
|
* Class name of the row toggle button element
|
||||||
|
*/
|
||||||
rowToggleButton = 'p-datatable-row-toggle-button',
|
rowToggleButton = 'p-datatable-row-toggle-button',
|
||||||
|
/**
|
||||||
|
* Class name of the row toggle icon element
|
||||||
|
*/
|
||||||
rowToggleIcon = 'p-datatable-row-toggle-icon',
|
rowToggleIcon = 'p-datatable-row-toggle-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the row expansion element
|
||||||
|
*/
|
||||||
rowExpansion = 'p-datatable-row-expansion',
|
rowExpansion = 'p-datatable-row-expansion',
|
||||||
|
/**
|
||||||
|
* Class name of the row group footer element
|
||||||
|
*/
|
||||||
rowGroupFooter = 'p-datatable-row-group-footer',
|
rowGroupFooter = 'p-datatable-row-group-footer',
|
||||||
|
/**
|
||||||
|
* Class name of the empty message element
|
||||||
|
*/
|
||||||
emptyMessage = 'p-datatable-empty-message',
|
emptyMessage = 'p-datatable-empty-message',
|
||||||
|
/**
|
||||||
|
* Class name of the reorderable row handle element
|
||||||
|
*/
|
||||||
reorderableRowHandle = 'p-datatable-reorderable-row-handle',
|
reorderableRowHandle = 'p-datatable-reorderable-row-handle',
|
||||||
|
/**
|
||||||
|
* Class name of the row editor init element
|
||||||
|
*/
|
||||||
pcRowEditorInit = 'p-datatable-row-editor-init',
|
pcRowEditorInit = 'p-datatable-row-editor-init',
|
||||||
|
/**
|
||||||
|
* Class name of the row editor save element
|
||||||
|
*/
|
||||||
pcRowEditorSave = 'p-datatable-row-editor-save',
|
pcRowEditorSave = 'p-datatable-row-editor-save',
|
||||||
|
/**
|
||||||
|
* Class name of the row editor cancel element
|
||||||
|
*/
|
||||||
pcRowEditorCancel = 'p-datatable-row-editor-cancel',
|
pcRowEditorCancel = 'p-datatable-row-editor-cancel',
|
||||||
|
/**
|
||||||
|
* Class name of the tfoot element
|
||||||
|
*/
|
||||||
tfoot = 'p-datatable-tfoot',
|
tfoot = 'p-datatable-tfoot',
|
||||||
|
/**
|
||||||
|
* Class name of the virtual scroller spacer element
|
||||||
|
*/
|
||||||
virtualScrollerSpacer = 'p-datatable-virtualscroller-spacer',
|
virtualScrollerSpacer = 'p-datatable-virtualscroller-spacer',
|
||||||
|
/**
|
||||||
|
* Class name of the footer element
|
||||||
|
*/
|
||||||
footer = 'p-datatable-footer',
|
footer = 'p-datatable-footer',
|
||||||
|
/**
|
||||||
|
* Class name of the column resize indicator element
|
||||||
|
*/
|
||||||
columnResizeIndicator = 'p-datatable-column-resize-indicator',
|
columnResizeIndicator = 'p-datatable-column-resize-indicator',
|
||||||
|
/**
|
||||||
|
* Class name of the row reorder indicator up element
|
||||||
|
*/
|
||||||
rowReorderIndicatorUp = 'p-datatable-row-reorder-indicator-up',
|
rowReorderIndicatorUp = 'p-datatable-row-reorder-indicator-up',
|
||||||
|
/**
|
||||||
|
* Class name of the row reorder indicator down element
|
||||||
|
*/
|
||||||
rowReorderIndicatorDown = 'p-datatable-row-reorder-indicator-down'
|
rowReorderIndicatorDown = 'p-datatable-row-reorder-indicator-down'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,11 +10,29 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum DataViewClasses {
|
export enum DataViewClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-dataview',
|
root = 'p-dataview',
|
||||||
|
/**
|
||||||
|
* Class name of the header element
|
||||||
|
*/
|
||||||
header = 'p-dataview-header',
|
header = 'p-dataview-header',
|
||||||
|
/**
|
||||||
|
* Class name of the paginator element
|
||||||
|
*/
|
||||||
pcPaginator = 'p-dataview-paginator-[position]',
|
pcPaginator = 'p-dataview-paginator-[position]',
|
||||||
|
/**
|
||||||
|
* Class name of the content element
|
||||||
|
*/
|
||||||
content = 'p-dataview-content',
|
content = 'p-dataview-content',
|
||||||
|
/**
|
||||||
|
* Class name of the empty message element
|
||||||
|
*/
|
||||||
emptyMessage = 'p-dataview-empty-message', // TODO: remove?
|
emptyMessage = 'p-dataview-empty-message', // TODO: remove?
|
||||||
|
/**
|
||||||
|
* Class name of the footer element
|
||||||
|
*/
|
||||||
footer = 'p-dataview-footer'
|
footer = 'p-dataview-footer'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,43 +10,154 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum DatePickerClasses {
|
export enum DatePickerClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-datepicker',
|
root = 'p-datepicker',
|
||||||
|
/**
|
||||||
|
* Class name of the input element
|
||||||
|
*/
|
||||||
pcInput = 'p-datepicker-input',
|
pcInput = 'p-datepicker-input',
|
||||||
|
/**
|
||||||
|
* Class name of the dropdown element
|
||||||
|
*/
|
||||||
dropdown = 'p-datepicker-dropdown',
|
dropdown = 'p-datepicker-dropdown',
|
||||||
|
/**
|
||||||
|
* Class name of the input icon container element
|
||||||
|
*/
|
||||||
inputIconContainer = 'p-datepicker-input-icon-container',
|
inputIconContainer = 'p-datepicker-input-icon-container',
|
||||||
|
/**
|
||||||
|
* Class name of the input icon element
|
||||||
|
*/
|
||||||
inputIcon = 'p-datepicker-input-icon',
|
inputIcon = 'p-datepicker-input-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the panel element
|
||||||
|
*/
|
||||||
panel = 'p-datepicker-panel',
|
panel = 'p-datepicker-panel',
|
||||||
|
/**
|
||||||
|
* Class name of the calendar container element
|
||||||
|
*/
|
||||||
calendarContainer = 'p-datepicker-calendar-container',
|
calendarContainer = 'p-datepicker-calendar-container',
|
||||||
|
/**
|
||||||
|
* Class name of the calendar element
|
||||||
|
*/
|
||||||
calendar = 'p-datepicker-calendar',
|
calendar = 'p-datepicker-calendar',
|
||||||
|
/**
|
||||||
|
* Class name of the header element
|
||||||
|
*/
|
||||||
header = 'p-datepicker-header',
|
header = 'p-datepicker-header',
|
||||||
|
/**
|
||||||
|
* Class name of the previous button element
|
||||||
|
*/
|
||||||
pcPreviousButton = 'p-datepicker-prev-button',
|
pcPreviousButton = 'p-datepicker-prev-button',
|
||||||
|
/**
|
||||||
|
* Class name of the title element
|
||||||
|
*/
|
||||||
title = 'p-datepicker-title',
|
title = 'p-datepicker-title',
|
||||||
|
/**
|
||||||
|
* Class name of the view month element
|
||||||
|
*/
|
||||||
viewMonth = 'p-datepicker-view-month',
|
viewMonth = 'p-datepicker-view-month',
|
||||||
|
/**
|
||||||
|
* Class name of the view year element
|
||||||
|
*/
|
||||||
viewYear = 'p-datepicker-view-year',
|
viewYear = 'p-datepicker-view-year',
|
||||||
|
/**
|
||||||
|
* Class name of the decade element
|
||||||
|
*/
|
||||||
decade = 'p-datepicker-decade',
|
decade = 'p-datepicker-decade',
|
||||||
|
/**
|
||||||
|
* Class name of the next button element
|
||||||
|
*/
|
||||||
pcNextButton = 'p-datepicker-next-button',
|
pcNextButton = 'p-datepicker-next-button',
|
||||||
|
/**
|
||||||
|
* Class name of the day view element
|
||||||
|
*/
|
||||||
dayView = 'p-datepicker-day-view',
|
dayView = 'p-datepicker-day-view',
|
||||||
|
/**
|
||||||
|
* Class name of the week header element
|
||||||
|
*/
|
||||||
weekHeader = 'p-datepicker-weekheader',
|
weekHeader = 'p-datepicker-weekheader',
|
||||||
|
/**
|
||||||
|
* Class name of the week number element
|
||||||
|
*/
|
||||||
weekNumber = 'p-datepicker-weeknumber',
|
weekNumber = 'p-datepicker-weeknumber',
|
||||||
weekLabelContainer = 'p-disabled',
|
weekLabelContainer = 'p-disabled',
|
||||||
|
/**
|
||||||
|
* Class name of the week day cell element
|
||||||
|
*/
|
||||||
weekDayCell = 'p-datepicker-weekday-cell',
|
weekDayCell = 'p-datepicker-weekday-cell',
|
||||||
weekDay = 'p-date-picker-weekday',
|
/**
|
||||||
|
* Class name of the week day element
|
||||||
|
*/
|
||||||
|
weekDay = 'p-datepicker-weekday',
|
||||||
|
/**
|
||||||
|
* Class name of the day cell element
|
||||||
|
*/
|
||||||
dayCell = 'p-datepicker-day-cell',
|
dayCell = 'p-datepicker-day-cell',
|
||||||
|
/**
|
||||||
|
* Class name of the day element
|
||||||
|
*/
|
||||||
day = 'p-datepicker-day',
|
day = 'p-datepicker-day',
|
||||||
|
/**
|
||||||
|
* Class name of the month view element
|
||||||
|
*/
|
||||||
monthView = 'p-datepicker-month-view',
|
monthView = 'p-datepicker-month-view',
|
||||||
|
/**
|
||||||
|
* Class name of the month element
|
||||||
|
*/
|
||||||
month = 'p-datepicker-month',
|
month = 'p-datepicker-month',
|
||||||
|
/**
|
||||||
|
* Class name of the year view element
|
||||||
|
*/
|
||||||
yearView = 'p-datepicker-year-view',
|
yearView = 'p-datepicker-year-view',
|
||||||
|
/**
|
||||||
|
* Class name of the year element
|
||||||
|
*/
|
||||||
year = 'p-datepicker-year',
|
year = 'p-datepicker-year',
|
||||||
|
/**
|
||||||
|
* Class name of the time picker element
|
||||||
|
*/
|
||||||
timePicker = 'p-datepicker-time-picker',
|
timePicker = 'p-datepicker-time-picker',
|
||||||
|
/**
|
||||||
|
* Class name of the hour picker element
|
||||||
|
*/
|
||||||
hourPicker = 'p-datepicker-hour-picker',
|
hourPicker = 'p-datepicker-hour-picker',
|
||||||
|
/**
|
||||||
|
* Class name of the increment button element
|
||||||
|
*/
|
||||||
pcIncrementButton = 'p-datepicker-increment-button',
|
pcIncrementButton = 'p-datepicker-increment-button',
|
||||||
|
/**
|
||||||
|
* Class name of the decrement button element
|
||||||
|
*/
|
||||||
pcDecrementButton = 'p-datepicker-decrement-button',
|
pcDecrementButton = 'p-datepicker-decrement-button',
|
||||||
|
/**
|
||||||
|
* Class name of the separator element
|
||||||
|
*/
|
||||||
separator = 'p-datepicker-separator',
|
separator = 'p-datepicker-separator',
|
||||||
|
/**
|
||||||
|
* Class name of the minute picker element
|
||||||
|
*/
|
||||||
minutePicker = 'p-datepicker-minute-picker',
|
minutePicker = 'p-datepicker-minute-picker',
|
||||||
|
/**
|
||||||
|
* Class name of the second picker element
|
||||||
|
*/
|
||||||
secondPicker = 'p-datepicker-second-picker',
|
secondPicker = 'p-datepicker-second-picker',
|
||||||
|
/**
|
||||||
|
* Class name of the ampm picker element
|
||||||
|
*/
|
||||||
ampmPicker = 'p-datepicker-ampm-picker',
|
ampmPicker = 'p-datepicker-ampm-picker',
|
||||||
|
/**
|
||||||
|
* Class name of the buttonbar element
|
||||||
|
*/
|
||||||
buttonbar = 'p-datepicker-buttonbar',
|
buttonbar = 'p-datepicker-buttonbar',
|
||||||
|
/**
|
||||||
|
* Class name of the today button element
|
||||||
|
*/
|
||||||
pcTodayButton = 'p-datepicker-today-button',
|
pcTodayButton = 'p-datepicker-today-button',
|
||||||
|
/**
|
||||||
|
* Class name of the clear button element
|
||||||
|
*/
|
||||||
pcClearButton = 'p-datepicker-clear-button'
|
pcClearButton = 'p-datepicker-clear-button'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,14 +10,41 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum DialogClasses {
|
export enum DialogClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the mask element
|
||||||
|
*/
|
||||||
mask = 'p-dialog-mask',
|
mask = 'p-dialog-mask',
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-dialog',
|
root = 'p-dialog',
|
||||||
|
/**
|
||||||
|
* Class name of the header element
|
||||||
|
*/
|
||||||
header = 'p-dialog-header',
|
header = 'p-dialog-header',
|
||||||
|
/**
|
||||||
|
* Class name of the title element
|
||||||
|
*/
|
||||||
title = 'p-dialog-title',
|
title = 'p-dialog-title',
|
||||||
|
/**
|
||||||
|
* Class name of the header actions element
|
||||||
|
*/
|
||||||
headerActions = 'p-dialog-header-actions',
|
headerActions = 'p-dialog-header-actions',
|
||||||
|
/**
|
||||||
|
* Class name of the maximize button element
|
||||||
|
*/
|
||||||
pcMaximizeButton = 'p-dialog-maximize-button',
|
pcMaximizeButton = 'p-dialog-maximize-button',
|
||||||
|
/**
|
||||||
|
* Class name of the close button element
|
||||||
|
*/
|
||||||
pcCloseButton = 'p-dialog-close-button',
|
pcCloseButton = 'p-dialog-close-button',
|
||||||
|
/**
|
||||||
|
* Class name of the content element
|
||||||
|
*/
|
||||||
content = 'p-dialog-content',
|
content = 'p-dialog-content',
|
||||||
|
/**
|
||||||
|
* Class name of the footer element
|
||||||
|
*/
|
||||||
footer = 'p-dialog-footer'
|
footer = 'p-dialog-footer'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,13 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum DividerClasses {
|
export enum DividerClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-divider',
|
root = 'p-divider',
|
||||||
|
/**
|
||||||
|
* Class name of the content element
|
||||||
|
*/
|
||||||
content = 'p-divider-content'
|
content = 'p-divider-content'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,12 +10,33 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum DockClasses {
|
export enum DockClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-dock',
|
root = 'p-dock',
|
||||||
|
/**
|
||||||
|
* Class name of the list container element
|
||||||
|
*/
|
||||||
listContainer = 'p-dock-list-container',
|
listContainer = 'p-dock-list-container',
|
||||||
|
/**
|
||||||
|
* Class name of the list element
|
||||||
|
*/
|
||||||
list = 'p-dock-list',
|
list = 'p-dock-list',
|
||||||
|
/**
|
||||||
|
* Class name of the item element
|
||||||
|
*/
|
||||||
item = 'p-dock-item',
|
item = 'p-dock-item',
|
||||||
|
/**
|
||||||
|
* Class name of the item content element
|
||||||
|
*/
|
||||||
itemContent = 'p-dock-item-content',
|
itemContent = 'p-dock-item-content',
|
||||||
|
/**
|
||||||
|
* Class name of the item link element
|
||||||
|
*/
|
||||||
itemLink = 'p-dock-item-link',
|
itemLink = 'p-dock-item-link',
|
||||||
|
/**
|
||||||
|
* Class name of the item icon element
|
||||||
|
*/
|
||||||
itemIcon = 'p-dock-item-icon'
|
itemIcon = 'p-dock-item-icon'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,11 +10,29 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum DrawerClasses {
|
export enum DrawerClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the mask element
|
||||||
|
*/
|
||||||
mask = 'p-drawer-mask',
|
mask = 'p-drawer-mask',
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-drawer',
|
root = 'p-drawer',
|
||||||
|
/**
|
||||||
|
* Class name of the header element
|
||||||
|
*/
|
||||||
header = 'p-drawer-header',
|
header = 'p-drawer-header',
|
||||||
|
/**
|
||||||
|
* Class name of the title element
|
||||||
|
*/
|
||||||
title = 'p-drawer-title',
|
title = 'p-drawer-title',
|
||||||
|
/**
|
||||||
|
* Class name of the close button element
|
||||||
|
*/
|
||||||
pcCloseButton = 'p-drawer-close-button',
|
pcCloseButton = 'p-drawer-close-button',
|
||||||
|
/**
|
||||||
|
* Class name of the content element
|
||||||
|
*/
|
||||||
content = 'p-drawer-content'
|
content = 'p-drawer-content'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,8 +10,17 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum EditorClasses {
|
export enum EditorClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-editor',
|
root = 'p-editor',
|
||||||
|
/**
|
||||||
|
* Class name of the toolbar element
|
||||||
|
*/
|
||||||
toolbar = 'p-editor-toolbar',
|
toolbar = 'p-editor-toolbar',
|
||||||
|
/**
|
||||||
|
* Class name of the content element
|
||||||
|
*/
|
||||||
content = 'p-editor-content'
|
content = 'p-editor-content'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,11 +10,29 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum FieldsetClasses {
|
export enum FieldsetClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-fieldset',
|
root = 'p-fieldset',
|
||||||
|
/**
|
||||||
|
* Class name of the legend element
|
||||||
|
*/
|
||||||
legend = 'p-fieldset-legend',
|
legend = 'p-fieldset-legend',
|
||||||
|
/**
|
||||||
|
* Class name of the legend label element
|
||||||
|
*/
|
||||||
legendLabel = 'p-fieldset-legend-label',
|
legendLabel = 'p-fieldset-legend-label',
|
||||||
|
/**
|
||||||
|
* Class name of the toggle icon element
|
||||||
|
*/
|
||||||
toggleIcon = 'p-fieldset-toggle-icon',
|
toggleIcon = 'p-fieldset-toggle-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the content container element
|
||||||
|
*/
|
||||||
contentContainer = 'p-fieldset-content-container',
|
contentContainer = 'p-fieldset-content-container',
|
||||||
|
/**
|
||||||
|
* Class name of the content element
|
||||||
|
*/
|
||||||
content = 'p-fieldset-content'
|
content = 'p-fieldset-content'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,20 +10,65 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum FileUploadClasses {
|
export enum FileUploadClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-fileupload',
|
root = 'p-fileupload',
|
||||||
|
/**
|
||||||
|
* Class name of the header element
|
||||||
|
*/
|
||||||
header = 'p-fileupload-header',
|
header = 'p-fileupload-header',
|
||||||
|
/**
|
||||||
|
* Class name of the choose button element
|
||||||
|
*/
|
||||||
pcChooseButton = 'p-fileupload-choose-button',
|
pcChooseButton = 'p-fileupload-choose-button',
|
||||||
|
/**
|
||||||
|
* Class name of the upload button element
|
||||||
|
*/
|
||||||
pcUploadButton = 'p-fileupload-upload-button',
|
pcUploadButton = 'p-fileupload-upload-button',
|
||||||
|
/**
|
||||||
|
* Class name of the cancel button element
|
||||||
|
*/
|
||||||
pcCancelButton = 'p-fileupload-cancel-button',
|
pcCancelButton = 'p-fileupload-cancel-button',
|
||||||
|
/**
|
||||||
|
* Class name of the content element
|
||||||
|
*/
|
||||||
content = 'p-fileupload-content',
|
content = 'p-fileupload-content',
|
||||||
|
/**
|
||||||
|
* Class name of the file list element
|
||||||
|
*/
|
||||||
fileList = 'p-fileupload-file-list',
|
fileList = 'p-fileupload-file-list',
|
||||||
|
/**
|
||||||
|
* Class name of the file element
|
||||||
|
*/
|
||||||
file = 'p-fileupload-file',
|
file = 'p-fileupload-file',
|
||||||
|
/**
|
||||||
|
* Class name of the file thumbnail element
|
||||||
|
*/
|
||||||
fileThumbnail = 'p-fileupload-file-thumbnail',
|
fileThumbnail = 'p-fileupload-file-thumbnail',
|
||||||
|
/**
|
||||||
|
* Class name of the file info element
|
||||||
|
*/
|
||||||
fileInfo = 'p-fileupload-file-info',
|
fileInfo = 'p-fileupload-file-info',
|
||||||
|
/**
|
||||||
|
* Class name of the file name element
|
||||||
|
*/
|
||||||
fileName = 'p-fileupload-file-name',
|
fileName = 'p-fileupload-file-name',
|
||||||
|
/**
|
||||||
|
* Class name of the file size element
|
||||||
|
*/
|
||||||
fileSize = 'p-fileupload-file-size',
|
fileSize = 'p-fileupload-file-size',
|
||||||
|
/**
|
||||||
|
* Class name of the file badge element
|
||||||
|
*/
|
||||||
pcFileBadge = 'p-fileupload-file-badge',
|
pcFileBadge = 'p-fileupload-file-badge',
|
||||||
|
/**
|
||||||
|
* Class name of the file actions element
|
||||||
|
*/
|
||||||
fileActions = 'p-fileupload-file-actions',
|
fileActions = 'p-fileupload-file-actions',
|
||||||
|
/**
|
||||||
|
* Class name of the file remove button element
|
||||||
|
*/
|
||||||
pcFileRemoveButton = 'p-fileupload-file-remove-button'
|
pcFileRemoveButton = 'p-fileupload-file-remove-button'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,33 +10,117 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum GalleriaClasses {
|
export enum GalleriaClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the mask element
|
||||||
|
*/
|
||||||
mask = 'p-galleria-mask',
|
mask = 'p-galleria-mask',
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-galleria',
|
root = 'p-galleria',
|
||||||
|
/**
|
||||||
|
* Class name of the close button element
|
||||||
|
*/
|
||||||
closeButton = 'p-galleria-close-button',
|
closeButton = 'p-galleria-close-button',
|
||||||
|
/**
|
||||||
|
* Class name of the close icon element
|
||||||
|
*/
|
||||||
closeIcon = 'p-galleria-close-icon',
|
closeIcon = 'p-galleria-close-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the header element
|
||||||
|
*/
|
||||||
header = 'p-galleria-header',
|
header = 'p-galleria-header',
|
||||||
|
/**
|
||||||
|
* Class name of the content element
|
||||||
|
*/
|
||||||
content = 'p-galleria-content',
|
content = 'p-galleria-content',
|
||||||
|
/**
|
||||||
|
* Class name of the footer element
|
||||||
|
*/
|
||||||
footer = 'p-galleria-footer',
|
footer = 'p-galleria-footer',
|
||||||
|
/**
|
||||||
|
* Class name of the items container element
|
||||||
|
*/
|
||||||
itemsContainer = 'p-galleria-items-container',
|
itemsContainer = 'p-galleria-items-container',
|
||||||
|
/**
|
||||||
|
* Class name of the items element
|
||||||
|
*/
|
||||||
items = 'p-galleria-items',
|
items = 'p-galleria-items',
|
||||||
|
/**
|
||||||
|
* Class name of the previous item button element
|
||||||
|
*/
|
||||||
previousItemButton = 'p-galleria-prev-button',
|
previousItemButton = 'p-galleria-prev-button',
|
||||||
|
/**
|
||||||
|
* Class name of the previous item icon element
|
||||||
|
*/
|
||||||
previousItemIcon = 'p-galleria-prev-icon',
|
previousItemIcon = 'p-galleria-prev-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the item element
|
||||||
|
*/
|
||||||
item = 'p-galleria-item',
|
item = 'p-galleria-item',
|
||||||
|
/**
|
||||||
|
* Class name of the next item button element
|
||||||
|
*/
|
||||||
nextItemButton = 'p-galleria-next-button',
|
nextItemButton = 'p-galleria-next-button',
|
||||||
|
/**
|
||||||
|
* Class name of the next item icon element
|
||||||
|
*/
|
||||||
nextItemIcon = 'p-galleria-next-icon',
|
nextItemIcon = 'p-galleria-next-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the caption element
|
||||||
|
*/
|
||||||
caption = 'p-galleria-caption',
|
caption = 'p-galleria-caption',
|
||||||
|
/**
|
||||||
|
* Class name of the indicator list element
|
||||||
|
*/
|
||||||
indicatorList = 'p-galleria-indicator-list',
|
indicatorList = 'p-galleria-indicator-list',
|
||||||
|
/**
|
||||||
|
* Class name of the indicator element
|
||||||
|
*/
|
||||||
indicator = 'p-galleria-indicator',
|
indicator = 'p-galleria-indicator',
|
||||||
|
/**
|
||||||
|
* Class name of the indicator button element
|
||||||
|
*/
|
||||||
indicatorButton = 'p-galleria-indicator-button',
|
indicatorButton = 'p-galleria-indicator-button',
|
||||||
|
/**
|
||||||
|
* Class name of the thumbnails element
|
||||||
|
*/
|
||||||
thumbnails = 'p-galleria-thumbnails',
|
thumbnails = 'p-galleria-thumbnails',
|
||||||
|
/**
|
||||||
|
* Class name of the thumbnail content element
|
||||||
|
*/
|
||||||
thumbnailContent = 'p-galleria-thumbnails-content',
|
thumbnailContent = 'p-galleria-thumbnails-content',
|
||||||
|
/**
|
||||||
|
* Class name of the previous thumbnail button element
|
||||||
|
*/
|
||||||
previousThumbnailButton = 'p-galleria-thumbnail-prev-button',
|
previousThumbnailButton = 'p-galleria-thumbnail-prev-button',
|
||||||
|
/**
|
||||||
|
* Class name of the previous thumbnail icon element
|
||||||
|
*/
|
||||||
previousThumbnailIcon = 'p-galleria-thumbnail-prev-icon',
|
previousThumbnailIcon = 'p-galleria-thumbnail-prev-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the thumbnails viewport element
|
||||||
|
*/
|
||||||
thumbnailsViewport = 'p-galleria-thumbnails-viewport',
|
thumbnailsViewport = 'p-galleria-thumbnails-viewport',
|
||||||
|
/**
|
||||||
|
* Class name of the thumbnail items element
|
||||||
|
*/
|
||||||
thumbnailItems = 'p-galleria-thumbnail-items',
|
thumbnailItems = 'p-galleria-thumbnail-items',
|
||||||
|
/**
|
||||||
|
* Class name of the thumbnail item element
|
||||||
|
*/
|
||||||
thumbnailItem = 'p-galleria-thumbnail-item',
|
thumbnailItem = 'p-galleria-thumbnail-item',
|
||||||
|
/**
|
||||||
|
* Class name of the thumbnail element
|
||||||
|
*/
|
||||||
thumbnail = 'p-galleria-thumbnail',
|
thumbnail = 'p-galleria-thumbnail',
|
||||||
|
/**
|
||||||
|
* Class name of the next thumbnail button element
|
||||||
|
*/
|
||||||
nextThumbnailButton = 'p-galleria-thumbnail-next-button',
|
nextThumbnailButton = 'p-galleria-thumbnail-next-button',
|
||||||
|
/**
|
||||||
|
* Class name of the next thumbnail icon element
|
||||||
|
*/
|
||||||
nextThumbnailIcon = 'p-galleria-thumbnail-next-icon'
|
nextThumbnailIcon = 'p-galleria-thumbnail-next-icon'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,16 +10,49 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum ImageClasses {
|
export enum ImageClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-image',
|
root = 'p-image',
|
||||||
|
/**
|
||||||
|
* Class name of the preview mask element
|
||||||
|
*/
|
||||||
previewMask = 'p-image-preview-mask',
|
previewMask = 'p-image-preview-mask',
|
||||||
|
/**
|
||||||
|
* Class name of the preview icon element
|
||||||
|
*/
|
||||||
previewIcon = 'p-image-preview-icon',
|
previewIcon = 'p-image-preview-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the mask element
|
||||||
|
*/
|
||||||
mask = 'p-image-mask',
|
mask = 'p-image-mask',
|
||||||
|
/**
|
||||||
|
* Class name of the toolbar element
|
||||||
|
*/
|
||||||
toolbar = 'p-image-toolbar',
|
toolbar = 'p-image-toolbar',
|
||||||
|
/**
|
||||||
|
* Class name of the rotate right button element
|
||||||
|
*/
|
||||||
rotateRightButton = 'p-image-rotate-right-button',
|
rotateRightButton = 'p-image-rotate-right-button',
|
||||||
|
/**
|
||||||
|
* Class name of the rotate left button element
|
||||||
|
*/
|
||||||
rotateLeftButton = 'p-image-rotate-left-button',
|
rotateLeftButton = 'p-image-rotate-left-button',
|
||||||
|
/**
|
||||||
|
* Class name of the zoom out button element
|
||||||
|
*/
|
||||||
zoomOutButton = 'p-image-zoom-out-button',
|
zoomOutButton = 'p-image-zoom-out-button',
|
||||||
|
/**
|
||||||
|
* Class name of the zoom in button element
|
||||||
|
*/
|
||||||
zoomInButton = 'p-image-zoom-in-button',
|
zoomInButton = 'p-image-zoom-in-button',
|
||||||
|
/**
|
||||||
|
* Class name of the close button element
|
||||||
|
*/
|
||||||
closeButton = 'p-image-close-button',
|
closeButton = 'p-image-close-button',
|
||||||
|
/**
|
||||||
|
* Class name of the original element
|
||||||
|
*/
|
||||||
original = 'p-image-original'
|
original = 'p-image-original'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,8 +10,17 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum InlineMessageClasses {
|
export enum InlineMessageClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-inlinemessage',
|
root = 'p-inlinemessage',
|
||||||
|
/**
|
||||||
|
* Class name of the icon element
|
||||||
|
*/
|
||||||
icon = 'p-inlinemessage-icon',
|
icon = 'p-inlinemessage-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the text element
|
||||||
|
*/
|
||||||
text = 'p-inlinemessage-text'
|
text = 'p-inlinemessage-text'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,8 +10,17 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum InplaceClasses {
|
export enum InplaceClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-inplace',
|
root = 'p-inplace',
|
||||||
|
/**
|
||||||
|
* Class name of the display element
|
||||||
|
*/
|
||||||
display = 'p-inplace-display',
|
display = 'p-inplace-display',
|
||||||
|
/**
|
||||||
|
* Class name of the content element
|
||||||
|
*/
|
||||||
content = 'p-inplace-content'
|
content = 'p-inplace-content'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,11 +10,29 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum InputChipsClasses {
|
export enum InputChipsClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-inputchips',
|
root = 'p-inputchips',
|
||||||
|
/**
|
||||||
|
* Class name of the input element
|
||||||
|
*/
|
||||||
input = 'p-inputchips-input',
|
input = 'p-inputchips-input',
|
||||||
|
/**
|
||||||
|
* Class name of the chip item element
|
||||||
|
*/
|
||||||
chipItem = 'p-inputchips-chip-item',
|
chipItem = 'p-inputchips-chip-item',
|
||||||
|
/**
|
||||||
|
* Class name of the chip element
|
||||||
|
*/
|
||||||
pcChip = 'p-inputchips-chip-label',
|
pcChip = 'p-inputchips-chip-label',
|
||||||
|
/**
|
||||||
|
* Class name of the chip icon element
|
||||||
|
*/
|
||||||
chipIcon = 'p-inputchips-chip-icon',
|
chipIcon = 'p-inputchips-chip-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the input item element
|
||||||
|
*/
|
||||||
inputItem = 'p-inputchips-input-item'
|
inputItem = 'p-inputchips-input-item'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,9 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum InputGroupClasses {
|
export enum InputGroupClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-inputgroup'
|
root = 'p-inputgroup'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,9 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum InputIconClasses {
|
export enum InputIconClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-inputicon'
|
root = 'p-inputicon'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,9 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum InputMaskClasses {
|
export enum InputMaskClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-inputmask'
|
root = 'p-inputmask'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,10 +10,25 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum InputNumberClasses {
|
export enum InputNumberClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-inputnumber',
|
root = 'p-inputnumber',
|
||||||
|
/**
|
||||||
|
* Class name of the input element
|
||||||
|
*/
|
||||||
pcInput = 'p-inputnumber-input',
|
pcInput = 'p-inputnumber-input',
|
||||||
|
/**
|
||||||
|
* Class name of the button group element
|
||||||
|
*/
|
||||||
buttonGroup = 'p-inputnumber-button-group',
|
buttonGroup = 'p-inputnumber-button-group',
|
||||||
|
/**
|
||||||
|
* Class name of the increment button element
|
||||||
|
*/
|
||||||
incrementButton = 'p-inputnumber-increment-button',
|
incrementButton = 'p-inputnumber-increment-button',
|
||||||
|
/**
|
||||||
|
* Class name of the decrement button element
|
||||||
|
*/
|
||||||
decrementButton = 'p-inputnumber-decrement-button'
|
decrementButton = 'p-inputnumber-decrement-button'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,13 @@
|
||||||
import { BaseStyle } from '../../base/style/BaseStyle';
|
import { BaseStyle } from '../../base/style/BaseStyle';
|
||||||
|
|
||||||
export enum InputOtpClasses {
|
export enum InputOtpClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-inputotp',
|
root = 'p-inputotp',
|
||||||
|
/**
|
||||||
|
* Class name of the input element
|
||||||
|
*/
|
||||||
pcInput = 'p-inputotp-input'
|
pcInput = 'p-inputotp-input'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum InputTextClasses {
|
export enum InputTextClasses {
|
||||||
/**
|
/**
|
||||||
* The class of input element
|
* The class of root element
|
||||||
*/
|
*/
|
||||||
root = 'p-inputtext'
|
root = 'p-inputtext'
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,9 +10,21 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum KnobClasses {
|
export enum KnobClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-knob',
|
root = 'p-knob',
|
||||||
|
/**
|
||||||
|
* Class name of the range element
|
||||||
|
*/
|
||||||
range = 'p-knob-range',
|
range = 'p-knob-range',
|
||||||
|
/**
|
||||||
|
* Class name of the value element
|
||||||
|
*/
|
||||||
value = 'p-knob-value',
|
value = 'p-knob-value',
|
||||||
|
/**
|
||||||
|
* Class name of the text element
|
||||||
|
*/
|
||||||
text = 'p-knob-text'
|
text = 'p-knob-text'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,15 +10,45 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum ListboxClasses {
|
export enum ListboxClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-listbox',
|
root = 'p-listbox',
|
||||||
|
/**
|
||||||
|
* Class name of the header element
|
||||||
|
*/
|
||||||
header = 'p-listbox-header',
|
header = 'p-listbox-header',
|
||||||
|
/**
|
||||||
|
* Class name of the filter element
|
||||||
|
*/
|
||||||
pcFilter = 'p-listbox-filter',
|
pcFilter = 'p-listbox-filter',
|
||||||
|
/**
|
||||||
|
* Class name of the list container element
|
||||||
|
*/
|
||||||
listContainer = 'p-listbox-list-container',
|
listContainer = 'p-listbox-list-container',
|
||||||
|
/**
|
||||||
|
* Class name of the list element
|
||||||
|
*/
|
||||||
list = 'p-listbox-list',
|
list = 'p-listbox-list',
|
||||||
|
/**
|
||||||
|
* Class name of the option group element
|
||||||
|
*/
|
||||||
optionGroup = 'p-listbox-option-group',
|
optionGroup = 'p-listbox-option-group',
|
||||||
|
/**
|
||||||
|
* Class name of the option element
|
||||||
|
*/
|
||||||
option = 'p-listbox-option',
|
option = 'p-listbox-option',
|
||||||
|
/**
|
||||||
|
* Class name of the option check icon element
|
||||||
|
*/
|
||||||
optionCheckIcon = 'p-listbox-option-check-icon',
|
optionCheckIcon = 'p-listbox-option-check-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the option blank icon element
|
||||||
|
*/
|
||||||
optionBlankIcon = 'p-listbox-option-blank-icon',
|
optionBlankIcon = 'p-listbox-option-blank-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the empty message element
|
||||||
|
*/
|
||||||
emptyMessage = 'p-listbox-empty-message'
|
emptyMessage = 'p-listbox-empty-message'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,22 +10,73 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum MegaMenuClasses {
|
export enum MegaMenuClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-megamenu',
|
root = 'p-megamenu',
|
||||||
|
/**
|
||||||
|
* Class name of the start element
|
||||||
|
*/
|
||||||
start = 'p-megamenu-start',
|
start = 'p-megamenu-start',
|
||||||
|
/**
|
||||||
|
* Class name of the button element
|
||||||
|
*/
|
||||||
button = 'p-megamenu-button',
|
button = 'p-megamenu-button',
|
||||||
|
/**
|
||||||
|
* Class name of the root list element
|
||||||
|
*/
|
||||||
rootList = 'p-megamenu-root-list',
|
rootList = 'p-megamenu-root-list',
|
||||||
|
/**
|
||||||
|
* Class name of the submenu item element
|
||||||
|
*/
|
||||||
submenuItem = 'p-megamenu-submenu-item',
|
submenuItem = 'p-megamenu-submenu-item',
|
||||||
|
/**
|
||||||
|
* Class name of the item element
|
||||||
|
*/
|
||||||
item = 'p-megamenu-item',
|
item = 'p-megamenu-item',
|
||||||
|
/**
|
||||||
|
* Class name of the item content element
|
||||||
|
*/
|
||||||
itemContent = 'p-megamenu-item-content',
|
itemContent = 'p-megamenu-item-content',
|
||||||
|
/**
|
||||||
|
* Class name of the item link element
|
||||||
|
*/
|
||||||
itemLink = 'p-megamenu-item-link',
|
itemLink = 'p-megamenu-item-link',
|
||||||
|
/**
|
||||||
|
* Class name of the item icon element
|
||||||
|
*/
|
||||||
itemIcon = 'p-megamenu-item-icon',
|
itemIcon = 'p-megamenu-item-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the item label element
|
||||||
|
*/
|
||||||
itemLabel = 'p-megamenu-item-label',
|
itemLabel = 'p-megamenu-item-label',
|
||||||
|
/**
|
||||||
|
* Class name of the submenu icon element
|
||||||
|
*/
|
||||||
submenuIcon = 'p-megamenu-submenu-icon',
|
submenuIcon = 'p-megamenu-submenu-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the panel element
|
||||||
|
*/
|
||||||
panel = 'p-megamenu-panel',
|
panel = 'p-megamenu-panel',
|
||||||
|
/**
|
||||||
|
* Class name of the grid element
|
||||||
|
*/
|
||||||
grid = 'p-megamenu-grid',
|
grid = 'p-megamenu-grid',
|
||||||
|
/**
|
||||||
|
* Class name of the submenu element
|
||||||
|
*/
|
||||||
submenu = 'p-megamenu-submenu',
|
submenu = 'p-megamenu-submenu',
|
||||||
|
/**
|
||||||
|
* Class name of the submenu item label element
|
||||||
|
*/
|
||||||
submenuItemLabel = 'p-megamenu-submenu-item-label',
|
submenuItemLabel = 'p-megamenu-submenu-item-label',
|
||||||
|
/**
|
||||||
|
* Class name of the separator element
|
||||||
|
*/
|
||||||
separator = 'p-megamenu-separator',
|
separator = 'p-megamenu-separator',
|
||||||
|
/**
|
||||||
|
* Class name of the end element
|
||||||
|
*/
|
||||||
end = 'p-megamenu-end'
|
end = 'p-megamenu-end'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,16 +10,49 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum MenuClasses {
|
export enum MenuClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-menu',
|
root = 'p-menu',
|
||||||
|
/**
|
||||||
|
* Class name of the start element
|
||||||
|
*/
|
||||||
start = 'p-menu-start',
|
start = 'p-menu-start',
|
||||||
|
/**
|
||||||
|
* Class name of the list element
|
||||||
|
*/
|
||||||
list = 'p-menu-list',
|
list = 'p-menu-list',
|
||||||
|
/**
|
||||||
|
* Class name of the submenu item element
|
||||||
|
*/
|
||||||
submenuItem = 'p-menu-submenu-item',
|
submenuItem = 'p-menu-submenu-item',
|
||||||
|
/**
|
||||||
|
* Class name of the separator element
|
||||||
|
*/
|
||||||
separator = 'p-menu-separator',
|
separator = 'p-menu-separator',
|
||||||
|
/**
|
||||||
|
* Class name of the end element
|
||||||
|
*/
|
||||||
end = 'p-menu-end',
|
end = 'p-menu-end',
|
||||||
|
/**
|
||||||
|
* Class name of the item element
|
||||||
|
*/
|
||||||
item = 'p-menu-item',
|
item = 'p-menu-item',
|
||||||
|
/**
|
||||||
|
* Class name of the item content element
|
||||||
|
*/
|
||||||
itemContent = 'p-menu-item-content',
|
itemContent = 'p-menu-item-content',
|
||||||
|
/**
|
||||||
|
* Class name of the item link element
|
||||||
|
*/
|
||||||
itemLink = 'p-menu-item-link',
|
itemLink = 'p-menu-item-link',
|
||||||
|
/**
|
||||||
|
* Class name of the item icon element
|
||||||
|
*/
|
||||||
itemIcon = 'p-menu-item-icon',
|
itemIcon = 'p-menu-item-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the item label element
|
||||||
|
*/
|
||||||
itemLabel = 'p-menu-item-label'
|
itemLabel = 'p-menu-item-label'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,18 +10,57 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum MenubarClasses {
|
export enum MenubarClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-menubar',
|
root = 'p-menubar',
|
||||||
|
/**
|
||||||
|
* Class name of the start element
|
||||||
|
*/
|
||||||
start = 'p-menubar-start',
|
start = 'p-menubar-start',
|
||||||
|
/**
|
||||||
|
* Class name of the button element
|
||||||
|
*/
|
||||||
button = 'p-menubar-button',
|
button = 'p-menubar-button',
|
||||||
|
/**
|
||||||
|
* Class name of the root list element
|
||||||
|
*/
|
||||||
rootList = 'p-menubar-root-list',
|
rootList = 'p-menubar-root-list',
|
||||||
|
/**
|
||||||
|
* Class name of the item element
|
||||||
|
*/
|
||||||
item = 'p-menubar-item',
|
item = 'p-menubar-item',
|
||||||
|
/**
|
||||||
|
* Class name of the item content element
|
||||||
|
*/
|
||||||
itemContent = 'p-menubar-item-content',
|
itemContent = 'p-menubar-item-content',
|
||||||
|
/**
|
||||||
|
* Class name of the item link element
|
||||||
|
*/
|
||||||
itemLink = 'p-menubar-item-link',
|
itemLink = 'p-menubar-item-link',
|
||||||
|
/**
|
||||||
|
* Class name of the item icon element
|
||||||
|
*/
|
||||||
itemIcon = 'p-menubar-item-icon',
|
itemIcon = 'p-menubar-item-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the item label element
|
||||||
|
*/
|
||||||
itemLabel = 'p-menubar-item-label',
|
itemLabel = 'p-menubar-item-label',
|
||||||
|
/**
|
||||||
|
* Class name of the submenu icon element
|
||||||
|
*/
|
||||||
submenuIcon = 'p-menubar-submenu-icon',
|
submenuIcon = 'p-menubar-submenu-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the submenu element
|
||||||
|
*/
|
||||||
submenu = 'p-menubar-submenu',
|
submenu = 'p-menubar-submenu',
|
||||||
|
/**
|
||||||
|
* Class name of the separator element
|
||||||
|
*/
|
||||||
separator = 'p-menubar-separator',
|
separator = 'p-menubar-separator',
|
||||||
|
/**
|
||||||
|
* Class name of the end element
|
||||||
|
*/
|
||||||
end = 'p-menubar-end'
|
end = 'p-menubar-end'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,11 +10,29 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum MessageClasses {
|
export enum MessageClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-message',
|
root = 'p-message',
|
||||||
|
/**
|
||||||
|
* Class name of the content element
|
||||||
|
*/
|
||||||
content = 'p-message-content',
|
content = 'p-message-content',
|
||||||
|
/**
|
||||||
|
* Class name of the icon element
|
||||||
|
*/
|
||||||
icon = 'p-message-icon',
|
icon = 'p-message-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the text element
|
||||||
|
*/
|
||||||
text = 'p-message-text',
|
text = 'p-message-text',
|
||||||
|
/**
|
||||||
|
* Class name of the close button element
|
||||||
|
*/
|
||||||
closeButton = 'p-message-close-button',
|
closeButton = 'p-message-close-button',
|
||||||
|
/**
|
||||||
|
* Class name of the close icon element
|
||||||
|
*/
|
||||||
closeIcon = 'p-message-close-icon'
|
closeIcon = 'p-message-close-icon'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,13 +10,37 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum MeterGroupClasses {
|
export enum MeterGroupClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-metergroup',
|
root = 'p-metergroup',
|
||||||
|
/**
|
||||||
|
* Class name of the meters element
|
||||||
|
*/
|
||||||
meters = 'p-metergroup-meters',
|
meters = 'p-metergroup-meters',
|
||||||
|
/**
|
||||||
|
* Class name of the meter element
|
||||||
|
*/
|
||||||
meter = 'p-metergroup-meter',
|
meter = 'p-metergroup-meter',
|
||||||
|
/**
|
||||||
|
* Class name of the label list element
|
||||||
|
*/
|
||||||
labelList = 'p-metergroup-label-list',
|
labelList = 'p-metergroup-label-list',
|
||||||
|
/**
|
||||||
|
* Class name of the label element
|
||||||
|
*/
|
||||||
label = 'p-metergroup-label',
|
label = 'p-metergroup-label',
|
||||||
|
/**
|
||||||
|
* Class name of the label icon element
|
||||||
|
*/
|
||||||
labelIcon = 'p-metergroup-label-icon',
|
labelIcon = 'p-metergroup-label-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the label marker element
|
||||||
|
*/
|
||||||
labelMarker = 'p-metergroup-label-marker',
|
labelMarker = 'p-metergroup-label-marker',
|
||||||
|
/**
|
||||||
|
* Class name of the label text element
|
||||||
|
*/
|
||||||
labelText = 'p-metergroup-label-text'
|
labelText = 'p-metergroup-label-text'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,23 +10,77 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum MultiSelectClasses {
|
export enum MultiSelectClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-multiselect',
|
root = 'p-multiselect',
|
||||||
|
/**
|
||||||
|
* Class name of the label container element
|
||||||
|
*/
|
||||||
labelContainer = 'p-multiselect-label-container',
|
labelContainer = 'p-multiselect-label-container',
|
||||||
|
/**
|
||||||
|
* Class name of the label element
|
||||||
|
*/
|
||||||
label = 'p-multiselect-label',
|
label = 'p-multiselect-label',
|
||||||
|
/**
|
||||||
|
* Class name of the chip item element
|
||||||
|
*/
|
||||||
chipItem = 'p-multiselect-chip-item',
|
chipItem = 'p-multiselect-chip-item',
|
||||||
|
/**
|
||||||
|
* Class name of the chip element
|
||||||
|
*/
|
||||||
pcChip = 'p-multiselect-chip',
|
pcChip = 'p-multiselect-chip',
|
||||||
|
/**
|
||||||
|
* Class name of the chip icon element
|
||||||
|
*/
|
||||||
chipIcon = 'p-multiselect-chip-icon',
|
chipIcon = 'p-multiselect-chip-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the dropdown element
|
||||||
|
*/
|
||||||
dropdown = 'p-multiselect-dropdown',
|
dropdown = 'p-multiselect-dropdown',
|
||||||
|
/**
|
||||||
|
* Class name of the loading icon element
|
||||||
|
*/
|
||||||
loadingIcon = 'p-multiselect-loading-icon',
|
loadingIcon = 'p-multiselect-loading-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the dropdown icon element
|
||||||
|
*/
|
||||||
dropdownIcon = 'p-multiselect-dropdown-icon',
|
dropdownIcon = 'p-multiselect-dropdown-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the overlay element
|
||||||
|
*/
|
||||||
overlay = 'p-multiselect-overlay',
|
overlay = 'p-multiselect-overlay',
|
||||||
|
/**
|
||||||
|
* Class name of the header element
|
||||||
|
*/
|
||||||
header = 'p-multiselect-header',
|
header = 'p-multiselect-header',
|
||||||
|
/**
|
||||||
|
* Class name of the filter container element
|
||||||
|
*/
|
||||||
pcFilterContainer = 'p-multiselect-filter-container',
|
pcFilterContainer = 'p-multiselect-filter-container',
|
||||||
|
/**
|
||||||
|
* Class name of the filter element
|
||||||
|
*/
|
||||||
pcFilter = 'p-multiselect-filter',
|
pcFilter = 'p-multiselect-filter',
|
||||||
|
/**
|
||||||
|
* Class name of the list container element
|
||||||
|
*/
|
||||||
listContainer = 'p-multiselect-list-container',
|
listContainer = 'p-multiselect-list-container',
|
||||||
|
/**
|
||||||
|
* Class name of the list element
|
||||||
|
*/
|
||||||
list = 'p-multiselect-list',
|
list = 'p-multiselect-list',
|
||||||
|
/**
|
||||||
|
* Class name of the option group element
|
||||||
|
*/
|
||||||
optionGroup = 'p-multiselect-option-group',
|
optionGroup = 'p-multiselect-option-group',
|
||||||
|
/**
|
||||||
|
* Class name of the option element
|
||||||
|
*/
|
||||||
option = 'p-multiselect-option',
|
option = 'p-multiselect-option',
|
||||||
|
/**
|
||||||
|
* Class name of the empty message element
|
||||||
|
*/
|
||||||
emptyMessage = 'p-multiselect-empty-message'
|
emptyMessage = 'p-multiselect-empty-message'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,13 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum OrderListClasses {
|
export enum OrderListClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-orderlist',
|
root = 'p-orderlist',
|
||||||
|
/**
|
||||||
|
* Class name of the controls element
|
||||||
|
*/
|
||||||
controls = 'p-orderlist-controls'
|
controls = 'p-orderlist-controls'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,15 +10,45 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum OrganizationChartClasses {
|
export enum OrganizationChartClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-organizationchart',
|
root = 'p-organizationchart',
|
||||||
|
/**
|
||||||
|
* Class name of the table element
|
||||||
|
*/
|
||||||
table = 'p-organizationchart-table',
|
table = 'p-organizationchart-table',
|
||||||
|
/**
|
||||||
|
* Class name of the node element
|
||||||
|
*/
|
||||||
node = 'p-organizationchart-node',
|
node = 'p-organizationchart-node',
|
||||||
|
/**
|
||||||
|
* Class name of the node toggle button element
|
||||||
|
*/
|
||||||
nodeToggleButton = 'p-organizationchart-node-toggle-button',
|
nodeToggleButton = 'p-organizationchart-node-toggle-button',
|
||||||
|
/**
|
||||||
|
* Class name of the node toggle button icon element
|
||||||
|
*/
|
||||||
nodeToggleButtonIcon = 'p-organizationchart-node-toggle-button-icon',
|
nodeToggleButtonIcon = 'p-organizationchart-node-toggle-button-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the connectors element
|
||||||
|
*/
|
||||||
connectors = 'p-organizationchart-connectors',
|
connectors = 'p-organizationchart-connectors',
|
||||||
|
/**
|
||||||
|
* Class name of the connector down element
|
||||||
|
*/
|
||||||
connectorDown = 'p-organizationchart-connector-down',
|
connectorDown = 'p-organizationchart-connector-down',
|
||||||
|
/**
|
||||||
|
* Class name of the connector left element
|
||||||
|
*/
|
||||||
connectorLeft = 'p-organizationchart-connector-left',
|
connectorLeft = 'p-organizationchart-connector-left',
|
||||||
|
/**
|
||||||
|
* Class name of the connector right element
|
||||||
|
*/
|
||||||
connectorRight = 'p-organizationchart-connector-right',
|
connectorRight = 'p-organizationchart-connector-right',
|
||||||
|
/**
|
||||||
|
* Class name of the node children element
|
||||||
|
*/
|
||||||
nodeChildren = 'p-organizationchart-node-children'
|
nodeChildren = 'p-organizationchart-node-children'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,22 +10,73 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum PaginatorClasses {
|
export enum PaginatorClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the paginator element
|
||||||
|
*/
|
||||||
paginator = 'p-paginator',
|
paginator = 'p-paginator',
|
||||||
|
/**
|
||||||
|
* Class name of the content start element
|
||||||
|
*/
|
||||||
contentStart = 'p-paginator-content-start',
|
contentStart = 'p-paginator-content-start',
|
||||||
|
/**
|
||||||
|
* Class name of the content end element
|
||||||
|
*/
|
||||||
contentEnd = 'p-paginator-content-end',
|
contentEnd = 'p-paginator-content-end',
|
||||||
|
/**
|
||||||
|
* Class name of the first element
|
||||||
|
*/
|
||||||
first = 'p-paginator-first',
|
first = 'p-paginator-first',
|
||||||
|
/**
|
||||||
|
* Class name of the first icon element
|
||||||
|
*/
|
||||||
firstIcon = 'p-paginator-first-icon',
|
firstIcon = 'p-paginator-first-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the prev element
|
||||||
|
*/
|
||||||
prev = 'p-paginator-prev',
|
prev = 'p-paginator-prev',
|
||||||
|
/**
|
||||||
|
* Class name of the prev icon element
|
||||||
|
*/
|
||||||
prevIcon = 'p-paginator-prev-icon',
|
prevIcon = 'p-paginator-prev-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the next element
|
||||||
|
*/
|
||||||
next = 'p-paginator-next',
|
next = 'p-paginator-next',
|
||||||
|
/**
|
||||||
|
* Class name of the next icon element
|
||||||
|
*/
|
||||||
nextIcon = 'p-paginator-next-icon',
|
nextIcon = 'p-paginator-next-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the last element
|
||||||
|
*/
|
||||||
last = 'p-paginator-last',
|
last = 'p-paginator-last',
|
||||||
|
/**
|
||||||
|
* Class name of the last icon element
|
||||||
|
*/
|
||||||
lastIcon = 'p-paginator-last-icon',
|
lastIcon = 'p-paginator-last-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the pages element
|
||||||
|
*/
|
||||||
pages = 'p-paginator-pages',
|
pages = 'p-paginator-pages',
|
||||||
|
/**
|
||||||
|
* Class name of the page element
|
||||||
|
*/
|
||||||
page = 'p-paginator-page',
|
page = 'p-paginator-page',
|
||||||
|
/**
|
||||||
|
* Class name of the current element
|
||||||
|
*/
|
||||||
current = 'p-paginator-current',
|
current = 'p-paginator-current',
|
||||||
|
/**
|
||||||
|
* Class name of the row per page dropdown element
|
||||||
|
*/
|
||||||
pcRowPerPageDropdown = 'p-paginator-rpp-dropdown',
|
pcRowPerPageDropdown = 'p-paginator-rpp-dropdown',
|
||||||
|
/**
|
||||||
|
* Class name of the jump to page dropdown element
|
||||||
|
*/
|
||||||
pcJumpToPageDropdown = 'p-paginator-jtp-dropdown',
|
pcJumpToPageDropdown = 'p-paginator-jtp-dropdown',
|
||||||
|
/**
|
||||||
|
* Class name of the jump to page input element
|
||||||
|
*/
|
||||||
pcJumpToPageInput = 'p-paginator-jtp-input'
|
pcJumpToPageInput = 'p-paginator-jtp-input'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,13 +10,37 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum PanelClasses {
|
export enum PanelClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-panel',
|
root = 'p-panel',
|
||||||
|
/**
|
||||||
|
* Class name of the header element
|
||||||
|
*/
|
||||||
header = 'p-panel-header',
|
header = 'p-panel-header',
|
||||||
|
/**
|
||||||
|
* Class name of the title element
|
||||||
|
*/
|
||||||
title = 'p-panel-title',
|
title = 'p-panel-title',
|
||||||
|
/**
|
||||||
|
* Class name of the header actions element
|
||||||
|
*/
|
||||||
headerActions = 'p-panel-header-actions',
|
headerActions = 'p-panel-header-actions',
|
||||||
|
/**
|
||||||
|
* Class name of the toggle button element
|
||||||
|
*/
|
||||||
pcToggleButton = 'p-panel-toggle-button',
|
pcToggleButton = 'p-panel-toggle-button',
|
||||||
|
/**
|
||||||
|
* Class name of the content container element
|
||||||
|
*/
|
||||||
contentContainer = 'p-panel-content-container',
|
contentContainer = 'p-panel-content-container',
|
||||||
|
/**
|
||||||
|
* Class name of the content element
|
||||||
|
*/
|
||||||
content = 'p-panel-content',
|
content = 'p-panel-content',
|
||||||
|
/**
|
||||||
|
* Class name of the footer element
|
||||||
|
*/
|
||||||
footer = 'p-panel-footer'
|
footer = 'p-panel-footer'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,22 +10,73 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum PanelMenuClasses {
|
export enum PanelMenuClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-panelmenu',
|
root = 'p-panelmenu',
|
||||||
|
/**
|
||||||
|
* Class name of the panel element
|
||||||
|
*/
|
||||||
panel = 'p-panelmenu-panel',
|
panel = 'p-panelmenu-panel',
|
||||||
|
/**
|
||||||
|
* Class name of the header element
|
||||||
|
*/
|
||||||
header = 'p-panelmenu-header',
|
header = 'p-panelmenu-header',
|
||||||
|
/**
|
||||||
|
* Class name of the header content element
|
||||||
|
*/
|
||||||
headerContent = 'p-panelmenu-header-content',
|
headerContent = 'p-panelmenu-header-content',
|
||||||
|
/**
|
||||||
|
* Class name of the header link element
|
||||||
|
*/
|
||||||
headerLink = 'p-panelmenu-header-link',
|
headerLink = 'p-panelmenu-header-link',
|
||||||
|
/**
|
||||||
|
* Class name of the header icon element
|
||||||
|
*/
|
||||||
headerIcon = 'p-panelmenu-header-icon',
|
headerIcon = 'p-panelmenu-header-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the header label element
|
||||||
|
*/
|
||||||
headerLabel = 'p-panelmenu-header-label',
|
headerLabel = 'p-panelmenu-header-label',
|
||||||
|
/**
|
||||||
|
* Class name of the content container element
|
||||||
|
*/
|
||||||
contentContainer = 'p-panelmenu-content-container',
|
contentContainer = 'p-panelmenu-content-container',
|
||||||
|
/**
|
||||||
|
* Class name of the content element
|
||||||
|
*/
|
||||||
content = 'p-panelmenu-content',
|
content = 'p-panelmenu-content',
|
||||||
|
/**
|
||||||
|
* Class name of the root list element
|
||||||
|
*/
|
||||||
rootList = 'p-panelmenu-root-list',
|
rootList = 'p-panelmenu-root-list',
|
||||||
|
/**
|
||||||
|
* Class name of the item element
|
||||||
|
*/
|
||||||
item = 'p-panelmenu-item',
|
item = 'p-panelmenu-item',
|
||||||
|
/**
|
||||||
|
* Class name of the item content element
|
||||||
|
*/
|
||||||
itemContent = 'p-panelmenu-item-content',
|
itemContent = 'p-panelmenu-item-content',
|
||||||
|
/**
|
||||||
|
* Class name of the item link element
|
||||||
|
*/
|
||||||
itemLink = 'p-panelmenu-item-link',
|
itemLink = 'p-panelmenu-item-link',
|
||||||
|
/**
|
||||||
|
* Class name of the item icon element
|
||||||
|
*/
|
||||||
itemIcon = 'p-panelmenu-item-icon',
|
itemIcon = 'p-panelmenu-item-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the item label element
|
||||||
|
*/
|
||||||
itemLabel = 'p-panelmenu-item-label',
|
itemLabel = 'p-panelmenu-item-label',
|
||||||
|
/**
|
||||||
|
* Class name of the submenu icon element
|
||||||
|
*/
|
||||||
submenuIcon = 'p-panelmenu-submenu-icon',
|
submenuIcon = 'p-panelmenu-submenu-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the submenu element
|
||||||
|
*/
|
||||||
submenu = 'p-panelmenu-submenu',
|
submenu = 'p-panelmenu-submenu',
|
||||||
separator = 'p-menuitem-separator'
|
separator = 'p-menuitem-separator'
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,13 +10,37 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum PasswordClasses {
|
export enum PasswordClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-password',
|
root = 'p-password',
|
||||||
|
/**
|
||||||
|
* Class name of the pt input element
|
||||||
|
*/
|
||||||
ptInput = 'p-password-input',
|
ptInput = 'p-password-input',
|
||||||
|
/**
|
||||||
|
* Class name of the mask icon element
|
||||||
|
*/
|
||||||
maskIcon = 'p-password-mask-icon',
|
maskIcon = 'p-password-mask-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the unmask icon element
|
||||||
|
*/
|
||||||
unmaskIcon = 'p-password-unmask-icon',
|
unmaskIcon = 'p-password-unmask-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the overlay element
|
||||||
|
*/
|
||||||
overlay = 'p-password-overlay',
|
overlay = 'p-password-overlay',
|
||||||
|
/**
|
||||||
|
* Class name of the meter element
|
||||||
|
*/
|
||||||
meter = 'p-password-meter',
|
meter = 'p-password-meter',
|
||||||
|
/**
|
||||||
|
* Class name of the meter label element
|
||||||
|
*/
|
||||||
meterLabel = 'p-password-meter-label',
|
meterLabel = 'p-password-meter-label',
|
||||||
|
/**
|
||||||
|
* Class name of the meter text element
|
||||||
|
*/
|
||||||
meterText = 'p-password-meter-text'
|
meterText = 'p-password-meter-text'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,11 +10,29 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum PickListClasses {
|
export enum PickListClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-picklist',
|
root = 'p-picklist',
|
||||||
|
/**
|
||||||
|
* Class name of the source controls element
|
||||||
|
*/
|
||||||
sourceControls = 'p-picklist-source-controls',
|
sourceControls = 'p-picklist-source-controls',
|
||||||
|
/**
|
||||||
|
* Class name of the source list container element
|
||||||
|
*/
|
||||||
sourceListContainer = 'p-picklist-source-list-container',
|
sourceListContainer = 'p-picklist-source-list-container',
|
||||||
|
/**
|
||||||
|
* Class name of the transfer controls element
|
||||||
|
*/
|
||||||
transferControls = 'p-picklist-transfer-controls',
|
transferControls = 'p-picklist-transfer-controls',
|
||||||
|
/**
|
||||||
|
* Class name of the target list container element
|
||||||
|
*/
|
||||||
targetListContainer = 'p-picklist-target-list-container',
|
targetListContainer = 'p-picklist-target-list-container',
|
||||||
|
/**
|
||||||
|
* Class name of the target controls element
|
||||||
|
*/
|
||||||
targetControls = 'p-picklist-target-controls'
|
targetControls = 'p-picklist-target-controls'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,13 @@
|
||||||
import { BaseStyle } from '../../base/style/BaseStyle';
|
import { BaseStyle } from '../../base/style/BaseStyle';
|
||||||
|
|
||||||
export enum PopoverClasses {
|
export enum PopoverClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-popover',
|
root = 'p-popover',
|
||||||
|
/**
|
||||||
|
* Class name of the content element
|
||||||
|
*/
|
||||||
content = 'p-popover-content'
|
content = 'p-popover-content'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,9 +10,21 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum ProgressBarClasses {
|
export enum ProgressBarClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-progressbar',
|
root = 'p-progressbar',
|
||||||
|
/**
|
||||||
|
* Class name of the indeterminate container element
|
||||||
|
*/
|
||||||
indeterminateContainer = 'p-progressbar-indeterminate-container',
|
indeterminateContainer = 'p-progressbar-indeterminate-container',
|
||||||
|
/**
|
||||||
|
* Class name of the value element
|
||||||
|
*/
|
||||||
value = 'p-progressbar-value',
|
value = 'p-progressbar-value',
|
||||||
|
/**
|
||||||
|
* Class name of the label element
|
||||||
|
*/
|
||||||
label = 'p-progressbar-label'
|
label = 'p-progressbar-label'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,8 +10,17 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum ProgressSpinnerClasses {
|
export enum ProgressSpinnerClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-progressspinner',
|
root = 'p-progressspinner',
|
||||||
|
/**
|
||||||
|
* Class name of the spin element
|
||||||
|
*/
|
||||||
spin = 'p-progressspinner-spin',
|
spin = 'p-progressspinner-spin',
|
||||||
|
/**
|
||||||
|
* Class name of the circle element
|
||||||
|
*/
|
||||||
circle = 'p-progressspinner-circle'
|
circle = 'p-progressspinner-circle'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,9 +10,21 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum RadioButtonClasses {
|
export enum RadioButtonClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-radiobutton',
|
root = 'p-radiobutton',
|
||||||
|
/**
|
||||||
|
* Class name of the box element
|
||||||
|
*/
|
||||||
box = 'p-radiobutton-box',
|
box = 'p-radiobutton-box',
|
||||||
|
/**
|
||||||
|
* Class name of the input element
|
||||||
|
*/
|
||||||
input = 'p-radiobutton-input',
|
input = 'p-radiobutton-input',
|
||||||
|
/**
|
||||||
|
* Class name of the icon element
|
||||||
|
*/
|
||||||
icon = 'p-radiobutton-icon'
|
icon = 'p-radiobutton-icon'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,9 +10,21 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum RatingClasses {
|
export enum RatingClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-rating',
|
root = 'p-rating',
|
||||||
|
/**
|
||||||
|
* Class name of the option element
|
||||||
|
*/
|
||||||
option = 'p-rating-option',
|
option = 'p-rating-option',
|
||||||
|
/**
|
||||||
|
* Class name of the on icon element
|
||||||
|
*/
|
||||||
onIcon = 'p-rating-on-icon',
|
onIcon = 'p-rating-on-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the off icon element
|
||||||
|
*/
|
||||||
offIcon = 'p-rating-off-icon'
|
offIcon = 'p-rating-off-icon'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,9 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum RippleClasses {
|
export enum RippleClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-ink'
|
root = 'p-ink'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,10 +10,25 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum ScrollPanelClasses {
|
export enum ScrollPanelClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-scrollpanel',
|
root = 'p-scrollpanel',
|
||||||
|
/**
|
||||||
|
* Class name of the content container element
|
||||||
|
*/
|
||||||
contentContainer = 'p-scrollpanel-content-container',
|
contentContainer = 'p-scrollpanel-content-container',
|
||||||
|
/**
|
||||||
|
* Class name of the content element
|
||||||
|
*/
|
||||||
content = 'p-scrollpanel-content',
|
content = 'p-scrollpanel-content',
|
||||||
|
/**
|
||||||
|
* Class name of the bar x element
|
||||||
|
*/
|
||||||
barX = 'p-scrollpanel-bar-x',
|
barX = 'p-scrollpanel-bar-x',
|
||||||
|
/**
|
||||||
|
* Class name of the bar y element
|
||||||
|
*/
|
||||||
barY = 'p-scrollpanel-bar-y'
|
barY = 'p-scrollpanel-bar-y'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,13 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum ScrollTopClasses {
|
export enum ScrollTopClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-scrolltop',
|
root = 'p-scrolltop',
|
||||||
|
/**
|
||||||
|
* Class name of the icon element
|
||||||
|
*/
|
||||||
icon = 'p-scrolltop-icon'
|
icon = 'p-scrolltop-icon'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,23 +10,77 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum SelectClasses {
|
export enum SelectClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-select',
|
root = 'p-select',
|
||||||
|
/**
|
||||||
|
* Class name of the label element
|
||||||
|
*/
|
||||||
label = 'p-select-label',
|
label = 'p-select-label',
|
||||||
|
/**
|
||||||
|
* Class name of the clear icon element
|
||||||
|
*/
|
||||||
clearIcon = 'p-select-clear-icon',
|
clearIcon = 'p-select-clear-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the dropdown element
|
||||||
|
*/
|
||||||
dropdown = 'p-select-dropdown',
|
dropdown = 'p-select-dropdown',
|
||||||
|
/**
|
||||||
|
* Class name of the loadingicon element
|
||||||
|
*/
|
||||||
loadingicon = 'p-select-loading-icon',
|
loadingicon = 'p-select-loading-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the dropdown icon element
|
||||||
|
*/
|
||||||
dropdownIcon = 'p-select-dropdown-icon',
|
dropdownIcon = 'p-select-dropdown-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the overlay element
|
||||||
|
*/
|
||||||
overlay = 'p-select-overlay',
|
overlay = 'p-select-overlay',
|
||||||
|
/**
|
||||||
|
* Class name of the header element
|
||||||
|
*/
|
||||||
header = 'p-select-header',
|
header = 'p-select-header',
|
||||||
|
/**
|
||||||
|
* Class name of the filter element
|
||||||
|
*/
|
||||||
pcFilter = 'p-select-filter',
|
pcFilter = 'p-select-filter',
|
||||||
|
/**
|
||||||
|
* Class name of the list container element
|
||||||
|
*/
|
||||||
listContainer = 'p-select-list-container',
|
listContainer = 'p-select-list-container',
|
||||||
|
/**
|
||||||
|
* Class name of the list element
|
||||||
|
*/
|
||||||
list = 'p-select-list',
|
list = 'p-select-list',
|
||||||
|
/**
|
||||||
|
* Class name of the option group element
|
||||||
|
*/
|
||||||
optionGroup = 'p-select-option-group',
|
optionGroup = 'p-select-option-group',
|
||||||
|
/**
|
||||||
|
* Class name of the option group label element
|
||||||
|
*/
|
||||||
optionGroupLabel = 'p-select-option-group-label',
|
optionGroupLabel = 'p-select-option-group-label',
|
||||||
|
/**
|
||||||
|
* Class name of the option element
|
||||||
|
*/
|
||||||
option = 'p-select-option',
|
option = 'p-select-option',
|
||||||
|
/**
|
||||||
|
* Class name of the option label element
|
||||||
|
*/
|
||||||
optionLabel = 'p-select-option-label',
|
optionLabel = 'p-select-option-label',
|
||||||
|
/**
|
||||||
|
* Class name of the option check icon element
|
||||||
|
*/
|
||||||
optionCheckIcon = 'p-select-option-check-icon',
|
optionCheckIcon = 'p-select-option-check-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the option blank icon element
|
||||||
|
*/
|
||||||
optionBlankIcon = 'p-select-option-blank-icon',
|
optionBlankIcon = 'p-select-option-blank-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the empty message element
|
||||||
|
*/
|
||||||
emptyMessage = 'p-select-empty-message'
|
emptyMessage = 'p-select-empty-message'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,9 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum SelectButtonClasses {
|
export enum SelectButtonClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-selectbutton'
|
root = 'p-selectbutton'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,9 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum SkeletonClasses {
|
export enum SkeletonClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-skeleton'
|
root = 'p-skeleton'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,8 +10,17 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum SliderClasses {
|
export enum SliderClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-slider',
|
root = 'p-slider',
|
||||||
|
/**
|
||||||
|
* Class name of the range element
|
||||||
|
*/
|
||||||
range = 'p-slider-range',
|
range = 'p-slider-range',
|
||||||
|
/**
|
||||||
|
* Class name of the handle element
|
||||||
|
*/
|
||||||
handle = 'p-slider-handle'
|
handle = 'p-slider-handle'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,12 +10,33 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum SpeedDialClasses {
|
export enum SpeedDialClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-speeddial',
|
root = 'p-speeddial',
|
||||||
|
/**
|
||||||
|
* Class name of the button element
|
||||||
|
*/
|
||||||
pcButton = 'p-speeddial-button',
|
pcButton = 'p-speeddial-button',
|
||||||
|
/**
|
||||||
|
* Class name of the list element
|
||||||
|
*/
|
||||||
list = 'p-speeddial-list',
|
list = 'p-speeddial-list',
|
||||||
|
/**
|
||||||
|
* Class name of the item element
|
||||||
|
*/
|
||||||
item = 'p-speeddial-item',
|
item = 'p-speeddial-item',
|
||||||
|
/**
|
||||||
|
* Class name of the action element
|
||||||
|
*/
|
||||||
action = 'p-speeddial-action',
|
action = 'p-speeddial-action',
|
||||||
|
/**
|
||||||
|
* Class name of the action icon element
|
||||||
|
*/
|
||||||
actionIcon = 'p-speeddial-action-icon',
|
actionIcon = 'p-speeddial-action-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the mask element
|
||||||
|
*/
|
||||||
mask = 'p-speeddial-mask'
|
mask = 'p-speeddial-mask'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,8 +10,17 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum SplitButtonClasses {
|
export enum SplitButtonClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-splitbutton',
|
root = 'p-splitbutton',
|
||||||
|
/**
|
||||||
|
* Class name of the button element
|
||||||
|
*/
|
||||||
pcButton = 'p-splitbutton-button',
|
pcButton = 'p-splitbutton-button',
|
||||||
|
/**
|
||||||
|
* Class name of the dropdown element
|
||||||
|
*/
|
||||||
pcDropdown = 'p-splitbutton-dropdown'
|
pcDropdown = 'p-splitbutton-dropdown'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,8 +10,17 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum SplitterClasses {
|
export enum SplitterClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-splitter',
|
root = 'p-splitter',
|
||||||
|
/**
|
||||||
|
* Class name of the gutter element
|
||||||
|
*/
|
||||||
gutter = 'p-splitter-gutter',
|
gutter = 'p-splitter-gutter',
|
||||||
|
/**
|
||||||
|
* Class name of the gutter handle element
|
||||||
|
*/
|
||||||
gutterHandle = 'p-splitter-gutter-handle'
|
gutterHandle = 'p-splitter-gutter-handle'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,9 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum SplitterPanelClasses {
|
export enum SplitterPanelClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-splitterpanel'
|
root = 'p-splitterpanel'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,16 +10,49 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum StepperClasses {
|
export enum StepperClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-stepper',
|
root = 'p-stepper',
|
||||||
|
/**
|
||||||
|
* Class name of the list element
|
||||||
|
*/
|
||||||
list = 'p-stepper-list',
|
list = 'p-stepper-list',
|
||||||
|
/**
|
||||||
|
* Class name of the stepper item element
|
||||||
|
*/
|
||||||
stepperItem = 'p-stepper-item',
|
stepperItem = 'p-stepper-item',
|
||||||
|
/**
|
||||||
|
* Class name of the stepper item header element
|
||||||
|
*/
|
||||||
stepperItemHeader = 'p-stepper-item-header',
|
stepperItemHeader = 'p-stepper-item-header',
|
||||||
|
/**
|
||||||
|
* Class name of the stepper item number element
|
||||||
|
*/
|
||||||
stepperItemNumber = 'p-stepper-item-number',
|
stepperItemNumber = 'p-stepper-item-number',
|
||||||
|
/**
|
||||||
|
* Class name of the stepper item title element
|
||||||
|
*/
|
||||||
stepperItemTitle = 'p-stepper-item-title',
|
stepperItemTitle = 'p-stepper-item-title',
|
||||||
|
/**
|
||||||
|
* Class name of the stepper separator element
|
||||||
|
*/
|
||||||
stepperSeparator = 'p-stepper-separator',
|
stepperSeparator = 'p-stepper-separator',
|
||||||
|
/**
|
||||||
|
* Class name of the stepper panel content container element
|
||||||
|
*/
|
||||||
stepperPanelContentContainer = 'p-stepper-panel-content-container',
|
stepperPanelContentContainer = 'p-stepper-panel-content-container',
|
||||||
|
/**
|
||||||
|
* Class name of the stepper panel content element
|
||||||
|
*/
|
||||||
stepperPanelContent = 'p-stepper-panel-content',
|
stepperPanelContent = 'p-stepper-panel-content',
|
||||||
|
/**
|
||||||
|
* Class name of the panels element
|
||||||
|
*/
|
||||||
panels = 'p-stepper-panels',
|
panels = 'p-stepper-panels',
|
||||||
|
/**
|
||||||
|
* Class name of the panel element
|
||||||
|
*/
|
||||||
panel = 'p-stepper-panel'
|
panel = 'p-stepper-panel'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,11 +10,29 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum StepsClasses {
|
export enum StepsClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-steps',
|
root = 'p-steps',
|
||||||
|
/**
|
||||||
|
* Class name of the list element
|
||||||
|
*/
|
||||||
list = 'p-steps-list',
|
list = 'p-steps-list',
|
||||||
|
/**
|
||||||
|
* Class name of the item element
|
||||||
|
*/
|
||||||
item = 'p-steps-item',
|
item = 'p-steps-item',
|
||||||
|
/**
|
||||||
|
* Class name of the item link element
|
||||||
|
*/
|
||||||
itemLink = 'p-steps-item-link',
|
itemLink = 'p-steps-item-link',
|
||||||
|
/**
|
||||||
|
* Class name of the item number element
|
||||||
|
*/
|
||||||
itemNumber = 'p-steps-item-number',
|
itemNumber = 'p-steps-item-number',
|
||||||
|
/**
|
||||||
|
* Class name of the item label element
|
||||||
|
*/
|
||||||
itemLabel = 'p-steps-item-label'
|
itemLabel = 'p-steps-item-label'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,9 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum TabClasses {
|
export enum TabClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-tab'
|
root = 'p-tab'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,11 +10,29 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum TabListClasses {
|
export enum TabListClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-tablist',
|
root = 'p-tablist',
|
||||||
|
/**
|
||||||
|
* Class name of the content element
|
||||||
|
*/
|
||||||
content = 'p-tablist-content',
|
content = 'p-tablist-content',
|
||||||
|
/**
|
||||||
|
* Class name of the tabs element
|
||||||
|
*/
|
||||||
tabs = 'p-tablist-tab-list',
|
tabs = 'p-tablist-tab-list',
|
||||||
|
/**
|
||||||
|
* Class name of the inkbar element
|
||||||
|
*/
|
||||||
inkbar = 'p-tablist-active-bar',
|
inkbar = 'p-tablist-active-bar',
|
||||||
|
/**
|
||||||
|
* Class name of the previous button element
|
||||||
|
*/
|
||||||
previousButton = 'p-tablist-prev-button',
|
previousButton = 'p-tablist-prev-button',
|
||||||
|
/**
|
||||||
|
* Class name of the next button element
|
||||||
|
*/
|
||||||
nextButton = 'p-tablist-next-button'
|
nextButton = 'p-tablist-next-button'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,12 +10,33 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum TabMenuClasses {
|
export enum TabMenuClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-tabmenu',
|
root = 'p-tabmenu',
|
||||||
|
/**
|
||||||
|
* Class name of the tablist element
|
||||||
|
*/
|
||||||
tablist = 'p-tabmenu-tablist',
|
tablist = 'p-tabmenu-tablist',
|
||||||
|
/**
|
||||||
|
* Class name of the item element
|
||||||
|
*/
|
||||||
item = 'p-tabmenu-item',
|
item = 'p-tabmenu-item',
|
||||||
|
/**
|
||||||
|
* Class name of the item link element
|
||||||
|
*/
|
||||||
itemLink = 'p-tabmenu-item-link',
|
itemLink = 'p-tabmenu-item-link',
|
||||||
|
/**
|
||||||
|
* Class name of the item icon element
|
||||||
|
*/
|
||||||
itemIcon = 'p-tabmenu-item-icon',
|
itemIcon = 'p-tabmenu-item-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the item label element
|
||||||
|
*/
|
||||||
itemLabel = 'p-tabmenu-item-label',
|
itemLabel = 'p-tabmenu-item-label',
|
||||||
|
/**
|
||||||
|
* Class name of the inkbar element
|
||||||
|
*/
|
||||||
inkbar = 'p-tabmenu-ink-bar'
|
inkbar = 'p-tabmenu-ink-bar'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,9 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum TabPanelClasses {
|
export enum TabPanelClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-tabpanel'
|
root = 'p-tabpanel'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,9 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum TabPanelsClasses {
|
export enum TabPanelsClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-tabpanels'
|
root = 'p-tabpanels'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,9 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum TabsClasses {
|
export enum TabsClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-tabs'
|
root = 'p-tabs'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -11,17 +11,53 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum TabViewClasses {
|
export enum TabViewClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-tabview',
|
root = 'p-tabview',
|
||||||
|
/**
|
||||||
|
* Class name of the nav container element
|
||||||
|
*/
|
||||||
navContainer = 'p-tabview-tablist-container',
|
navContainer = 'p-tabview-tablist-container',
|
||||||
|
/**
|
||||||
|
* Class name of the previous button element
|
||||||
|
*/
|
||||||
previousButton = 'p-tabview-prev-button',
|
previousButton = 'p-tabview-prev-button',
|
||||||
|
/**
|
||||||
|
* Class name of the nav content element
|
||||||
|
*/
|
||||||
navContent = 'p-tabview-tablist-scroll-container',
|
navContent = 'p-tabview-tablist-scroll-container',
|
||||||
|
/**
|
||||||
|
* Class name of the nav element
|
||||||
|
*/
|
||||||
nav = 'p-tabview-tablist',
|
nav = 'p-tabview-tablist',
|
||||||
|
/**
|
||||||
|
* Class name of the tab header element
|
||||||
|
*/
|
||||||
tabHeader = 'p-tabview-tablist-item',
|
tabHeader = 'p-tabview-tablist-item',
|
||||||
|
/**
|
||||||
|
* Class name of the tab header action element
|
||||||
|
*/
|
||||||
tabHeaderAction = 'p-tabview-tab-header',
|
tabHeaderAction = 'p-tabview-tab-header',
|
||||||
|
/**
|
||||||
|
* Class name of the tab header title element
|
||||||
|
*/
|
||||||
tabHeaderTitle = 'p-tabview-tab-title',
|
tabHeaderTitle = 'p-tabview-tab-title',
|
||||||
|
/**
|
||||||
|
* Class name of the tab content element
|
||||||
|
*/
|
||||||
tabContent = 'p-tabview-panel',
|
tabContent = 'p-tabview-panel',
|
||||||
|
/**
|
||||||
|
* Class name of the inkbar element
|
||||||
|
*/
|
||||||
inkbar = 'p-tabview-ink-bar',
|
inkbar = 'p-tabview-ink-bar',
|
||||||
|
/**
|
||||||
|
* Class name of the next button element
|
||||||
|
*/
|
||||||
nextButton = 'p-tabview-next-button',
|
nextButton = 'p-tabview-next-button',
|
||||||
|
/**
|
||||||
|
* Class name of the panel container element
|
||||||
|
*/
|
||||||
panelContainer = 'p-tabview-panels'
|
panelContainer = 'p-tabview-panels'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,8 +10,17 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum TagClasses {
|
export enum TagClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-tag',
|
root = 'p-tag',
|
||||||
|
/**
|
||||||
|
* Class name of the icon element
|
||||||
|
*/
|
||||||
icon = 'p-tag-icon',
|
icon = 'p-tag-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the label element
|
||||||
|
*/
|
||||||
label = 'p-tag-label'
|
label = 'p-tag-label'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,14 +10,41 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum TerminalClasses {
|
export enum TerminalClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-terminal',
|
root = 'p-terminal',
|
||||||
|
/**
|
||||||
|
* Class name of the welcome message element
|
||||||
|
*/
|
||||||
welcomeMessage = 'p-terminal-welcome-message',
|
welcomeMessage = 'p-terminal-welcome-message',
|
||||||
|
/**
|
||||||
|
* Class name of the command list element
|
||||||
|
*/
|
||||||
commandList = 'p-terminal-command-list',
|
commandList = 'p-terminal-command-list',
|
||||||
|
/**
|
||||||
|
* Class name of the command element
|
||||||
|
*/
|
||||||
command = 'p-terminal-command',
|
command = 'p-terminal-command',
|
||||||
|
/**
|
||||||
|
* Class name of the command value element
|
||||||
|
*/
|
||||||
commandValue = 'p-terminal-command-value',
|
commandValue = 'p-terminal-command-value',
|
||||||
|
/**
|
||||||
|
* Class name of the command response element
|
||||||
|
*/
|
||||||
commandResponse = 'p-terminal-command-response',
|
commandResponse = 'p-terminal-command-response',
|
||||||
|
/**
|
||||||
|
* Class name of the prompt element
|
||||||
|
*/
|
||||||
prompt = 'p-terminal-prompt',
|
prompt = 'p-terminal-prompt',
|
||||||
|
/**
|
||||||
|
* Class name of the prompt label element
|
||||||
|
*/
|
||||||
promptLabel = 'p-terminal-prompt-label',
|
promptLabel = 'p-terminal-prompt-label',
|
||||||
|
/**
|
||||||
|
* Class name of the prompt value element
|
||||||
|
*/
|
||||||
promptValue = 'p-terminal-prompt-value'
|
promptValue = 'p-terminal-prompt-value'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,6 +10,9 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum TextareaClasses {
|
export enum TextareaClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-textarea'
|
root = 'p-textarea'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,17 +10,53 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum TieredMenuClasses {
|
export enum TieredMenuClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-tieredmenu',
|
root = 'p-tieredmenu',
|
||||||
|
/**
|
||||||
|
* Class name of the start element
|
||||||
|
*/
|
||||||
start = 'p-tieredmenu-start',
|
start = 'p-tieredmenu-start',
|
||||||
|
/**
|
||||||
|
* Class name of the root list element
|
||||||
|
*/
|
||||||
rootList = 'p-tieredmenu-root-list',
|
rootList = 'p-tieredmenu-root-list',
|
||||||
|
/**
|
||||||
|
* Class name of the item element
|
||||||
|
*/
|
||||||
item = 'p-tieredmenu-item',
|
item = 'p-tieredmenu-item',
|
||||||
|
/**
|
||||||
|
* Class name of the item content element
|
||||||
|
*/
|
||||||
itemContent = 'p-tieredmenu-item-content',
|
itemContent = 'p-tieredmenu-item-content',
|
||||||
|
/**
|
||||||
|
* Class name of the item link element
|
||||||
|
*/
|
||||||
itemLink = 'p-tieredmenu-item-link',
|
itemLink = 'p-tieredmenu-item-link',
|
||||||
|
/**
|
||||||
|
* Class name of the item icon element
|
||||||
|
*/
|
||||||
itemIcon = 'p-tieredmenu-item-icon',
|
itemIcon = 'p-tieredmenu-item-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the item label element
|
||||||
|
*/
|
||||||
itemLabel = 'p-tieredmenu-item-label',
|
itemLabel = 'p-tieredmenu-item-label',
|
||||||
|
/**
|
||||||
|
* Class name of the submenu icon element
|
||||||
|
*/
|
||||||
submenuIcon = 'p-tieredmenu-submenu-icon',
|
submenuIcon = 'p-tieredmenu-submenu-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the submenu element
|
||||||
|
*/
|
||||||
submenu = 'p-tieredmenu-submenu',
|
submenu = 'p-tieredmenu-submenu',
|
||||||
|
/**
|
||||||
|
* Class name of the separator element
|
||||||
|
*/
|
||||||
separator = 'p-tieredmenu-separator',
|
separator = 'p-tieredmenu-separator',
|
||||||
|
/**
|
||||||
|
* Class name of the end element
|
||||||
|
*/
|
||||||
end = 'p-tieredmenu-end'
|
end = 'p-tieredmenu-end'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,12 +10,33 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum TimelineClasses {
|
export enum TimelineClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-timeline',
|
root = 'p-timeline',
|
||||||
|
/**
|
||||||
|
* Class name of the event element
|
||||||
|
*/
|
||||||
event = 'p-timeline-event',
|
event = 'p-timeline-event',
|
||||||
|
/**
|
||||||
|
* Class name of the event opposite element
|
||||||
|
*/
|
||||||
eventOpposite = 'p-timeline-event-opposite',
|
eventOpposite = 'p-timeline-event-opposite',
|
||||||
|
/**
|
||||||
|
* Class name of the event separator element
|
||||||
|
*/
|
||||||
eventSeparator = 'p-timeline-event-separator',
|
eventSeparator = 'p-timeline-event-separator',
|
||||||
|
/**
|
||||||
|
* Class name of the event marker element
|
||||||
|
*/
|
||||||
eventMarker = 'p-timeline-event-marker',
|
eventMarker = 'p-timeline-event-marker',
|
||||||
|
/**
|
||||||
|
* Class name of the event connector element
|
||||||
|
*/
|
||||||
eventConnector = 'p-timeline-event-connector',
|
eventConnector = 'p-timeline-event-connector',
|
||||||
|
/**
|
||||||
|
* Class name of the event content element
|
||||||
|
*/
|
||||||
eventContent = 'p-timeline-event-content'
|
eventContent = 'p-timeline-event-content'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,14 +10,41 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum ToastClasses {
|
export enum ToastClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-toast',
|
root = 'p-toast',
|
||||||
|
/**
|
||||||
|
* Class name of the message element
|
||||||
|
*/
|
||||||
message = 'p-toast-message',
|
message = 'p-toast-message',
|
||||||
|
/**
|
||||||
|
* Class name of the message content element
|
||||||
|
*/
|
||||||
messageContent = 'p-toast-message-content',
|
messageContent = 'p-toast-message-content',
|
||||||
|
/**
|
||||||
|
* Class name of the message icon element
|
||||||
|
*/
|
||||||
messageIcon = 'p-toast-message-icon',
|
messageIcon = 'p-toast-message-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the message text element
|
||||||
|
*/
|
||||||
messageText = 'p-toast-message-text',
|
messageText = 'p-toast-message-text',
|
||||||
|
/**
|
||||||
|
* Class name of the summary element
|
||||||
|
*/
|
||||||
summary = 'p-toast-summary',
|
summary = 'p-toast-summary',
|
||||||
|
/**
|
||||||
|
* Class name of the detail element
|
||||||
|
*/
|
||||||
detail = 'p-toast-detail',
|
detail = 'p-toast-detail',
|
||||||
|
/**
|
||||||
|
* Class name of the close button element
|
||||||
|
*/
|
||||||
closeButton = 'p-toast-close-button',
|
closeButton = 'p-toast-close-button',
|
||||||
|
/**
|
||||||
|
* Class name of the close icon element
|
||||||
|
*/
|
||||||
closeIcon = 'p-toast-close-icon'
|
closeIcon = 'p-toast-close-icon'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,8 +10,17 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum ToggleButtonClasses {
|
export enum ToggleButtonClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-togglebutton',
|
root = 'p-togglebutton',
|
||||||
|
/**
|
||||||
|
* Class name of the icon element
|
||||||
|
*/
|
||||||
icon = 'p-togglebutton-icon',
|
icon = 'p-togglebutton-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the label element
|
||||||
|
*/
|
||||||
label = 'p-togglebutton-label'
|
label = 'p-togglebutton-label'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,8 +10,17 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum ToggleSwitchClasses {
|
export enum ToggleSwitchClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-toggleswitch',
|
root = 'p-toggleswitch',
|
||||||
|
/**
|
||||||
|
* Class name of the input element
|
||||||
|
*/
|
||||||
input = 'p-toggleswitch-input',
|
input = 'p-toggleswitch-input',
|
||||||
|
/**
|
||||||
|
* Class name of the slider element
|
||||||
|
*/
|
||||||
slider = 'p-toggleswitch-slider'
|
slider = 'p-toggleswitch-slider'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,9 +10,21 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum ToolbarClasses {
|
export enum ToolbarClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-toolbar',
|
root = 'p-toolbar',
|
||||||
|
/**
|
||||||
|
* Class name of the start element
|
||||||
|
*/
|
||||||
start = 'p-toolbar-start',
|
start = 'p-toolbar-start',
|
||||||
|
/**
|
||||||
|
* Class name of the center element
|
||||||
|
*/
|
||||||
center = 'p-toolbar-center',
|
center = 'p-toolbar-center',
|
||||||
|
/**
|
||||||
|
* Class name of the end element
|
||||||
|
*/
|
||||||
end = 'p-toolbar-end'
|
end = 'p-toolbar-end'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,8 +10,17 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum TooltipClasses {
|
export enum TooltipClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-tooltip',
|
root = 'p-tooltip',
|
||||||
|
/**
|
||||||
|
* Class name of the arrow element
|
||||||
|
*/
|
||||||
arrow = 'p-tooltip-arrow',
|
arrow = 'p-tooltip-arrow',
|
||||||
|
/**
|
||||||
|
* Class name of the text element
|
||||||
|
*/
|
||||||
text = 'p-tooltip-text'
|
text = 'p-tooltip-text'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,20 +10,65 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum TreeClasses {
|
export enum TreeClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-tree',
|
root = 'p-tree',
|
||||||
|
/**
|
||||||
|
* Class name of the mask element
|
||||||
|
*/
|
||||||
mask = 'p-tree-mask',
|
mask = 'p-tree-mask',
|
||||||
|
/**
|
||||||
|
* Class name of the loading icon element
|
||||||
|
*/
|
||||||
loadingIcon = 'p-tree-loading-icon',
|
loadingIcon = 'p-tree-loading-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the filter input element
|
||||||
|
*/
|
||||||
pcFilterInput = 'p-tree-filter-input',
|
pcFilterInput = 'p-tree-filter-input',
|
||||||
|
/**
|
||||||
|
* Class name of the wrapper element
|
||||||
|
*/
|
||||||
wrapper = 'p-tree-root',
|
wrapper = 'p-tree-root',
|
||||||
|
/**
|
||||||
|
* Class name of the root children element
|
||||||
|
*/
|
||||||
rootChildren = 'p-tree-root-children',
|
rootChildren = 'p-tree-root-children',
|
||||||
|
/**
|
||||||
|
* Class name of the node element
|
||||||
|
*/
|
||||||
node = 'p-tree-node',
|
node = 'p-tree-node',
|
||||||
|
/**
|
||||||
|
* Class name of the node content element
|
||||||
|
*/
|
||||||
nodeContent = 'p-tree-node-content',
|
nodeContent = 'p-tree-node-content',
|
||||||
|
/**
|
||||||
|
* Class name of the node toggle button element
|
||||||
|
*/
|
||||||
nodeToggleButton = 'p-tree-node-toggle-button',
|
nodeToggleButton = 'p-tree-node-toggle-button',
|
||||||
|
/**
|
||||||
|
* Class name of the node toggle icon element
|
||||||
|
*/
|
||||||
nodeToggleIcon = 'p-tree-node-toggle-icon',
|
nodeToggleIcon = 'p-tree-node-toggle-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the node toggler icon element
|
||||||
|
*/
|
||||||
nodeTogglerIcon = 'p-tree-node-toggler-icon',
|
nodeTogglerIcon = 'p-tree-node-toggler-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the node checkbox element
|
||||||
|
*/
|
||||||
nodeCheckbox = 'p-tree-node-checkbox',
|
nodeCheckbox = 'p-tree-node-checkbox',
|
||||||
|
/**
|
||||||
|
* Class name of the node icon element
|
||||||
|
*/
|
||||||
nodeIcon = 'p-tree-node-icon',
|
nodeIcon = 'p-tree-node-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the node label element
|
||||||
|
*/
|
||||||
nodeLabel = 'p-tree-node-label',
|
nodeLabel = 'p-tree-node-label',
|
||||||
|
/**
|
||||||
|
* Class name of the node children element
|
||||||
|
*/
|
||||||
nodeChildren = 'p-tree-node-children'
|
nodeChildren = 'p-tree-node-children'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,15 +10,45 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum TreeSelectClasses {
|
export enum TreeSelectClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-treeselect',
|
root = 'p-treeselect',
|
||||||
|
/**
|
||||||
|
* Class name of the label container element
|
||||||
|
*/
|
||||||
labelContainer = 'p-treeselect-label-container',
|
labelContainer = 'p-treeselect-label-container',
|
||||||
|
/**
|
||||||
|
* Class name of the label element
|
||||||
|
*/
|
||||||
label = 'p-treeselect-label',
|
label = 'p-treeselect-label',
|
||||||
|
/**
|
||||||
|
* Class name of the chip item element
|
||||||
|
*/
|
||||||
chipItem = 'p-treeselect-chip-item',
|
chipItem = 'p-treeselect-chip-item',
|
||||||
|
/**
|
||||||
|
* Class name of the chip element
|
||||||
|
*/
|
||||||
pcChip = 'p-treeselect-chip',
|
pcChip = 'p-treeselect-chip',
|
||||||
|
/**
|
||||||
|
* Class name of the dropdown element
|
||||||
|
*/
|
||||||
dropdown = 'p-treeselect-dropdown',
|
dropdown = 'p-treeselect-dropdown',
|
||||||
|
/**
|
||||||
|
* Class name of the dropdown icon element
|
||||||
|
*/
|
||||||
dropdownIcon = 'p-treeselect-dropdown-icon',
|
dropdownIcon = 'p-treeselect-dropdown-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the panel element
|
||||||
|
*/
|
||||||
panel = 'p-treeselect-overlay',
|
panel = 'p-treeselect-overlay',
|
||||||
|
/**
|
||||||
|
* Class name of the tree container element
|
||||||
|
*/
|
||||||
treeContainer = 'p-treeselect-tree-container',
|
treeContainer = 'p-treeselect-tree-container',
|
||||||
|
/**
|
||||||
|
* Class name of the empty message element
|
||||||
|
*/
|
||||||
emptyMessage = 'p-treeselect-empty-message'
|
emptyMessage = 'p-treeselect-empty-message'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,26 +10,89 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum TreeTableClasses {
|
export enum TreeTableClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-treetable',
|
root = 'p-treetable',
|
||||||
|
/**
|
||||||
|
* Class name of the loading element
|
||||||
|
*/
|
||||||
loading = 'p-treetable-loading',
|
loading = 'p-treetable-loading',
|
||||||
|
/**
|
||||||
|
* Class name of the mask element
|
||||||
|
*/
|
||||||
mask = 'p-treetable-mask',
|
mask = 'p-treetable-mask',
|
||||||
|
/**
|
||||||
|
* Class name of the loading icon element
|
||||||
|
*/
|
||||||
loadingIcon = 'p-treetable-loading-icon',
|
loadingIcon = 'p-treetable-loading-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the header element
|
||||||
|
*/
|
||||||
header = 'p-treetable-header',
|
header = 'p-treetable-header',
|
||||||
|
/**
|
||||||
|
* Class name of the paginator element
|
||||||
|
*/
|
||||||
paginator = 'p-treetable-paginator-[position]',
|
paginator = 'p-treetable-paginator-[position]',
|
||||||
|
/**
|
||||||
|
* Class name of the table container element
|
||||||
|
*/
|
||||||
tableContainer = 'p-treetable-table-container',
|
tableContainer = 'p-treetable-table-container',
|
||||||
|
/**
|
||||||
|
* Class name of the table element
|
||||||
|
*/
|
||||||
table = 'p-treetable-table',
|
table = 'p-treetable-table',
|
||||||
|
/**
|
||||||
|
* Class name of the thead element
|
||||||
|
*/
|
||||||
thead = 'p-treetable-thead',
|
thead = 'p-treetable-thead',
|
||||||
|
/**
|
||||||
|
* Class name of the column resizer element
|
||||||
|
*/
|
||||||
columnResizer = 'p-treetable-column-resizer',
|
columnResizer = 'p-treetable-column-resizer',
|
||||||
|
/**
|
||||||
|
* Class name of the column title element
|
||||||
|
*/
|
||||||
columnTitle = 'p-treetable-column-title',
|
columnTitle = 'p-treetable-column-title',
|
||||||
|
/**
|
||||||
|
* Class name of the sort icon element
|
||||||
|
*/
|
||||||
sortIcon = 'p-treetable-sort-icon',
|
sortIcon = 'p-treetable-sort-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the sort badge element
|
||||||
|
*/
|
||||||
pcSortBadge = 'p-treetable-sort-badge',
|
pcSortBadge = 'p-treetable-sort-badge',
|
||||||
|
/**
|
||||||
|
* Class name of the tbody element
|
||||||
|
*/
|
||||||
tbody = 'p-treetable-tbody',
|
tbody = 'p-treetable-tbody',
|
||||||
|
/**
|
||||||
|
* Class name of the node toggle button element
|
||||||
|
*/
|
||||||
nodeToggleButton = 'p-treetable-node-toggle-button',
|
nodeToggleButton = 'p-treetable-node-toggle-button',
|
||||||
|
/**
|
||||||
|
* Class name of the node toggle icon element
|
||||||
|
*/
|
||||||
nodeToggleIcon = 'p-treetable-node-toggle-icon',
|
nodeToggleIcon = 'p-treetable-node-toggle-icon',
|
||||||
|
/**
|
||||||
|
* Class name of the node checkbox element
|
||||||
|
*/
|
||||||
pcNodeCheckbox = 'p-treetable-node-checkbox',
|
pcNodeCheckbox = 'p-treetable-node-checkbox',
|
||||||
|
/**
|
||||||
|
* Class name of the empty message element
|
||||||
|
*/
|
||||||
emptyMessage = 'p-treetable-empty-message',
|
emptyMessage = 'p-treetable-empty-message',
|
||||||
|
/**
|
||||||
|
* Class name of the tfoot element
|
||||||
|
*/
|
||||||
tfoot = 'p-treetable-tfoot',
|
tfoot = 'p-treetable-tfoot',
|
||||||
|
/**
|
||||||
|
* Class name of the footer element
|
||||||
|
*/
|
||||||
footer = 'p-treetable-footer',
|
footer = 'p-treetable-footer',
|
||||||
|
/**
|
||||||
|
* Class name of the column resize indicator element
|
||||||
|
*/
|
||||||
columnResizeIndicator = 'p-treetable-column-resize-indicator'
|
columnResizeIndicator = 'p-treetable-column-resize-indicator'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,10 +10,25 @@
|
||||||
import { BaseStyle } from '../../base/style';
|
import { BaseStyle } from '../../base/style';
|
||||||
|
|
||||||
export enum VirtualScrollerClasses {
|
export enum VirtualScrollerClasses {
|
||||||
|
/**
|
||||||
|
* Class name of the root element
|
||||||
|
*/
|
||||||
root = 'p-virtualscroller',
|
root = 'p-virtualscroller',
|
||||||
|
/**
|
||||||
|
* Class name of the content element
|
||||||
|
*/
|
||||||
content = 'p-virtualscroller-content',
|
content = 'p-virtualscroller-content',
|
||||||
|
/**
|
||||||
|
* Class name of the spacer element
|
||||||
|
*/
|
||||||
spacer = 'p-virtualscroller-spacer',
|
spacer = 'p-virtualscroller-spacer',
|
||||||
|
/**
|
||||||
|
* Class name of the loader element
|
||||||
|
*/
|
||||||
loader = 'p-virtualscroller-loader',
|
loader = 'p-virtualscroller-loader',
|
||||||
|
/**
|
||||||
|
* Class name of the loading icon element
|
||||||
|
*/
|
||||||
loadingIcon = 'p-virtualscroller-loading-icon'
|
loadingIcon = 'p-virtualscroller-loading-icon'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue