primevue 4.3.8 → 4.3.9

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.
Files changed (57) hide show
  1. package/cascadeselect/CascadeSelect.vue +1 -1
  2. package/cascadeselect/index.mjs +1 -1
  3. package/cascadeselect/index.mjs.map +1 -1
  4. package/colorpicker/ColorPicker.vue +2 -2
  5. package/colorpicker/index.mjs +2 -2
  6. package/colorpicker/index.mjs.map +1 -1
  7. package/column/index.d.ts +2 -2
  8. package/datatable/BodyCell.vue +1 -1
  9. package/datatable/ColumnFilter.vue +1 -1
  10. package/datatable/DataTable.vue +4 -1
  11. package/datatable/index.mjs +7 -6
  12. package/datatable/index.mjs.map +1 -1
  13. package/datepicker/DatePicker.vue +1 -1
  14. package/datepicker/index.mjs +5 -5
  15. package/datepicker/index.mjs.map +1 -1
  16. package/dialog/Dialog.vue +1 -1
  17. package/dialog/index.d.ts +5 -0
  18. package/dialog/index.mjs +2 -1
  19. package/dialog/index.mjs.map +1 -1
  20. package/fileupload/FileUpload.vue +2 -2
  21. package/fileupload/index.mjs +2 -2
  22. package/fileupload/index.mjs.map +1 -1
  23. package/inputnumber/InputNumber.vue +3 -0
  24. package/inputnumber/index.mjs +3 -0
  25. package/inputnumber/index.mjs.map +1 -1
  26. package/keyfilter/index.mjs +14 -1
  27. package/keyfilter/index.mjs.map +1 -1
  28. package/listbox/Listbox.vue +7 -13
  29. package/listbox/index.mjs +12 -18
  30. package/listbox/index.mjs.map +1 -1
  31. package/multiselect/MultiSelect.vue +6 -7
  32. package/multiselect/index.mjs +7 -8
  33. package/multiselect/index.mjs.map +1 -1
  34. package/package.json +3 -3
  35. package/select/Select.vue +4 -4
  36. package/select/index.mjs +5 -5
  37. package/select/index.mjs.map +1 -1
  38. package/tab/Tab.vue +0 -1
  39. package/tab/index.mjs +0 -1
  40. package/tab/index.mjs.map +1 -1
  41. package/togglebutton/BaseToggleButton.vue +0 -4
  42. package/togglebutton/index.d.ts +0 -5
  43. package/togglebutton/index.mjs +0 -4
  44. package/togglebutton/index.mjs.map +1 -1
  45. package/tooltip/index.mjs +5 -1
  46. package/tooltip/index.mjs.map +1 -1
  47. package/treeselect/TreeSelect.vue +1 -1
  48. package/treeselect/index.mjs +1 -1
  49. package/treeselect/index.mjs.map +1 -1
  50. package/treetable/TreeTable.vue +15 -1
  51. package/treetable/index.d.ts +58 -4
  52. package/treetable/index.mjs +19 -6
  53. package/treetable/index.mjs.map +1 -1
  54. package/umd/primevue.min.js +1 -1
  55. package/vetur-attributes.json +0 -4
  56. package/vetur-tags.json +0 -1
  57. package/web-types.json +1 -11
@@ -854,7 +854,7 @@ export default {
854
854
  return this.focusedOptionInfo.index !== -1 ? `${this.$id}${isNotEmpty(this.focusedOptionInfo.parentKey) ? '_' + this.focusedOptionInfo.parentKey : ''}_${this.focusedOptionInfo.index}` : null;
855
855
  },
856
856
  isClearIconVisible() {
857
- return this.showClear && this.d_value != null && isNotEmpty(this.options);
857
+ return this.showClear && this.d_value != null && isNotEmpty(this.options) && !this.disabled && !this.loading;
858
858
  }
859
859
  },
860
860
  components: {
@@ -1173,7 +1173,7 @@ var script = {
1173
1173
  return this.focusedOptionInfo.index !== -1 ? "".concat(this.$id).concat(isNotEmpty(this.focusedOptionInfo.parentKey) ? '_' + this.focusedOptionInfo.parentKey : '', "_").concat(this.focusedOptionInfo.index) : null;
1174
1174
  },
1175
1175
  isClearIconVisible: function isClearIconVisible() {
1176
- return this.showClear && this.d_value != null && isNotEmpty(this.options);
1176
+ return this.showClear && this.d_value != null && isNotEmpty(this.options) && !this.disabled && !this.loading;
1177
1177
  }
1178
1178
  },
1179
1179
  components: {