primevue-mirror/components/lib/select/style/SelectStyle.d.ts

34 lines
1019 B
TypeScript
Raw Normal View History

/**
*
* Select also known as Select, is used to choose an item from a collection of options.
*
* [Live Demo](https://www.primevue.org/select/)
*
* @module selectstyle
*
*/
2024-04-18 14:17:41 +00:00
import { BaseStyle } from '../../base/style';
export enum SelectClasses {
root = 'p-select',
label = 'p-select-label',
clearIcon = 'p-select-clear-icon',
dropdown = 'p-select-dropdown',
loadingicon = 'p-select-loading-icon',
dropdownIcon = 'p-select-dropdown-icon',
overlay = 'p-select-overlay',
header = 'p-select-header',
pcFilter = 'p-select-filter',
listContainer = 'p-select-list-container',
list = 'p-select-list',
optionGroup = 'p-select-option-group',
optionGroupLabel = 'p-select-option-group-label',
option = 'p-select-option',
optionLabel = 'p-select-option-label',
optionCheckIcon = 'p-select-option-check-icon',
optionBlankIcon = 'p-select-option-blank-icon',
emptyMessage = 'p-select-empty-message'
}
2024-04-18 14:17:41 +00:00
export interface SelectStyle extends BaseStyle {}