Fixed #6486
parent
d3c4209627
commit
06c77a7c4c
|
@ -98,10 +98,6 @@ export default {
|
||||||
type: String,
|
type: String,
|
||||||
default: undefined
|
default: undefined
|
||||||
},
|
},
|
||||||
closeIcon: {
|
|
||||||
type: String,
|
|
||||||
default: undefined
|
|
||||||
},
|
|
||||||
dropdownIcon: {
|
dropdownIcon: {
|
||||||
type: String,
|
type: String,
|
||||||
default: undefined
|
default: undefined
|
||||||
|
|
|
@ -454,10 +454,6 @@ export interface MultiSelectProps {
|
||||||
* Icon to display in the checkboxes.
|
* Icon to display in the checkboxes.
|
||||||
*/
|
*/
|
||||||
checkboxIcon?: string | undefined;
|
checkboxIcon?: string | undefined;
|
||||||
/**
|
|
||||||
* Icon to display in the dropdown close button.
|
|
||||||
*/
|
|
||||||
closeIcon?: string | undefined;
|
|
||||||
/**
|
/**
|
||||||
* Icon to display in the dropdown.
|
* Icon to display in the dropdown.
|
||||||
*/
|
*/
|
||||||
|
@ -767,16 +763,6 @@ export interface MultiSelectSlots {
|
||||||
*/
|
*/
|
||||||
class: string;
|
class: string;
|
||||||
}): VNode[];
|
}): VNode[];
|
||||||
/**
|
|
||||||
* Custom close icon template.
|
|
||||||
* @param {Object} scope - closeicon slot's params.
|
|
||||||
*/
|
|
||||||
closeicon(scope: {
|
|
||||||
/**
|
|
||||||
* Style class of the loading icon.
|
|
||||||
*/
|
|
||||||
class: string;
|
|
||||||
}): VNode[];
|
|
||||||
/**
|
/**
|
||||||
* Custom item checkbox icon template.
|
* Custom item checkbox icon template.
|
||||||
* @param {Object} scope - itemcheckboxicon slot's params.
|
* @param {Object} scope - itemcheckboxicon slot's params.
|
||||||
|
|
|
@ -1111,9 +1111,6 @@ export default {
|
||||||
toggleAllAriaLabel() {
|
toggleAllAriaLabel() {
|
||||||
return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria[this.allSelected ? 'selectAll' : 'unselectAll'] : undefined;
|
return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria[this.allSelected ? 'selectAll' : 'unselectAll'] : undefined;
|
||||||
},
|
},
|
||||||
closeAriaLabel() {
|
|
||||||
return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria.close : undefined;
|
|
||||||
},
|
|
||||||
listAriaLabel() {
|
listAriaLabel() {
|
||||||
return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria.listLabel : undefined;
|
return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria.listLabel : undefined;
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue