primevue 3.8.0 → 3.8.1
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/core/core.js +1 -1
- package/core/core.min.js +4 -0
- package/datatable/DataTable.vue +1 -1
- package/datatable/TableBody.vue +1 -1
- package/datatable/TableFooter.vue +2 -1
- package/datatable/TableHeader.vue +2 -1
- package/datatable/datatable.cjs.js +4 -4
- package/datatable/datatable.cjs.min.js +1 -1
- package/datatable/datatable.esm.js +4 -4
- package/datatable/datatable.esm.min.js +1 -1
- package/datatable/datatable.js +4 -4
- package/datatable/datatable.min.js +1 -1
- package/dock/Dock.d.ts +1 -0
- package/dock/Dock.vue +1 -1
- package/dock/DockSub.vue +13 -8
- package/dock/dock.cjs.js +24 -10
- package/dock/dock.cjs.min.js +1 -1
- package/dock/dock.esm.js +20 -10
- package/dock/dock.esm.min.js +1 -1
- package/dock/dock.js +25 -12
- package/dock/dock.min.js +1 -1
- package/inplace/Inplace.d.ts +1 -0
- package/inplace/Inplace.vue +12 -1
- package/inplace/inplace.cjs.js +13 -2
- package/inplace/inplace.cjs.min.js +1 -1
- package/inplace/inplace.esm.js +13 -2
- package/inplace/inplace.esm.min.js +1 -1
- package/inplace/inplace.js +13 -2
- package/inplace/inplace.min.js +1 -1
- package/package.json +1 -1
- package/treetable/TreeTable.vue +2 -2
- package/treetable/TreeTableRow.vue +2 -2
- package/treetable/treetable.cjs.js +3 -3
- package/treetable/treetable.cjs.min.js +1 -1
- package/treetable/treetable.esm.js +3 -3
- package/treetable/treetable.esm.min.js +1 -1
- package/treetable/treetable.js +3 -3
- package/treetable/treetable.min.js +1 -1
- package/vetur-attributes.json +4 -0
- package/vetur-tags.json +2 -1
- package/virtualscroller/VirtualScroller.vue +1 -1
- package/virtualscroller/virtualscroller.cjs.js +1 -1
- package/virtualscroller/virtualscroller.cjs.min.js +1 -1
- package/virtualscroller/virtualscroller.esm.js +1 -1
- package/virtualscroller/virtualscroller.esm.min.js +1 -1
- package/virtualscroller/virtualscroller.js +1 -1
- package/virtualscroller/virtualscroller.min.js +1 -1
- package/web-types.json +16 -1
package/datatable/datatable.js
CHANGED
|
@@ -1115,7 +1115,7 @@ this.primevue.datatable = (function (utils, api, Paginator, vue, OverlayEventBus
|
|
|
1115
1115
|
},
|
|
1116
1116
|
methods: {
|
|
1117
1117
|
columnProp(col, prop) {
|
|
1118
|
-
return
|
|
1118
|
+
return utils.ObjectUtils.getVNodeProp(col, prop);
|
|
1119
1119
|
},
|
|
1120
1120
|
getFilterColumnHeaderClass(column) {
|
|
1121
1121
|
return ['p-filter-column', this.columnProp(column, 'filterHeaderClass'), this.columnProp(column, 'class'), {
|
|
@@ -2010,7 +2010,7 @@ this.primevue.datatable = (function (utils, api, Paginator, vue, OverlayEventBus
|
|
|
2010
2010
|
},
|
|
2011
2011
|
methods: {
|
|
2012
2012
|
columnProp(col, prop) {
|
|
2013
|
-
return
|
|
2013
|
+
return utils.ObjectUtils.getVNodeProp(col, prop);
|
|
2014
2014
|
},
|
|
2015
2015
|
shouldRenderRowGroupHeader(value, rowData, i) {
|
|
2016
2016
|
let currentRowFieldData = utils.ObjectUtils.resolveFieldData(rowData, this.groupRowsBy);
|
|
@@ -2539,7 +2539,7 @@ this.primevue.datatable = (function (utils, api, Paginator, vue, OverlayEventBus
|
|
|
2539
2539
|
},
|
|
2540
2540
|
methods: {
|
|
2541
2541
|
columnProp(col, prop) {
|
|
2542
|
-
return
|
|
2542
|
+
return utils.ObjectUtils.getVNodeProp(col, prop);
|
|
2543
2543
|
}
|
|
2544
2544
|
},
|
|
2545
2545
|
computed: {
|
|
@@ -2976,7 +2976,7 @@ this.primevue.datatable = (function (utils, api, Paginator, vue, OverlayEventBus
|
|
|
2976
2976
|
},
|
|
2977
2977
|
methods: {
|
|
2978
2978
|
columnProp(col, prop) {
|
|
2979
|
-
return
|
|
2979
|
+
return utils.ObjectUtils.getVNodeProp(col, prop);
|
|
2980
2980
|
},
|
|
2981
2981
|
onPage(event) {
|
|
2982
2982
|
this.clearEditingMetaData();
|