@progress/kendo-vue-grid 8.0.3-develop.1 → 8.0.3-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.
Files changed (121) hide show
  1. package/BasePDFExport.d.ts +59 -0
  2. package/Grid.d.ts +542 -0
  3. package/GridColumn.d.ts +18 -0
  4. package/GridNav.d.ts +26 -0
  5. package/GridSearchBox.d.ts +42 -0
  6. package/GridState.d.ts +234 -0
  7. package/GridToolbar.d.ts +32 -0
  8. package/RootGrid.d.ts +429 -0
  9. package/ScrollMode.d.ts +8 -0
  10. package/StatusBar.d.ts +21 -0
  11. package/VirtualScroll.d.ts +43 -0
  12. package/cells/GridCell.d.ts +123 -0
  13. package/cells/GridDetailCell.d.ts +38 -0
  14. package/cells/GridDetailHierarchyCell.d.ts +23 -0
  15. package/cells/GridEditCell.d.ts +86 -0
  16. package/cells/GridFilterCell.d.ts +60 -0
  17. package/cells/GridGroupCell.d.ts +68 -0
  18. package/cells/GridHierarchyCell.d.ts +67 -0
  19. package/cells/GridSelectionCell.d.ts +65 -0
  20. package/columnMenu/ColumnMenu.d.ts +191 -0
  21. package/columnMenu/ColumnMenuContent.d.ts +58 -0
  22. package/columnMenu/GridColumnMenuCheckboxFilter.d.ts +102 -0
  23. package/columnMenu/GridColumnMenuFilter.d.ts +129 -0
  24. package/columnMenu/GridColumnMenuFilter.mjs +5 -5
  25. package/columnMenu/GridColumnMenuFilterCell.d.ts +65 -0
  26. package/columnMenu/GridColumnMenuFilterOperators.d.ts +49 -0
  27. package/columnMenu/GridColumnMenuFilterUI.d.ts +59 -0
  28. package/columnMenu/GridColumnMenuItem.d.ts +60 -0
  29. package/columnMenu/GridColumnMenuItemContent.d.ts +26 -0
  30. package/columnMenu/GridColumnMenuItemGroup.d.ts +12 -0
  31. package/columnMenu/GridColumnMenuSort.d.ts +46 -0
  32. package/common.d.ts +184 -0
  33. package/components/GridDragClue.d.ts +11 -0
  34. package/components/GridDropClue.d.ts +11 -0
  35. package/components/GridLoader.d.ts +32 -0
  36. package/components/PagerContainer.d.ts +11 -0
  37. package/components/VirtualScrollHeightContainer.d.ts +11 -0
  38. package/components/colGroup/GridColGroup.d.ts +11 -0
  39. package/components/noRecords/GridNoRecords.d.ts +15 -0
  40. package/components/noRecords/GridNoRecordsContainer.d.ts +15 -0
  41. package/components/utils.d.ts +21 -0
  42. package/dist/cdn/js/kendo-vue-grid.js +1 -1
  43. package/drag/ColumnDraggable.d.ts +34 -0
  44. package/drag/ColumnResize.d.ts +46 -0
  45. package/drag/ColumnResizer.d.ts +27 -0
  46. package/drag/CommonDragLogic.d.ts +43 -0
  47. package/drag/DragClue.d.ts +18 -0
  48. package/drag/DropClue.d.ts +17 -0
  49. package/drag/GroupingIndicator.d.ts +50 -0
  50. package/filterCommon.d.ts +86 -0
  51. package/footer/Footer.d.ts +57 -0
  52. package/footer/FooterRow.d.ts +35 -0
  53. package/header/FilterRow.d.ts +65 -0
  54. package/header/GridHeaderCell.d.ts +34 -0
  55. package/header/GridHeaderSelectionCell.d.ts +25 -0
  56. package/header/GroupPanel.d.ts +52 -0
  57. package/header/Header.d.ts +70 -0
  58. package/header/HeaderRow.d.ts +140 -0
  59. package/index.d.mts +42 -3319
  60. package/index.d.ts +42 -3319
  61. package/interfaces/ColumnType.d.ts +13 -0
  62. package/interfaces/CompositeHighlightDescriptor.d.ts +29 -0
  63. package/interfaces/ExtendedColumnProps.d.ts +33 -0
  64. package/interfaces/GridCellProps.d.ts +176 -0
  65. package/interfaces/GridCellRenderModel.d.ts +15 -0
  66. package/interfaces/GridColSpanProps.d.ts +21 -0
  67. package/interfaces/GridColumnChildrenProps.d.ts +12 -0
  68. package/interfaces/GridColumnMenuBaseProps.d.ts +21 -0
  69. package/interfaces/GridColumnMenuColumnProps.d.ts +20 -0
  70. package/interfaces/GridColumnMenuColumnsChooserBaseProps.d.ts +22 -0
  71. package/interfaces/GridColumnMenuExtendedFilterProps.d.ts +49 -0
  72. package/interfaces/GridColumnMenuFilterBaseProps.d.ts +56 -0
  73. package/interfaces/GridColumnMenuFilterProps.d.ts +34 -0
  74. package/interfaces/GridColumnMenuFilterUIProps.d.ts +62 -0
  75. package/interfaces/GridColumnMenuGroupBaseProps.d.ts +26 -0
  76. package/interfaces/GridColumnMenuProps.d.ts +48 -0
  77. package/interfaces/GridColumnMenuSortBaseProps.d.ts +35 -0
  78. package/interfaces/GridColumnProps.d.ts +207 -0
  79. package/interfaces/GridColumnState.d.ts +44 -0
  80. package/interfaces/GridDataType.d.ts +12 -0
  81. package/interfaces/GridDetailExpandableSettings.d.ts +11 -0
  82. package/interfaces/GridDetailRowProps.d.ts +16 -0
  83. package/interfaces/GridEditableSettings.d.ts +16 -0
  84. package/interfaces/GridFilterCellProps.d.ts +86 -0
  85. package/interfaces/GridFilterOperator.d.ts +14 -0
  86. package/interfaces/GridFilterOperators.d.ts +56 -0
  87. package/interfaces/GridFooterCellProps.d.ts +14 -0
  88. package/interfaces/GridGroupExpandableSettings.d.ts +22 -0
  89. package/interfaces/GridGroupableSettings.d.ts +27 -0
  90. package/interfaces/GridHeaderCellProps.d.ts +44 -0
  91. package/interfaces/GridHeaderSelectionCellProps.d.ts +24 -0
  92. package/interfaces/GridHighlightDescriptor.d.ts +10 -0
  93. package/interfaces/GridNoRecordsProps.d.ts +16 -0
  94. package/interfaces/GridProps.d.ts +543 -0
  95. package/interfaces/GridReorderDropDir.d.ts +11 -0
  96. package/interfaces/GridRowProps.d.ts +70 -0
  97. package/interfaces/GridRowReorderSettings.d.ts +25 -0
  98. package/interfaces/GridRowSpannableSettings.d.ts +21 -0
  99. package/interfaces/GridRowType.d.ts +16 -0
  100. package/interfaces/GridRowsSettings.d.ts +15 -0
  101. package/interfaces/GridSelectableSettings.d.ts +25 -0
  102. package/interfaces/GridSortSettings.d.ts +33 -0
  103. package/interfaces/GridToolbarProps.d.ts +22 -0
  104. package/interfaces/VirtualScrollInterface.d.ts +28 -0
  105. package/interfaces/events.d.ts +311 -0
  106. package/key.d.ts +8 -0
  107. package/messages/main.d.ts +430 -0
  108. package/messages/messagesMap.d.ts +14 -0
  109. package/package-metadata.d.ts +12 -0
  110. package/package-metadata.js +1 -1
  111. package/package-metadata.mjs +2 -2
  112. package/package.json +20 -14
  113. package/paging/GridPagerSettings.d.ts +21 -0
  114. package/paging/Page.d.ts +11 -0
  115. package/rows/GridDetailRow.d.ts +12 -0
  116. package/rows/GridRow.d.ts +72 -0
  117. package/utils/browser-support.service.d.ts +14 -0
  118. package/utils/main.d.ts +143 -0
  119. package/utils/main.js +1 -1
  120. package/utils/main.mjs +1 -1
  121. package/utils/virtualColumns.d.ts +31 -0
@@ -0,0 +1,15 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * The settings of the rows prop options.
10
+ */
11
+ export interface GridRowsSettings {
12
+ groupHeader?: any;
13
+ data?: any;
14
+ groupFooter?: any;
15
+ }
@@ -0,0 +1,25 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { TableSelectableMode, TableSelectableSettings } from '@progress/kendo-vue-data-tools';
9
+ /**
10
+ * Represents the available selection modes.
11
+ */
12
+ export type GridSelectableMode = TableSelectableMode;
13
+ /**
14
+ * Represents the Grid selectable settings.
15
+ */
16
+ export interface GridSelectableSettings extends TableSelectableSettings {
17
+ /**
18
+ * The available values are:
19
+ * * `single`
20
+ * * `multiple`
21
+ *
22
+ * @default "multiple"
23
+ */
24
+ mode?: GridSelectableMode;
25
+ }
@@ -0,0 +1,33 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * The settings for sorting the Grid columns.
10
+ */
11
+ export type GridColumnSortSettings = boolean | {
12
+ /**
13
+ * Enables the removal of the column sorting functionality.
14
+ */
15
+ allowUnsort?: boolean;
16
+ };
17
+ /**
18
+ * The settings for sorting the Grid data.
19
+ */
20
+ export type GridSortSettings = boolean | GridColumnSortSettings & {
21
+ /**
22
+ * The sort mode of the Grid.
23
+ *
24
+ * The available modes are:
25
+ * - `single`
26
+ * - `multiple`
27
+ */
28
+ mode?: 'single' | 'multiple';
29
+ };
30
+ /**
31
+ * @hidden
32
+ */
33
+ export declare const normalize: (...settings: (GridSortSettings | GridColumnSortSettings)[]) => any;
@@ -0,0 +1,22 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ /**
9
+ * The props of the GridToolbarProps component.
10
+ */
11
+ export interface GridToolbarProps {
12
+ /**
13
+ * Configures the `size` of the Grid.
14
+ *
15
+ * The available options are:
16
+ * - small
17
+ * - medium
18
+ *
19
+ * @default `medium`
20
+ */
21
+ size?: 'small' | 'medium' | string;
22
+ }
@@ -0,0 +1,28 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { Page } from '@progress/kendo-vue-data-tools';
9
+ import { RowHeightService } from '@progress/kendo-vue-common';
10
+ /**
11
+ * @hidden
12
+ */
13
+ export interface VirtualScrollInterface {
14
+ table: HTMLTableElement | null;
15
+ tableBody: HTMLTableSectionElement | null;
16
+ container: HTMLDivElement | null;
17
+ scrollHeightContainer: HTMLDivElement | null;
18
+ total: number;
19
+ scrollableVirtual: boolean;
20
+ pageSize: number;
21
+ PageChange: ((event: Page, e: Event) => void) | null;
22
+ fixedScroll: boolean;
23
+ tableTransform: string;
24
+ rowHeightService?: RowHeightService;
25
+ reset: () => void;
26
+ scrollHandler(e: Event): void;
27
+ update(): void;
28
+ }
@@ -0,0 +1,311 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ import { SortDescriptor, CompositeFilterDescriptor, GroupDescriptor, State } from '@progress/kendo-data-query';
9
+ import { GridColumnProps } from './GridColumnProps';
10
+ import { DetailExpandDescriptor, GroupExpandDescriptor } from '@progress/kendo-vue-data-tools';
11
+ import { GridColumnState } from './GridColumnState';
12
+ import { GridHandle } from '../RootGrid';
13
+ import { GridState } from '../GridState';
14
+ /**
15
+ * Represents the base event object of the Grid.
16
+ */
17
+ /**
18
+ * @hidden
19
+ */
20
+ export interface GridEvent {
21
+ /**
22
+ * An event target.
23
+ */
24
+ target?: any;
25
+ /**
26
+ * A specific native DOM event which is fetched by Vue.
27
+ */
28
+ event?: any;
29
+ }
30
+ /**
31
+ * Represents the object of the `onSearchChange` Grid event.
32
+ */
33
+ export interface GridSearchChangeEvent extends GridEvent {
34
+ /**
35
+ * The new search based on the user action.
36
+ */
37
+ search: CompositeFilterDescriptor;
38
+ }
39
+ /**
40
+ * Represents the object of the `onPageChange` event.
41
+ */
42
+ export interface GridPageChangeEvent extends GridEvent {
43
+ page: any;
44
+ /**
45
+ * A specific native DOM event which is fetched by Vue.
46
+ */
47
+ event: any;
48
+ }
49
+ /**
50
+ * The returned type of the `onDataStateChange` event.
51
+ */
52
+ export interface GridDataStateChangeEvent extends GridEvent {
53
+ /**
54
+ * The state of the Grid based on the user action.
55
+ */
56
+ data: State;
57
+ /**
58
+ * The state of the Grid based on the user action.
59
+ */
60
+ dataState: GridState;
61
+ }
62
+ /**
63
+ * Represents the object of the `onSortChange` event.
64
+ */
65
+ export interface GridSortChangeEvent extends GridEvent {
66
+ /**
67
+ * The new `SortDescriptor` based on the user action.
68
+ */
69
+ sort: SortDescriptor[];
70
+ }
71
+ /**
72
+ * Represents the object of the `onFilterChange` event.
73
+ */
74
+ export interface GridFilterChangeEvent extends GridEvent {
75
+ /**
76
+ * The new `CompositeFilterDescriptor` based on the user action.
77
+ */
78
+ filter: CompositeFilterDescriptor;
79
+ }
80
+ /**
81
+ * Represents the object of the `onGroupChange` event.
82
+ */
83
+ export interface GridGroupChangeEvent extends GridEvent {
84
+ /**
85
+ * An array of `GroupDescriptor` based on the user action.
86
+ */
87
+ group: GroupDescriptor[];
88
+ }
89
+ /**
90
+ * Represents the object of the `onDetailExpandChange` Grid event.
91
+ */
92
+ export interface GridDetailExpandChangeEvent extends GridEvent {
93
+ /**
94
+ * The descriptor defining which detail rows are expanded.
95
+ */
96
+ detailExpand: DetailExpandDescriptor;
97
+ }
98
+ /**
99
+ * Represents the object of the `onGroupExpandChange` Grid event.
100
+ */
101
+ export interface GridGroupExpandChangeEvent extends GridEvent {
102
+ /**
103
+ * The descriptors defining which groups are expanded.
104
+ */
105
+ groupExpand: GroupExpandDescriptor[];
106
+ }
107
+ /**
108
+ * Represents the object of the `onExpandChange` event.
109
+ */
110
+ export interface GridExpandChangeEvent extends GridEvent {
111
+ /**
112
+ * The array with collapsed groups.
113
+ */
114
+ collapsedGroups?: any[][];
115
+ /**
116
+ * The data item that is expanded or collapsed.
117
+ */
118
+ dataItem: any;
119
+ /**
120
+ * The available values are:
121
+ * - `true`—If the data item is expanded.
122
+ * - `false`—If the data item is collapsed.
123
+ */
124
+ value: boolean;
125
+ }
126
+ /**
127
+ * Represents the object of the `onSelectionChange` event.
128
+ */
129
+ export interface GridSelectionChangeEvent extends GridEvent {
130
+ /**
131
+ * The data item which was selected or deselected by the user.
132
+ */
133
+ dataItem: any;
134
+ }
135
+ /**
136
+ * Represents the object of the `onItemChange` event.
137
+ */
138
+ export interface GridItemChangeEvent extends GridEvent {
139
+ /**
140
+ * The data object that represents the current row.
141
+ */
142
+ dataItem: any;
143
+ /**
144
+ * The field to which the row is bound.
145
+ */
146
+ field?: string;
147
+ /**
148
+ * The value of the item.
149
+ */
150
+ value: any;
151
+ }
152
+ /**
153
+ * Represents the object of the `onHeaderSelectionChange` event.
154
+ */
155
+ export interface GridHeaderSelectionChangeEvent extends GridEvent {
156
+ /**
157
+ * The field of the column in which the cell is located.
158
+ */
159
+ field?: string;
160
+ }
161
+ /**
162
+ * Represents the object of the `GridKeyDownEvent` Grid event.
163
+ */
164
+ export interface GridKeyDownEvent extends GridEvent {
165
+ /**
166
+ * The current Grid leaf data items.
167
+ */
168
+ dataItems: any[];
169
+ /**
170
+ * Grid selection mode.
171
+ */
172
+ mode: 'single' | 'multiple';
173
+ /**
174
+ * Indicates if cell selection mode is enabled.
175
+ */
176
+ cell: boolean;
177
+ /**
178
+ * The `selectedField` prop of the Grid.
179
+ */
180
+ selectedField: string;
181
+ /**
182
+ * The component unique identifier.
183
+ */
184
+ componentId: string;
185
+ }
186
+ /**
187
+ * Represents the object of the `GridNavigationActionEvent` Grid event.
188
+ */
189
+ export interface GridNavigationActionEvent extends GridEvent {
190
+ /**
191
+ * The focused element.
192
+ */
193
+ focusElement: any;
194
+ }
195
+ /**
196
+ * Represents the object of the `onRowClick` event.
197
+ */
198
+ export interface GridRowClickEvent extends GridEvent {
199
+ /**
200
+ * The item from the `data` property of the Grid which corresponds to the row that is clicked by the user.
201
+ */
202
+ dataItem: any;
203
+ }
204
+ /**
205
+ * Represents the object of the `cancel` event.
206
+ */
207
+ export interface GridCancelEvent {
208
+ /**
209
+ * The item from the `data` property of the Grid that corresponds to the item that is canceled by the user.
210
+ */
211
+ dataItem: any;
212
+ }
213
+ /**
214
+ * Represents the object of the `edit` event.
215
+ */
216
+ export interface GridEditEvent {
217
+ /**
218
+ * The item from the `data` property of the Grid that corresponds to the item that is edited by the user.
219
+ */
220
+ dataItem: any;
221
+ }
222
+ /**
223
+ * Represents the object of the `remove` event.
224
+ */
225
+ export interface GridRemoveEvent {
226
+ /**
227
+ * The item from the `data` property of the Grid that corresponds to the item that is removed by the user.
228
+ */
229
+ dataItem: any;
230
+ }
231
+ /**
232
+ * Represents the object of the `save` event.
233
+ */
234
+ export interface GridSaveEvent {
235
+ /**
236
+ * The item from the `data` property of the Grid that corresponds to the item that is saved by the user.
237
+ */
238
+ dataItem: any;
239
+ }
240
+ /**
241
+ * Represents the object of the `onColumnResize` event.
242
+ */
243
+ export interface GridColumnResizeEvent {
244
+ /**
245
+ * An event target.
246
+ */
247
+ target: any;
248
+ /**
249
+ * A native DOM event.
250
+ */
251
+ event: any;
252
+ /**
253
+ * The current column collection.
254
+ */
255
+ columns: GridColumnProps[];
256
+ /**
257
+ * The index of the column.
258
+ */
259
+ index: number;
260
+ /**
261
+ * The new width of the column.
262
+ */
263
+ newWidth: number;
264
+ /**
265
+ * The actual width of the column prior to resizing.
266
+ */
267
+ oldWidth: number;
268
+ /**
269
+ * Indicates that resizing is complete and
270
+ * the user has dropped the resize handler.
271
+ */
272
+ end: boolean;
273
+ }
274
+ /**
275
+ * Represents the object of the `onColumnReorder` event.
276
+ */
277
+ export interface GridColumnReorderEvent {
278
+ /**
279
+ * An event target.
280
+ */
281
+ target: GridHandle;
282
+ /**
283
+ * A native DOM event.
284
+ */
285
+ event: any;
286
+ /**
287
+ * A previous column index.
288
+ */
289
+ prev: number;
290
+ /**
291
+ * A next column index.
292
+ */
293
+ next: number;
294
+ /**
295
+ * The current column collection.
296
+ */
297
+ columns: GridColumnProps[];
298
+ }
299
+ /**
300
+ * Represents the object of the `onColumnsStateChange` Grid event.
301
+ */
302
+ export interface GridColumnsStateChangeEvent {
303
+ /**
304
+ * An event target.
305
+ */
306
+ target: GridHandle;
307
+ /**
308
+ * The columns state collection.
309
+ */
310
+ columnsState: GridColumnState[];
311
+ }
package/key.d.ts ADDED
@@ -0,0 +1,8 @@
1
+ /**
2
+ * @license
3
+ *-------------------------------------------------------------------------------------------
4
+ * Copyright © 2026 Progress Software Corporation. All rights reserved.
5
+ * Licensed under commercial license. See LICENSE.md in the package root for more information
6
+ *-------------------------------------------------------------------------------------------
7
+ */
8
+ export declare const KendoKey: unique symbol;