@progress/kendo-vue-data-tools 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 (102) hide show
  1. package/cells/FilterCell.d.ts +64 -0
  2. package/columnmenu/ColumnMenu.d.ts +67 -0
  3. package/columnmenu/ColumnMenuCheckboxFilter.d.ts +112 -0
  4. package/columnmenu/ColumnMenuContent.d.ts +61 -0
  5. package/columnmenu/ColumnMenuFilter.d.ts +122 -0
  6. package/columnmenu/ColumnMenuFilterCell.d.ts +65 -0
  7. package/columnmenu/ColumnMenuFilterOperators.d.ts +49 -0
  8. package/columnmenu/ColumnMenuFilterUI.d.ts +59 -0
  9. package/columnmenu/ColumnMenuItem.d.ts +68 -0
  10. package/columnmenu/ColumnMenuItemContent.d.ts +26 -0
  11. package/columnmenu/ColumnMenuItemGroup.d.ts +12 -0
  12. package/columnmenu/ColumnMenuOperators.d.ts +72 -0
  13. package/columnmenu/ColumnMenuSort.d.ts +46 -0
  14. package/columnmenu/index.d.ts +9 -0
  15. package/columnmenu/main.d.ts +9 -0
  16. package/detail-expansion/TableExpandableSettings.d.ts +12 -0
  17. package/detail-expansion/expandReducer.d.ts +31 -0
  18. package/detail-expansion/utils.d.ts +10 -0
  19. package/dist/cdn/js/kendo-vue-datatools.js +1 -1
  20. package/drag/ColumnDraggable.d.ts +34 -0
  21. package/drag/ColumnResize.d.ts +38 -0
  22. package/drag/ColumnResizer.d.ts +27 -0
  23. package/drag/CommonDragLogic.d.ts +43 -0
  24. package/drag/DragClue.d.ts +18 -0
  25. package/drag/DropClue.d.ts +17 -0
  26. package/editing/TableEditableSettings.d.ts +24 -0
  27. package/editing/editReducer.d.ts +62 -0
  28. package/editing/utils.d.ts +12 -0
  29. package/filter/Expression.d.ts +70 -0
  30. package/filter/FieldSettings.d.ts +29 -0
  31. package/filter/Filter.d.ts +102 -0
  32. package/filter/GroupFilters.d.ts +77 -0
  33. package/filter/GroupToolbar.d.ts +90 -0
  34. package/filter/filters/BooleanFilter.d.ts +75 -0
  35. package/filter/filters/DateFilter.d.ts +37 -0
  36. package/filter/filters/EnumFilter.d.ts +60 -0
  37. package/filter/filters/NumericFilter.d.ts +37 -0
  38. package/filter/filters/TextFilter.d.ts +54 -0
  39. package/filter/filters/main.d.ts +12 -0
  40. package/filter/main.d.ts +13 -0
  41. package/filter/operators.d.ts +80 -0
  42. package/filterCommon.d.ts +82 -0
  43. package/group-expansion/TableGroupExpandableSettings.d.ts +12 -0
  44. package/group-expansion/groupExpandReducer.d.ts +46 -0
  45. package/header/FilterRow.d.ts +55 -0
  46. package/header/Header.d.ts +70 -0
  47. package/header/HeaderCell.d.ts +34 -0
  48. package/header/HeaderRow.d.ts +125 -0
  49. package/header/HeaderSelectionCell.d.ts +34 -0
  50. package/header/HeaderTdElement.d.ts +49 -0
  51. package/header/HeaderThElement.d.ts +67 -0
  52. package/header/main.d.ts +18 -0
  53. package/header/utils/main.d.ts +90 -0
  54. package/index.d.mts +46 -2822
  55. package/index.d.ts +46 -2822
  56. package/index.js +1 -1
  57. package/index.mjs +38 -38
  58. package/interfaces/CellProps.d.ts +70 -0
  59. package/interfaces/ColumnMenuColumnProps.d.ts +20 -0
  60. package/interfaces/ColumnMenuExtendedFilterProps.d.ts +49 -0
  61. package/interfaces/ColumnMenuFilterBaseProps.d.ts +56 -0
  62. package/interfaces/ColumnMenuFilterProps.d.ts +34 -0
  63. package/interfaces/ColumnMenuFilterUIProps.d.ts +62 -0
  64. package/interfaces/ColumnMenuProps.d.ts +30 -0
  65. package/interfaces/ColumnMenuSortBaseProps.d.ts +35 -0
  66. package/interfaces/ColumnProps.d.ts +155 -0
  67. package/interfaces/FilterCellProps.d.ts +90 -0
  68. package/interfaces/FilterOperator.d.ts +20 -0
  69. package/interfaces/FilterOperators.d.ts +56 -0
  70. package/interfaces/HeaderCellProps.d.ts +48 -0
  71. package/interfaces/HeaderSelectionCellProps.d.ts +24 -0
  72. package/interfaces/SortSettings.d.ts +33 -0
  73. package/messages/main.d.ts +434 -0
  74. package/navigation/TableKeyboardNavigation.d.ts +78 -0
  75. package/navigation/TableKeyboardNavigationContextType.d.ts +14 -0
  76. package/navigation/TableKeyboardNavigationStateType.d.ts +17 -0
  77. package/navigation/constants.d.ts +61 -0
  78. package/navigation/utils.d.ts +168 -0
  79. package/package-metadata.d.ts +12 -0
  80. package/package-metadata.js +1 -1
  81. package/package-metadata.mjs +2 -2
  82. package/package.json +18 -12
  83. package/pager/GridPagerSettings.d.ts +69 -0
  84. package/pager/Page.d.ts +20 -0
  85. package/pager/Pager.d.ts +135 -0
  86. package/pager/PagerInfo.d.ts +53 -0
  87. package/pager/PagerInput.d.ts +62 -0
  88. package/pager/PagerNavigationButton.d.ts +62 -0
  89. package/pager/PagerNumericButtons.d.ts +64 -0
  90. package/pager/PagerPageSizes.d.ts +72 -0
  91. package/pager/models/main.d.ts +94 -0
  92. package/selection/TableSelectableSettings.d.ts +38 -0
  93. package/selection/constants.d.ts +13 -0
  94. package/selection/events.d.ts +108 -0
  95. package/selection/utils.d.ts +73 -0
  96. package/selection/utils.mjs +7 -7
  97. package/utils/SearchField.d.ts +24 -0
  98. package/utils/data-operations.d.ts +32 -0
  99. package/utils/group-operations.d.ts +36 -0
  100. package/utils/main.d.ts +11 -0
  101. package/virtualization/columns.d.ts +22 -0
  102. package/virtualization/main.d.ts +8 -0
@@ -0,0 +1,434 @@
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
+ * @hidden
10
+ */
11
+ export declare const columnMenu = "grid.columnMenu";
12
+ /**
13
+ * @hidden
14
+ */
15
+ export declare const pagerInfo = "pager.info";
16
+ /**
17
+ * @hidden
18
+ */
19
+ export declare const pagerFirstPage = "pager.firstPage";
20
+ /**
21
+ * @hidden
22
+ */
23
+ export declare const pagerPreviousPage = "pager.previousPage";
24
+ /**
25
+ * @hidden
26
+ */
27
+ export declare const pagerNextPage = "pager.nextPage";
28
+ /**
29
+ * @hidden
30
+ */
31
+ export declare const pagerLastPage = "pager.lastPage";
32
+ /**
33
+ * @hidden
34
+ */
35
+ export declare const pagerItemPerPage = "pager.itemsPerPage";
36
+ /**
37
+ * @hidden
38
+ */
39
+ export declare const pagerPageInputAriaLabel = "pager.pageInputAriaLabel";
40
+ /**
41
+ * @hidden
42
+ */
43
+ export declare const pagerSmallPageSelectorAriaLabel = "pager.smallPageSelectorAriaLabel";
44
+ /**
45
+ * @hidden
46
+ */
47
+ export declare const pagerPageSelection = "pager.pageSelection";
48
+ /**
49
+ * @hidden
50
+ */
51
+ export declare const pagerPage = "pager.page";
52
+ /**
53
+ * @hidden
54
+ */
55
+ export declare const pagerOf = "pager.of";
56
+ /**
57
+ * @hidden
58
+ */
59
+ export declare const pagerTotalPages = "pager.totalPages";
60
+ /**
61
+ * @hidden
62
+ */
63
+ export declare const filterEqOperator = "filter.eqOperator";
64
+ /**
65
+ * @hidden
66
+ */
67
+ export declare const filterGroupFilterAriaLabel = "filter.groupFilterAriaLabel";
68
+ /**
69
+ * @hidden
70
+ */
71
+ export declare const filterNotEqOperator = "filter.notEqOperator";
72
+ /**
73
+ * @hidden
74
+ */
75
+ export declare const filterIsNullOperator = "filter.isNullOperator";
76
+ /**
77
+ * @hidden
78
+ */
79
+ export declare const filterIsNotNullOperator = "filter.isNotNullOperator";
80
+ /**
81
+ * @hidden
82
+ */
83
+ export declare const filterIsEmptyOperator = "filter.isEmptyOperator";
84
+ /**
85
+ * @hidden
86
+ */
87
+ export declare const filterIsNotEmptyOperator = "filter.isNotEmptyOperator";
88
+ /**
89
+ * @hidden
90
+ */
91
+ export declare const filterStartsWithOperator = "filter.startsWithOperator";
92
+ /**
93
+ * @hidden
94
+ */
95
+ export declare const filterContainsOperator = "filter.containsOperator";
96
+ /**
97
+ * @hidden
98
+ */
99
+ export declare const filterNotContainsOperator = "filter.notContainsOperator";
100
+ /**
101
+ * @hidden
102
+ */
103
+ export declare const filterEndsWithOperator = "filter.endsWithOperator";
104
+ /**
105
+ * @hidden
106
+ */
107
+ export declare const filterGteOperator = "filter.gteOperator";
108
+ /**
109
+ * @hidden
110
+ */
111
+ export declare const filterGtOperator = "filter.gtOperator";
112
+ /**
113
+ * @hidden
114
+ */
115
+ export declare const filterLteOperator = "filter.lteOperator";
116
+ /**
117
+ * @hidden
118
+ */
119
+ export declare const filterLtOperator = "filter.ltOperator";
120
+ /**
121
+ * @hidden
122
+ */
123
+ export declare const filterIsTrue = "filter.isTrue";
124
+ /**
125
+ * @hidden
126
+ */
127
+ export declare const filterIsFalse = "filter.isFalse";
128
+ /**
129
+ * @hidden
130
+ */
131
+ export declare const filterAfterOrEqualOperator = "filter.afterOrEqualOperator";
132
+ /**
133
+ * @hidden
134
+ */
135
+ export declare const filterAfterOperator = "filter.afterOperator";
136
+ /**
137
+ * @hidden
138
+ */
139
+ export declare const filterBeforeOperator = "filter.beforeOperator";
140
+ /**
141
+ * @hidden
142
+ */
143
+ export declare const filterBeforeOrEqualOperator = "filter.beforeOrEqualOperator";
144
+ /**
145
+ * @hidden
146
+ */
147
+ export declare const filterAndLogic = "filter.andLogic";
148
+ /**
149
+ * @hidden
150
+ */
151
+ export declare const filterOrLogic = "filter.orLogic";
152
+ /**
153
+ * @hidden
154
+ */
155
+ export declare const filterAddExpression = "filter.addExpression";
156
+ /**
157
+ * @hidden
158
+ */
159
+ export declare const filterAddGroup = "filter.addGroup";
160
+ /**
161
+ * @hidden
162
+ */
163
+ export declare const filterClose = "filter.close";
164
+ /**
165
+ * @hidden
166
+ */
167
+ export declare const columnMenuFilterChooseOperator = "columnMenu.filterChooseOperator";
168
+ /**
169
+ * @hidden
170
+ */
171
+ export declare const columnMenuFilterClearButton = "columnMenu.filterClearButton";
172
+ /**
173
+ * @hidden
174
+ */
175
+ export declare const columnMenuFilterSubmitButton = "columnMenu.filterSubmitButton";
176
+ /**
177
+ * @hidden
178
+ */
179
+ export declare const columnMenuFilterTitle = "columnMenu.filterTitle";
180
+ /**
181
+ * @hidden
182
+ */
183
+ export declare const columnMenuSortAscending = "columnMenu.sortAscending";
184
+ /**
185
+ * @hidden
186
+ */
187
+ export declare const columnMenuSortDescending = "columnMenu.sortDescending";
188
+ /**
189
+ * @hidden
190
+ */
191
+ export declare const columnMenuFilterEqOperator = "columnMenu.filterEqOperator";
192
+ /**
193
+ * @hidden
194
+ */
195
+ export declare const columnMenuFilterNotEqOperator = "columnMenu.filterNotEqOperator";
196
+ /**
197
+ * @hidden
198
+ */
199
+ export declare const columnMenuFilterIsNullOperator = "columnMenu.filterIsNullOperator";
200
+ /**
201
+ * @hidden
202
+ */
203
+ export declare const columnMenuFilterIsNotNullOperator = "columnMenu.filterIsNotNullOperator";
204
+ /**
205
+ * @hidden
206
+ */
207
+ export declare const columnMenuFilterIsEmptyOperator = "columnMenu.filterIsEmptyOperator";
208
+ /**
209
+ * @hidden
210
+ */
211
+ export declare const columnMenuFilterIsNotEmptyOperator = "columnMenu.filterIsNotEmptyOperator";
212
+ /**
213
+ * @hidden
214
+ */
215
+ export declare const columnMenuFilterStartsWithOperator = "columnMenu.filterStartsWithOperator";
216
+ /**
217
+ * @hidden
218
+ */
219
+ export declare const columnMenuFilterContainsOperator = "columnMenu.filterContainsOperator";
220
+ /**
221
+ * @hidden
222
+ */
223
+ export declare const columnMenuFilterNotContainsOperator = "columnMenu.filterNotContainsOperator";
224
+ /**
225
+ * @hidden
226
+ */
227
+ export declare const columnMenuFilterEndsWithOperator = "columnMenu.filterEndsWithOperator";
228
+ /**
229
+ * @hidden
230
+ */
231
+ export declare const columnMenuFilterGteOperator = "columnMenu.filterGteOperator";
232
+ /**
233
+ * @hidden
234
+ */
235
+ export declare const columnMenuFilterGtOperator = "columnMenu.filterGtOperator";
236
+ /**
237
+ * @hidden
238
+ */
239
+ export declare const columnMenuFilterLteOperator = "columnMenu.filterLteOperator";
240
+ /**
241
+ * @hidden
242
+ */
243
+ export declare const columnMenuFilterLtOperator = "columnMenu.filterLtOperator";
244
+ /**
245
+ * @hidden
246
+ */
247
+ export declare const columnMenuFilterIsTrue = "columnMenu.filterIsTrue";
248
+ /**
249
+ * @hidden
250
+ */
251
+ export declare const columnMenuFilterAfterOrEqualOperator = "columnMenu.filterAfterOrEqualOperator";
252
+ /**
253
+ * @hidden
254
+ */
255
+ export declare const columnMenuFilterAfterOperator = "columnMenu.filterAfterOperator";
256
+ /**
257
+ * @hidden
258
+ */
259
+ export declare const columnMenuFilterBeforeOperator = "columnMenu.filterBeforeOperator";
260
+ /**
261
+ * @hidden
262
+ */
263
+ export declare const columnMenuFilterBeforeOrEqualOperator = "columnMenu.filterBeforeOrEqualOperator";
264
+ /**
265
+ * @hidden
266
+ */
267
+ export declare const columnMenuFilterAndLogic = "columnMenu.filterAndLogic";
268
+ /**
269
+ * @hidden
270
+ */
271
+ export declare const columnMenuFilterOrLogic = "columnMenu.filterOrLogic";
272
+ /**
273
+ * @hidden
274
+ */
275
+ export declare const searchPlaceholder = "grid.searchPlaceholder";
276
+ /**
277
+ * @hidden
278
+ */
279
+ export declare const selectAllRows = "grid.selectAllRows";
280
+ /**
281
+ * @hidden
282
+ */
283
+ export declare const filterCheckAll = "grid.filterCheckAll";
284
+ /**
285
+ * @hidden
286
+ */
287
+ export declare const sortAriaLabel = "sort.ariaLabel";
288
+ /**
289
+ * @hidden
290
+ */
291
+ export declare const filterAriaLabel = "filter.ariaLabel";
292
+ /**
293
+ * @hidden
294
+ */
295
+ export declare const filterGroupAriaLabel = "filter.groupAriaLabel";
296
+ /**
297
+ * @hidden
298
+ */
299
+ export declare const filterExpressionAriaLabel = "filter.expressionAriaLabel";
300
+ /**
301
+ * @hidden
302
+ */
303
+ export declare const filterExpressionDropdownAriaLabel = "filter.expressionDropdownAriaLabel";
304
+ /**
305
+ * @hidden
306
+ */
307
+ export declare const filterExpressionOperatorDropdownAriaLabel = "filter.expressionOperatorDropdownAriaLabel";
308
+ /**
309
+ * @hidden
310
+ */
311
+ export declare const filterEnumFilterDropdownAriaLabel = "filter.enumFilterDropdownAriaLabel";
312
+ /**
313
+ * @hidden
314
+ */
315
+ export declare const filterNumericFilterAriaLabel = "filter.numericFilterAriaLabel";
316
+ /**
317
+ * @hidden
318
+ */
319
+ export declare const filterTextFilterAriaLabel = "filter.textFilterAriaLabel";
320
+ /**
321
+ * @hidden
322
+ */
323
+ export declare const filterDateFilterAriaLabel = "filter.dateFilterAriaLabel";
324
+ /**
325
+ * @hidden
326
+ */
327
+ export declare const filterDropDownOperatorAriaLabel = "filter.dropdownOperatorAriaLabel";
328
+ /**
329
+ * @hidden
330
+ */
331
+ export declare const messages: {
332
+ "filter.groupFilterAriaLabel": string;
333
+ "pager.smallPageSelectorAriaLabel": string;
334
+ "pager.pageInputAriaLabel": string;
335
+ "pager.itemsPerPage": string;
336
+ "pager.pageSelection": string;
337
+ "pager.info": string;
338
+ "pager.firstPage": string;
339
+ "pager.previousPage": string;
340
+ "pager.nextPage": string;
341
+ "pager.lastPage": string;
342
+ "pager.page": string;
343
+ "pager.of": string;
344
+ "pager.totalPages": string;
345
+ "grid.searchPlaceholder": string;
346
+ "grid.selectAllRows": string;
347
+ "grid.filterCheckAll": string;
348
+ "sort.ariaLabel": string;
349
+ "filter.ariaLabel": string;
350
+ "filter.eqOperator": string;
351
+ "filter.notEqOperator": string;
352
+ "filter.isNullOperator": string;
353
+ "filter.isNotNullOperator": string;
354
+ "filter.isEmptyOperator": string;
355
+ "filter.isNotEmptyOperator": string;
356
+ "filter.startsWithOperator": string;
357
+ "filter.containsOperator": string;
358
+ "filter.notContainsOperator": string;
359
+ "filter.endsWithOperator": string;
360
+ "filter.gteOperator": string;
361
+ "filter.gtOperator": string;
362
+ "filter.lteOperator": string;
363
+ "filter.ltOperator": string;
364
+ "filter.isTrue": string;
365
+ "filter.isFalse": string;
366
+ "filter.afterOrEqualOperator": string;
367
+ "filter.afterOperator": string;
368
+ "filter.beforeOperator": string;
369
+ "filter.beforeOrEqualOperator": string;
370
+ "filter.andLogic": string;
371
+ "filter.orLogic": string;
372
+ "filter.addExpression": string;
373
+ "filter.addGroup": string;
374
+ "filter.close": string;
375
+ "filter.groupAriaLabel": string;
376
+ "filter.expressionAriaLabel": string;
377
+ "filter.expressionDropdownAriaLabel": string;
378
+ "filter.expressionOperatorDropdownAriaLabel": string;
379
+ "filter.enumFilterDropdownAriaLabel": string;
380
+ "filter.numericFilterAriaLabel": string;
381
+ "filter.textFilterAriaLabel": string;
382
+ "filter.dateFilterAriaLabel": string;
383
+ "filter.dropdownOperatorAriaLabel": string;
384
+ "columnMenu.filterChooseOperator": string;
385
+ "columnMenu.filterClearButton": string;
386
+ "columnMenu.filterSubmitButton": string;
387
+ "columnMenu.filterTitle": string;
388
+ "columnMenu.sortAscending": string;
389
+ "columnMenu.sortDescending": string;
390
+ "columnMenu.filterEqOperator": string;
391
+ "columnMenu.filterNotEqOperator": string;
392
+ "columnMenu.filterIsNullOperator": string;
393
+ "columnMenu.filterIsNotNullOperator": string;
394
+ "columnMenu.filterIsEmptyOperator": string;
395
+ "columnMenu.filterIsNotEmptyOperator": string;
396
+ "columnMenu.filterStartsWithOperator": string;
397
+ "columnMenu.filterContainsOperator": string;
398
+ "columnMenu.filterNotContainsOperator": string;
399
+ "columnMenu.filterEndsWithOperator": string;
400
+ "columnMenu.filterGteOperator": string;
401
+ "columnMenu.filterGtOperator": string;
402
+ "columnMenu.filterLteOperator": string;
403
+ "columnMenu.filterLtOperator": string;
404
+ "columnMenu.filterIsTrue": string;
405
+ "columnMenu.filterAfterOrEqualOperator": string;
406
+ "columnMenu.filterAfterOperator": string;
407
+ "columnMenu.filterBeforeOperator": string;
408
+ "columnMenu.filterBeforeOrEqualOperator": string;
409
+ "columnMenu.filterAndLogic": string;
410
+ "columnMenu.filterOrLogic": string;
411
+ 'grid.filterEqOperator': string;
412
+ 'grid.filterNotEqOperator': string;
413
+ 'grid.filterIsNullOperator': string;
414
+ 'grid.filterIsNotNullOperator': string;
415
+ 'grid.filterIsEmptyOperator': string;
416
+ 'grid.filterIsNotEmptyOperator': string;
417
+ 'grid.filterStartsWithOperator': string;
418
+ 'grid.filterContainsOperator': string;
419
+ 'grid.filterNotContainsOperator': string;
420
+ 'grid.filterEndsWithOperator': string;
421
+ 'grid.filterGteOperator': string;
422
+ 'grid.filterGtOperator': string;
423
+ 'grid.filterLteOperator': string;
424
+ 'grid.filterLtOperator': string;
425
+ 'grid.filterIsTrue': string;
426
+ 'grid.filterIsFalse': string;
427
+ 'grid.filterBooleanAll': string;
428
+ 'grid.filterAfterOrEqualOperator': string;
429
+ 'grid.filterAfterOperator': string;
430
+ 'grid.filterBeforeOperator': string;
431
+ 'grid.filterBeforeOrEqualOperator': string;
432
+ 'grid.filterAndLogic': string;
433
+ 'grid.filterOrLogic': string;
434
+ };
@@ -0,0 +1,78 @@
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 { TableKeyboardNavigationContextType } from './TableKeyboardNavigationContextType';
9
+ import { TableKeyboardNavigationStateType } from './TableKeyboardNavigationStateType';
10
+ /**
11
+ * @hidden
12
+ */
13
+ declare const TableKeyboardNavigationProvider: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
14
+ navigatable: {
15
+ type: BooleanConstructor;
16
+ default: boolean;
17
+ };
18
+ id: StringConstructor;
19
+ }>, {}, {
20
+ scope: any;
21
+ kbContext: any;
22
+ navigation: any;
23
+ }, {}, {
24
+ getKeyboardNavigationAttributes(elementId: string): {
25
+ tabIndex?: undefined;
26
+ "data-keyboardnavlevel"?: undefined;
27
+ "data-keyboardnavid"?: undefined;
28
+ } | {
29
+ tabIndex: number;
30
+ "data-keyboardnavlevel": any;
31
+ "data-keyboardnavid": string;
32
+ };
33
+ onComponentDidMount(options: {
34
+ scope?: HTMLElement;
35
+ }): void;
36
+ onGetSnapshotBeforeUpdate(options: {
37
+ document: Document;
38
+ kbContext: TableKeyboardNavigationContextType;
39
+ navigation: TableKeyboardNavigationStateType;
40
+ }): void;
41
+ onComponentDidUpdate(options: {
42
+ scope?: HTMLElement;
43
+ kbContext: TableKeyboardNavigationContextType;
44
+ navigation: TableKeyboardNavigationStateType;
45
+ }): void;
46
+ onFocus(event: any): void;
47
+ onKeyDown(event: any, options: {
48
+ kbContext: TableKeyboardNavigationContextType;
49
+ navigation: TableKeyboardNavigationStateType;
50
+ onNavigationAction?: (options: {
51
+ event: any;
52
+ focusElement: any;
53
+ }) => void;
54
+ }): void;
55
+ generateMatrix(options: {
56
+ scope?: HTMLElement;
57
+ navigation: TableKeyboardNavigationStateType;
58
+ }): void;
59
+ }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
60
+ navigatable: {
61
+ type: BooleanConstructor;
62
+ default: boolean;
63
+ };
64
+ id: StringConstructor;
65
+ }>> & Readonly<{}>, {
66
+ navigatable: boolean;
67
+ }, {}, {}, {}, string, () => {
68
+ getKeyboardNavigationAttributes: any;
69
+ onNavMount: any;
70
+ onGetSnapshotBeforeUpdate: any;
71
+ onComponentDidUpdate: any;
72
+ onNavFocus: any;
73
+ onNavKeyDown: any;
74
+ generateMatrix: any;
75
+ kbContext: any;
76
+ navigation: any;
77
+ }, true, {}, any>;
78
+ export { TableKeyboardNavigationProvider };
@@ -0,0 +1,14 @@
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
+ * @hidden
10
+ */
11
+ export interface TableKeyboardNavigationContextType {
12
+ activeId: string | undefined;
13
+ level: number;
14
+ }
@@ -0,0 +1,17 @@
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
+ * @hidden
10
+ */
11
+ export interface TableKeyboardNavigationStateType {
12
+ activeElementIsFocused: boolean;
13
+ prevNavigationIndexes?: [number, number];
14
+ idPrefix: string;
15
+ navigationMatrix: string[][];
16
+ lastHeaderIndex: number;
17
+ }
@@ -0,0 +1,61 @@
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
+ * @hidden
10
+ */
11
+ export declare const KEYBOARD_NAV_DATA_LEVEL = "data-keyboardnavlevel";
12
+ /**
13
+ * @hidden
14
+ */
15
+ export declare const KEYBOARD_NAV_DATA_SCOPE = "data-keyboardnavscope";
16
+ /**
17
+ * @hidden
18
+ */
19
+ export declare const KEYBOARD_NAV_DATA_HEADER = "data-keyboardnavheader";
20
+ /**
21
+ * @hidden
22
+ */
23
+ export declare const KEYBOARD_NAV_DATA_BODY = "data-keyboardnavbody";
24
+ /**
25
+ * @hidden
26
+ */
27
+ export declare const KEYBOARD_NAV_DATA_ID = "data-keyboardnavid";
28
+ /**
29
+ * @hidden
30
+ */
31
+ export declare const KEYBOARD_NAV_DATA_ZONE = "data-keyboardnavzone";
32
+ /**
33
+ * @hidden
34
+ */
35
+ export declare const KEYBOARD_NAV_FILTER_COL_SUFFIX = "_filter";
36
+ /**
37
+ * @hidden
38
+ */
39
+ export declare const FOCUSABLE_ELEMENTS: string[];
40
+ /**
41
+ * @hidden
42
+ */
43
+ export declare const TABBABLE_ELEMENTS: string[];
44
+ /**
45
+ * @hidden
46
+ */
47
+ export declare const tableKeyboardNavigationScopeAttributes: {
48
+ "data-keyboardnavscope": boolean;
49
+ };
50
+ /**
51
+ * @hidden
52
+ */
53
+ export declare const tableKeyboardNavigationHeaderAttributes: {
54
+ "data-keyboardnavheader": boolean;
55
+ };
56
+ /**
57
+ * @hidden
58
+ */
59
+ export declare const tableKeyboardNavigationBodyAttributes: {
60
+ "data-keyboardnavbody": boolean;
61
+ };