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
|
@@ -14,7 +14,7 @@ import PencilIcon from 'primevue/icons/pencil';
|
|
|
14
14
|
import TimesIcon from 'primevue/icons/times';
|
|
15
15
|
import OverlayEventBus from 'primevue/overlayeventbus';
|
|
16
16
|
import Ripple from 'primevue/ripple';
|
|
17
|
-
import { resolveComponent, openBlock, createElementBlock, mergeProps, createElementVNode, createBlock, resolveDynamicComponent, withKeys, withModifiers, resolveDirective, toDisplayString,
|
|
17
|
+
import { resolveComponent, openBlock, createElementBlock, mergeProps, createElementVNode, createBlock, resolveDynamicComponent, createCommentVNode, withKeys, withModifiers, resolveDirective, toDisplayString, Fragment, normalizeClass, withDirectives, createTextVNode, renderList, normalizeProps, guardReactiveProps, createVNode, withCtx, Transition, renderSlot, createSlots } from 'vue';
|
|
18
18
|
import Button from 'primevue/button';
|
|
19
19
|
import Dropdown from 'primevue/dropdown';
|
|
20
20
|
import FocusTrap from 'primevue/focustrap';
|
|
@@ -133,10 +133,12 @@ function render$a(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
133
133
|
checked: $props.checked,
|
|
134
134
|
class: "p-checkbox-icon"
|
|
135
135
|
}, null, 8, ["checked"]))
|
|
136
|
-
: (
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
136
|
+
: (!$props.rowCheckboxIconTemplate && !!$props.checked)
|
|
137
|
+
? (openBlock(), createBlock(_component_CheckIcon, mergeProps({
|
|
138
|
+
key: 1,
|
|
139
|
+
class: "p-checkbox-icon"
|
|
140
|
+
}, $options.getColumnPTOptions('checkboxIcon')), null, 16))
|
|
141
|
+
: createCommentVNode("", true)
|
|
140
142
|
], 16)
|
|
141
143
|
], 16))
|
|
142
144
|
}
|
|
@@ -2673,10 +2675,12 @@ function render$3(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2673
2675
|
checked: $props.checked,
|
|
2674
2676
|
class: "p-checkbox-icon"
|
|
2675
2677
|
}, null, 8, ["checked"]))
|
|
2676
|
-
: (
|
|
2677
|
-
|
|
2678
|
-
|
|
2679
|
-
|
|
2678
|
+
: (!$props.headerCheckboxIconTemplate && !!$props.checked)
|
|
2679
|
+
? (openBlock(), createBlock(_component_CheckIcon, mergeProps({
|
|
2680
|
+
key: 1,
|
|
2681
|
+
class: "p-checkbox-icon"
|
|
2682
|
+
}, $options.getColumnPTOptions('headerCheckboxIcon')), null, 16))
|
|
2683
|
+
: createCommentVNode("", true)
|
|
2680
2684
|
], 16)
|
|
2681
2685
|
], 16))
|
|
2682
2686
|
}
|