@progress/kendo-react-data-tools 13.3.0-develop.9 → 13.4.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/clipboard/clipboard.service.d.ts +20 -0
- package/clipboard/common.d.ts +188 -0
- package/columnmenu/ColumnMenu.d.ts +90 -0
- package/columnmenu/ColumnMenuFilterForm.d.ts +25 -0
- package/columnmenu/ColumnMenuFilterLogic.d.ts +10 -0
- package/columnmenu/ColumnMenuFilterLogic.mjs +4 -4
- package/columnmenu/ColumnMenuFilters.d.ts +31 -0
- package/columnmenu/ColumnMenuItem.d.ts +39 -0
- package/columnmenu/ColumnMenuOperators.d.ts +72 -0
- package/columnmenu/index.d.ts +13 -0
- package/data-source/use-data-source.d.ts +224 -0
- package/data-source/use-odata-data-source.d.ts +41 -0
- package/data-source/use-remote-data-source.d.ts +411 -0
- package/detail-expansion/TableExpandableSettings.d.ts +12 -0
- package/detail-expansion/expandReducer.d.ts +31 -0
- package/detail-expansion/utils.d.ts +10 -0
- package/dist/cdn/js/kendo-react-datatools.js +1 -1
- package/drag/ColumnDraggable.d.ts +37 -0
- package/drag/ColumnResize.d.ts +39 -0
- package/drag/ColumnResizer.d.ts +35 -0
- package/drag/CommonDragLogic.d.ts +45 -0
- package/drag/DragClue.d.ts +29 -0
- package/drag/DropClue.d.ts +26 -0
- package/editing/TableEditableSettings.d.ts +24 -0
- package/editing/editReducer.d.ts +62 -0
- package/editing/utils.d.ts +12 -0
- package/filter/Expression.d.ts +53 -0
- package/filter/Expression.js +1 -1
- package/filter/Expression.mjs +10 -11
- package/filter/FieldSettings.d.ts +37 -0
- package/filter/Filter.d.ts +139 -0
- package/filter/Group.d.ts +64 -0
- package/filter/Group.js +1 -1
- package/filter/Group.mjs +7 -7
- package/filter/filters/BooleanFilter.d.ts +50 -0
- package/filter/filters/DateFilter.d.ts +33 -0
- package/filter/filters/EnumFilter.d.ts +50 -0
- package/filter/filters/NumericFilter.d.ts +40 -0
- package/filter/filters/TextFilter.d.ts +47 -0
- package/filter/filters/index.d.ts +12 -0
- package/filter/index.d.ts +13 -0
- package/filter/operators.d.ts +80 -0
- package/filteringCells/BooleanFilter.d.ts +15 -0
- package/filteringCells/DateFilter.d.ts +15 -0
- package/filteringCells/FilterCellProps.d.ts +42 -0
- package/filteringCells/FilterComponent.d.ts +24 -0
- package/filteringCells/FilterComponentProps.d.ts +30 -0
- package/filteringCells/FilterOperator.d.ts +20 -0
- package/filteringCells/NumericFilter.d.ts +15 -0
- package/filteringCells/TextFilter.d.ts +15 -0
- package/filteringCells/index.d.ts +15 -0
- package/group-expansion/TableGroupExpandableSettings.d.ts +12 -0
- package/group-expansion/groupExpandReducer.d.ts +46 -0
- package/header/CellProps.d.ts +83 -0
- package/header/ColumnProps.d.ts +167 -0
- package/header/FilterRow.d.ts +32 -0
- package/header/Header.d.ts +26 -0
- package/header/HeaderCell.d.ts +54 -0
- package/header/HeaderRow.d.ts +44 -0
- package/header/HeaderSelectionCell.d.ts +19 -0
- package/header/HeaderTdElement.d.ts +42 -0
- package/header/HeaderThElement.d.ts +42 -0
- package/header/SortSettings.d.ts +33 -0
- package/header/index.d.ts +18 -0
- package/header/utils/index.d.ts +90 -0
- package/index.d.mts +43 -3741
- package/index.d.ts +43 -3741
- package/messages/index.d.ts +397 -0
- package/navigation/NavigatableSettings.d.ts +25 -0
- package/navigation/TableKeyboardNavigation.d.ts +95 -0
- package/navigation/TableKeyboardNavigation.mjs +13 -13
- package/navigation/TableKeyboardNavigationContext.d.ts +13 -0
- package/navigation/TableKeyboardNavigationContextType.d.ts +14 -0
- package/navigation/TableKeyboardNavigationStateType.d.ts +17 -0
- package/navigation/constants.d.ts +61 -0
- package/navigation/hooks.d.ts +19 -0
- package/navigation/hooks.mjs +3 -3
- package/navigation/stackedKeyboardNavigation.d.ts +217 -0
- package/navigation/utils.d.ts +329 -0
- package/navigation/utils.mjs +5 -5
- package/package-metadata.d.ts +12 -0
- package/package-metadata.js +1 -1
- package/package-metadata.mjs +10 -16
- package/package.json +10 -10
- package/pager/Pager.d.ts +10 -0
- package/pager/Pager.js +1 -1
- package/pager/Pager.mjs +64 -66
- package/pager/PagerInput.d.ts +29 -0
- package/pager/PagerNumericButtons.d.ts +28 -0
- package/pager/PagerNumericButtons.js +1 -1
- package/pager/PagerNumericButtons.mjs +15 -17
- package/pager/PagerPageSizes.d.ts +36 -0
- package/pager/models/index.d.ts +178 -0
- package/pager/utils.d.ts +66 -0
- package/selection/TableSelectableSettings.d.ts +38 -0
- package/selection/TableSelection.d.ts +25 -0
- package/selection/constants.d.ts +13 -0
- package/selection/events.d.ts +101 -0
- package/selection/utils.d.ts +70 -0
- package/utils/DataItemWrapper.d.ts +17 -0
- package/utils/SearchField.d.ts +24 -0
- package/utils/data-operations.d.ts +107 -0
- package/utils/group-operations.d.ts +36 -0
- package/virtualization/columns.d.ts +24 -0
- package/virtualization/index.d.ts +8 -0
|
@@ -0,0 +1,397 @@
|
|
|
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 pagerInfo = "pager.info";
|
|
12
|
+
/**
|
|
13
|
+
* @hidden
|
|
14
|
+
*/
|
|
15
|
+
export declare const pagerFirstPage = "pager.firstPage";
|
|
16
|
+
/**
|
|
17
|
+
* @hidden
|
|
18
|
+
*/
|
|
19
|
+
export declare const pagerPreviousPage = "pager.previousPage";
|
|
20
|
+
/**
|
|
21
|
+
* @hidden
|
|
22
|
+
*/
|
|
23
|
+
export declare const pagerNextPage = "pager.nextPage";
|
|
24
|
+
/**
|
|
25
|
+
* @hidden
|
|
26
|
+
*/
|
|
27
|
+
export declare const pagerLastPage = "pager.lastPage";
|
|
28
|
+
/**
|
|
29
|
+
* @hidden
|
|
30
|
+
*/
|
|
31
|
+
export declare const pagerItemPerPage = "pager.itemsPerPage";
|
|
32
|
+
/**
|
|
33
|
+
* @hidden
|
|
34
|
+
*/
|
|
35
|
+
export declare const pagerPageSelection = "pager.pageSelection";
|
|
36
|
+
/**
|
|
37
|
+
* @hidden
|
|
38
|
+
*/
|
|
39
|
+
export declare const pagerPage = "pager.page";
|
|
40
|
+
/**
|
|
41
|
+
* @hidden
|
|
42
|
+
*/
|
|
43
|
+
export declare const pagerOf = "pager.of";
|
|
44
|
+
/**
|
|
45
|
+
* @hidden
|
|
46
|
+
*/
|
|
47
|
+
export declare const pagerTotalPages = "pager.totalPages";
|
|
48
|
+
/**
|
|
49
|
+
* @hidden
|
|
50
|
+
*/
|
|
51
|
+
export declare const pagerPageNumberLabel = "pager.pageNumberLabel";
|
|
52
|
+
/**
|
|
53
|
+
* @hidden
|
|
54
|
+
*/
|
|
55
|
+
export declare const pagerPageLabel = "pager.pageLabel";
|
|
56
|
+
/**
|
|
57
|
+
* @hidden
|
|
58
|
+
*/
|
|
59
|
+
export declare const pagerAriaKeyshortcuts = "pager.ariaKeyshortcuts";
|
|
60
|
+
/**
|
|
61
|
+
* @hidden
|
|
62
|
+
*/
|
|
63
|
+
export declare const pagerAriaLabel = "pager.ariaLabel";
|
|
64
|
+
/**
|
|
65
|
+
* @hidden
|
|
66
|
+
*/
|
|
67
|
+
export declare const pagerPageSizeAriaLabel = "pager.pageSizeAriaLabel";
|
|
68
|
+
/**
|
|
69
|
+
* @hidden
|
|
70
|
+
*/
|
|
71
|
+
export declare const pagerMobileSelect = "pager.mobileSelect";
|
|
72
|
+
/**
|
|
73
|
+
* @hidden
|
|
74
|
+
*/
|
|
75
|
+
export declare const pagerMoreButtonLabel = "pager.moreButtonLabel";
|
|
76
|
+
/**
|
|
77
|
+
* @hidden
|
|
78
|
+
*/
|
|
79
|
+
export declare const filterEqOperator = "filter.eqOperator";
|
|
80
|
+
/**
|
|
81
|
+
* @hidden
|
|
82
|
+
*/
|
|
83
|
+
export declare const filterNotEqOperator = "filter.notEqOperator";
|
|
84
|
+
/**
|
|
85
|
+
* @hidden
|
|
86
|
+
*/
|
|
87
|
+
export declare const filterIsNullOperator = "filter.isNullOperator";
|
|
88
|
+
/**
|
|
89
|
+
* @hidden
|
|
90
|
+
*/
|
|
91
|
+
export declare const filterIsNotNullOperator = "filter.isNotNullOperator";
|
|
92
|
+
/**
|
|
93
|
+
* @hidden
|
|
94
|
+
*/
|
|
95
|
+
export declare const filterIsEmptyOperator = "filter.isEmptyOperator";
|
|
96
|
+
/**
|
|
97
|
+
* @hidden
|
|
98
|
+
*/
|
|
99
|
+
export declare const filterIsNotEmptyOperator = "filter.isNotEmptyOperator";
|
|
100
|
+
/**
|
|
101
|
+
* @hidden
|
|
102
|
+
*/
|
|
103
|
+
export declare const filterStartsWithOperator = "filter.startsWithOperator";
|
|
104
|
+
/**
|
|
105
|
+
* @hidden
|
|
106
|
+
*/
|
|
107
|
+
export declare const filterContainsOperator = "filter.containsOperator";
|
|
108
|
+
/**
|
|
109
|
+
* @hidden
|
|
110
|
+
*/
|
|
111
|
+
export declare const filterNotContainsOperator = "filter.notContainsOperator";
|
|
112
|
+
/**
|
|
113
|
+
* @hidden
|
|
114
|
+
*/
|
|
115
|
+
export declare const filterEndsWithOperator = "filter.endsWithOperator";
|
|
116
|
+
/**
|
|
117
|
+
* @hidden
|
|
118
|
+
*/
|
|
119
|
+
export declare const filterGteOperator = "filter.gteOperator";
|
|
120
|
+
/**
|
|
121
|
+
* @hidden
|
|
122
|
+
*/
|
|
123
|
+
export declare const filterGtOperator = "filter.gtOperator";
|
|
124
|
+
/**
|
|
125
|
+
* @hidden
|
|
126
|
+
*/
|
|
127
|
+
export declare const filterLteOperator = "filter.lteOperator";
|
|
128
|
+
/**
|
|
129
|
+
* @hidden
|
|
130
|
+
*/
|
|
131
|
+
export declare const filterLtOperator = "filter.ltOperator";
|
|
132
|
+
/**
|
|
133
|
+
* @hidden
|
|
134
|
+
*/
|
|
135
|
+
export declare const filterIsTrue = "filter.isTrue";
|
|
136
|
+
/**
|
|
137
|
+
* @hidden
|
|
138
|
+
*/
|
|
139
|
+
export declare const filterIsFalse = "filter.isFalse";
|
|
140
|
+
/**
|
|
141
|
+
* @hidden
|
|
142
|
+
*/
|
|
143
|
+
export declare const filterAfterOrEqualOperator = "filter.afterOrEqualOperator";
|
|
144
|
+
/**
|
|
145
|
+
* @hidden
|
|
146
|
+
*/
|
|
147
|
+
export declare const filterAfterOperator = "filter.afterOperator";
|
|
148
|
+
/**
|
|
149
|
+
* @hidden
|
|
150
|
+
*/
|
|
151
|
+
export declare const filterBeforeOperator = "filter.beforeOperator";
|
|
152
|
+
/**
|
|
153
|
+
* @hidden
|
|
154
|
+
*/
|
|
155
|
+
export declare const filterBeforeOrEqualOperator = "filter.beforeOrEqualOperator";
|
|
156
|
+
/**
|
|
157
|
+
* @hidden
|
|
158
|
+
*/
|
|
159
|
+
export declare const filterAndLogic = "filter.andLogic";
|
|
160
|
+
/**
|
|
161
|
+
* @hidden
|
|
162
|
+
*/
|
|
163
|
+
export declare const filterOrLogic = "filter.orLogic";
|
|
164
|
+
/**
|
|
165
|
+
* @hidden
|
|
166
|
+
*/
|
|
167
|
+
export declare const filterAddExpression = "filter.addExpression";
|
|
168
|
+
/**
|
|
169
|
+
* @hidden
|
|
170
|
+
*/
|
|
171
|
+
export declare const filterAddGroup = "filter.addGroup";
|
|
172
|
+
/**
|
|
173
|
+
* @hidden
|
|
174
|
+
*/
|
|
175
|
+
export declare const filterClose = "filter.close";
|
|
176
|
+
/**
|
|
177
|
+
* @hidden
|
|
178
|
+
*/
|
|
179
|
+
export declare const filterGroupAriaLabel = "filter.groupAriaLabel";
|
|
180
|
+
/**
|
|
181
|
+
* @hidden
|
|
182
|
+
*/
|
|
183
|
+
export declare const filterExpressionAriaLabel = "filter.expressionAriaLabel";
|
|
184
|
+
/**
|
|
185
|
+
* @hidden
|
|
186
|
+
*/
|
|
187
|
+
export declare const filterExpressionDropdownAriaLabel = "filter.expressionDropdownAriaLabel";
|
|
188
|
+
/**
|
|
189
|
+
* @hidden
|
|
190
|
+
*/
|
|
191
|
+
export declare const filterExpressionOperatorDropdownAriaLabel = "filter.expressionOperatorDropdownAriaLabel";
|
|
192
|
+
/**
|
|
193
|
+
* @hidden
|
|
194
|
+
*/
|
|
195
|
+
export declare const filterEnumFilterDropdownAriaLabel = "filter.enumFilterDropdownAriaLabel";
|
|
196
|
+
/**
|
|
197
|
+
* @hidden
|
|
198
|
+
*/
|
|
199
|
+
export declare const filterNumericFilterAriaLabel = "filter.numericFilterAriaLabel";
|
|
200
|
+
/**
|
|
201
|
+
* @hidden
|
|
202
|
+
*/
|
|
203
|
+
export declare const filterTextFilterAriaLabel = "filter.textFilterAriaLabel";
|
|
204
|
+
/**
|
|
205
|
+
* @hidden
|
|
206
|
+
*/
|
|
207
|
+
export declare const columnMenuFilterClearButton = "columnMenu.filterClearButton";
|
|
208
|
+
/**
|
|
209
|
+
* @hidden
|
|
210
|
+
*/
|
|
211
|
+
export declare const columnMenuFilterSubmitButton = "columnMenu.filterSubmitButton";
|
|
212
|
+
/**
|
|
213
|
+
* @hidden
|
|
214
|
+
*/
|
|
215
|
+
export declare const columnMenuFilterTitle = "columnMenu.filterTitle";
|
|
216
|
+
/**
|
|
217
|
+
* @hidden
|
|
218
|
+
*/
|
|
219
|
+
export declare const columnMenuSortAscending = "columnMenu.sortAscending";
|
|
220
|
+
/**
|
|
221
|
+
* @hidden
|
|
222
|
+
*/
|
|
223
|
+
export declare const columnMenuSortDescending = "columnMenu.sortDescending";
|
|
224
|
+
/**
|
|
225
|
+
* @hidden
|
|
226
|
+
*/
|
|
227
|
+
export declare const columnMenuFilterEqOperator = "columnMenu.filterEqOperator";
|
|
228
|
+
/**
|
|
229
|
+
* @hidden
|
|
230
|
+
*/
|
|
231
|
+
export declare const columnMenuFilterNotEqOperator = "columnMenu.filterNotEqOperator";
|
|
232
|
+
/**
|
|
233
|
+
* @hidden
|
|
234
|
+
*/
|
|
235
|
+
export declare const columnMenuFilterIsNullOperator = "columnMenu.filterIsNullOperator";
|
|
236
|
+
/**
|
|
237
|
+
* @hidden
|
|
238
|
+
*/
|
|
239
|
+
export declare const columnMenuFilterIsNotNullOperator = "columnMenu.filterIsNotNullOperator";
|
|
240
|
+
/**
|
|
241
|
+
* @hidden
|
|
242
|
+
*/
|
|
243
|
+
export declare const columnMenuFilterIsEmptyOperator = "columnMenu.filterIsEmptyOperator";
|
|
244
|
+
/**
|
|
245
|
+
* @hidden
|
|
246
|
+
*/
|
|
247
|
+
export declare const columnMenuFilterIsNotEmptyOperator = "columnMenu.filterIsNotEmptyOperator";
|
|
248
|
+
/**
|
|
249
|
+
* @hidden
|
|
250
|
+
*/
|
|
251
|
+
export declare const columnMenuFilterStartsWithOperator = "columnMenu.filterStartsWithOperator";
|
|
252
|
+
/**
|
|
253
|
+
* @hidden
|
|
254
|
+
*/
|
|
255
|
+
export declare const columnMenuFilterContainsOperator = "columnMenu.filterContainsOperator";
|
|
256
|
+
/**
|
|
257
|
+
* @hidden
|
|
258
|
+
*/
|
|
259
|
+
export declare const columnMenuFilterNotContainsOperator = "columnMenu.filterNotContainsOperator";
|
|
260
|
+
/**
|
|
261
|
+
* @hidden
|
|
262
|
+
*/
|
|
263
|
+
export declare const columnMenuFilterEndsWithOperator = "columnMenu.filterEndsWithOperator";
|
|
264
|
+
/**
|
|
265
|
+
* @hidden
|
|
266
|
+
*/
|
|
267
|
+
export declare const columnMenuFilterGteOperator = "columnMenu.filterGteOperator";
|
|
268
|
+
/**
|
|
269
|
+
* @hidden
|
|
270
|
+
*/
|
|
271
|
+
export declare const columnMenuFilterGtOperator = "columnMenu.filterGtOperator";
|
|
272
|
+
/**
|
|
273
|
+
* @hidden
|
|
274
|
+
*/
|
|
275
|
+
export declare const columnMenuFilterLteOperator = "columnMenu.filterLteOperator";
|
|
276
|
+
/**
|
|
277
|
+
* @hidden
|
|
278
|
+
*/
|
|
279
|
+
export declare const columnMenuFilterLtOperator = "columnMenu.filterLtOperator";
|
|
280
|
+
/**
|
|
281
|
+
* @hidden
|
|
282
|
+
*/
|
|
283
|
+
export declare const columnMenuFilterIsTrue = "columnMenu.filterIsTrue";
|
|
284
|
+
/**
|
|
285
|
+
* @hidden
|
|
286
|
+
*/
|
|
287
|
+
export declare const columnMenuFilterAfterOrEqualOperator = "columnMenu.filterAfterOrEqualOperator";
|
|
288
|
+
/**
|
|
289
|
+
* @hidden
|
|
290
|
+
*/
|
|
291
|
+
export declare const columnMenuFilterAfterOperator = "columnMenu.filterAfterOperator";
|
|
292
|
+
/**
|
|
293
|
+
* @hidden
|
|
294
|
+
*/
|
|
295
|
+
export declare const columnMenuFilterBeforeOperator = "columnMenu.filterBeforeOperator";
|
|
296
|
+
/**
|
|
297
|
+
* @hidden
|
|
298
|
+
*/
|
|
299
|
+
export declare const columnMenuFilterBeforeOrEqualOperator = "columnMenu.filterBeforeOrEqualOperator";
|
|
300
|
+
/**
|
|
301
|
+
* @hidden
|
|
302
|
+
*/
|
|
303
|
+
export declare const columnMenuFilterAndLogic = "columnMenu.filterAndLogic";
|
|
304
|
+
/**
|
|
305
|
+
* @hidden
|
|
306
|
+
*/
|
|
307
|
+
export declare const columnMenuFilterOrLogic = "columnMenu.filterOrLogic";
|
|
308
|
+
/**
|
|
309
|
+
* @hidden
|
|
310
|
+
*/
|
|
311
|
+
export declare const sortAriaLabel = "sort.ariaLabel";
|
|
312
|
+
/**
|
|
313
|
+
* @hidden
|
|
314
|
+
*/
|
|
315
|
+
export declare const filterAriaLabel = "filter.ariaLabel";
|
|
316
|
+
/**
|
|
317
|
+
* @hidden
|
|
318
|
+
*/
|
|
319
|
+
export declare const messages: {
|
|
320
|
+
"pager.itemsPerPage": string;
|
|
321
|
+
"pager.pageSelection": string;
|
|
322
|
+
"pager.info": string;
|
|
323
|
+
"pager.firstPage": string;
|
|
324
|
+
"pager.previousPage": string;
|
|
325
|
+
"pager.nextPage": string;
|
|
326
|
+
"pager.lastPage": string;
|
|
327
|
+
"pager.page": string;
|
|
328
|
+
"pager.of": string;
|
|
329
|
+
"pager.totalPages": string;
|
|
330
|
+
"pager.pageLabel": string;
|
|
331
|
+
"pager.ariaKeyshortcuts": string;
|
|
332
|
+
"pager.ariaLabel": string;
|
|
333
|
+
"pager.pageSizeAriaLabel": string;
|
|
334
|
+
"pager.mobileSelect": string;
|
|
335
|
+
"pager.moreButtonLabel": string;
|
|
336
|
+
"pager.pageNumberLabel": string;
|
|
337
|
+
"sort.ariaLabel": string;
|
|
338
|
+
"filter.ariaLabel": string;
|
|
339
|
+
"filter.eqOperator": string;
|
|
340
|
+
"filter.notEqOperator": string;
|
|
341
|
+
"filter.isNullOperator": string;
|
|
342
|
+
"filter.isNotNullOperator": string;
|
|
343
|
+
"filter.isEmptyOperator": string;
|
|
344
|
+
"filter.isNotEmptyOperator": string;
|
|
345
|
+
"filter.startsWithOperator": string;
|
|
346
|
+
"filter.containsOperator": string;
|
|
347
|
+
"filter.notContainsOperator": string;
|
|
348
|
+
"filter.endsWithOperator": string;
|
|
349
|
+
"filter.gteOperator": string;
|
|
350
|
+
"filter.gtOperator": string;
|
|
351
|
+
"filter.lteOperator": string;
|
|
352
|
+
"filter.ltOperator": string;
|
|
353
|
+
"filter.isTrue": string;
|
|
354
|
+
"filter.isFalse": string;
|
|
355
|
+
"filter.afterOrEqualOperator": string;
|
|
356
|
+
"filter.afterOperator": string;
|
|
357
|
+
"filter.beforeOperator": string;
|
|
358
|
+
"filter.beforeOrEqualOperator": string;
|
|
359
|
+
"filter.andLogic": string;
|
|
360
|
+
"filter.orLogic": string;
|
|
361
|
+
"filter.addExpression": string;
|
|
362
|
+
"filter.addGroup": string;
|
|
363
|
+
"filter.close": string;
|
|
364
|
+
"filter.groupAriaLabel": string;
|
|
365
|
+
"filter.expressionAriaLabel": string;
|
|
366
|
+
"filter.expressionDropdownAriaLabel": string;
|
|
367
|
+
"filter.expressionOperatorDropdownAriaLabel": string;
|
|
368
|
+
"filter.enumFilterDropdownAriaLabel": string;
|
|
369
|
+
"filter.numericFilterAriaLabel": string;
|
|
370
|
+
"filter.textFilterAriaLabel": string;
|
|
371
|
+
"columnMenu.filterClearButton": string;
|
|
372
|
+
"columnMenu.filterSubmitButton": string;
|
|
373
|
+
"columnMenu.filterTitle": string;
|
|
374
|
+
"columnMenu.sortAscending": string;
|
|
375
|
+
"columnMenu.sortDescending": string;
|
|
376
|
+
"columnMenu.filterEqOperator": string;
|
|
377
|
+
"columnMenu.filterNotEqOperator": string;
|
|
378
|
+
"columnMenu.filterIsNullOperator": string;
|
|
379
|
+
"columnMenu.filterIsNotNullOperator": string;
|
|
380
|
+
"columnMenu.filterIsEmptyOperator": string;
|
|
381
|
+
"columnMenu.filterIsNotEmptyOperator": string;
|
|
382
|
+
"columnMenu.filterStartsWithOperator": string;
|
|
383
|
+
"columnMenu.filterContainsOperator": string;
|
|
384
|
+
"columnMenu.filterNotContainsOperator": string;
|
|
385
|
+
"columnMenu.filterEndsWithOperator": string;
|
|
386
|
+
"columnMenu.filterGteOperator": string;
|
|
387
|
+
"columnMenu.filterGtOperator": string;
|
|
388
|
+
"columnMenu.filterLteOperator": string;
|
|
389
|
+
"columnMenu.filterLtOperator": string;
|
|
390
|
+
"columnMenu.filterIsTrue": string;
|
|
391
|
+
"columnMenu.filterAfterOrEqualOperator": string;
|
|
392
|
+
"columnMenu.filterAfterOperator": string;
|
|
393
|
+
"columnMenu.filterBeforeOperator": string;
|
|
394
|
+
"columnMenu.filterBeforeOrEqualOperator": string;
|
|
395
|
+
"columnMenu.filterAndLogic": string;
|
|
396
|
+
"columnMenu.filterOrLogic": string;
|
|
397
|
+
};
|
|
@@ -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
|
+
/**
|
|
9
|
+
* The navigatable modes
|
|
10
|
+
*/
|
|
11
|
+
export declare enum NavigatableMode {
|
|
12
|
+
incell = "incell",
|
|
13
|
+
inline = "inline"
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* The navigatable additional settings
|
|
17
|
+
*/
|
|
18
|
+
export interface NavigatableSettings {
|
|
19
|
+
/**
|
|
20
|
+
* The available values are:
|
|
21
|
+
* * `incell`
|
|
22
|
+
* * `inline`
|
|
23
|
+
*/
|
|
24
|
+
mode?: NavigatableMode;
|
|
25
|
+
}
|
|
@@ -0,0 +1,95 @@
|
|
|
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.js';
|
|
9
|
+
import { TableKeyboardNavigationStateType } from './TableKeyboardNavigationStateType.js';
|
|
10
|
+
import { NavigatableSettings } from './NavigatableSettings.js';
|
|
11
|
+
import * as React from 'react';
|
|
12
|
+
/**
|
|
13
|
+
* @hidden
|
|
14
|
+
*/
|
|
15
|
+
export declare const tableKeyboardNavigation: {
|
|
16
|
+
onConstructor: (options: {
|
|
17
|
+
navigatable?: boolean | undefined | NavigatableSettings;
|
|
18
|
+
contextStateRef: {
|
|
19
|
+
current?: TableKeyboardNavigationContextType;
|
|
20
|
+
};
|
|
21
|
+
navigationStateRef: {
|
|
22
|
+
current?: TableKeyboardNavigationStateType;
|
|
23
|
+
};
|
|
24
|
+
idPrefix?: string;
|
|
25
|
+
}) => void;
|
|
26
|
+
onComponentDidMount: (options: {
|
|
27
|
+
scope?: HTMLElement;
|
|
28
|
+
contextStateRef: {
|
|
29
|
+
current?: TableKeyboardNavigationContextType;
|
|
30
|
+
};
|
|
31
|
+
navigationStateRef: {
|
|
32
|
+
current?: TableKeyboardNavigationStateType;
|
|
33
|
+
};
|
|
34
|
+
}) => void;
|
|
35
|
+
onGetSnapshotBeforeUpdate: (options: {
|
|
36
|
+
document?: Document;
|
|
37
|
+
contextStateRef: {
|
|
38
|
+
current?: TableKeyboardNavigationContextType;
|
|
39
|
+
};
|
|
40
|
+
navigationStateRef: {
|
|
41
|
+
current?: TableKeyboardNavigationStateType;
|
|
42
|
+
};
|
|
43
|
+
}) => void;
|
|
44
|
+
onComponentDidUpdate: (options: {
|
|
45
|
+
scope?: HTMLElement;
|
|
46
|
+
contextStateRef: {
|
|
47
|
+
current?: TableKeyboardNavigationContextType;
|
|
48
|
+
};
|
|
49
|
+
navigationStateRef: {
|
|
50
|
+
current?: TableKeyboardNavigationStateType;
|
|
51
|
+
};
|
|
52
|
+
focusFirst?: boolean;
|
|
53
|
+
newEditableRow?: Element;
|
|
54
|
+
singleEditRow?: boolean;
|
|
55
|
+
lastActiveElement?: Element;
|
|
56
|
+
navigatable?: boolean | NavigatableSettings;
|
|
57
|
+
userInitiatedEdit?: boolean;
|
|
58
|
+
}) => void;
|
|
59
|
+
onFocus: (event: React.FocusEvent<HTMLDivElement>, options: {
|
|
60
|
+
navigatable?: boolean | NavigatableSettings;
|
|
61
|
+
contextStateRef: {
|
|
62
|
+
current?: TableKeyboardNavigationContextType;
|
|
63
|
+
};
|
|
64
|
+
}) => void;
|
|
65
|
+
onKeyDown: (event: React.KeyboardEvent<HTMLElement>, options: {
|
|
66
|
+
navigatable: boolean | NavigatableSettings;
|
|
67
|
+
contextStateRef: {
|
|
68
|
+
current?: TableKeyboardNavigationContextType;
|
|
69
|
+
};
|
|
70
|
+
navigationStateRef: {
|
|
71
|
+
current?: TableKeyboardNavigationStateType;
|
|
72
|
+
};
|
|
73
|
+
onNavigationAction?: ((options: {
|
|
74
|
+
event: React.KeyboardEvent<HTMLElement>;
|
|
75
|
+
focusElement: any;
|
|
76
|
+
action?: "select" | "moveToNextPage" | "moveToPrevPage" | "reorderToLeft" | "reorderToRight" | undefined;
|
|
77
|
+
}) => void) | undefined;
|
|
78
|
+
columns?: object[] | undefined;
|
|
79
|
+
}) => Promise<void>;
|
|
80
|
+
generateMatrix: (options: {
|
|
81
|
+
scope?: HTMLElement;
|
|
82
|
+
navigationStateRef: {
|
|
83
|
+
current?: TableKeyboardNavigationStateType;
|
|
84
|
+
};
|
|
85
|
+
}) => void;
|
|
86
|
+
focusFirstDataElement: (options: {
|
|
87
|
+
scope?: HTMLElement | undefined;
|
|
88
|
+
contextStateRef: {
|
|
89
|
+
current?: TableKeyboardNavigationContextType | undefined;
|
|
90
|
+
};
|
|
91
|
+
navigationStateRef: {
|
|
92
|
+
current?: TableKeyboardNavigationStateType | undefined;
|
|
93
|
+
};
|
|
94
|
+
}, event?: any) => void;
|
|
95
|
+
};
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
*-------------------------------------------------------------------------------------------
|
|
7
7
|
*/
|
|
8
8
|
"use client";
|
|
9
|
-
import {
|
|
10
|
-
import { focusFirstDataElement as w,
|
|
9
|
+
import { Keys as c, disableNavigatableContainer as U, keepFocusInContainer as V, TABBABLE_ELEMENTS as W, enableNavigatableContainer as L, getActiveElement as _, guid as q } from "@progress/kendo-react-common";
|
|
10
|
+
import { focusFirstDataElement as w, getHeaderElement as $, getBodyElement as j, getNoRecordsElement as z, getNavigatableId as J, tableKeyboardNavigationTools as t, getCurrentIdIndexes as Q, getFirstDataCell as P, focusFirstEditor as X, findNextIdByRowIndex as M, getFirstRowDataCell as Y, getLastRowDataCell as Z, getLastDataCell as ee, findNextIdByCellIndex as te } from "./utils.mjs";
|
|
11
11
|
import { NavigatableMode as D } from "./NavigatableSettings.mjs";
|
|
12
12
|
const H = (e) => {
|
|
13
13
|
const { navigatable: l, contextStateRef: i, navigationStateRef: a, idPrefix: r } = e;
|
|
@@ -17,7 +17,7 @@ const H = (e) => {
|
|
|
17
17
|
}, a.current = {
|
|
18
18
|
activeElementIsFocused: !1,
|
|
19
19
|
prevNavigationIndexes: void 0,
|
|
20
|
-
idPrefix: r ||
|
|
20
|
+
idPrefix: r || q(),
|
|
21
21
|
navigationMatrix: [],
|
|
22
22
|
lastHeaderIndex: -1
|
|
23
23
|
});
|
|
@@ -34,7 +34,7 @@ const H = (e) => {
|
|
|
34
34
|
}, ae = (e) => {
|
|
35
35
|
const { contextStateRef: l, navigationStateRef: i, document: a } = e;
|
|
36
36
|
if (l.current && i.current && a) {
|
|
37
|
-
const r =
|
|
37
|
+
const r = _(a), f = t.getNavigatableId(r);
|
|
38
38
|
f && f === l.current.activeId && (i.current.activeElementIsFocused = !0);
|
|
39
39
|
}
|
|
40
40
|
}, K = (e, l, i) => {
|
|
@@ -56,7 +56,7 @@ const H = (e) => {
|
|
|
56
56
|
navigatable: n,
|
|
57
57
|
userInitiatedEdit: u
|
|
58
58
|
} = e;
|
|
59
|
-
if (r && (H(e), O(e), w(e)), (!n || n && n.mode === D.inline) && (f && !s || f && s && !m) ? K(() =>
|
|
59
|
+
if (r && (H(e), O(e), w(e)), (!n || n && n.mode === D.inline) && (f && !s || f && s && !m) ? K(() => X(f), u, l) : n && n.mode === D.inline && f && s && m && K(() => m.focus(), u, l), A(e), i.current && a.current && l) {
|
|
60
60
|
if (!t.getActiveNavDataElement(l, i.current.activeId)) {
|
|
61
61
|
const v = l.className.indexOf("k-treelist") === -1 ? P(a.current.navigationMatrix) : a.current.navigationMatrix[0][0], C = t.getActiveNavDataElement(l, v);
|
|
62
62
|
v && C && (i.current.activeId = v, C.setAttribute("tabIndex", "0"), a.current.activeElementIsFocused && C.focus());
|
|
@@ -85,10 +85,10 @@ const H = (e) => {
|
|
|
85
85
|
return;
|
|
86
86
|
let s;
|
|
87
87
|
if (e.keyCode === c.esc && !l.navigatable.mode) {
|
|
88
|
-
s = t.getClosestNavigatableElement(e.target), t.focusElement({ elementForFocus: s, event: e, contextStateRef: i }), e.target.closest(".k-filtercell") && s && l.navigatable &&
|
|
88
|
+
s = t.getClosestNavigatableElement(e.target), t.focusElement({ elementForFocus: s, event: e, contextStateRef: i }), e.target.closest(".k-filtercell") && s && l.navigatable && U(s);
|
|
89
89
|
return;
|
|
90
90
|
}
|
|
91
|
-
const m = e.target, n = m.className.indexOf("k-checkbox") === -1 ? m : t.getClosestNavigatableElement(m), u = t.getNavigatableId(n) || ((R = t.getParentCell(n)) == null ? void 0 : R.getAttribute("data-keyboardnavid")), y = u == null ? void 0 : u.endsWith("column"), v = u == null ? void 0 : u.endsWith("column_filter"), C = t.getNavigatableLevel(n), I = t.getClosestScope(n), k = a.current.navigationMatrix, E = e.metaKey || e.ctrlKey, d =
|
|
91
|
+
const m = e.target, n = m.className.indexOf("k-checkbox") === -1 ? m : t.getClosestNavigatableElement(m), u = t.getNavigatableId(n) || ((R = t.getParentCell(n)) == null ? void 0 : R.getAttribute("data-keyboardnavid")), y = u == null ? void 0 : u.endsWith("column"), v = u == null ? void 0 : u.endsWith("column_filter"), C = t.getNavigatableLevel(n), I = t.getClosestScope(n), k = a.current.navigationMatrix, E = e.metaKey || e.ctrlKey, d = Q(a, k, u), p = n.closest(".k-table-td"), x = (h = n.closest(".k-table-td")) == null ? void 0 : h.classList.contains("k-grid-edit-cell");
|
|
92
92
|
if (l.navigatable && l.navigatable.mode === D.inline) {
|
|
93
93
|
if (e.keyCode === c.enter) {
|
|
94
94
|
const o = n.classList.contains("k-grid-remove-command"), g = n.classList.contains("k-grid-cancel-command"), b = t.getRowAriaRowIndex(n);
|
|
@@ -161,7 +161,7 @@ const H = (e) => {
|
|
|
161
161
|
}
|
|
162
162
|
}
|
|
163
163
|
if (n.closest(".k-filtercell") && p && l.navigatable) {
|
|
164
|
-
|
|
164
|
+
V(e, p, W);
|
|
165
165
|
return;
|
|
166
166
|
}
|
|
167
167
|
if (C !== void 0 && I) {
|
|
@@ -189,7 +189,7 @@ const H = (e) => {
|
|
|
189
189
|
e
|
|
190
190
|
);
|
|
191
191
|
else {
|
|
192
|
-
const o =
|
|
192
|
+
const o = Y(
|
|
193
193
|
a.current.navigationMatrix,
|
|
194
194
|
d[0]
|
|
195
195
|
);
|
|
@@ -197,10 +197,10 @@ const H = (e) => {
|
|
|
197
197
|
}
|
|
198
198
|
if (e.keyCode === c.end && d)
|
|
199
199
|
if (E) {
|
|
200
|
-
const o =
|
|
200
|
+
const o = ee(a.current.navigationMatrix);
|
|
201
201
|
s = t.getActiveNavDataElement(I, o), t.focusElement({ elementForFocus: s, event: e, contextStateRef: i });
|
|
202
202
|
} else {
|
|
203
|
-
const o =
|
|
203
|
+
const o = Z(
|
|
204
204
|
a.current.navigationMatrix,
|
|
205
205
|
d[0]
|
|
206
206
|
);
|
|
@@ -239,13 +239,13 @@ const H = (e) => {
|
|
|
239
239
|
const { navigationStateRef: l, scope: i } = e;
|
|
240
240
|
if (!l.current || !i)
|
|
241
241
|
return;
|
|
242
|
-
const a = [], r =
|
|
242
|
+
const a = [], r = $(i), f = j(i), s = z(i) || { children: [] };
|
|
243
243
|
if (!r || !f)
|
|
244
244
|
return;
|
|
245
245
|
const m = Array.from(r.children), n = Array.from(f.children);
|
|
246
246
|
[...m, ...n, s].forEach((u, y) => {
|
|
247
247
|
Array.from(u.children).forEach((v) => {
|
|
248
|
-
const C =
|
|
248
|
+
const C = J(v);
|
|
249
249
|
if (!C)
|
|
250
250
|
return;
|
|
251
251
|
const I = v.rowSpan || 1, k = v.colSpan || 1;
|
|
@@ -0,0 +1,13 @@
|
|
|
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.js';
|
|
9
|
+
import * as React from 'react';
|
|
10
|
+
/**
|
|
11
|
+
* @hidden
|
|
12
|
+
*/
|
|
13
|
+
export declare const TableKeyboardNavigationContext: React.Context<TableKeyboardNavigationContextType | undefined>;
|
|
@@ -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
|
+
}
|