primevue 3.29.1 → 3.29.2

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.
@@ -136,10 +136,12 @@ this.primevue.datatable = (function (api, BaseComponent, ArrowDownIcon, ArrowUpI
136
136
  checked: $props.checked,
137
137
  class: "p-checkbox-icon"
138
138
  }, null, 8, ["checked"]))
139
- : (vue.openBlock(), vue.createBlock(_component_CheckIcon, vue.mergeProps({
140
- key: 1,
141
- class: "p-checkbox-icon"
142
- }, $options.getColumnPTOptions('checkboxIcon')), null, 16))
139
+ : (!$props.rowCheckboxIconTemplate && !!$props.checked)
140
+ ? (vue.openBlock(), vue.createBlock(_component_CheckIcon, vue.mergeProps({
141
+ key: 1,
142
+ class: "p-checkbox-icon"
143
+ }, $options.getColumnPTOptions('checkboxIcon')), null, 16))
144
+ : vue.createCommentVNode("", true)
143
145
  ], 16)
144
146
  ], 16))
145
147
  }
@@ -2676,10 +2678,12 @@ this.primevue.datatable = (function (api, BaseComponent, ArrowDownIcon, ArrowUpI
2676
2678
  checked: $props.checked,
2677
2679
  class: "p-checkbox-icon"
2678
2680
  }, null, 8, ["checked"]))
2679
- : (vue.openBlock(), vue.createBlock(_component_CheckIcon, vue.mergeProps({
2680
- key: 1,
2681
- class: "p-checkbox-icon"
2682
- }, $options.getColumnPTOptions('headerCheckboxIcon')), null, 16))
2681
+ : (!$props.headerCheckboxIconTemplate && !!$props.checked)
2682
+ ? (vue.openBlock(), vue.createBlock(_component_CheckIcon, vue.mergeProps({
2683
+ key: 1,
2684
+ class: "p-checkbox-icon"
2685
+ }, $options.getColumnPTOptions('headerCheckboxIcon')), null, 16))
2686
+ : vue.createCommentVNode("", true)
2683
2687
  ], 16)
2684
2688
  ], 16))
2685
2689
  }