primevue 4.5.2 → 4.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/autocomplete/AutoComplete.vue +1 -2
- package/autocomplete/index.mjs +0 -1
- package/autocomplete/index.mjs.map +1 -1
- package/blockui/BlockUI.vue +1 -1
- package/blockui/index.mjs +1 -1
- package/blockui/index.mjs.map +1 -1
- package/colorpicker/ColorPicker.vue +1 -1
- package/colorpicker/index.mjs +1 -1
- package/colorpicker/index.mjs.map +1 -1
- package/metergroup/MeterGroup.vue +9 -7
- package/metergroup/index.mjs +10 -6
- package/metergroup/index.mjs.map +1 -1
- package/package.json +3 -3
- package/styleclass/index.mjs +18 -6
- package/styleclass/index.mjs.map +1 -1
- package/umd/primevue.min.js +1 -1
- package/web-types.json +1 -1
|
@@ -598,7 +598,7 @@ export default {
|
|
|
598
598
|
const value = this.visibleOptions
|
|
599
599
|
.slice(rangeStart, rangeEnd + 1)
|
|
600
600
|
.filter((option) => this.isValidOption(option))
|
|
601
|
-
.filter((option) => !this.isSelected(option))
|
|
601
|
+
.filter((option) => !this.isSelected(option))
|
|
602
602
|
.map((option) => this.getOptionValue(option));
|
|
603
603
|
|
|
604
604
|
this.updateModel(event, [...(this.d_value || []), ...value]);
|
|
@@ -951,7 +951,6 @@ export default {
|
|
|
951
951
|
}
|
|
952
952
|
|
|
953
953
|
this.searching = true;
|
|
954
|
-
this.show();
|
|
955
954
|
this.$emit('complete', { originalEvent: event, query });
|
|
956
955
|
},
|
|
957
956
|
removeOption(event, index) {
|