@economic/taco 0.0.6-alpha.0 → 0.0.10-alpha.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 (61) hide show
  1. package/dist/components/Accordion/Accordion.d.ts +9 -9
  2. package/dist/components/Backdrop/Backdrop.d.ts +1 -1
  3. package/dist/components/Button/Button.d.ts +11 -10
  4. package/dist/components/Dialog/Context.d.ts +2 -1
  5. package/dist/components/Dialog/Dialog.d.ts +20 -10
  6. package/dist/components/Dialog/components/Content.d.ts +9 -8
  7. package/dist/components/Hanger/Hanger.d.ts +4 -1
  8. package/dist/components/IconButton/IconButton.d.ts +5 -1
  9. package/dist/components/Menu/Menu.d.ts +3 -1
  10. package/dist/components/Popover/Popover.d.ts +4 -1
  11. package/dist/components/Select/Select.d.ts +1 -1
  12. package/dist/esm/components/Accordion/Accordion.js +14 -9
  13. package/dist/esm/components/Accordion/Accordion.js.map +1 -1
  14. package/dist/esm/components/Backdrop/Backdrop.js +5 -4
  15. package/dist/esm/components/Backdrop/Backdrop.js.map +1 -1
  16. package/dist/esm/components/Button/Button.js.map +1 -1
  17. package/dist/esm/components/Button/util.js +20 -10
  18. package/dist/esm/components/Button/util.js.map +1 -1
  19. package/dist/esm/components/Calendar/Calendar.js +1 -1
  20. package/dist/esm/components/Combobox/Combobox.js +1 -1
  21. package/dist/esm/components/Datepicker/Datepicker.js +2 -2
  22. package/dist/esm/components/Dialog/Context.js +2 -1
  23. package/dist/esm/components/Dialog/Context.js.map +1 -1
  24. package/dist/esm/components/Dialog/Dialog.js +18 -16
  25. package/dist/esm/components/Dialog/Dialog.js.map +1 -1
  26. package/dist/esm/components/Dialog/components/Content.js +46 -19
  27. package/dist/esm/components/Dialog/components/Content.js.map +1 -1
  28. package/dist/esm/components/Dialog/components/Drawer.js +3 -1
  29. package/dist/esm/components/Dialog/components/Drawer.js.map +1 -1
  30. package/dist/esm/components/Dialog/components/Extra.js +3 -1
  31. package/dist/esm/components/Dialog/components/Extra.js.map +1 -1
  32. package/dist/esm/components/Hanger/Hanger.js +6 -6
  33. package/dist/esm/components/Hanger/Hanger.js.map +1 -1
  34. package/dist/esm/components/IconButton/IconButton.js.map +1 -1
  35. package/dist/esm/components/Input/Input.js +1 -1
  36. package/dist/esm/components/Input/Input.js.map +1 -1
  37. package/dist/esm/components/Listbox/ScrollableList.js +1 -1
  38. package/dist/esm/components/Menu/Menu.js +8 -2
  39. package/dist/esm/components/Menu/Menu.js.map +1 -1
  40. package/dist/esm/components/Pagination/PageNumbers.js +1 -1
  41. package/dist/esm/components/Pagination/Pagination.js +1 -1
  42. package/dist/esm/components/Popover/Popover.js +3 -4
  43. package/dist/esm/components/Popover/Popover.js.map +1 -1
  44. package/dist/esm/components/SearchInput/SearchInput.js +7 -7
  45. package/dist/esm/components/Table/components/Table.js +1 -2
  46. package/dist/esm/components/Table/components/Table.js.map +1 -1
  47. package/dist/esm/components/Table/components/WindowedTable.js +0 -1
  48. package/dist/esm/components/Table/components/WindowedTable.js.map +1 -1
  49. package/dist/esm/components/Table/hooks/useTable.js +4 -1
  50. package/dist/esm/components/Table/hooks/useTable.js.map +1 -1
  51. package/dist/esm/components/Toast/Toast.js +1 -1
  52. package/dist/esm/components/Tour/Tour.js +2 -2
  53. package/dist/esm/index.css +45 -45
  54. package/dist/esm/index.js +7 -7
  55. package/dist/index.css +45 -45
  56. package/dist/taco.cjs.development.js +1850 -1793
  57. package/dist/taco.cjs.development.js.map +1 -1
  58. package/dist/taco.cjs.production.min.js +1 -1
  59. package/dist/taco.cjs.production.min.js.map +1 -1
  60. package/package.json +2 -2
  61. package/types.json +1073 -542
package/types.json CHANGED
@@ -1,10 +1,43 @@
1
1
  {
2
2
  "index": {
3
+ "AccordionContentProps": "React.HTMLAttributes<HTMLElement>",
4
+ "AccordionItemProps": {
5
+ "intersections": [
6
+ "React.HTMLAttributes<HTMLDivElement>"
7
+ ],
8
+ "props": [
9
+ {
10
+ "id": 13,
11
+ "name": "disabled",
12
+ "kind": 1024,
13
+ "kindString": "Property",
14
+ "flags": {
15
+ "isOptional": true
16
+ },
17
+ "type": {
18
+ "type": "intrinsic",
19
+ "name": "boolean"
20
+ }
21
+ },
22
+ {
23
+ "id": 12,
24
+ "name": "id",
25
+ "kind": 1024,
26
+ "kindString": "Property",
27
+ "flags": {},
28
+ "type": {
29
+ "type": "intrinsic",
30
+ "name": "string"
31
+ }
32
+ }
33
+ ]
34
+ },
3
35
  "AccordionProps": [
4
36
  "AccordionUncontrolledProps",
5
37
  "AccordionMultipleControlledProps",
6
38
  "AccordionSingleControlledProps"
7
39
  ],
40
+ "AccordionTriggerProps": "React.HTMLAttributes<HTMLElement>",
8
41
  "BackdropProps": "React.HTMLAttributes<HTMLDivElement>",
9
42
  "BadgeProps": {
10
43
  "intersections": [
@@ -12,7 +45,7 @@
12
45
  ],
13
46
  "props": [
14
47
  {
15
- "id": 51,
48
+ "id": 61,
16
49
  "name": "children",
17
50
  "kind": 1024,
18
51
  "kindString": "Property",
@@ -28,7 +61,7 @@
28
61
  }
29
62
  },
30
63
  {
31
- "id": 52,
64
+ "id": 62,
32
65
  "name": "compact",
33
66
  "kind": 1024,
34
67
  "kindString": "Property",
@@ -44,7 +77,7 @@
44
77
  }
45
78
  },
46
79
  {
47
- "id": 53,
80
+ "id": 63,
48
81
  "name": "outline",
49
82
  "kind": 1024,
50
83
  "kindString": "Property",
@@ -60,7 +93,7 @@
60
93
  }
61
94
  },
62
95
  {
63
- "id": 54,
96
+ "id": 64,
64
97
  "name": "state",
65
98
  "kind": 1024,
66
99
  "kindString": "Property",
@@ -84,7 +117,7 @@
84
117
  ],
85
118
  "props": [
86
119
  {
87
- "id": 63,
120
+ "id": 73,
88
121
  "name": "children",
89
122
  "kind": 1024,
90
123
  "kindString": "Property",
@@ -100,7 +133,7 @@
100
133
  }
101
134
  },
102
135
  {
103
- "id": 64,
136
+ "id": 74,
104
137
  "name": "state",
105
138
  "kind": 1024,
106
139
  "kindString": "Property",
@@ -115,7 +148,7 @@
115
148
  }
116
149
  },
117
150
  {
118
- "id": 65,
151
+ "id": 75,
119
152
  "name": "onClose",
120
153
  "kind": 2048,
121
154
  "kindString": "Method",
@@ -124,7 +157,7 @@
124
157
  },
125
158
  "signatures": [
126
159
  {
127
- "id": 66,
160
+ "id": 76,
128
161
  "name": "onClose",
129
162
  "kind": 4096,
130
163
  "kindString": "Call signature",
@@ -145,7 +178,7 @@
145
178
  ],
146
179
  "props": [
147
180
  {
148
- "id": 669,
181
+ "id": 716,
149
182
  "name": "multiselect",
150
183
  "kind": 1024,
151
184
  "kindString": "Property",
@@ -168,7 +201,7 @@
168
201
  ],
169
202
  "props": [
170
203
  {
171
- "id": 75,
204
+ "id": 85,
172
205
  "name": "appearance",
173
206
  "kind": 1024,
174
207
  "kindString": "Property",
@@ -185,111 +218,232 @@
185
218
  }
186
219
  },
187
220
  {
188
- "id": 76,
189
- "name": "dialog",
221
+ "id": 89,
222
+ "name": "fluid",
190
223
  "kind": 1024,
191
224
  "kindString": "Property",
192
225
  "flags": {
193
226
  "isOptional": true
194
227
  },
195
228
  "comment": {
196
- "shortText": "Dialog component associated with the button, clicking the button will open the dialog.\n*Note* that `onClick` event on button won't be handled, as in this case, the purpose of\nthe button should be only to open the associated dialog when clicked."
229
+ "shortText": "If fluid, button expands to the width of it's container"
197
230
  },
198
231
  "type": {
199
- "type": "reference",
200
- "typeArguments": [
201
- {
202
- "type": "reference",
203
- "id": 191,
204
- "name": "DialogProps"
205
- }
206
- ],
207
- "qualifiedName": "React.ReactElement",
208
- "package": "@types/react",
209
- "name": "React.ReactElement"
232
+ "type": "intrinsic",
233
+ "name": "boolean"
210
234
  }
211
235
  },
212
236
  {
213
- "id": 77,
214
- "name": "fluid",
237
+ "id": 99,
238
+ "name": "tooltip",
215
239
  "kind": 1024,
216
240
  "kindString": "Property",
217
241
  "flags": {
218
242
  "isOptional": true
219
243
  },
220
244
  "comment": {
221
- "shortText": "If fluid, button expands to the width of it's container"
245
+ "shortText": "A tooltip to show when hovering over the button"
222
246
  },
223
247
  "type": {
224
248
  "type": "intrinsic",
225
- "name": "boolean"
249
+ "name": "string"
226
250
  }
227
251
  },
228
252
  {
229
- "id": 78,
230
- "name": "hanger",
231
- "kind": 1024,
232
- "kindString": "Property",
253
+ "id": 86,
254
+ "name": "dialog",
255
+ "kind": 2048,
256
+ "kindString": "Method",
233
257
  "flags": {
234
258
  "isOptional": true
235
259
  },
236
- "comment": {
237
- "shortText": "Hanger component associated with the button."
238
- },
239
- "type": {
240
- "type": "reference",
241
- "typeArguments": [
242
- {
260
+ "signatures": [
261
+ {
262
+ "id": 87,
263
+ "name": "dialog",
264
+ "kind": 4096,
265
+ "kindString": "Call signature",
266
+ "flags": {},
267
+ "comment": {
268
+ "shortText": "Dialog component associated with the button, clicking the button will open the dialog.\n*Note* that `onClick` event on button won't be handled, as in this case, the purpose of\nthe button should be only to open the associated dialog when clicked."
269
+ },
270
+ "parameters": [
271
+ {
272
+ "id": 88,
273
+ "name": "props",
274
+ "kind": 32768,
275
+ "kindString": "Parameter",
276
+ "flags": {},
277
+ "type": {
278
+ "type": "reference",
279
+ "typeArguments": [
280
+ {
281
+ "type": "reference",
282
+ "id": 228,
283
+ "name": "DialogProps"
284
+ }
285
+ ],
286
+ "qualifiedName": "Partial",
287
+ "package": "typescript",
288
+ "name": "Partial"
289
+ }
290
+ }
291
+ ],
292
+ "type": {
243
293
  "type": "reference",
244
- "id": 237,
245
- "name": "HangerProps"
294
+ "qualifiedName": "global.JSX.Element",
295
+ "package": "@types/react",
296
+ "name": "Element"
246
297
  }
247
- ],
248
- "qualifiedName": "React.ReactElement",
249
- "package": "@types/react",
250
- "name": "React.ReactElement"
251
- }
298
+ }
299
+ ]
252
300
  },
253
301
  {
254
- "id": 79,
255
- "name": "popover",
256
- "kind": 1024,
257
- "kindString": "Property",
302
+ "id": 90,
303
+ "name": "hanger",
304
+ "kind": 2048,
305
+ "kindString": "Method",
258
306
  "flags": {
259
307
  "isOptional": true
260
308
  },
261
- "comment": {
262
- "shortText": "Popover component associated with the button, clicking the button will open the popover.\n*Note* that `onClick` event on button won't be handled, as in this case, the purpose of\nthe button should be only to open the associated popover when clicked."
263
- },
264
- "type": {
265
- "type": "reference",
266
- "typeArguments": [
267
- {
309
+ "signatures": [
310
+ {
311
+ "id": 91,
312
+ "name": "hanger",
313
+ "kind": 4096,
314
+ "kindString": "Call signature",
315
+ "flags": {},
316
+ "comment": {
317
+ "shortText": "Hanger component associated with the button."
318
+ },
319
+ "parameters": [
320
+ {
321
+ "id": 92,
322
+ "name": "props",
323
+ "kind": 32768,
324
+ "kindString": "Parameter",
325
+ "flags": {},
326
+ "type": {
327
+ "type": "reference",
328
+ "typeArguments": [
329
+ {
330
+ "type": "reference",
331
+ "id": 281,
332
+ "name": "HangerProps"
333
+ }
334
+ ],
335
+ "qualifiedName": "Partial",
336
+ "package": "typescript",
337
+ "name": "Partial"
338
+ }
339
+ }
340
+ ],
341
+ "type": {
268
342
  "type": "reference",
269
- "id": 516,
270
- "name": "PopoverProps"
343
+ "qualifiedName": "global.JSX.Element",
344
+ "package": "@types/react",
345
+ "name": "Element"
271
346
  }
272
- ],
273
- "qualifiedName": "React.ReactElement",
274
- "package": "@types/react",
275
- "name": "React.ReactElement"
276
- }
347
+ }
348
+ ]
277
349
  },
278
350
  {
279
- "id": 80,
280
- "name": "tooltip",
281
- "kind": 1024,
282
- "kindString": "Property",
351
+ "id": 93,
352
+ "name": "menu",
353
+ "kind": 2048,
354
+ "kindString": "Method",
283
355
  "flags": {
284
356
  "isOptional": true
285
357
  },
286
- "comment": {
287
- "shortText": "A tooltip to show when hovering over the button"
358
+ "signatures": [
359
+ {
360
+ "id": 94,
361
+ "name": "menu",
362
+ "kind": 4096,
363
+ "kindString": "Call signature",
364
+ "flags": {},
365
+ "comment": {
366
+ "shortText": "Menu component associated with the button."
367
+ },
368
+ "parameters": [
369
+ {
370
+ "id": 95,
371
+ "name": "props",
372
+ "kind": 32768,
373
+ "kindString": "Parameter",
374
+ "flags": {},
375
+ "type": {
376
+ "type": "reference",
377
+ "typeArguments": [
378
+ {
379
+ "type": "reference",
380
+ "id": 388,
381
+ "name": "MenuProps"
382
+ }
383
+ ],
384
+ "qualifiedName": "Partial",
385
+ "package": "typescript",
386
+ "name": "Partial"
387
+ }
388
+ }
389
+ ],
390
+ "type": {
391
+ "type": "reference",
392
+ "qualifiedName": "global.JSX.Element",
393
+ "package": "@types/react",
394
+ "name": "Element"
395
+ }
396
+ }
397
+ ]
398
+ },
399
+ {
400
+ "id": 96,
401
+ "name": "popover",
402
+ "kind": 2048,
403
+ "kindString": "Method",
404
+ "flags": {
405
+ "isOptional": true
288
406
  },
289
- "type": {
290
- "type": "intrinsic",
291
- "name": "string"
292
- }
407
+ "signatures": [
408
+ {
409
+ "id": 97,
410
+ "name": "popover",
411
+ "kind": 4096,
412
+ "kindString": "Call signature",
413
+ "flags": {},
414
+ "comment": {
415
+ "shortText": "Popover component associated with the button, clicking the button will open the popover.\n*Note* that `onClick` event on button won't be handled, as in this case, the purpose of\nthe button should be only to open the associated popover when clicked."
416
+ },
417
+ "parameters": [
418
+ {
419
+ "id": 98,
420
+ "name": "props",
421
+ "kind": 32768,
422
+ "kindString": "Parameter",
423
+ "flags": {},
424
+ "type": {
425
+ "type": "reference",
426
+ "typeArguments": [
427
+ {
428
+ "type": "reference",
429
+ "id": 562,
430
+ "name": "PopoverProps"
431
+ }
432
+ ],
433
+ "qualifiedName": "Partial",
434
+ "package": "typescript",
435
+ "name": "Partial"
436
+ }
437
+ }
438
+ ],
439
+ "type": {
440
+ "type": "reference",
441
+ "qualifiedName": "global.JSX.Element",
442
+ "package": "@types/react",
443
+ "name": "Element"
444
+ }
445
+ }
446
+ ]
293
447
  }
294
448
  ]
295
449
  },
@@ -299,7 +453,7 @@
299
453
  ],
300
454
  "props": [
301
455
  {
302
- "id": 113,
456
+ "id": 139,
303
457
  "name": "value",
304
458
  "kind": 1024,
305
459
  "kindString": "Property",
@@ -314,14 +468,14 @@
314
468
  }
315
469
  },
316
470
  {
317
- "id": 109,
471
+ "id": 135,
318
472
  "name": "onChange",
319
473
  "kind": 2048,
320
474
  "kindString": "Method",
321
475
  "flags": {},
322
476
  "signatures": [
323
477
  {
324
- "id": 110,
478
+ "id": 136,
325
479
  "name": "onChange",
326
480
  "kind": 4096,
327
481
  "kindString": "Call signature",
@@ -331,7 +485,7 @@
331
485
  },
332
486
  "parameters": [
333
487
  {
334
- "id": 111,
488
+ "id": 137,
335
489
  "name": "date",
336
490
  "kind": 32768,
337
491
  "kindString": "Parameter",
@@ -344,7 +498,7 @@
344
498
  }
345
499
  },
346
500
  {
347
- "id": 112,
501
+ "id": 138,
348
502
  "name": "event",
349
503
  "kind": 32768,
350
504
  "kindString": "Parameter",
@@ -385,7 +539,7 @@
385
539
  "CalendarTexts": {
386
540
  "props": [
387
541
  {
388
- "id": 104,
542
+ "id": 130,
389
543
  "name": "actions",
390
544
  "kind": 1024,
391
545
  "kindString": "Property",
@@ -395,12 +549,12 @@
395
549
  },
396
550
  "type": {
397
551
  "type": "reference",
398
- "id": 95,
552
+ "id": 121,
399
553
  "name": "CalendarTextsActions"
400
554
  }
401
555
  },
402
556
  {
403
- "id": 105,
557
+ "id": 131,
404
558
  "name": "months",
405
559
  "kind": 1024,
406
560
  "kindString": "Property",
@@ -417,7 +571,7 @@
417
571
  }
418
572
  },
419
573
  {
420
- "id": 106,
574
+ "id": 132,
421
575
  "name": "weekdaysShort",
422
576
  "kind": 1024,
423
577
  "kindString": "Property",
@@ -438,7 +592,7 @@
438
592
  "CalendarTextsActions": {
439
593
  "props": [
440
594
  {
441
- "id": 98,
595
+ "id": 124,
442
596
  "name": "nextMonth",
443
597
  "kind": 1024,
444
598
  "kindString": "Property",
@@ -452,7 +606,7 @@
452
606
  }
453
607
  },
454
608
  {
455
- "id": 100,
609
+ "id": 126,
456
610
  "name": "nextYear",
457
611
  "kind": 1024,
458
612
  "kindString": "Property",
@@ -466,7 +620,7 @@
466
620
  }
467
621
  },
468
622
  {
469
- "id": 97,
623
+ "id": 123,
470
624
  "name": "previousMonth",
471
625
  "kind": 1024,
472
626
  "kindString": "Property",
@@ -480,7 +634,7 @@
480
634
  }
481
635
  },
482
636
  {
483
- "id": 99,
637
+ "id": 125,
484
638
  "name": "previousYear",
485
639
  "kind": 1024,
486
640
  "kindString": "Property",
@@ -494,7 +648,7 @@
494
648
  }
495
649
  },
496
650
  {
497
- "id": 101,
651
+ "id": 127,
498
652
  "name": "today",
499
653
  "kind": 1024,
500
654
  "kindString": "Property",
@@ -529,7 +683,7 @@
529
683
  ],
530
684
  "props": [
531
685
  {
532
- "id": 127,
686
+ "id": 153,
533
687
  "name": "data",
534
688
  "kind": 1024,
535
689
  "kindString": "Property",
@@ -543,13 +697,13 @@
543
697
  "type": "array",
544
698
  "elementType": {
545
699
  "type": "reference",
546
- "id": 123,
700
+ "id": 149,
547
701
  "name": "ComboboxItem"
548
702
  }
549
703
  }
550
704
  },
551
705
  {
552
- "id": 128,
706
+ "id": 154,
553
707
  "name": "defaultValue",
554
708
  "kind": 1024,
555
709
  "kindString": "Property",
@@ -561,12 +715,12 @@
561
715
  },
562
716
  "type": {
563
717
  "type": "reference",
564
- "id": 124,
718
+ "id": 150,
565
719
  "name": "ComboboxValue"
566
720
  }
567
721
  },
568
722
  {
569
- "id": 129,
723
+ "id": 155,
570
724
  "name": "emptyValue",
571
725
  "kind": 1024,
572
726
  "kindString": "Property",
@@ -578,12 +732,12 @@
578
732
  },
579
733
  "type": {
580
734
  "type": "reference",
581
- "id": 124,
735
+ "id": 150,
582
736
  "name": "ComboboxValue"
583
737
  }
584
738
  },
585
739
  {
586
- "id": 130,
740
+ "id": 156,
587
741
  "name": "highlighted",
588
742
  "kind": 1024,
589
743
  "kindString": "Property",
@@ -599,7 +753,7 @@
599
753
  }
600
754
  },
601
755
  {
602
- "id": 131,
756
+ "id": 157,
603
757
  "name": "inline",
604
758
  "kind": 1024,
605
759
  "kindString": "Property",
@@ -615,7 +769,7 @@
615
769
  }
616
770
  },
617
771
  {
618
- "id": 132,
772
+ "id": 158,
619
773
  "name": "loading",
620
774
  "kind": 1024,
621
775
  "kindString": "Property",
@@ -631,7 +785,7 @@
631
785
  }
632
786
  },
633
787
  {
634
- "id": 133,
788
+ "id": 159,
635
789
  "name": "onChange",
636
790
  "kind": 1024,
637
791
  "kindString": "Property",
@@ -657,7 +811,7 @@
657
811
  }
658
812
  },
659
813
  {
660
- "id": 137,
814
+ "id": 163,
661
815
  "name": "state",
662
816
  "kind": 1024,
663
817
  "kindString": "Property",
@@ -674,7 +828,7 @@
674
828
  }
675
829
  },
676
830
  {
677
- "id": 138,
831
+ "id": 164,
678
832
  "name": "value",
679
833
  "kind": 1024,
680
834
  "kindString": "Property",
@@ -686,12 +840,12 @@
686
840
  },
687
841
  "type": {
688
842
  "type": "reference",
689
- "id": 124,
843
+ "id": 150,
690
844
  "name": "ComboboxValue"
691
845
  }
692
846
  },
693
847
  {
694
- "id": 134,
848
+ "id": 160,
695
849
  "name": "onSearch",
696
850
  "kind": 2048,
697
851
  "kindString": "Method",
@@ -700,7 +854,7 @@
700
854
  },
701
855
  "signatures": [
702
856
  {
703
- "id": 135,
857
+ "id": 161,
704
858
  "name": "onSearch",
705
859
  "kind": 4096,
706
860
  "kindString": "Call signature",
@@ -710,7 +864,7 @@
710
864
  },
711
865
  "parameters": [
712
866
  {
713
- "id": 136,
867
+ "id": 162,
714
868
  "name": "query",
715
869
  "kind": 32768,
716
870
  "kindString": "Parameter",
@@ -754,7 +908,7 @@
754
908
  ],
755
909
  "props": [
756
910
  {
757
- "id": 161,
911
+ "id": 187,
758
912
  "name": "calendar",
759
913
  "kind": 1024,
760
914
  "kindString": "Property",
@@ -766,12 +920,12 @@
766
920
  },
767
921
  "type": {
768
922
  "type": "reference",
769
- "id": 107,
923
+ "id": 133,
770
924
  "name": "CalendarProps"
771
925
  }
772
926
  },
773
927
  {
774
- "id": 162,
928
+ "id": 188,
775
929
  "name": "shortcuts",
776
930
  "kind": 1024,
777
931
  "kindString": "Property",
@@ -787,7 +941,7 @@
787
941
  }
788
942
  },
789
943
  {
790
- "id": 163,
944
+ "id": 189,
791
945
  "name": "shortcutsText",
792
946
  "kind": 1024,
793
947
  "kindString": "Property",
@@ -803,7 +957,7 @@
803
957
  }
804
958
  },
805
959
  {
806
- "id": 167,
960
+ "id": 193,
807
961
  "name": "value",
808
962
  "kind": 1024,
809
963
  "kindString": "Property",
@@ -821,7 +975,7 @@
821
975
  }
822
976
  },
823
977
  {
824
- "id": 164,
978
+ "id": 190,
825
979
  "name": "onReset",
826
980
  "kind": 2048,
827
981
  "kindString": "Method",
@@ -830,7 +984,7 @@
830
984
  },
831
985
  "signatures": [
832
986
  {
833
- "id": 165,
987
+ "id": 191,
834
988
  "name": "onReset",
835
989
  "kind": 4096,
836
990
  "kindString": "Call signature",
@@ -840,7 +994,7 @@
840
994
  },
841
995
  "parameters": [
842
996
  {
843
- "id": 166,
997
+ "id": 192,
844
998
  "name": "event",
845
999
  "kind": 32768,
846
1000
  "kindString": "Parameter",
@@ -879,7 +1033,7 @@
879
1033
  "DatepickerTexts": {
880
1034
  "props": [
881
1035
  {
882
- "id": 155,
1036
+ "id": 181,
883
1037
  "name": "calendar",
884
1038
  "kind": 1024,
885
1039
  "kindString": "Property",
@@ -893,7 +1047,7 @@
893
1047
  }
894
1048
  },
895
1049
  {
896
- "id": 156,
1050
+ "id": 182,
897
1051
  "name": "clear",
898
1052
  "kind": 1024,
899
1053
  "kindString": "Property",
@@ -907,7 +1061,7 @@
907
1061
  }
908
1062
  },
909
1063
  {
910
- "id": 157,
1064
+ "id": 183,
911
1065
  "name": "expand",
912
1066
  "kind": 1024,
913
1067
  "kindString": "Property",
@@ -921,7 +1075,7 @@
921
1075
  }
922
1076
  },
923
1077
  {
924
- "id": 158,
1078
+ "id": 184,
925
1079
  "name": "shortcuts",
926
1080
  "kind": 1024,
927
1081
  "kindString": "Property",
@@ -937,19 +1091,54 @@
937
1091
  ]
938
1092
  },
939
1093
  "DialogCloseProps": "React.HTMLAttributes<HTMLButtonElement>",
1094
+ "DialogContentDrawerRenderProps": {
1095
+ "props": [
1096
+ {
1097
+ "id": 217,
1098
+ "name": "open",
1099
+ "kind": 1024,
1100
+ "kindString": "Property",
1101
+ "flags": {},
1102
+ "type": {
1103
+ "type": "intrinsic",
1104
+ "name": "boolean"
1105
+ }
1106
+ },
1107
+ {
1108
+ "id": 218,
1109
+ "name": "toggle",
1110
+ "kind": 2048,
1111
+ "kindString": "Method",
1112
+ "flags": {},
1113
+ "signatures": [
1114
+ {
1115
+ "id": 219,
1116
+ "name": "toggle",
1117
+ "kind": 4096,
1118
+ "kindString": "Call signature",
1119
+ "flags": {},
1120
+ "type": {
1121
+ "type": "intrinsic",
1122
+ "name": "void"
1123
+ }
1124
+ }
1125
+ ]
1126
+ }
1127
+ ]
1128
+ },
940
1129
  "DialogContentProps": {
941
1130
  "intersections": [
942
1131
  "Omit<React.HTMLAttributes<HTMLDivElement>, [object Object]>"
943
1132
  ],
944
1133
  "props": [
945
1134
  {
946
- "id": 179,
947
- "name": "aria-describedby",
1135
+ "id": 205,
1136
+ "name": "aria-label",
948
1137
  "kind": 1024,
949
1138
  "kindString": "Property",
950
1139
  "flags": {},
951
1140
  "comment": {
952
- "shortText": "An accessible description to be announced when the dialog is opened"
1141
+ "shortText": "An accessible label to be announced when the dialog is opened"
953
1142
  },
954
1143
  "type": {
955
1144
  "type": "intrinsic",
@@ -957,7 +1146,7 @@
957
1146
  }
958
1147
  },
959
1148
  {
960
- "id": 180,
1149
+ "id": 206,
961
1150
  "name": "children",
962
1151
  "kind": 1024,
963
1152
  "kindString": "Property",
@@ -986,27 +1175,28 @@
986
1175
  {
987
1176
  "type": "reflection",
988
1177
  "declaration": {
989
- "id": 181,
1178
+ "id": 207,
990
1179
  "name": "__type",
991
1180
  "kind": 65536,
992
1181
  "kindString": "Type literal",
993
1182
  "flags": {},
994
1183
  "signatures": [
995
1184
  {
996
- "id": 182,
1185
+ "id": 208,
997
1186
  "name": "__type",
998
1187
  "kind": 4096,
999
1188
  "kindString": "Call signature",
1000
1189
  "flags": {},
1001
1190
  "parameters": [
1002
1191
  {
1003
- "id": 183,
1192
+ "id": 209,
1004
1193
  "name": "props",
1005
1194
  "kind": 32768,
1006
1195
  "kindString": "Parameter",
1007
1196
  "flags": {},
1008
1197
  "type": {
1009
1198
  "type": "reference",
1199
+ "id": 210,
1010
1200
  "name": "DialogContentRenderProps"
1011
1201
  }
1012
1202
  }
@@ -1026,11 +1216,49 @@
1026
1216
  }
1027
1217
  ]
1028
1218
  },
1219
+ "DialogContentRenderProps": {
1220
+ "props": [
1221
+ {
1222
+ "id": 214,
1223
+ "name": "drawer",
1224
+ "kind": 1024,
1225
+ "kindString": "Property",
1226
+ "flags": {
1227
+ "isOptional": true
1228
+ },
1229
+ "type": {
1230
+ "type": "reference",
1231
+ "id": 215,
1232
+ "name": "DialogContentDrawerRenderProps"
1233
+ }
1234
+ },
1235
+ {
1236
+ "id": 212,
1237
+ "name": "close",
1238
+ "kind": 2048,
1239
+ "kindString": "Method",
1240
+ "flags": {},
1241
+ "signatures": [
1242
+ {
1243
+ "id": 213,
1244
+ "name": "close",
1245
+ "kind": 4096,
1246
+ "kindString": "Call signature",
1247
+ "flags": {},
1248
+ "type": {
1249
+ "type": "intrinsic",
1250
+ "name": "void"
1251
+ }
1252
+ }
1253
+ ]
1254
+ }
1255
+ ]
1256
+ },
1029
1257
  "DialogFooterProps": "React.HTMLAttributes<HTMLDivElement>",
1030
1258
  "DialogProps": {
1031
1259
  "props": [
1032
1260
  {
1033
- "id": 193,
1261
+ "id": 230,
1034
1262
  "name": "children",
1035
1263
  "kind": 1024,
1036
1264
  "kindString": "Property",
@@ -1057,7 +1285,39 @@
1057
1285
  }
1058
1286
  },
1059
1287
  {
1060
- "id": 194,
1288
+ "id": 231,
1289
+ "name": "closeOnEscape",
1290
+ "kind": 1024,
1291
+ "kindString": "Property",
1292
+ "flags": {
1293
+ "isOptional": true
1294
+ },
1295
+ "comment": {
1296
+ "shortText": "When `true`, pressing escape will close the dialog"
1297
+ },
1298
+ "type": {
1299
+ "type": "intrinsic",
1300
+ "name": "boolean"
1301
+ }
1302
+ },
1303
+ {
1304
+ "id": 232,
1305
+ "name": "defaultOpen",
1306
+ "kind": 1024,
1307
+ "kindString": "Property",
1308
+ "flags": {
1309
+ "isOptional": true
1310
+ },
1311
+ "comment": {
1312
+ "shortText": "Set whether the dialog is open by default or not, use when not providing a trigger"
1313
+ },
1314
+ "type": {
1315
+ "type": "intrinsic",
1316
+ "name": "boolean"
1317
+ }
1318
+ },
1319
+ {
1320
+ "id": 233,
1061
1321
  "name": "draggable",
1062
1322
  "kind": 1024,
1063
1323
  "kindString": "Property",
@@ -1073,7 +1333,7 @@
1073
1333
  }
1074
1334
  },
1075
1335
  {
1076
- "id": 197,
1336
+ "id": 239,
1077
1337
  "name": "open",
1078
1338
  "kind": 1024,
1079
1339
  "kindString": "Property",
@@ -1081,7 +1341,23 @@
1081
1341
  "isOptional": true
1082
1342
  },
1083
1343
  "comment": {
1084
- "shortText": "Set whether the dialog is open by default or not, use when not providing a trigger"
1344
+ "shortText": "Control the open state of the dialog from outside the component"
1345
+ },
1346
+ "type": {
1347
+ "type": "intrinsic",
1348
+ "name": "boolean"
1349
+ }
1350
+ },
1351
+ {
1352
+ "id": 240,
1353
+ "name": "showCloseButton",
1354
+ "kind": 1024,
1355
+ "kindString": "Property",
1356
+ "flags": {
1357
+ "isOptional": true
1358
+ },
1359
+ "comment": {
1360
+ "shortText": "Shows the close icon button of the dialog"
1085
1361
  },
1086
1362
  "type": {
1087
1363
  "type": "intrinsic",
@@ -1089,7 +1365,7 @@
1089
1365
  }
1090
1366
  },
1091
1367
  {
1092
- "id": 198,
1368
+ "id": 241,
1093
1369
  "name": "size",
1094
1370
  "kind": 1024,
1095
1371
  "kindString": "Property",
@@ -1101,11 +1377,68 @@
1101
1377
  },
1102
1378
  "type": {
1103
1379
  "type": "reference",
1380
+ "id": 223,
1104
1381
  "name": "DialogSize"
1105
1382
  }
1106
1383
  },
1107
1384
  {
1108
- "id": 195,
1385
+ "id": 242,
1386
+ "name": "trigger",
1387
+ "kind": 1024,
1388
+ "kindString": "Property",
1389
+ "flags": {
1390
+ "isOptional": true
1391
+ },
1392
+ "comment": {
1393
+ "shortText": "A trigger to be used for the dialog, should not be set if `children` already contains a trigger"
1394
+ },
1395
+ "type": {
1396
+ "type": "reference",
1397
+ "qualifiedName": "global.JSX.Element",
1398
+ "package": "@types/react",
1399
+ "name": "JSX.Element"
1400
+ }
1401
+ },
1402
+ {
1403
+ "id": 236,
1404
+ "name": "onChange",
1405
+ "kind": 2048,
1406
+ "kindString": "Method",
1407
+ "flags": {
1408
+ "isOptional": true
1409
+ },
1410
+ "signatures": [
1411
+ {
1412
+ "id": 237,
1413
+ "name": "onChange",
1414
+ "kind": 4096,
1415
+ "kindString": "Call signature",
1416
+ "flags": {},
1417
+ "comment": {
1418
+ "shortText": "Called when the dialog opens or closes, must be used in conjunction with open"
1419
+ },
1420
+ "parameters": [
1421
+ {
1422
+ "id": 238,
1423
+ "name": "open",
1424
+ "kind": 32768,
1425
+ "kindString": "Parameter",
1426
+ "flags": {},
1427
+ "type": {
1428
+ "type": "intrinsic",
1429
+ "name": "boolean"
1430
+ }
1431
+ }
1432
+ ],
1433
+ "type": {
1434
+ "type": "intrinsic",
1435
+ "name": "void"
1436
+ }
1437
+ }
1438
+ ]
1439
+ },
1440
+ {
1441
+ "id": 234,
1109
1442
  "name": "onClose",
1110
1443
  "kind": 2048,
1111
1444
  "kindString": "Method",
@@ -1114,7 +1447,7 @@
1114
1447
  },
1115
1448
  "signatures": [
1116
1449
  {
1117
- "id": 196,
1450
+ "id": 235,
1118
1451
  "name": "onClose",
1119
1452
  "kind": 4096,
1120
1453
  "kindString": "Call signature",
@@ -1131,10 +1464,32 @@
1131
1464
  }
1132
1465
  ]
1133
1466
  },
1467
+ "DialogSize": [
1468
+ {
1469
+ "type": "literal",
1470
+ "value": "dialog"
1471
+ },
1472
+ {
1473
+ "type": "literal",
1474
+ "value": "xs"
1475
+ },
1476
+ {
1477
+ "type": "literal",
1478
+ "value": "sm"
1479
+ },
1480
+ {
1481
+ "type": "literal",
1482
+ "value": "md"
1483
+ },
1484
+ {
1485
+ "type": "literal",
1486
+ "value": "lg"
1487
+ }
1488
+ ],
1134
1489
  "DialogTexts": {
1135
1490
  "props": [
1136
1491
  {
1137
- "id": 189,
1492
+ "id": 226,
1138
1493
  "name": "close",
1139
1494
  "kind": 1024,
1140
1495
  "kindString": "Property",
@@ -1148,7 +1503,7 @@
1148
1503
  }
1149
1504
  },
1150
1505
  {
1151
- "id": 190,
1506
+ "id": 227,
1152
1507
  "name": "drag",
1153
1508
  "kind": 1024,
1154
1509
  "kindString": "Property",
@@ -1167,7 +1522,7 @@
1167
1522
  ],
1168
1523
  "props": [
1169
1524
  {
1170
- "id": 211,
1525
+ "id": 255,
1171
1526
  "name": "children",
1172
1527
  "kind": 1024,
1173
1528
  "kindString": "Property",
@@ -1183,7 +1538,7 @@
1183
1538
  }
1184
1539
  },
1185
1540
  {
1186
- "id": 212,
1541
+ "id": 256,
1187
1542
  "name": "horizontal",
1188
1543
  "kind": 1024,
1189
1544
  "kindString": "Property",
@@ -1206,7 +1561,7 @@
1206
1561
  ],
1207
1562
  "props": [
1208
1563
  {
1209
- "id": 207,
1564
+ "id": 251,
1210
1565
  "name": "Close",
1211
1566
  "kind": 1024,
1212
1567
  "kindString": "Property",
@@ -1215,9 +1570,28 @@
1215
1570
  "type": "reference",
1216
1571
  "typeArguments": [
1217
1572
  {
1218
- "type": "reference",
1219
- "id": 186,
1220
- "name": "DialogCloseProps"
1573
+ "type": "intersection",
1574
+ "types": [
1575
+ {
1576
+ "type": "reference",
1577
+ "id": 222,
1578
+ "name": "DialogCloseProps"
1579
+ },
1580
+ {
1581
+ "type": "reference",
1582
+ "typeArguments": [
1583
+ {
1584
+ "type": "reference",
1585
+ "qualifiedName": "HTMLButtonElement",
1586
+ "package": "typescript",
1587
+ "name": "HTMLButtonElement"
1588
+ }
1589
+ ],
1590
+ "qualifiedName": "React.RefAttributes",
1591
+ "package": "@types/react",
1592
+ "name": "React.RefAttributes"
1593
+ }
1594
+ ]
1221
1595
  }
1222
1596
  ],
1223
1597
  "qualifiedName": "React.ForwardRefExoticComponent",
@@ -1226,7 +1600,7 @@
1226
1600
  }
1227
1601
  },
1228
1602
  {
1229
- "id": 202,
1603
+ "id": 246,
1230
1604
  "name": "Content",
1231
1605
  "kind": 1024,
1232
1606
  "kindString": "Property",
@@ -1235,9 +1609,28 @@
1235
1609
  "type": "reference",
1236
1610
  "typeArguments": [
1237
1611
  {
1238
- "type": "reference",
1239
- "id": 177,
1240
- "name": "DialogContentProps"
1612
+ "type": "intersection",
1613
+ "types": [
1614
+ {
1615
+ "type": "reference",
1616
+ "id": 203,
1617
+ "name": "DialogContentProps"
1618
+ },
1619
+ {
1620
+ "type": "reference",
1621
+ "typeArguments": [
1622
+ {
1623
+ "type": "reference",
1624
+ "qualifiedName": "HTMLDivElement",
1625
+ "package": "typescript",
1626
+ "name": "HTMLDivElement"
1627
+ }
1628
+ ],
1629
+ "qualifiedName": "React.RefAttributes",
1630
+ "package": "@types/react",
1631
+ "name": "React.RefAttributes"
1632
+ }
1633
+ ]
1241
1634
  }
1242
1635
  ],
1243
1636
  "qualifiedName": "React.ForwardRefExoticComponent",
@@ -1246,7 +1639,7 @@
1246
1639
  }
1247
1640
  },
1248
1641
  {
1249
- "id": 206,
1642
+ "id": 250,
1250
1643
  "name": "Drawer",
1251
1644
  "kind": 1024,
1252
1645
  "kindString": "Property",
@@ -1255,8 +1648,27 @@
1255
1648
  "type": "reference",
1256
1649
  "typeArguments": [
1257
1650
  {
1258
- "type": "reference",
1259
- "name": "DialogDrawerProps"
1651
+ "type": "intersection",
1652
+ "types": [
1653
+ {
1654
+ "type": "reference",
1655
+ "name": "DialogDrawerProps"
1656
+ },
1657
+ {
1658
+ "type": "reference",
1659
+ "typeArguments": [
1660
+ {
1661
+ "type": "reference",
1662
+ "qualifiedName": "HTMLDivElement",
1663
+ "package": "typescript",
1664
+ "name": "HTMLDivElement"
1665
+ }
1666
+ ],
1667
+ "qualifiedName": "React.RefAttributes",
1668
+ "package": "@types/react",
1669
+ "name": "React.RefAttributes"
1670
+ }
1671
+ ]
1260
1672
  }
1261
1673
  ],
1262
1674
  "qualifiedName": "React.ForwardRefExoticComponent",
@@ -1265,7 +1677,7 @@
1265
1677
  }
1266
1678
  },
1267
1679
  {
1268
- "id": 205,
1680
+ "id": 249,
1269
1681
  "name": "Extra",
1270
1682
  "kind": 1024,
1271
1683
  "kindString": "Property",
@@ -1274,8 +1686,27 @@
1274
1686
  "type": "reference",
1275
1687
  "typeArguments": [
1276
1688
  {
1277
- "type": "reference",
1278
- "name": "DialogExtraProps"
1689
+ "type": "intersection",
1690
+ "types": [
1691
+ {
1692
+ "type": "reference",
1693
+ "name": "DialogExtraProps"
1694
+ },
1695
+ {
1696
+ "type": "reference",
1697
+ "typeArguments": [
1698
+ {
1699
+ "type": "reference",
1700
+ "qualifiedName": "HTMLDivElement",
1701
+ "package": "typescript",
1702
+ "name": "HTMLDivElement"
1703
+ }
1704
+ ],
1705
+ "qualifiedName": "React.RefAttributes",
1706
+ "package": "@types/react",
1707
+ "name": "React.RefAttributes"
1708
+ }
1709
+ ]
1279
1710
  }
1280
1711
  ],
1281
1712
  "qualifiedName": "React.ForwardRefExoticComponent",
@@ -1284,7 +1715,7 @@
1284
1715
  }
1285
1716
  },
1286
1717
  {
1287
- "id": 204,
1718
+ "id": 248,
1288
1719
  "name": "Footer",
1289
1720
  "kind": 1024,
1290
1721
  "kindString": "Property",
@@ -1293,9 +1724,28 @@
1293
1724
  "type": "reference",
1294
1725
  "typeArguments": [
1295
1726
  {
1296
- "type": "reference",
1297
- "id": 185,
1298
- "name": "DialogFooterProps"
1727
+ "type": "intersection",
1728
+ "types": [
1729
+ {
1730
+ "type": "reference",
1731
+ "id": 221,
1732
+ "name": "DialogFooterProps"
1733
+ },
1734
+ {
1735
+ "type": "reference",
1736
+ "typeArguments": [
1737
+ {
1738
+ "type": "reference",
1739
+ "qualifiedName": "HTMLDivElement",
1740
+ "package": "typescript",
1741
+ "name": "HTMLDivElement"
1742
+ }
1743
+ ],
1744
+ "qualifiedName": "React.RefAttributes",
1745
+ "package": "@types/react",
1746
+ "name": "React.RefAttributes"
1747
+ }
1748
+ ]
1299
1749
  }
1300
1750
  ],
1301
1751
  "qualifiedName": "React.ForwardRefExoticComponent",
@@ -1304,7 +1754,7 @@
1304
1754
  }
1305
1755
  },
1306
1756
  {
1307
- "id": 203,
1757
+ "id": 247,
1308
1758
  "name": "Title",
1309
1759
  "kind": 1024,
1310
1760
  "kindString": "Property",
@@ -1313,9 +1763,28 @@
1313
1763
  "type": "reference",
1314
1764
  "typeArguments": [
1315
1765
  {
1316
- "type": "reference",
1317
- "id": 184,
1318
- "name": "DialogTitleProps"
1766
+ "type": "intersection",
1767
+ "types": [
1768
+ {
1769
+ "type": "reference",
1770
+ "id": 220,
1771
+ "name": "DialogTitleProps"
1772
+ },
1773
+ {
1774
+ "type": "reference",
1775
+ "typeArguments": [
1776
+ {
1777
+ "type": "reference",
1778
+ "qualifiedName": "HTMLHeadingElement",
1779
+ "package": "typescript",
1780
+ "name": "HTMLHeadingElement"
1781
+ }
1782
+ ],
1783
+ "qualifiedName": "React.RefAttributes",
1784
+ "package": "@types/react",
1785
+ "name": "React.RefAttributes"
1786
+ }
1787
+ ]
1319
1788
  }
1320
1789
  ],
1321
1790
  "qualifiedName": "React.ForwardRefExoticComponent",
@@ -1324,7 +1793,7 @@
1324
1793
  }
1325
1794
  },
1326
1795
  {
1327
- "id": 201,
1796
+ "id": 245,
1328
1797
  "name": "Trigger",
1329
1798
  "kind": 1024,
1330
1799
  "kindString": "Property",
@@ -1333,8 +1802,27 @@
1333
1802
  "type": "reference",
1334
1803
  "typeArguments": [
1335
1804
  {
1336
- "type": "reference",
1337
- "name": "DialogTriggerProps"
1805
+ "type": "intersection",
1806
+ "types": [
1807
+ {
1808
+ "type": "reference",
1809
+ "name": "DialogTriggerProps"
1810
+ },
1811
+ {
1812
+ "type": "reference",
1813
+ "typeArguments": [
1814
+ {
1815
+ "type": "reference",
1816
+ "qualifiedName": "HTMLButtonElement",
1817
+ "package": "typescript",
1818
+ "name": "HTMLButtonElement"
1819
+ }
1820
+ ],
1821
+ "qualifiedName": "React.RefAttributes",
1822
+ "package": "@types/react",
1823
+ "name": "React.RefAttributes"
1824
+ }
1825
+ ]
1338
1826
  }
1339
1827
  ],
1340
1828
  "qualifiedName": "React.ForwardRefExoticComponent",
@@ -1350,7 +1838,7 @@
1350
1838
  ],
1351
1839
  "props": [
1352
1840
  {
1353
- "id": 241,
1841
+ "id": 286,
1354
1842
  "name": "Anchor",
1355
1843
  "kind": 1024,
1356
1844
  "kindString": "Property",
@@ -1360,7 +1848,7 @@
1360
1848
  "typeArguments": [
1361
1849
  {
1362
1850
  "type": "reference",
1363
- "id": 228,
1851
+ "id": 272,
1364
1852
  "name": "HangerAnchorProps"
1365
1853
  }
1366
1854
  ],
@@ -1370,7 +1858,7 @@
1370
1858
  }
1371
1859
  },
1372
1860
  {
1373
- "id": 242,
1861
+ "id": 287,
1374
1862
  "name": "Content",
1375
1863
  "kind": 1024,
1376
1864
  "kindString": "Property",
@@ -1380,7 +1868,7 @@
1380
1868
  "typeArguments": [
1381
1869
  {
1382
1870
  "type": "reference",
1383
- "id": 233,
1871
+ "id": 277,
1384
1872
  "name": "HangerContentProps"
1385
1873
  }
1386
1874
  ],
@@ -1397,7 +1885,7 @@
1397
1885
  ],
1398
1886
  "props": [
1399
1887
  {
1400
- "id": 448,
1888
+ "id": 494,
1401
1889
  "name": "Group",
1402
1890
  "kind": 1024,
1403
1891
  "kindString": "Property",
@@ -1413,7 +1901,7 @@
1413
1901
  "types": [
1414
1902
  {
1415
1903
  "type": "reference",
1416
- "id": 444,
1904
+ "id": 490,
1417
1905
  "name": "NavigationMenuGroupProps"
1418
1906
  },
1419
1907
  {
@@ -1446,7 +1934,7 @@
1446
1934
  ],
1447
1935
  "props": [
1448
1936
  {
1449
- "id": 452,
1937
+ "id": 498,
1450
1938
  "name": "Item",
1451
1939
  "kind": 1024,
1452
1940
  "kindString": "Property",
@@ -1462,7 +1950,7 @@
1462
1950
  "types": [
1463
1951
  {
1464
1952
  "type": "reference",
1465
- "id": 436,
1953
+ "id": 482,
1466
1954
  "name": "NavigationItemProps"
1467
1955
  },
1468
1956
  {
@@ -1488,7 +1976,7 @@
1488
1976
  }
1489
1977
  },
1490
1978
  {
1491
- "id": 453,
1979
+ "id": 499,
1492
1980
  "name": "Menu",
1493
1981
  "kind": 1024,
1494
1982
  "kindString": "Property",
@@ -1498,12 +1986,12 @@
1498
1986
  },
1499
1987
  "type": {
1500
1988
  "type": "reference",
1501
- "id": 446,
1989
+ "id": 492,
1502
1990
  "name": "ForwardedNavigationMenuWithStatics"
1503
1991
  }
1504
1992
  },
1505
1993
  {
1506
- "id": 454,
1994
+ "id": 500,
1507
1995
  "name": "Panel",
1508
1996
  "kind": 1024,
1509
1997
  "kindString": "Property",
@@ -1519,7 +2007,7 @@
1519
2007
  "types": [
1520
2008
  {
1521
2009
  "type": "reference",
1522
- "id": 443,
2010
+ "id": 489,
1523
2011
  "name": "NavigationPanelProps"
1524
2012
  },
1525
2013
  {
@@ -1552,7 +2040,7 @@
1552
2040
  ],
1553
2041
  "props": [
1554
2042
  {
1555
- "id": 522,
2043
+ "id": 569,
1556
2044
  "name": "Close",
1557
2045
  "kind": 1024,
1558
2046
  "kindString": "Property",
@@ -1562,7 +2050,7 @@
1562
2050
  "typeArguments": [
1563
2051
  {
1564
2052
  "type": "reference",
1565
- "id": 515,
2053
+ "id": 561,
1566
2054
  "name": "PopoverCloseProps"
1567
2055
  }
1568
2056
  ],
@@ -1572,7 +2060,7 @@
1572
2060
  }
1573
2061
  },
1574
2062
  {
1575
- "id": 521,
2063
+ "id": 568,
1576
2064
  "name": "Content",
1577
2065
  "kind": 1024,
1578
2066
  "kindString": "Property",
@@ -1582,7 +2070,7 @@
1582
2070
  "typeArguments": [
1583
2071
  {
1584
2072
  "type": "reference",
1585
- "id": 508,
2073
+ "id": 554,
1586
2074
  "name": "PopoverContentProps"
1587
2075
  }
1588
2076
  ],
@@ -1592,7 +2080,7 @@
1592
2080
  }
1593
2081
  },
1594
2082
  {
1595
- "id": 520,
2083
+ "id": 567,
1596
2084
  "name": "Trigger",
1597
2085
  "kind": 1024,
1598
2086
  "kindString": "Property",
@@ -1602,7 +2090,7 @@
1602
2090
  "typeArguments": [
1603
2091
  {
1604
2092
  "type": "reference",
1605
- "id": 503,
2093
+ "id": 549,
1606
2094
  "name": "PopoverTriggerProps"
1607
2095
  }
1608
2096
  ],
@@ -1619,7 +2107,7 @@
1619
2107
  ],
1620
2108
  "props": [
1621
2109
  {
1622
- "id": 653,
2110
+ "id": 700,
1623
2111
  "name": "Item",
1624
2112
  "kind": 1024,
1625
2113
  "kindString": "Property",
@@ -1632,7 +2120,7 @@
1632
2120
  "typeArguments": [
1633
2121
  {
1634
2122
  "type": "reference",
1635
- "id": 644,
2123
+ "id": 691,
1636
2124
  "name": "RadioGroupItemProps"
1637
2125
  }
1638
2126
  ],
@@ -1649,7 +2137,7 @@
1649
2137
  ],
1650
2138
  "props": [
1651
2139
  {
1652
- "id": 934,
2140
+ "id": 981,
1653
2141
  "name": "Content",
1654
2142
  "kind": 1024,
1655
2143
  "kindString": "Property",
@@ -1665,7 +2153,7 @@
1665
2153
  "types": [
1666
2154
  {
1667
2155
  "type": "reference",
1668
- "id": 927,
2156
+ "id": 974,
1669
2157
  "name": "TabContentProps"
1670
2158
  },
1671
2159
  {
@@ -1691,7 +2179,7 @@
1691
2179
  }
1692
2180
  },
1693
2181
  {
1694
- "id": 932,
2182
+ "id": 979,
1695
2183
  "name": "List",
1696
2184
  "kind": 1024,
1697
2185
  "kindString": "Property",
@@ -1707,7 +2195,7 @@
1707
2195
  "types": [
1708
2196
  {
1709
2197
  "type": "reference",
1710
- "id": 922,
2198
+ "id": 969,
1711
2199
  "name": "TabListProps"
1712
2200
  },
1713
2201
  {
@@ -1733,7 +2221,7 @@
1733
2221
  }
1734
2222
  },
1735
2223
  {
1736
- "id": 933,
2224
+ "id": 980,
1737
2225
  "name": "Trigger",
1738
2226
  "kind": 1024,
1739
2227
  "kindString": "Property",
@@ -1749,7 +2237,7 @@
1749
2237
  "types": [
1750
2238
  {
1751
2239
  "type": "reference",
1752
- "id": 923,
2240
+ "id": 970,
1753
2241
  "name": "TabTriggerProps"
1754
2242
  },
1755
2243
  {
@@ -1782,7 +2270,7 @@
1782
2270
  ],
1783
2271
  "props": [
1784
2272
  {
1785
- "id": 1057,
2273
+ "id": 1104,
1786
2274
  "name": "Group",
1787
2275
  "kind": 1024,
1788
2276
  "kindString": "Property",
@@ -1798,7 +2286,7 @@
1798
2286
  "types": [
1799
2287
  {
1800
2288
  "type": "reference",
1801
- "id": 1037,
2289
+ "id": 1084,
1802
2290
  "name": "TreeviewGroupProps"
1803
2291
  },
1804
2292
  {
@@ -1824,7 +2312,7 @@
1824
2312
  }
1825
2313
  },
1826
2314
  {
1827
- "id": 1056,
2315
+ "id": 1103,
1828
2316
  "name": "Item",
1829
2317
  "kind": 1024,
1830
2318
  "kindString": "Property",
@@ -1840,7 +2328,7 @@
1840
2328
  "types": [
1841
2329
  {
1842
2330
  "type": "reference",
1843
- "id": 1036,
2331
+ "id": 1083,
1844
2332
  "name": "TreeviewItemProps"
1845
2333
  },
1846
2334
  {
@@ -1873,7 +2361,7 @@
1873
2361
  ],
1874
2362
  "props": [
1875
2363
  {
1876
- "id": 219,
2364
+ "id": 263,
1877
2365
  "name": "as",
1878
2366
  "kind": 1024,
1879
2367
  "kindString": "Property",
@@ -1902,7 +2390,7 @@
1902
2390
  }
1903
2391
  },
1904
2392
  {
1905
- "id": 220,
2393
+ "id": 264,
1906
2394
  "name": "children",
1907
2395
  "kind": 1024,
1908
2396
  "kindString": "Property",
@@ -1926,7 +2414,7 @@
1926
2414
  ],
1927
2415
  "props": [
1928
2416
  {
1929
- "id": 235,
2417
+ "id": 279,
1930
2418
  "name": "onClose",
1931
2419
  "kind": 1024,
1932
2420
  "kindString": "Property",
@@ -1938,12 +2426,12 @@
1938
2426
  },
1939
2427
  "type": {
1940
2428
  "type": "reference",
1941
- "id": 229,
2429
+ "id": 273,
1942
2430
  "name": "CloseHandler"
1943
2431
  }
1944
2432
  },
1945
2433
  {
1946
- "id": 236,
2434
+ "id": 280,
1947
2435
  "name": "placement",
1948
2436
  "kind": 1024,
1949
2437
  "kindString": "Property",
@@ -1965,7 +2453,7 @@
1965
2453
  "HangerTexts": {
1966
2454
  "props": [
1967
2455
  {
1968
- "id": 227,
2456
+ "id": 271,
1969
2457
  "name": "close",
1970
2458
  "kind": 1024,
1971
2459
  "kindString": "Property",
@@ -1986,7 +2474,7 @@
1986
2474
  ],
1987
2475
  "props": [
1988
2476
  {
1989
- "id": 254,
2477
+ "id": 299,
1990
2478
  "name": "appearance",
1991
2479
  "kind": 1024,
1992
2480
  "kindString": "Property",
@@ -2003,7 +2491,7 @@
2003
2491
  }
2004
2492
  },
2005
2493
  {
2006
- "id": 255,
2494
+ "id": 300,
2007
2495
  "name": "dialog",
2008
2496
  "kind": 1024,
2009
2497
  "kindString": "Property",
@@ -2018,7 +2506,7 @@
2018
2506
  "typeArguments": [
2019
2507
  {
2020
2508
  "type": "reference",
2021
- "id": 191,
2509
+ "id": 228,
2022
2510
  "name": "DialogProps"
2023
2511
  }
2024
2512
  ],
@@ -2028,7 +2516,7 @@
2028
2516
  }
2029
2517
  },
2030
2518
  {
2031
- "id": 257,
2519
+ "id": 302,
2032
2520
  "name": "hanger",
2033
2521
  "kind": 1024,
2034
2522
  "kindString": "Property",
@@ -2043,7 +2531,7 @@
2043
2531
  "typeArguments": [
2044
2532
  {
2045
2533
  "type": "reference",
2046
- "id": 237,
2534
+ "id": 281,
2047
2535
  "name": "HangerProps"
2048
2536
  }
2049
2537
  ],
@@ -2053,7 +2541,7 @@
2053
2541
  }
2054
2542
  },
2055
2543
  {
2056
- "id": 256,
2544
+ "id": 301,
2057
2545
  "name": "icon",
2058
2546
  "kind": 1024,
2059
2547
  "kindString": "Property",
@@ -2063,12 +2551,37 @@
2063
2551
  },
2064
2552
  "type": {
2065
2553
  "type": "reference",
2066
- "id": 245,
2554
+ "id": 290,
2067
2555
  "name": "IconName"
2068
2556
  }
2069
2557
  },
2070
2558
  {
2071
- "id": 258,
2559
+ "id": 303,
2560
+ "name": "menu",
2561
+ "kind": 1024,
2562
+ "kindString": "Property",
2563
+ "flags": {
2564
+ "isOptional": true
2565
+ },
2566
+ "comment": {
2567
+ "shortText": "Menu component associated with the button."
2568
+ },
2569
+ "type": {
2570
+ "type": "reference",
2571
+ "typeArguments": [
2572
+ {
2573
+ "type": "reference",
2574
+ "id": 388,
2575
+ "name": "MenuProps"
2576
+ }
2577
+ ],
2578
+ "qualifiedName": "React.ReactElement",
2579
+ "package": "@types/react",
2580
+ "name": "React.ReactElement"
2581
+ }
2582
+ },
2583
+ {
2584
+ "id": 304,
2072
2585
  "name": "popover",
2073
2586
  "kind": 1024,
2074
2587
  "kindString": "Property",
@@ -2083,7 +2596,7 @@
2083
2596
  "typeArguments": [
2084
2597
  {
2085
2598
  "type": "reference",
2086
- "id": 516,
2599
+ "id": 562,
2087
2600
  "name": "PopoverProps"
2088
2601
  }
2089
2602
  ],
@@ -2093,7 +2606,7 @@
2093
2606
  }
2094
2607
  },
2095
2608
  {
2096
- "id": 259,
2609
+ "id": 305,
2097
2610
  "name": "rounded",
2098
2611
  "kind": 1024,
2099
2612
  "kindString": "Property",
@@ -2109,7 +2622,7 @@
2109
2622
  }
2110
2623
  },
2111
2624
  {
2112
- "id": 260,
2625
+ "id": 306,
2113
2626
  "name": "tooltip",
2114
2627
  "kind": 1024,
2115
2628
  "kindString": "Property",
@@ -2938,7 +3451,7 @@
2938
3451
  ],
2939
3452
  "props": [
2940
3453
  {
2941
- "id": 248,
3454
+ "id": 293,
2942
3455
  "name": "name",
2943
3456
  "kind": 1024,
2944
3457
  "kindString": "Property",
@@ -2948,7 +3461,7 @@
2948
3461
  },
2949
3462
  "type": {
2950
3463
  "type": "reference",
2951
- "id": 245,
3464
+ "id": 290,
2952
3465
  "name": "IconName"
2953
3466
  }
2954
3467
  }
@@ -2960,7 +3473,7 @@
2960
3473
  ],
2961
3474
  "props": [
2962
3475
  {
2963
- "id": 274,
3476
+ "id": 319,
2964
3477
  "name": "button",
2965
3478
  "kind": 1024,
2966
3479
  "kindString": "Property",
@@ -2978,7 +3491,7 @@
2978
3491
  }
2979
3492
  },
2980
3493
  {
2981
- "id": 276,
3494
+ "id": 321,
2982
3495
  "name": "highlighted",
2983
3496
  "kind": 1024,
2984
3497
  "kindString": "Property",
@@ -2994,7 +3507,7 @@
2994
3507
  }
2995
3508
  },
2996
3509
  {
2997
- "id": 275,
3510
+ "id": 320,
2998
3511
  "name": "icon",
2999
3512
  "kind": 1024,
3000
3513
  "kindString": "Property",
@@ -3009,7 +3522,7 @@
3009
3522
  "types": [
3010
3523
  {
3011
3524
  "type": "reference",
3012
- "id": 245,
3525
+ "id": 290,
3013
3526
  "name": "IconName"
3014
3527
  },
3015
3528
  {
@@ -3022,7 +3535,7 @@
3022
3535
  }
3023
3536
  },
3024
3537
  {
3025
- "id": 277,
3538
+ "id": 322,
3026
3539
  "name": "state",
3027
3540
  "kind": 1024,
3028
3541
  "kindString": "Property",
@@ -3046,7 +3559,7 @@
3046
3559
  ],
3047
3560
  "props": [
3048
3561
  {
3049
- "id": 299,
3562
+ "id": 344,
3050
3563
  "name": "children",
3051
3564
  "kind": 1024,
3052
3565
  "kindString": "Property",
@@ -3062,7 +3575,7 @@
3062
3575
  }
3063
3576
  },
3064
3577
  {
3065
- "id": 300,
3578
+ "id": 345,
3066
3579
  "name": "disabled",
3067
3580
  "kind": 1024,
3068
3581
  "kindString": "Property",
@@ -3078,7 +3591,7 @@
3078
3591
  }
3079
3592
  },
3080
3593
  {
3081
- "id": 301,
3594
+ "id": 346,
3082
3595
  "name": "message",
3083
3596
  "kind": 1024,
3084
3597
  "kindString": "Property",
@@ -3094,7 +3607,7 @@
3094
3607
  }
3095
3608
  },
3096
3609
  {
3097
- "id": 302,
3610
+ "id": 347,
3098
3611
  "name": "state",
3099
3612
  "kind": 1024,
3100
3613
  "kindString": "Property",
@@ -3120,7 +3633,7 @@
3120
3633
  ],
3121
3634
  "props": [
3122
3635
  {
3123
- "id": 318,
3636
+ "id": 363,
3124
3637
  "name": "data",
3125
3638
  "kind": 1024,
3126
3639
  "kindString": "Property",
@@ -3134,13 +3647,13 @@
3134
3647
  "type": "array",
3135
3648
  "elementType": {
3136
3649
  "type": "reference",
3137
- "id": 309,
3650
+ "id": 354,
3138
3651
  "name": "ListboxItem"
3139
3652
  }
3140
3653
  }
3141
3654
  },
3142
3655
  {
3143
- "id": 319,
3656
+ "id": 364,
3144
3657
  "name": "defaultValue",
3145
3658
  "kind": 1024,
3146
3659
  "kindString": "Property",
@@ -3152,12 +3665,12 @@
3152
3665
  },
3153
3666
  "type": {
3154
3667
  "type": "reference",
3155
- "id": 310,
3668
+ "id": 355,
3156
3669
  "name": "ListboxValue"
3157
3670
  }
3158
3671
  },
3159
3672
  {
3160
- "id": 320,
3673
+ "id": 365,
3161
3674
  "name": "emptyValue",
3162
3675
  "kind": 1024,
3163
3676
  "kindString": "Property",
@@ -3169,12 +3682,12 @@
3169
3682
  },
3170
3683
  "type": {
3171
3684
  "type": "reference",
3172
- "id": 310,
3685
+ "id": 355,
3173
3686
  "name": "ListboxValue"
3174
3687
  }
3175
3688
  },
3176
3689
  {
3177
- "id": 321,
3690
+ "id": 366,
3178
3691
  "name": "highlighted",
3179
3692
  "kind": 1024,
3180
3693
  "kindString": "Property",
@@ -3190,7 +3703,7 @@
3190
3703
  }
3191
3704
  },
3192
3705
  {
3193
- "id": 322,
3706
+ "id": 367,
3194
3707
  "name": "loading",
3195
3708
  "kind": 1024,
3196
3709
  "kindString": "Property",
@@ -3206,7 +3719,7 @@
3206
3719
  }
3207
3720
  },
3208
3721
  {
3209
- "id": 323,
3722
+ "id": 368,
3210
3723
  "name": "state",
3211
3724
  "kind": 1024,
3212
3725
  "kindString": "Property",
@@ -3223,7 +3736,7 @@
3223
3736
  }
3224
3737
  },
3225
3738
  {
3226
- "id": 324,
3739
+ "id": 369,
3227
3740
  "name": "value",
3228
3741
  "kind": 1024,
3229
3742
  "kindString": "Property",
@@ -3235,7 +3748,7 @@
3235
3748
  },
3236
3749
  "type": {
3237
3750
  "type": "reference",
3238
- "id": 310,
3751
+ "id": 355,
3239
3752
  "name": "ListboxValue"
3240
3753
  }
3241
3754
  }
@@ -3244,7 +3757,7 @@
3244
3757
  "ListboxTexts": {
3245
3758
  "props": [
3246
3759
  {
3247
- "id": 315,
3760
+ "id": 360,
3248
3761
  "name": "allOption",
3249
3762
  "kind": 1024,
3250
3763
  "kindString": "Property",
@@ -3258,7 +3771,7 @@
3258
3771
  }
3259
3772
  },
3260
3773
  {
3261
- "id": 313,
3774
+ "id": 358,
3262
3775
  "name": "empty",
3263
3776
  "kind": 1024,
3264
3777
  "kindString": "Property",
@@ -3272,7 +3785,7 @@
3272
3785
  }
3273
3786
  },
3274
3787
  {
3275
- "id": 314,
3788
+ "id": 359,
3276
3789
  "name": "loading",
3277
3790
  "kind": 1024,
3278
3791
  "kindString": "Property",
@@ -3291,7 +3804,7 @@
3291
3804
  "Localization": {
3292
3805
  "props": [
3293
3806
  {
3294
- "id": 547,
3807
+ "id": 594,
3295
3808
  "name": "formatting",
3296
3809
  "kind": 1024,
3297
3810
  "kindString": "Property",
@@ -3302,14 +3815,14 @@
3302
3815
  "type": {
3303
3816
  "type": "reflection",
3304
3817
  "declaration": {
3305
- "id": 548,
3818
+ "id": 595,
3306
3819
  "name": "__type",
3307
3820
  "kind": 65536,
3308
3821
  "kindString": "Type literal",
3309
3822
  "flags": {},
3310
3823
  "children": [
3311
3824
  {
3312
- "id": 549,
3825
+ "id": 596,
3313
3826
  "name": "date",
3314
3827
  "kind": 1024,
3315
3828
  "kindString": "Property",
@@ -3328,7 +3841,7 @@
3328
3841
  "title": "Properties",
3329
3842
  "kind": 1024,
3330
3843
  "children": [
3331
- 549
3844
+ 596
3332
3845
  ]
3333
3846
  }
3334
3847
  ]
@@ -3336,7 +3849,7 @@
3336
3849
  }
3337
3850
  },
3338
3851
  {
3339
- "id": 545,
3852
+ "id": 592,
3340
3853
  "name": "locale",
3341
3854
  "kind": 1024,
3342
3855
  "kindString": "Property",
@@ -3351,7 +3864,7 @@
3351
3864
  }
3352
3865
  },
3353
3866
  {
3354
- "id": 546,
3867
+ "id": 593,
3355
3868
  "name": "texts",
3356
3869
  "kind": 1024,
3357
3870
  "kindString": "Property",
@@ -3361,7 +3874,7 @@
3361
3874
  },
3362
3875
  "type": {
3363
3876
  "type": "reference",
3364
- "id": 530,
3877
+ "id": 577,
3365
3878
  "name": "LocalizationTexts"
3366
3879
  }
3367
3880
  }
@@ -3370,7 +3883,7 @@
3370
3883
  "LocalizationTexts": {
3371
3884
  "props": [
3372
3885
  {
3373
- "id": 532,
3886
+ "id": 579,
3374
3887
  "name": "calendar",
3375
3888
  "kind": 1024,
3376
3889
  "kindString": "Property",
@@ -3380,12 +3893,12 @@
3380
3893
  },
3381
3894
  "type": {
3382
3895
  "type": "reference",
3383
- "id": 102,
3896
+ "id": 128,
3384
3897
  "name": "CalendarTexts"
3385
3898
  }
3386
3899
  },
3387
3900
  {
3388
- "id": 533,
3901
+ "id": 580,
3389
3902
  "name": "datepicker",
3390
3903
  "kind": 1024,
3391
3904
  "kindString": "Property",
@@ -3395,12 +3908,12 @@
3395
3908
  },
3396
3909
  "type": {
3397
3910
  "type": "reference",
3398
- "id": 153,
3911
+ "id": 179,
3399
3912
  "name": "DatepickerTexts"
3400
3913
  }
3401
3914
  },
3402
3915
  {
3403
- "id": 536,
3916
+ "id": 583,
3404
3917
  "name": "dialog",
3405
3918
  "kind": 1024,
3406
3919
  "kindString": "Property",
@@ -3410,12 +3923,12 @@
3410
3923
  },
3411
3924
  "type": {
3412
3925
  "type": "reference",
3413
- "id": 187,
3926
+ "id": 224,
3414
3927
  "name": "DialogTexts"
3415
3928
  }
3416
3929
  },
3417
3930
  {
3418
- "id": 534,
3931
+ "id": 581,
3419
3932
  "name": "hanger",
3420
3933
  "kind": 1024,
3421
3934
  "kindString": "Property",
@@ -3425,12 +3938,12 @@
3425
3938
  },
3426
3939
  "type": {
3427
3940
  "type": "reference",
3428
- "id": 225,
3941
+ "id": 269,
3429
3942
  "name": "HangerTexts"
3430
3943
  }
3431
3944
  },
3432
3945
  {
3433
- "id": 535,
3946
+ "id": 582,
3434
3947
  "name": "listbox",
3435
3948
  "kind": 1024,
3436
3949
  "kindString": "Property",
@@ -3440,12 +3953,12 @@
3440
3953
  },
3441
3954
  "type": {
3442
3955
  "type": "reference",
3443
- "id": 311,
3956
+ "id": 356,
3444
3957
  "name": "ListboxTexts"
3445
3958
  }
3446
3959
  },
3447
3960
  {
3448
- "id": 537,
3961
+ "id": 584,
3449
3962
  "name": "pagination",
3450
3963
  "kind": 1024,
3451
3964
  "kindString": "Property",
@@ -3455,12 +3968,12 @@
3455
3968
  },
3456
3969
  "type": {
3457
3970
  "type": "reference",
3458
- "id": 467,
3971
+ "id": 513,
3459
3972
  "name": "PaginationTexts"
3460
3973
  }
3461
3974
  },
3462
3975
  {
3463
- "id": 542,
3976
+ "id": 589,
3464
3977
  "name": "searchInput",
3465
3978
  "kind": 1024,
3466
3979
  "kindString": "Property",
@@ -3470,12 +3983,12 @@
3470
3983
  },
3471
3984
  "type": {
3472
3985
  "type": "reference",
3473
- "id": 284,
3986
+ "id": 329,
3474
3987
  "name": "SearchInputTexts"
3475
3988
  }
3476
3989
  },
3477
3990
  {
3478
- "id": 539,
3991
+ "id": 586,
3479
3992
  "name": "select",
3480
3993
  "kind": 1024,
3481
3994
  "kindString": "Property",
@@ -3485,12 +3998,12 @@
3485
3998
  },
3486
3999
  "type": {
3487
4000
  "type": "reference",
3488
- "id": 664,
4001
+ "id": 711,
3489
4002
  "name": "SelectTexts"
3490
4003
  }
3491
4004
  },
3492
4005
  {
3493
- "id": 538,
4006
+ "id": 585,
3494
4007
  "name": "table",
3495
4008
  "kind": 1024,
3496
4009
  "kindString": "Property",
@@ -3500,12 +4013,12 @@
3500
4013
  },
3501
4014
  "type": {
3502
4015
  "type": "reference",
3503
- "id": 857,
4016
+ "id": 904,
3504
4017
  "name": "TableTexts"
3505
4018
  }
3506
4019
  },
3507
4020
  {
3508
- "id": 540,
4021
+ "id": 587,
3509
4022
  "name": "toasts",
3510
4023
  "kind": 1024,
3511
4024
  "kindString": "Property",
@@ -3519,7 +4032,7 @@
3519
4032
  }
3520
4033
  },
3521
4034
  {
3522
- "id": 541,
4035
+ "id": 588,
3523
4036
  "name": "tour",
3524
4037
  "kind": 1024,
3525
4038
  "kindString": "Property",
@@ -3529,7 +4042,7 @@
3529
4042
  },
3530
4043
  "type": {
3531
4044
  "type": "reference",
3532
- "id": 988,
4045
+ "id": 1035,
3533
4046
  "name": "TourTexts"
3534
4047
  }
3535
4048
  }
@@ -3538,7 +4051,7 @@
3538
4051
  "MenuProps": {
3539
4052
  "props": [
3540
4053
  {
3541
- "id": 345,
4054
+ "id": 390,
3542
4055
  "name": "children",
3543
4056
  "kind": 1024,
3544
4057
  "kindString": "Property",
@@ -3551,7 +4064,7 @@
3551
4064
  }
3552
4065
  },
3553
4066
  {
3554
- "id": 346,
4067
+ "id": 391,
3555
4068
  "name": "id",
3556
4069
  "kind": 1024,
3557
4070
  "kindString": "Property",
@@ -3562,6 +4075,24 @@
3562
4075
  "type": "intrinsic",
3563
4076
  "name": "string"
3564
4077
  }
4078
+ },
4079
+ {
4080
+ "id": 392,
4081
+ "name": "trigger",
4082
+ "kind": 1024,
4083
+ "kindString": "Property",
4084
+ "flags": {
4085
+ "isOptional": true
4086
+ },
4087
+ "comment": {
4088
+ "shortText": "A trigger to be used for the menu, should not be set if `children` already contains a trigger"
4089
+ },
4090
+ "type": {
4091
+ "type": "reference",
4092
+ "qualifiedName": "global.JSX.Element",
4093
+ "package": "@types/react",
4094
+ "name": "JSX.Element"
4095
+ }
3565
4096
  }
3566
4097
  ]
3567
4098
  },
@@ -3571,7 +4102,7 @@
3571
4102
  ],
3572
4103
  "props": [
3573
4104
  {
3574
- "id": 438,
4105
+ "id": 484,
3575
4106
  "name": "active",
3576
4107
  "kind": 1024,
3577
4108
  "kindString": "Property",
@@ -3587,7 +4118,7 @@
3587
4118
  }
3588
4119
  },
3589
4120
  {
3590
- "id": 439,
4121
+ "id": 485,
3591
4122
  "name": "onDrop",
3592
4123
  "kind": 1024,
3593
4124
  "kindString": "Property",
@@ -3605,7 +4136,7 @@
3605
4136
  }
3606
4137
  },
3607
4138
  {
3608
- "id": 440,
4139
+ "id": 486,
3609
4140
  "name": "postfix",
3610
4141
  "kind": 1024,
3611
4142
  "kindString": "Property",
@@ -3623,7 +4154,7 @@
3623
4154
  }
3624
4155
  },
3625
4156
  {
3626
- "id": 441,
4157
+ "id": 487,
3627
4158
  "name": "prefix",
3628
4159
  "kind": 1024,
3629
4160
  "kindString": "Property",
@@ -3641,7 +4172,7 @@
3641
4172
  }
3642
4173
  },
3643
4174
  {
3644
- "id": 442,
4175
+ "id": 488,
3645
4176
  "name": "target",
3646
4177
  "kind": 1024,
3647
4178
  "kindString": "Property",
@@ -3676,7 +4207,7 @@
3676
4207
  ],
3677
4208
  "props": [
3678
4209
  {
3679
- "id": 480,
4210
+ "id": 526,
3680
4211
  "name": "dangerouslyHijackGlobalKeyboardNavigation",
3681
4212
  "kind": 1024,
3682
4213
  "kindString": "Property",
@@ -3692,7 +4223,7 @@
3692
4223
  }
3693
4224
  },
3694
4225
  {
3695
- "id": 475,
4226
+ "id": 521,
3696
4227
  "name": "length",
3697
4228
  "kind": 1024,
3698
4229
  "kindString": "Property",
@@ -3706,7 +4237,7 @@
3706
4237
  }
3707
4238
  },
3708
4239
  {
3709
- "id": 476,
4240
+ "id": 522,
3710
4241
  "name": "pageSizes",
3711
4242
  "kind": 1024,
3712
4243
  "kindString": "Property",
@@ -3725,7 +4256,7 @@
3725
4256
  }
3726
4257
  },
3727
4258
  {
3728
- "id": 477,
4259
+ "id": 523,
3729
4260
  "name": "showPageControls",
3730
4261
  "kind": 1024,
3731
4262
  "kindString": "Property",
@@ -3741,7 +4272,7 @@
3741
4272
  }
3742
4273
  },
3743
4274
  {
3744
- "id": 478,
4275
+ "id": 524,
3745
4276
  "name": "showPageNumbers",
3746
4277
  "kind": 1024,
3747
4278
  "kindString": "Property",
@@ -3757,7 +4288,7 @@
3757
4288
  }
3758
4289
  },
3759
4290
  {
3760
- "id": 479,
4291
+ "id": 525,
3761
4292
  "name": "showPageSize",
3762
4293
  "kind": 1024,
3763
4294
  "kindString": "Property",
@@ -3777,7 +4308,7 @@
3777
4308
  "PaginationTexts": {
3778
4309
  "props": [
3779
4310
  {
3780
- "id": 472,
4311
+ "id": 518,
3781
4312
  "name": "actions",
3782
4313
  "kind": 1024,
3783
4314
  "kindString": "Property",
@@ -3787,12 +4318,12 @@
3787
4318
  },
3788
4319
  "type": {
3789
4320
  "type": "reference",
3790
- "id": 456,
4321
+ "id": 502,
3791
4322
  "name": "PaginationTextsActions"
3792
4323
  }
3793
4324
  },
3794
4325
  {
3795
- "id": 469,
4326
+ "id": 515,
3796
4327
  "name": "label",
3797
4328
  "kind": 1024,
3798
4329
  "kindString": "Property",
@@ -3806,7 +4337,7 @@
3806
4337
  }
3807
4338
  },
3808
4339
  {
3809
- "id": 470,
4340
+ "id": 516,
3810
4341
  "name": "pageSize",
3811
4342
  "kind": 1024,
3812
4343
  "kindString": "Property",
@@ -3820,7 +4351,7 @@
3820
4351
  }
3821
4352
  },
3822
4353
  {
3823
- "id": 471,
4354
+ "id": 517,
3824
4355
  "name": "showingXofYofTotal",
3825
4356
  "kind": 1024,
3826
4357
  "kindString": "Property",
@@ -3838,7 +4369,7 @@
3838
4369
  "PaginationTextsActions": {
3839
4370
  "props": [
3840
4371
  {
3841
- "id": 458,
4372
+ "id": 504,
3842
4373
  "name": "firstPage",
3843
4374
  "kind": 1024,
3844
4375
  "kindString": "Property",
@@ -3852,7 +4383,7 @@
3852
4383
  }
3853
4384
  },
3854
4385
  {
3855
- "id": 459,
4386
+ "id": 505,
3856
4387
  "name": "firstPageWithShortcut",
3857
4388
  "kind": 1024,
3858
4389
  "kindString": "Property",
@@ -3866,7 +4397,7 @@
3866
4397
  }
3867
4398
  },
3868
4399
  {
3869
- "id": 464,
4400
+ "id": 510,
3870
4401
  "name": "lastPage",
3871
4402
  "kind": 1024,
3872
4403
  "kindString": "Property",
@@ -3880,7 +4411,7 @@
3880
4411
  }
3881
4412
  },
3882
4413
  {
3883
- "id": 465,
4414
+ "id": 511,
3884
4415
  "name": "lastPageWithShortcut",
3885
4416
  "kind": 1024,
3886
4417
  "kindString": "Property",
@@ -3894,7 +4425,7 @@
3894
4425
  }
3895
4426
  },
3896
4427
  {
3897
- "id": 460,
4428
+ "id": 506,
3898
4429
  "name": "nextPage",
3899
4430
  "kind": 1024,
3900
4431
  "kindString": "Property",
@@ -3908,7 +4439,7 @@
3908
4439
  }
3909
4440
  },
3910
4441
  {
3911
- "id": 461,
4442
+ "id": 507,
3912
4443
  "name": "nextPageWithShortcut",
3913
4444
  "kind": 1024,
3914
4445
  "kindString": "Property",
@@ -3922,7 +4453,7 @@
3922
4453
  }
3923
4454
  },
3924
4455
  {
3925
- "id": 466,
4456
+ "id": 512,
3926
4457
  "name": "pageX",
3927
4458
  "kind": 1024,
3928
4459
  "kindString": "Property",
@@ -3936,7 +4467,7 @@
3936
4467
  }
3937
4468
  },
3938
4469
  {
3939
- "id": 462,
4470
+ "id": 508,
3940
4471
  "name": "previousPage",
3941
4472
  "kind": 1024,
3942
4473
  "kindString": "Property",
@@ -3950,7 +4481,7 @@
3950
4481
  }
3951
4482
  },
3952
4483
  {
3953
- "id": 463,
4484
+ "id": 509,
3954
4485
  "name": "previousPageWithShortcut",
3955
4486
  "kind": 1024,
3956
4487
  "kindString": "Property",
@@ -3972,7 +4503,7 @@
3972
4503
  ],
3973
4504
  "props": [
3974
4505
  {
3975
- "id": 510,
4506
+ "id": 556,
3976
4507
  "name": "children",
3977
4508
  "kind": 1024,
3978
4509
  "kindString": "Property",
@@ -3989,28 +4520,28 @@
3989
4520
  {
3990
4521
  "type": "reflection",
3991
4522
  "declaration": {
3992
- "id": 511,
4523
+ "id": 557,
3993
4524
  "name": "__type",
3994
4525
  "kind": 65536,
3995
4526
  "kindString": "Type literal",
3996
4527
  "flags": {},
3997
4528
  "signatures": [
3998
4529
  {
3999
- "id": 512,
4530
+ "id": 558,
4000
4531
  "name": "__type",
4001
4532
  "kind": 4096,
4002
4533
  "kindString": "Call signature",
4003
4534
  "flags": {},
4004
4535
  "parameters": [
4005
4536
  {
4006
- "id": 513,
4537
+ "id": 559,
4007
4538
  "name": "props",
4008
4539
  "kind": 32768,
4009
4540
  "kindString": "Parameter",
4010
4541
  "flags": {},
4011
4542
  "type": {
4012
4543
  "type": "reference",
4013
- "id": 504,
4544
+ "id": 550,
4014
4545
  "name": "PopoverContentRenderProps"
4015
4546
  }
4016
4547
  }
@@ -4029,7 +4560,7 @@
4029
4560
  }
4030
4561
  },
4031
4562
  {
4032
- "id": 514,
4563
+ "id": 560,
4033
4564
  "name": "placement",
4034
4565
  "kind": 1024,
4035
4566
  "kindString": "Property",
@@ -4050,14 +4581,14 @@
4050
4581
  "PopoverContentRenderProps": {
4051
4582
  "props": [
4052
4583
  {
4053
- "id": 506,
4584
+ "id": 552,
4054
4585
  "name": "close",
4055
4586
  "kind": 2048,
4056
4587
  "kindString": "Method",
4057
4588
  "flags": {},
4058
4589
  "signatures": [
4059
4590
  {
4060
- "id": 507,
4591
+ "id": 553,
4061
4592
  "name": "close",
4062
4593
  "kind": 4096,
4063
4594
  "kindString": "Call signature",
@@ -4079,7 +4610,7 @@
4079
4610
  ],
4080
4611
  "props": [
4081
4612
  {
4082
- "id": 526,
4613
+ "id": 573,
4083
4614
  "name": "duration",
4084
4615
  "kind": 1024,
4085
4616
  "kindString": "Property",
@@ -4099,7 +4630,7 @@
4099
4630
  "ProviderProps": {
4100
4631
  "props": [
4101
4632
  {
4102
- "id": 627,
4633
+ "id": 674,
4103
4634
  "name": "children",
4104
4635
  "kind": 1024,
4105
4636
  "kindString": "Property",
@@ -4115,7 +4646,7 @@
4115
4646
  }
4116
4647
  },
4117
4648
  {
4118
- "id": 628,
4649
+ "id": 675,
4119
4650
  "name": "localization",
4120
4651
  "kind": 1024,
4121
4652
  "kindString": "Property",
@@ -4127,7 +4658,7 @@
4127
4658
  },
4128
4659
  "type": {
4129
4660
  "type": "reference",
4130
- "id": 543,
4661
+ "id": 590,
4131
4662
  "name": "Localization"
4132
4663
  }
4133
4664
  }
@@ -4139,7 +4670,7 @@
4139
4670
  ],
4140
4671
  "props": [
4141
4672
  {
4142
- "id": 646,
4673
+ "id": 693,
4143
4674
  "name": "children",
4144
4675
  "kind": 1024,
4145
4676
  "kindString": "Property",
@@ -4155,7 +4686,7 @@
4155
4686
  }
4156
4687
  },
4157
4688
  {
4158
- "id": 647,
4689
+ "id": 694,
4159
4690
  "name": "disabled",
4160
4691
  "kind": 1024,
4161
4692
  "kindString": "Property",
@@ -4168,7 +4699,7 @@
4168
4699
  }
4169
4700
  },
4170
4701
  {
4171
- "id": 648,
4702
+ "id": 695,
4172
4703
  "name": "value",
4173
4704
  "kind": 1024,
4174
4705
  "kindString": "Property",
@@ -4178,7 +4709,7 @@
4178
4709
  },
4179
4710
  "type": {
4180
4711
  "type": "reference",
4181
- "id": 636,
4712
+ "id": 683,
4182
4713
  "name": "RadioGroupItemValue"
4183
4714
  }
4184
4715
  }
@@ -4203,7 +4734,7 @@
4203
4734
  ],
4204
4735
  "props": [
4205
4736
  {
4206
- "id": 701,
4737
+ "id": 748,
4207
4738
  "name": "subRows",
4208
4739
  "kind": 1024,
4209
4740
  "kindString": "Property",
@@ -4214,11 +4745,11 @@
4214
4745
  "type": "array",
4215
4746
  "elementType": {
4216
4747
  "type": "reference",
4217
- "id": 699,
4748
+ "id": 746,
4218
4749
  "typeArguments": [
4219
4750
  {
4220
4751
  "type": "reference",
4221
- "id": 703,
4752
+ "id": 750,
4222
4753
  "name": "TRow"
4223
4754
  }
4224
4755
  ],
@@ -4288,7 +4819,7 @@
4288
4819
  ],
4289
4820
  "props": [
4290
4821
  {
4291
- "id": 289,
4822
+ "id": 334,
4292
4823
  "name": "onSearch",
4293
4824
  "kind": 2048,
4294
4825
  "kindString": "Method",
@@ -4297,7 +4828,7 @@
4297
4828
  },
4298
4829
  "signatures": [
4299
4830
  {
4300
- "id": 290,
4831
+ "id": 335,
4301
4832
  "name": "onSearch",
4302
4833
  "kind": 4096,
4303
4834
  "kindString": "Call signature",
@@ -4307,7 +4838,7 @@
4307
4838
  },
4308
4839
  "parameters": [
4309
4840
  {
4310
- "id": 291,
4841
+ "id": 336,
4311
4842
  "name": "value",
4312
4843
  "kind": 32768,
4313
4844
  "kindString": "Parameter",
@@ -4354,7 +4885,7 @@
4354
4885
  "SearchInputTexts": {
4355
4886
  "props": [
4356
4887
  {
4357
- "id": 286,
4888
+ "id": 331,
4358
4889
  "name": "inputLabel",
4359
4890
  "kind": 1024,
4360
4891
  "kindString": "Property",
@@ -4375,7 +4906,7 @@
4375
4906
  ],
4376
4907
  "props": [
4377
4908
  {
4378
- "id": 672,
4909
+ "id": 719,
4379
4910
  "name": "editable",
4380
4911
  "kind": 1024,
4381
4912
  "kindString": "Property",
@@ -4395,7 +4926,7 @@
4395
4926
  "SelectTexts": {
4396
4927
  "props": [
4397
4928
  {
4398
- "id": 666,
4929
+ "id": 713,
4399
4930
  "name": "allOptionsSelected",
4400
4931
  "kind": 1024,
4401
4932
  "kindString": "Property",
@@ -4435,7 +4966,7 @@
4435
4966
  "SortRule": {
4436
4967
  "props": [
4437
4968
  {
4438
- "id": 752,
4969
+ "id": 799,
4439
4970
  "name": "accessor",
4440
4971
  "kind": 1024,
4441
4972
  "kindString": "Property",
@@ -4448,7 +4979,7 @@
4448
4979
  "typeArguments": [
4449
4980
  {
4450
4981
  "type": "reference",
4451
- "id": 754,
4982
+ "id": 801,
4452
4983
  "name": "T"
4453
4984
  }
4454
4985
  ],
@@ -4458,7 +4989,7 @@
4458
4989
  }
4459
4990
  },
4460
4991
  {
4461
- "id": 753,
4992
+ "id": 800,
4462
4993
  "name": "desc",
4463
4994
  "kind": 1024,
4464
4995
  "kindString": "Property",
@@ -4503,7 +5034,7 @@
4503
5034
  ],
4504
5035
  "props": [
4505
5036
  {
4506
- "id": 688,
5037
+ "id": 735,
4507
5038
  "name": "delay",
4508
5039
  "kind": 1024,
4509
5040
  "kindString": "Property",
@@ -4519,7 +5050,7 @@
4519
5050
  }
4520
5051
  },
4521
5052
  {
4522
- "id": 689,
5053
+ "id": 736,
4523
5054
  "name": "label",
4524
5055
  "kind": 1024,
4525
5056
  "kindString": "Property",
@@ -4546,7 +5077,7 @@
4546
5077
  ],
4547
5078
  "props": [
4548
5079
  {
4549
- "id": 929,
5080
+ "id": 976,
4550
5081
  "name": "id",
4551
5082
  "kind": 1024,
4552
5083
  "kindString": "Property",
@@ -4568,7 +5099,7 @@
4568
5099
  ],
4569
5100
  "props": [
4570
5101
  {
4571
- "id": 926,
5102
+ "id": 973,
4572
5103
  "name": "disabled",
4573
5104
  "kind": 1024,
4574
5105
  "kindString": "Property",
@@ -4584,7 +5115,7 @@
4584
5115
  }
4585
5116
  },
4586
5117
  {
4587
- "id": 925,
5118
+ "id": 972,
4588
5119
  "name": "id",
4589
5120
  "kind": 1024,
4590
5121
  "kindString": "Property",
@@ -4602,7 +5133,7 @@
4602
5133
  "TableCell": {
4603
5134
  "props": [
4604
5135
  {
4605
- "id": 758,
5136
+ "id": 805,
4606
5137
  "name": "accessor",
4607
5138
  "kind": 1024,
4608
5139
  "kindString": "Property",
@@ -4613,7 +5144,7 @@
4613
5144
  }
4614
5145
  },
4615
5146
  {
4616
- "id": 759,
5147
+ "id": 806,
4617
5148
  "name": "row",
4618
5149
  "kind": 1024,
4619
5150
  "kindString": "Property",
@@ -4623,11 +5154,11 @@
4623
5154
  },
4624
5155
  "type": {
4625
5156
  "type": "reference",
4626
- "id": 832,
5157
+ "id": 879,
4627
5158
  "typeArguments": [
4628
5159
  {
4629
5160
  "type": "reference",
4630
- "id": 761,
5161
+ "id": 808,
4631
5162
  "name": "TRow"
4632
5163
  }
4633
5164
  ],
@@ -4635,7 +5166,7 @@
4635
5166
  }
4636
5167
  },
4637
5168
  {
4638
- "id": 760,
5169
+ "id": 807,
4639
5170
  "name": "value",
4640
5171
  "kind": 1024,
4641
5172
  "kindString": "Property",
@@ -4653,7 +5184,7 @@
4653
5184
  "TableColumnProps": {
4654
5185
  "props": [
4655
5186
  {
4656
- "id": 764,
5187
+ "id": 811,
4657
5188
  "name": "accessor",
4658
5189
  "kind": 1024,
4659
5190
  "kindString": "Property",
@@ -4667,7 +5198,7 @@
4667
5198
  }
4668
5199
  },
4669
5200
  {
4670
- "id": 765,
5201
+ "id": 812,
4671
5202
  "name": "align",
4672
5203
  "kind": 1024,
4673
5204
  "kindString": "Property",
@@ -4696,7 +5227,7 @@
4696
5227
  }
4697
5228
  },
4698
5229
  {
4699
- "id": 766,
5230
+ "id": 813,
4700
5231
  "name": "className",
4701
5232
  "kind": 1024,
4702
5233
  "kindString": "Property",
@@ -4712,7 +5243,7 @@
4712
5243
  }
4713
5244
  },
4714
5245
  {
4715
- "id": 770,
5246
+ "id": 817,
4716
5247
  "name": "disableSorting",
4717
5248
  "kind": 1024,
4718
5249
  "kindString": "Property",
@@ -4728,7 +5259,7 @@
4728
5259
  }
4729
5260
  },
4730
5261
  {
4731
- "id": 774,
5262
+ "id": 821,
4732
5263
  "name": "flex",
4733
5264
  "kind": 1024,
4734
5265
  "kindString": "Property",
@@ -4748,28 +5279,28 @@
4748
5279
  {
4749
5280
  "type": "reflection",
4750
5281
  "declaration": {
4751
- "id": 775,
5282
+ "id": 822,
4752
5283
  "name": "__type",
4753
5284
  "kind": 65536,
4754
5285
  "kindString": "Type literal",
4755
5286
  "flags": {},
4756
5287
  "signatures": [
4757
5288
  {
4758
- "id": 776,
5289
+ "id": 823,
4759
5290
  "name": "__type",
4760
5291
  "kind": 4096,
4761
5292
  "kindString": "Call signature",
4762
5293
  "flags": {},
4763
5294
  "parameters": [
4764
5295
  {
4765
- "id": 777,
5296
+ "id": 824,
4766
5297
  "name": "row",
4767
5298
  "kind": 32768,
4768
5299
  "kindString": "Parameter",
4769
5300
  "flags": {},
4770
5301
  "type": {
4771
5302
  "type": "reference",
4772
- "id": 784,
5303
+ "id": 831,
4773
5304
  "name": "TRow"
4774
5305
  }
4775
5306
  }
@@ -4786,7 +5317,7 @@
4786
5317
  }
4787
5318
  },
4788
5319
  {
4789
- "id": 778,
5320
+ "id": 825,
4790
5321
  "name": "headRenderer",
4791
5322
  "kind": 1024,
4792
5323
  "kindString": "Property",
@@ -4804,7 +5335,7 @@
4804
5335
  }
4805
5336
  },
4806
5337
  {
4807
- "id": 779,
5338
+ "id": 826,
4808
5339
  "name": "hidden",
4809
5340
  "kind": 1024,
4810
5341
  "kindString": "Property",
@@ -4820,7 +5351,7 @@
4820
5351
  }
4821
5352
  },
4822
5353
  {
4823
- "id": 780,
5354
+ "id": 827,
4824
5355
  "name": "hiddenOnSubRows",
4825
5356
  "kind": 1024,
4826
5357
  "kindString": "Property",
@@ -4836,7 +5367,7 @@
4836
5367
  }
4837
5368
  },
4838
5369
  {
4839
- "id": 781,
5370
+ "id": 828,
4840
5371
  "name": "sort",
4841
5372
  "kind": 1024,
4842
5373
  "kindString": "Property",
@@ -4848,12 +5379,12 @@
4848
5379
  },
4849
5380
  "type": {
4850
5381
  "type": "reference",
4851
- "id": 743,
5382
+ "id": 790,
4852
5383
  "name": "SortDirection"
4853
5384
  }
4854
5385
  },
4855
5386
  {
4856
- "id": 782,
5387
+ "id": 829,
4857
5388
  "name": "sortType",
4858
5389
  "kind": 1024,
4859
5390
  "kindString": "Property",
@@ -4865,12 +5396,12 @@
4865
5396
  },
4866
5397
  "type": {
4867
5398
  "type": "reference",
4868
- "id": 755,
5399
+ "id": 802,
4869
5400
  "name": "SortTypes"
4870
5401
  }
4871
5402
  },
4872
5403
  {
4873
- "id": 783,
5404
+ "id": 830,
4874
5405
  "name": "style",
4875
5406
  "kind": 1024,
4876
5407
  "kindString": "Property",
@@ -4886,7 +5417,7 @@
4886
5417
  }
4887
5418
  },
4888
5419
  {
4889
- "id": 767,
5420
+ "id": 814,
4890
5421
  "name": "cellRenderer",
4891
5422
  "kind": 2048,
4892
5423
  "kindString": "Method",
@@ -4895,7 +5426,7 @@
4895
5426
  },
4896
5427
  "signatures": [
4897
5428
  {
4898
- "id": 768,
5429
+ "id": 815,
4899
5430
  "name": "cellRenderer",
4900
5431
  "kind": 4096,
4901
5432
  "kindString": "Call signature",
@@ -4905,18 +5436,18 @@
4905
5436
  },
4906
5437
  "parameters": [
4907
5438
  {
4908
- "id": 769,
5439
+ "id": 816,
4909
5440
  "name": "cellProps",
4910
5441
  "kind": 32768,
4911
5442
  "kindString": "Parameter",
4912
5443
  "flags": {},
4913
5444
  "type": {
4914
5445
  "type": "reference",
4915
- "id": 756,
5446
+ "id": 803,
4916
5447
  "typeArguments": [
4917
5448
  {
4918
5449
  "type": "reference",
4919
- "id": 784,
5450
+ "id": 831,
4920
5451
  "name": "TRow"
4921
5452
  }
4922
5453
  ],
@@ -4934,7 +5465,7 @@
4934
5465
  ]
4935
5466
  },
4936
5467
  {
4937
- "id": 771,
5468
+ "id": 818,
4938
5469
  "name": "editRenderer",
4939
5470
  "kind": 2048,
4940
5471
  "kindString": "Method",
@@ -4943,25 +5474,25 @@
4943
5474
  },
4944
5475
  "signatures": [
4945
5476
  {
4946
- "id": 772,
5477
+ "id": 819,
4947
5478
  "name": "editRenderer",
4948
5479
  "kind": 4096,
4949
5480
  "kindString": "Call signature",
4950
5481
  "flags": {},
4951
5482
  "parameters": [
4952
5483
  {
4953
- "id": 773,
5484
+ "id": 820,
4954
5485
  "name": "cellProps",
4955
5486
  "kind": 32768,
4956
5487
  "kindString": "Parameter",
4957
5488
  "flags": {},
4958
5489
  "type": {
4959
5490
  "type": "reference",
4960
- "id": 756,
5491
+ "id": 803,
4961
5492
  "typeArguments": [
4962
5493
  {
4963
5494
  "type": "reference",
4964
- "id": 784,
5495
+ "id": 831,
4965
5496
  "name": "TRow"
4966
5497
  }
4967
5498
  ],
@@ -4983,7 +5514,7 @@
4983
5514
  "TableGroupProps": {
4984
5515
  "props": [
4985
5516
  {
4986
- "id": 787,
5517
+ "id": 834,
4987
5518
  "name": "children",
4988
5519
  "kind": 1024,
4989
5520
  "kindString": "Property",
@@ -4999,11 +5530,11 @@
4999
5530
  "typeArguments": [
5000
5531
  {
5001
5532
  "type": "reference",
5002
- "id": 762,
5533
+ "id": 809,
5003
5534
  "typeArguments": [
5004
5535
  {
5005
5536
  "type": "reference",
5006
- "id": 790,
5537
+ "id": 837,
5007
5538
  "name": "TRow"
5008
5539
  }
5009
5540
  ],
@@ -5021,11 +5552,11 @@
5021
5552
  "typeArguments": [
5022
5553
  {
5023
5554
  "type": "reference",
5024
- "id": 762,
5555
+ "id": 809,
5025
5556
  "typeArguments": [
5026
5557
  {
5027
5558
  "type": "reference",
5028
- "id": 790,
5559
+ "id": 837,
5029
5560
  "name": "TRow"
5030
5561
  }
5031
5562
  ],
@@ -5041,7 +5572,7 @@
5041
5572
  }
5042
5573
  },
5043
5574
  {
5044
- "id": 788,
5575
+ "id": 835,
5045
5576
  "name": "hidden",
5046
5577
  "kind": 1024,
5047
5578
  "kindString": "Property",
@@ -5057,7 +5588,7 @@
5057
5588
  }
5058
5589
  },
5059
5590
  {
5060
- "id": 789,
5591
+ "id": 836,
5061
5592
  "name": "title",
5062
5593
  "kind": 1024,
5063
5594
  "kindString": "Property",
@@ -5078,7 +5609,7 @@
5078
5609
  ],
5079
5610
  "props": [
5080
5611
  {
5081
- "id": 826,
5612
+ "id": 873,
5082
5613
  "name": "actions",
5083
5614
  "kind": 1024,
5084
5615
  "kindString": "Property",
@@ -5092,11 +5623,11 @@
5092
5623
  "type": "array",
5093
5624
  "elementType": {
5094
5625
  "type": "reference",
5095
- "id": 739,
5626
+ "id": 786,
5096
5627
  "typeArguments": [
5097
5628
  {
5098
5629
  "type": "reference",
5099
- "id": 831,
5630
+ "id": 878,
5100
5631
  "name": "TRow"
5101
5632
  }
5102
5633
  ],
@@ -5105,7 +5636,7 @@
5105
5636
  }
5106
5637
  },
5107
5638
  {
5108
- "id": 793,
5639
+ "id": 840,
5109
5640
  "name": "autoFocus",
5110
5641
  "kind": 1024,
5111
5642
  "kindString": "Property",
@@ -5121,7 +5652,7 @@
5121
5652
  }
5122
5653
  },
5123
5654
  {
5124
- "id": 794,
5655
+ "id": 841,
5125
5656
  "name": "children",
5126
5657
  "kind": 1024,
5127
5658
  "kindString": "Property",
@@ -5134,7 +5665,7 @@
5134
5665
  "typeArguments": [
5135
5666
  {
5136
5667
  "type": "reference",
5137
- "id": 831,
5668
+ "id": 878,
5138
5669
  "name": "TRow"
5139
5670
  }
5140
5671
  ],
@@ -5142,7 +5673,7 @@
5142
5673
  }
5143
5674
  },
5144
5675
  {
5145
- "id": 796,
5676
+ "id": 843,
5146
5677
  "name": "dangerouslyHijackGlobalKeyboardNavigation",
5147
5678
  "kind": 1024,
5148
5679
  "kindString": "Property",
@@ -5158,7 +5689,7 @@
5158
5689
  }
5159
5690
  },
5160
5691
  {
5161
- "id": 795,
5692
+ "id": 842,
5162
5693
  "name": "data",
5163
5694
  "kind": 1024,
5164
5695
  "kindString": "Property",
@@ -5170,11 +5701,11 @@
5170
5701
  "type": "array",
5171
5702
  "elementType": {
5172
5703
  "type": "reference",
5173
- "id": 699,
5704
+ "id": 746,
5174
5705
  "typeArguments": [
5175
5706
  {
5176
5707
  "type": "reference",
5177
- "id": 831,
5708
+ "id": 878,
5178
5709
  "name": "TRow"
5179
5710
  }
5180
5711
  ],
@@ -5183,7 +5714,7 @@
5183
5714
  }
5184
5715
  },
5185
5716
  {
5186
- "id": 815,
5717
+ "id": 862,
5187
5718
  "name": "disablePagination",
5188
5719
  "kind": 1024,
5189
5720
  "kindString": "Property",
@@ -5196,7 +5727,7 @@
5196
5727
  }
5197
5728
  },
5198
5729
  {
5199
- "id": 811,
5730
+ "id": 858,
5200
5731
  "name": "disableSorting",
5201
5732
  "kind": 1024,
5202
5733
  "kindString": "Property",
@@ -5212,7 +5743,7 @@
5212
5743
  }
5213
5744
  },
5214
5745
  {
5215
- "id": 824,
5746
+ "id": 871,
5216
5747
  "name": "inlineEditingUniqueId",
5217
5748
  "kind": 1024,
5218
5749
  "kindString": "Property",
@@ -5227,13 +5758,13 @@
5227
5758
  "operator": "keyof",
5228
5759
  "target": {
5229
5760
  "type": "reference",
5230
- "id": 831,
5761
+ "id": 878,
5231
5762
  "name": "TRow"
5232
5763
  }
5233
5764
  }
5234
5765
  },
5235
5766
  {
5236
- "id": 816,
5767
+ "id": 863,
5237
5768
  "name": "length",
5238
5769
  "kind": 1024,
5239
5770
  "kindString": "Property",
@@ -5246,7 +5777,7 @@
5246
5777
  }
5247
5778
  },
5248
5779
  {
5249
- "id": 813,
5780
+ "id": 860,
5250
5781
  "name": "manualSorting",
5251
5782
  "kind": 1024,
5252
5783
  "kindString": "Property",
@@ -5262,7 +5793,7 @@
5262
5793
  }
5263
5794
  },
5264
5795
  {
5265
- "id": 817,
5796
+ "id": 864,
5266
5797
  "name": "onPaginate",
5267
5798
  "kind": 1024,
5268
5799
  "kindString": "Property",
@@ -5274,12 +5805,12 @@
5274
5805
  },
5275
5806
  "type": {
5276
5807
  "type": "reference",
5277
- "id": 694,
5808
+ "id": 741,
5278
5809
  "name": "PaginationHandler"
5279
5810
  }
5280
5811
  },
5281
5812
  {
5282
- "id": 830,
5813
+ "id": 877,
5283
5814
  "name": "onRowActive",
5284
5815
  "kind": 1024,
5285
5816
  "kindString": "Property",
@@ -5294,7 +5825,7 @@
5294
5825
  "typeArguments": [
5295
5826
  {
5296
5827
  "type": "reference",
5297
- "id": 831,
5828
+ "id": 878,
5298
5829
  "name": "TRow"
5299
5830
  }
5300
5831
  ],
@@ -5302,7 +5833,7 @@
5302
5833
  }
5303
5834
  },
5304
5835
  {
5305
- "id": 799,
5836
+ "id": 846,
5306
5837
  "name": "onRowClick",
5307
5838
  "kind": 1024,
5308
5839
  "kindString": "Property",
@@ -5314,11 +5845,11 @@
5314
5845
  },
5315
5846
  "type": {
5316
5847
  "type": "reference",
5317
- "id": 705,
5848
+ "id": 752,
5318
5849
  "typeArguments": [
5319
5850
  {
5320
5851
  "type": "reference",
5321
- "id": 831,
5852
+ "id": 878,
5322
5853
  "name": "TRow"
5323
5854
  }
5324
5855
  ],
@@ -5326,7 +5857,7 @@
5326
5857
  }
5327
5858
  },
5328
5859
  {
5329
- "id": 828,
5860
+ "id": 875,
5330
5861
  "name": "onRowCopy",
5331
5862
  "kind": 1024,
5332
5863
  "kindString": "Property",
@@ -5338,11 +5869,11 @@
5338
5869
  },
5339
5870
  "type": {
5340
5871
  "type": "reference",
5341
- "id": 727,
5872
+ "id": 774,
5342
5873
  "typeArguments": [
5343
5874
  {
5344
5875
  "type": "reference",
5345
- "id": 831,
5876
+ "id": 878,
5346
5877
  "name": "TRow"
5347
5878
  }
5348
5879
  ],
@@ -5350,7 +5881,7 @@
5350
5881
  }
5351
5882
  },
5352
5883
  {
5353
- "id": 825,
5884
+ "id": 872,
5354
5885
  "name": "onRowCreate",
5355
5886
  "kind": 1024,
5356
5887
  "kindString": "Property",
@@ -5362,11 +5893,11 @@
5362
5893
  },
5363
5894
  "type": {
5364
5895
  "type": "reference",
5365
- "id": 721,
5896
+ "id": 768,
5366
5897
  "typeArguments": [
5367
5898
  {
5368
5899
  "type": "reference",
5369
- "id": 831,
5900
+ "id": 878,
5370
5901
  "name": "TRow"
5371
5902
  }
5372
5903
  ],
@@ -5374,7 +5905,7 @@
5374
5905
  }
5375
5906
  },
5376
5907
  {
5377
- "id": 829,
5908
+ "id": 876,
5378
5909
  "name": "onRowDelete",
5379
5910
  "kind": 1024,
5380
5911
  "kindString": "Property",
@@ -5386,11 +5917,11 @@
5386
5917
  },
5387
5918
  "type": {
5388
5919
  "type": "reference",
5389
- "id": 733,
5920
+ "id": 780,
5390
5921
  "typeArguments": [
5391
5922
  {
5392
5923
  "type": "reference",
5393
- "id": 831,
5924
+ "id": 878,
5394
5925
  "name": "TRow"
5395
5926
  }
5396
5927
  ],
@@ -5398,7 +5929,7 @@
5398
5929
  }
5399
5930
  },
5400
5931
  {
5401
- "id": 800,
5932
+ "id": 847,
5402
5933
  "name": "onRowDrag",
5403
5934
  "kind": 1024,
5404
5935
  "kindString": "Property",
@@ -5410,11 +5941,11 @@
5410
5941
  },
5411
5942
  "type": {
5412
5943
  "type": "reference",
5413
- "id": 711,
5944
+ "id": 758,
5414
5945
  "typeArguments": [
5415
5946
  {
5416
5947
  "type": "reference",
5417
- "id": 831,
5948
+ "id": 878,
5418
5949
  "name": "TRow"
5419
5950
  }
5420
5951
  ],
@@ -5422,7 +5953,7 @@
5422
5953
  }
5423
5954
  },
5424
5955
  {
5425
- "id": 827,
5956
+ "id": 874,
5426
5957
  "name": "onRowEdit",
5427
5958
  "kind": 1024,
5428
5959
  "kindString": "Property",
@@ -5437,7 +5968,7 @@
5437
5968
  "typeArguments": [
5438
5969
  {
5439
5970
  "type": "reference",
5440
- "id": 831,
5971
+ "id": 878,
5441
5972
  "name": "TRow"
5442
5973
  }
5443
5974
  ],
@@ -5445,7 +5976,7 @@
5445
5976
  }
5446
5977
  },
5447
5978
  {
5448
- "id": 801,
5979
+ "id": 848,
5449
5980
  "name": "onSelectedRows",
5450
5981
  "kind": 1024,
5451
5982
  "kindString": "Property",
@@ -5457,12 +5988,12 @@
5457
5988
  },
5458
5989
  "type": {
5459
5990
  "type": "reference",
5460
- "id": 741,
5991
+ "id": 788,
5461
5992
  "name": "SelectedRowsHandler"
5462
5993
  }
5463
5994
  },
5464
5995
  {
5465
- "id": 812,
5996
+ "id": 859,
5466
5997
  "name": "onSort",
5467
5998
  "kind": 1024,
5468
5999
  "kindString": "Property",
@@ -5474,11 +6005,11 @@
5474
6005
  },
5475
6006
  "type": {
5476
6007
  "type": "reference",
5477
- "id": 744,
6008
+ "id": 791,
5478
6009
  "typeArguments": [
5479
6010
  {
5480
6011
  "type": "reference",
5481
- "id": 831,
6012
+ "id": 878,
5482
6013
  "name": "TRow"
5483
6014
  }
5484
6015
  ],
@@ -5486,7 +6017,7 @@
5486
6017
  }
5487
6018
  },
5488
6019
  {
5489
- "id": 818,
6020
+ "id": 865,
5490
6021
  "name": "pageIndex",
5491
6022
  "kind": 1024,
5492
6023
  "kindString": "Property",
@@ -5502,7 +6033,7 @@
5502
6033
  }
5503
6034
  },
5504
6035
  {
5505
- "id": 819,
6036
+ "id": 866,
5506
6037
  "name": "pageSize",
5507
6038
  "kind": 1024,
5508
6039
  "kindString": "Property",
@@ -5518,7 +6049,7 @@
5518
6049
  }
5519
6050
  },
5520
6051
  {
5521
- "id": 802,
6052
+ "id": 849,
5522
6053
  "name": "rowClassName",
5523
6054
  "kind": 1024,
5524
6055
  "kindString": "Property",
@@ -5538,32 +6069,32 @@
5538
6069
  {
5539
6070
  "type": "reflection",
5540
6071
  "declaration": {
5541
- "id": 803,
6072
+ "id": 850,
5542
6073
  "name": "__type",
5543
6074
  "kind": 65536,
5544
6075
  "kindString": "Type literal",
5545
6076
  "flags": {},
5546
6077
  "signatures": [
5547
6078
  {
5548
- "id": 804,
6079
+ "id": 851,
5549
6080
  "name": "__type",
5550
6081
  "kind": 4096,
5551
6082
  "kindString": "Call signature",
5552
6083
  "flags": {},
5553
6084
  "parameters": [
5554
6085
  {
5555
- "id": 805,
6086
+ "id": 852,
5556
6087
  "name": "row",
5557
6088
  "kind": 32768,
5558
6089
  "kindString": "Parameter",
5559
6090
  "flags": {},
5560
6091
  "type": {
5561
6092
  "type": "reference",
5562
- "id": 832,
6093
+ "id": 879,
5563
6094
  "typeArguments": [
5564
6095
  {
5565
6096
  "type": "reference",
5566
- "id": 831,
6097
+ "id": 878,
5567
6098
  "name": "TRow"
5568
6099
  }
5569
6100
  ],
@@ -5592,7 +6123,7 @@
5592
6123
  }
5593
6124
  },
5594
6125
  {
5595
- "id": 809,
6126
+ "id": 856,
5596
6127
  "name": "rowHeight",
5597
6128
  "kind": 1024,
5598
6129
  "kindString": "Property",
@@ -5608,7 +6139,7 @@
5608
6139
  }
5609
6140
  },
5610
6141
  {
5611
- "id": 810,
6142
+ "id": 857,
5612
6143
  "name": "selectedRows",
5613
6144
  "kind": 1024,
5614
6145
  "kindString": "Property",
@@ -5620,12 +6151,12 @@
5620
6151
  },
5621
6152
  "type": {
5622
6153
  "type": "reference",
5623
- "id": 742,
6154
+ "id": 789,
5624
6155
  "name": "SelectedRowsState"
5625
6156
  }
5626
6157
  },
5627
6158
  {
5628
- "id": 814,
6159
+ "id": 861,
5629
6160
  "name": "sortRules",
5630
6161
  "kind": 1024,
5631
6162
  "kindString": "Property",
@@ -5639,11 +6170,11 @@
5639
6170
  "type": "array",
5640
6171
  "elementType": {
5641
6172
  "type": "reference",
5642
- "id": 750,
6173
+ "id": 797,
5643
6174
  "typeArguments": [
5644
6175
  {
5645
6176
  "type": "reference",
5646
- "id": 831,
6177
+ "id": 878,
5647
6178
  "name": "TRow"
5648
6179
  }
5649
6180
  ],
@@ -5652,7 +6183,7 @@
5652
6183
  }
5653
6184
  },
5654
6185
  {
5655
- "id": 797,
6186
+ "id": 844,
5656
6187
  "name": "emptyStateRenderer",
5657
6188
  "kind": 2048,
5658
6189
  "kindString": "Method",
@@ -5661,7 +6192,7 @@
5661
6192
  },
5662
6193
  "signatures": [
5663
6194
  {
5664
- "id": 798,
6195
+ "id": 845,
5665
6196
  "name": "emptyStateRenderer",
5666
6197
  "kind": 4096,
5667
6198
  "kindString": "Call signature",
@@ -5679,7 +6210,7 @@
5679
6210
  ]
5680
6211
  },
5681
6212
  {
5682
- "id": 820,
6213
+ "id": 867,
5683
6214
  "name": "loadMore",
5684
6215
  "kind": 2048,
5685
6216
  "kindString": "Method",
@@ -5688,7 +6219,7 @@
5688
6219
  },
5689
6220
  "signatures": [
5690
6221
  {
5691
- "id": 821,
6222
+ "id": 868,
5692
6223
  "name": "loadMore",
5693
6224
  "kind": 4096,
5694
6225
  "kindString": "Call signature",
@@ -5698,7 +6229,7 @@
5698
6229
  },
5699
6230
  "parameters": [
5700
6231
  {
5701
- "id": 822,
6232
+ "id": 869,
5702
6233
  "name": "startIndex",
5703
6234
  "kind": 32768,
5704
6235
  "kindString": "Parameter",
@@ -5709,7 +6240,7 @@
5709
6240
  }
5710
6241
  },
5711
6242
  {
5712
- "id": 823,
6243
+ "id": 870,
5713
6244
  "name": "endIndex",
5714
6245
  "kind": 32768,
5715
6246
  "kindString": "Parameter",
@@ -5728,7 +6259,7 @@
5728
6259
  ]
5729
6260
  },
5730
6261
  {
5731
- "id": 806,
6262
+ "id": 853,
5732
6263
  "name": "rowExpansionRenderer",
5733
6264
  "kind": 2048,
5734
6265
  "kindString": "Method",
@@ -5737,7 +6268,7 @@
5737
6268
  },
5738
6269
  "signatures": [
5739
6270
  {
5740
- "id": 807,
6271
+ "id": 854,
5741
6272
  "name": "rowExpansionRenderer",
5742
6273
  "kind": 4096,
5743
6274
  "kindString": "Call signature",
@@ -5747,18 +6278,18 @@
5747
6278
  },
5748
6279
  "parameters": [
5749
6280
  {
5750
- "id": 808,
6281
+ "id": 855,
5751
6282
  "name": "row",
5752
6283
  "kind": 32768,
5753
6284
  "kindString": "Parameter",
5754
6285
  "flags": {},
5755
6286
  "type": {
5756
6287
  "type": "reference",
5757
- "id": 832,
6288
+ "id": 879,
5758
6289
  "typeArguments": [
5759
6290
  {
5760
6291
  "type": "reference",
5761
- "id": 831,
6292
+ "id": 878,
5762
6293
  "name": "TRow"
5763
6294
  }
5764
6295
  ],
@@ -5783,7 +6314,7 @@
5783
6314
  ],
5784
6315
  "props": [
5785
6316
  {
5786
- "id": 847,
6317
+ "id": 894,
5787
6318
  "name": "instance",
5788
6319
  "kind": 1024,
5789
6320
  "kindString": "Property",
@@ -5791,14 +6322,14 @@
5791
6322
  "type": {
5792
6323
  "type": "reflection",
5793
6324
  "declaration": {
5794
- "id": 848,
6325
+ "id": 895,
5795
6326
  "name": "__type",
5796
6327
  "kind": 65536,
5797
6328
  "kindString": "Type literal",
5798
6329
  "flags": {},
5799
6330
  "children": [
5800
6331
  {
5801
- "id": 854,
6332
+ "id": 901,
5802
6333
  "name": "resetRowEditing",
5803
6334
  "kind": 1024,
5804
6335
  "kindString": "Property",
@@ -5809,7 +6340,7 @@
5809
6340
  }
5810
6341
  },
5811
6342
  {
5812
- "id": 849,
6343
+ "id": 896,
5813
6344
  "name": "toggleAllRowsExpanded",
5814
6345
  "kind": 1024,
5815
6346
  "kindString": "Property",
@@ -5820,7 +6351,7 @@
5820
6351
  }
5821
6352
  },
5822
6353
  {
5823
- "id": 852,
6354
+ "id": 899,
5824
6355
  "name": "toggleEditing",
5825
6356
  "kind": 1024,
5826
6357
  "kindString": "Property",
@@ -5831,7 +6362,7 @@
5831
6362
  }
5832
6363
  },
5833
6364
  {
5834
- "id": 850,
6365
+ "id": 897,
5835
6366
  "name": "toggleHideAllColumns",
5836
6367
  "kind": 1024,
5837
6368
  "kindString": "Property",
@@ -5842,7 +6373,7 @@
5842
6373
  }
5843
6374
  },
5844
6375
  {
5845
- "id": 851,
6376
+ "id": 898,
5846
6377
  "name": "toggleHideColumn",
5847
6378
  "kind": 1024,
5848
6379
  "kindString": "Property",
@@ -5853,7 +6384,7 @@
5853
6384
  }
5854
6385
  },
5855
6386
  {
5856
- "id": 853,
6387
+ "id": 900,
5857
6388
  "name": "toggleRowEditing",
5858
6389
  "kind": 1024,
5859
6390
  "kindString": "Property",
@@ -5864,7 +6395,7 @@
5864
6395
  }
5865
6396
  },
5866
6397
  {
5867
- "id": 855,
6398
+ "id": 902,
5868
6399
  "name": "toggleRowExpanded",
5869
6400
  "kind": 1024,
5870
6401
  "kindString": "Property",
@@ -5875,7 +6406,7 @@
5875
6406
  }
5876
6407
  },
5877
6408
  {
5878
- "id": 856,
6409
+ "id": 903,
5879
6410
  "name": "toggleSortBy",
5880
6411
  "kind": 1024,
5881
6412
  "kindString": "Property",
@@ -5891,14 +6422,14 @@
5891
6422
  "title": "Properties",
5892
6423
  "kind": 1024,
5893
6424
  "children": [
5894
- 854,
5895
- 849,
5896
- 852,
5897
- 850,
5898
- 851,
5899
- 853,
5900
- 855,
5901
- 856
6425
+ 901,
6426
+ 896,
6427
+ 899,
6428
+ 897,
6429
+ 898,
6430
+ 900,
6431
+ 902,
6432
+ 903
5902
6433
  ]
5903
6434
  }
5904
6435
  ]
@@ -5910,7 +6441,7 @@
5910
6441
  "TableRow": {
5911
6442
  "props": [
5912
6443
  {
5913
- "id": 836,
6444
+ "id": 883,
5914
6445
  "name": "depth",
5915
6446
  "kind": 1024,
5916
6447
  "kindString": "Property",
@@ -5923,7 +6454,7 @@
5923
6454
  }
5924
6455
  },
5925
6456
  {
5926
- "id": 834,
6457
+ "id": 881,
5927
6458
  "name": "index",
5928
6459
  "kind": 1024,
5929
6460
  "kindString": "Property",
@@ -5937,7 +6468,7 @@
5937
6468
  }
5938
6469
  },
5939
6470
  {
5940
- "id": 835,
6471
+ "id": 882,
5941
6472
  "name": "indexPath",
5942
6473
  "kind": 1024,
5943
6474
  "kindString": "Property",
@@ -5951,7 +6482,7 @@
5951
6482
  }
5952
6483
  },
5953
6484
  {
5954
- "id": 841,
6485
+ "id": 888,
5955
6486
  "name": "isEditing",
5956
6487
  "kind": 1024,
5957
6488
  "kindString": "Property",
@@ -5964,7 +6495,7 @@
5964
6495
  }
5965
6496
  },
5966
6497
  {
5967
- "id": 837,
6498
+ "id": 884,
5968
6499
  "name": "isExpanded",
5969
6500
  "kind": 1024,
5970
6501
  "kindString": "Property",
@@ -5980,7 +6511,7 @@
5980
6511
  }
5981
6512
  },
5982
6513
  {
5983
- "id": 840,
6514
+ "id": 887,
5984
6515
  "name": "values",
5985
6516
  "kind": 1024,
5986
6517
  "kindString": "Property",
@@ -5990,11 +6521,11 @@
5990
6521
  },
5991
6522
  "type": {
5992
6523
  "type": "reference",
5993
- "id": 699,
6524
+ "id": 746,
5994
6525
  "typeArguments": [
5995
6526
  {
5996
6527
  "type": "reference",
5997
- "id": 844,
6528
+ "id": 891,
5998
6529
  "name": "TRow"
5999
6530
  }
6000
6531
  ],
@@ -6002,7 +6533,7 @@
6002
6533
  }
6003
6534
  },
6004
6535
  {
6005
- "id": 842,
6536
+ "id": 889,
6006
6537
  "name": "toggleRowEditing",
6007
6538
  "kind": 2048,
6008
6539
  "kindString": "Method",
@@ -6011,7 +6542,7 @@
6011
6542
  },
6012
6543
  "signatures": [
6013
6544
  {
6014
- "id": 843,
6545
+ "id": 890,
6015
6546
  "name": "toggleRowEditing",
6016
6547
  "kind": 4096,
6017
6548
  "kindString": "Call signature",
@@ -6024,7 +6555,7 @@
6024
6555
  ]
6025
6556
  },
6026
6557
  {
6027
- "id": 838,
6558
+ "id": 885,
6028
6559
  "name": "toggleRowExpanded",
6029
6560
  "kind": 2048,
6030
6561
  "kindString": "Method",
@@ -6033,7 +6564,7 @@
6033
6564
  },
6034
6565
  "signatures": [
6035
6566
  {
6036
- "id": 839,
6567
+ "id": 886,
6037
6568
  "name": "toggleRowExpanded",
6038
6569
  "kind": 4096,
6039
6570
  "kindString": "Call signature",
@@ -6053,7 +6584,7 @@
6053
6584
  "TableTexts": {
6054
6585
  "props": [
6055
6586
  {
6056
- "id": 859,
6587
+ "id": 906,
6057
6588
  "name": "actions",
6058
6589
  "kind": 1024,
6059
6590
  "kindString": "Property",
@@ -6064,7 +6595,7 @@
6064
6595
  }
6065
6596
  },
6066
6597
  {
6067
- "id": 861,
6598
+ "id": 908,
6068
6599
  "name": "copy",
6069
6600
  "kind": 1024,
6070
6601
  "kindString": "Property",
@@ -6075,7 +6606,7 @@
6075
6606
  }
6076
6607
  },
6077
6608
  {
6078
- "id": 862,
6609
+ "id": 909,
6079
6610
  "name": "del",
6080
6611
  "kind": 1024,
6081
6612
  "kindString": "Property",
@@ -6086,7 +6617,7 @@
6086
6617
  }
6087
6618
  },
6088
6619
  {
6089
- "id": 860,
6620
+ "id": 907,
6090
6621
  "name": "edit",
6091
6622
  "kind": 1024,
6092
6623
  "kindString": "Property",
@@ -6097,7 +6628,7 @@
6097
6628
  }
6098
6629
  },
6099
6630
  {
6100
- "id": 864,
6631
+ "id": 911,
6101
6632
  "name": "loading",
6102
6633
  "kind": 1024,
6103
6634
  "kindString": "Property",
@@ -6108,7 +6639,7 @@
6108
6639
  }
6109
6640
  },
6110
6641
  {
6111
- "id": 863,
6642
+ "id": 910,
6112
6643
  "name": "newSubRow",
6113
6644
  "kind": 1024,
6114
6645
  "kindString": "Property",
@@ -6126,7 +6657,7 @@
6126
6657
  ],
6127
6658
  "props": [
6128
6659
  {
6129
- "id": 917,
6660
+ "id": 964,
6130
6661
  "name": "children",
6131
6662
  "kind": 1024,
6132
6663
  "kindString": "Property",
@@ -6142,7 +6673,7 @@
6142
6673
  }
6143
6674
  },
6144
6675
  {
6145
- "id": 916,
6676
+ "id": 963,
6146
6677
  "name": "defaultId",
6147
6678
  "kind": 1024,
6148
6679
  "kindString": "Property",
@@ -6158,7 +6689,7 @@
6158
6689
  }
6159
6690
  },
6160
6691
  {
6161
- "id": 915,
6692
+ "id": 962,
6162
6693
  "name": "id",
6163
6694
  "kind": 1024,
6164
6695
  "kindString": "Property",
@@ -6174,7 +6705,7 @@
6174
6705
  }
6175
6706
  },
6176
6707
  {
6177
- "id": 918,
6708
+ "id": 965,
6178
6709
  "name": "orientation",
6179
6710
  "kind": 1024,
6180
6711
  "kindString": "Property",
@@ -6197,7 +6728,7 @@
6197
6728
  }
6198
6729
  },
6199
6730
  {
6200
- "id": 919,
6731
+ "id": 966,
6201
6732
  "name": "onChange",
6202
6733
  "kind": 2048,
6203
6734
  "kindString": "Method",
@@ -6206,7 +6737,7 @@
6206
6737
  },
6207
6738
  "signatures": [
6208
6739
  {
6209
- "id": 920,
6740
+ "id": 967,
6210
6741
  "name": "onChange",
6211
6742
  "kind": 4096,
6212
6743
  "kindString": "Call signature",
@@ -6216,7 +6747,7 @@
6216
6747
  },
6217
6748
  "parameters": [
6218
6749
  {
6219
- "id": 921,
6750
+ "id": 968,
6220
6751
  "name": "id",
6221
6752
  "kind": 32768,
6222
6753
  "kindString": "Parameter",
@@ -6239,7 +6770,7 @@
6239
6770
  "Taco": {
6240
6771
  "props": [
6241
6772
  {
6242
- "id": 552,
6773
+ "id": 599,
6243
6774
  "name": "localization",
6244
6775
  "kind": 1024,
6245
6776
  "kindString": "Property",
@@ -6249,7 +6780,7 @@
6249
6780
  },
6250
6781
  "type": {
6251
6782
  "type": "reference",
6252
- "id": 543,
6783
+ "id": 590,
6253
6784
  "name": "Localization"
6254
6785
  }
6255
6786
  }
@@ -6261,7 +6792,7 @@
6261
6792
  ],
6262
6793
  "props": [
6263
6794
  {
6264
- "id": 938,
6795
+ "id": 985,
6265
6796
  "name": "highlighted",
6266
6797
  "kind": 1024,
6267
6798
  "kindString": "Property",
@@ -6277,7 +6808,7 @@
6277
6808
  }
6278
6809
  },
6279
6810
  {
6280
- "id": 939,
6811
+ "id": 986,
6281
6812
  "name": "state",
6282
6813
  "kind": 1024,
6283
6814
  "kindString": "Property",
@@ -6294,7 +6825,7 @@
6294
6825
  }
6295
6826
  },
6296
6827
  {
6297
- "id": 940,
6828
+ "id": 987,
6298
6829
  "name": "value",
6299
6830
  "kind": 1024,
6300
6831
  "kindString": "Property",
@@ -6317,7 +6848,7 @@
6317
6848
  ],
6318
6849
  "props": [
6319
6850
  {
6320
- "id": 980,
6851
+ "id": 1027,
6321
6852
  "name": "children",
6322
6853
  "kind": 1024,
6323
6854
  "kindString": "Property",
@@ -6342,7 +6873,7 @@
6342
6873
  }
6343
6874
  },
6344
6875
  {
6345
- "id": 982,
6876
+ "id": 1029,
6346
6877
  "name": "placement",
6347
6878
  "kind": 1024,
6348
6879
  "kindString": "Property",
@@ -6381,7 +6912,7 @@
6381
6912
  }
6382
6913
  },
6383
6914
  {
6384
- "id": 981,
6915
+ "id": 1028,
6385
6916
  "name": "title",
6386
6917
  "kind": 1024,
6387
6918
  "kindString": "Property",
@@ -6399,7 +6930,7 @@
6399
6930
  "TourProps": {
6400
6931
  "props": [
6401
6932
  {
6402
- "id": 1008,
6933
+ "id": 1055,
6403
6934
  "name": "autoStart",
6404
6935
  "kind": 1024,
6405
6936
  "kindString": "Property",
@@ -6415,7 +6946,7 @@
6415
6946
  }
6416
6947
  },
6417
6948
  {
6418
- "id": 1009,
6949
+ "id": 1056,
6419
6950
  "name": "children",
6420
6951
  "kind": 1024,
6421
6952
  "kindString": "Property",
@@ -6429,7 +6960,7 @@
6429
6960
  }
6430
6961
  },
6431
6962
  {
6432
- "id": 1010,
6963
+ "id": 1057,
6433
6964
  "name": "continuous",
6434
6965
  "kind": 1024,
6435
6966
  "kindString": "Property",
@@ -6445,7 +6976,7 @@
6445
6976
  }
6446
6977
  },
6447
6978
  {
6448
- "id": 1011,
6979
+ "id": 1058,
6449
6980
  "name": "disableCloseOnEsc",
6450
6981
  "kind": 1024,
6451
6982
  "kindString": "Property",
@@ -6461,7 +6992,7 @@
6461
6992
  }
6462
6993
  },
6463
6994
  {
6464
- "id": 1012,
6995
+ "id": 1059,
6465
6996
  "name": "disableOverlayClose",
6466
6997
  "kind": 1024,
6467
6998
  "kindString": "Property",
@@ -6477,7 +7008,7 @@
6477
7008
  }
6478
7009
  },
6479
7010
  {
6480
- "id": 1022,
7011
+ "id": 1069,
6481
7012
  "name": "disableScrollParentFix",
6482
7013
  "kind": 1024,
6483
7014
  "kindString": "Property",
@@ -6490,7 +7021,7 @@
6490
7021
  }
6491
7022
  },
6492
7023
  {
6493
- "id": 1013,
7024
+ "id": 1060,
6494
7025
  "name": "disableScrolling",
6495
7026
  "kind": 1024,
6496
7027
  "kindString": "Property",
@@ -6506,7 +7037,7 @@
6506
7037
  }
6507
7038
  },
6508
7039
  {
6509
- "id": 1017,
7040
+ "id": 1064,
6510
7041
  "name": "onComplete",
6511
7042
  "kind": 1024,
6512
7043
  "kindString": "Property",
@@ -6521,7 +7052,7 @@
6521
7052
  }
6522
7053
  },
6523
7054
  {
6524
- "id": 1021,
7055
+ "id": 1068,
6525
7056
  "name": "spotlightClicks",
6526
7057
  "kind": 1024,
6527
7058
  "kindString": "Property",
@@ -6534,7 +7065,7 @@
6534
7065
  }
6535
7066
  },
6536
7067
  {
6537
- "id": 1014,
7068
+ "id": 1061,
6538
7069
  "name": "onClose",
6539
7070
  "kind": 2048,
6540
7071
  "kindString": "Method",
@@ -6543,21 +7074,21 @@
6543
7074
  },
6544
7075
  "signatures": [
6545
7076
  {
6546
- "id": 1015,
7077
+ "id": 1062,
6547
7078
  "name": "onClose",
6548
7079
  "kind": 4096,
6549
7080
  "kindString": "Call signature",
6550
7081
  "flags": {},
6551
7082
  "parameters": [
6552
7083
  {
6553
- "id": 1016,
7084
+ "id": 1063,
6554
7085
  "name": "step",
6555
7086
  "kind": 32768,
6556
7087
  "kindString": "Parameter",
6557
7088
  "flags": {},
6558
7089
  "type": {
6559
7090
  "type": "reference",
6560
- "id": 996,
7091
+ "id": 1043,
6561
7092
  "name": "TourStepProps"
6562
7093
  }
6563
7094
  }
@@ -6570,7 +7101,7 @@
6570
7101
  ]
6571
7102
  },
6572
7103
  {
6573
- "id": 1018,
7104
+ "id": 1065,
6574
7105
  "name": "onReady",
6575
7106
  "kind": 2048,
6576
7107
  "kindString": "Method",
@@ -6579,7 +7110,7 @@
6579
7110
  },
6580
7111
  "signatures": [
6581
7112
  {
6582
- "id": 1019,
7113
+ "id": 1066,
6583
7114
  "name": "onReady",
6584
7115
  "kind": 4096,
6585
7116
  "kindString": "Call signature",
@@ -6589,14 +7120,14 @@
6589
7120
  },
6590
7121
  "parameters": [
6591
7122
  {
6592
- "id": 1020,
7123
+ "id": 1067,
6593
7124
  "name": "step",
6594
7125
  "kind": 32768,
6595
7126
  "kindString": "Parameter",
6596
7127
  "flags": {},
6597
7128
  "type": {
6598
7129
  "type": "reference",
6599
- "id": 996,
7130
+ "id": 1043,
6600
7131
  "name": "TourStepProps"
6601
7132
  }
6602
7133
  }
@@ -6613,7 +7144,7 @@
6613
7144
  "TourStepProps": {
6614
7145
  "props": [
6615
7146
  {
6616
- "id": 998,
7147
+ "id": 1045,
6617
7148
  "name": "children",
6618
7149
  "kind": 1024,
6619
7150
  "kindString": "Property",
@@ -6629,7 +7160,7 @@
6629
7160
  }
6630
7161
  },
6631
7162
  {
6632
- "id": 999,
7163
+ "id": 1046,
6633
7164
  "name": "position",
6634
7165
  "kind": 1024,
6635
7166
  "kindString": "Property",
@@ -6647,7 +7178,7 @@
6647
7178
  }
6648
7179
  },
6649
7180
  {
6650
- "id": 1000,
7181
+ "id": 1047,
6651
7182
  "name": "selector",
6652
7183
  "kind": 1024,
6653
7184
  "kindString": "Property",
@@ -6661,7 +7192,7 @@
6661
7192
  }
6662
7193
  },
6663
7194
  {
6664
- "id": 1001,
7195
+ "id": 1048,
6665
7196
  "name": "showBeacon",
6666
7197
  "kind": 1024,
6667
7198
  "kindString": "Property",
@@ -6677,7 +7208,7 @@
6677
7208
  }
6678
7209
  },
6679
7210
  {
6680
- "id": 1002,
7211
+ "id": 1049,
6681
7212
  "name": "title",
6682
7213
  "kind": 1024,
6683
7214
  "kindString": "Property",
@@ -6695,7 +7226,7 @@
6695
7226
  "TourTexts": {
6696
7227
  "props": [
6697
7228
  {
6698
- "id": 990,
7229
+ "id": 1037,
6699
7230
  "name": "back",
6700
7231
  "kind": 1024,
6701
7232
  "kindString": "Property",
@@ -6709,7 +7240,7 @@
6709
7240
  }
6710
7241
  },
6711
7242
  {
6712
- "id": 991,
7243
+ "id": 1038,
6713
7244
  "name": "close",
6714
7245
  "kind": 1024,
6715
7246
  "kindString": "Property",
@@ -6723,7 +7254,7 @@
6723
7254
  }
6724
7255
  },
6725
7256
  {
6726
- "id": 993,
7257
+ "id": 1040,
6727
7258
  "name": "last",
6728
7259
  "kind": 1024,
6729
7260
  "kindString": "Property",
@@ -6737,7 +7268,7 @@
6737
7268
  }
6738
7269
  },
6739
7270
  {
6740
- "id": 994,
7271
+ "id": 1041,
6741
7272
  "name": "next",
6742
7273
  "kind": 1024,
6743
7274
  "kindString": "Property",
@@ -6751,7 +7282,7 @@
6751
7282
  }
6752
7283
  },
6753
7284
  {
6754
- "id": 995,
7285
+ "id": 1042,
6755
7286
  "name": "open",
6756
7287
  "kind": 1024,
6757
7288
  "kindString": "Property",
@@ -6765,7 +7296,7 @@
6765
7296
  }
6766
7297
  },
6767
7298
  {
6768
- "id": 992,
7299
+ "id": 1039,
6769
7300
  "name": "skip",
6770
7301
  "kind": 1024,
6771
7302
  "kindString": "Property",
@@ -6786,7 +7317,7 @@
6786
7317
  ],
6787
7318
  "props": [
6788
7319
  {
6789
- "id": 1039,
7320
+ "id": 1086,
6790
7321
  "name": "className",
6791
7322
  "kind": 1024,
6792
7323
  "kindString": "Property",
@@ -6806,21 +7337,21 @@
6806
7337
  {
6807
7338
  "type": "reflection",
6808
7339
  "declaration": {
6809
- "id": 1040,
7340
+ "id": 1087,
6810
7341
  "name": "__type",
6811
7342
  "kind": 65536,
6812
7343
  "kindString": "Type literal",
6813
7344
  "flags": {},
6814
7345
  "signatures": [
6815
7346
  {
6816
- "id": 1041,
7347
+ "id": 1088,
6817
7348
  "name": "__type",
6818
7349
  "kind": 4096,
6819
7350
  "kindString": "Call signature",
6820
7351
  "flags": {},
6821
7352
  "parameters": [
6822
7353
  {
6823
- "id": 1042,
7354
+ "id": 1089,
6824
7355
  "name": "expanded",
6825
7356
  "kind": 32768,
6826
7357
  "kindString": "Parameter",
@@ -6843,7 +7374,7 @@
6843
7374
  }
6844
7375
  },
6845
7376
  {
6846
- "id": 1043,
7377
+ "id": 1090,
6847
7378
  "name": "expanded",
6848
7379
  "kind": 1024,
6849
7380
  "kindString": "Property",
@@ -6859,7 +7390,7 @@
6859
7390
  }
6860
7391
  },
6861
7392
  {
6862
- "id": 1044,
7393
+ "id": 1091,
6863
7394
  "name": "fixed",
6864
7395
  "kind": 1024,
6865
7396
  "kindString": "Property",
@@ -6875,7 +7406,7 @@
6875
7406
  }
6876
7407
  },
6877
7408
  {
6878
- "id": 1049,
7409
+ "id": 1096,
6879
7410
  "name": "title",
6880
7411
  "kind": 1024,
6881
7412
  "kindString": "Property",
@@ -6895,21 +7426,21 @@
6895
7426
  {
6896
7427
  "type": "reflection",
6897
7428
  "declaration": {
6898
- "id": 1050,
7429
+ "id": 1097,
6899
7430
  "name": "__type",
6900
7431
  "kind": 65536,
6901
7432
  "kindString": "Type literal",
6902
7433
  "flags": {},
6903
7434
  "signatures": [
6904
7435
  {
6905
- "id": 1051,
7436
+ "id": 1098,
6906
7437
  "name": "__type",
6907
7438
  "kind": 4096,
6908
7439
  "kindString": "Call signature",
6909
7440
  "flags": {},
6910
7441
  "parameters": [
6911
7442
  {
6912
- "id": 1052,
7443
+ "id": 1099,
6913
7444
  "name": "expanded",
6914
7445
  "kind": 32768,
6915
7446
  "kindString": "Parameter",
@@ -6934,7 +7465,7 @@
6934
7465
  }
6935
7466
  },
6936
7467
  {
6937
- "id": 1045,
7468
+ "id": 1092,
6938
7469
  "name": "onClick",
6939
7470
  "kind": 2048,
6940
7471
  "kindString": "Method",
@@ -6943,7 +7474,7 @@
6943
7474
  },
6944
7475
  "signatures": [
6945
7476
  {
6946
- "id": 1046,
7477
+ "id": 1093,
6947
7478
  "name": "onClick",
6948
7479
  "kind": 4096,
6949
7480
  "kindString": "Call signature",
@@ -6953,7 +7484,7 @@
6953
7484
  },
6954
7485
  "parameters": [
6955
7486
  {
6956
- "id": 1047,
7487
+ "id": 1094,
6957
7488
  "name": "event",
6958
7489
  "kind": 32768,
6959
7490
  "kindString": "Parameter",
@@ -6980,7 +7511,7 @@
6980
7511
  }
6981
7512
  },
6982
7513
  {
6983
- "id": 1048,
7514
+ "id": 1095,
6984
7515
  "name": "expanded",
6985
7516
  "kind": 32768,
6986
7517
  "kindString": "Parameter",
@@ -7005,7 +7536,7 @@
7005
7536
  "useListKeyboardNavigationOptions": {
7006
7537
  "props": [
7007
7538
  {
7008
- "id": 1079,
7539
+ "id": 1126,
7009
7540
  "name": "direction",
7010
7541
  "kind": 1024,
7011
7542
  "kindString": "Property",
@@ -7019,7 +7550,7 @@
7019
7550
  }
7020
7551
  },
7021
7552
  {
7022
- "id": 1080,
7553
+ "id": 1127,
7023
7554
  "name": "initialIndex",
7024
7555
  "kind": 1024,
7025
7556
  "kindString": "Property",
@@ -7036,7 +7567,7 @@
7036
7567
  "usePaginationValues": {
7037
7568
  "props": [
7038
7569
  {
7039
- "id": 491,
7570
+ "id": 537,
7040
7571
  "name": "pageIndex",
7041
7572
  "kind": 1024,
7042
7573
  "kindString": "Property",
@@ -7050,7 +7581,7 @@
7050
7581
  }
7051
7582
  },
7052
7583
  {
7053
- "id": 492,
7584
+ "id": 538,
7054
7585
  "name": "pageSize",
7055
7586
  "kind": 1024,
7056
7587
  "kindString": "Property",
@@ -7064,14 +7595,14 @@
7064
7595
  }
7065
7596
  },
7066
7597
  {
7067
- "id": 493,
7598
+ "id": 539,
7068
7599
  "name": "setPageIndex",
7069
7600
  "kind": 2048,
7070
7601
  "kindString": "Method",
7071
7602
  "flags": {},
7072
7603
  "signatures": [
7073
7604
  {
7074
- "id": 494,
7605
+ "id": 540,
7075
7606
  "name": "setPageIndex",
7076
7607
  "kind": 4096,
7077
7608
  "kindString": "Call signature",
@@ -7081,7 +7612,7 @@
7081
7612
  },
7082
7613
  "parameters": [
7083
7614
  {
7084
- "id": 495,
7615
+ "id": 541,
7085
7616
  "name": "pageIndex",
7086
7617
  "kind": 32768,
7087
7618
  "kindString": "Parameter",
@@ -7100,14 +7631,14 @@
7100
7631
  ]
7101
7632
  },
7102
7633
  {
7103
- "id": 496,
7634
+ "id": 542,
7104
7635
  "name": "setPageSize",
7105
7636
  "kind": 2048,
7106
7637
  "kindString": "Method",
7107
7638
  "flags": {},
7108
7639
  "signatures": [
7109
7640
  {
7110
- "id": 497,
7641
+ "id": 543,
7111
7642
  "name": "setPageSize",
7112
7643
  "kind": 4096,
7113
7644
  "kindString": "Call signature",
@@ -7117,7 +7648,7 @@
7117
7648
  },
7118
7649
  "parameters": [
7119
7650
  {
7120
- "id": 498,
7651
+ "id": 544,
7121
7652
  "name": "size",
7122
7653
  "kind": 32768,
7123
7654
  "kindString": "Parameter",
@@ -7140,7 +7671,7 @@
7140
7671
  "useTableRowCreation": {
7141
7672
  "props": [
7142
7673
  {
7143
- "id": 903,
7674
+ "id": 950,
7144
7675
  "name": "data",
7145
7676
  "kind": 1024,
7146
7677
  "kindString": "Property",
@@ -7149,11 +7680,11 @@
7149
7680
  "type": "array",
7150
7681
  "elementType": {
7151
7682
  "type": "reference",
7152
- "id": 699,
7683
+ "id": 746,
7153
7684
  "typeArguments": [
7154
7685
  {
7155
7686
  "type": "reference",
7156
- "id": 912,
7687
+ "id": 959,
7157
7688
  "name": "TRow"
7158
7689
  }
7159
7690
  ],
@@ -7162,7 +7693,7 @@
7162
7693
  }
7163
7694
  },
7164
7695
  {
7165
- "id": 911,
7696
+ "id": 958,
7166
7697
  "name": "isCreating",
7167
7698
  "kind": 1024,
7168
7699
  "kindString": "Property",
@@ -7173,33 +7704,33 @@
7173
7704
  }
7174
7705
  },
7175
7706
  {
7176
- "id": 904,
7707
+ "id": 951,
7177
7708
  "name": "create",
7178
7709
  "kind": 2048,
7179
7710
  "kindString": "Method",
7180
7711
  "flags": {},
7181
7712
  "signatures": [
7182
7713
  {
7183
- "id": 905,
7714
+ "id": 952,
7184
7715
  "name": "create",
7185
7716
  "kind": 4096,
7186
7717
  "kindString": "Call signature",
7187
7718
  "flags": {},
7188
7719
  "parameters": [
7189
7720
  {
7190
- "id": 906,
7721
+ "id": 953,
7191
7722
  "name": "rowIndexPath",
7192
7723
  "kind": 32768,
7193
7724
  "kindString": "Parameter",
7194
7725
  "flags": {},
7195
7726
  "type": {
7196
7727
  "type": "reference",
7197
- "id": 704,
7728
+ "id": 751,
7198
7729
  "name": "RowIndexPath"
7199
7730
  }
7200
7731
  },
7201
7732
  {
7202
- "id": 907,
7733
+ "id": 954,
7203
7734
  "name": "values",
7204
7735
  "kind": 32768,
7205
7736
  "kindString": "Parameter",
@@ -7214,35 +7745,35 @@
7214
7745
  ],
7215
7746
  "type": {
7216
7747
  "type": "reference",
7217
- "id": 704,
7748
+ "id": 751,
7218
7749
  "name": "RowIndexPath"
7219
7750
  }
7220
7751
  }
7221
7752
  ]
7222
7753
  },
7223
7754
  {
7224
- "id": 908,
7755
+ "id": 955,
7225
7756
  "name": "remove",
7226
7757
  "kind": 2048,
7227
7758
  "kindString": "Method",
7228
7759
  "flags": {},
7229
7760
  "signatures": [
7230
7761
  {
7231
- "id": 909,
7762
+ "id": 956,
7232
7763
  "name": "remove",
7233
7764
  "kind": 4096,
7234
7765
  "kindString": "Call signature",
7235
7766
  "flags": {},
7236
7767
  "parameters": [
7237
7768
  {
7238
- "id": 910,
7769
+ "id": 957,
7239
7770
  "name": "rowIndexPath",
7240
7771
  "kind": 32768,
7241
7772
  "kindString": "Parameter",
7242
7773
  "flags": {},
7243
7774
  "type": {
7244
7775
  "type": "reference",
7245
- "id": 704,
7776
+ "id": 751,
7246
7777
  "name": "RowIndexPath"
7247
7778
  }
7248
7779
  }