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.
- package/calendar/Calendar.vue +2 -2
- package/calendar/calendar.cjs.js +2 -2
- package/calendar/calendar.cjs.min.js +1 -1
- package/calendar/calendar.esm.js +2 -2
- package/calendar/calendar.esm.min.js +1 -1
- package/calendar/calendar.js +2 -2
- package/calendar/calendar.min.js +1 -1
- package/datatable/HeaderCheckbox.vue +1 -1
- package/datatable/RowCheckbox.vue +1 -1
- package/datatable/datatable.cjs.js +12 -8
- package/datatable/datatable.cjs.min.js +1 -1
- package/datatable/datatable.esm.js +13 -9
- package/datatable/datatable.esm.min.js +1 -1
- package/datatable/datatable.js +12 -8
- package/datatable/datatable.min.js +1 -1
- package/package.json +1 -1
- package/web-types.json +1 -1
package/datatable/datatable.js
CHANGED
|
@@ -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
|
-
: (
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
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
|
-
: (
|
|
2680
|
-
|
|
2681
|
-
|
|
2682
|
-
|
|
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
|
}
|