@procore/data-table 14.4.1 → 14.4.3-next.0

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 (122) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/dist/Analytics/Analytics.d.ts +18 -0
  3. package/dist/Analytics/Client.d.ts +10 -0
  4. package/dist/Analytics/index.d.ts +2 -0
  5. package/dist/Analytics/types.d.ts +21 -0
  6. package/dist/BulkActions/BulkActions.d.ts +10 -0
  7. package/dist/BulkActions/BulkEditActionButton.d.ts +6 -0
  8. package/dist/CellRenderers/AutoGroupCell.d.ts +15 -0
  9. package/dist/CellRenderers/BooleanCell.d.ts +18 -0
  10. package/dist/CellRenderers/ButtonsCell.d.ts +8 -0
  11. package/dist/CellRenderers/Cells.d.ts +19 -0
  12. package/dist/CellRenderers/CompanyCell.d.ts +15 -0
  13. package/dist/CellRenderers/CurrencyCell.d.ts +23 -0
  14. package/dist/CellRenderers/DataTableCell.d.ts +67 -0
  15. package/dist/CellRenderers/DateCell.d.ts +23 -0
  16. package/dist/CellRenderers/DateTimeCell.d.ts +21 -0
  17. package/dist/CellRenderers/FullWidthCell.d.ts +5 -0
  18. package/dist/CellRenderers/GrandTotalsLabel.d.ts +5 -0
  19. package/dist/CellRenderers/GroupCell.d.ts +34 -0
  20. package/dist/CellRenderers/InlineEditWrapper.d.ts +35 -0
  21. package/dist/CellRenderers/InlineError.d.ts +10 -0
  22. package/dist/CellRenderers/LinkCell.d.ts +13 -0
  23. package/dist/CellRenderers/MultiSelectCell.d.ts +20 -0
  24. package/dist/CellRenderers/NumberCell.d.ts +21 -0
  25. package/dist/CellRenderers/PeopleCell.d.ts +18 -0
  26. package/dist/CellRenderers/PercentCell.d.ts +23 -0
  27. package/dist/CellRenderers/PersonCell.d.ts +17 -0
  28. package/dist/CellRenderers/PillCell.d.ts +22 -0
  29. package/dist/CellRenderers/RowActionsCell.d.ts +16 -0
  30. package/dist/CellRenderers/RowCheckbox.d.ts +9 -0
  31. package/dist/CellRenderers/SelectCell.d.ts +27 -0
  32. package/dist/CellRenderers/TextAreaCell.d.ts +18 -0
  33. package/dist/CellRenderers/TextCell.d.ts +18 -0
  34. package/dist/CellRenderers/index.d.ts +16 -0
  35. package/dist/ClientSideDataTable.d.ts +25 -0
  36. package/dist/DataTable.d.ts +36 -0
  37. package/dist/EmptyState.d.ts +12 -0
  38. package/dist/FilterRenderers/ClientSideFilter.d.ts +11 -0
  39. package/dist/FilterRenderers/DateFilterRenderer.d.ts +47 -0
  40. package/dist/FilterRenderers/LocationFilterRenderer.d.ts +9 -0
  41. package/dist/FilterRenderers/MultiSelectFilterRenderer.d.ts +7 -0
  42. package/dist/FilterRenderers/NumberFilterRenderer.d.ts +23 -0
  43. package/dist/FilterRenderers/ServerSideFilter.d.ts +3 -0
  44. package/dist/FilterRenderers/index.d.ts +114 -0
  45. package/dist/FilterRenderers/useServerSideFilter.d.ts +16 -0
  46. package/dist/FilterRenderers/useServerSideFilterStorage.d.ts +3 -0
  47. package/dist/FilterRenderers/utils.d.ts +7 -0
  48. package/dist/GenericHeader/GenericColumnGroupHeader.d.ts +15 -0
  49. package/dist/GenericHeader/GenericHeader.d.ts +27 -0
  50. package/dist/Panels/BulkEdit.d.ts +65 -0
  51. package/dist/Panels/Configuration.d.ts +8 -0
  52. package/dist/Panels/Filters.d.ts +10 -0
  53. package/dist/Panels/StyledPanelSection.d.ts +4 -0
  54. package/dist/Panels/helpers.d.ts +12 -0
  55. package/dist/Panels/useContextPanel.d.ts +2 -0
  56. package/dist/QuickControls/ConfigPanelButton.d.ts +2 -0
  57. package/dist/QuickControls/EmptyResultsControlTooltip.d.ts +6 -0
  58. package/dist/QuickControls/FiltersPanelToggleButton.d.ts +9 -0
  59. package/dist/QuickControls/QuickControls.d.ts +8 -0
  60. package/dist/QuickControls/QuickFilters.d.ts +12 -0
  61. package/dist/QuickControls/RowGroupSelector.d.ts +5 -0
  62. package/dist/QuickControls/Search.d.ts +9 -0
  63. package/dist/QuickControls/ServerSideSearch.d.ts +13 -0
  64. package/dist/QuickFilterRenderers/DateQuickFilterRenderer.d.ts +30 -0
  65. package/dist/QuickFilterRenderers/LocationQuickFilterRenderer.d.ts +4 -0
  66. package/dist/QuickFilterRenderers/MultiSelectQuickFilterRenderer.d.ts +7 -0
  67. package/dist/QuickFilterRenderers/QuickFilterLabel.d.ts +13 -0
  68. package/dist/QuickFilterRenderers/SingleSelectQuickFilterRenderer.d.ts +19 -0
  69. package/dist/QuickFilterRenderers/SuperSelectFilterPreset.d.ts +8 -0
  70. package/dist/QuickFilterRenderers/index.d.ts +4 -0
  71. package/dist/QuickFilterRenderers/types.d.ts +16 -0
  72. package/dist/QuickFilterRenderers/utils.d.ts +6 -0
  73. package/dist/ServerSideDataTable.d.ts +25 -0
  74. package/dist/constants.d.ts +21 -0
  75. package/dist/icons.d.ts +1 -0
  76. package/dist/index.d.ts +24 -0
  77. package/dist/index.js +220 -0
  78. package/dist/index.js.LICENSE.txt +60 -0
  79. package/dist/state/useFilterState.d.ts +36 -0
  80. package/dist/state/useRowSelectionState.d.ts +8 -0
  81. package/dist/types.d.ts +684 -0
  82. package/dist/utils/ContactItem.d.ts +12 -0
  83. package/dist/utils/RadioList.d.ts +12 -0
  84. package/dist/utils/addSubcomponents.d.ts +3 -0
  85. package/dist/utils/adjustRowDragIcon.d.ts +2 -0
  86. package/dist/utils/aggData.d.ts +3 -0
  87. package/dist/utils/aggregationFunctions.d.ts +2 -0
  88. package/dist/utils/buildDetailRows.d.ts +14 -0
  89. package/dist/utils/cellHelpers.d.ts +25 -0
  90. package/dist/utils/columnDefHelpers.d.ts +10 -0
  91. package/dist/utils/columnMenuHelpers.d.ts +11 -0
  92. package/dist/utils/companyOptionRenderer.d.ts +3 -0
  93. package/dist/utils/findNode.d.ts +6 -0
  94. package/dist/utils/generateHTMLString.d.ts +23 -0
  95. package/dist/utils/genericAnalyticsClient.d.ts +19 -0
  96. package/dist/utils/getCellValueTypographyProps.d.ts +5 -0
  97. package/dist/utils/getRootRowNode.d.ts +2 -0
  98. package/dist/utils/helpers.d.ts +14 -0
  99. package/dist/utils/internalTableContext.d.ts +45 -0
  100. package/dist/utils/isEmptyValue.d.ts +1 -0
  101. package/dist/utils/logger.d.ts +5 -0
  102. package/dist/utils/pagination.d.ts +5 -0
  103. package/dist/utils/personOptionRenderer.d.ts +3 -0
  104. package/dist/utils/rowSelectionHelpers.d.ts +54 -0
  105. package/dist/utils/serverSideSharedTestHelpers.d.ts +237 -0
  106. package/dist/utils/setSiblingGroupsRowSelection.d.ts +2 -0
  107. package/dist/utils/sort.d.ts +7 -0
  108. package/dist/utils/sortFilters.d.ts +2 -0
  109. package/dist/utils/test/i18n.d.ts +4 -0
  110. package/dist/utils/transformers.d.ts +25 -0
  111. package/dist/utils/translations.d.ts +1990 -0
  112. package/dist/utils/useTableApi.d.ts +14 -0
  113. package/dist/utils/waitForAsyncCondition.d.ts +1 -0
  114. package/package.json +10 -10
  115. package/dist/legacy/index.d.mts +0 -1399
  116. package/dist/legacy/index.d.ts +0 -1399
  117. package/dist/legacy/index.js +0 -88331
  118. package/dist/legacy/index.mjs +0 -88272
  119. package/dist/modern/index.d.mts +0 -1399
  120. package/dist/modern/index.d.ts +0 -1399
  121. package/dist/modern/index.js +0 -88101
  122. package/dist/modern/index.mjs +0 -88042
@@ -0,0 +1,1990 @@
1
+ export declare const translations: {
2
+ readonly 'de-DE': {
3
+ dataTable: {
4
+ emptyState: {
5
+ noFilteredResults: {
6
+ description: string;
7
+ title: string;
8
+ itemsTitle: string;
9
+ };
10
+ noResults: {
11
+ description: string;
12
+ title: string;
13
+ itemsTitle: string;
14
+ tooltip: string;
15
+ featureFilter: string;
16
+ featureSearch: string;
17
+ featureGroupBy: string;
18
+ featureConfigure: string;
19
+ tableNameFallback: string;
20
+ };
21
+ };
22
+ bulkActions: {
23
+ apply: string;
24
+ bulkEdit: string;
25
+ cancel: string;
26
+ editValues: string;
27
+ error: string;
28
+ placeholderForField: string;
29
+ selection: string;
30
+ success: string;
31
+ one: string;
32
+ many: string;
33
+ };
34
+ exporting: string;
35
+ filters: {
36
+ filters: string;
37
+ moreFilters: string;
38
+ clearAllFilters: string;
39
+ close: string;
40
+ locationFilter: {
41
+ selectAll: string;
42
+ includeSublocations: string;
43
+ searchLocations: string;
44
+ locations: string;
45
+ };
46
+ numberFilter: {
47
+ labels: {
48
+ and: string;
49
+ input_placeholder: string;
50
+ placeholder: string;
51
+ };
52
+ options: {
53
+ any_value: string;
54
+ is_between: string;
55
+ greater_than: string;
56
+ greater_than_equal_to: string;
57
+ less_than: string;
58
+ less_than_equal_to: string;
59
+ no_value: string;
60
+ };
61
+ };
62
+ };
63
+ loading: {
64
+ initial: string;
65
+ secondary: string;
66
+ };
67
+ menuOptions: {
68
+ sortMenuItem: {
69
+ label: string;
70
+ sortAscItem: string;
71
+ sortDescItem: string;
72
+ sortResetItem: string;
73
+ };
74
+ expandAllGroups: string;
75
+ collapseAllGroups: string;
76
+ pinColumn: string;
77
+ pinLeft: string;
78
+ pinRight: string;
79
+ noPin: string;
80
+ autoSizeThisColumn: string;
81
+ autoSizeAllColumns: string;
82
+ resetColumns: string;
83
+ unGroupBy: string;
84
+ groupBy: string;
85
+ };
86
+ grandTotals: string;
87
+ search: string;
88
+ subtotals: string;
89
+ tableSettings: {
90
+ configureColumns: string;
91
+ resetToDefault: string;
92
+ rowHeight: string;
93
+ small: string;
94
+ medium: string;
95
+ large: string;
96
+ tableSettings: string;
97
+ groupBy: string;
98
+ reset: string;
99
+ selectColumnGroup: string;
100
+ };
101
+ rowGroupToggle: {
102
+ expandTierOne: string;
103
+ expandAll: string;
104
+ collapseAll: string;
105
+ };
106
+ columnGroupToggle: {
107
+ collapse: string;
108
+ expand: string;
109
+ };
110
+ cells: {
111
+ textCell: {
112
+ placeholder: string;
113
+ };
114
+ currencyCell: {
115
+ placeholder: string;
116
+ };
117
+ numberCell: {
118
+ placeholder: string;
119
+ };
120
+ percentCell: {
121
+ placeholder: string;
122
+ };
123
+ pillCell: {
124
+ placeholder: string;
125
+ };
126
+ selectCell: {
127
+ placeholder: string;
128
+ };
129
+ booleanCell: {
130
+ options: {
131
+ yes: string;
132
+ no: string;
133
+ };
134
+ };
135
+ };
136
+ filterRenders: {
137
+ dateFilter: {
138
+ single: string;
139
+ range: string;
140
+ };
141
+ };
142
+ };
143
+ };
144
+ readonly en: {
145
+ dataTable: {
146
+ emptyState: {
147
+ noFilteredResults: {
148
+ description: string;
149
+ title: string;
150
+ itemsTitle: string;
151
+ };
152
+ noResults: {
153
+ description: string;
154
+ title: string;
155
+ itemsTitle: string;
156
+ tooltip: string;
157
+ featureFilter: string;
158
+ featureSearch: string;
159
+ featureGroupBy: string;
160
+ featureConfigure: string;
161
+ tableNameFallback: string;
162
+ };
163
+ };
164
+ bulkActions: {
165
+ apply: string;
166
+ bulkEdit: string;
167
+ cancel: string;
168
+ editValues: string;
169
+ error: string;
170
+ placeholderForField: string;
171
+ selection: string;
172
+ success: string;
173
+ one: string;
174
+ many: string;
175
+ };
176
+ exporting: string;
177
+ filters: {
178
+ filters: string;
179
+ moreFilters: string;
180
+ clearAllFilters: string;
181
+ close: string;
182
+ locationFilter: {
183
+ selectAll: string;
184
+ includeSublocations: string;
185
+ searchLocations: string;
186
+ locations: string;
187
+ };
188
+ numberFilter: {
189
+ labels: {
190
+ and: string;
191
+ input_placeholder: string;
192
+ placeholder: string;
193
+ };
194
+ options: {
195
+ any_value: string;
196
+ is_between: string;
197
+ greater_than: string;
198
+ greater_than_equal_to: string;
199
+ less_than: string;
200
+ less_than_equal_to: string;
201
+ no_value: string;
202
+ };
203
+ };
204
+ };
205
+ loading: {
206
+ initial: string;
207
+ secondary: string;
208
+ };
209
+ menuOptions: {
210
+ sortMenuItem: {
211
+ label: string;
212
+ sortAscItem: string;
213
+ sortDescItem: string;
214
+ sortResetItem: string;
215
+ };
216
+ expandAllGroups: string;
217
+ collapseAllGroups: string;
218
+ pinColumn: string;
219
+ pinLeft: string;
220
+ pinRight: string;
221
+ noPin: string;
222
+ autoSizeThisColumn: string;
223
+ autoSizeAllColumns: string;
224
+ resetColumns: string;
225
+ unGroupBy: string;
226
+ groupBy: string;
227
+ };
228
+ grandTotals: string;
229
+ search: string;
230
+ subtotals: string;
231
+ tableSettings: {
232
+ configureColumns: string;
233
+ resetToDefault: string;
234
+ rowHeight: string;
235
+ small: string;
236
+ medium: string;
237
+ large: string;
238
+ tableSettings: string;
239
+ groupBy: string;
240
+ reset: string;
241
+ selectColumnGroup: string;
242
+ };
243
+ rowGroupToggle: {
244
+ expandTierOne: string;
245
+ expandAll: string;
246
+ collapseAll: string;
247
+ };
248
+ columnGroupToggle: {
249
+ collapse: string;
250
+ expand: string;
251
+ };
252
+ cells: {
253
+ textCell: {
254
+ placeholder: string;
255
+ };
256
+ currencyCell: {
257
+ placeholder: string;
258
+ };
259
+ numberCell: {
260
+ placeholder: string;
261
+ };
262
+ percentCell: {
263
+ placeholder: string;
264
+ };
265
+ pillCell: {
266
+ placeholder: string;
267
+ };
268
+ selectCell: {
269
+ placeholder: string;
270
+ };
271
+ booleanCell: {
272
+ options: {
273
+ yes: string;
274
+ no: string;
275
+ };
276
+ };
277
+ };
278
+ filterRenders: {
279
+ dateFilter: {
280
+ single: string;
281
+ range: string;
282
+ };
283
+ };
284
+ };
285
+ };
286
+ readonly 'en-AU': {
287
+ dataTable: {
288
+ emptyState: {
289
+ noFilteredResults: {
290
+ description: string;
291
+ title: string;
292
+ itemsTitle: string;
293
+ };
294
+ noResults: {
295
+ description: string;
296
+ title: string;
297
+ itemsTitle: string;
298
+ tooltip: string;
299
+ featureFilter: string;
300
+ featureSearch: string;
301
+ featureGroupBy: string;
302
+ featureConfigure: string;
303
+ tableNameFallback: string;
304
+ };
305
+ };
306
+ bulkActions: {
307
+ apply: string;
308
+ bulkEdit: string;
309
+ cancel: string;
310
+ editValues: string;
311
+ error: string;
312
+ placeholderForField: string;
313
+ selection: string;
314
+ success: string;
315
+ one: string;
316
+ many: string;
317
+ };
318
+ exporting: string;
319
+ filters: {
320
+ filters: string;
321
+ moreFilters: string;
322
+ clearAllFilters: string;
323
+ close: string;
324
+ locationFilter: {
325
+ selectAll: string;
326
+ includeSublocations: string;
327
+ searchLocations: string;
328
+ locations: string;
329
+ };
330
+ numberFilter: {
331
+ labels: {
332
+ and: string;
333
+ input_placeholder: string;
334
+ placeholder: string;
335
+ };
336
+ options: {
337
+ any_value: string;
338
+ is_between: string;
339
+ greater_than: string;
340
+ greater_than_equal_to: string;
341
+ less_than: string;
342
+ less_than_equal_to: string;
343
+ no_value: string;
344
+ };
345
+ };
346
+ };
347
+ loading: {
348
+ initial: string;
349
+ secondary: string;
350
+ };
351
+ menuOptions: {
352
+ sortMenuItem: {
353
+ label: string;
354
+ sortAscItem: string;
355
+ sortDescItem: string;
356
+ sortResetItem: string;
357
+ };
358
+ expandAllGroups: string;
359
+ collapseAllGroups: string;
360
+ pinColumn: string;
361
+ pinLeft: string;
362
+ pinRight: string;
363
+ noPin: string;
364
+ autoSizeThisColumn: string;
365
+ autoSizeAllColumns: string;
366
+ resetColumns: string;
367
+ unGroupBy: string;
368
+ groupBy: string;
369
+ };
370
+ grandTotals: string;
371
+ search: string;
372
+ subtotals: string;
373
+ tableSettings: {
374
+ configureColumns: string;
375
+ resetToDefault: string;
376
+ rowHeight: string;
377
+ small: string;
378
+ medium: string;
379
+ large: string;
380
+ tableSettings: string;
381
+ groupBy: string;
382
+ reset: string;
383
+ selectColumnGroup: string;
384
+ };
385
+ rowGroupToggle: {
386
+ expandTierOne: string;
387
+ expandAll: string;
388
+ collapseAll: string;
389
+ };
390
+ columnGroupToggle: {
391
+ collapse: string;
392
+ expand: string;
393
+ };
394
+ cells: {
395
+ textCell: {
396
+ placeholder: string;
397
+ };
398
+ currencyCell: {
399
+ placeholder: string;
400
+ };
401
+ numberCell: {
402
+ placeholder: string;
403
+ };
404
+ percentCell: {
405
+ placeholder: string;
406
+ };
407
+ pillCell: {
408
+ placeholder: string;
409
+ };
410
+ selectCell: {
411
+ placeholder: string;
412
+ };
413
+ booleanCell: {
414
+ options: {
415
+ yes: string;
416
+ no: string;
417
+ };
418
+ };
419
+ };
420
+ filterRenders: {
421
+ dateFilter: {
422
+ single: string;
423
+ range: string;
424
+ };
425
+ };
426
+ };
427
+ };
428
+ readonly 'en-CA': {
429
+ dataTable: {
430
+ emptyState: {
431
+ noFilteredResults: {
432
+ description: string;
433
+ title: string;
434
+ itemsTitle: string;
435
+ };
436
+ noResults: {
437
+ description: string;
438
+ title: string;
439
+ itemsTitle: string;
440
+ tooltip: string;
441
+ featureFilter: string;
442
+ featureSearch: string;
443
+ featureGroupBy: string;
444
+ featureConfigure: string;
445
+ tableNameFallback: string;
446
+ };
447
+ };
448
+ bulkActions: {
449
+ apply: string;
450
+ bulkEdit: string;
451
+ cancel: string;
452
+ editValues: string;
453
+ error: string;
454
+ placeholderForField: string;
455
+ selection: string;
456
+ success: string;
457
+ one: string;
458
+ many: string;
459
+ };
460
+ exporting: string;
461
+ filters: {
462
+ filters: string;
463
+ moreFilters: string;
464
+ clearAllFilters: string;
465
+ close: string;
466
+ locationFilter: {
467
+ selectAll: string;
468
+ includeSublocations: string;
469
+ searchLocations: string;
470
+ locations: string;
471
+ };
472
+ numberFilter: {
473
+ labels: {
474
+ and: string;
475
+ input_placeholder: string;
476
+ placeholder: string;
477
+ };
478
+ options: {
479
+ any_value: string;
480
+ is_between: string;
481
+ greater_than: string;
482
+ greater_than_equal_to: string;
483
+ less_than: string;
484
+ less_than_equal_to: string;
485
+ no_value: string;
486
+ };
487
+ };
488
+ };
489
+ loading: {
490
+ initial: string;
491
+ secondary: string;
492
+ };
493
+ menuOptions: {
494
+ sortMenuItem: {
495
+ label: string;
496
+ sortAscItem: string;
497
+ sortDescItem: string;
498
+ sortResetItem: string;
499
+ };
500
+ expandAllGroups: string;
501
+ collapseAllGroups: string;
502
+ pinColumn: string;
503
+ pinLeft: string;
504
+ pinRight: string;
505
+ noPin: string;
506
+ autoSizeThisColumn: string;
507
+ autoSizeAllColumns: string;
508
+ resetColumns: string;
509
+ unGroupBy: string;
510
+ groupBy: string;
511
+ };
512
+ grandTotals: string;
513
+ search: string;
514
+ subtotals: string;
515
+ tableSettings: {
516
+ configureColumns: string;
517
+ resetToDefault: string;
518
+ rowHeight: string;
519
+ small: string;
520
+ medium: string;
521
+ large: string;
522
+ tableSettings: string;
523
+ groupBy: string;
524
+ reset: string;
525
+ selectColumnGroup: string;
526
+ };
527
+ rowGroupToggle: {
528
+ expandTierOne: string;
529
+ expandAll: string;
530
+ collapseAll: string;
531
+ };
532
+ columnGroupToggle: {
533
+ collapse: string;
534
+ expand: string;
535
+ };
536
+ cells: {
537
+ textCell: {
538
+ placeholder: string;
539
+ };
540
+ currencyCell: {
541
+ placeholder: string;
542
+ };
543
+ numberCell: {
544
+ placeholder: string;
545
+ };
546
+ percentCell: {
547
+ placeholder: string;
548
+ };
549
+ pillCell: {
550
+ placeholder: string;
551
+ };
552
+ selectCell: {
553
+ placeholder: string;
554
+ };
555
+ booleanCell: {
556
+ options: {
557
+ yes: string;
558
+ no: string;
559
+ };
560
+ };
561
+ };
562
+ filterRenders: {
563
+ dateFilter: {
564
+ single: string;
565
+ range: string;
566
+ };
567
+ };
568
+ };
569
+ };
570
+ readonly 'en-GB': {
571
+ dataTable: {
572
+ emptyState: {
573
+ noFilteredResults: {
574
+ description: string;
575
+ title: string;
576
+ itemsTitle: string;
577
+ };
578
+ noResults: {
579
+ description: string;
580
+ title: string;
581
+ itemsTitle: string;
582
+ tooltip: string;
583
+ featureFilter: string;
584
+ featureSearch: string;
585
+ featureGroupBy: string;
586
+ featureConfigure: string;
587
+ tableNameFallback: string;
588
+ };
589
+ };
590
+ bulkActions: {
591
+ apply: string;
592
+ bulkEdit: string;
593
+ cancel: string;
594
+ editValues: string;
595
+ error: string;
596
+ placeholderForField: string;
597
+ selection: string;
598
+ success: string;
599
+ one: string;
600
+ many: string;
601
+ };
602
+ exporting: string;
603
+ filters: {
604
+ filters: string;
605
+ moreFilters: string;
606
+ clearAllFilters: string;
607
+ close: string;
608
+ locationFilter: {
609
+ selectAll: string;
610
+ includeSublocations: string;
611
+ searchLocations: string;
612
+ locations: string;
613
+ };
614
+ numberFilter: {
615
+ labels: {
616
+ and: string;
617
+ input_placeholder: string;
618
+ placeholder: string;
619
+ };
620
+ options: {
621
+ any_value: string;
622
+ is_between: string;
623
+ greater_than: string;
624
+ greater_than_equal_to: string;
625
+ less_than: string;
626
+ less_than_equal_to: string;
627
+ no_value: string;
628
+ };
629
+ };
630
+ };
631
+ loading: {
632
+ initial: string;
633
+ secondary: string;
634
+ };
635
+ menuOptions: {
636
+ sortMenuItem: {
637
+ label: string;
638
+ sortAscItem: string;
639
+ sortDescItem: string;
640
+ sortResetItem: string;
641
+ };
642
+ expandAllGroups: string;
643
+ collapseAllGroups: string;
644
+ pinColumn: string;
645
+ pinLeft: string;
646
+ pinRight: string;
647
+ noPin: string;
648
+ autoSizeThisColumn: string;
649
+ autoSizeAllColumns: string;
650
+ resetColumns: string;
651
+ unGroupBy: string;
652
+ groupBy: string;
653
+ };
654
+ grandTotals: string;
655
+ search: string;
656
+ subtotals: string;
657
+ tableSettings: {
658
+ configureColumns: string;
659
+ resetToDefault: string;
660
+ rowHeight: string;
661
+ small: string;
662
+ medium: string;
663
+ large: string;
664
+ tableSettings: string;
665
+ groupBy: string;
666
+ reset: string;
667
+ selectColumnGroup: string;
668
+ };
669
+ rowGroupToggle: {
670
+ expandTierOne: string;
671
+ expandAll: string;
672
+ collapseAll: string;
673
+ };
674
+ columnGroupToggle: {
675
+ collapse: string;
676
+ expand: string;
677
+ };
678
+ cells: {
679
+ textCell: {
680
+ placeholder: string;
681
+ };
682
+ currencyCell: {
683
+ placeholder: string;
684
+ };
685
+ numberCell: {
686
+ placeholder: string;
687
+ };
688
+ percentCell: {
689
+ placeholder: string;
690
+ };
691
+ pillCell: {
692
+ placeholder: string;
693
+ };
694
+ selectCell: {
695
+ placeholder: string;
696
+ };
697
+ booleanCell: {
698
+ options: {
699
+ yes: string;
700
+ no: string;
701
+ };
702
+ };
703
+ };
704
+ filterRenders: {
705
+ dateFilter: {
706
+ single: string;
707
+ range: string;
708
+ };
709
+ };
710
+ };
711
+ };
712
+ readonly es: {
713
+ dataTable: {
714
+ emptyState: {
715
+ noFilteredResults: {
716
+ description: string;
717
+ title: string;
718
+ itemsTitle: string;
719
+ };
720
+ noResults: {
721
+ description: string;
722
+ title: string;
723
+ itemsTitle: string;
724
+ tooltip: string;
725
+ featureFilter: string;
726
+ featureSearch: string;
727
+ featureGroupBy: string;
728
+ featureConfigure: string;
729
+ tableNameFallback: string;
730
+ };
731
+ };
732
+ bulkActions: {
733
+ apply: string;
734
+ bulkEdit: string;
735
+ cancel: string;
736
+ editValues: string;
737
+ error: string;
738
+ placeholderForField: string;
739
+ selection: string;
740
+ success: string;
741
+ one: string;
742
+ many: string;
743
+ };
744
+ exporting: string;
745
+ filters: {
746
+ filters: string;
747
+ moreFilters: string;
748
+ clearAllFilters: string;
749
+ close: string;
750
+ locationFilter: {
751
+ selectAll: string;
752
+ includeSublocations: string;
753
+ searchLocations: string;
754
+ locations: string;
755
+ };
756
+ numberFilter: {
757
+ labels: {
758
+ and: string;
759
+ input_placeholder: string;
760
+ placeholder: string;
761
+ };
762
+ options: {
763
+ any_value: string;
764
+ is_between: string;
765
+ greater_than: string;
766
+ greater_than_equal_to: string;
767
+ less_than: string;
768
+ less_than_equal_to: string;
769
+ no_value: string;
770
+ };
771
+ };
772
+ };
773
+ loading: {
774
+ initial: string;
775
+ secondary: string;
776
+ };
777
+ menuOptions: {
778
+ sortMenuItem: {
779
+ label: string;
780
+ sortAscItem: string;
781
+ sortDescItem: string;
782
+ sortResetItem: string;
783
+ };
784
+ expandAllGroups: string;
785
+ collapseAllGroups: string;
786
+ pinColumn: string;
787
+ pinLeft: string;
788
+ pinRight: string;
789
+ noPin: string;
790
+ autoSizeThisColumn: string;
791
+ autoSizeAllColumns: string;
792
+ resetColumns: string;
793
+ unGroupBy: string;
794
+ groupBy: string;
795
+ };
796
+ grandTotals: string;
797
+ search: string;
798
+ subtotals: string;
799
+ tableSettings: {
800
+ configureColumns: string;
801
+ resetToDefault: string;
802
+ rowHeight: string;
803
+ small: string;
804
+ medium: string;
805
+ large: string;
806
+ tableSettings: string;
807
+ groupBy: string;
808
+ reset: string;
809
+ selectColumnGroup: string;
810
+ };
811
+ rowGroupToggle: {
812
+ expandTierOne: string;
813
+ expandAll: string;
814
+ collapseAll: string;
815
+ };
816
+ columnGroupToggle: {
817
+ collapse: string;
818
+ expand: string;
819
+ };
820
+ cells: {
821
+ textCell: {
822
+ placeholder: string;
823
+ };
824
+ currencyCell: {
825
+ placeholder: string;
826
+ };
827
+ numberCell: {
828
+ placeholder: string;
829
+ };
830
+ percentCell: {
831
+ placeholder: string;
832
+ };
833
+ pillCell: {
834
+ placeholder: string;
835
+ };
836
+ selectCell: {
837
+ placeholder: string;
838
+ };
839
+ booleanCell: {
840
+ options: {
841
+ yes: string;
842
+ no: string;
843
+ };
844
+ };
845
+ };
846
+ filterRenders: {
847
+ dateFilter: {
848
+ single: string;
849
+ range: string;
850
+ };
851
+ };
852
+ };
853
+ };
854
+ readonly 'es-ES': {
855
+ dataTable: {
856
+ emptyState: {
857
+ noFilteredResults: {
858
+ description: string;
859
+ title: string;
860
+ itemsTitle: string;
861
+ };
862
+ noResults: {
863
+ description: string;
864
+ title: string;
865
+ itemsTitle: string;
866
+ tooltip: string;
867
+ featureFilter: string;
868
+ featureSearch: string;
869
+ featureGroupBy: string;
870
+ featureConfigure: string;
871
+ tableNameFallback: string;
872
+ };
873
+ };
874
+ bulkActions: {
875
+ apply: string;
876
+ bulkEdit: string;
877
+ cancel: string;
878
+ editValues: string;
879
+ error: string;
880
+ placeholderForField: string;
881
+ selection: string;
882
+ success: string;
883
+ one: string;
884
+ many: string;
885
+ };
886
+ exporting: string;
887
+ filters: {
888
+ filters: string;
889
+ moreFilters: string;
890
+ clearAllFilters: string;
891
+ close: string;
892
+ locationFilter: {
893
+ selectAll: string;
894
+ includeSublocations: string;
895
+ searchLocations: string;
896
+ locations: string;
897
+ };
898
+ numberFilter: {
899
+ labels: {
900
+ and: string;
901
+ input_placeholder: string;
902
+ placeholder: string;
903
+ };
904
+ options: {
905
+ any_value: string;
906
+ is_between: string;
907
+ greater_than: string;
908
+ greater_than_equal_to: string;
909
+ less_than: string;
910
+ less_than_equal_to: string;
911
+ no_value: string;
912
+ };
913
+ };
914
+ };
915
+ loading: {
916
+ initial: string;
917
+ secondary: string;
918
+ };
919
+ menuOptions: {
920
+ sortMenuItem: {
921
+ label: string;
922
+ sortAscItem: string;
923
+ sortDescItem: string;
924
+ sortResetItem: string;
925
+ };
926
+ expandAllGroups: string;
927
+ collapseAllGroups: string;
928
+ pinColumn: string;
929
+ pinLeft: string;
930
+ pinRight: string;
931
+ noPin: string;
932
+ autoSizeThisColumn: string;
933
+ autoSizeAllColumns: string;
934
+ resetColumns: string;
935
+ unGroupBy: string;
936
+ groupBy: string;
937
+ };
938
+ grandTotals: string;
939
+ search: string;
940
+ subtotals: string;
941
+ tableSettings: {
942
+ configureColumns: string;
943
+ resetToDefault: string;
944
+ rowHeight: string;
945
+ small: string;
946
+ medium: string;
947
+ large: string;
948
+ tableSettings: string;
949
+ groupBy: string;
950
+ reset: string;
951
+ selectColumnGroup: string;
952
+ };
953
+ rowGroupToggle: {
954
+ expandTierOne: string;
955
+ expandAll: string;
956
+ collapseAll: string;
957
+ };
958
+ columnGroupToggle: {
959
+ collapse: string;
960
+ expand: string;
961
+ };
962
+ cells: {
963
+ textCell: {
964
+ placeholder: string;
965
+ };
966
+ currencyCell: {
967
+ placeholder: string;
968
+ };
969
+ numberCell: {
970
+ placeholder: string;
971
+ };
972
+ percentCell: {
973
+ placeholder: string;
974
+ };
975
+ pillCell: {
976
+ placeholder: string;
977
+ };
978
+ selectCell: {
979
+ placeholder: string;
980
+ };
981
+ booleanCell: {
982
+ options: {
983
+ yes: string;
984
+ no: string;
985
+ };
986
+ };
987
+ };
988
+ filterRenders: {
989
+ dateFilter: {
990
+ single: string;
991
+ range: string;
992
+ };
993
+ };
994
+ };
995
+ };
996
+ readonly 'fr-CA': {
997
+ dataTable: {
998
+ emptyState: {
999
+ noFilteredResults: {
1000
+ description: string;
1001
+ title: string;
1002
+ itemsTitle: string;
1003
+ };
1004
+ noResults: {
1005
+ description: string;
1006
+ title: string;
1007
+ itemsTitle: string;
1008
+ tooltip: string;
1009
+ featureFilter: string;
1010
+ featureSearch: string;
1011
+ featureGroupBy: string;
1012
+ featureConfigure: string;
1013
+ tableNameFallback: string;
1014
+ };
1015
+ };
1016
+ bulkActions: {
1017
+ apply: string;
1018
+ bulkEdit: string;
1019
+ cancel: string;
1020
+ editValues: string;
1021
+ error: string;
1022
+ placeholderForField: string;
1023
+ selection: string;
1024
+ success: string;
1025
+ one: string;
1026
+ many: string;
1027
+ };
1028
+ exporting: string;
1029
+ filters: {
1030
+ filters: string;
1031
+ moreFilters: string;
1032
+ clearAllFilters: string;
1033
+ close: string;
1034
+ locationFilter: {
1035
+ selectAll: string;
1036
+ includeSublocations: string;
1037
+ searchLocations: string;
1038
+ locations: string;
1039
+ };
1040
+ numberFilter: {
1041
+ labels: {
1042
+ and: string;
1043
+ input_placeholder: string;
1044
+ placeholder: string;
1045
+ };
1046
+ options: {
1047
+ any_value: string;
1048
+ is_between: string;
1049
+ greater_than: string;
1050
+ greater_than_equal_to: string;
1051
+ less_than: string;
1052
+ less_than_equal_to: string;
1053
+ no_value: string;
1054
+ };
1055
+ };
1056
+ };
1057
+ loading: {
1058
+ initial: string;
1059
+ secondary: string;
1060
+ };
1061
+ menuOptions: {
1062
+ sortMenuItem: {
1063
+ label: string;
1064
+ sortAscItem: string;
1065
+ sortDescItem: string;
1066
+ sortResetItem: string;
1067
+ };
1068
+ expandAllGroups: string;
1069
+ collapseAllGroups: string;
1070
+ pinColumn: string;
1071
+ pinLeft: string;
1072
+ pinRight: string;
1073
+ noPin: string;
1074
+ autoSizeThisColumn: string;
1075
+ autoSizeAllColumns: string;
1076
+ resetColumns: string;
1077
+ unGroupBy: string;
1078
+ groupBy: string;
1079
+ };
1080
+ grandTotals: string;
1081
+ search: string;
1082
+ subtotals: string;
1083
+ tableSettings: {
1084
+ configureColumns: string;
1085
+ resetToDefault: string;
1086
+ rowHeight: string;
1087
+ small: string;
1088
+ medium: string;
1089
+ large: string;
1090
+ tableSettings: string;
1091
+ groupBy: string;
1092
+ reset: string;
1093
+ selectColumnGroup: string;
1094
+ };
1095
+ rowGroupToggle: {
1096
+ expandTierOne: string;
1097
+ expandAll: string;
1098
+ collapseAll: string;
1099
+ };
1100
+ columnGroupToggle: {
1101
+ collapse: string;
1102
+ expand: string;
1103
+ };
1104
+ cells: {
1105
+ textCell: {
1106
+ placeholder: string;
1107
+ };
1108
+ currencyCell: {
1109
+ placeholder: string;
1110
+ };
1111
+ numberCell: {
1112
+ placeholder: string;
1113
+ };
1114
+ percentCell: {
1115
+ placeholder: string;
1116
+ };
1117
+ pillCell: {
1118
+ placeholder: string;
1119
+ };
1120
+ selectCell: {
1121
+ placeholder: string;
1122
+ };
1123
+ booleanCell: {
1124
+ options: {
1125
+ yes: string;
1126
+ no: string;
1127
+ };
1128
+ };
1129
+ };
1130
+ filterRenders: {
1131
+ dateFilter: {
1132
+ single: string;
1133
+ range: string;
1134
+ };
1135
+ };
1136
+ };
1137
+ };
1138
+ readonly 'fr-FR': {
1139
+ dataTable: {
1140
+ emptyState: {
1141
+ noFilteredResults: {
1142
+ description: string;
1143
+ title: string;
1144
+ itemsTitle: string;
1145
+ };
1146
+ noResults: {
1147
+ description: string;
1148
+ title: string;
1149
+ itemsTitle: string;
1150
+ tooltip: string;
1151
+ featureFilter: string;
1152
+ featureSearch: string;
1153
+ featureGroupBy: string;
1154
+ featureConfigure: string;
1155
+ tableNameFallback: string;
1156
+ };
1157
+ };
1158
+ bulkActions: {
1159
+ apply: string;
1160
+ bulkEdit: string;
1161
+ cancel: string;
1162
+ editValues: string;
1163
+ error: string;
1164
+ placeholderForField: string;
1165
+ selection: string;
1166
+ success: string;
1167
+ one: string;
1168
+ many: string;
1169
+ };
1170
+ exporting: string;
1171
+ filters: {
1172
+ filters: string;
1173
+ moreFilters: string;
1174
+ clearAllFilters: string;
1175
+ close: string;
1176
+ locationFilter: {
1177
+ selectAll: string;
1178
+ includeSublocations: string;
1179
+ searchLocations: string;
1180
+ locations: string;
1181
+ };
1182
+ numberFilter: {
1183
+ labels: {
1184
+ and: string;
1185
+ input_placeholder: string;
1186
+ placeholder: string;
1187
+ };
1188
+ options: {
1189
+ any_value: string;
1190
+ is_between: string;
1191
+ greater_than: string;
1192
+ greater_than_equal_to: string;
1193
+ less_than: string;
1194
+ less_than_equal_to: string;
1195
+ no_value: string;
1196
+ };
1197
+ };
1198
+ };
1199
+ loading: {
1200
+ initial: string;
1201
+ secondary: string;
1202
+ };
1203
+ menuOptions: {
1204
+ sortMenuItem: {
1205
+ label: string;
1206
+ sortAscItem: string;
1207
+ sortDescItem: string;
1208
+ sortResetItem: string;
1209
+ };
1210
+ expandAllGroups: string;
1211
+ collapseAllGroups: string;
1212
+ pinColumn: string;
1213
+ pinLeft: string;
1214
+ pinRight: string;
1215
+ noPin: string;
1216
+ autoSizeThisColumn: string;
1217
+ autoSizeAllColumns: string;
1218
+ resetColumns: string;
1219
+ unGroupBy: string;
1220
+ groupBy: string;
1221
+ };
1222
+ grandTotals: string;
1223
+ search: string;
1224
+ subtotals: string;
1225
+ tableSettings: {
1226
+ configureColumns: string;
1227
+ resetToDefault: string;
1228
+ rowHeight: string;
1229
+ small: string;
1230
+ medium: string;
1231
+ large: string;
1232
+ tableSettings: string;
1233
+ groupBy: string;
1234
+ reset: string;
1235
+ selectColumnGroup: string;
1236
+ };
1237
+ rowGroupToggle: {
1238
+ expandTierOne: string;
1239
+ expandAll: string;
1240
+ collapseAll: string;
1241
+ };
1242
+ columnGroupToggle: {
1243
+ collapse: string;
1244
+ expand: string;
1245
+ };
1246
+ cells: {
1247
+ textCell: {
1248
+ placeholder: string;
1249
+ };
1250
+ currencyCell: {
1251
+ placeholder: string;
1252
+ };
1253
+ numberCell: {
1254
+ placeholder: string;
1255
+ };
1256
+ percentCell: {
1257
+ placeholder: string;
1258
+ };
1259
+ pillCell: {
1260
+ placeholder: string;
1261
+ };
1262
+ selectCell: {
1263
+ placeholder: string;
1264
+ };
1265
+ booleanCell: {
1266
+ options: {
1267
+ yes: string;
1268
+ no: string;
1269
+ };
1270
+ };
1271
+ };
1272
+ filterRenders: {
1273
+ dateFilter: {
1274
+ single: string;
1275
+ range: string;
1276
+ };
1277
+ };
1278
+ };
1279
+ };
1280
+ readonly 'is-IS': {
1281
+ dataTable: {
1282
+ emptyState: {
1283
+ noFilteredResults: {
1284
+ description: string;
1285
+ title: string;
1286
+ itemsTitle: string;
1287
+ };
1288
+ noResults: {
1289
+ description: string;
1290
+ title: string;
1291
+ itemsTitle: string;
1292
+ tooltip: string;
1293
+ featureFilter: string;
1294
+ featureSearch: string;
1295
+ featureGroupBy: string;
1296
+ featureConfigure: string;
1297
+ tableNameFallback: string;
1298
+ };
1299
+ };
1300
+ bulkActions: {
1301
+ apply: string;
1302
+ bulkEdit: string;
1303
+ cancel: string;
1304
+ editValues: string;
1305
+ error: string;
1306
+ placeholderForField: string;
1307
+ selection: string;
1308
+ success: string;
1309
+ one: string;
1310
+ many: string;
1311
+ };
1312
+ exporting: string;
1313
+ filters: {
1314
+ filters: string;
1315
+ moreFilters: string;
1316
+ clearAllFilters: string;
1317
+ close: string;
1318
+ locationFilter: {
1319
+ selectAll: string;
1320
+ includeSublocations: string;
1321
+ searchLocations: string;
1322
+ locations: string;
1323
+ };
1324
+ numberFilter: {
1325
+ labels: {
1326
+ and: string;
1327
+ input_placeholder: string;
1328
+ placeholder: string;
1329
+ };
1330
+ options: {
1331
+ any_value: string;
1332
+ is_between: string;
1333
+ greater_than: string;
1334
+ greater_than_equal_to: string;
1335
+ less_than: string;
1336
+ less_than_equal_to: string;
1337
+ no_value: string;
1338
+ };
1339
+ };
1340
+ };
1341
+ loading: {
1342
+ initial: string;
1343
+ secondary: string;
1344
+ };
1345
+ menuOptions: {
1346
+ sortMenuItem: {
1347
+ label: string;
1348
+ sortAscItem: string;
1349
+ sortDescItem: string;
1350
+ sortResetItem: string;
1351
+ };
1352
+ expandAllGroups: string;
1353
+ collapseAllGroups: string;
1354
+ pinColumn: string;
1355
+ pinLeft: string;
1356
+ pinRight: string;
1357
+ noPin: string;
1358
+ autoSizeThisColumn: string;
1359
+ autoSizeAllColumns: string;
1360
+ resetColumns: string;
1361
+ unGroupBy: string;
1362
+ groupBy: string;
1363
+ };
1364
+ grandTotals: string;
1365
+ search: string;
1366
+ subtotals: string;
1367
+ tableSettings: {
1368
+ configureColumns: string;
1369
+ resetToDefault: string;
1370
+ rowHeight: string;
1371
+ small: string;
1372
+ medium: string;
1373
+ large: string;
1374
+ tableSettings: string;
1375
+ groupBy: string;
1376
+ reset: string;
1377
+ selectColumnGroup: string;
1378
+ };
1379
+ rowGroupToggle: {
1380
+ expandTierOne: string;
1381
+ expandAll: string;
1382
+ collapseAll: string;
1383
+ };
1384
+ columnGroupToggle: {
1385
+ collapse: string;
1386
+ expand: string;
1387
+ };
1388
+ cells: {
1389
+ textCell: {
1390
+ placeholder: string;
1391
+ };
1392
+ currencyCell: {
1393
+ placeholder: string;
1394
+ };
1395
+ numberCell: {
1396
+ placeholder: string;
1397
+ };
1398
+ percentCell: {
1399
+ placeholder: string;
1400
+ };
1401
+ pillCell: {
1402
+ placeholder: string;
1403
+ };
1404
+ selectCell: {
1405
+ placeholder: string;
1406
+ };
1407
+ booleanCell: {
1408
+ options: {
1409
+ yes: string;
1410
+ no: string;
1411
+ };
1412
+ };
1413
+ };
1414
+ filterRenders: {
1415
+ dateFilter: {
1416
+ single: string;
1417
+ range: string;
1418
+ };
1419
+ };
1420
+ };
1421
+ };
1422
+ readonly 'ja-JP': {
1423
+ dataTable: {
1424
+ emptyState: {
1425
+ noFilteredResults: {
1426
+ description: string;
1427
+ title: string;
1428
+ itemsTitle: string;
1429
+ };
1430
+ noResults: {
1431
+ description: string;
1432
+ title: string;
1433
+ itemsTitle: string;
1434
+ tooltip: string;
1435
+ featureFilter: string;
1436
+ featureSearch: string;
1437
+ featureGroupBy: string;
1438
+ featureConfigure: string;
1439
+ tableNameFallback: string;
1440
+ };
1441
+ };
1442
+ bulkActions: {
1443
+ apply: string;
1444
+ bulkEdit: string;
1445
+ cancel: string;
1446
+ editValues: string;
1447
+ error: string;
1448
+ placeholderForField: string;
1449
+ selection: string;
1450
+ success: string;
1451
+ one: string;
1452
+ many: string;
1453
+ };
1454
+ exporting: string;
1455
+ filters: {
1456
+ filters: string;
1457
+ moreFilters: string;
1458
+ clearAllFilters: string;
1459
+ close: string;
1460
+ locationFilter: {
1461
+ selectAll: string;
1462
+ includeSublocations: string;
1463
+ searchLocations: string;
1464
+ locations: string;
1465
+ };
1466
+ numberFilter: {
1467
+ labels: {
1468
+ and: string;
1469
+ input_placeholder: string;
1470
+ placeholder: string;
1471
+ };
1472
+ options: {
1473
+ any_value: string;
1474
+ is_between: string;
1475
+ greater_than: string;
1476
+ greater_than_equal_to: string;
1477
+ less_than: string;
1478
+ less_than_equal_to: string;
1479
+ no_value: string;
1480
+ };
1481
+ };
1482
+ };
1483
+ loading: {
1484
+ initial: string;
1485
+ secondary: string;
1486
+ };
1487
+ menuOptions: {
1488
+ sortMenuItem: {
1489
+ label: string;
1490
+ sortAscItem: string;
1491
+ sortDescItem: string;
1492
+ sortResetItem: string;
1493
+ };
1494
+ expandAllGroups: string;
1495
+ collapseAllGroups: string;
1496
+ pinColumn: string;
1497
+ pinLeft: string;
1498
+ pinRight: string;
1499
+ noPin: string;
1500
+ autoSizeThisColumn: string;
1501
+ autoSizeAllColumns: string;
1502
+ resetColumns: string;
1503
+ unGroupBy: string;
1504
+ groupBy: string;
1505
+ };
1506
+ grandTotals: string;
1507
+ search: string;
1508
+ subtotals: string;
1509
+ tableSettings: {
1510
+ configureColumns: string;
1511
+ resetToDefault: string;
1512
+ rowHeight: string;
1513
+ small: string;
1514
+ medium: string;
1515
+ large: string;
1516
+ tableSettings: string;
1517
+ groupBy: string;
1518
+ reset: string;
1519
+ selectColumnGroup: string;
1520
+ };
1521
+ rowGroupToggle: {
1522
+ expandTierOne: string;
1523
+ expandAll: string;
1524
+ collapseAll: string;
1525
+ };
1526
+ columnGroupToggle: {
1527
+ collapse: string;
1528
+ expand: string;
1529
+ };
1530
+ cells: {
1531
+ textCell: {
1532
+ placeholder: string;
1533
+ };
1534
+ currencyCell: {
1535
+ placeholder: string;
1536
+ };
1537
+ numberCell: {
1538
+ placeholder: string;
1539
+ };
1540
+ percentCell: {
1541
+ placeholder: string;
1542
+ };
1543
+ pillCell: {
1544
+ placeholder: string;
1545
+ };
1546
+ selectCell: {
1547
+ placeholder: string;
1548
+ };
1549
+ booleanCell: {
1550
+ options: {
1551
+ yes: string;
1552
+ no: string;
1553
+ };
1554
+ };
1555
+ };
1556
+ filterRenders: {
1557
+ dateFilter: {
1558
+ single: string;
1559
+ range: string;
1560
+ };
1561
+ };
1562
+ };
1563
+ };
1564
+ readonly 'pt-BR': {
1565
+ dataTable: {
1566
+ emptyState: {
1567
+ noFilteredResults: {
1568
+ description: string;
1569
+ title: string;
1570
+ itemsTitle: string;
1571
+ };
1572
+ noResults: {
1573
+ description: string;
1574
+ title: string;
1575
+ itemsTitle: string;
1576
+ tooltip: string;
1577
+ featureFilter: string;
1578
+ featureSearch: string;
1579
+ featureGroupBy: string;
1580
+ featureConfigure: string;
1581
+ tableNameFallback: string;
1582
+ };
1583
+ };
1584
+ bulkActions: {
1585
+ apply: string;
1586
+ bulkEdit: string;
1587
+ cancel: string;
1588
+ editValues: string;
1589
+ error: string;
1590
+ placeholderForField: string;
1591
+ selection: string;
1592
+ success: string;
1593
+ one: string;
1594
+ many: string;
1595
+ };
1596
+ exporting: string;
1597
+ filters: {
1598
+ filters: string;
1599
+ moreFilters: string;
1600
+ clearAllFilters: string;
1601
+ close: string;
1602
+ locationFilter: {
1603
+ selectAll: string;
1604
+ includeSublocations: string;
1605
+ searchLocations: string;
1606
+ locations: string;
1607
+ };
1608
+ numberFilter: {
1609
+ labels: {
1610
+ and: string;
1611
+ input_placeholder: string;
1612
+ placeholder: string;
1613
+ };
1614
+ options: {
1615
+ any_value: string;
1616
+ is_between: string;
1617
+ greater_than: string;
1618
+ greater_than_equal_to: string;
1619
+ less_than: string;
1620
+ less_than_equal_to: string;
1621
+ no_value: string;
1622
+ };
1623
+ };
1624
+ };
1625
+ loading: {
1626
+ initial: string;
1627
+ secondary: string;
1628
+ };
1629
+ menuOptions: {
1630
+ sortMenuItem: {
1631
+ label: string;
1632
+ sortAscItem: string;
1633
+ sortDescItem: string;
1634
+ sortResetItem: string;
1635
+ };
1636
+ expandAllGroups: string;
1637
+ collapseAllGroups: string;
1638
+ pinColumn: string;
1639
+ pinLeft: string;
1640
+ pinRight: string;
1641
+ noPin: string;
1642
+ autoSizeThisColumn: string;
1643
+ autoSizeAllColumns: string;
1644
+ resetColumns: string;
1645
+ unGroupBy: string;
1646
+ groupBy: string;
1647
+ };
1648
+ grandTotals: string;
1649
+ search: string;
1650
+ subtotals: string;
1651
+ tableSettings: {
1652
+ configureColumns: string;
1653
+ resetToDefault: string;
1654
+ rowHeight: string;
1655
+ small: string;
1656
+ medium: string;
1657
+ large: string;
1658
+ tableSettings: string;
1659
+ groupBy: string;
1660
+ reset: string;
1661
+ selectColumnGroup: string;
1662
+ };
1663
+ rowGroupToggle: {
1664
+ expandTierOne: string;
1665
+ expandAll: string;
1666
+ collapseAll: string;
1667
+ };
1668
+ columnGroupToggle: {
1669
+ collapse: string;
1670
+ expand: string;
1671
+ };
1672
+ cells: {
1673
+ textCell: {
1674
+ placeholder: string;
1675
+ };
1676
+ currencyCell: {
1677
+ placeholder: string;
1678
+ };
1679
+ numberCell: {
1680
+ placeholder: string;
1681
+ };
1682
+ percentCell: {
1683
+ placeholder: string;
1684
+ };
1685
+ pillCell: {
1686
+ placeholder: string;
1687
+ };
1688
+ selectCell: {
1689
+ placeholder: string;
1690
+ };
1691
+ booleanCell: {
1692
+ options: {
1693
+ yes: string;
1694
+ no: string;
1695
+ };
1696
+ };
1697
+ };
1698
+ filterRenders: {
1699
+ dateFilter: {
1700
+ single: string;
1701
+ range: string;
1702
+ };
1703
+ };
1704
+ };
1705
+ };
1706
+ readonly 'th-TH': {
1707
+ dataTable: {
1708
+ emptyState: {
1709
+ noFilteredResults: {
1710
+ description: string;
1711
+ title: string;
1712
+ itemsTitle: string;
1713
+ };
1714
+ noResults: {
1715
+ description: string;
1716
+ title: string;
1717
+ itemsTitle: string;
1718
+ tooltip: string;
1719
+ featureFilter: string;
1720
+ featureSearch: string;
1721
+ featureGroupBy: string;
1722
+ featureConfigure: string;
1723
+ tableNameFallback: string;
1724
+ };
1725
+ };
1726
+ bulkActions: {
1727
+ apply: string;
1728
+ bulkEdit: string;
1729
+ cancel: string;
1730
+ editValues: string;
1731
+ error: string;
1732
+ placeholderForField: string;
1733
+ selection: string;
1734
+ success: string;
1735
+ one: string;
1736
+ many: string;
1737
+ };
1738
+ exporting: string;
1739
+ filters: {
1740
+ filters: string;
1741
+ moreFilters: string;
1742
+ clearAllFilters: string;
1743
+ close: string;
1744
+ locationFilter: {
1745
+ selectAll: string;
1746
+ includeSublocations: string;
1747
+ searchLocations: string;
1748
+ locations: string;
1749
+ };
1750
+ numberFilter: {
1751
+ labels: {
1752
+ and: string;
1753
+ input_placeholder: string;
1754
+ placeholder: string;
1755
+ };
1756
+ options: {
1757
+ any_value: string;
1758
+ is_between: string;
1759
+ greater_than: string;
1760
+ greater_than_equal_to: string;
1761
+ less_than: string;
1762
+ less_than_equal_to: string;
1763
+ no_value: string;
1764
+ };
1765
+ };
1766
+ };
1767
+ loading: {
1768
+ initial: string;
1769
+ secondary: string;
1770
+ };
1771
+ menuOptions: {
1772
+ sortMenuItem: {
1773
+ label: string;
1774
+ sortAscItem: string;
1775
+ sortDescItem: string;
1776
+ sortResetItem: string;
1777
+ };
1778
+ expandAllGroups: string;
1779
+ collapseAllGroups: string;
1780
+ pinColumn: string;
1781
+ pinLeft: string;
1782
+ pinRight: string;
1783
+ noPin: string;
1784
+ autoSizeThisColumn: string;
1785
+ autoSizeAllColumns: string;
1786
+ resetColumns: string;
1787
+ unGroupBy: string;
1788
+ groupBy: string;
1789
+ };
1790
+ grandTotals: string;
1791
+ search: string;
1792
+ subtotals: string;
1793
+ tableSettings: {
1794
+ configureColumns: string;
1795
+ resetToDefault: string;
1796
+ rowHeight: string;
1797
+ small: string;
1798
+ medium: string;
1799
+ large: string;
1800
+ tableSettings: string;
1801
+ groupBy: string;
1802
+ reset: string;
1803
+ selectColumnGroup: string;
1804
+ };
1805
+ rowGroupToggle: {
1806
+ expandTierOne: string;
1807
+ expandAll: string;
1808
+ collapseAll: string;
1809
+ };
1810
+ columnGroupToggle: {
1811
+ collapse: string;
1812
+ expand: string;
1813
+ };
1814
+ cells: {
1815
+ textCell: {
1816
+ placeholder: string;
1817
+ };
1818
+ currencyCell: {
1819
+ placeholder: string;
1820
+ };
1821
+ numberCell: {
1822
+ placeholder: string;
1823
+ };
1824
+ percentCell: {
1825
+ placeholder: string;
1826
+ };
1827
+ pillCell: {
1828
+ placeholder: string;
1829
+ };
1830
+ selectCell: {
1831
+ placeholder: string;
1832
+ };
1833
+ booleanCell: {
1834
+ options: {
1835
+ yes: string;
1836
+ no: string;
1837
+ };
1838
+ };
1839
+ };
1840
+ filterRenders: {
1841
+ dateFilter: {
1842
+ single: string;
1843
+ range: string;
1844
+ };
1845
+ };
1846
+ };
1847
+ };
1848
+ readonly 'zh-SG': {
1849
+ dataTable: {
1850
+ emptyState: {
1851
+ noFilteredResults: {
1852
+ description: string;
1853
+ title: string;
1854
+ itemsTitle: string;
1855
+ };
1856
+ noResults: {
1857
+ description: string;
1858
+ title: string;
1859
+ itemsTitle: string;
1860
+ tooltip: string;
1861
+ featureFilter: string;
1862
+ featureSearch: string;
1863
+ featureGroupBy: string;
1864
+ featureConfigure: string;
1865
+ tableNameFallback: string;
1866
+ };
1867
+ };
1868
+ bulkActions: {
1869
+ apply: string;
1870
+ bulkEdit: string;
1871
+ cancel: string;
1872
+ editValues: string;
1873
+ error: string;
1874
+ placeholderForField: string;
1875
+ selection: string;
1876
+ success: string;
1877
+ one: string;
1878
+ many: string;
1879
+ };
1880
+ exporting: string;
1881
+ filters: {
1882
+ filters: string;
1883
+ moreFilters: string;
1884
+ clearAllFilters: string;
1885
+ close: string;
1886
+ locationFilter: {
1887
+ selectAll: string;
1888
+ includeSublocations: string;
1889
+ searchLocations: string;
1890
+ locations: string;
1891
+ };
1892
+ numberFilter: {
1893
+ labels: {
1894
+ and: string;
1895
+ input_placeholder: string;
1896
+ placeholder: string;
1897
+ };
1898
+ options: {
1899
+ any_value: string;
1900
+ is_between: string;
1901
+ greater_than: string;
1902
+ greater_than_equal_to: string;
1903
+ less_than: string;
1904
+ less_than_equal_to: string;
1905
+ no_value: string;
1906
+ };
1907
+ };
1908
+ };
1909
+ loading: {
1910
+ initial: string;
1911
+ secondary: string;
1912
+ };
1913
+ menuOptions: {
1914
+ sortMenuItem: {
1915
+ label: string;
1916
+ sortAscItem: string;
1917
+ sortDescItem: string;
1918
+ sortResetItem: string;
1919
+ };
1920
+ expandAllGroups: string;
1921
+ collapseAllGroups: string;
1922
+ pinColumn: string;
1923
+ pinLeft: string;
1924
+ pinRight: string;
1925
+ noPin: string;
1926
+ autoSizeThisColumn: string;
1927
+ autoSizeAllColumns: string;
1928
+ resetColumns: string;
1929
+ unGroupBy: string;
1930
+ groupBy: string;
1931
+ };
1932
+ grandTotals: string;
1933
+ search: string;
1934
+ subtotals: string;
1935
+ tableSettings: {
1936
+ configureColumns: string;
1937
+ resetToDefault: string;
1938
+ rowHeight: string;
1939
+ small: string;
1940
+ medium: string;
1941
+ large: string;
1942
+ tableSettings: string;
1943
+ groupBy: string;
1944
+ reset: string;
1945
+ selectColumnGroup: string;
1946
+ };
1947
+ rowGroupToggle: {
1948
+ expandTierOne: string;
1949
+ expandAll: string;
1950
+ collapseAll: string;
1951
+ };
1952
+ columnGroupToggle: {
1953
+ collapse: string;
1954
+ expand: string;
1955
+ };
1956
+ cells: {
1957
+ textCell: {
1958
+ placeholder: string;
1959
+ };
1960
+ currencyCell: {
1961
+ placeholder: string;
1962
+ };
1963
+ numberCell: {
1964
+ placeholder: string;
1965
+ };
1966
+ percentCell: {
1967
+ placeholder: string;
1968
+ };
1969
+ pillCell: {
1970
+ placeholder: string;
1971
+ };
1972
+ selectCell: {
1973
+ placeholder: string;
1974
+ };
1975
+ booleanCell: {
1976
+ options: {
1977
+ yes: string;
1978
+ no: string;
1979
+ };
1980
+ };
1981
+ };
1982
+ filterRenders: {
1983
+ dateFilter: {
1984
+ single: string;
1985
+ range: string;
1986
+ };
1987
+ };
1988
+ };
1989
+ };
1990
+ };