@progress/kendo-vue-grid 9.2.0 → 9.3.0-develop.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/Grid.d.ts +2 -2
- package/RootGrid.d.ts +2 -2
- package/cells/GridCell.d.ts +2 -2
- package/cells/GridEditCell.d.ts +7 -7
- package/cells/GridGroupCell.d.ts +2 -2
- package/cells/GridHierarchyCell.d.ts +2 -2
- package/cells/GridSelectionCell.d.ts +2 -2
- package/columnMenu/ColumnMenu.d.ts +2 -2
- package/columnMenu/GridColumnMenuFilterCell.d.ts +2 -2
- package/columnMenu/GridColumnMenuFilterOperators.d.ts +1 -1
- package/columnMenu/GridColumnMenuFilterUI.d.ts +3 -3
- package/common.d.ts +1 -1
- package/dist/cdn/js/kendo-vue-grid.js +1 -1
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +2 -2
- package/package.json +13 -13
package/Grid.d.ts
CHANGED
|
@@ -202,7 +202,7 @@ declare const Grid: import('vue').DefineComponent<import('vue').ExtractPropTypes
|
|
|
202
202
|
svgClassName: StringConstructor;
|
|
203
203
|
svgStyle: ObjectConstructor;
|
|
204
204
|
}>> & Readonly<{
|
|
205
|
-
onClick?: (...args: any
|
|
205
|
+
onClick?: (...args: any) => any;
|
|
206
206
|
}>, {
|
|
207
207
|
viewBox: string;
|
|
208
208
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -638,7 +638,7 @@ declare const Grid: import('vue').DefineComponent<import('vue').ExtractPropTypes
|
|
|
638
638
|
svgClassName: StringConstructor;
|
|
639
639
|
svgStyle: ObjectConstructor;
|
|
640
640
|
}>> & Readonly<{
|
|
641
|
-
onClick?: (...args: any
|
|
641
|
+
onClick?: (...args: any) => any;
|
|
642
642
|
}>, {
|
|
643
643
|
viewBox: string;
|
|
644
644
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
package/RootGrid.d.ts
CHANGED
|
@@ -229,7 +229,7 @@ export declare const RootGrid: import('vue').DefineComponent<import('vue').Extra
|
|
|
229
229
|
svgClassName: StringConstructor;
|
|
230
230
|
svgStyle: ObjectConstructor;
|
|
231
231
|
}>> & Readonly<{
|
|
232
|
-
onClick?: (...args: any
|
|
232
|
+
onClick?: (...args: any) => any;
|
|
233
233
|
}>, {
|
|
234
234
|
viewBox: string;
|
|
235
235
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -464,7 +464,7 @@ export declare const RootGrid: import('vue').DefineComponent<import('vue').Extra
|
|
|
464
464
|
svgClassName: StringConstructor;
|
|
465
465
|
svgStyle: ObjectConstructor;
|
|
466
466
|
}>> & Readonly<{
|
|
467
|
-
onClick?: (...args: any
|
|
467
|
+
onClick?: (...args: any) => any;
|
|
468
468
|
}>, {
|
|
469
469
|
viewBox: string;
|
|
470
470
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
package/cells/GridCell.d.ts
CHANGED
|
@@ -124,7 +124,7 @@ declare const GridCell: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
124
124
|
onSelectionchange: PropType<(event: any, dataItem: any) => void>;
|
|
125
125
|
cells: PropType<import('../interfaces/GridCellsSettings').GridCellsSettings>;
|
|
126
126
|
}>> & Readonly<{
|
|
127
|
-
onCellkeydown?: (...args: any
|
|
128
|
-
onCellclick?: (...args: any
|
|
127
|
+
onCellkeydown?: (...args: any) => any;
|
|
128
|
+
onCellclick?: (...args: any) => any;
|
|
129
129
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
130
130
|
export { GridCell };
|
package/cells/GridEditCell.d.ts
CHANGED
|
@@ -79,12 +79,12 @@ declare const GridEditCell: import('vue').DefineComponent<import('vue').ExtractP
|
|
|
79
79
|
readFormat: PropType<string>;
|
|
80
80
|
dataIndex: PropType<number>;
|
|
81
81
|
}>> & Readonly<{
|
|
82
|
-
onCancel?: (...args: any
|
|
83
|
-
onChange?: (...args: any
|
|
84
|
-
onAdd?: (...args: any
|
|
85
|
-
onEdit?: (...args: any
|
|
86
|
-
onRemove?: (...args: any
|
|
87
|
-
onCellkeydown?: (...args: any
|
|
88
|
-
onSave?: (...args: any
|
|
82
|
+
onCancel?: (...args: any) => any;
|
|
83
|
+
onChange?: (...args: any) => any;
|
|
84
|
+
onAdd?: (...args: any) => any;
|
|
85
|
+
onEdit?: (...args: any) => any;
|
|
86
|
+
onRemove?: (...args: any) => any;
|
|
87
|
+
onCellkeydown?: (...args: any) => any;
|
|
88
|
+
onSave?: (...args: any) => any;
|
|
89
89
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
90
90
|
export { GridEditCell };
|
package/cells/GridGroupCell.d.ts
CHANGED
|
@@ -75,7 +75,7 @@ declare const GridGroupCell: import('vue').DefineComponent<import('vue').Extract
|
|
|
75
75
|
render: PropType<any>;
|
|
76
76
|
cells: PropType<import('..').GridCellsSettings>;
|
|
77
77
|
}>> & Readonly<{
|
|
78
|
-
onChange?: (...args: any
|
|
79
|
-
onCellkeydown?: (...args: any
|
|
78
|
+
onChange?: (...args: any) => any;
|
|
79
|
+
onCellkeydown?: (...args: any) => any;
|
|
80
80
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
81
81
|
export { GridGroupCell };
|
|
@@ -64,7 +64,7 @@ declare const GridHierarchyCell: import('vue').DefineComponent<import('vue').Ext
|
|
|
64
64
|
isRtl: PropType<boolean>;
|
|
65
65
|
cells: PropType<import('..').GridCellsSettings>;
|
|
66
66
|
}>> & Readonly<{
|
|
67
|
-
onChange?: (...args: any
|
|
68
|
-
onCellkeydown?: (...args: any
|
|
67
|
+
onChange?: (...args: any) => any;
|
|
68
|
+
onCellkeydown?: (...args: any) => any;
|
|
69
69
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
70
70
|
export { GridHierarchyCell };
|
|
@@ -64,7 +64,7 @@ declare const GridSelectionCell: import('vue').DefineComponent<import('vue').Ext
|
|
|
64
64
|
isRtl: PropType<boolean>;
|
|
65
65
|
cells: PropType<import('..').GridCellsSettings>;
|
|
66
66
|
}>> & Readonly<{
|
|
67
|
-
onSelectionchange?: (...args: any
|
|
68
|
-
onCellkeydown?: (...args: any
|
|
67
|
+
onSelectionchange?: (...args: any) => any;
|
|
68
|
+
onCellkeydown?: (...args: any) => any;
|
|
69
69
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
70
70
|
export { GridSelectionCell };
|
|
@@ -95,7 +95,7 @@ declare const ColumnMenu: import('vue').DefineComponent<import('vue').ExtractPro
|
|
|
95
95
|
svgClassName: StringConstructor;
|
|
96
96
|
svgStyle: ObjectConstructor;
|
|
97
97
|
}>> & Readonly<{
|
|
98
|
-
onClick?: (...args: any
|
|
98
|
+
onClick?: (...args: any) => any;
|
|
99
99
|
}>, {
|
|
100
100
|
viewBox: string;
|
|
101
101
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -202,7 +202,7 @@ declare const ColumnMenu: import('vue').DefineComponent<import('vue').ExtractPro
|
|
|
202
202
|
svgClassName: StringConstructor;
|
|
203
203
|
svgStyle: ObjectConstructor;
|
|
204
204
|
}>> & Readonly<{
|
|
205
|
-
onClick?: (...args: any
|
|
205
|
+
onClick?: (...args: any) => any;
|
|
206
206
|
}>, {
|
|
207
207
|
viewBox: string;
|
|
208
208
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
@@ -59,7 +59,7 @@ declare const GridColumnMenuFilterCell: import('vue').DefineComponent<import('vu
|
|
|
59
59
|
}[]>;
|
|
60
60
|
booleanValues: PropType<GridFilterOperator[]>;
|
|
61
61
|
}>> & Readonly<{
|
|
62
|
-
onChange?: (...args: any
|
|
63
|
-
onFiltercellfocus?: (...args: any
|
|
62
|
+
onChange?: (...args: any) => any;
|
|
63
|
+
onFiltercellfocus?: (...args: any) => any;
|
|
64
64
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
65
65
|
export { GridColumnMenuFilterCell };
|
|
@@ -44,6 +44,6 @@ declare const ColumnMenuFilterOperators: import('vue').DefineComponent<import('v
|
|
|
44
44
|
operator: any;
|
|
45
45
|
}[]>;
|
|
46
46
|
}>> & Readonly<{
|
|
47
|
-
onChange?: (...args: any
|
|
47
|
+
onChange?: (...args: any) => any;
|
|
48
48
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
49
49
|
export { ColumnMenuFilterOperators };
|
|
@@ -52,8 +52,8 @@ declare const GridColumnMenuFilterUI: import('vue').DefineComponent<import('vue'
|
|
|
52
52
|
}[]>;
|
|
53
53
|
render: PropType<any>;
|
|
54
54
|
}>> & Readonly<{
|
|
55
|
-
onChange?: (...args: any
|
|
56
|
-
onLogicChange?: (...args: any
|
|
57
|
-
onFilteruifocus?: (...args: any
|
|
55
|
+
onChange?: (...args: any) => any;
|
|
56
|
+
onLogicChange?: (...args: any) => any;
|
|
57
|
+
onFilteruifocus?: (...args: any) => any;
|
|
58
58
|
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
59
59
|
export { GridColumnMenuFilterUI };
|
package/common.d.ts
CHANGED
|
@@ -180,7 +180,7 @@ declare const gridProps: {
|
|
|
180
180
|
svgClassName: StringConstructor;
|
|
181
181
|
svgStyle: ObjectConstructor;
|
|
182
182
|
}>> & Readonly<{
|
|
183
|
-
onClick?: (...args: any
|
|
183
|
+
onClick?: (...args: any) => any;
|
|
184
184
|
}>, {
|
|
185
185
|
viewBox: string;
|
|
186
186
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|