UNPKG

primevue

Version:

PrimeVue is an open source UI library for Vue featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeBloc

66 lines (63 loc) 2.36 kB
import { style } from '@primeuix/styles/select'; import BaseStyle from '@primevue/core/base/style'; var classes = { root: function root(_ref) { var instance = _ref.instance, props = _ref.props, state = _ref.state; return ['p-select p-component p-inputwrapper', { 'p-disabled': props.disabled, 'p-invalid': instance.$invalid, 'p-variant-filled': instance.$variant === 'filled', 'p-focus': state.focused, 'p-inputwrapper-filled': instance.$filled, 'p-inputwrapper-focus': state.focused || state.overlayVisible, 'p-select-open': state.overlayVisible, 'p-select-fluid': instance.$fluid, 'p-select-sm p-inputfield-sm': props.size === 'small', 'p-select-lg p-inputfield-lg': props.size === 'large' }]; }, label: function label(_ref2) { var instance = _ref2.instance, props = _ref2.props; return ['p-select-label', { 'p-placeholder': !props.editable && instance.label === props.placeholder, 'p-select-label-empty': !props.editable && !instance.$slots['value'] && (instance.label === 'p-emptylabel' || instance.label.length === 0) }]; }, clearIcon: 'p-select-clear-icon', dropdown: 'p-select-dropdown', loadingicon: 'p-select-loading-icon', dropdownIcon: 'p-select-dropdown-icon', overlay: 'p-select-overlay p-component', 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: function option(_ref3) { var instance = _ref3.instance, props = _ref3.props, state = _ref3.state, _option = _ref3.option, focusedOption = _ref3.focusedOption; return ['p-select-option', { 'p-select-option-selected': instance.isSelected(_option) && props.highlightOnSelect, 'p-focus': state.focusedOptionIndex === focusedOption, 'p-disabled': instance.isOptionDisabled(_option) }]; }, optionLabel: 'p-select-option-label', optionCheckIcon: 'p-select-option-check-icon', optionBlankIcon: 'p-select-option-blank-icon', emptyMessage: 'p-select-empty-message' }; var SelectStyle = BaseStyle.extend({ name: 'select', style: style, classes: classes }); export { SelectStyle as default }; //# sourceMappingURL=index.mjs.map