@progress/kendo-vue-grid 3.0.3-dev.202201280639 → 3.0.4
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/dist/cdn/js/kendo-vue-grid.js +1 -1
- package/dist/es/Grid.js +26 -7
- package/dist/es/VirtualScroll.d.ts +2 -0
- package/dist/es/VirtualScroll.js +14 -2
- package/dist/es/cells/GridCell.js +1 -1
- package/dist/es/columnMenu/ColumnMenuContent.js +2 -1
- package/dist/es/columnMenu/GridColumnMenuFilterCell.js +2 -1
- package/dist/es/columnMenu/GridColumnMenuFilterUI.js +3 -1
- package/dist/es/interfaces/GridCellProps.d.ts +6 -6
- package/dist/es/interfaces/GridColumnMenuExtendedFilterProps.d.ts +1 -1
- package/dist/es/interfaces/GridColumnMenuFilterProps.d.ts +1 -1
- package/dist/es/interfaces/GridColumnMenuFilterUIProps.d.ts +1 -1
- package/dist/es/interfaces/GridProps.d.ts +21 -21
- package/dist/es/package-metadata.js +1 -1
- package/dist/npm/Grid.js +26 -7
- package/dist/npm/VirtualScroll.d.ts +2 -0
- package/dist/npm/VirtualScroll.js +14 -2
- package/dist/npm/cells/GridCell.js +1 -1
- package/dist/npm/columnMenu/ColumnMenuContent.js +2 -1
- package/dist/npm/columnMenu/GridColumnMenuFilterCell.js +2 -1
- package/dist/npm/columnMenu/GridColumnMenuFilterUI.js +3 -1
- package/dist/npm/interfaces/GridCellProps.d.ts +6 -6
- package/dist/npm/interfaces/GridColumnMenuExtendedFilterProps.d.ts +1 -1
- package/dist/npm/interfaces/GridColumnMenuFilterProps.d.ts +1 -1
- package/dist/npm/interfaces/GridColumnMenuFilterUIProps.d.ts +1 -1
- package/dist/npm/interfaces/GridProps.d.ts +21 -21
- package/dist/npm/package-metadata.js +1 -1
- package/package.json +13 -13
|
@@ -43,7 +43,7 @@ export interface GridProps {
|
|
|
43
43
|
* Fires when the sorting of the Grid is changed ([see example]({% slug sorting_grid_native %})).
|
|
44
44
|
* You have to handle the event yourself and sort the data.
|
|
45
45
|
*/
|
|
46
|
-
|
|
46
|
+
onSortchange?: (event: GridSortChangeEvent) => void;
|
|
47
47
|
/**
|
|
48
48
|
* The descriptors by which the data is sorted.
|
|
49
49
|
* Applies the sorting styles and buttons to the affected columns.
|
|
@@ -69,7 +69,7 @@ export interface GridProps {
|
|
|
69
69
|
* ([more information and examples]({% slug filtering_grid_native %})).
|
|
70
70
|
* You have to handle the event yourself and filter the data.
|
|
71
71
|
*/
|
|
72
|
-
|
|
72
|
+
onFilterchange?: (event: GridFilterChangeEvent) => void;
|
|
73
73
|
/**
|
|
74
74
|
* Defines if the column menu will be shown for the column.
|
|
75
75
|
* Accepts Boolean, a Vue component, a `render` function, or a slot name
|
|
@@ -88,7 +88,7 @@ export interface GridProps {
|
|
|
88
88
|
* Fires when the grouping of the Grid is changed. You have to handle the event yourself and group the data
|
|
89
89
|
* ([more information and examples]({% slug groupingbasics_grid_native %})).
|
|
90
90
|
*/
|
|
91
|
-
|
|
91
|
+
onGroupchange?: (event: GridGroupChangeEvent) => void;
|
|
92
92
|
/**
|
|
93
93
|
* Configures the pager of the Grid ([see example]({% slug paging_grid_native %})).
|
|
94
94
|
*
|
|
@@ -114,7 +114,7 @@ export interface GridProps {
|
|
|
114
114
|
* Fires when the page of the Grid is changed ([see example]({% slug paging_grid_native %})).
|
|
115
115
|
* You have to handle the event yourself and page the data.
|
|
116
116
|
*/
|
|
117
|
-
|
|
117
|
+
onPagechange?: (event: GridPageChangeEvent) => void;
|
|
118
118
|
/**
|
|
119
119
|
* Defines the total number of data items in all pages
|
|
120
120
|
* ([see example]({% slug paging_grid_native %})). Required by the paging functionality.
|
|
@@ -128,7 +128,7 @@ export interface GridProps {
|
|
|
128
128
|
/**
|
|
129
129
|
* Fires when the user tries to expand or collapse a row.
|
|
130
130
|
*/
|
|
131
|
-
|
|
131
|
+
onExpandchange?: (event: GridExpandChangeEvent) => void;
|
|
132
132
|
/**
|
|
133
133
|
* Specifies the name of the field which will provide a Boolean representation
|
|
134
134
|
* of the expanded state of the item ([see example]({% slug detailrow_grid_native %}).
|
|
@@ -143,50 +143,50 @@ export interface GridProps {
|
|
|
143
143
|
* Fires when the user tries to select or deselect a row
|
|
144
144
|
* ([see example]({% slug selection_grid_native %})).
|
|
145
145
|
*/
|
|
146
|
-
|
|
146
|
+
onSelectionchange?: (event: GridSelectionChangeEvent) => void;
|
|
147
147
|
/**
|
|
148
148
|
* Fires when the user clicks the checkbox of a column header whose `field` matches `selectedField`.
|
|
149
149
|
* ([see example]({% slug selection_grid_native %})).
|
|
150
150
|
*/
|
|
151
|
-
|
|
151
|
+
onHeaderselectionchange?: (event: GridHeaderSelectionChangeEvent) => void;
|
|
152
152
|
/**
|
|
153
153
|
* Fires when the user clicks a row.
|
|
154
154
|
*/
|
|
155
|
-
|
|
155
|
+
onRowclick?: (event: GridRowClickEvent) => void;
|
|
156
156
|
/**
|
|
157
157
|
* Fires when the user double clicks a row.
|
|
158
158
|
*/
|
|
159
|
-
|
|
159
|
+
onRowdblclick?: (event: GridRowClickEvent) => void;
|
|
160
160
|
/**
|
|
161
161
|
* Fires when the user clicks a cell.
|
|
162
162
|
*/
|
|
163
|
-
|
|
163
|
+
onCellclick?: (event: any) => void;
|
|
164
164
|
/**
|
|
165
165
|
* Fires when Grid is scrolled.
|
|
166
166
|
*/
|
|
167
|
-
|
|
167
|
+
onScroll?: (event: any) => void;
|
|
168
168
|
/**
|
|
169
169
|
* Fires when the user triggers an edit operation from a cell.
|
|
170
170
|
*/
|
|
171
|
-
|
|
171
|
+
onEdit?: (event: GridEditEvent) => void;
|
|
172
172
|
/**
|
|
173
173
|
* Fires when the user triggers a removal operation from a cell.
|
|
174
174
|
*/
|
|
175
|
-
|
|
175
|
+
onRemove?: (event: GridRemoveEvent) => void;
|
|
176
176
|
/**
|
|
177
177
|
* Fires when the user triggers a saving operation from a cell.
|
|
178
178
|
*/
|
|
179
|
-
|
|
179
|
+
onSave?: (event: GridSaveEvent) => void;
|
|
180
180
|
/**
|
|
181
181
|
* Fires when the user triggers a canceling operation from a cell.
|
|
182
182
|
*/
|
|
183
|
-
|
|
183
|
+
onCancel?: (event: GridCancelEvent) => void;
|
|
184
184
|
/**
|
|
185
185
|
* Fires when the user changes the values of the item.
|
|
186
186
|
* The event is not debounced and fires on every `onChange` event of the input in the current `EditCell`.
|
|
187
187
|
* ([more information and examples]({% slug editing_inline_grid_native %})).
|
|
188
188
|
*/
|
|
189
|
-
|
|
189
|
+
onItemchange?: (event: GridItemChangeEvent) => void;
|
|
190
190
|
/**
|
|
191
191
|
* Specifies the name of the field which will provide a Boolean representation of the edit state of the current
|
|
192
192
|
* item ([more information and examples]({% slug editing_inline_grid_native %})).
|
|
@@ -221,7 +221,7 @@ export interface GridProps {
|
|
|
221
221
|
/**
|
|
222
222
|
* Fires when the data state of the Grid is changed.
|
|
223
223
|
*/
|
|
224
|
-
|
|
224
|
+
onDatastatechange?: (event: GridDataStateChangeEvent) => void;
|
|
225
225
|
/**
|
|
226
226
|
* If set to `true`, the user can resize columns by dragging the edges (resize handles) of their
|
|
227
227
|
* header cells ([see example]({% slug resizing_columns_grid_native %}).
|
|
@@ -240,11 +240,11 @@ export interface GridProps {
|
|
|
240
240
|
/**
|
|
241
241
|
* Fires when a column is resized
|
|
242
242
|
*/
|
|
243
|
-
|
|
243
|
+
onColumnresize?: (event: GridColumnResizeEvent) => void;
|
|
244
244
|
/**
|
|
245
245
|
* Fires when columns are reordered.
|
|
246
246
|
*/
|
|
247
|
-
|
|
247
|
+
onColumnreorder?: (event: GridColumnReorderEvent) => void;
|
|
248
248
|
/**
|
|
249
249
|
* Defines the custom rendering of the row. Accepts a Vue component, a `render` function, or a slot name.
|
|
250
250
|
*/
|
|
@@ -279,9 +279,9 @@ export interface GridProps {
|
|
|
279
279
|
/**
|
|
280
280
|
* Fires when Grid keyboard navigation position is changed.
|
|
281
281
|
*/
|
|
282
|
-
|
|
282
|
+
onNavigationaction?: (event: GridNavigationActionEvent) => void;
|
|
283
283
|
/**
|
|
284
284
|
* Fires when the user press keyboard key.
|
|
285
285
|
*/
|
|
286
|
-
|
|
286
|
+
onKeydown?: (event: GridKeyDownEvent) => void;
|
|
287
287
|
}
|
|
@@ -8,7 +8,7 @@ exports.packageMetadata = {
|
|
|
8
8
|
name: '@progress/kendo-vue-grid',
|
|
9
9
|
productName: 'Kendo UI for Vue',
|
|
10
10
|
productCodes: ['KENDOUIVUE', 'KENDOUICOMPLETE'],
|
|
11
|
-
publishDate:
|
|
11
|
+
publishDate: 1643723751,
|
|
12
12
|
version: '',
|
|
13
13
|
licensingDocsUrl: 'https://www.telerik.com/kendo-vue-ui/my-license/?utm_medium=product&utm_source=kendovue&utm_campaign=kendo-ui-vue-purchase-license-keys-warning'
|
|
14
14
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-vue-grid",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.4",
|
|
4
4
|
"description": "Kendo UI for Vue Grid package",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -34,23 +34,23 @@
|
|
|
34
34
|
"vue": "^2.6.12 || ^3.0.2"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@progress/kendo-vue-common": "3.0.
|
|
37
|
+
"@progress/kendo-vue-common": "3.0.4"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@progress/kendo-data-query": "^1.5.4",
|
|
41
41
|
"@progress/kendo-drawing": "^1.9.3",
|
|
42
42
|
"@progress/kendo-licensing": "^1.1.0",
|
|
43
|
-
"@progress/kendo-vue-animation": "3.0.
|
|
44
|
-
"@progress/kendo-vue-buttons": "3.0.
|
|
45
|
-
"@progress/kendo-vue-charts": "3.0.
|
|
46
|
-
"@progress/kendo-vue-data-tools": "3.0.
|
|
47
|
-
"@progress/kendo-vue-dateinputs": "3.0.
|
|
48
|
-
"@progress/kendo-vue-dropdowns": "3.0.
|
|
49
|
-
"@progress/kendo-vue-excel-export": "3.0.
|
|
50
|
-
"@progress/kendo-vue-inputs": "3.0.
|
|
51
|
-
"@progress/kendo-vue-intl": "3.0.
|
|
52
|
-
"@progress/kendo-vue-pdf": "3.0.
|
|
53
|
-
"@progress/kendo-vue-popup": "3.0.
|
|
43
|
+
"@progress/kendo-vue-animation": "3.0.4",
|
|
44
|
+
"@progress/kendo-vue-buttons": "3.0.4",
|
|
45
|
+
"@progress/kendo-vue-charts": "3.0.4",
|
|
46
|
+
"@progress/kendo-vue-data-tools": "3.0.4",
|
|
47
|
+
"@progress/kendo-vue-dateinputs": "3.0.4",
|
|
48
|
+
"@progress/kendo-vue-dropdowns": "3.0.4",
|
|
49
|
+
"@progress/kendo-vue-excel-export": "3.0.4",
|
|
50
|
+
"@progress/kendo-vue-inputs": "3.0.4",
|
|
51
|
+
"@progress/kendo-vue-intl": "3.0.4",
|
|
52
|
+
"@progress/kendo-vue-pdf": "3.0.4",
|
|
53
|
+
"@progress/kendo-vue-popup": "3.0.4",
|
|
54
54
|
"cldr-core": "^34.0.0",
|
|
55
55
|
"cldr-dates-full": "^34.0.0",
|
|
56
56
|
"cldr-numbers-full": "^34.0.0",
|