87 lines
1.8 KiB
Vue
87 lines
1.8 KiB
Vue
<script>
|
|
import BaseComponent from 'primevue/basecomponent';
|
|
import InputChipsStyle from 'primevue/inputchips/style';
|
|
|
|
export default {
|
|
name: 'BaseInputChips',
|
|
extends: BaseComponent,
|
|
props: {
|
|
modelValue: {
|
|
type: Array,
|
|
default: null
|
|
},
|
|
max: {
|
|
type: Number,
|
|
default: null
|
|
},
|
|
separator: {
|
|
type: [String, Object],
|
|
default: null
|
|
},
|
|
addOnBlur: {
|
|
type: Boolean,
|
|
default: null
|
|
},
|
|
allowDuplicate: {
|
|
type: Boolean,
|
|
default: true
|
|
},
|
|
placeholder: {
|
|
type: String,
|
|
default: null
|
|
},
|
|
variant: {
|
|
type: String,
|
|
default: null
|
|
},
|
|
invalid: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
disabled: {
|
|
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
|
|
},
|
|
removeTokenIcon: {
|
|
type: String,
|
|
default: undefined
|
|
},
|
|
chipIcon: {
|
|
type: String,
|
|
default: undefined
|
|
},
|
|
ariaLabelledby: {
|
|
type: String,
|
|
default: null
|
|
},
|
|
ariaLabel: {
|
|
type: String,
|
|
default: null
|
|
}
|
|
},
|
|
style: InputChipsStyle,
|
|
provide() {
|
|
return {
|
|
$pcInputChips: this,
|
|
$parentInstance: this
|
|
};
|
|
}
|
|
};
|
|
</script>
|