@economic/taco 0.0.7-alpha.0 → 0.0.11-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 +8 -12
  4. package/dist/components/Dialog/Context.d.ts +0 -1
  5. package/dist/components/Dialog/Dialog.d.ts +14 -8
  6. package/dist/components/Hanger/Hanger.d.ts +4 -1
  7. package/dist/components/IconButton/IconButton.d.ts +13 -13
  8. package/dist/components/Menu/Menu.d.ts +3 -1
  9. package/dist/components/Popover/Popover.d.ts +4 -1
  10. package/dist/esm/components/Accordion/Accordion.js +14 -9
  11. package/dist/esm/components/Accordion/Accordion.js.map +1 -1
  12. package/dist/esm/components/Backdrop/Backdrop.js +5 -4
  13. package/dist/esm/components/Backdrop/Backdrop.js.map +1 -1
  14. package/dist/esm/components/Button/Button.js.map +1 -1
  15. package/dist/esm/components/Button/util.js +16 -16
  16. package/dist/esm/components/Button/util.js.map +1 -1
  17. package/dist/esm/components/Calendar/Calendar.js +1 -1
  18. package/dist/esm/components/Combobox/Combobox.js +1 -1
  19. package/dist/esm/components/Datepicker/Datepicker.js +2 -2
  20. package/dist/esm/components/Dialog/Context.js +0 -1
  21. package/dist/esm/components/Dialog/Context.js.map +1 -1
  22. package/dist/esm/components/Dialog/Dialog.js +11 -15
  23. package/dist/esm/components/Dialog/Dialog.js.map +1 -1
  24. package/dist/esm/components/Dialog/components/Content.js +28 -11
  25. package/dist/esm/components/Dialog/components/Content.js.map +1 -1
  26. package/dist/esm/components/Hanger/Hanger.js +6 -6
  27. package/dist/esm/components/Hanger/Hanger.js.map +1 -1
  28. package/dist/esm/components/IconButton/IconButton.js.map +1 -1
  29. package/dist/esm/components/Input/Input.js +1 -1
  30. package/dist/esm/components/Input/Input.js.map +1 -1
  31. package/dist/esm/components/Listbox/ScrollableList.js +1 -1
  32. package/dist/esm/components/Menu/Menu.js +9 -3
  33. package/dist/esm/components/Menu/Menu.js.map +1 -1
  34. package/dist/esm/components/Menu/components/Content.js +2 -2
  35. package/dist/esm/components/Menu/components/Header.js +1 -1
  36. package/dist/esm/components/Menu/components/Item.js +1 -1
  37. package/dist/esm/components/Menu/components/Separator.js +1 -1
  38. package/dist/esm/components/Menu/components/Trigger.js +2 -2
  39. package/dist/esm/components/Pagination/PageNumbers.js +1 -1
  40. package/dist/esm/components/Pagination/Pagination.js +1 -1
  41. package/dist/esm/components/Popover/Popover.js +3 -4
  42. package/dist/esm/components/Popover/Popover.js.map +1 -1
  43. package/dist/esm/components/SearchInput/SearchInput.js +8 -8
  44. package/dist/esm/components/Table/components/Table.js +1 -2
  45. package/dist/esm/components/Table/components/Table.js.map +1 -1
  46. package/dist/esm/components/Table/components/WindowedTable.js +0 -1
  47. package/dist/esm/components/Table/components/WindowedTable.js.map +1 -1
  48. package/dist/esm/components/Table/hooks/plugins/useRowActions.js +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 +1 -1
  53. package/dist/esm/index.css +37 -37
  54. package/dist/esm/index.js +8 -8
  55. package/dist/index.css +37 -37
  56. package/dist/taco.cjs.development.js +2619 -2592
  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 +1110 -637
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": 684,
181
+ "id": 732,
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,136 +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": 204,
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": 252,
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": "menu",
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": "Menu component associated with the button."
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": 358,
270
- "name": "MenuProps"
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": "popover",
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": "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."
288
- },
289
- "type": {
290
- "type": "reference",
291
- "typeArguments": [
292
- {
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": 404,
381
+ "name": "MenuProps"
382
+ }
383
+ ],
384
+ "qualifiedName": "Partial",
385
+ "package": "typescript",
386
+ "name": "Partial"
387
+ }
388
+ }
389
+ ],
390
+ "type": {
293
391
  "type": "reference",
294
- "id": 531,
295
- "name": "PopoverProps"
392
+ "qualifiedName": "global.JSX.Element",
393
+ "package": "@types/react",
394
+ "name": "Element"
296
395
  }
297
- ],
298
- "qualifiedName": "React.ReactElement",
299
- "package": "@types/react",
300
- "name": "React.ReactElement"
301
- }
396
+ }
397
+ ]
302
398
  },
303
399
  {
304
- "id": 81,
305
- "name": "tooltip",
306
- "kind": 1024,
307
- "kindString": "Property",
400
+ "id": 96,
401
+ "name": "popover",
402
+ "kind": 2048,
403
+ "kindString": "Method",
308
404
  "flags": {
309
405
  "isOptional": true
310
406
  },
311
- "comment": {
312
- "shortText": "A tooltip to show when hovering over the button"
313
- },
314
- "type": {
315
- "type": "intrinsic",
316
- "name": "string"
317
- }
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": 578,
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
+ ]
318
447
  }
319
448
  ]
320
449
  },
@@ -324,7 +453,7 @@
324
453
  ],
325
454
  "props": [
326
455
  {
327
- "id": 115,
456
+ "id": 139,
328
457
  "name": "value",
329
458
  "kind": 1024,
330
459
  "kindString": "Property",
@@ -339,14 +468,14 @@
339
468
  }
340
469
  },
341
470
  {
342
- "id": 111,
471
+ "id": 135,
343
472
  "name": "onChange",
344
473
  "kind": 2048,
345
474
  "kindString": "Method",
346
475
  "flags": {},
347
476
  "signatures": [
348
477
  {
349
- "id": 112,
478
+ "id": 136,
350
479
  "name": "onChange",
351
480
  "kind": 4096,
352
481
  "kindString": "Call signature",
@@ -356,7 +485,7 @@
356
485
  },
357
486
  "parameters": [
358
487
  {
359
- "id": 113,
488
+ "id": 137,
360
489
  "name": "date",
361
490
  "kind": 32768,
362
491
  "kindString": "Parameter",
@@ -369,7 +498,7 @@
369
498
  }
370
499
  },
371
500
  {
372
- "id": 114,
501
+ "id": 138,
373
502
  "name": "event",
374
503
  "kind": 32768,
375
504
  "kindString": "Parameter",
@@ -410,7 +539,7 @@
410
539
  "CalendarTexts": {
411
540
  "props": [
412
541
  {
413
- "id": 106,
542
+ "id": 130,
414
543
  "name": "actions",
415
544
  "kind": 1024,
416
545
  "kindString": "Property",
@@ -420,12 +549,12 @@
420
549
  },
421
550
  "type": {
422
551
  "type": "reference",
423
- "id": 97,
552
+ "id": 121,
424
553
  "name": "CalendarTextsActions"
425
554
  }
426
555
  },
427
556
  {
428
- "id": 107,
557
+ "id": 131,
429
558
  "name": "months",
430
559
  "kind": 1024,
431
560
  "kindString": "Property",
@@ -442,7 +571,7 @@
442
571
  }
443
572
  },
444
573
  {
445
- "id": 108,
574
+ "id": 132,
446
575
  "name": "weekdaysShort",
447
576
  "kind": 1024,
448
577
  "kindString": "Property",
@@ -463,7 +592,7 @@
463
592
  "CalendarTextsActions": {
464
593
  "props": [
465
594
  {
466
- "id": 100,
595
+ "id": 124,
467
596
  "name": "nextMonth",
468
597
  "kind": 1024,
469
598
  "kindString": "Property",
@@ -477,7 +606,7 @@
477
606
  }
478
607
  },
479
608
  {
480
- "id": 102,
609
+ "id": 126,
481
610
  "name": "nextYear",
482
611
  "kind": 1024,
483
612
  "kindString": "Property",
@@ -491,7 +620,7 @@
491
620
  }
492
621
  },
493
622
  {
494
- "id": 99,
623
+ "id": 123,
495
624
  "name": "previousMonth",
496
625
  "kind": 1024,
497
626
  "kindString": "Property",
@@ -505,7 +634,7 @@
505
634
  }
506
635
  },
507
636
  {
508
- "id": 101,
637
+ "id": 125,
509
638
  "name": "previousYear",
510
639
  "kind": 1024,
511
640
  "kindString": "Property",
@@ -519,7 +648,7 @@
519
648
  }
520
649
  },
521
650
  {
522
- "id": 103,
651
+ "id": 127,
523
652
  "name": "today",
524
653
  "kind": 1024,
525
654
  "kindString": "Property",
@@ -554,7 +683,7 @@
554
683
  ],
555
684
  "props": [
556
685
  {
557
- "id": 129,
686
+ "id": 153,
558
687
  "name": "data",
559
688
  "kind": 1024,
560
689
  "kindString": "Property",
@@ -568,13 +697,13 @@
568
697
  "type": "array",
569
698
  "elementType": {
570
699
  "type": "reference",
571
- "id": 125,
700
+ "id": 149,
572
701
  "name": "ComboboxItem"
573
702
  }
574
703
  }
575
704
  },
576
705
  {
577
- "id": 130,
706
+ "id": 154,
578
707
  "name": "defaultValue",
579
708
  "kind": 1024,
580
709
  "kindString": "Property",
@@ -586,12 +715,12 @@
586
715
  },
587
716
  "type": {
588
717
  "type": "reference",
589
- "id": 126,
718
+ "id": 150,
590
719
  "name": "ComboboxValue"
591
720
  }
592
721
  },
593
722
  {
594
- "id": 131,
723
+ "id": 155,
595
724
  "name": "emptyValue",
596
725
  "kind": 1024,
597
726
  "kindString": "Property",
@@ -603,12 +732,12 @@
603
732
  },
604
733
  "type": {
605
734
  "type": "reference",
606
- "id": 126,
735
+ "id": 150,
607
736
  "name": "ComboboxValue"
608
737
  }
609
738
  },
610
739
  {
611
- "id": 132,
740
+ "id": 156,
612
741
  "name": "highlighted",
613
742
  "kind": 1024,
614
743
  "kindString": "Property",
@@ -624,7 +753,7 @@
624
753
  }
625
754
  },
626
755
  {
627
- "id": 133,
756
+ "id": 157,
628
757
  "name": "inline",
629
758
  "kind": 1024,
630
759
  "kindString": "Property",
@@ -640,7 +769,7 @@
640
769
  }
641
770
  },
642
771
  {
643
- "id": 134,
772
+ "id": 158,
644
773
  "name": "loading",
645
774
  "kind": 1024,
646
775
  "kindString": "Property",
@@ -656,7 +785,7 @@
656
785
  }
657
786
  },
658
787
  {
659
- "id": 135,
788
+ "id": 159,
660
789
  "name": "onChange",
661
790
  "kind": 1024,
662
791
  "kindString": "Property",
@@ -682,7 +811,7 @@
682
811
  }
683
812
  },
684
813
  {
685
- "id": 139,
814
+ "id": 163,
686
815
  "name": "state",
687
816
  "kind": 1024,
688
817
  "kindString": "Property",
@@ -699,7 +828,7 @@
699
828
  }
700
829
  },
701
830
  {
702
- "id": 140,
831
+ "id": 164,
703
832
  "name": "value",
704
833
  "kind": 1024,
705
834
  "kindString": "Property",
@@ -711,12 +840,12 @@
711
840
  },
712
841
  "type": {
713
842
  "type": "reference",
714
- "id": 126,
843
+ "id": 150,
715
844
  "name": "ComboboxValue"
716
845
  }
717
846
  },
718
847
  {
719
- "id": 136,
848
+ "id": 160,
720
849
  "name": "onSearch",
721
850
  "kind": 2048,
722
851
  "kindString": "Method",
@@ -725,7 +854,7 @@
725
854
  },
726
855
  "signatures": [
727
856
  {
728
- "id": 137,
857
+ "id": 161,
729
858
  "name": "onSearch",
730
859
  "kind": 4096,
731
860
  "kindString": "Call signature",
@@ -735,7 +864,7 @@
735
864
  },
736
865
  "parameters": [
737
866
  {
738
- "id": 138,
867
+ "id": 162,
739
868
  "name": "query",
740
869
  "kind": 32768,
741
870
  "kindString": "Parameter",
@@ -779,7 +908,7 @@
779
908
  ],
780
909
  "props": [
781
910
  {
782
- "id": 163,
911
+ "id": 187,
783
912
  "name": "calendar",
784
913
  "kind": 1024,
785
914
  "kindString": "Property",
@@ -791,12 +920,12 @@
791
920
  },
792
921
  "type": {
793
922
  "type": "reference",
794
- "id": 109,
923
+ "id": 133,
795
924
  "name": "CalendarProps"
796
925
  }
797
926
  },
798
927
  {
799
- "id": 164,
928
+ "id": 188,
800
929
  "name": "shortcuts",
801
930
  "kind": 1024,
802
931
  "kindString": "Property",
@@ -812,7 +941,7 @@
812
941
  }
813
942
  },
814
943
  {
815
- "id": 165,
944
+ "id": 189,
816
945
  "name": "shortcutsText",
817
946
  "kind": 1024,
818
947
  "kindString": "Property",
@@ -828,7 +957,7 @@
828
957
  }
829
958
  },
830
959
  {
831
- "id": 169,
960
+ "id": 193,
832
961
  "name": "value",
833
962
  "kind": 1024,
834
963
  "kindString": "Property",
@@ -846,7 +975,7 @@
846
975
  }
847
976
  },
848
977
  {
849
- "id": 166,
978
+ "id": 190,
850
979
  "name": "onReset",
851
980
  "kind": 2048,
852
981
  "kindString": "Method",
@@ -855,7 +984,7 @@
855
984
  },
856
985
  "signatures": [
857
986
  {
858
- "id": 167,
987
+ "id": 191,
859
988
  "name": "onReset",
860
989
  "kind": 4096,
861
990
  "kindString": "Call signature",
@@ -865,7 +994,7 @@
865
994
  },
866
995
  "parameters": [
867
996
  {
868
- "id": 168,
997
+ "id": 192,
869
998
  "name": "event",
870
999
  "kind": 32768,
871
1000
  "kindString": "Parameter",
@@ -904,7 +1033,7 @@
904
1033
  "DatepickerTexts": {
905
1034
  "props": [
906
1035
  {
907
- "id": 157,
1036
+ "id": 181,
908
1037
  "name": "calendar",
909
1038
  "kind": 1024,
910
1039
  "kindString": "Property",
@@ -918,7 +1047,7 @@
918
1047
  }
919
1048
  },
920
1049
  {
921
- "id": 158,
1050
+ "id": 182,
922
1051
  "name": "clear",
923
1052
  "kind": 1024,
924
1053
  "kindString": "Property",
@@ -932,7 +1061,7 @@
932
1061
  }
933
1062
  },
934
1063
  {
935
- "id": 159,
1064
+ "id": 183,
936
1065
  "name": "expand",
937
1066
  "kind": 1024,
938
1067
  "kindString": "Property",
@@ -946,7 +1075,7 @@
946
1075
  }
947
1076
  },
948
1077
  {
949
- "id": 160,
1078
+ "id": 184,
950
1079
  "name": "shortcuts",
951
1080
  "kind": 1024,
952
1081
  "kindString": "Property",
@@ -965,7 +1094,7 @@
965
1094
  "DialogContentDrawerRenderProps": {
966
1095
  "props": [
967
1096
  {
968
- "id": 193,
1097
+ "id": 217,
969
1098
  "name": "open",
970
1099
  "kind": 1024,
971
1100
  "kindString": "Property",
@@ -976,14 +1105,14 @@
976
1105
  }
977
1106
  },
978
1107
  {
979
- "id": 194,
1108
+ "id": 218,
980
1109
  "name": "toggle",
981
1110
  "kind": 2048,
982
1111
  "kindString": "Method",
983
1112
  "flags": {},
984
1113
  "signatures": [
985
1114
  {
986
- "id": 195,
1115
+ "id": 219,
987
1116
  "name": "toggle",
988
1117
  "kind": 4096,
989
1118
  "kindString": "Call signature",
@@ -1003,7 +1132,7 @@
1003
1132
  ],
1004
1133
  "props": [
1005
1134
  {
1006
- "id": 181,
1135
+ "id": 205,
1007
1136
  "name": "aria-label",
1008
1137
  "kind": 1024,
1009
1138
  "kindString": "Property",
@@ -1017,7 +1146,7 @@
1017
1146
  }
1018
1147
  },
1019
1148
  {
1020
- "id": 182,
1149
+ "id": 206,
1021
1150
  "name": "children",
1022
1151
  "kind": 1024,
1023
1152
  "kindString": "Property",
@@ -1046,28 +1175,28 @@
1046
1175
  {
1047
1176
  "type": "reflection",
1048
1177
  "declaration": {
1049
- "id": 183,
1178
+ "id": 207,
1050
1179
  "name": "__type",
1051
1180
  "kind": 65536,
1052
1181
  "kindString": "Type literal",
1053
1182
  "flags": {},
1054
1183
  "signatures": [
1055
1184
  {
1056
- "id": 184,
1185
+ "id": 208,
1057
1186
  "name": "__type",
1058
1187
  "kind": 4096,
1059
1188
  "kindString": "Call signature",
1060
1189
  "flags": {},
1061
1190
  "parameters": [
1062
1191
  {
1063
- "id": 185,
1192
+ "id": 209,
1064
1193
  "name": "props",
1065
1194
  "kind": 32768,
1066
1195
  "kindString": "Parameter",
1067
1196
  "flags": {},
1068
1197
  "type": {
1069
1198
  "type": "reference",
1070
- "id": 186,
1199
+ "id": 210,
1071
1200
  "name": "DialogContentRenderProps"
1072
1201
  }
1073
1202
  }
@@ -1090,7 +1219,7 @@
1090
1219
  "DialogContentRenderProps": {
1091
1220
  "props": [
1092
1221
  {
1093
- "id": 190,
1222
+ "id": 214,
1094
1223
  "name": "drawer",
1095
1224
  "kind": 1024,
1096
1225
  "kindString": "Property",
@@ -1099,19 +1228,19 @@
1099
1228
  },
1100
1229
  "type": {
1101
1230
  "type": "reference",
1102
- "id": 191,
1231
+ "id": 215,
1103
1232
  "name": "DialogContentDrawerRenderProps"
1104
1233
  }
1105
1234
  },
1106
1235
  {
1107
- "id": 188,
1236
+ "id": 212,
1108
1237
  "name": "close",
1109
1238
  "kind": 2048,
1110
1239
  "kindString": "Method",
1111
1240
  "flags": {},
1112
1241
  "signatures": [
1113
1242
  {
1114
- "id": 189,
1243
+ "id": 213,
1115
1244
  "name": "close",
1116
1245
  "kind": 4096,
1117
1246
  "kindString": "Call signature",
@@ -1129,7 +1258,7 @@
1129
1258
  "DialogProps": {
1130
1259
  "props": [
1131
1260
  {
1132
- "id": 206,
1261
+ "id": 230,
1133
1262
  "name": "children",
1134
1263
  "kind": 1024,
1135
1264
  "kindString": "Property",
@@ -1156,7 +1285,7 @@
1156
1285
  }
1157
1286
  },
1158
1287
  {
1159
- "id": 207,
1288
+ "id": 231,
1160
1289
  "name": "closeOnEscape",
1161
1290
  "kind": 1024,
1162
1291
  "kindString": "Property",
@@ -1172,7 +1301,23 @@
1172
1301
  }
1173
1302
  },
1174
1303
  {
1175
- "id": 208,
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,
1176
1321
  "name": "draggable",
1177
1322
  "kind": 1024,
1178
1323
  "kindString": "Property",
@@ -1188,7 +1333,7 @@
1188
1333
  }
1189
1334
  },
1190
1335
  {
1191
- "id": 211,
1336
+ "id": 239,
1192
1337
  "name": "open",
1193
1338
  "kind": 1024,
1194
1339
  "kindString": "Property",
@@ -1196,7 +1341,7 @@
1196
1341
  "isOptional": true
1197
1342
  },
1198
1343
  "comment": {
1199
- "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"
1200
1345
  },
1201
1346
  "type": {
1202
1347
  "type": "intrinsic",
@@ -1204,7 +1349,7 @@
1204
1349
  }
1205
1350
  },
1206
1351
  {
1207
- "id": 212,
1352
+ "id": 240,
1208
1353
  "name": "showCloseButton",
1209
1354
  "kind": 1024,
1210
1355
  "kindString": "Property",
@@ -1220,7 +1365,7 @@
1220
1365
  }
1221
1366
  },
1222
1367
  {
1223
- "id": 213,
1368
+ "id": 241,
1224
1369
  "name": "size",
1225
1370
  "kind": 1024,
1226
1371
  "kindString": "Property",
@@ -1232,12 +1377,68 @@
1232
1377
  },
1233
1378
  "type": {
1234
1379
  "type": "reference",
1235
- "id": 199,
1380
+ "id": 223,
1236
1381
  "name": "DialogSize"
1237
1382
  }
1238
1383
  },
1239
1384
  {
1240
- "id": 209,
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,
1241
1442
  "name": "onClose",
1242
1443
  "kind": 2048,
1243
1444
  "kindString": "Method",
@@ -1246,7 +1447,7 @@
1246
1447
  },
1247
1448
  "signatures": [
1248
1449
  {
1249
- "id": 210,
1450
+ "id": 235,
1250
1451
  "name": "onClose",
1251
1452
  "kind": 4096,
1252
1453
  "kindString": "Call signature",
@@ -1288,7 +1489,7 @@
1288
1489
  "DialogTexts": {
1289
1490
  "props": [
1290
1491
  {
1291
- "id": 202,
1492
+ "id": 226,
1292
1493
  "name": "close",
1293
1494
  "kind": 1024,
1294
1495
  "kindString": "Property",
@@ -1302,7 +1503,7 @@
1302
1503
  }
1303
1504
  },
1304
1505
  {
1305
- "id": 203,
1506
+ "id": 227,
1306
1507
  "name": "drag",
1307
1508
  "kind": 1024,
1308
1509
  "kindString": "Property",
@@ -1321,7 +1522,7 @@
1321
1522
  ],
1322
1523
  "props": [
1323
1524
  {
1324
- "id": 226,
1525
+ "id": 255,
1325
1526
  "name": "children",
1326
1527
  "kind": 1024,
1327
1528
  "kindString": "Property",
@@ -1337,7 +1538,7 @@
1337
1538
  }
1338
1539
  },
1339
1540
  {
1340
- "id": 227,
1541
+ "id": 256,
1341
1542
  "name": "horizontal",
1342
1543
  "kind": 1024,
1343
1544
  "kindString": "Property",
@@ -1360,7 +1561,7 @@
1360
1561
  ],
1361
1562
  "props": [
1362
1563
  {
1363
- "id": 222,
1564
+ "id": 251,
1364
1565
  "name": "Close",
1365
1566
  "kind": 1024,
1366
1567
  "kindString": "Property",
@@ -1369,9 +1570,28 @@
1369
1570
  "type": "reference",
1370
1571
  "typeArguments": [
1371
1572
  {
1372
- "type": "reference",
1373
- "id": 198,
1374
- "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
+ ]
1375
1595
  }
1376
1596
  ],
1377
1597
  "qualifiedName": "React.ForwardRefExoticComponent",
@@ -1380,7 +1600,7 @@
1380
1600
  }
1381
1601
  },
1382
1602
  {
1383
- "id": 217,
1603
+ "id": 246,
1384
1604
  "name": "Content",
1385
1605
  "kind": 1024,
1386
1606
  "kindString": "Property",
@@ -1389,9 +1609,28 @@
1389
1609
  "type": "reference",
1390
1610
  "typeArguments": [
1391
1611
  {
1392
- "type": "reference",
1393
- "id": 179,
1394
- "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
+ ]
1395
1634
  }
1396
1635
  ],
1397
1636
  "qualifiedName": "React.ForwardRefExoticComponent",
@@ -1400,7 +1639,7 @@
1400
1639
  }
1401
1640
  },
1402
1641
  {
1403
- "id": 221,
1642
+ "id": 250,
1404
1643
  "name": "Drawer",
1405
1644
  "kind": 1024,
1406
1645
  "kindString": "Property",
@@ -1409,8 +1648,27 @@
1409
1648
  "type": "reference",
1410
1649
  "typeArguments": [
1411
1650
  {
1412
- "type": "reference",
1413
- "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
+ ]
1414
1672
  }
1415
1673
  ],
1416
1674
  "qualifiedName": "React.ForwardRefExoticComponent",
@@ -1419,7 +1677,7 @@
1419
1677
  }
1420
1678
  },
1421
1679
  {
1422
- "id": 220,
1680
+ "id": 249,
1423
1681
  "name": "Extra",
1424
1682
  "kind": 1024,
1425
1683
  "kindString": "Property",
@@ -1428,8 +1686,27 @@
1428
1686
  "type": "reference",
1429
1687
  "typeArguments": [
1430
1688
  {
1431
- "type": "reference",
1432
- "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
+ ]
1433
1710
  }
1434
1711
  ],
1435
1712
  "qualifiedName": "React.ForwardRefExoticComponent",
@@ -1438,7 +1715,7 @@
1438
1715
  }
1439
1716
  },
1440
1717
  {
1441
- "id": 219,
1718
+ "id": 248,
1442
1719
  "name": "Footer",
1443
1720
  "kind": 1024,
1444
1721
  "kindString": "Property",
@@ -1447,9 +1724,28 @@
1447
1724
  "type": "reference",
1448
1725
  "typeArguments": [
1449
1726
  {
1450
- "type": "reference",
1451
- "id": 197,
1452
- "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
+ ]
1453
1749
  }
1454
1750
  ],
1455
1751
  "qualifiedName": "React.ForwardRefExoticComponent",
@@ -1458,7 +1754,7 @@
1458
1754
  }
1459
1755
  },
1460
1756
  {
1461
- "id": 218,
1757
+ "id": 247,
1462
1758
  "name": "Title",
1463
1759
  "kind": 1024,
1464
1760
  "kindString": "Property",
@@ -1467,9 +1763,28 @@
1467
1763
  "type": "reference",
1468
1764
  "typeArguments": [
1469
1765
  {
1470
- "type": "reference",
1471
- "id": 196,
1472
- "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
+ ]
1473
1788
  }
1474
1789
  ],
1475
1790
  "qualifiedName": "React.ForwardRefExoticComponent",
@@ -1478,7 +1793,7 @@
1478
1793
  }
1479
1794
  },
1480
1795
  {
1481
- "id": 216,
1796
+ "id": 245,
1482
1797
  "name": "Trigger",
1483
1798
  "kind": 1024,
1484
1799
  "kindString": "Property",
@@ -1487,8 +1802,27 @@
1487
1802
  "type": "reference",
1488
1803
  "typeArguments": [
1489
1804
  {
1490
- "type": "reference",
1491
- "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
+ ]
1492
1826
  }
1493
1827
  ],
1494
1828
  "qualifiedName": "React.ForwardRefExoticComponent",
@@ -1504,7 +1838,7 @@
1504
1838
  ],
1505
1839
  "props": [
1506
1840
  {
1507
- "id": 256,
1841
+ "id": 286,
1508
1842
  "name": "Anchor",
1509
1843
  "kind": 1024,
1510
1844
  "kindString": "Property",
@@ -1514,7 +1848,7 @@
1514
1848
  "typeArguments": [
1515
1849
  {
1516
1850
  "type": "reference",
1517
- "id": 243,
1851
+ "id": 272,
1518
1852
  "name": "HangerAnchorProps"
1519
1853
  }
1520
1854
  ],
@@ -1524,7 +1858,7 @@
1524
1858
  }
1525
1859
  },
1526
1860
  {
1527
- "id": 257,
1861
+ "id": 287,
1528
1862
  "name": "Content",
1529
1863
  "kind": 1024,
1530
1864
  "kindString": "Property",
@@ -1534,7 +1868,7 @@
1534
1868
  "typeArguments": [
1535
1869
  {
1536
1870
  "type": "reference",
1537
- "id": 248,
1871
+ "id": 277,
1538
1872
  "name": "HangerContentProps"
1539
1873
  }
1540
1874
  ],
@@ -1551,7 +1885,7 @@
1551
1885
  ],
1552
1886
  "props": [
1553
1887
  {
1554
- "id": 463,
1888
+ "id": 510,
1555
1889
  "name": "Group",
1556
1890
  "kind": 1024,
1557
1891
  "kindString": "Property",
@@ -1567,7 +1901,7 @@
1567
1901
  "types": [
1568
1902
  {
1569
1903
  "type": "reference",
1570
- "id": 459,
1904
+ "id": 506,
1571
1905
  "name": "NavigationMenuGroupProps"
1572
1906
  },
1573
1907
  {
@@ -1600,7 +1934,7 @@
1600
1934
  ],
1601
1935
  "props": [
1602
1936
  {
1603
- "id": 467,
1937
+ "id": 514,
1604
1938
  "name": "Item",
1605
1939
  "kind": 1024,
1606
1940
  "kindString": "Property",
@@ -1616,7 +1950,7 @@
1616
1950
  "types": [
1617
1951
  {
1618
1952
  "type": "reference",
1619
- "id": 451,
1953
+ "id": 498,
1620
1954
  "name": "NavigationItemProps"
1621
1955
  },
1622
1956
  {
@@ -1642,7 +1976,7 @@
1642
1976
  }
1643
1977
  },
1644
1978
  {
1645
- "id": 468,
1979
+ "id": 515,
1646
1980
  "name": "Menu",
1647
1981
  "kind": 1024,
1648
1982
  "kindString": "Property",
@@ -1652,12 +1986,12 @@
1652
1986
  },
1653
1987
  "type": {
1654
1988
  "type": "reference",
1655
- "id": 461,
1989
+ "id": 508,
1656
1990
  "name": "ForwardedNavigationMenuWithStatics"
1657
1991
  }
1658
1992
  },
1659
1993
  {
1660
- "id": 469,
1994
+ "id": 516,
1661
1995
  "name": "Panel",
1662
1996
  "kind": 1024,
1663
1997
  "kindString": "Property",
@@ -1673,7 +2007,7 @@
1673
2007
  "types": [
1674
2008
  {
1675
2009
  "type": "reference",
1676
- "id": 458,
2010
+ "id": 505,
1677
2011
  "name": "NavigationPanelProps"
1678
2012
  },
1679
2013
  {
@@ -1706,7 +2040,7 @@
1706
2040
  ],
1707
2041
  "props": [
1708
2042
  {
1709
- "id": 537,
2043
+ "id": 585,
1710
2044
  "name": "Close",
1711
2045
  "kind": 1024,
1712
2046
  "kindString": "Property",
@@ -1716,7 +2050,7 @@
1716
2050
  "typeArguments": [
1717
2051
  {
1718
2052
  "type": "reference",
1719
- "id": 530,
2053
+ "id": 577,
1720
2054
  "name": "PopoverCloseProps"
1721
2055
  }
1722
2056
  ],
@@ -1726,7 +2060,7 @@
1726
2060
  }
1727
2061
  },
1728
2062
  {
1729
- "id": 536,
2063
+ "id": 584,
1730
2064
  "name": "Content",
1731
2065
  "kind": 1024,
1732
2066
  "kindString": "Property",
@@ -1736,7 +2070,7 @@
1736
2070
  "typeArguments": [
1737
2071
  {
1738
2072
  "type": "reference",
1739
- "id": 523,
2073
+ "id": 570,
1740
2074
  "name": "PopoverContentProps"
1741
2075
  }
1742
2076
  ],
@@ -1746,7 +2080,7 @@
1746
2080
  }
1747
2081
  },
1748
2082
  {
1749
- "id": 535,
2083
+ "id": 583,
1750
2084
  "name": "Trigger",
1751
2085
  "kind": 1024,
1752
2086
  "kindString": "Property",
@@ -1756,7 +2090,7 @@
1756
2090
  "typeArguments": [
1757
2091
  {
1758
2092
  "type": "reference",
1759
- "id": 518,
2093
+ "id": 565,
1760
2094
  "name": "PopoverTriggerProps"
1761
2095
  }
1762
2096
  ],
@@ -1773,7 +2107,7 @@
1773
2107
  ],
1774
2108
  "props": [
1775
2109
  {
1776
- "id": 668,
2110
+ "id": 716,
1777
2111
  "name": "Item",
1778
2112
  "kind": 1024,
1779
2113
  "kindString": "Property",
@@ -1786,7 +2120,7 @@
1786
2120
  "typeArguments": [
1787
2121
  {
1788
2122
  "type": "reference",
1789
- "id": 659,
2123
+ "id": 707,
1790
2124
  "name": "RadioGroupItemProps"
1791
2125
  }
1792
2126
  ],
@@ -1803,7 +2137,7 @@
1803
2137
  ],
1804
2138
  "props": [
1805
2139
  {
1806
- "id": 949,
2140
+ "id": 997,
1807
2141
  "name": "Content",
1808
2142
  "kind": 1024,
1809
2143
  "kindString": "Property",
@@ -1819,7 +2153,7 @@
1819
2153
  "types": [
1820
2154
  {
1821
2155
  "type": "reference",
1822
- "id": 942,
2156
+ "id": 990,
1823
2157
  "name": "TabContentProps"
1824
2158
  },
1825
2159
  {
@@ -1845,7 +2179,7 @@
1845
2179
  }
1846
2180
  },
1847
2181
  {
1848
- "id": 947,
2182
+ "id": 995,
1849
2183
  "name": "List",
1850
2184
  "kind": 1024,
1851
2185
  "kindString": "Property",
@@ -1861,7 +2195,7 @@
1861
2195
  "types": [
1862
2196
  {
1863
2197
  "type": "reference",
1864
- "id": 937,
2198
+ "id": 985,
1865
2199
  "name": "TabListProps"
1866
2200
  },
1867
2201
  {
@@ -1887,7 +2221,7 @@
1887
2221
  }
1888
2222
  },
1889
2223
  {
1890
- "id": 948,
2224
+ "id": 996,
1891
2225
  "name": "Trigger",
1892
2226
  "kind": 1024,
1893
2227
  "kindString": "Property",
@@ -1903,7 +2237,7 @@
1903
2237
  "types": [
1904
2238
  {
1905
2239
  "type": "reference",
1906
- "id": 938,
2240
+ "id": 986,
1907
2241
  "name": "TabTriggerProps"
1908
2242
  },
1909
2243
  {
@@ -1936,7 +2270,7 @@
1936
2270
  ],
1937
2271
  "props": [
1938
2272
  {
1939
- "id": 1072,
2273
+ "id": 1120,
1940
2274
  "name": "Group",
1941
2275
  "kind": 1024,
1942
2276
  "kindString": "Property",
@@ -1952,7 +2286,7 @@
1952
2286
  "types": [
1953
2287
  {
1954
2288
  "type": "reference",
1955
- "id": 1052,
2289
+ "id": 1100,
1956
2290
  "name": "TreeviewGroupProps"
1957
2291
  },
1958
2292
  {
@@ -1978,7 +2312,7 @@
1978
2312
  }
1979
2313
  },
1980
2314
  {
1981
- "id": 1071,
2315
+ "id": 1119,
1982
2316
  "name": "Item",
1983
2317
  "kind": 1024,
1984
2318
  "kindString": "Property",
@@ -1994,7 +2328,7 @@
1994
2328
  "types": [
1995
2329
  {
1996
2330
  "type": "reference",
1997
- "id": 1051,
2331
+ "id": 1099,
1998
2332
  "name": "TreeviewItemProps"
1999
2333
  },
2000
2334
  {
@@ -2027,7 +2361,7 @@
2027
2361
  ],
2028
2362
  "props": [
2029
2363
  {
2030
- "id": 234,
2364
+ "id": 263,
2031
2365
  "name": "as",
2032
2366
  "kind": 1024,
2033
2367
  "kindString": "Property",
@@ -2056,7 +2390,7 @@
2056
2390
  }
2057
2391
  },
2058
2392
  {
2059
- "id": 235,
2393
+ "id": 264,
2060
2394
  "name": "children",
2061
2395
  "kind": 1024,
2062
2396
  "kindString": "Property",
@@ -2080,7 +2414,7 @@
2080
2414
  ],
2081
2415
  "props": [
2082
2416
  {
2083
- "id": 250,
2417
+ "id": 279,
2084
2418
  "name": "onClose",
2085
2419
  "kind": 1024,
2086
2420
  "kindString": "Property",
@@ -2092,12 +2426,12 @@
2092
2426
  },
2093
2427
  "type": {
2094
2428
  "type": "reference",
2095
- "id": 244,
2429
+ "id": 273,
2096
2430
  "name": "CloseHandler"
2097
2431
  }
2098
2432
  },
2099
2433
  {
2100
- "id": 251,
2434
+ "id": 280,
2101
2435
  "name": "placement",
2102
2436
  "kind": 1024,
2103
2437
  "kindString": "Property",
@@ -2119,7 +2453,7 @@
2119
2453
  "HangerTexts": {
2120
2454
  "props": [
2121
2455
  {
2122
- "id": 242,
2456
+ "id": 271,
2123
2457
  "name": "close",
2124
2458
  "kind": 1024,
2125
2459
  "kindString": "Property",
@@ -2140,7 +2474,7 @@
2140
2474
  ],
2141
2475
  "props": [
2142
2476
  {
2143
- "id": 269,
2477
+ "id": 299,
2144
2478
  "name": "appearance",
2145
2479
  "kind": 1024,
2146
2480
  "kindString": "Property",
@@ -2157,126 +2491,247 @@
2157
2491
  }
2158
2492
  },
2159
2493
  {
2160
- "id": 270,
2161
- "name": "dialog",
2494
+ "id": 306,
2495
+ "name": "icon",
2162
2496
  "kind": 1024,
2163
2497
  "kindString": "Property",
2164
- "flags": {
2165
- "isOptional": true
2166
- },
2498
+ "flags": {},
2167
2499
  "comment": {
2168
- "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."
2500
+ "shortText": "Set which icon should be rendered within button"
2169
2501
  },
2170
2502
  "type": {
2171
2503
  "type": "reference",
2172
- "typeArguments": [
2173
- {
2174
- "type": "reference",
2175
- "id": 204,
2176
- "name": "DialogProps"
2177
- }
2178
- ],
2179
- "qualifiedName": "React.ReactElement",
2180
- "package": "@types/react",
2181
- "name": "React.ReactElement"
2504
+ "id": 290,
2505
+ "name": "IconName"
2182
2506
  }
2183
2507
  },
2184
2508
  {
2185
- "id": 272,
2186
- "name": "hanger",
2509
+ "id": 313,
2510
+ "name": "rounded",
2187
2511
  "kind": 1024,
2188
2512
  "kindString": "Property",
2189
2513
  "flags": {
2190
2514
  "isOptional": true
2191
2515
  },
2192
2516
  "comment": {
2193
- "shortText": "Hanger component associated with the button."
2517
+ "shortText": "Set whether the button is rounded.\nDefault value is `false`"
2194
2518
  },
2195
2519
  "type": {
2196
- "type": "reference",
2197
- "typeArguments": [
2198
- {
2199
- "type": "reference",
2200
- "id": 252,
2201
- "name": "HangerProps"
2202
- }
2203
- ],
2204
- "qualifiedName": "React.ReactElement",
2205
- "package": "@types/react",
2206
- "name": "React.ReactElement"
2520
+ "type": "intrinsic",
2521
+ "name": "boolean"
2207
2522
  }
2208
2523
  },
2209
2524
  {
2210
- "id": 271,
2211
- "name": "icon",
2525
+ "id": 314,
2526
+ "name": "tooltip",
2212
2527
  "kind": 1024,
2213
2528
  "kindString": "Property",
2214
- "flags": {},
2529
+ "flags": {
2530
+ "isOptional": true
2531
+ },
2215
2532
  "comment": {
2216
- "shortText": "Set which icon should be rendered within button"
2533
+ "shortText": "A tooltip to show when hovering over the button"
2217
2534
  },
2218
2535
  "type": {
2219
- "type": "reference",
2220
- "id": 260,
2221
- "name": "IconName"
2536
+ "type": "intrinsic",
2537
+ "name": "string"
2222
2538
  }
2223
2539
  },
2224
2540
  {
2225
- "id": 273,
2226
- "name": "popover",
2227
- "kind": 1024,
2228
- "kindString": "Property",
2541
+ "id": 300,
2542
+ "name": "dialog",
2543
+ "kind": 2048,
2544
+ "kindString": "Method",
2545
+ "flags": {
2546
+ "isOptional": true
2547
+ },
2548
+ "signatures": [
2549
+ {
2550
+ "id": 301,
2551
+ "name": "dialog",
2552
+ "kind": 4096,
2553
+ "kindString": "Call signature",
2554
+ "flags": {},
2555
+ "comment": {
2556
+ "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."
2557
+ },
2558
+ "parameters": [
2559
+ {
2560
+ "id": 302,
2561
+ "name": "props",
2562
+ "kind": 32768,
2563
+ "kindString": "Parameter",
2564
+ "flags": {},
2565
+ "type": {
2566
+ "type": "reference",
2567
+ "typeArguments": [
2568
+ {
2569
+ "type": "reference",
2570
+ "id": 228,
2571
+ "name": "DialogProps"
2572
+ }
2573
+ ],
2574
+ "qualifiedName": "Partial",
2575
+ "package": "typescript",
2576
+ "name": "Partial"
2577
+ }
2578
+ }
2579
+ ],
2580
+ "type": {
2581
+ "type": "reference",
2582
+ "qualifiedName": "global.JSX.Element",
2583
+ "package": "@types/react",
2584
+ "name": "Element"
2585
+ }
2586
+ }
2587
+ ]
2588
+ },
2589
+ {
2590
+ "id": 303,
2591
+ "name": "hanger",
2592
+ "kind": 2048,
2593
+ "kindString": "Method",
2229
2594
  "flags": {
2230
2595
  "isOptional": true
2231
2596
  },
2232
- "comment": {
2233
- "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."
2234
- },
2235
- "type": {
2236
- "type": "reference",
2237
- "typeArguments": [
2238
- {
2597
+ "signatures": [
2598
+ {
2599
+ "id": 304,
2600
+ "name": "hanger",
2601
+ "kind": 4096,
2602
+ "kindString": "Call signature",
2603
+ "flags": {},
2604
+ "comment": {
2605
+ "shortText": "Hanger component associated with the button."
2606
+ },
2607
+ "parameters": [
2608
+ {
2609
+ "id": 305,
2610
+ "name": "props",
2611
+ "kind": 32768,
2612
+ "kindString": "Parameter",
2613
+ "flags": {},
2614
+ "type": {
2615
+ "type": "reference",
2616
+ "typeArguments": [
2617
+ {
2618
+ "type": "reference",
2619
+ "id": 281,
2620
+ "name": "HangerProps"
2621
+ }
2622
+ ],
2623
+ "qualifiedName": "Partial",
2624
+ "package": "typescript",
2625
+ "name": "Partial"
2626
+ }
2627
+ }
2628
+ ],
2629
+ "type": {
2239
2630
  "type": "reference",
2240
- "id": 531,
2241
- "name": "PopoverProps"
2631
+ "qualifiedName": "global.JSX.Element",
2632
+ "package": "@types/react",
2633
+ "name": "Element"
2242
2634
  }
2243
- ],
2244
- "qualifiedName": "React.ReactElement",
2245
- "package": "@types/react",
2246
- "name": "React.ReactElement"
2247
- }
2635
+ }
2636
+ ]
2248
2637
  },
2249
2638
  {
2250
- "id": 274,
2251
- "name": "rounded",
2252
- "kind": 1024,
2253
- "kindString": "Property",
2639
+ "id": 307,
2640
+ "name": "menu",
2641
+ "kind": 2048,
2642
+ "kindString": "Method",
2254
2643
  "flags": {
2255
2644
  "isOptional": true
2256
2645
  },
2257
- "comment": {
2258
- "shortText": "Set whether the button is rounded.\nDefault value is `false`"
2259
- },
2260
- "type": {
2261
- "type": "intrinsic",
2262
- "name": "boolean"
2263
- }
2646
+ "signatures": [
2647
+ {
2648
+ "id": 308,
2649
+ "name": "menu",
2650
+ "kind": 4096,
2651
+ "kindString": "Call signature",
2652
+ "flags": {},
2653
+ "comment": {
2654
+ "shortText": "Menu component associated with the button."
2655
+ },
2656
+ "parameters": [
2657
+ {
2658
+ "id": 309,
2659
+ "name": "props",
2660
+ "kind": 32768,
2661
+ "kindString": "Parameter",
2662
+ "flags": {},
2663
+ "type": {
2664
+ "type": "reference",
2665
+ "typeArguments": [
2666
+ {
2667
+ "type": "reference",
2668
+ "id": 404,
2669
+ "name": "MenuProps"
2670
+ }
2671
+ ],
2672
+ "qualifiedName": "Partial",
2673
+ "package": "typescript",
2674
+ "name": "Partial"
2675
+ }
2676
+ }
2677
+ ],
2678
+ "type": {
2679
+ "type": "reference",
2680
+ "qualifiedName": "global.JSX.Element",
2681
+ "package": "@types/react",
2682
+ "name": "Element"
2683
+ }
2684
+ }
2685
+ ]
2264
2686
  },
2265
2687
  {
2266
- "id": 275,
2267
- "name": "tooltip",
2268
- "kind": 1024,
2269
- "kindString": "Property",
2688
+ "id": 310,
2689
+ "name": "popover",
2690
+ "kind": 2048,
2691
+ "kindString": "Method",
2270
2692
  "flags": {
2271
2693
  "isOptional": true
2272
2694
  },
2273
- "comment": {
2274
- "shortText": "A tooltip to show when hovering over the button"
2275
- },
2276
- "type": {
2277
- "type": "intrinsic",
2278
- "name": "string"
2279
- }
2695
+ "signatures": [
2696
+ {
2697
+ "id": 311,
2698
+ "name": "popover",
2699
+ "kind": 4096,
2700
+ "kindString": "Call signature",
2701
+ "flags": {},
2702
+ "comment": {
2703
+ "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."
2704
+ },
2705
+ "parameters": [
2706
+ {
2707
+ "id": 312,
2708
+ "name": "props",
2709
+ "kind": 32768,
2710
+ "kindString": "Parameter",
2711
+ "flags": {},
2712
+ "type": {
2713
+ "type": "reference",
2714
+ "typeArguments": [
2715
+ {
2716
+ "type": "reference",
2717
+ "id": 578,
2718
+ "name": "PopoverProps"
2719
+ }
2720
+ ],
2721
+ "qualifiedName": "Partial",
2722
+ "package": "typescript",
2723
+ "name": "Partial"
2724
+ }
2725
+ }
2726
+ ],
2727
+ "type": {
2728
+ "type": "reference",
2729
+ "qualifiedName": "global.JSX.Element",
2730
+ "package": "@types/react",
2731
+ "name": "Element"
2732
+ }
2733
+ }
2734
+ ]
2280
2735
  }
2281
2736
  ]
2282
2737
  },
@@ -3092,7 +3547,7 @@
3092
3547
  ],
3093
3548
  "props": [
3094
3549
  {
3095
- "id": 263,
3550
+ "id": 293,
3096
3551
  "name": "name",
3097
3552
  "kind": 1024,
3098
3553
  "kindString": "Property",
@@ -3102,7 +3557,7 @@
3102
3557
  },
3103
3558
  "type": {
3104
3559
  "type": "reference",
3105
- "id": 260,
3560
+ "id": 290,
3106
3561
  "name": "IconName"
3107
3562
  }
3108
3563
  }
@@ -3114,7 +3569,7 @@
3114
3569
  ],
3115
3570
  "props": [
3116
3571
  {
3117
- "id": 289,
3572
+ "id": 335,
3118
3573
  "name": "button",
3119
3574
  "kind": 1024,
3120
3575
  "kindString": "Property",
@@ -3132,7 +3587,7 @@
3132
3587
  }
3133
3588
  },
3134
3589
  {
3135
- "id": 291,
3590
+ "id": 337,
3136
3591
  "name": "highlighted",
3137
3592
  "kind": 1024,
3138
3593
  "kindString": "Property",
@@ -3148,7 +3603,7 @@
3148
3603
  }
3149
3604
  },
3150
3605
  {
3151
- "id": 290,
3606
+ "id": 336,
3152
3607
  "name": "icon",
3153
3608
  "kind": 1024,
3154
3609
  "kindString": "Property",
@@ -3163,7 +3618,7 @@
3163
3618
  "types": [
3164
3619
  {
3165
3620
  "type": "reference",
3166
- "id": 260,
3621
+ "id": 290,
3167
3622
  "name": "IconName"
3168
3623
  },
3169
3624
  {
@@ -3176,7 +3631,7 @@
3176
3631
  }
3177
3632
  },
3178
3633
  {
3179
- "id": 292,
3634
+ "id": 338,
3180
3635
  "name": "state",
3181
3636
  "kind": 1024,
3182
3637
  "kindString": "Property",
@@ -3200,7 +3655,7 @@
3200
3655
  ],
3201
3656
  "props": [
3202
3657
  {
3203
- "id": 314,
3658
+ "id": 360,
3204
3659
  "name": "children",
3205
3660
  "kind": 1024,
3206
3661
  "kindString": "Property",
@@ -3216,7 +3671,7 @@
3216
3671
  }
3217
3672
  },
3218
3673
  {
3219
- "id": 315,
3674
+ "id": 361,
3220
3675
  "name": "disabled",
3221
3676
  "kind": 1024,
3222
3677
  "kindString": "Property",
@@ -3232,7 +3687,7 @@
3232
3687
  }
3233
3688
  },
3234
3689
  {
3235
- "id": 316,
3690
+ "id": 362,
3236
3691
  "name": "message",
3237
3692
  "kind": 1024,
3238
3693
  "kindString": "Property",
@@ -3248,7 +3703,7 @@
3248
3703
  }
3249
3704
  },
3250
3705
  {
3251
- "id": 317,
3706
+ "id": 363,
3252
3707
  "name": "state",
3253
3708
  "kind": 1024,
3254
3709
  "kindString": "Property",
@@ -3274,7 +3729,7 @@
3274
3729
  ],
3275
3730
  "props": [
3276
3731
  {
3277
- "id": 333,
3732
+ "id": 379,
3278
3733
  "name": "data",
3279
3734
  "kind": 1024,
3280
3735
  "kindString": "Property",
@@ -3288,13 +3743,13 @@
3288
3743
  "type": "array",
3289
3744
  "elementType": {
3290
3745
  "type": "reference",
3291
- "id": 324,
3746
+ "id": 370,
3292
3747
  "name": "ListboxItem"
3293
3748
  }
3294
3749
  }
3295
3750
  },
3296
3751
  {
3297
- "id": 334,
3752
+ "id": 380,
3298
3753
  "name": "defaultValue",
3299
3754
  "kind": 1024,
3300
3755
  "kindString": "Property",
@@ -3306,12 +3761,12 @@
3306
3761
  },
3307
3762
  "type": {
3308
3763
  "type": "reference",
3309
- "id": 325,
3764
+ "id": 371,
3310
3765
  "name": "ListboxValue"
3311
3766
  }
3312
3767
  },
3313
3768
  {
3314
- "id": 335,
3769
+ "id": 381,
3315
3770
  "name": "emptyValue",
3316
3771
  "kind": 1024,
3317
3772
  "kindString": "Property",
@@ -3323,12 +3778,12 @@
3323
3778
  },
3324
3779
  "type": {
3325
3780
  "type": "reference",
3326
- "id": 325,
3781
+ "id": 371,
3327
3782
  "name": "ListboxValue"
3328
3783
  }
3329
3784
  },
3330
3785
  {
3331
- "id": 336,
3786
+ "id": 382,
3332
3787
  "name": "highlighted",
3333
3788
  "kind": 1024,
3334
3789
  "kindString": "Property",
@@ -3344,7 +3799,7 @@
3344
3799
  }
3345
3800
  },
3346
3801
  {
3347
- "id": 337,
3802
+ "id": 383,
3348
3803
  "name": "loading",
3349
3804
  "kind": 1024,
3350
3805
  "kindString": "Property",
@@ -3360,7 +3815,7 @@
3360
3815
  }
3361
3816
  },
3362
3817
  {
3363
- "id": 338,
3818
+ "id": 384,
3364
3819
  "name": "state",
3365
3820
  "kind": 1024,
3366
3821
  "kindString": "Property",
@@ -3377,7 +3832,7 @@
3377
3832
  }
3378
3833
  },
3379
3834
  {
3380
- "id": 339,
3835
+ "id": 385,
3381
3836
  "name": "value",
3382
3837
  "kind": 1024,
3383
3838
  "kindString": "Property",
@@ -3389,7 +3844,7 @@
3389
3844
  },
3390
3845
  "type": {
3391
3846
  "type": "reference",
3392
- "id": 325,
3847
+ "id": 371,
3393
3848
  "name": "ListboxValue"
3394
3849
  }
3395
3850
  }
@@ -3398,7 +3853,7 @@
3398
3853
  "ListboxTexts": {
3399
3854
  "props": [
3400
3855
  {
3401
- "id": 330,
3856
+ "id": 376,
3402
3857
  "name": "allOption",
3403
3858
  "kind": 1024,
3404
3859
  "kindString": "Property",
@@ -3412,7 +3867,7 @@
3412
3867
  }
3413
3868
  },
3414
3869
  {
3415
- "id": 328,
3870
+ "id": 374,
3416
3871
  "name": "empty",
3417
3872
  "kind": 1024,
3418
3873
  "kindString": "Property",
@@ -3426,7 +3881,7 @@
3426
3881
  }
3427
3882
  },
3428
3883
  {
3429
- "id": 329,
3884
+ "id": 375,
3430
3885
  "name": "loading",
3431
3886
  "kind": 1024,
3432
3887
  "kindString": "Property",
@@ -3445,7 +3900,7 @@
3445
3900
  "Localization": {
3446
3901
  "props": [
3447
3902
  {
3448
- "id": 562,
3903
+ "id": 610,
3449
3904
  "name": "formatting",
3450
3905
  "kind": 1024,
3451
3906
  "kindString": "Property",
@@ -3456,14 +3911,14 @@
3456
3911
  "type": {
3457
3912
  "type": "reflection",
3458
3913
  "declaration": {
3459
- "id": 563,
3914
+ "id": 611,
3460
3915
  "name": "__type",
3461
3916
  "kind": 65536,
3462
3917
  "kindString": "Type literal",
3463
3918
  "flags": {},
3464
3919
  "children": [
3465
3920
  {
3466
- "id": 564,
3921
+ "id": 612,
3467
3922
  "name": "date",
3468
3923
  "kind": 1024,
3469
3924
  "kindString": "Property",
@@ -3482,7 +3937,7 @@
3482
3937
  "title": "Properties",
3483
3938
  "kind": 1024,
3484
3939
  "children": [
3485
- 564
3940
+ 612
3486
3941
  ]
3487
3942
  }
3488
3943
  ]
@@ -3490,7 +3945,7 @@
3490
3945
  }
3491
3946
  },
3492
3947
  {
3493
- "id": 560,
3948
+ "id": 608,
3494
3949
  "name": "locale",
3495
3950
  "kind": 1024,
3496
3951
  "kindString": "Property",
@@ -3505,7 +3960,7 @@
3505
3960
  }
3506
3961
  },
3507
3962
  {
3508
- "id": 561,
3963
+ "id": 609,
3509
3964
  "name": "texts",
3510
3965
  "kind": 1024,
3511
3966
  "kindString": "Property",
@@ -3515,7 +3970,7 @@
3515
3970
  },
3516
3971
  "type": {
3517
3972
  "type": "reference",
3518
- "id": 545,
3973
+ "id": 593,
3519
3974
  "name": "LocalizationTexts"
3520
3975
  }
3521
3976
  }
@@ -3524,7 +3979,7 @@
3524
3979
  "LocalizationTexts": {
3525
3980
  "props": [
3526
3981
  {
3527
- "id": 547,
3982
+ "id": 595,
3528
3983
  "name": "calendar",
3529
3984
  "kind": 1024,
3530
3985
  "kindString": "Property",
@@ -3534,12 +3989,12 @@
3534
3989
  },
3535
3990
  "type": {
3536
3991
  "type": "reference",
3537
- "id": 104,
3992
+ "id": 128,
3538
3993
  "name": "CalendarTexts"
3539
3994
  }
3540
3995
  },
3541
3996
  {
3542
- "id": 548,
3997
+ "id": 596,
3543
3998
  "name": "datepicker",
3544
3999
  "kind": 1024,
3545
4000
  "kindString": "Property",
@@ -3549,12 +4004,12 @@
3549
4004
  },
3550
4005
  "type": {
3551
4006
  "type": "reference",
3552
- "id": 155,
4007
+ "id": 179,
3553
4008
  "name": "DatepickerTexts"
3554
4009
  }
3555
4010
  },
3556
4011
  {
3557
- "id": 551,
4012
+ "id": 599,
3558
4013
  "name": "dialog",
3559
4014
  "kind": 1024,
3560
4015
  "kindString": "Property",
@@ -3564,12 +4019,12 @@
3564
4019
  },
3565
4020
  "type": {
3566
4021
  "type": "reference",
3567
- "id": 200,
4022
+ "id": 224,
3568
4023
  "name": "DialogTexts"
3569
4024
  }
3570
4025
  },
3571
4026
  {
3572
- "id": 549,
4027
+ "id": 597,
3573
4028
  "name": "hanger",
3574
4029
  "kind": 1024,
3575
4030
  "kindString": "Property",
@@ -3579,12 +4034,12 @@
3579
4034
  },
3580
4035
  "type": {
3581
4036
  "type": "reference",
3582
- "id": 240,
4037
+ "id": 269,
3583
4038
  "name": "HangerTexts"
3584
4039
  }
3585
4040
  },
3586
4041
  {
3587
- "id": 550,
4042
+ "id": 598,
3588
4043
  "name": "listbox",
3589
4044
  "kind": 1024,
3590
4045
  "kindString": "Property",
@@ -3594,12 +4049,12 @@
3594
4049
  },
3595
4050
  "type": {
3596
4051
  "type": "reference",
3597
- "id": 326,
4052
+ "id": 372,
3598
4053
  "name": "ListboxTexts"
3599
4054
  }
3600
4055
  },
3601
4056
  {
3602
- "id": 552,
4057
+ "id": 600,
3603
4058
  "name": "pagination",
3604
4059
  "kind": 1024,
3605
4060
  "kindString": "Property",
@@ -3609,12 +4064,12 @@
3609
4064
  },
3610
4065
  "type": {
3611
4066
  "type": "reference",
3612
- "id": 482,
4067
+ "id": 529,
3613
4068
  "name": "PaginationTexts"
3614
4069
  }
3615
4070
  },
3616
4071
  {
3617
- "id": 557,
4072
+ "id": 605,
3618
4073
  "name": "searchInput",
3619
4074
  "kind": 1024,
3620
4075
  "kindString": "Property",
@@ -3624,12 +4079,12 @@
3624
4079
  },
3625
4080
  "type": {
3626
4081
  "type": "reference",
3627
- "id": 299,
4082
+ "id": 345,
3628
4083
  "name": "SearchInputTexts"
3629
4084
  }
3630
4085
  },
3631
4086
  {
3632
- "id": 554,
4087
+ "id": 602,
3633
4088
  "name": "select",
3634
4089
  "kind": 1024,
3635
4090
  "kindString": "Property",
@@ -3639,12 +4094,12 @@
3639
4094
  },
3640
4095
  "type": {
3641
4096
  "type": "reference",
3642
- "id": 679,
4097
+ "id": 727,
3643
4098
  "name": "SelectTexts"
3644
4099
  }
3645
4100
  },
3646
4101
  {
3647
- "id": 553,
4102
+ "id": 601,
3648
4103
  "name": "table",
3649
4104
  "kind": 1024,
3650
4105
  "kindString": "Property",
@@ -3654,12 +4109,12 @@
3654
4109
  },
3655
4110
  "type": {
3656
4111
  "type": "reference",
3657
- "id": 872,
4112
+ "id": 920,
3658
4113
  "name": "TableTexts"
3659
4114
  }
3660
4115
  },
3661
4116
  {
3662
- "id": 555,
4117
+ "id": 603,
3663
4118
  "name": "toasts",
3664
4119
  "kind": 1024,
3665
4120
  "kindString": "Property",
@@ -3673,7 +4128,7 @@
3673
4128
  }
3674
4129
  },
3675
4130
  {
3676
- "id": 556,
4131
+ "id": 604,
3677
4132
  "name": "tour",
3678
4133
  "kind": 1024,
3679
4134
  "kindString": "Property",
@@ -3683,7 +4138,7 @@
3683
4138
  },
3684
4139
  "type": {
3685
4140
  "type": "reference",
3686
- "id": 1003,
4141
+ "id": 1051,
3687
4142
  "name": "TourTexts"
3688
4143
  }
3689
4144
  }
@@ -3692,7 +4147,7 @@
3692
4147
  "MenuProps": {
3693
4148
  "props": [
3694
4149
  {
3695
- "id": 360,
4150
+ "id": 406,
3696
4151
  "name": "children",
3697
4152
  "kind": 1024,
3698
4153
  "kindString": "Property",
@@ -3705,7 +4160,7 @@
3705
4160
  }
3706
4161
  },
3707
4162
  {
3708
- "id": 361,
4163
+ "id": 407,
3709
4164
  "name": "id",
3710
4165
  "kind": 1024,
3711
4166
  "kindString": "Property",
@@ -3716,6 +4171,24 @@
3716
4171
  "type": "intrinsic",
3717
4172
  "name": "string"
3718
4173
  }
4174
+ },
4175
+ {
4176
+ "id": 408,
4177
+ "name": "trigger",
4178
+ "kind": 1024,
4179
+ "kindString": "Property",
4180
+ "flags": {
4181
+ "isOptional": true
4182
+ },
4183
+ "comment": {
4184
+ "shortText": "A trigger to be used for the menu, should not be set if `children` already contains a trigger"
4185
+ },
4186
+ "type": {
4187
+ "type": "reference",
4188
+ "qualifiedName": "global.JSX.Element",
4189
+ "package": "@types/react",
4190
+ "name": "JSX.Element"
4191
+ }
3719
4192
  }
3720
4193
  ]
3721
4194
  },
@@ -3725,7 +4198,7 @@
3725
4198
  ],
3726
4199
  "props": [
3727
4200
  {
3728
- "id": 453,
4201
+ "id": 500,
3729
4202
  "name": "active",
3730
4203
  "kind": 1024,
3731
4204
  "kindString": "Property",
@@ -3741,7 +4214,7 @@
3741
4214
  }
3742
4215
  },
3743
4216
  {
3744
- "id": 454,
4217
+ "id": 501,
3745
4218
  "name": "onDrop",
3746
4219
  "kind": 1024,
3747
4220
  "kindString": "Property",
@@ -3759,7 +4232,7 @@
3759
4232
  }
3760
4233
  },
3761
4234
  {
3762
- "id": 455,
4235
+ "id": 502,
3763
4236
  "name": "postfix",
3764
4237
  "kind": 1024,
3765
4238
  "kindString": "Property",
@@ -3777,7 +4250,7 @@
3777
4250
  }
3778
4251
  },
3779
4252
  {
3780
- "id": 456,
4253
+ "id": 503,
3781
4254
  "name": "prefix",
3782
4255
  "kind": 1024,
3783
4256
  "kindString": "Property",
@@ -3795,7 +4268,7 @@
3795
4268
  }
3796
4269
  },
3797
4270
  {
3798
- "id": 457,
4271
+ "id": 504,
3799
4272
  "name": "target",
3800
4273
  "kind": 1024,
3801
4274
  "kindString": "Property",
@@ -3830,7 +4303,7 @@
3830
4303
  ],
3831
4304
  "props": [
3832
4305
  {
3833
- "id": 495,
4306
+ "id": 542,
3834
4307
  "name": "dangerouslyHijackGlobalKeyboardNavigation",
3835
4308
  "kind": 1024,
3836
4309
  "kindString": "Property",
@@ -3846,7 +4319,7 @@
3846
4319
  }
3847
4320
  },
3848
4321
  {
3849
- "id": 490,
4322
+ "id": 537,
3850
4323
  "name": "length",
3851
4324
  "kind": 1024,
3852
4325
  "kindString": "Property",
@@ -3860,7 +4333,7 @@
3860
4333
  }
3861
4334
  },
3862
4335
  {
3863
- "id": 491,
4336
+ "id": 538,
3864
4337
  "name": "pageSizes",
3865
4338
  "kind": 1024,
3866
4339
  "kindString": "Property",
@@ -3879,7 +4352,7 @@
3879
4352
  }
3880
4353
  },
3881
4354
  {
3882
- "id": 492,
4355
+ "id": 539,
3883
4356
  "name": "showPageControls",
3884
4357
  "kind": 1024,
3885
4358
  "kindString": "Property",
@@ -3895,7 +4368,7 @@
3895
4368
  }
3896
4369
  },
3897
4370
  {
3898
- "id": 493,
4371
+ "id": 540,
3899
4372
  "name": "showPageNumbers",
3900
4373
  "kind": 1024,
3901
4374
  "kindString": "Property",
@@ -3911,7 +4384,7 @@
3911
4384
  }
3912
4385
  },
3913
4386
  {
3914
- "id": 494,
4387
+ "id": 541,
3915
4388
  "name": "showPageSize",
3916
4389
  "kind": 1024,
3917
4390
  "kindString": "Property",
@@ -3931,7 +4404,7 @@
3931
4404
  "PaginationTexts": {
3932
4405
  "props": [
3933
4406
  {
3934
- "id": 487,
4407
+ "id": 534,
3935
4408
  "name": "actions",
3936
4409
  "kind": 1024,
3937
4410
  "kindString": "Property",
@@ -3941,12 +4414,12 @@
3941
4414
  },
3942
4415
  "type": {
3943
4416
  "type": "reference",
3944
- "id": 471,
4417
+ "id": 518,
3945
4418
  "name": "PaginationTextsActions"
3946
4419
  }
3947
4420
  },
3948
4421
  {
3949
- "id": 484,
4422
+ "id": 531,
3950
4423
  "name": "label",
3951
4424
  "kind": 1024,
3952
4425
  "kindString": "Property",
@@ -3960,7 +4433,7 @@
3960
4433
  }
3961
4434
  },
3962
4435
  {
3963
- "id": 485,
4436
+ "id": 532,
3964
4437
  "name": "pageSize",
3965
4438
  "kind": 1024,
3966
4439
  "kindString": "Property",
@@ -3974,7 +4447,7 @@
3974
4447
  }
3975
4448
  },
3976
4449
  {
3977
- "id": 486,
4450
+ "id": 533,
3978
4451
  "name": "showingXofYofTotal",
3979
4452
  "kind": 1024,
3980
4453
  "kindString": "Property",
@@ -3992,7 +4465,7 @@
3992
4465
  "PaginationTextsActions": {
3993
4466
  "props": [
3994
4467
  {
3995
- "id": 473,
4468
+ "id": 520,
3996
4469
  "name": "firstPage",
3997
4470
  "kind": 1024,
3998
4471
  "kindString": "Property",
@@ -4006,7 +4479,7 @@
4006
4479
  }
4007
4480
  },
4008
4481
  {
4009
- "id": 474,
4482
+ "id": 521,
4010
4483
  "name": "firstPageWithShortcut",
4011
4484
  "kind": 1024,
4012
4485
  "kindString": "Property",
@@ -4020,7 +4493,7 @@
4020
4493
  }
4021
4494
  },
4022
4495
  {
4023
- "id": 479,
4496
+ "id": 526,
4024
4497
  "name": "lastPage",
4025
4498
  "kind": 1024,
4026
4499
  "kindString": "Property",
@@ -4034,7 +4507,7 @@
4034
4507
  }
4035
4508
  },
4036
4509
  {
4037
- "id": 480,
4510
+ "id": 527,
4038
4511
  "name": "lastPageWithShortcut",
4039
4512
  "kind": 1024,
4040
4513
  "kindString": "Property",
@@ -4048,7 +4521,7 @@
4048
4521
  }
4049
4522
  },
4050
4523
  {
4051
- "id": 475,
4524
+ "id": 522,
4052
4525
  "name": "nextPage",
4053
4526
  "kind": 1024,
4054
4527
  "kindString": "Property",
@@ -4062,7 +4535,7 @@
4062
4535
  }
4063
4536
  },
4064
4537
  {
4065
- "id": 476,
4538
+ "id": 523,
4066
4539
  "name": "nextPageWithShortcut",
4067
4540
  "kind": 1024,
4068
4541
  "kindString": "Property",
@@ -4076,7 +4549,7 @@
4076
4549
  }
4077
4550
  },
4078
4551
  {
4079
- "id": 481,
4552
+ "id": 528,
4080
4553
  "name": "pageX",
4081
4554
  "kind": 1024,
4082
4555
  "kindString": "Property",
@@ -4090,7 +4563,7 @@
4090
4563
  }
4091
4564
  },
4092
4565
  {
4093
- "id": 477,
4566
+ "id": 524,
4094
4567
  "name": "previousPage",
4095
4568
  "kind": 1024,
4096
4569
  "kindString": "Property",
@@ -4104,7 +4577,7 @@
4104
4577
  }
4105
4578
  },
4106
4579
  {
4107
- "id": 478,
4580
+ "id": 525,
4108
4581
  "name": "previousPageWithShortcut",
4109
4582
  "kind": 1024,
4110
4583
  "kindString": "Property",
@@ -4126,7 +4599,7 @@
4126
4599
  ],
4127
4600
  "props": [
4128
4601
  {
4129
- "id": 525,
4602
+ "id": 572,
4130
4603
  "name": "children",
4131
4604
  "kind": 1024,
4132
4605
  "kindString": "Property",
@@ -4143,28 +4616,28 @@
4143
4616
  {
4144
4617
  "type": "reflection",
4145
4618
  "declaration": {
4146
- "id": 526,
4619
+ "id": 573,
4147
4620
  "name": "__type",
4148
4621
  "kind": 65536,
4149
4622
  "kindString": "Type literal",
4150
4623
  "flags": {},
4151
4624
  "signatures": [
4152
4625
  {
4153
- "id": 527,
4626
+ "id": 574,
4154
4627
  "name": "__type",
4155
4628
  "kind": 4096,
4156
4629
  "kindString": "Call signature",
4157
4630
  "flags": {},
4158
4631
  "parameters": [
4159
4632
  {
4160
- "id": 528,
4633
+ "id": 575,
4161
4634
  "name": "props",
4162
4635
  "kind": 32768,
4163
4636
  "kindString": "Parameter",
4164
4637
  "flags": {},
4165
4638
  "type": {
4166
4639
  "type": "reference",
4167
- "id": 519,
4640
+ "id": 566,
4168
4641
  "name": "PopoverContentRenderProps"
4169
4642
  }
4170
4643
  }
@@ -4183,7 +4656,7 @@
4183
4656
  }
4184
4657
  },
4185
4658
  {
4186
- "id": 529,
4659
+ "id": 576,
4187
4660
  "name": "placement",
4188
4661
  "kind": 1024,
4189
4662
  "kindString": "Property",
@@ -4204,14 +4677,14 @@
4204
4677
  "PopoverContentRenderProps": {
4205
4678
  "props": [
4206
4679
  {
4207
- "id": 521,
4680
+ "id": 568,
4208
4681
  "name": "close",
4209
4682
  "kind": 2048,
4210
4683
  "kindString": "Method",
4211
4684
  "flags": {},
4212
4685
  "signatures": [
4213
4686
  {
4214
- "id": 522,
4687
+ "id": 569,
4215
4688
  "name": "close",
4216
4689
  "kind": 4096,
4217
4690
  "kindString": "Call signature",
@@ -4233,7 +4706,7 @@
4233
4706
  ],
4234
4707
  "props": [
4235
4708
  {
4236
- "id": 541,
4709
+ "id": 589,
4237
4710
  "name": "duration",
4238
4711
  "kind": 1024,
4239
4712
  "kindString": "Property",
@@ -4253,7 +4726,7 @@
4253
4726
  "ProviderProps": {
4254
4727
  "props": [
4255
4728
  {
4256
- "id": 642,
4729
+ "id": 690,
4257
4730
  "name": "children",
4258
4731
  "kind": 1024,
4259
4732
  "kindString": "Property",
@@ -4269,7 +4742,7 @@
4269
4742
  }
4270
4743
  },
4271
4744
  {
4272
- "id": 643,
4745
+ "id": 691,
4273
4746
  "name": "localization",
4274
4747
  "kind": 1024,
4275
4748
  "kindString": "Property",
@@ -4281,7 +4754,7 @@
4281
4754
  },
4282
4755
  "type": {
4283
4756
  "type": "reference",
4284
- "id": 558,
4757
+ "id": 606,
4285
4758
  "name": "Localization"
4286
4759
  }
4287
4760
  }
@@ -4293,7 +4766,7 @@
4293
4766
  ],
4294
4767
  "props": [
4295
4768
  {
4296
- "id": 661,
4769
+ "id": 709,
4297
4770
  "name": "children",
4298
4771
  "kind": 1024,
4299
4772
  "kindString": "Property",
@@ -4309,7 +4782,7 @@
4309
4782
  }
4310
4783
  },
4311
4784
  {
4312
- "id": 662,
4785
+ "id": 710,
4313
4786
  "name": "disabled",
4314
4787
  "kind": 1024,
4315
4788
  "kindString": "Property",
@@ -4322,7 +4795,7 @@
4322
4795
  }
4323
4796
  },
4324
4797
  {
4325
- "id": 663,
4798
+ "id": 711,
4326
4799
  "name": "value",
4327
4800
  "kind": 1024,
4328
4801
  "kindString": "Property",
@@ -4332,7 +4805,7 @@
4332
4805
  },
4333
4806
  "type": {
4334
4807
  "type": "reference",
4335
- "id": 651,
4808
+ "id": 699,
4336
4809
  "name": "RadioGroupItemValue"
4337
4810
  }
4338
4811
  }
@@ -4357,7 +4830,7 @@
4357
4830
  ],
4358
4831
  "props": [
4359
4832
  {
4360
- "id": 716,
4833
+ "id": 764,
4361
4834
  "name": "subRows",
4362
4835
  "kind": 1024,
4363
4836
  "kindString": "Property",
@@ -4368,11 +4841,11 @@
4368
4841
  "type": "array",
4369
4842
  "elementType": {
4370
4843
  "type": "reference",
4371
- "id": 714,
4844
+ "id": 762,
4372
4845
  "typeArguments": [
4373
4846
  {
4374
4847
  "type": "reference",
4375
- "id": 718,
4848
+ "id": 766,
4376
4849
  "name": "TRow"
4377
4850
  }
4378
4851
  ],
@@ -4442,7 +4915,7 @@
4442
4915
  ],
4443
4916
  "props": [
4444
4917
  {
4445
- "id": 304,
4918
+ "id": 350,
4446
4919
  "name": "onSearch",
4447
4920
  "kind": 2048,
4448
4921
  "kindString": "Method",
@@ -4451,7 +4924,7 @@
4451
4924
  },
4452
4925
  "signatures": [
4453
4926
  {
4454
- "id": 305,
4927
+ "id": 351,
4455
4928
  "name": "onSearch",
4456
4929
  "kind": 4096,
4457
4930
  "kindString": "Call signature",
@@ -4461,7 +4934,7 @@
4461
4934
  },
4462
4935
  "parameters": [
4463
4936
  {
4464
- "id": 306,
4937
+ "id": 352,
4465
4938
  "name": "value",
4466
4939
  "kind": 32768,
4467
4940
  "kindString": "Parameter",
@@ -4508,7 +4981,7 @@
4508
4981
  "SearchInputTexts": {
4509
4982
  "props": [
4510
4983
  {
4511
- "id": 301,
4984
+ "id": 347,
4512
4985
  "name": "inputLabel",
4513
4986
  "kind": 1024,
4514
4987
  "kindString": "Property",
@@ -4529,7 +5002,7 @@
4529
5002
  ],
4530
5003
  "props": [
4531
5004
  {
4532
- "id": 687,
5005
+ "id": 735,
4533
5006
  "name": "editable",
4534
5007
  "kind": 1024,
4535
5008
  "kindString": "Property",
@@ -4549,7 +5022,7 @@
4549
5022
  "SelectTexts": {
4550
5023
  "props": [
4551
5024
  {
4552
- "id": 681,
5025
+ "id": 729,
4553
5026
  "name": "allOptionsSelected",
4554
5027
  "kind": 1024,
4555
5028
  "kindString": "Property",
@@ -4589,7 +5062,7 @@
4589
5062
  "SortRule": {
4590
5063
  "props": [
4591
5064
  {
4592
- "id": 767,
5065
+ "id": 815,
4593
5066
  "name": "accessor",
4594
5067
  "kind": 1024,
4595
5068
  "kindString": "Property",
@@ -4602,7 +5075,7 @@
4602
5075
  "typeArguments": [
4603
5076
  {
4604
5077
  "type": "reference",
4605
- "id": 769,
5078
+ "id": 817,
4606
5079
  "name": "T"
4607
5080
  }
4608
5081
  ],
@@ -4612,7 +5085,7 @@
4612
5085
  }
4613
5086
  },
4614
5087
  {
4615
- "id": 768,
5088
+ "id": 816,
4616
5089
  "name": "desc",
4617
5090
  "kind": 1024,
4618
5091
  "kindString": "Property",
@@ -4657,7 +5130,7 @@
4657
5130
  ],
4658
5131
  "props": [
4659
5132
  {
4660
- "id": 703,
5133
+ "id": 751,
4661
5134
  "name": "delay",
4662
5135
  "kind": 1024,
4663
5136
  "kindString": "Property",
@@ -4673,7 +5146,7 @@
4673
5146
  }
4674
5147
  },
4675
5148
  {
4676
- "id": 704,
5149
+ "id": 752,
4677
5150
  "name": "label",
4678
5151
  "kind": 1024,
4679
5152
  "kindString": "Property",
@@ -4700,7 +5173,7 @@
4700
5173
  ],
4701
5174
  "props": [
4702
5175
  {
4703
- "id": 944,
5176
+ "id": 992,
4704
5177
  "name": "id",
4705
5178
  "kind": 1024,
4706
5179
  "kindString": "Property",
@@ -4722,7 +5195,7 @@
4722
5195
  ],
4723
5196
  "props": [
4724
5197
  {
4725
- "id": 941,
5198
+ "id": 989,
4726
5199
  "name": "disabled",
4727
5200
  "kind": 1024,
4728
5201
  "kindString": "Property",
@@ -4738,7 +5211,7 @@
4738
5211
  }
4739
5212
  },
4740
5213
  {
4741
- "id": 940,
5214
+ "id": 988,
4742
5215
  "name": "id",
4743
5216
  "kind": 1024,
4744
5217
  "kindString": "Property",
@@ -4756,7 +5229,7 @@
4756
5229
  "TableCell": {
4757
5230
  "props": [
4758
5231
  {
4759
- "id": 773,
5232
+ "id": 821,
4760
5233
  "name": "accessor",
4761
5234
  "kind": 1024,
4762
5235
  "kindString": "Property",
@@ -4767,7 +5240,7 @@
4767
5240
  }
4768
5241
  },
4769
5242
  {
4770
- "id": 774,
5243
+ "id": 822,
4771
5244
  "name": "row",
4772
5245
  "kind": 1024,
4773
5246
  "kindString": "Property",
@@ -4777,11 +5250,11 @@
4777
5250
  },
4778
5251
  "type": {
4779
5252
  "type": "reference",
4780
- "id": 847,
5253
+ "id": 895,
4781
5254
  "typeArguments": [
4782
5255
  {
4783
5256
  "type": "reference",
4784
- "id": 776,
5257
+ "id": 824,
4785
5258
  "name": "TRow"
4786
5259
  }
4787
5260
  ],
@@ -4789,7 +5262,7 @@
4789
5262
  }
4790
5263
  },
4791
5264
  {
4792
- "id": 775,
5265
+ "id": 823,
4793
5266
  "name": "value",
4794
5267
  "kind": 1024,
4795
5268
  "kindString": "Property",
@@ -4807,7 +5280,7 @@
4807
5280
  "TableColumnProps": {
4808
5281
  "props": [
4809
5282
  {
4810
- "id": 779,
5283
+ "id": 827,
4811
5284
  "name": "accessor",
4812
5285
  "kind": 1024,
4813
5286
  "kindString": "Property",
@@ -4821,7 +5294,7 @@
4821
5294
  }
4822
5295
  },
4823
5296
  {
4824
- "id": 780,
5297
+ "id": 828,
4825
5298
  "name": "align",
4826
5299
  "kind": 1024,
4827
5300
  "kindString": "Property",
@@ -4850,7 +5323,7 @@
4850
5323
  }
4851
5324
  },
4852
5325
  {
4853
- "id": 781,
5326
+ "id": 829,
4854
5327
  "name": "className",
4855
5328
  "kind": 1024,
4856
5329
  "kindString": "Property",
@@ -4866,7 +5339,7 @@
4866
5339
  }
4867
5340
  },
4868
5341
  {
4869
- "id": 785,
5342
+ "id": 833,
4870
5343
  "name": "disableSorting",
4871
5344
  "kind": 1024,
4872
5345
  "kindString": "Property",
@@ -4882,7 +5355,7 @@
4882
5355
  }
4883
5356
  },
4884
5357
  {
4885
- "id": 789,
5358
+ "id": 837,
4886
5359
  "name": "flex",
4887
5360
  "kind": 1024,
4888
5361
  "kindString": "Property",
@@ -4902,28 +5375,28 @@
4902
5375
  {
4903
5376
  "type": "reflection",
4904
5377
  "declaration": {
4905
- "id": 790,
5378
+ "id": 838,
4906
5379
  "name": "__type",
4907
5380
  "kind": 65536,
4908
5381
  "kindString": "Type literal",
4909
5382
  "flags": {},
4910
5383
  "signatures": [
4911
5384
  {
4912
- "id": 791,
5385
+ "id": 839,
4913
5386
  "name": "__type",
4914
5387
  "kind": 4096,
4915
5388
  "kindString": "Call signature",
4916
5389
  "flags": {},
4917
5390
  "parameters": [
4918
5391
  {
4919
- "id": 792,
5392
+ "id": 840,
4920
5393
  "name": "row",
4921
5394
  "kind": 32768,
4922
5395
  "kindString": "Parameter",
4923
5396
  "flags": {},
4924
5397
  "type": {
4925
5398
  "type": "reference",
4926
- "id": 799,
5399
+ "id": 847,
4927
5400
  "name": "TRow"
4928
5401
  }
4929
5402
  }
@@ -4940,7 +5413,7 @@
4940
5413
  }
4941
5414
  },
4942
5415
  {
4943
- "id": 793,
5416
+ "id": 841,
4944
5417
  "name": "headRenderer",
4945
5418
  "kind": 1024,
4946
5419
  "kindString": "Property",
@@ -4958,7 +5431,7 @@
4958
5431
  }
4959
5432
  },
4960
5433
  {
4961
- "id": 794,
5434
+ "id": 842,
4962
5435
  "name": "hidden",
4963
5436
  "kind": 1024,
4964
5437
  "kindString": "Property",
@@ -4974,7 +5447,7 @@
4974
5447
  }
4975
5448
  },
4976
5449
  {
4977
- "id": 795,
5450
+ "id": 843,
4978
5451
  "name": "hiddenOnSubRows",
4979
5452
  "kind": 1024,
4980
5453
  "kindString": "Property",
@@ -4990,7 +5463,7 @@
4990
5463
  }
4991
5464
  },
4992
5465
  {
4993
- "id": 796,
5466
+ "id": 844,
4994
5467
  "name": "sort",
4995
5468
  "kind": 1024,
4996
5469
  "kindString": "Property",
@@ -5002,12 +5475,12 @@
5002
5475
  },
5003
5476
  "type": {
5004
5477
  "type": "reference",
5005
- "id": 758,
5478
+ "id": 806,
5006
5479
  "name": "SortDirection"
5007
5480
  }
5008
5481
  },
5009
5482
  {
5010
- "id": 797,
5483
+ "id": 845,
5011
5484
  "name": "sortType",
5012
5485
  "kind": 1024,
5013
5486
  "kindString": "Property",
@@ -5019,12 +5492,12 @@
5019
5492
  },
5020
5493
  "type": {
5021
5494
  "type": "reference",
5022
- "id": 770,
5495
+ "id": 818,
5023
5496
  "name": "SortTypes"
5024
5497
  }
5025
5498
  },
5026
5499
  {
5027
- "id": 798,
5500
+ "id": 846,
5028
5501
  "name": "style",
5029
5502
  "kind": 1024,
5030
5503
  "kindString": "Property",
@@ -5040,7 +5513,7 @@
5040
5513
  }
5041
5514
  },
5042
5515
  {
5043
- "id": 782,
5516
+ "id": 830,
5044
5517
  "name": "cellRenderer",
5045
5518
  "kind": 2048,
5046
5519
  "kindString": "Method",
@@ -5049,7 +5522,7 @@
5049
5522
  },
5050
5523
  "signatures": [
5051
5524
  {
5052
- "id": 783,
5525
+ "id": 831,
5053
5526
  "name": "cellRenderer",
5054
5527
  "kind": 4096,
5055
5528
  "kindString": "Call signature",
@@ -5059,18 +5532,18 @@
5059
5532
  },
5060
5533
  "parameters": [
5061
5534
  {
5062
- "id": 784,
5535
+ "id": 832,
5063
5536
  "name": "cellProps",
5064
5537
  "kind": 32768,
5065
5538
  "kindString": "Parameter",
5066
5539
  "flags": {},
5067
5540
  "type": {
5068
5541
  "type": "reference",
5069
- "id": 771,
5542
+ "id": 819,
5070
5543
  "typeArguments": [
5071
5544
  {
5072
5545
  "type": "reference",
5073
- "id": 799,
5546
+ "id": 847,
5074
5547
  "name": "TRow"
5075
5548
  }
5076
5549
  ],
@@ -5088,7 +5561,7 @@
5088
5561
  ]
5089
5562
  },
5090
5563
  {
5091
- "id": 786,
5564
+ "id": 834,
5092
5565
  "name": "editRenderer",
5093
5566
  "kind": 2048,
5094
5567
  "kindString": "Method",
@@ -5097,25 +5570,25 @@
5097
5570
  },
5098
5571
  "signatures": [
5099
5572
  {
5100
- "id": 787,
5573
+ "id": 835,
5101
5574
  "name": "editRenderer",
5102
5575
  "kind": 4096,
5103
5576
  "kindString": "Call signature",
5104
5577
  "flags": {},
5105
5578
  "parameters": [
5106
5579
  {
5107
- "id": 788,
5580
+ "id": 836,
5108
5581
  "name": "cellProps",
5109
5582
  "kind": 32768,
5110
5583
  "kindString": "Parameter",
5111
5584
  "flags": {},
5112
5585
  "type": {
5113
5586
  "type": "reference",
5114
- "id": 771,
5587
+ "id": 819,
5115
5588
  "typeArguments": [
5116
5589
  {
5117
5590
  "type": "reference",
5118
- "id": 799,
5591
+ "id": 847,
5119
5592
  "name": "TRow"
5120
5593
  }
5121
5594
  ],
@@ -5137,7 +5610,7 @@
5137
5610
  "TableGroupProps": {
5138
5611
  "props": [
5139
5612
  {
5140
- "id": 802,
5613
+ "id": 850,
5141
5614
  "name": "children",
5142
5615
  "kind": 1024,
5143
5616
  "kindString": "Property",
@@ -5153,11 +5626,11 @@
5153
5626
  "typeArguments": [
5154
5627
  {
5155
5628
  "type": "reference",
5156
- "id": 777,
5629
+ "id": 825,
5157
5630
  "typeArguments": [
5158
5631
  {
5159
5632
  "type": "reference",
5160
- "id": 805,
5633
+ "id": 853,
5161
5634
  "name": "TRow"
5162
5635
  }
5163
5636
  ],
@@ -5175,11 +5648,11 @@
5175
5648
  "typeArguments": [
5176
5649
  {
5177
5650
  "type": "reference",
5178
- "id": 777,
5651
+ "id": 825,
5179
5652
  "typeArguments": [
5180
5653
  {
5181
5654
  "type": "reference",
5182
- "id": 805,
5655
+ "id": 853,
5183
5656
  "name": "TRow"
5184
5657
  }
5185
5658
  ],
@@ -5195,7 +5668,7 @@
5195
5668
  }
5196
5669
  },
5197
5670
  {
5198
- "id": 803,
5671
+ "id": 851,
5199
5672
  "name": "hidden",
5200
5673
  "kind": 1024,
5201
5674
  "kindString": "Property",
@@ -5211,7 +5684,7 @@
5211
5684
  }
5212
5685
  },
5213
5686
  {
5214
- "id": 804,
5687
+ "id": 852,
5215
5688
  "name": "title",
5216
5689
  "kind": 1024,
5217
5690
  "kindString": "Property",
@@ -5232,7 +5705,7 @@
5232
5705
  ],
5233
5706
  "props": [
5234
5707
  {
5235
- "id": 841,
5708
+ "id": 889,
5236
5709
  "name": "actions",
5237
5710
  "kind": 1024,
5238
5711
  "kindString": "Property",
@@ -5246,11 +5719,11 @@
5246
5719
  "type": "array",
5247
5720
  "elementType": {
5248
5721
  "type": "reference",
5249
- "id": 754,
5722
+ "id": 802,
5250
5723
  "typeArguments": [
5251
5724
  {
5252
5725
  "type": "reference",
5253
- "id": 846,
5726
+ "id": 894,
5254
5727
  "name": "TRow"
5255
5728
  }
5256
5729
  ],
@@ -5259,7 +5732,7 @@
5259
5732
  }
5260
5733
  },
5261
5734
  {
5262
- "id": 808,
5735
+ "id": 856,
5263
5736
  "name": "autoFocus",
5264
5737
  "kind": 1024,
5265
5738
  "kindString": "Property",
@@ -5275,7 +5748,7 @@
5275
5748
  }
5276
5749
  },
5277
5750
  {
5278
- "id": 809,
5751
+ "id": 857,
5279
5752
  "name": "children",
5280
5753
  "kind": 1024,
5281
5754
  "kindString": "Property",
@@ -5288,7 +5761,7 @@
5288
5761
  "typeArguments": [
5289
5762
  {
5290
5763
  "type": "reference",
5291
- "id": 846,
5764
+ "id": 894,
5292
5765
  "name": "TRow"
5293
5766
  }
5294
5767
  ],
@@ -5296,7 +5769,7 @@
5296
5769
  }
5297
5770
  },
5298
5771
  {
5299
- "id": 811,
5772
+ "id": 859,
5300
5773
  "name": "dangerouslyHijackGlobalKeyboardNavigation",
5301
5774
  "kind": 1024,
5302
5775
  "kindString": "Property",
@@ -5312,7 +5785,7 @@
5312
5785
  }
5313
5786
  },
5314
5787
  {
5315
- "id": 810,
5788
+ "id": 858,
5316
5789
  "name": "data",
5317
5790
  "kind": 1024,
5318
5791
  "kindString": "Property",
@@ -5324,11 +5797,11 @@
5324
5797
  "type": "array",
5325
5798
  "elementType": {
5326
5799
  "type": "reference",
5327
- "id": 714,
5800
+ "id": 762,
5328
5801
  "typeArguments": [
5329
5802
  {
5330
5803
  "type": "reference",
5331
- "id": 846,
5804
+ "id": 894,
5332
5805
  "name": "TRow"
5333
5806
  }
5334
5807
  ],
@@ -5337,7 +5810,7 @@
5337
5810
  }
5338
5811
  },
5339
5812
  {
5340
- "id": 830,
5813
+ "id": 878,
5341
5814
  "name": "disablePagination",
5342
5815
  "kind": 1024,
5343
5816
  "kindString": "Property",
@@ -5350,7 +5823,7 @@
5350
5823
  }
5351
5824
  },
5352
5825
  {
5353
- "id": 826,
5826
+ "id": 874,
5354
5827
  "name": "disableSorting",
5355
5828
  "kind": 1024,
5356
5829
  "kindString": "Property",
@@ -5366,7 +5839,7 @@
5366
5839
  }
5367
5840
  },
5368
5841
  {
5369
- "id": 839,
5842
+ "id": 887,
5370
5843
  "name": "inlineEditingUniqueId",
5371
5844
  "kind": 1024,
5372
5845
  "kindString": "Property",
@@ -5381,13 +5854,13 @@
5381
5854
  "operator": "keyof",
5382
5855
  "target": {
5383
5856
  "type": "reference",
5384
- "id": 846,
5857
+ "id": 894,
5385
5858
  "name": "TRow"
5386
5859
  }
5387
5860
  }
5388
5861
  },
5389
5862
  {
5390
- "id": 831,
5863
+ "id": 879,
5391
5864
  "name": "length",
5392
5865
  "kind": 1024,
5393
5866
  "kindString": "Property",
@@ -5400,7 +5873,7 @@
5400
5873
  }
5401
5874
  },
5402
5875
  {
5403
- "id": 828,
5876
+ "id": 876,
5404
5877
  "name": "manualSorting",
5405
5878
  "kind": 1024,
5406
5879
  "kindString": "Property",
@@ -5416,7 +5889,7 @@
5416
5889
  }
5417
5890
  },
5418
5891
  {
5419
- "id": 832,
5892
+ "id": 880,
5420
5893
  "name": "onPaginate",
5421
5894
  "kind": 1024,
5422
5895
  "kindString": "Property",
@@ -5428,12 +5901,12 @@
5428
5901
  },
5429
5902
  "type": {
5430
5903
  "type": "reference",
5431
- "id": 709,
5904
+ "id": 757,
5432
5905
  "name": "PaginationHandler"
5433
5906
  }
5434
5907
  },
5435
5908
  {
5436
- "id": 845,
5909
+ "id": 893,
5437
5910
  "name": "onRowActive",
5438
5911
  "kind": 1024,
5439
5912
  "kindString": "Property",
@@ -5448,7 +5921,7 @@
5448
5921
  "typeArguments": [
5449
5922
  {
5450
5923
  "type": "reference",
5451
- "id": 846,
5924
+ "id": 894,
5452
5925
  "name": "TRow"
5453
5926
  }
5454
5927
  ],
@@ -5456,7 +5929,7 @@
5456
5929
  }
5457
5930
  },
5458
5931
  {
5459
- "id": 814,
5932
+ "id": 862,
5460
5933
  "name": "onRowClick",
5461
5934
  "kind": 1024,
5462
5935
  "kindString": "Property",
@@ -5468,11 +5941,11 @@
5468
5941
  },
5469
5942
  "type": {
5470
5943
  "type": "reference",
5471
- "id": 720,
5944
+ "id": 768,
5472
5945
  "typeArguments": [
5473
5946
  {
5474
5947
  "type": "reference",
5475
- "id": 846,
5948
+ "id": 894,
5476
5949
  "name": "TRow"
5477
5950
  }
5478
5951
  ],
@@ -5480,7 +5953,7 @@
5480
5953
  }
5481
5954
  },
5482
5955
  {
5483
- "id": 843,
5956
+ "id": 891,
5484
5957
  "name": "onRowCopy",
5485
5958
  "kind": 1024,
5486
5959
  "kindString": "Property",
@@ -5492,11 +5965,11 @@
5492
5965
  },
5493
5966
  "type": {
5494
5967
  "type": "reference",
5495
- "id": 742,
5968
+ "id": 790,
5496
5969
  "typeArguments": [
5497
5970
  {
5498
5971
  "type": "reference",
5499
- "id": 846,
5972
+ "id": 894,
5500
5973
  "name": "TRow"
5501
5974
  }
5502
5975
  ],
@@ -5504,7 +5977,7 @@
5504
5977
  }
5505
5978
  },
5506
5979
  {
5507
- "id": 840,
5980
+ "id": 888,
5508
5981
  "name": "onRowCreate",
5509
5982
  "kind": 1024,
5510
5983
  "kindString": "Property",
@@ -5516,11 +5989,11 @@
5516
5989
  },
5517
5990
  "type": {
5518
5991
  "type": "reference",
5519
- "id": 736,
5992
+ "id": 784,
5520
5993
  "typeArguments": [
5521
5994
  {
5522
5995
  "type": "reference",
5523
- "id": 846,
5996
+ "id": 894,
5524
5997
  "name": "TRow"
5525
5998
  }
5526
5999
  ],
@@ -5528,7 +6001,7 @@
5528
6001
  }
5529
6002
  },
5530
6003
  {
5531
- "id": 844,
6004
+ "id": 892,
5532
6005
  "name": "onRowDelete",
5533
6006
  "kind": 1024,
5534
6007
  "kindString": "Property",
@@ -5540,11 +6013,11 @@
5540
6013
  },
5541
6014
  "type": {
5542
6015
  "type": "reference",
5543
- "id": 748,
6016
+ "id": 796,
5544
6017
  "typeArguments": [
5545
6018
  {
5546
6019
  "type": "reference",
5547
- "id": 846,
6020
+ "id": 894,
5548
6021
  "name": "TRow"
5549
6022
  }
5550
6023
  ],
@@ -5552,7 +6025,7 @@
5552
6025
  }
5553
6026
  },
5554
6027
  {
5555
- "id": 815,
6028
+ "id": 863,
5556
6029
  "name": "onRowDrag",
5557
6030
  "kind": 1024,
5558
6031
  "kindString": "Property",
@@ -5564,11 +6037,11 @@
5564
6037
  },
5565
6038
  "type": {
5566
6039
  "type": "reference",
5567
- "id": 726,
6040
+ "id": 774,
5568
6041
  "typeArguments": [
5569
6042
  {
5570
6043
  "type": "reference",
5571
- "id": 846,
6044
+ "id": 894,
5572
6045
  "name": "TRow"
5573
6046
  }
5574
6047
  ],
@@ -5576,7 +6049,7 @@
5576
6049
  }
5577
6050
  },
5578
6051
  {
5579
- "id": 842,
6052
+ "id": 890,
5580
6053
  "name": "onRowEdit",
5581
6054
  "kind": 1024,
5582
6055
  "kindString": "Property",
@@ -5591,7 +6064,7 @@
5591
6064
  "typeArguments": [
5592
6065
  {
5593
6066
  "type": "reference",
5594
- "id": 846,
6067
+ "id": 894,
5595
6068
  "name": "TRow"
5596
6069
  }
5597
6070
  ],
@@ -5599,7 +6072,7 @@
5599
6072
  }
5600
6073
  },
5601
6074
  {
5602
- "id": 816,
6075
+ "id": 864,
5603
6076
  "name": "onSelectedRows",
5604
6077
  "kind": 1024,
5605
6078
  "kindString": "Property",
@@ -5611,12 +6084,12 @@
5611
6084
  },
5612
6085
  "type": {
5613
6086
  "type": "reference",
5614
- "id": 756,
6087
+ "id": 804,
5615
6088
  "name": "SelectedRowsHandler"
5616
6089
  }
5617
6090
  },
5618
6091
  {
5619
- "id": 827,
6092
+ "id": 875,
5620
6093
  "name": "onSort",
5621
6094
  "kind": 1024,
5622
6095
  "kindString": "Property",
@@ -5628,11 +6101,11 @@
5628
6101
  },
5629
6102
  "type": {
5630
6103
  "type": "reference",
5631
- "id": 759,
6104
+ "id": 807,
5632
6105
  "typeArguments": [
5633
6106
  {
5634
6107
  "type": "reference",
5635
- "id": 846,
6108
+ "id": 894,
5636
6109
  "name": "TRow"
5637
6110
  }
5638
6111
  ],
@@ -5640,7 +6113,7 @@
5640
6113
  }
5641
6114
  },
5642
6115
  {
5643
- "id": 833,
6116
+ "id": 881,
5644
6117
  "name": "pageIndex",
5645
6118
  "kind": 1024,
5646
6119
  "kindString": "Property",
@@ -5656,7 +6129,7 @@
5656
6129
  }
5657
6130
  },
5658
6131
  {
5659
- "id": 834,
6132
+ "id": 882,
5660
6133
  "name": "pageSize",
5661
6134
  "kind": 1024,
5662
6135
  "kindString": "Property",
@@ -5672,7 +6145,7 @@
5672
6145
  }
5673
6146
  },
5674
6147
  {
5675
- "id": 817,
6148
+ "id": 865,
5676
6149
  "name": "rowClassName",
5677
6150
  "kind": 1024,
5678
6151
  "kindString": "Property",
@@ -5692,32 +6165,32 @@
5692
6165
  {
5693
6166
  "type": "reflection",
5694
6167
  "declaration": {
5695
- "id": 818,
6168
+ "id": 866,
5696
6169
  "name": "__type",
5697
6170
  "kind": 65536,
5698
6171
  "kindString": "Type literal",
5699
6172
  "flags": {},
5700
6173
  "signatures": [
5701
6174
  {
5702
- "id": 819,
6175
+ "id": 867,
5703
6176
  "name": "__type",
5704
6177
  "kind": 4096,
5705
6178
  "kindString": "Call signature",
5706
6179
  "flags": {},
5707
6180
  "parameters": [
5708
6181
  {
5709
- "id": 820,
6182
+ "id": 868,
5710
6183
  "name": "row",
5711
6184
  "kind": 32768,
5712
6185
  "kindString": "Parameter",
5713
6186
  "flags": {},
5714
6187
  "type": {
5715
6188
  "type": "reference",
5716
- "id": 847,
6189
+ "id": 895,
5717
6190
  "typeArguments": [
5718
6191
  {
5719
6192
  "type": "reference",
5720
- "id": 846,
6193
+ "id": 894,
5721
6194
  "name": "TRow"
5722
6195
  }
5723
6196
  ],
@@ -5746,7 +6219,7 @@
5746
6219
  }
5747
6220
  },
5748
6221
  {
5749
- "id": 824,
6222
+ "id": 872,
5750
6223
  "name": "rowHeight",
5751
6224
  "kind": 1024,
5752
6225
  "kindString": "Property",
@@ -5762,7 +6235,7 @@
5762
6235
  }
5763
6236
  },
5764
6237
  {
5765
- "id": 825,
6238
+ "id": 873,
5766
6239
  "name": "selectedRows",
5767
6240
  "kind": 1024,
5768
6241
  "kindString": "Property",
@@ -5774,12 +6247,12 @@
5774
6247
  },
5775
6248
  "type": {
5776
6249
  "type": "reference",
5777
- "id": 757,
6250
+ "id": 805,
5778
6251
  "name": "SelectedRowsState"
5779
6252
  }
5780
6253
  },
5781
6254
  {
5782
- "id": 829,
6255
+ "id": 877,
5783
6256
  "name": "sortRules",
5784
6257
  "kind": 1024,
5785
6258
  "kindString": "Property",
@@ -5793,11 +6266,11 @@
5793
6266
  "type": "array",
5794
6267
  "elementType": {
5795
6268
  "type": "reference",
5796
- "id": 765,
6269
+ "id": 813,
5797
6270
  "typeArguments": [
5798
6271
  {
5799
6272
  "type": "reference",
5800
- "id": 846,
6273
+ "id": 894,
5801
6274
  "name": "TRow"
5802
6275
  }
5803
6276
  ],
@@ -5806,7 +6279,7 @@
5806
6279
  }
5807
6280
  },
5808
6281
  {
5809
- "id": 812,
6282
+ "id": 860,
5810
6283
  "name": "emptyStateRenderer",
5811
6284
  "kind": 2048,
5812
6285
  "kindString": "Method",
@@ -5815,7 +6288,7 @@
5815
6288
  },
5816
6289
  "signatures": [
5817
6290
  {
5818
- "id": 813,
6291
+ "id": 861,
5819
6292
  "name": "emptyStateRenderer",
5820
6293
  "kind": 4096,
5821
6294
  "kindString": "Call signature",
@@ -5833,7 +6306,7 @@
5833
6306
  ]
5834
6307
  },
5835
6308
  {
5836
- "id": 835,
6309
+ "id": 883,
5837
6310
  "name": "loadMore",
5838
6311
  "kind": 2048,
5839
6312
  "kindString": "Method",
@@ -5842,7 +6315,7 @@
5842
6315
  },
5843
6316
  "signatures": [
5844
6317
  {
5845
- "id": 836,
6318
+ "id": 884,
5846
6319
  "name": "loadMore",
5847
6320
  "kind": 4096,
5848
6321
  "kindString": "Call signature",
@@ -5852,7 +6325,7 @@
5852
6325
  },
5853
6326
  "parameters": [
5854
6327
  {
5855
- "id": 837,
6328
+ "id": 885,
5856
6329
  "name": "startIndex",
5857
6330
  "kind": 32768,
5858
6331
  "kindString": "Parameter",
@@ -5863,7 +6336,7 @@
5863
6336
  }
5864
6337
  },
5865
6338
  {
5866
- "id": 838,
6339
+ "id": 886,
5867
6340
  "name": "endIndex",
5868
6341
  "kind": 32768,
5869
6342
  "kindString": "Parameter",
@@ -5882,7 +6355,7 @@
5882
6355
  ]
5883
6356
  },
5884
6357
  {
5885
- "id": 821,
6358
+ "id": 869,
5886
6359
  "name": "rowExpansionRenderer",
5887
6360
  "kind": 2048,
5888
6361
  "kindString": "Method",
@@ -5891,7 +6364,7 @@
5891
6364
  },
5892
6365
  "signatures": [
5893
6366
  {
5894
- "id": 822,
6367
+ "id": 870,
5895
6368
  "name": "rowExpansionRenderer",
5896
6369
  "kind": 4096,
5897
6370
  "kindString": "Call signature",
@@ -5901,18 +6374,18 @@
5901
6374
  },
5902
6375
  "parameters": [
5903
6376
  {
5904
- "id": 823,
6377
+ "id": 871,
5905
6378
  "name": "row",
5906
6379
  "kind": 32768,
5907
6380
  "kindString": "Parameter",
5908
6381
  "flags": {},
5909
6382
  "type": {
5910
6383
  "type": "reference",
5911
- "id": 847,
6384
+ "id": 895,
5912
6385
  "typeArguments": [
5913
6386
  {
5914
6387
  "type": "reference",
5915
- "id": 846,
6388
+ "id": 894,
5916
6389
  "name": "TRow"
5917
6390
  }
5918
6391
  ],
@@ -5937,7 +6410,7 @@
5937
6410
  ],
5938
6411
  "props": [
5939
6412
  {
5940
- "id": 862,
6413
+ "id": 910,
5941
6414
  "name": "instance",
5942
6415
  "kind": 1024,
5943
6416
  "kindString": "Property",
@@ -5945,14 +6418,14 @@
5945
6418
  "type": {
5946
6419
  "type": "reflection",
5947
6420
  "declaration": {
5948
- "id": 863,
6421
+ "id": 911,
5949
6422
  "name": "__type",
5950
6423
  "kind": 65536,
5951
6424
  "kindString": "Type literal",
5952
6425
  "flags": {},
5953
6426
  "children": [
5954
6427
  {
5955
- "id": 869,
6428
+ "id": 917,
5956
6429
  "name": "resetRowEditing",
5957
6430
  "kind": 1024,
5958
6431
  "kindString": "Property",
@@ -5963,7 +6436,7 @@
5963
6436
  }
5964
6437
  },
5965
6438
  {
5966
- "id": 864,
6439
+ "id": 912,
5967
6440
  "name": "toggleAllRowsExpanded",
5968
6441
  "kind": 1024,
5969
6442
  "kindString": "Property",
@@ -5974,7 +6447,7 @@
5974
6447
  }
5975
6448
  },
5976
6449
  {
5977
- "id": 867,
6450
+ "id": 915,
5978
6451
  "name": "toggleEditing",
5979
6452
  "kind": 1024,
5980
6453
  "kindString": "Property",
@@ -5985,7 +6458,7 @@
5985
6458
  }
5986
6459
  },
5987
6460
  {
5988
- "id": 865,
6461
+ "id": 913,
5989
6462
  "name": "toggleHideAllColumns",
5990
6463
  "kind": 1024,
5991
6464
  "kindString": "Property",
@@ -5996,7 +6469,7 @@
5996
6469
  }
5997
6470
  },
5998
6471
  {
5999
- "id": 866,
6472
+ "id": 914,
6000
6473
  "name": "toggleHideColumn",
6001
6474
  "kind": 1024,
6002
6475
  "kindString": "Property",
@@ -6007,7 +6480,7 @@
6007
6480
  }
6008
6481
  },
6009
6482
  {
6010
- "id": 868,
6483
+ "id": 916,
6011
6484
  "name": "toggleRowEditing",
6012
6485
  "kind": 1024,
6013
6486
  "kindString": "Property",
@@ -6018,7 +6491,7 @@
6018
6491
  }
6019
6492
  },
6020
6493
  {
6021
- "id": 870,
6494
+ "id": 918,
6022
6495
  "name": "toggleRowExpanded",
6023
6496
  "kind": 1024,
6024
6497
  "kindString": "Property",
@@ -6029,7 +6502,7 @@
6029
6502
  }
6030
6503
  },
6031
6504
  {
6032
- "id": 871,
6505
+ "id": 919,
6033
6506
  "name": "toggleSortBy",
6034
6507
  "kind": 1024,
6035
6508
  "kindString": "Property",
@@ -6045,14 +6518,14 @@
6045
6518
  "title": "Properties",
6046
6519
  "kind": 1024,
6047
6520
  "children": [
6048
- 869,
6049
- 864,
6050
- 867,
6051
- 865,
6052
- 866,
6053
- 868,
6054
- 870,
6055
- 871
6521
+ 917,
6522
+ 912,
6523
+ 915,
6524
+ 913,
6525
+ 914,
6526
+ 916,
6527
+ 918,
6528
+ 919
6056
6529
  ]
6057
6530
  }
6058
6531
  ]
@@ -6064,7 +6537,7 @@
6064
6537
  "TableRow": {
6065
6538
  "props": [
6066
6539
  {
6067
- "id": 851,
6540
+ "id": 899,
6068
6541
  "name": "depth",
6069
6542
  "kind": 1024,
6070
6543
  "kindString": "Property",
@@ -6077,7 +6550,7 @@
6077
6550
  }
6078
6551
  },
6079
6552
  {
6080
- "id": 849,
6553
+ "id": 897,
6081
6554
  "name": "index",
6082
6555
  "kind": 1024,
6083
6556
  "kindString": "Property",
@@ -6091,7 +6564,7 @@
6091
6564
  }
6092
6565
  },
6093
6566
  {
6094
- "id": 850,
6567
+ "id": 898,
6095
6568
  "name": "indexPath",
6096
6569
  "kind": 1024,
6097
6570
  "kindString": "Property",
@@ -6105,7 +6578,7 @@
6105
6578
  }
6106
6579
  },
6107
6580
  {
6108
- "id": 856,
6581
+ "id": 904,
6109
6582
  "name": "isEditing",
6110
6583
  "kind": 1024,
6111
6584
  "kindString": "Property",
@@ -6118,7 +6591,7 @@
6118
6591
  }
6119
6592
  },
6120
6593
  {
6121
- "id": 852,
6594
+ "id": 900,
6122
6595
  "name": "isExpanded",
6123
6596
  "kind": 1024,
6124
6597
  "kindString": "Property",
@@ -6134,7 +6607,7 @@
6134
6607
  }
6135
6608
  },
6136
6609
  {
6137
- "id": 855,
6610
+ "id": 903,
6138
6611
  "name": "values",
6139
6612
  "kind": 1024,
6140
6613
  "kindString": "Property",
@@ -6144,11 +6617,11 @@
6144
6617
  },
6145
6618
  "type": {
6146
6619
  "type": "reference",
6147
- "id": 714,
6620
+ "id": 762,
6148
6621
  "typeArguments": [
6149
6622
  {
6150
6623
  "type": "reference",
6151
- "id": 859,
6624
+ "id": 907,
6152
6625
  "name": "TRow"
6153
6626
  }
6154
6627
  ],
@@ -6156,7 +6629,7 @@
6156
6629
  }
6157
6630
  },
6158
6631
  {
6159
- "id": 857,
6632
+ "id": 905,
6160
6633
  "name": "toggleRowEditing",
6161
6634
  "kind": 2048,
6162
6635
  "kindString": "Method",
@@ -6165,7 +6638,7 @@
6165
6638
  },
6166
6639
  "signatures": [
6167
6640
  {
6168
- "id": 858,
6641
+ "id": 906,
6169
6642
  "name": "toggleRowEditing",
6170
6643
  "kind": 4096,
6171
6644
  "kindString": "Call signature",
@@ -6178,7 +6651,7 @@
6178
6651
  ]
6179
6652
  },
6180
6653
  {
6181
- "id": 853,
6654
+ "id": 901,
6182
6655
  "name": "toggleRowExpanded",
6183
6656
  "kind": 2048,
6184
6657
  "kindString": "Method",
@@ -6187,7 +6660,7 @@
6187
6660
  },
6188
6661
  "signatures": [
6189
6662
  {
6190
- "id": 854,
6663
+ "id": 902,
6191
6664
  "name": "toggleRowExpanded",
6192
6665
  "kind": 4096,
6193
6666
  "kindString": "Call signature",
@@ -6207,7 +6680,7 @@
6207
6680
  "TableTexts": {
6208
6681
  "props": [
6209
6682
  {
6210
- "id": 874,
6683
+ "id": 922,
6211
6684
  "name": "actions",
6212
6685
  "kind": 1024,
6213
6686
  "kindString": "Property",
@@ -6218,7 +6691,7 @@
6218
6691
  }
6219
6692
  },
6220
6693
  {
6221
- "id": 876,
6694
+ "id": 924,
6222
6695
  "name": "copy",
6223
6696
  "kind": 1024,
6224
6697
  "kindString": "Property",
@@ -6229,7 +6702,7 @@
6229
6702
  }
6230
6703
  },
6231
6704
  {
6232
- "id": 877,
6705
+ "id": 925,
6233
6706
  "name": "del",
6234
6707
  "kind": 1024,
6235
6708
  "kindString": "Property",
@@ -6240,7 +6713,7 @@
6240
6713
  }
6241
6714
  },
6242
6715
  {
6243
- "id": 875,
6716
+ "id": 923,
6244
6717
  "name": "edit",
6245
6718
  "kind": 1024,
6246
6719
  "kindString": "Property",
@@ -6251,7 +6724,7 @@
6251
6724
  }
6252
6725
  },
6253
6726
  {
6254
- "id": 879,
6727
+ "id": 927,
6255
6728
  "name": "loading",
6256
6729
  "kind": 1024,
6257
6730
  "kindString": "Property",
@@ -6262,7 +6735,7 @@
6262
6735
  }
6263
6736
  },
6264
6737
  {
6265
- "id": 878,
6738
+ "id": 926,
6266
6739
  "name": "newSubRow",
6267
6740
  "kind": 1024,
6268
6741
  "kindString": "Property",
@@ -6280,7 +6753,7 @@
6280
6753
  ],
6281
6754
  "props": [
6282
6755
  {
6283
- "id": 932,
6756
+ "id": 980,
6284
6757
  "name": "children",
6285
6758
  "kind": 1024,
6286
6759
  "kindString": "Property",
@@ -6296,7 +6769,7 @@
6296
6769
  }
6297
6770
  },
6298
6771
  {
6299
- "id": 931,
6772
+ "id": 979,
6300
6773
  "name": "defaultId",
6301
6774
  "kind": 1024,
6302
6775
  "kindString": "Property",
@@ -6312,7 +6785,7 @@
6312
6785
  }
6313
6786
  },
6314
6787
  {
6315
- "id": 930,
6788
+ "id": 978,
6316
6789
  "name": "id",
6317
6790
  "kind": 1024,
6318
6791
  "kindString": "Property",
@@ -6328,7 +6801,7 @@
6328
6801
  }
6329
6802
  },
6330
6803
  {
6331
- "id": 933,
6804
+ "id": 981,
6332
6805
  "name": "orientation",
6333
6806
  "kind": 1024,
6334
6807
  "kindString": "Property",
@@ -6351,7 +6824,7 @@
6351
6824
  }
6352
6825
  },
6353
6826
  {
6354
- "id": 934,
6827
+ "id": 982,
6355
6828
  "name": "onChange",
6356
6829
  "kind": 2048,
6357
6830
  "kindString": "Method",
@@ -6360,7 +6833,7 @@
6360
6833
  },
6361
6834
  "signatures": [
6362
6835
  {
6363
- "id": 935,
6836
+ "id": 983,
6364
6837
  "name": "onChange",
6365
6838
  "kind": 4096,
6366
6839
  "kindString": "Call signature",
@@ -6370,7 +6843,7 @@
6370
6843
  },
6371
6844
  "parameters": [
6372
6845
  {
6373
- "id": 936,
6846
+ "id": 984,
6374
6847
  "name": "id",
6375
6848
  "kind": 32768,
6376
6849
  "kindString": "Parameter",
@@ -6393,7 +6866,7 @@
6393
6866
  "Taco": {
6394
6867
  "props": [
6395
6868
  {
6396
- "id": 567,
6869
+ "id": 615,
6397
6870
  "name": "localization",
6398
6871
  "kind": 1024,
6399
6872
  "kindString": "Property",
@@ -6403,7 +6876,7 @@
6403
6876
  },
6404
6877
  "type": {
6405
6878
  "type": "reference",
6406
- "id": 558,
6879
+ "id": 606,
6407
6880
  "name": "Localization"
6408
6881
  }
6409
6882
  }
@@ -6415,7 +6888,7 @@
6415
6888
  ],
6416
6889
  "props": [
6417
6890
  {
6418
- "id": 953,
6891
+ "id": 1001,
6419
6892
  "name": "highlighted",
6420
6893
  "kind": 1024,
6421
6894
  "kindString": "Property",
@@ -6431,7 +6904,7 @@
6431
6904
  }
6432
6905
  },
6433
6906
  {
6434
- "id": 954,
6907
+ "id": 1002,
6435
6908
  "name": "state",
6436
6909
  "kind": 1024,
6437
6910
  "kindString": "Property",
@@ -6448,7 +6921,7 @@
6448
6921
  }
6449
6922
  },
6450
6923
  {
6451
- "id": 955,
6924
+ "id": 1003,
6452
6925
  "name": "value",
6453
6926
  "kind": 1024,
6454
6927
  "kindString": "Property",
@@ -6471,7 +6944,7 @@
6471
6944
  ],
6472
6945
  "props": [
6473
6946
  {
6474
- "id": 995,
6947
+ "id": 1043,
6475
6948
  "name": "children",
6476
6949
  "kind": 1024,
6477
6950
  "kindString": "Property",
@@ -6496,7 +6969,7 @@
6496
6969
  }
6497
6970
  },
6498
6971
  {
6499
- "id": 997,
6972
+ "id": 1045,
6500
6973
  "name": "placement",
6501
6974
  "kind": 1024,
6502
6975
  "kindString": "Property",
@@ -6535,7 +7008,7 @@
6535
7008
  }
6536
7009
  },
6537
7010
  {
6538
- "id": 996,
7011
+ "id": 1044,
6539
7012
  "name": "title",
6540
7013
  "kind": 1024,
6541
7014
  "kindString": "Property",
@@ -6553,7 +7026,7 @@
6553
7026
  "TourProps": {
6554
7027
  "props": [
6555
7028
  {
6556
- "id": 1023,
7029
+ "id": 1071,
6557
7030
  "name": "autoStart",
6558
7031
  "kind": 1024,
6559
7032
  "kindString": "Property",
@@ -6569,7 +7042,7 @@
6569
7042
  }
6570
7043
  },
6571
7044
  {
6572
- "id": 1024,
7045
+ "id": 1072,
6573
7046
  "name": "children",
6574
7047
  "kind": 1024,
6575
7048
  "kindString": "Property",
@@ -6583,7 +7056,7 @@
6583
7056
  }
6584
7057
  },
6585
7058
  {
6586
- "id": 1025,
7059
+ "id": 1073,
6587
7060
  "name": "continuous",
6588
7061
  "kind": 1024,
6589
7062
  "kindString": "Property",
@@ -6599,7 +7072,7 @@
6599
7072
  }
6600
7073
  },
6601
7074
  {
6602
- "id": 1026,
7075
+ "id": 1074,
6603
7076
  "name": "disableCloseOnEsc",
6604
7077
  "kind": 1024,
6605
7078
  "kindString": "Property",
@@ -6615,7 +7088,7 @@
6615
7088
  }
6616
7089
  },
6617
7090
  {
6618
- "id": 1027,
7091
+ "id": 1075,
6619
7092
  "name": "disableOverlayClose",
6620
7093
  "kind": 1024,
6621
7094
  "kindString": "Property",
@@ -6631,7 +7104,7 @@
6631
7104
  }
6632
7105
  },
6633
7106
  {
6634
- "id": 1037,
7107
+ "id": 1085,
6635
7108
  "name": "disableScrollParentFix",
6636
7109
  "kind": 1024,
6637
7110
  "kindString": "Property",
@@ -6644,7 +7117,7 @@
6644
7117
  }
6645
7118
  },
6646
7119
  {
6647
- "id": 1028,
7120
+ "id": 1076,
6648
7121
  "name": "disableScrolling",
6649
7122
  "kind": 1024,
6650
7123
  "kindString": "Property",
@@ -6660,7 +7133,7 @@
6660
7133
  }
6661
7134
  },
6662
7135
  {
6663
- "id": 1032,
7136
+ "id": 1080,
6664
7137
  "name": "onComplete",
6665
7138
  "kind": 1024,
6666
7139
  "kindString": "Property",
@@ -6675,7 +7148,7 @@
6675
7148
  }
6676
7149
  },
6677
7150
  {
6678
- "id": 1036,
7151
+ "id": 1084,
6679
7152
  "name": "spotlightClicks",
6680
7153
  "kind": 1024,
6681
7154
  "kindString": "Property",
@@ -6688,7 +7161,7 @@
6688
7161
  }
6689
7162
  },
6690
7163
  {
6691
- "id": 1029,
7164
+ "id": 1077,
6692
7165
  "name": "onClose",
6693
7166
  "kind": 2048,
6694
7167
  "kindString": "Method",
@@ -6697,21 +7170,21 @@
6697
7170
  },
6698
7171
  "signatures": [
6699
7172
  {
6700
- "id": 1030,
7173
+ "id": 1078,
6701
7174
  "name": "onClose",
6702
7175
  "kind": 4096,
6703
7176
  "kindString": "Call signature",
6704
7177
  "flags": {},
6705
7178
  "parameters": [
6706
7179
  {
6707
- "id": 1031,
7180
+ "id": 1079,
6708
7181
  "name": "step",
6709
7182
  "kind": 32768,
6710
7183
  "kindString": "Parameter",
6711
7184
  "flags": {},
6712
7185
  "type": {
6713
7186
  "type": "reference",
6714
- "id": 1011,
7187
+ "id": 1059,
6715
7188
  "name": "TourStepProps"
6716
7189
  }
6717
7190
  }
@@ -6724,7 +7197,7 @@
6724
7197
  ]
6725
7198
  },
6726
7199
  {
6727
- "id": 1033,
7200
+ "id": 1081,
6728
7201
  "name": "onReady",
6729
7202
  "kind": 2048,
6730
7203
  "kindString": "Method",
@@ -6733,7 +7206,7 @@
6733
7206
  },
6734
7207
  "signatures": [
6735
7208
  {
6736
- "id": 1034,
7209
+ "id": 1082,
6737
7210
  "name": "onReady",
6738
7211
  "kind": 4096,
6739
7212
  "kindString": "Call signature",
@@ -6743,14 +7216,14 @@
6743
7216
  },
6744
7217
  "parameters": [
6745
7218
  {
6746
- "id": 1035,
7219
+ "id": 1083,
6747
7220
  "name": "step",
6748
7221
  "kind": 32768,
6749
7222
  "kindString": "Parameter",
6750
7223
  "flags": {},
6751
7224
  "type": {
6752
7225
  "type": "reference",
6753
- "id": 1011,
7226
+ "id": 1059,
6754
7227
  "name": "TourStepProps"
6755
7228
  }
6756
7229
  }
@@ -6767,7 +7240,7 @@
6767
7240
  "TourStepProps": {
6768
7241
  "props": [
6769
7242
  {
6770
- "id": 1013,
7243
+ "id": 1061,
6771
7244
  "name": "children",
6772
7245
  "kind": 1024,
6773
7246
  "kindString": "Property",
@@ -6783,7 +7256,7 @@
6783
7256
  }
6784
7257
  },
6785
7258
  {
6786
- "id": 1014,
7259
+ "id": 1062,
6787
7260
  "name": "position",
6788
7261
  "kind": 1024,
6789
7262
  "kindString": "Property",
@@ -6801,7 +7274,7 @@
6801
7274
  }
6802
7275
  },
6803
7276
  {
6804
- "id": 1015,
7277
+ "id": 1063,
6805
7278
  "name": "selector",
6806
7279
  "kind": 1024,
6807
7280
  "kindString": "Property",
@@ -6815,7 +7288,7 @@
6815
7288
  }
6816
7289
  },
6817
7290
  {
6818
- "id": 1016,
7291
+ "id": 1064,
6819
7292
  "name": "showBeacon",
6820
7293
  "kind": 1024,
6821
7294
  "kindString": "Property",
@@ -6831,7 +7304,7 @@
6831
7304
  }
6832
7305
  },
6833
7306
  {
6834
- "id": 1017,
7307
+ "id": 1065,
6835
7308
  "name": "title",
6836
7309
  "kind": 1024,
6837
7310
  "kindString": "Property",
@@ -6849,7 +7322,7 @@
6849
7322
  "TourTexts": {
6850
7323
  "props": [
6851
7324
  {
6852
- "id": 1005,
7325
+ "id": 1053,
6853
7326
  "name": "back",
6854
7327
  "kind": 1024,
6855
7328
  "kindString": "Property",
@@ -6863,7 +7336,7 @@
6863
7336
  }
6864
7337
  },
6865
7338
  {
6866
- "id": 1006,
7339
+ "id": 1054,
6867
7340
  "name": "close",
6868
7341
  "kind": 1024,
6869
7342
  "kindString": "Property",
@@ -6877,7 +7350,7 @@
6877
7350
  }
6878
7351
  },
6879
7352
  {
6880
- "id": 1008,
7353
+ "id": 1056,
6881
7354
  "name": "last",
6882
7355
  "kind": 1024,
6883
7356
  "kindString": "Property",
@@ -6891,7 +7364,7 @@
6891
7364
  }
6892
7365
  },
6893
7366
  {
6894
- "id": 1009,
7367
+ "id": 1057,
6895
7368
  "name": "next",
6896
7369
  "kind": 1024,
6897
7370
  "kindString": "Property",
@@ -6905,7 +7378,7 @@
6905
7378
  }
6906
7379
  },
6907
7380
  {
6908
- "id": 1010,
7381
+ "id": 1058,
6909
7382
  "name": "open",
6910
7383
  "kind": 1024,
6911
7384
  "kindString": "Property",
@@ -6919,7 +7392,7 @@
6919
7392
  }
6920
7393
  },
6921
7394
  {
6922
- "id": 1007,
7395
+ "id": 1055,
6923
7396
  "name": "skip",
6924
7397
  "kind": 1024,
6925
7398
  "kindString": "Property",
@@ -6940,7 +7413,7 @@
6940
7413
  ],
6941
7414
  "props": [
6942
7415
  {
6943
- "id": 1054,
7416
+ "id": 1102,
6944
7417
  "name": "className",
6945
7418
  "kind": 1024,
6946
7419
  "kindString": "Property",
@@ -6960,21 +7433,21 @@
6960
7433
  {
6961
7434
  "type": "reflection",
6962
7435
  "declaration": {
6963
- "id": 1055,
7436
+ "id": 1103,
6964
7437
  "name": "__type",
6965
7438
  "kind": 65536,
6966
7439
  "kindString": "Type literal",
6967
7440
  "flags": {},
6968
7441
  "signatures": [
6969
7442
  {
6970
- "id": 1056,
7443
+ "id": 1104,
6971
7444
  "name": "__type",
6972
7445
  "kind": 4096,
6973
7446
  "kindString": "Call signature",
6974
7447
  "flags": {},
6975
7448
  "parameters": [
6976
7449
  {
6977
- "id": 1057,
7450
+ "id": 1105,
6978
7451
  "name": "expanded",
6979
7452
  "kind": 32768,
6980
7453
  "kindString": "Parameter",
@@ -6997,7 +7470,7 @@
6997
7470
  }
6998
7471
  },
6999
7472
  {
7000
- "id": 1058,
7473
+ "id": 1106,
7001
7474
  "name": "expanded",
7002
7475
  "kind": 1024,
7003
7476
  "kindString": "Property",
@@ -7013,7 +7486,7 @@
7013
7486
  }
7014
7487
  },
7015
7488
  {
7016
- "id": 1059,
7489
+ "id": 1107,
7017
7490
  "name": "fixed",
7018
7491
  "kind": 1024,
7019
7492
  "kindString": "Property",
@@ -7029,7 +7502,7 @@
7029
7502
  }
7030
7503
  },
7031
7504
  {
7032
- "id": 1064,
7505
+ "id": 1112,
7033
7506
  "name": "title",
7034
7507
  "kind": 1024,
7035
7508
  "kindString": "Property",
@@ -7049,21 +7522,21 @@
7049
7522
  {
7050
7523
  "type": "reflection",
7051
7524
  "declaration": {
7052
- "id": 1065,
7525
+ "id": 1113,
7053
7526
  "name": "__type",
7054
7527
  "kind": 65536,
7055
7528
  "kindString": "Type literal",
7056
7529
  "flags": {},
7057
7530
  "signatures": [
7058
7531
  {
7059
- "id": 1066,
7532
+ "id": 1114,
7060
7533
  "name": "__type",
7061
7534
  "kind": 4096,
7062
7535
  "kindString": "Call signature",
7063
7536
  "flags": {},
7064
7537
  "parameters": [
7065
7538
  {
7066
- "id": 1067,
7539
+ "id": 1115,
7067
7540
  "name": "expanded",
7068
7541
  "kind": 32768,
7069
7542
  "kindString": "Parameter",
@@ -7088,7 +7561,7 @@
7088
7561
  }
7089
7562
  },
7090
7563
  {
7091
- "id": 1060,
7564
+ "id": 1108,
7092
7565
  "name": "onClick",
7093
7566
  "kind": 2048,
7094
7567
  "kindString": "Method",
@@ -7097,7 +7570,7 @@
7097
7570
  },
7098
7571
  "signatures": [
7099
7572
  {
7100
- "id": 1061,
7573
+ "id": 1109,
7101
7574
  "name": "onClick",
7102
7575
  "kind": 4096,
7103
7576
  "kindString": "Call signature",
@@ -7107,7 +7580,7 @@
7107
7580
  },
7108
7581
  "parameters": [
7109
7582
  {
7110
- "id": 1062,
7583
+ "id": 1110,
7111
7584
  "name": "event",
7112
7585
  "kind": 32768,
7113
7586
  "kindString": "Parameter",
@@ -7134,7 +7607,7 @@
7134
7607
  }
7135
7608
  },
7136
7609
  {
7137
- "id": 1063,
7610
+ "id": 1111,
7138
7611
  "name": "expanded",
7139
7612
  "kind": 32768,
7140
7613
  "kindString": "Parameter",
@@ -7159,7 +7632,7 @@
7159
7632
  "useListKeyboardNavigationOptions": {
7160
7633
  "props": [
7161
7634
  {
7162
- "id": 1094,
7635
+ "id": 1142,
7163
7636
  "name": "direction",
7164
7637
  "kind": 1024,
7165
7638
  "kindString": "Property",
@@ -7173,7 +7646,7 @@
7173
7646
  }
7174
7647
  },
7175
7648
  {
7176
- "id": 1095,
7649
+ "id": 1143,
7177
7650
  "name": "initialIndex",
7178
7651
  "kind": 1024,
7179
7652
  "kindString": "Property",
@@ -7190,7 +7663,7 @@
7190
7663
  "usePaginationValues": {
7191
7664
  "props": [
7192
7665
  {
7193
- "id": 506,
7666
+ "id": 553,
7194
7667
  "name": "pageIndex",
7195
7668
  "kind": 1024,
7196
7669
  "kindString": "Property",
@@ -7204,7 +7677,7 @@
7204
7677
  }
7205
7678
  },
7206
7679
  {
7207
- "id": 507,
7680
+ "id": 554,
7208
7681
  "name": "pageSize",
7209
7682
  "kind": 1024,
7210
7683
  "kindString": "Property",
@@ -7218,14 +7691,14 @@
7218
7691
  }
7219
7692
  },
7220
7693
  {
7221
- "id": 508,
7694
+ "id": 555,
7222
7695
  "name": "setPageIndex",
7223
7696
  "kind": 2048,
7224
7697
  "kindString": "Method",
7225
7698
  "flags": {},
7226
7699
  "signatures": [
7227
7700
  {
7228
- "id": 509,
7701
+ "id": 556,
7229
7702
  "name": "setPageIndex",
7230
7703
  "kind": 4096,
7231
7704
  "kindString": "Call signature",
@@ -7235,7 +7708,7 @@
7235
7708
  },
7236
7709
  "parameters": [
7237
7710
  {
7238
- "id": 510,
7711
+ "id": 557,
7239
7712
  "name": "pageIndex",
7240
7713
  "kind": 32768,
7241
7714
  "kindString": "Parameter",
@@ -7254,14 +7727,14 @@
7254
7727
  ]
7255
7728
  },
7256
7729
  {
7257
- "id": 511,
7730
+ "id": 558,
7258
7731
  "name": "setPageSize",
7259
7732
  "kind": 2048,
7260
7733
  "kindString": "Method",
7261
7734
  "flags": {},
7262
7735
  "signatures": [
7263
7736
  {
7264
- "id": 512,
7737
+ "id": 559,
7265
7738
  "name": "setPageSize",
7266
7739
  "kind": 4096,
7267
7740
  "kindString": "Call signature",
@@ -7271,7 +7744,7 @@
7271
7744
  },
7272
7745
  "parameters": [
7273
7746
  {
7274
- "id": 513,
7747
+ "id": 560,
7275
7748
  "name": "size",
7276
7749
  "kind": 32768,
7277
7750
  "kindString": "Parameter",
@@ -7294,7 +7767,7 @@
7294
7767
  "useTableRowCreation": {
7295
7768
  "props": [
7296
7769
  {
7297
- "id": 918,
7770
+ "id": 966,
7298
7771
  "name": "data",
7299
7772
  "kind": 1024,
7300
7773
  "kindString": "Property",
@@ -7303,11 +7776,11 @@
7303
7776
  "type": "array",
7304
7777
  "elementType": {
7305
7778
  "type": "reference",
7306
- "id": 714,
7779
+ "id": 762,
7307
7780
  "typeArguments": [
7308
7781
  {
7309
7782
  "type": "reference",
7310
- "id": 927,
7783
+ "id": 975,
7311
7784
  "name": "TRow"
7312
7785
  }
7313
7786
  ],
@@ -7316,7 +7789,7 @@
7316
7789
  }
7317
7790
  },
7318
7791
  {
7319
- "id": 926,
7792
+ "id": 974,
7320
7793
  "name": "isCreating",
7321
7794
  "kind": 1024,
7322
7795
  "kindString": "Property",
@@ -7327,33 +7800,33 @@
7327
7800
  }
7328
7801
  },
7329
7802
  {
7330
- "id": 919,
7803
+ "id": 967,
7331
7804
  "name": "create",
7332
7805
  "kind": 2048,
7333
7806
  "kindString": "Method",
7334
7807
  "flags": {},
7335
7808
  "signatures": [
7336
7809
  {
7337
- "id": 920,
7810
+ "id": 968,
7338
7811
  "name": "create",
7339
7812
  "kind": 4096,
7340
7813
  "kindString": "Call signature",
7341
7814
  "flags": {},
7342
7815
  "parameters": [
7343
7816
  {
7344
- "id": 921,
7817
+ "id": 969,
7345
7818
  "name": "rowIndexPath",
7346
7819
  "kind": 32768,
7347
7820
  "kindString": "Parameter",
7348
7821
  "flags": {},
7349
7822
  "type": {
7350
7823
  "type": "reference",
7351
- "id": 719,
7824
+ "id": 767,
7352
7825
  "name": "RowIndexPath"
7353
7826
  }
7354
7827
  },
7355
7828
  {
7356
- "id": 922,
7829
+ "id": 970,
7357
7830
  "name": "values",
7358
7831
  "kind": 32768,
7359
7832
  "kindString": "Parameter",
@@ -7368,35 +7841,35 @@
7368
7841
  ],
7369
7842
  "type": {
7370
7843
  "type": "reference",
7371
- "id": 719,
7844
+ "id": 767,
7372
7845
  "name": "RowIndexPath"
7373
7846
  }
7374
7847
  }
7375
7848
  ]
7376
7849
  },
7377
7850
  {
7378
- "id": 923,
7851
+ "id": 971,
7379
7852
  "name": "remove",
7380
7853
  "kind": 2048,
7381
7854
  "kindString": "Method",
7382
7855
  "flags": {},
7383
7856
  "signatures": [
7384
7857
  {
7385
- "id": 924,
7858
+ "id": 972,
7386
7859
  "name": "remove",
7387
7860
  "kind": 4096,
7388
7861
  "kindString": "Call signature",
7389
7862
  "flags": {},
7390
7863
  "parameters": [
7391
7864
  {
7392
- "id": 925,
7865
+ "id": 973,
7393
7866
  "name": "rowIndexPath",
7394
7867
  "kind": 32768,
7395
7868
  "kindString": "Parameter",
7396
7869
  "flags": {},
7397
7870
  "type": {
7398
7871
  "type": "reference",
7399
- "id": 719,
7872
+ "id": 767,
7400
7873
  "name": "RowIndexPath"
7401
7874
  }
7402
7875
  }