2023-10-02 10:46:09 +00:00
|
|
|
import BaseStyle from 'primevue/base/style';
|
|
|
|
|
|
|
|
const classes = {
|
|
|
|
root: ({ instance, props, state }) => [
|
|
|
|
'p-dropdown p-component p-inputwrapper',
|
|
|
|
{
|
|
|
|
'p-disabled': props.disabled,
|
2024-01-30 11:27:56 +00:00
|
|
|
'p-invalid': props.invalid,
|
2024-02-02 11:46:26 +00:00
|
|
|
'p-variant-filled': props.variant ? props.variant === 'filled' : instance.$primevue.config.inputStyle === 'filled',
|
2023-12-07 11:09:01 +00:00
|
|
|
'p-dropdown-clearable': props.showClear,
|
2023-10-02 10:46:09 +00:00
|
|
|
'p-focus': state.focused,
|
|
|
|
'p-inputwrapper-filled': instance.hasSelectedOption,
|
|
|
|
'p-inputwrapper-focus': state.focused || state.overlayVisible,
|
|
|
|
'p-overlay-open': state.overlayVisible
|
|
|
|
}
|
|
|
|
],
|
|
|
|
input: ({ instance, props }) => [
|
2024-03-18 10:01:48 +00:00
|
|
|
'p-dropdown-label',
|
2023-10-02 10:46:09 +00:00
|
|
|
{
|
|
|
|
'p-placeholder': !props.editable && instance.label === props.placeholder,
|
|
|
|
'p-dropdown-label-empty': !props.editable && !instance.$slots['value'] && (instance.label === 'p-emptylabel' || instance.label.length === 0)
|
|
|
|
}
|
|
|
|
],
|
|
|
|
clearIcon: 'p-dropdown-clear-icon',
|
|
|
|
trigger: 'p-dropdown-trigger',
|
|
|
|
loadingicon: 'p-dropdown-trigger-icon',
|
|
|
|
dropdownIcon: 'p-dropdown-trigger-icon',
|
2024-03-18 10:01:48 +00:00
|
|
|
panel: ({ instance }) => [
|
2023-10-02 10:46:09 +00:00
|
|
|
'p-dropdown-panel p-component',
|
|
|
|
{
|
|
|
|
'p-ripple-disabled': instance.$primevue.config.ripple === false
|
|
|
|
}
|
|
|
|
],
|
|
|
|
header: 'p-dropdown-header',
|
|
|
|
filterContainer: 'p-dropdown-filter-container',
|
2024-03-18 10:01:48 +00:00
|
|
|
filterInput: 'p-dropdown-filter',
|
2023-10-02 10:46:09 +00:00
|
|
|
filterIcon: 'p-dropdown-filter-icon',
|
|
|
|
wrapper: 'p-dropdown-items-wrapper',
|
|
|
|
list: 'p-dropdown-items',
|
|
|
|
itemGroup: 'p-dropdown-item-group',
|
2024-01-24 10:50:41 +00:00
|
|
|
itemGroupLabel: 'p-dropdown-item-group-label',
|
2024-01-24 10:44:00 +00:00
|
|
|
item: ({ instance, props, state, option, focusedOption }) => [
|
2023-10-02 10:46:09 +00:00
|
|
|
'p-dropdown-item',
|
|
|
|
{
|
2024-01-24 10:44:00 +00:00
|
|
|
'p-highlight': instance.isSelected(option) && props.highlightOnSelect,
|
2023-10-02 10:46:09 +00:00
|
|
|
'p-focus': state.focusedOptionIndex === focusedOption,
|
|
|
|
'p-disabled': instance.isOptionDisabled(option)
|
|
|
|
}
|
|
|
|
],
|
2024-01-24 10:50:41 +00:00
|
|
|
itemLabel: 'p-dropdown-item-label',
|
2024-01-24 12:30:47 +00:00
|
|
|
checkIcon: 'p-dropdown-check-icon',
|
2024-01-24 10:44:00 +00:00
|
|
|
blankIcon: 'p-dropdown-blank-icon',
|
2023-10-02 10:46:09 +00:00
|
|
|
emptyMessage: 'p-dropdown-empty-message'
|
|
|
|
};
|
|
|
|
|
|
|
|
export default BaseStyle.extend({
|
|
|
|
name: 'dropdown',
|
|
|
|
classes
|
|
|
|
});
|