166 lines
3.7 KiB
Vue
166 lines
3.7 KiB
Vue
<script>
|
|
import BaseComponent from 'primevue/basecomponent';
|
|
import DropdownStyle from 'primevue/dropdown/style';
|
|
|
|
export default {
|
|
name: 'BaseDropdown',
|
|
extends: BaseComponent,
|
|
props: {
|
|
modelValue: null,
|
|
options: Array,
|
|
optionLabel: [String, Function],
|
|
optionValue: [String, Function],
|
|
optionDisabled: [String, Function],
|
|
optionGroupLabel: [String, Function],
|
|
optionGroupChildren: [String, Function],
|
|
scrollHeight: {
|
|
type: String,
|
|
default: '200px'
|
|
},
|
|
filter: Boolean,
|
|
filterPlaceholder: String,
|
|
filterLocale: String,
|
|
filterMatchMode: {
|
|
type: String,
|
|
default: 'contains'
|
|
},
|
|
filterFields: {
|
|
type: Array,
|
|
default: null
|
|
},
|
|
editable: Boolean,
|
|
placeholder: {
|
|
type: String,
|
|
default: null
|
|
},
|
|
disabled: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
dataKey: null,
|
|
showClear: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
inputId: {
|
|
type: String,
|
|
default: null
|
|
},
|
|
inputClass: {
|
|
type: [String, Object],
|
|
default: null
|
|
},
|
|
inputStyle: {
|
|
type: Object,
|
|
default: null
|
|
},
|
|
inputProps: {
|
|
type: null,
|
|
default: null
|
|
},
|
|
panelClass: {
|
|
type: [String, Object],
|
|
default: null
|
|
},
|
|
panelStyle: {
|
|
type: Object,
|
|
default: null
|
|
},
|
|
panelProps: {
|
|
type: null,
|
|
default: null
|
|
},
|
|
filterInputProps: {
|
|
type: null,
|
|
default: null
|
|
},
|
|
clearIconProps: {
|
|
type: null,
|
|
default: null
|
|
},
|
|
appendTo: {
|
|
type: String,
|
|
default: 'body'
|
|
},
|
|
loading: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
clearIcon: {
|
|
type: String,
|
|
default: undefined
|
|
},
|
|
dropdownIcon: {
|
|
type: String,
|
|
default: undefined
|
|
},
|
|
filterIcon: {
|
|
type: String,
|
|
default: undefined
|
|
},
|
|
loadingIcon: {
|
|
type: String,
|
|
default: undefined
|
|
},
|
|
resetFilterOnHide: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
virtualScrollerOptions: {
|
|
type: Object,
|
|
default: null
|
|
},
|
|
autoOptionFocus: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
autoFilterFocus: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
selectOnFocus: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
filterMessage: {
|
|
type: String,
|
|
default: null
|
|
},
|
|
selectionMessage: {
|
|
type: String,
|
|
default: null
|
|
},
|
|
emptySelectionMessage: {
|
|
type: String,
|
|
default: null
|
|
},
|
|
emptyFilterMessage: {
|
|
type: String,
|
|
default: null
|
|
},
|
|
emptyMessage: {
|
|
type: String,
|
|
default: null
|
|
},
|
|
tabindex: {
|
|
type: Number,
|
|
default: 0
|
|
},
|
|
ariaLabel: {
|
|
type: String,
|
|
default: null
|
|
},
|
|
ariaLabelledby: {
|
|
type: String,
|
|
default: null
|
|
}
|
|
},
|
|
style: DropdownStyle,
|
|
provide() {
|
|
return {
|
|
$parentInstance: this
|
|
};
|
|
}
|
|
};
|
|
</script>
|