Fixed #4865 - Listbox: metaKeySelection default changed as true

This commit is contained in:
tugcekucukoglu 2023-11-22 16:09:26 +03:00
parent d81f2b1a71
commit 49e48f7cf2

View file

@ -14,10 +14,19 @@ export default {
optionGroupLabel: null, optionGroupLabel: null,
optionGroupChildren: null, optionGroupChildren: null,
listStyle: null, listStyle: null,
disabled: Boolean, disabled: {
type: Boolean,
default: false
},
dataKey: null, dataKey: null,
multiple: Boolean, multiple: {
metaKeySelection: Boolean, type: Boolean,
default: false
},
metaKeySelection: {
type: Boolean,
default: true
},
filter: Boolean, filter: Boolean,
filterPlaceholder: String, filterPlaceholder: String,
filterLocale: String, filterLocale: String,