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.
- package/cascadeselect/CascadeSelect.vue +1 -1
- package/cascadeselect/index.mjs +1 -1
- package/cascadeselect/index.mjs.map +1 -1
- package/colorpicker/ColorPicker.vue +2 -2
- package/colorpicker/index.mjs +2 -2
- package/colorpicker/index.mjs.map +1 -1
- package/column/index.d.ts +2 -2
- package/datatable/BodyCell.vue +1 -1
- package/datatable/ColumnFilter.vue +1 -1
- package/datatable/DataTable.vue +4 -1
- package/datatable/index.mjs +7 -6
- package/datatable/index.mjs.map +1 -1
- package/datepicker/DatePicker.vue +1 -1
- package/datepicker/index.mjs +5 -5
- package/datepicker/index.mjs.map +1 -1
- package/dialog/Dialog.vue +1 -1
- package/dialog/index.d.ts +5 -0
- package/dialog/index.mjs +2 -1
- package/dialog/index.mjs.map +1 -1
- package/fileupload/FileUpload.vue +2 -2
- package/fileupload/index.mjs +2 -2
- package/fileupload/index.mjs.map +1 -1
- package/inputnumber/InputNumber.vue +3 -0
- package/inputnumber/index.mjs +3 -0
- package/inputnumber/index.mjs.map +1 -1
- package/keyfilter/index.mjs +14 -1
- package/keyfilter/index.mjs.map +1 -1
- package/listbox/Listbox.vue +7 -13
- package/listbox/index.mjs +12 -18
- package/listbox/index.mjs.map +1 -1
- package/multiselect/MultiSelect.vue +6 -7
- package/multiselect/index.mjs +7 -8
- package/multiselect/index.mjs.map +1 -1
- package/package.json +3 -3
- package/select/Select.vue +4 -4
- package/select/index.mjs +5 -5
- package/select/index.mjs.map +1 -1
- package/tab/Tab.vue +0 -1
- package/tab/index.mjs +0 -1
- package/tab/index.mjs.map +1 -1
- package/togglebutton/BaseToggleButton.vue +0 -4
- package/togglebutton/index.d.ts +0 -5
- package/togglebutton/index.mjs +0 -4
- package/togglebutton/index.mjs.map +1 -1
- package/tooltip/index.mjs +5 -1
- package/tooltip/index.mjs.map +1 -1
- package/treeselect/TreeSelect.vue +1 -1
- package/treeselect/index.mjs +1 -1
- package/treeselect/index.mjs.map +1 -1
- package/treetable/TreeTable.vue +15 -1
- package/treetable/index.d.ts +58 -4
- package/treetable/index.mjs +19 -6
- package/treetable/index.mjs.map +1 -1
- package/umd/primevue.min.js +1 -1
- package/vetur-attributes.json +0 -4
- package/vetur-tags.json +0 -1
- package/web-types.json +1 -11
package/datepicker/index.mjs
CHANGED
|
@@ -1676,7 +1676,7 @@ var script = {
|
|
|
1676
1676
|
month = 1;
|
|
1677
1677
|
day = doy;
|
|
1678
1678
|
do {
|
|
1679
|
-
dim = this.getDaysCountInMonth(
|
|
1679
|
+
dim = this.getDaysCountInMonth(month - 1, year);
|
|
1680
1680
|
if (day <= dim) {
|
|
1681
1681
|
break;
|
|
1682
1682
|
}
|
|
@@ -2922,8 +2922,8 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
2922
2922
|
}, _ctx.ptm('pcPrevButton')['icon']), null, 16, ["class"]))];
|
|
2923
2923
|
})];
|
|
2924
2924
|
}),
|
|
2925
|
-
_:
|
|
2926
|
-
},
|
|
2925
|
+
_: 3
|
|
2926
|
+
}, 16, ["class", "disabled", "aria-label", "unstyled", "onClick", "onKeydown", "pt"]), [[vShow, groupIndex === 0]])];
|
|
2927
2927
|
}), createElementVNode("div", mergeProps({
|
|
2928
2928
|
"class": _ctx.cx('title')
|
|
2929
2929
|
}, {
|
|
@@ -3037,8 +3037,8 @@ function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
3037
3037
|
}, _ctx.ptm('pcNextButton')['icon']), null, 16, ["class"]))];
|
|
3038
3038
|
})];
|
|
3039
3039
|
}),
|
|
3040
|
-
_:
|
|
3041
|
-
},
|
|
3040
|
+
_: 3
|
|
3041
|
+
}, 16, ["class", "disabled", "aria-label", "unstyled", "onClick", "onKeydown", "pt"]), [[vShow, _ctx.numberOfMonths === 1 ? true : groupIndex === _ctx.numberOfMonths - 1]])];
|
|
3042
3042
|
})], 16), $data.currentView === 'date' ? (openBlock(), createElementBlock("table", mergeProps({
|
|
3043
3043
|
key: 0,
|
|
3044
3044
|
"class": _ctx.cx('dayView'),
|