@progress/kendo-vue-grid 6.4.1-develop.2 → 6.4.2-develop.3
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/Grid.mjs +19 -19
- package/GridNoRecords.mjs +3 -3
- package/GridToolbar.mjs +3 -3
- package/cells/GridCell.mjs +6 -6
- package/cells/GridDetailCell.mjs +6 -6
- package/cells/GridDetailHierarchyCell.mjs +6 -6
- package/cells/GridEditCell.mjs +15 -15
- package/cells/GridFilterCell.mjs +4 -4
- package/cells/GridGroupCell.mjs +7 -7
- package/cells/GridHierarchyCell.mjs +7 -7
- package/cells/GridSelectionCell.mjs +6 -6
- package/columnMenu/ColumnMenu.mjs +4 -4
- package/columnMenu/ColumnMenuContent.mjs +3 -3
- package/columnMenu/GridColumnMenuCheckboxFilter.mjs +2 -2
- package/columnMenu/GridColumnMenuFilter.js +1 -1
- package/columnMenu/GridColumnMenuFilter.mjs +19 -21
- package/columnMenu/GridColumnMenuFilterCell.mjs +3 -3
- package/columnMenu/GridColumnMenuItem.mjs +1 -1
- package/columnMenu/GridColumnMenuSort.mjs +1 -1
- package/dist/cdn/js/kendo-vue-grid.js +1 -1
- package/drag/GroupingIndicator.mjs +5 -5
- package/footer/Footer.mjs +5 -5
- package/header/FilterRow.mjs +1 -1
- package/header/GridHeaderSelectionCell.mjs +3 -3
- package/header/GroupPanel.mjs +1 -1
- package/header/Header.mjs +6 -6
- package/header/HeaderRow.mjs +3 -3
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +12 -12
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { defineComponent as n,
|
|
9
|
-
import {
|
|
8
|
+
import { defineComponent as n, createVNode as t, ref as o } from "vue";
|
|
9
|
+
import { Draggable as r, setRef as a, Icon as i, getRef as c } from "@progress/kendo-vue-common";
|
|
10
10
|
import { sortAscSmallIcon as l, sortDescSmallIcon as h, xCircleIcon as p } from "@progress/kendo-svg-icons";
|
|
11
11
|
const f = /* @__PURE__ */ n({
|
|
12
12
|
props: {
|
|
@@ -19,7 +19,7 @@ const f = /* @__PURE__ */ n({
|
|
|
19
19
|
onRelease: Function
|
|
20
20
|
},
|
|
21
21
|
mounted() {
|
|
22
|
-
this.element =
|
|
22
|
+
this.element = c(this, "indicatorContainer"), this.element && (this.draggable = this.$refs.draggable);
|
|
23
23
|
},
|
|
24
24
|
methods: {
|
|
25
25
|
press(e) {
|
|
@@ -46,7 +46,7 @@ const f = /* @__PURE__ */ n({
|
|
|
46
46
|
};
|
|
47
47
|
},
|
|
48
48
|
render() {
|
|
49
|
-
return t(
|
|
49
|
+
return t(r, {
|
|
50
50
|
onPress: this.press,
|
|
51
51
|
onDrag: this.drag,
|
|
52
52
|
onRelease: this.release,
|
|
@@ -54,7 +54,7 @@ const f = /* @__PURE__ */ n({
|
|
|
54
54
|
}, {
|
|
55
55
|
default: () => [t("div", {
|
|
56
56
|
class: "k-chip k-chip-md k-chip-solid k-chip-solid-base k-rounded-md",
|
|
57
|
-
ref:
|
|
57
|
+
ref: a(this, "indicatorContainer")
|
|
58
58
|
}, [t(i, {
|
|
59
59
|
name: "sort-" + this.$props.dir + "-small",
|
|
60
60
|
class: "k-chip-icon",
|
package/footer/Footer.mjs
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { defineComponent as a,
|
|
8
|
+
import { defineComponent as a, createVNode as e, ref as o } from "vue";
|
|
9
9
|
import { isRtl as p } from "../utils/main.mjs";
|
|
10
|
-
import {
|
|
10
|
+
import { setRef as s, getRef as l, kendoThemeMaps as n } from "@progress/kendo-vue-common";
|
|
11
11
|
const f = /* @__PURE__ */ a({
|
|
12
12
|
name: "Footer",
|
|
13
13
|
props: {
|
|
@@ -48,7 +48,7 @@ const f = /* @__PURE__ */ a({
|
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
50
|
mounted() {
|
|
51
|
-
this.rtl = p(this.$el), this.$props.columnResize.colGroupFooter =
|
|
51
|
+
this.rtl = p(this.$el), this.$props.columnResize.colGroupFooter = l(this, "colGroupHeader"), this._footerWrap = l(this, "footerWrap");
|
|
52
52
|
},
|
|
53
53
|
methods: {
|
|
54
54
|
setScrollLeft(t) {
|
|
@@ -72,14 +72,14 @@ const f = /* @__PURE__ */ a({
|
|
|
72
72
|
role: "presentation"
|
|
73
73
|
}, [e("div", {
|
|
74
74
|
class: "k-grid-footer-wrap",
|
|
75
|
-
ref:
|
|
75
|
+
ref: s(this, "footerWrap"),
|
|
76
76
|
role: "presentation"
|
|
77
77
|
}, [e("table", {
|
|
78
78
|
class: this.tableClass,
|
|
79
79
|
style: this.tableStyle,
|
|
80
80
|
role: "presentation"
|
|
81
81
|
}, [e("colgroup", {
|
|
82
|
-
ref:
|
|
82
|
+
ref: s(this, "colGroupHeader")
|
|
83
83
|
}, [this.$props.cols]), e("tfoot", {
|
|
84
84
|
class: "k-table-tfoot",
|
|
85
85
|
role: "rowgroup"
|
package/header/FilterRow.mjs
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { defineComponent as I,
|
|
8
|
+
import { defineComponent as I, createVNode as n, inject as $, isVNode as m } from "vue";
|
|
9
9
|
import { getFilterType as L, getAriaLabel as j, operatorMap as F, booleanFilterValues as O } from "../filterCommon.mjs";
|
|
10
10
|
import { GridFilterCell as R } from "../cells/GridFilterCell.mjs";
|
|
11
11
|
import { provideLocalizationService as S } from "@progress/kendo-vue-intl";
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
import { defineComponent as c, createVNode as t, h as a } from "vue";
|
|
9
|
-
import {
|
|
9
|
+
import { getTemplate as r, guid as d } from "@progress/kendo-vue-common";
|
|
10
10
|
import { provideLocalizationService as p } from "@progress/kendo-vue-intl";
|
|
11
11
|
import { selectAllRows as s, messages as h } from "../messages/main.mjs";
|
|
12
12
|
const S = /* @__PURE__ */ c({
|
|
@@ -17,7 +17,7 @@ const S = /* @__PURE__ */ c({
|
|
|
17
17
|
render: [Object, Function, String]
|
|
18
18
|
},
|
|
19
19
|
created() {
|
|
20
|
-
this.inputId =
|
|
20
|
+
this.inputId = d();
|
|
21
21
|
},
|
|
22
22
|
inject: {
|
|
23
23
|
kendoLocalizationService: {
|
|
@@ -40,7 +40,7 @@ const S = /* @__PURE__ */ c({
|
|
|
40
40
|
class: "k-checkbox k-checkbox-md k-rounded-md",
|
|
41
41
|
"aria-label": n,
|
|
42
42
|
onChange: this.changeHandle
|
|
43
|
-
}, null), i =
|
|
43
|
+
}, null), i = r.call(this, {
|
|
44
44
|
h: a,
|
|
45
45
|
template: e,
|
|
46
46
|
defaultRendering: l,
|
package/header/GroupPanel.mjs
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { defineComponent as d,
|
|
8
|
+
import { defineComponent as d, createVNode as t, inject as h } from "vue";
|
|
9
9
|
import { GroupingIndicator as m } from "../drag/GroupingIndicator.mjs";
|
|
10
10
|
import { groupHeaderAriaLabel as l, messages as p, groupPanelEmpty as c } from "../messages/main.mjs";
|
|
11
11
|
import { provideLocalizationService as g } from "@progress/kendo-vue-intl";
|
package/header/Header.mjs
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
import { defineComponent as d,
|
|
8
|
+
import { defineComponent as d, createVNode as s, ref as a } from "vue";
|
|
9
9
|
import { isRtl as h } from "../utils/main.mjs";
|
|
10
|
-
import {
|
|
10
|
+
import { setRef as l, getRef as o, kendoThemeMaps as n } from "@progress/kendo-vue-common";
|
|
11
11
|
import { BrowserSupportService as c } from "../utils/browser-support.service.mjs";
|
|
12
12
|
const g = /* @__PURE__ */ d({
|
|
13
13
|
props: {
|
|
@@ -45,7 +45,7 @@ const g = /* @__PURE__ */ d({
|
|
|
45
45
|
}
|
|
46
46
|
},
|
|
47
47
|
mounted() {
|
|
48
|
-
this.headerWrap =
|
|
48
|
+
this.headerWrap = o(this, "headerWrap"), this.table = o(this, "table"), this.$props.columnResize.colGroupHeader = o(this, "colGroupHeader");
|
|
49
49
|
const e = new c().scrollbarWidth, r = h(this.$el);
|
|
50
50
|
this.$props.columnResize && this.$props.columnResize.setIsRtl(r);
|
|
51
51
|
const t = Math.max(0, e) + "px", i = r ? 0 : t, p = r ? t : 0;
|
|
@@ -74,14 +74,14 @@ const g = /* @__PURE__ */ d({
|
|
|
74
74
|
class: this.wrapperClass,
|
|
75
75
|
style: this.divStyle
|
|
76
76
|
}, [s("div", {
|
|
77
|
-
ref:
|
|
77
|
+
ref: l(this, "headerWrap"),
|
|
78
78
|
class: "k-grid-header-wrap"
|
|
79
79
|
}, [s("table", {
|
|
80
80
|
class: this.tableClass,
|
|
81
|
-
ref:
|
|
81
|
+
ref: l(this, "table"),
|
|
82
82
|
role: "none"
|
|
83
83
|
}, [s("colgroup", {
|
|
84
|
-
ref:
|
|
84
|
+
ref: l(this, "colGroupHeader")
|
|
85
85
|
}, [this.$props.cols]), this.$props.headerRow])])]) : this.$props.headerRow;
|
|
86
86
|
}
|
|
87
87
|
});
|
package/header/HeaderRow.mjs
CHANGED
|
@@ -11,7 +11,7 @@ import { ColumnResizer as v } from "../drag/ColumnResizer.mjs";
|
|
|
11
11
|
import { ColumnDraggable as B } from "../drag/ColumnDraggable.mjs";
|
|
12
12
|
import { GridHeaderCell as K } from "./GridHeaderCell.mjs";
|
|
13
13
|
import { ColumnMenu as V } from "../columnMenu/ColumnMenu.mjs";
|
|
14
|
-
import { noop as N,
|
|
14
|
+
import { noop as N, templateRendering as T, getListeners as _, Keys as H, hasListener as P, Icon as E } from "@progress/kendo-vue-common";
|
|
15
15
|
import { HeaderThElement as q } from "@progress/kendo-vue-data-tools";
|
|
16
16
|
import { sortableColumnAriaLabel as S, messages as C, sortableColumnAscendingAriaLabel as y, sortableColumnDescendingAriaLabel as M } from "../messages/main.mjs";
|
|
17
17
|
import { provideLocalizationService as G } from "@progress/kendo-vue-intl";
|
|
@@ -103,7 +103,7 @@ const k = {
|
|
|
103
103
|
this.$emit("selectionchange", t);
|
|
104
104
|
},
|
|
105
105
|
cellClick(t, n) {
|
|
106
|
-
if (t.preventDefault(), !
|
|
106
|
+
if (t.preventDefault(), !P.call(this, "sortChange"))
|
|
107
107
|
return;
|
|
108
108
|
const {
|
|
109
109
|
allowUnsort: u,
|
|
@@ -134,7 +134,7 @@ const k = {
|
|
|
134
134
|
}));
|
|
135
135
|
},
|
|
136
136
|
getTemplate(t) {
|
|
137
|
-
return
|
|
137
|
+
return T.call(this.$props.grid, t, _.call(this.$props.grid));
|
|
138
138
|
},
|
|
139
139
|
columnMenuClose() {
|
|
140
140
|
this.onNavFocus({}), this.columnMenuOpened = {};
|
package/package-metadata.js
CHANGED
|
@@ -5,4 +5,4 @@
|
|
|
5
5
|
* Licensed under commercial license. See LICENSE.md in the package root for more information
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-vue-grid",productName:"Kendo UI for Vue",productCode:"KENDOUIVUE",productCodes:["KENDOUIVUE"],publishDate:
|
|
8
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={name:"@progress/kendo-vue-grid",productName:"Kendo UI for Vue",productCode:"KENDOUIVUE",productCodes:["KENDOUIVUE"],publishDate: 1750422028,version:"6.4.2-develop.3",licensingDocsUrl:"https://www.telerik.com/kendo-vue-ui/my-license/"};exports.packageMetadata=e;
|
package/package-metadata.mjs
CHANGED
|
@@ -10,8 +10,8 @@ const e = {
|
|
|
10
10
|
productName: "Kendo UI for Vue",
|
|
11
11
|
productCode: "KENDOUIVUE",
|
|
12
12
|
productCodes: ["KENDOUIVUE"],
|
|
13
|
-
publishDate:
|
|
14
|
-
version: "6.4.
|
|
13
|
+
publishDate: 1750422028,
|
|
14
|
+
version: "6.4.2-develop.3",
|
|
15
15
|
licensingDocsUrl: "https://www.telerik.com/kendo-vue-ui/my-license/"
|
|
16
16
|
};
|
|
17
17
|
export {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-vue-grid",
|
|
3
|
-
"version": "6.4.
|
|
3
|
+
"version": "6.4.2-develop.3",
|
|
4
4
|
"description": "TODO",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -21,16 +21,16 @@
|
|
|
21
21
|
"@progress/kendo-data-query": "^1.7.0",
|
|
22
22
|
"@progress/kendo-drawing": "^1.21.1",
|
|
23
23
|
"@progress/kendo-licensing": "^1.4.0",
|
|
24
|
-
"@progress/kendo-vue-animation": "6.4.
|
|
25
|
-
"@progress/kendo-vue-buttons": "6.4.
|
|
26
|
-
"@progress/kendo-vue-common": "6.4.
|
|
27
|
-
"@progress/kendo-vue-data-tools": "6.4.
|
|
28
|
-
"@progress/kendo-vue-dateinputs": "6.4.
|
|
29
|
-
"@progress/kendo-vue-indicators": "6.4.
|
|
30
|
-
"@progress/kendo-vue-dropdowns": "6.4.
|
|
31
|
-
"@progress/kendo-vue-inputs": "6.4.
|
|
32
|
-
"@progress/kendo-vue-intl": "6.4.
|
|
33
|
-
"@progress/kendo-vue-popup": "6.4.
|
|
24
|
+
"@progress/kendo-vue-animation": "6.4.2-develop.3",
|
|
25
|
+
"@progress/kendo-vue-buttons": "6.4.2-develop.3",
|
|
26
|
+
"@progress/kendo-vue-common": "6.4.2-develop.3",
|
|
27
|
+
"@progress/kendo-vue-data-tools": "6.4.2-develop.3",
|
|
28
|
+
"@progress/kendo-vue-dateinputs": "6.4.2-develop.3",
|
|
29
|
+
"@progress/kendo-vue-indicators": "6.4.2-develop.3",
|
|
30
|
+
"@progress/kendo-vue-dropdowns": "6.4.2-develop.3",
|
|
31
|
+
"@progress/kendo-vue-inputs": "6.4.2-develop.3",
|
|
32
|
+
"@progress/kendo-vue-intl": "6.4.2-develop.3",
|
|
33
|
+
"@progress/kendo-vue-popup": "6.4.2-develop.3",
|
|
34
34
|
"@progress/kendo-svg-icons": "^4.0.0",
|
|
35
35
|
"vue": "^3.0.2"
|
|
36
36
|
},
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"package": {
|
|
52
52
|
"productName": "Kendo UI for Vue",
|
|
53
53
|
"productCode": "KENDOUIVUE",
|
|
54
|
-
"publishDate":
|
|
54
|
+
"publishDate": 1750422028,
|
|
55
55
|
"licensingDocsUrl": "https://www.telerik.com/kendo-vue-ui/my-license/"
|
|
56
56
|
}
|
|
57
57
|
},
|