react-magma-dom 4.10.0-next.2 → 4.10.0-next.21

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 (46) hide show
  1. package/dist/components/AIButton/StyledAIButton.d.ts +13 -0
  2. package/dist/components/AIButton/StyledAIButtonTemplate.d.ts +15 -0
  3. package/dist/components/AIButton/index.d.ts +124 -0
  4. package/dist/components/AIButton/styles.d.ts +14 -0
  5. package/dist/components/Combobox/index.d.ts +1 -14
  6. package/dist/components/DatePicker/CalendarContext.d.ts +4 -0
  7. package/dist/components/DatePicker/CalendarHeader.d.ts +1 -1
  8. package/dist/components/DatePicker/MonthPicker.d.ts +6 -0
  9. package/dist/components/DatePicker/StyledSelect.d.ts +9 -0
  10. package/dist/components/DatePicker/YearPicker.d.ts +7 -0
  11. package/dist/components/DatePicker/utils.d.ts +6 -0
  12. package/dist/components/Drawer/Drawer.d.ts +10 -0
  13. package/dist/components/IconButton/index.d.ts +1 -0
  14. package/dist/components/Input/testUtils.d.ts +17 -0
  15. package/dist/components/Modal/Modal.d.ts +11 -1
  16. package/dist/components/Popover/Popover.d.ts +14 -1
  17. package/dist/components/Select/index.d.ts +0 -13
  18. package/dist/components/SelectionControls/InputStyles.d.ts +0 -1
  19. package/dist/components/Table/Table.d.ts +26 -0
  20. package/dist/components/Table/TablePagination.d.ts +5 -0
  21. package/dist/components/Table/TableRow.d.ts +1 -1
  22. package/dist/components/Tabs/CustomTab.d.ts +7 -0
  23. package/dist/components/Tabs/Tab.d.ts +6 -0
  24. package/dist/components/Toggle/index.d.ts +2 -2
  25. package/dist/components/Transition/Transition.d.ts +5 -0
  26. package/dist/components/TreeView/TreeItem.d.ts +3 -2
  27. package/dist/components/TreeView/TreeViewContext.d.ts +5 -0
  28. package/dist/components/TreeView/useTreeItem.d.ts +31 -18
  29. package/dist/components/TreeView/useTreeView.d.ts +56 -39
  30. package/dist/components/TreeView/utils.d.ts +3 -1
  31. package/dist/esm/index.js +3586 -2220
  32. package/dist/esm/index.js.map +1 -1
  33. package/dist/hooks/useDeviceDetect.d.ts +6 -1
  34. package/dist/hooks/useMagmaFloating.d.ts +24 -0
  35. package/dist/i18n/interface.d.ts +11 -0
  36. package/dist/index.d.ts +4 -1
  37. package/dist/properties.json +1501 -128
  38. package/dist/react-magma-dom.cjs.development.js +3343 -1992
  39. package/dist/react-magma-dom.cjs.development.js.map +1 -1
  40. package/dist/react-magma-dom.cjs.production.min.js +1 -1
  41. package/dist/react-magma-dom.cjs.production.min.js.map +1 -1
  42. package/dist/theme/ThemeContext.d.ts +14 -0
  43. package/dist/theme/components/drawerTransition.d.ts +2 -0
  44. package/dist/theme/magma.d.ts +28 -0
  45. package/dist/utils/index.d.ts +2 -0
  46. package/package.json +3 -3
@@ -1,4 +1,790 @@
1
1
  [
2
+ {
3
+ "name": "SpanProps",
4
+ "kind": 256,
5
+ "kindString": "Interface",
6
+ "flags": {
7
+ "isExported": true
8
+ },
9
+ "id": "SpanProps",
10
+ "tags": {},
11
+ "properties": {
12
+ "hasIconLeading": {
13
+ "name": "hasIconLeading",
14
+ "required": false,
15
+ "type": {
16
+ "name": "boolean"
17
+ },
18
+ "deprecated": false
19
+ },
20
+ "size": {
21
+ "name": "size",
22
+ "required": false,
23
+ "type": {
24
+ "name": "enum",
25
+ "options": [
26
+ "AIButtonSize.large",
27
+ "AIButtonSize.medium",
28
+ "AIButtonSize.small"
29
+ ]
30
+ },
31
+ "deprecated": false
32
+ }
33
+ }
34
+ },
35
+ {
36
+ "name": "StyledAIButtonProps",
37
+ "kind": 256,
38
+ "kindString": "Interface",
39
+ "flags": {
40
+ "isExported": true
41
+ },
42
+ "id": "StyledAIButtonProps",
43
+ "tags": {},
44
+ "properties": {
45
+ "hoverColor": {
46
+ "name": "hoverColor",
47
+ "required": false,
48
+ "type": {
49
+ "name": "string"
50
+ },
51
+ "description": "Sets the color when the button is hovered.",
52
+ "deprecated": false
53
+ },
54
+ "iconOnly": {
55
+ "name": "iconOnly",
56
+ "required": false,
57
+ "type": {
58
+ "name": "boolean"
59
+ },
60
+ "deprecated": false
61
+ },
62
+ "isAnimated": {
63
+ "name": "isAnimated",
64
+ "required": false,
65
+ "type": {
66
+ "name": "boolean"
67
+ },
68
+ "description": "Enables gradient animation for the button background.",
69
+ "defaultValue": "false",
70
+ "deprecated": false
71
+ },
72
+ "isFullWidth": {
73
+ "name": "isFullWidth",
74
+ "required": false,
75
+ "type": {
76
+ "name": "boolean"
77
+ },
78
+ "description": "Set the button to display full-width.",
79
+ "defaultValue": "false",
80
+ "deprecated": false
81
+ },
82
+ "isInverse": {
83
+ "name": "isInverse",
84
+ "required": false,
85
+ "type": {
86
+ "name": "boolean"
87
+ },
88
+ "description": "If true, the component will have inverse styling to better appear on a dark background",
89
+ "defaultValue": "false",
90
+ "deprecated": false
91
+ },
92
+ "isLoading": {
93
+ "name": "isLoading",
94
+ "required": false,
95
+ "type": {
96
+ "name": "boolean"
97
+ },
98
+ "description": " Set the button to a loading state",
99
+ "defaultValue": "false",
100
+ "deprecated": false
101
+ },
102
+ "leadingIcon": {
103
+ "name": "leadingIcon",
104
+ "required": false,
105
+ "type": {
106
+ "name": "boolean | ReactElement"
107
+ },
108
+ "deprecated": false
109
+ },
110
+ "leftColor": {
111
+ "name": "leftColor",
112
+ "required": false,
113
+ "type": {
114
+ "name": "string"
115
+ },
116
+ "description": "Sets the color for the left side of the button gradient.",
117
+ "deprecated": false
118
+ },
119
+ "pressedColor": {
120
+ "name": "pressedColor",
121
+ "required": false,
122
+ "type": {
123
+ "name": "string"
124
+ },
125
+ "description": "Sets the color when the button is pressed (active).",
126
+ "deprecated": false
127
+ },
128
+ "rightColor": {
129
+ "name": "rightColor",
130
+ "required": false,
131
+ "type": {
132
+ "name": "string"
133
+ },
134
+ "description": "Sets the color for the right side of the button gradient.",
135
+ "deprecated": false
136
+ },
137
+ "shape": {
138
+ "name": "shape",
139
+ "required": false,
140
+ "type": {
141
+ "name": "enum",
142
+ "options": [
143
+ "AIButtonShape.fill",
144
+ "AIButtonShape.leftCap",
145
+ "AIButtonShape.rightCap",
146
+ "AIButtonShape.round"
147
+ ]
148
+ },
149
+ "description": "Defines the border radius",
150
+ "defaultValue": "AIButtonShape.fill",
151
+ "deprecated": false
152
+ },
153
+ "size": {
154
+ "name": "size",
155
+ "required": false,
156
+ "type": {
157
+ "name": "enum",
158
+ "options": [
159
+ "AIButtonSize.large",
160
+ "AIButtonSize.medium",
161
+ "AIButtonSize.small"
162
+ ]
163
+ },
164
+ "description": "The relative size of the button",
165
+ "defaultValue": "AIButtonSize.medium",
166
+ "deprecated": false
167
+ },
168
+ "textTransform": {
169
+ "name": "textTransform",
170
+ "required": false,
171
+ "type": {
172
+ "name": "enum",
173
+ "options": [
174
+ "AIButtonTextTransform.none",
175
+ "AIButtonTextTransform.uppercase"
176
+ ]
177
+ },
178
+ "description": "Determines whether the button appears in all-caps",
179
+ "defaultValue": "AIButtonTextTransform.uppercase",
180
+ "deprecated": false
181
+ },
182
+ "trailingIcon": {
183
+ "name": "trailingIcon",
184
+ "required": false,
185
+ "type": {
186
+ "name": "ReactElement"
187
+ },
188
+ "deprecated": false
189
+ },
190
+ "type": {
191
+ "name": "type",
192
+ "required": false,
193
+ "type": {
194
+ "name": "enum",
195
+ "options": [
196
+ "AIButtonType.button",
197
+ "AIButtonType.reset",
198
+ "AIButtonType.submit"
199
+ ]
200
+ },
201
+ "description": "The type attribute of the button",
202
+ "defaultValue": "AIButtonType.button",
203
+ "deprecated": false
204
+ },
205
+ "variant": {
206
+ "name": "variant",
207
+ "required": false,
208
+ "type": {
209
+ "name": "enum",
210
+ "options": [
211
+ "AIButtonVariant.variantA",
212
+ "AIButtonVariant.variantB"
213
+ ]
214
+ },
215
+ "description": "The variant of the button",
216
+ "defaultValue": "AIButtonVariant.variantA",
217
+ "deprecated": false
218
+ }
219
+ }
220
+ },
221
+ {
222
+ "name": "BaseAIButtonProps",
223
+ "kind": 256,
224
+ "kindString": "Interface",
225
+ "flags": {
226
+ "isExported": true
227
+ },
228
+ "id": "BaseAIButtonProps",
229
+ "tags": {},
230
+ "properties": {
231
+ "hoverColor": {
232
+ "name": "hoverColor",
233
+ "required": false,
234
+ "type": {
235
+ "name": "string"
236
+ },
237
+ "description": "Sets the color when the button is hovered.",
238
+ "deprecated": false
239
+ },
240
+ "isAnimated": {
241
+ "name": "isAnimated",
242
+ "required": false,
243
+ "type": {
244
+ "name": "boolean"
245
+ },
246
+ "description": "Enables gradient animation for the button background.",
247
+ "defaultValue": "false",
248
+ "deprecated": false
249
+ },
250
+ "isFullWidth": {
251
+ "name": "isFullWidth",
252
+ "required": false,
253
+ "type": {
254
+ "name": "boolean"
255
+ },
256
+ "description": "Set the button to display full-width.",
257
+ "defaultValue": "false",
258
+ "deprecated": false
259
+ },
260
+ "isInverse": {
261
+ "name": "isInverse",
262
+ "required": false,
263
+ "type": {
264
+ "name": "boolean"
265
+ },
266
+ "description": "If true, the component will have inverse styling to better appear on a dark background",
267
+ "defaultValue": "false",
268
+ "deprecated": false
269
+ },
270
+ "isLoading": {
271
+ "name": "isLoading",
272
+ "required": false,
273
+ "type": {
274
+ "name": "boolean"
275
+ },
276
+ "description": " Set the button to a loading state",
277
+ "defaultValue": "false",
278
+ "deprecated": false
279
+ },
280
+ "leftColor": {
281
+ "name": "leftColor",
282
+ "required": false,
283
+ "type": {
284
+ "name": "string"
285
+ },
286
+ "description": "Sets the color for the left side of the button gradient.",
287
+ "deprecated": false
288
+ },
289
+ "pressedColor": {
290
+ "name": "pressedColor",
291
+ "required": false,
292
+ "type": {
293
+ "name": "string"
294
+ },
295
+ "description": "Sets the color when the button is pressed (active).",
296
+ "deprecated": false
297
+ },
298
+ "rightColor": {
299
+ "name": "rightColor",
300
+ "required": false,
301
+ "type": {
302
+ "name": "string"
303
+ },
304
+ "description": "Sets the color for the right side of the button gradient.",
305
+ "deprecated": false
306
+ },
307
+ "shape": {
308
+ "name": "shape",
309
+ "required": false,
310
+ "type": {
311
+ "name": "enum",
312
+ "options": [
313
+ "AIButtonShape.fill",
314
+ "AIButtonShape.leftCap",
315
+ "AIButtonShape.rightCap",
316
+ "AIButtonShape.round"
317
+ ]
318
+ },
319
+ "description": "Defines the border radius",
320
+ "defaultValue": "AIButtonShape.fill",
321
+ "deprecated": false
322
+ },
323
+ "size": {
324
+ "name": "size",
325
+ "required": false,
326
+ "type": {
327
+ "name": "enum",
328
+ "options": [
329
+ "AIButtonSize.large",
330
+ "AIButtonSize.medium",
331
+ "AIButtonSize.small"
332
+ ]
333
+ },
334
+ "description": "The relative size of the button",
335
+ "defaultValue": "AIButtonSize.medium",
336
+ "deprecated": false
337
+ },
338
+ "textTransform": {
339
+ "name": "textTransform",
340
+ "required": false,
341
+ "type": {
342
+ "name": "enum",
343
+ "options": [
344
+ "AIButtonTextTransform.none",
345
+ "AIButtonTextTransform.uppercase"
346
+ ]
347
+ },
348
+ "description": "Determines whether the button appears in all-caps",
349
+ "defaultValue": "AIButtonTextTransform.uppercase",
350
+ "deprecated": false
351
+ },
352
+ "type": {
353
+ "name": "type",
354
+ "required": false,
355
+ "type": {
356
+ "name": "enum",
357
+ "options": [
358
+ "AIButtonType.button",
359
+ "AIButtonType.reset",
360
+ "AIButtonType.submit"
361
+ ]
362
+ },
363
+ "description": "The type attribute of the button",
364
+ "defaultValue": "AIButtonType.button",
365
+ "deprecated": false
366
+ },
367
+ "variant": {
368
+ "name": "variant",
369
+ "required": false,
370
+ "type": {
371
+ "name": "enum",
372
+ "options": [
373
+ "AIButtonVariant.variantA",
374
+ "AIButtonVariant.variantB"
375
+ ]
376
+ },
377
+ "description": "The variant of the button",
378
+ "defaultValue": "AIButtonVariant.variantA",
379
+ "deprecated": false
380
+ }
381
+ }
382
+ },
383
+ {
384
+ "name": "IconOnlyAIButtonProps",
385
+ "kind": 256,
386
+ "kindString": "Interface",
387
+ "flags": {
388
+ "isExported": true
389
+ },
390
+ "id": "IconOnlyAIButtonProps",
391
+ "tags": {},
392
+ "properties": {
393
+ "aria-label": {
394
+ "name": "aria-label",
395
+ "required": true,
396
+ "type": {
397
+ "name": "string"
398
+ },
399
+ "description": "The text the screen reader will announce. Required for icon-only buttons",
400
+ "deprecated": false
401
+ },
402
+ "children": {
403
+ "name": "children",
404
+ "required": false,
405
+ "type": {
406
+ "name": "never"
407
+ },
408
+ "description": "The content of the component",
409
+ "deprecated": false
410
+ },
411
+ "hoverColor": {
412
+ "name": "hoverColor",
413
+ "required": false,
414
+ "type": {
415
+ "name": "string"
416
+ },
417
+ "description": "Sets the color when the button is hovered.",
418
+ "deprecated": false
419
+ },
420
+ "isAnimated": {
421
+ "name": "isAnimated",
422
+ "required": false,
423
+ "type": {
424
+ "name": "boolean"
425
+ },
426
+ "description": "Enables gradient animation for the button background.",
427
+ "defaultValue": "false",
428
+ "deprecated": false
429
+ },
430
+ "isFullWidth": {
431
+ "name": "isFullWidth",
432
+ "required": false,
433
+ "type": {
434
+ "name": "boolean"
435
+ },
436
+ "description": "Set the button to display full-width.",
437
+ "defaultValue": "false",
438
+ "deprecated": false
439
+ },
440
+ "isInverse": {
441
+ "name": "isInverse",
442
+ "required": false,
443
+ "type": {
444
+ "name": "boolean"
445
+ },
446
+ "description": "If true, the component will have inverse styling to better appear on a dark background",
447
+ "defaultValue": "false",
448
+ "deprecated": false
449
+ },
450
+ "isLoading": {
451
+ "name": "isLoading",
452
+ "required": false,
453
+ "type": {
454
+ "name": "boolean"
455
+ },
456
+ "description": " Set the button to a loading state",
457
+ "defaultValue": "false",
458
+ "deprecated": false
459
+ },
460
+ "leadingIcon": {
461
+ "name": "leadingIcon",
462
+ "required": false,
463
+ "type": {
464
+ "name": "true | ReactElement"
465
+ },
466
+ "description": "Icon to display on the right side within the component",
467
+ "deprecated": false
468
+ },
469
+ "leftColor": {
470
+ "name": "leftColor",
471
+ "required": false,
472
+ "type": {
473
+ "name": "string"
474
+ },
475
+ "description": "Sets the color for the left side of the button gradient.",
476
+ "deprecated": false
477
+ },
478
+ "pressedColor": {
479
+ "name": "pressedColor",
480
+ "required": false,
481
+ "type": {
482
+ "name": "string"
483
+ },
484
+ "description": "Sets the color when the button is pressed (active).",
485
+ "deprecated": false
486
+ },
487
+ "rightColor": {
488
+ "name": "rightColor",
489
+ "required": false,
490
+ "type": {
491
+ "name": "string"
492
+ },
493
+ "description": "Sets the color for the right side of the button gradient.",
494
+ "deprecated": false
495
+ },
496
+ "shape": {
497
+ "name": "shape",
498
+ "required": false,
499
+ "type": {
500
+ "name": "enum",
501
+ "options": [
502
+ "AIButtonShape.fill",
503
+ "AIButtonShape.leftCap",
504
+ "AIButtonShape.rightCap",
505
+ "AIButtonShape.round"
506
+ ]
507
+ },
508
+ "description": "Defines the border radius",
509
+ "defaultValue": "AIButtonShape.fill",
510
+ "deprecated": false
511
+ },
512
+ "size": {
513
+ "name": "size",
514
+ "required": false,
515
+ "type": {
516
+ "name": "enum",
517
+ "options": [
518
+ "AIButtonSize.large",
519
+ "AIButtonSize.medium",
520
+ "AIButtonSize.small"
521
+ ]
522
+ },
523
+ "description": "The relative size of the button",
524
+ "defaultValue": "AIButtonSize.medium",
525
+ "deprecated": false
526
+ },
527
+ "textTransform": {
528
+ "name": "textTransform",
529
+ "required": false,
530
+ "type": {
531
+ "name": "enum",
532
+ "options": [
533
+ "AIButtonTextTransform.none",
534
+ "AIButtonTextTransform.uppercase"
535
+ ]
536
+ },
537
+ "description": "Determines whether the button appears in all-caps",
538
+ "defaultValue": "AIButtonTextTransform.uppercase",
539
+ "deprecated": false
540
+ },
541
+ "type": {
542
+ "name": "type",
543
+ "required": false,
544
+ "type": {
545
+ "name": "enum",
546
+ "options": [
547
+ "AIButtonType.button",
548
+ "AIButtonType.reset",
549
+ "AIButtonType.submit"
550
+ ]
551
+ },
552
+ "description": "The type attribute of the button",
553
+ "defaultValue": "AIButtonType.button",
554
+ "deprecated": false
555
+ },
556
+ "variant": {
557
+ "name": "variant",
558
+ "required": false,
559
+ "type": {
560
+ "name": "enum",
561
+ "options": [
562
+ "AIButtonVariant.variantA",
563
+ "AIButtonVariant.variantB"
564
+ ]
565
+ },
566
+ "description": "The variant of the button",
567
+ "defaultValue": "AIButtonVariant.variantA",
568
+ "deprecated": false
569
+ }
570
+ }
571
+ },
572
+ {
573
+ "name": "TextAIButtonProps",
574
+ "kind": 256,
575
+ "kindString": "Interface",
576
+ "flags": {
577
+ "isExported": true
578
+ },
579
+ "id": "TextAIButtonProps",
580
+ "tags": {},
581
+ "properties": {
582
+ "children": {
583
+ "name": "children",
584
+ "required": true,
585
+ "type": {
586
+ "name": "React.ReactChild | "
587
+ },
588
+ "description": "The content of the component",
589
+ "deprecated": false
590
+ },
591
+ "hoverColor": {
592
+ "name": "hoverColor",
593
+ "required": false,
594
+ "type": {
595
+ "name": "string"
596
+ },
597
+ "description": "Sets the color when the button is hovered.",
598
+ "deprecated": false
599
+ },
600
+ "isAnimated": {
601
+ "name": "isAnimated",
602
+ "required": false,
603
+ "type": {
604
+ "name": "boolean"
605
+ },
606
+ "description": "Enables gradient animation for the button background.",
607
+ "defaultValue": "false",
608
+ "deprecated": false
609
+ },
610
+ "isFullWidth": {
611
+ "name": "isFullWidth",
612
+ "required": false,
613
+ "type": {
614
+ "name": "boolean"
615
+ },
616
+ "description": "Set the button to display full-width.",
617
+ "defaultValue": "false",
618
+ "deprecated": false
619
+ },
620
+ "isInverse": {
621
+ "name": "isInverse",
622
+ "required": false,
623
+ "type": {
624
+ "name": "boolean"
625
+ },
626
+ "description": "If true, the component will have inverse styling to better appear on a dark background",
627
+ "defaultValue": "false",
628
+ "deprecated": false
629
+ },
630
+ "isLoading": {
631
+ "name": "isLoading",
632
+ "required": false,
633
+ "type": {
634
+ "name": "boolean"
635
+ },
636
+ "description": " Set the button to a loading state",
637
+ "defaultValue": "false",
638
+ "deprecated": false
639
+ },
640
+ "leadingIcon": {
641
+ "name": "leadingIcon",
642
+ "required": false,
643
+ "type": {
644
+ "name": "boolean | ReactElement"
645
+ },
646
+ "description": "Leading icon to display on the left side within the component",
647
+ "deprecated": false
648
+ },
649
+ "leftColor": {
650
+ "name": "leftColor",
651
+ "required": false,
652
+ "type": {
653
+ "name": "string"
654
+ },
655
+ "description": "Sets the color for the left side of the button gradient.",
656
+ "deprecated": false
657
+ },
658
+ "pressedColor": {
659
+ "name": "pressedColor",
660
+ "required": false,
661
+ "type": {
662
+ "name": "string"
663
+ },
664
+ "description": "Sets the color when the button is pressed (active).",
665
+ "deprecated": false
666
+ },
667
+ "rightColor": {
668
+ "name": "rightColor",
669
+ "required": false,
670
+ "type": {
671
+ "name": "string"
672
+ },
673
+ "description": "Sets the color for the right side of the button gradient.",
674
+ "deprecated": false
675
+ },
676
+ "shape": {
677
+ "name": "shape",
678
+ "required": false,
679
+ "type": {
680
+ "name": "enum",
681
+ "options": [
682
+ "AIButtonShape.fill",
683
+ "AIButtonShape.leftCap",
684
+ "AIButtonShape.rightCap",
685
+ "AIButtonShape.round"
686
+ ]
687
+ },
688
+ "description": "Defines the border radius",
689
+ "defaultValue": "AIButtonShape.fill",
690
+ "deprecated": false
691
+ },
692
+ "size": {
693
+ "name": "size",
694
+ "required": false,
695
+ "type": {
696
+ "name": "enum",
697
+ "options": [
698
+ "AIButtonSize.large",
699
+ "AIButtonSize.medium",
700
+ "AIButtonSize.small"
701
+ ]
702
+ },
703
+ "description": "The relative size of the button",
704
+ "defaultValue": "AIButtonSize.medium",
705
+ "deprecated": false
706
+ },
707
+ "textTransform": {
708
+ "name": "textTransform",
709
+ "required": false,
710
+ "type": {
711
+ "name": "enum",
712
+ "options": [
713
+ "AIButtonTextTransform.none",
714
+ "AIButtonTextTransform.uppercase"
715
+ ]
716
+ },
717
+ "description": "Determines whether the button appears in all-caps",
718
+ "defaultValue": "AIButtonTextTransform.uppercase",
719
+ "deprecated": false
720
+ },
721
+ "trailingIcon": {
722
+ "name": "trailingIcon",
723
+ "required": false,
724
+ "type": {
725
+ "name": "ReactElement"
726
+ },
727
+ "description": "Icon to display on the right side within the component",
728
+ "deprecated": false
729
+ },
730
+ "type": {
731
+ "name": "type",
732
+ "required": false,
733
+ "type": {
734
+ "name": "enum",
735
+ "options": [
736
+ "AIButtonType.button",
737
+ "AIButtonType.reset",
738
+ "AIButtonType.submit"
739
+ ]
740
+ },
741
+ "description": "The type attribute of the button",
742
+ "defaultValue": "AIButtonType.button",
743
+ "deprecated": false
744
+ },
745
+ "variant": {
746
+ "name": "variant",
747
+ "required": false,
748
+ "type": {
749
+ "name": "enum",
750
+ "options": [
751
+ "AIButtonVariant.variantA",
752
+ "AIButtonVariant.variantB"
753
+ ]
754
+ },
755
+ "description": "The variant of the button",
756
+ "defaultValue": "AIButtonVariant.variantA",
757
+ "deprecated": false
758
+ }
759
+ }
760
+ },
761
+ {
762
+ "name": "AIButtonProps",
763
+ "kind": 4194304,
764
+ "kindString": "Type alias",
765
+ "flags": {
766
+ "isExported": true
767
+ },
768
+ "type": {
769
+ "type": "reference",
770
+ "typeArguments": [
771
+ {
772
+ "type": "reference",
773
+ "id": 3493,
774
+ "name": "TextAIButtonProps"
775
+ },
776
+ {
777
+ "type": "reference",
778
+ "id": 3783,
779
+ "name": "IconOnlyAIButtonProps"
780
+ }
781
+ ],
782
+ "name": "XOR"
783
+ },
784
+ "id": "AIButtonProps",
785
+ "tags": {},
786
+ "properties": {}
787
+ },
2
788
  {
3
789
  "name": "AccordionMultipleControlledProps",
4
790
  "kind": 256,
@@ -396,22 +1182,22 @@
396
1182
  "types": [
397
1183
  {
398
1184
  "type": "reference",
399
- "id": 7148,
1185
+ "id": 8727,
400
1186
  "name": "AccordionMultipleProps"
401
1187
  },
402
1188
  {
403
1189
  "type": "reference",
404
- "id": 7423,
1190
+ "id": 9002,
405
1191
  "name": "AccordionSingleProps"
406
1192
  },
407
1193
  {
408
1194
  "type": "reference",
409
- "id": 7697,
1195
+ "id": 9276,
410
1196
  "name": "AccordionMultipleControlledProps"
411
1197
  },
412
1198
  {
413
1199
  "type": "reference",
414
- "id": 7971,
1200
+ "id": 9550,
415
1201
  "name": "AccordionSingleControlledProps"
416
1202
  }
417
1203
  ]
@@ -716,7 +1502,7 @@
716
1502
  "type": "query",
717
1503
  "queryType": {
718
1504
  "type": "reference",
719
- "id": 6850,
1505
+ "id": 8429,
720
1506
  "name": "useAccordion"
721
1507
  }
722
1508
  }
@@ -763,7 +1549,7 @@
763
1549
  "type": "query",
764
1550
  "queryType": {
765
1551
  "type": "reference",
766
- "id": 8859,
1552
+ "id": 10148,
767
1553
  "name": "useAccordionButton"
768
1554
  }
769
1555
  }
@@ -866,7 +1652,7 @@
866
1652
  "type": "query",
867
1653
  "queryType": {
868
1654
  "type": "reference",
869
- "id": 8274,
1655
+ "id": 9853,
870
1656
  "name": "useAccordionItem"
871
1657
  }
872
1658
  }
@@ -1926,12 +2712,12 @@
1926
2712
  "types": [
1927
2713
  {
1928
2714
  "type": "reference",
1929
- "id": 1256,
2715
+ "id": 944,
1930
2716
  "name": "BaseButtonProps"
1931
2717
  },
1932
2718
  {
1933
2719
  "type": "reference",
1934
- "id": 1247,
2720
+ "id": 935,
1935
2721
  "name": "ButtonStyles"
1936
2722
  }
1937
2723
  ]
@@ -2704,7 +3490,7 @@
2704
3490
  "flags": {},
2705
3491
  "typeParameter": [
2706
3492
  {
2707
- "id": 4715,
3493
+ "id": 6289,
2708
3494
  "name": "T",
2709
3495
  "kind": 131072,
2710
3496
  "kindString": "Type parameter",
@@ -2904,7 +3690,7 @@
2904
3690
  },
2905
3691
  "typeParameter": [
2906
3692
  {
2907
- "id": 4826,
3693
+ "id": 6400,
2908
3694
  "name": "T",
2909
3695
  "kind": 131072,
2910
3696
  "kindString": "Type parameter",
@@ -2913,7 +3699,7 @@
2913
3699
  },
2914
3700
  "type": {
2915
3701
  "type": "reference",
2916
- "id": 4634,
3702
+ "id": 6208,
2917
3703
  "name": "SelectOptions"
2918
3704
  }
2919
3705
  }
@@ -2954,7 +3740,7 @@
2954
3740
  "type": {
2955
3741
  "name": "Generic[]"
2956
3742
  },
2957
- "description": "Default selectable options. Allows for uncontrolled component and internal creation of items. Can be an array of strings or objects",
3743
+ "description": "Default selectable options. Allows for an uncontrolled component and internal creation of items. Can be an array of strings or objects",
2958
3744
  "deprecated": false
2959
3745
  },
2960
3746
  "disableCreateItem": {
@@ -3250,7 +4036,7 @@
3250
4036
  },
3251
4037
  "typeParameter": [
3252
4038
  {
3253
- "id": 4906,
4039
+ "id": 6471,
3254
4040
  "name": "T",
3255
4041
  "kind": 131072,
3256
4042
  "kindString": "Type parameter",
@@ -3259,7 +4045,7 @@
3259
4045
  },
3260
4046
  "type": {
3261
4047
  "type": "reference",
3262
- "id": 4634,
4048
+ "id": 6208,
3263
4049
  "name": "SelectOptions"
3264
4050
  }
3265
4051
  }
@@ -3417,7 +4203,7 @@
3417
4203
  },
3418
4204
  "typeParameter": [
3419
4205
  {
3420
- "id": 4953,
4206
+ "id": 6518,
3421
4207
  "name": "T",
3422
4208
  "kind": 131072,
3423
4209
  "kindString": "Type parameter",
@@ -3431,7 +4217,7 @@
3431
4217
  "typeArguments": [
3432
4218
  {
3433
4219
  "type": "reference",
3434
- "id": 4825,
4220
+ "id": 6399,
3435
4221
  "typeArguments": [
3436
4222
  {
3437
4223
  "type": "typeParameter",
@@ -3442,7 +4228,7 @@
3442
4228
  },
3443
4229
  {
3444
4230
  "type": "reference",
3445
- "id": 4905,
4231
+ "id": 6470,
3446
4232
  "typeArguments": [
3447
4233
  {
3448
4234
  "type": "typeParameter",
@@ -3602,6 +4388,16 @@
3602
4388
  "defaultValue": "false",
3603
4389
  "deprecated": false
3604
4390
  },
4391
+ "hasOutsideBorder": {
4392
+ "name": "hasOutsideBorder",
4393
+ "required": false,
4394
+ "type": {
4395
+ "name": "boolean"
4396
+ },
4397
+ "description": "If true, the table will have outer border",
4398
+ "defaultValue": "false",
4399
+ "deprecated": false
4400
+ },
3605
4401
  "hasPagination": {
3606
4402
  "name": "hasPagination",
3607
4403
  "required": false,
@@ -3622,6 +4418,16 @@
3622
4418
  "defaultValue": "false",
3623
4419
  "deprecated": false
3624
4420
  },
4421
+ "hasTablePagination": {
4422
+ "name": "hasTablePagination",
4423
+ "required": false,
4424
+ "type": {
4425
+ "name": "boolean"
4426
+ },
4427
+ "description": " If true, the table will have additional styles for table.",
4428
+ "defaultValue": "false",
4429
+ "deprecated": false
4430
+ },
3625
4431
  "hasVerticalBorders": {
3626
4432
  "name": "hasVerticalBorders",
3627
4433
  "required": false,
@@ -3745,6 +4551,15 @@
3745
4551
  "description": "Direction by which the selectable column is sorted",
3746
4552
  "defaultValue": "TableSortDirection.none",
3747
4553
  "deprecated": false
4554
+ },
4555
+ "tableTitle": {
4556
+ "name": "tableTitle",
4557
+ "required": false,
4558
+ "type": {
4559
+ "name": "React.ReactNode | string"
4560
+ },
4561
+ "description": "The title or caption of a table inside a <caption> HTML element that provides the table an accessible\ndescription.\nIt can be a simple string or a React node, such as a heading element (e.g., <h1>, <h2>).",
4562
+ "deprecated": false
3748
4563
  }
3749
4564
  }
3750
4565
  },
@@ -3934,7 +4749,7 @@
3934
4749
  },
3935
4750
  "indexSignature": [
3936
4751
  {
3937
- "id": 25380,
4752
+ "id": 20795,
3938
4753
  "name": "__index",
3939
4754
  "kind": 8192,
3940
4755
  "kindString": "Index signature",
@@ -3946,7 +4761,7 @@
3946
4761
  },
3947
4762
  "parameters": [
3948
4763
  {
3949
- "id": 25381,
4764
+ "id": 20796,
3950
4765
  "name": "key",
3951
4766
  "kind": 32768,
3952
4767
  "kindString": "Parameter",
@@ -4036,12 +4851,12 @@
4036
4851
  "types": [
4037
4852
  {
4038
4853
  "type": "reference",
4039
- "id": 25386,
4854
+ "id": 20801,
4040
4855
  "name": "BaseDatagridProps"
4041
4856
  },
4042
4857
  {
4043
4858
  "type": "reference",
4044
- "id": 25689,
4859
+ "id": 21107,
4045
4860
  "name": "DatagridSelectedRowsProps"
4046
4861
  }
4047
4862
  ]
@@ -4102,6 +4917,16 @@
4102
4917
  "defaultValue": "false",
4103
4918
  "deprecated": false
4104
4919
  },
4920
+ "hasOutsideBorder": {
4921
+ "name": "hasOutsideBorder",
4922
+ "required": false,
4923
+ "type": {
4924
+ "name": "boolean"
4925
+ },
4926
+ "description": "If true, the table will have outer border",
4927
+ "defaultValue": "false",
4928
+ "deprecated": false
4929
+ },
4105
4930
  "hasPagination": {
4106
4931
  "name": "hasPagination",
4107
4932
  "required": false,
@@ -4122,6 +4947,16 @@
4122
4947
  "defaultValue": "false",
4123
4948
  "deprecated": false
4124
4949
  },
4950
+ "hasTablePagination": {
4951
+ "name": "hasTablePagination",
4952
+ "required": false,
4953
+ "type": {
4954
+ "name": "boolean"
4955
+ },
4956
+ "description": " If true, the table will have additional styles for table.",
4957
+ "defaultValue": "false",
4958
+ "deprecated": false
4959
+ },
4125
4960
  "hasVerticalBorders": {
4126
4961
  "name": "hasVerticalBorders",
4127
4962
  "required": false,
@@ -4245,6 +5080,15 @@
4245
5080
  "description": "Direction by which the selectable column is sorted",
4246
5081
  "defaultValue": "TableSortDirection.none",
4247
5082
  "deprecated": false
5083
+ },
5084
+ "tableTitle": {
5085
+ "name": "tableTitle",
5086
+ "required": false,
5087
+ "type": {
5088
+ "name": "React.ReactNode | string"
5089
+ },
5090
+ "description": "The title or caption of a table inside a <caption> HTML element that provides the table an accessible\ndescription.\nIt can be a simple string or a React node, such as a heading element (e.g., <h1>, <h2>).",
5091
+ "deprecated": false
4248
5092
  }
4249
5093
  }
4250
5094
  },
@@ -4260,12 +5104,12 @@
4260
5104
  "typeArguments": [
4261
5105
  {
4262
5106
  "type": "reference",
4263
- "id": 25685,
5107
+ "id": 21103,
4264
5108
  "name": "ControlledSelectedRowsProps"
4265
5109
  },
4266
5110
  {
4267
5111
  "type": "reference",
4268
- "id": 25687,
5112
+ "id": 21105,
4269
5113
  "name": "UncontrolledSelectedRowsProps"
4270
5114
  }
4271
5115
  ],
@@ -4407,6 +5251,38 @@
4407
5251
  },
4408
5252
  "deprecated": false
4409
5253
  },
5254
+ "setFocusedDate": {
5255
+ "name": "setFocusedDate",
5256
+ "required": true,
5257
+ "type": {
5258
+ "name": "function"
5259
+ },
5260
+ "deprecated": false
5261
+ },
5262
+ "setFocusedTodayDate": {
5263
+ "name": "setFocusedTodayDate",
5264
+ "required": true,
5265
+ "type": {
5266
+ "name": "function"
5267
+ },
5268
+ "deprecated": false
5269
+ },
5270
+ "setMonthFocusedDate": {
5271
+ "name": "setMonthFocusedDate",
5272
+ "required": true,
5273
+ "type": {
5274
+ "name": "function"
5275
+ },
5276
+ "deprecated": false
5277
+ },
5278
+ "setYearFocusedDate": {
5279
+ "name": "setYearFocusedDate",
5280
+ "required": true,
5281
+ "type": {
5282
+ "name": "function"
5283
+ },
5284
+ "deprecated": false
5285
+ },
4410
5286
  "showHelperInformation": {
4411
5287
  "name": "showHelperInformation",
4412
5288
  "required": true,
@@ -4461,6 +5337,118 @@
4461
5337
  }
4462
5338
  }
4463
5339
  },
5340
+ {
5341
+ "name": "CalendarDayState",
5342
+ "kind": 4194304,
5343
+ "kindString": "Type alias",
5344
+ "flags": {},
5345
+ "type": {
5346
+ "type": "reflection",
5347
+ "declaration": {
5348
+ "id": 21553,
5349
+ "name": "__type",
5350
+ "kind": 65536,
5351
+ "kindString": "Type literal",
5352
+ "flags": {},
5353
+ "children": [
5354
+ {
5355
+ "id": 21555,
5356
+ "name": "disabled",
5357
+ "kind": 32,
5358
+ "kindString": "Variable",
5359
+ "flags": {},
5360
+ "sources": [
5361
+ {
5362
+ "fileName": "packages/react-magma-dom/src/components/DatePicker/CalendarDay.tsx",
5363
+ "line": 23,
5364
+ "character": 10
5365
+ }
5366
+ ],
5367
+ "type": {
5368
+ "type": "intrinsic",
5369
+ "name": "boolean"
5370
+ }
5371
+ },
5372
+ {
5373
+ "id": 21554,
5374
+ "name": "isChosen",
5375
+ "kind": 32,
5376
+ "kindString": "Variable",
5377
+ "flags": {},
5378
+ "sources": [
5379
+ {
5380
+ "fileName": "packages/react-magma-dom/src/components/DatePicker/CalendarDay.tsx",
5381
+ "line": 22,
5382
+ "character": 10
5383
+ }
5384
+ ],
5385
+ "type": {
5386
+ "type": "intrinsic",
5387
+ "name": "boolean"
5388
+ }
5389
+ },
5390
+ {
5391
+ "id": 21556,
5392
+ "name": "isDayInCurrentMonth",
5393
+ "kind": 32,
5394
+ "kindString": "Variable",
5395
+ "flags": {},
5396
+ "sources": [
5397
+ {
5398
+ "fileName": "packages/react-magma-dom/src/components/DatePicker/CalendarDay.tsx",
5399
+ "line": 24,
5400
+ "character": 21
5401
+ }
5402
+ ],
5403
+ "type": {
5404
+ "type": "intrinsic",
5405
+ "name": "boolean"
5406
+ }
5407
+ },
5408
+ {
5409
+ "id": 21557,
5410
+ "name": "isToday",
5411
+ "kind": 32,
5412
+ "kindString": "Variable",
5413
+ "flags": {},
5414
+ "sources": [
5415
+ {
5416
+ "fileName": "packages/react-magma-dom/src/components/DatePicker/CalendarDay.tsx",
5417
+ "line": 25,
5418
+ "character": 9
5419
+ }
5420
+ ],
5421
+ "type": {
5422
+ "type": "intrinsic",
5423
+ "name": "boolean"
5424
+ }
5425
+ }
5426
+ ],
5427
+ "groups": [
5428
+ {
5429
+ "title": "Variables",
5430
+ "kind": 32,
5431
+ "children": [
5432
+ 21555,
5433
+ 21554,
5434
+ 21556,
5435
+ 21557
5436
+ ]
5437
+ }
5438
+ ],
5439
+ "sources": [
5440
+ {
5441
+ "fileName": "packages/react-magma-dom/src/components/DatePicker/CalendarDay.tsx",
5442
+ "line": 21,
5443
+ "character": 23
5444
+ }
5445
+ ]
5446
+ }
5447
+ },
5448
+ "id": "CalendarDayState",
5449
+ "tags": {},
5450
+ "properties": {}
5451
+ },
4464
5452
  {
4465
5453
  "name": "CalendarHeaderProps",
4466
5454
  "kind": 256,
@@ -4585,6 +5573,64 @@
4585
5573
  }
4586
5574
  }
4587
5575
  },
5576
+ {
5577
+ "name": "MonthPickerProps",
5578
+ "kind": 256,
5579
+ "kindString": "Interface",
5580
+ "flags": {
5581
+ "isExported": true
5582
+ },
5583
+ "id": "MonthPickerProps",
5584
+ "tags": {},
5585
+ "properties": {
5586
+ "currentMonth": {
5587
+ "name": "currentMonth",
5588
+ "required": true,
5589
+ "type": {
5590
+ "name": "string"
5591
+ },
5592
+ "deprecated": false
5593
+ },
5594
+ "isInverse": {
5595
+ "name": "isInverse",
5596
+ "required": true,
5597
+ "type": {
5598
+ "name": "boolean"
5599
+ },
5600
+ "description": "If true, the component will have inverse styling to better appear on a dark background",
5601
+ "defaultValue": "false",
5602
+ "deprecated": false
5603
+ }
5604
+ }
5605
+ },
5606
+ {
5607
+ "name": "YearPickerProps",
5608
+ "kind": 256,
5609
+ "kindString": "Interface",
5610
+ "flags": {},
5611
+ "id": "YearPickerProps",
5612
+ "tags": {},
5613
+ "properties": {
5614
+ "currentYear": {
5615
+ "name": "currentYear",
5616
+ "required": true,
5617
+ "type": {
5618
+ "name": "number"
5619
+ },
5620
+ "deprecated": false
5621
+ },
5622
+ "isInverse": {
5623
+ "name": "isInverse",
5624
+ "required": true,
5625
+ "type": {
5626
+ "name": "boolean"
5627
+ },
5628
+ "description": "If true, the component will have inverse styling to better appear on a dark background",
5629
+ "defaultValue": "false",
5630
+ "deprecated": false
5631
+ }
5632
+ }
5633
+ },
4588
5634
  {
4589
5635
  "name": "DatePickerProps",
4590
5636
  "kind": 256,
@@ -4874,6 +5920,16 @@
4874
5920
  "description": "Style properties for the drawer",
4875
5921
  "deprecated": false
4876
5922
  },
5923
+ "isAnimated": {
5924
+ "name": "isAnimated",
5925
+ "required": false,
5926
+ "type": {
5927
+ "name": "boolean"
5928
+ },
5929
+ "description": "If true, enables sliding animations for the drawer",
5930
+ "defaultValue": "false",
5931
+ "deprecated": false
5932
+ },
4877
5933
  "isInverse": {
4878
5934
  "name": "isInverse",
4879
5935
  "required": false,
@@ -4899,6 +5955,16 @@
4899
5955
  "description": "Set the position of the drawer",
4900
5956
  "defaultValue": "DrawerPosition.top",
4901
5957
  "deprecated": false
5958
+ },
5959
+ "showBackgroundOverlay": {
5960
+ "name": "showBackgroundOverlay",
5961
+ "required": false,
5962
+ "type": {
5963
+ "name": "boolean"
5964
+ },
5965
+ "description": "Shows a background overlay when the drawer is open.",
5966
+ "defaultValue": "true",
5967
+ "deprecated": false
4902
5968
  }
4903
5969
  }
4904
5970
  },
@@ -5390,12 +6456,12 @@
5390
6456
  "typeArguments": [
5391
6457
  {
5392
6458
  "type": "reference",
5393
- "id": 5336,
6459
+ "id": 6901,
5394
6460
  "name": "IconOnlyDropdownButtonProps"
5395
6461
  },
5396
6462
  {
5397
6463
  "type": "reference",
5398
- "id": 5340,
6464
+ "id": 6905,
5399
6465
  "name": "IconTextDropdownButtonProps"
5400
6466
  }
5401
6467
  ],
@@ -5648,7 +6714,7 @@
5648
6714
  },
5649
6715
  "type": {
5650
6716
  "type": "reference",
5651
- "id": 9298,
6717
+ "id": 10588,
5652
6718
  "name": "AccordionPanelProps"
5653
6719
  },
5654
6720
  "id": "DropdownExpandableMenuPanelProps",
@@ -7723,12 +8789,12 @@
7723
8789
  "typeArguments": [
7724
8790
  {
7725
8791
  "type": "reference",
7726
- "id": 1538,
8792
+ "id": 4092,
7727
8793
  "name": "IconOnlyButtonProps"
7728
8794
  },
7729
8795
  {
7730
8796
  "type": "reference",
7731
- "id": 1542,
8797
+ "id": 4096,
7732
8798
  "name": "IconTextButtonProps"
7733
8799
  }
7734
8800
  ],
@@ -9120,7 +10186,7 @@
9120
10186
  "type": {
9121
10187
  "name": "boolean"
9122
10188
  },
9123
- "description": "If true, the close button the the modal will be suppressed",
10189
+ "description": "If true, the close button the modal will be suppressed",
9124
10190
  "defaultValue": "false",
9125
10191
  "deprecated": false
9126
10192
  },
@@ -9567,12 +10633,12 @@
9567
10633
  "typeArguments": [
9568
10634
  {
9569
10635
  "type": "reference",
9570
- "id": 16785,
10636
+ "id": 25506,
9571
10637
  "name": "NavTabChildrenProps"
9572
10638
  },
9573
10639
  {
9574
10640
  "type": "reference",
9575
- "id": 17059,
10641
+ "id": 25780,
9576
10642
  "name": "NavTabComponentProps"
9577
10643
  }
9578
10644
  ],
@@ -9674,7 +10740,7 @@
9674
10740
  "typeArguments": [
9675
10741
  {
9676
10742
  "type": "reference",
9677
- "id": 14990,
10743
+ "id": 23708,
9678
10744
  "name": "TabsProps"
9679
10745
  },
9680
10746
  {
@@ -10029,12 +11095,12 @@
10029
11095
  "types": [
10030
11096
  {
10031
11097
  "type": "reference",
10032
- "id": 28535,
11098
+ "id": 26701,
10033
11099
  "name": "ControlledPaginationProps"
10034
11100
  },
10035
11101
  {
10036
11102
  "type": "reference",
10037
- "id": 28818,
11103
+ "id": 26984,
10038
11104
  "name": "UncontrolledPaginationProps"
10039
11105
  }
10040
11106
  ]
@@ -10555,11 +11621,7 @@
10555
11621
  "name": "position",
10556
11622
  "required": false,
10557
11623
  "type": {
10558
- "name": "enum",
10559
- "options": [
10560
- "PopoverPosition.bottom",
10561
- "PopoverPosition.top"
10562
- ]
11624
+ "name": "PopoverPlacement"
10563
11625
  },
10564
11626
  "deprecated": false
10565
11627
  },
@@ -10615,13 +11677,28 @@
10615
11677
  "id": "PopoverProps",
10616
11678
  "tags": {},
10617
11679
  "properties": {
11680
+ "alignment": {
11681
+ "name": "alignment",
11682
+ "required": false,
11683
+ "type": {
11684
+ "name": "enum",
11685
+ "options": [
11686
+ "PopoverAlignment.center",
11687
+ "PopoverAlignment.end",
11688
+ "PopoverAlignment.start"
11689
+ ]
11690
+ },
11691
+ "description": "Alignment of the popover content",
11692
+ "defaultValue": "PopoverAlignment.center",
11693
+ "deprecated": false
11694
+ },
10618
11695
  "apiRef": {
10619
11696
  "name": "apiRef",
10620
11697
  "required": false,
10621
11698
  "type": {
10622
11699
  "name": "MutableRefObject"
10623
11700
  },
10624
- "description": "The ref object that allows Popover manipulation.\nActions available:\nclosePopoverManually(event): void - Closes the popover manually.",
11701
+ "description": "The ref object that allows Popover manipulation.\nActions available:\nclosePopoverManually(event): void - Closes the popover manually.\nopenPopoverManually(event): void - Opens the popover manually.",
10625
11702
  "deprecated": false
10626
11703
  },
10627
11704
  "focusTrap": {
@@ -10738,6 +11815,46 @@
10738
11815
  }
10739
11816
  }
10740
11817
  },
11818
+ {
11819
+ "name": "PopoverPlacement",
11820
+ "kind": 4194304,
11821
+ "kindString": "Type alias",
11822
+ "flags": {
11823
+ "isExported": true
11824
+ },
11825
+ "type": {
11826
+ "type": "union",
11827
+ "types": [
11828
+ {
11829
+ "type": "stringLiteral",
11830
+ "value": "bottom"
11831
+ },
11832
+ {
11833
+ "type": "stringLiteral",
11834
+ "value": "bottom-start"
11835
+ },
11836
+ {
11837
+ "type": "stringLiteral",
11838
+ "value": "bottom-end"
11839
+ },
11840
+ {
11841
+ "type": "stringLiteral",
11842
+ "value": "top"
11843
+ },
11844
+ {
11845
+ "type": "stringLiteral",
11846
+ "value": "top-start"
11847
+ },
11848
+ {
11849
+ "type": "stringLiteral",
11850
+ "value": "top-end"
11851
+ }
11852
+ ]
11853
+ },
11854
+ "id": "PopoverPlacement",
11855
+ "tags": {},
11856
+ "properties": {}
11857
+ },
10741
11858
  {
10742
11859
  "name": "PopoverContentProps",
10743
11860
  "kind": 256,
@@ -11008,12 +12125,12 @@
11008
12125
  "typeArguments": [
11009
12126
  {
11010
12127
  "type": "reference",
11011
- "id": 32551,
12128
+ "id": 31641,
11012
12129
  "name": "IconOnlyPopoverTriggerProps"
11013
12130
  },
11014
12131
  {
11015
12132
  "type": "reference",
11016
- "id": 32556,
12133
+ "id": 31646,
11017
12134
  "name": "IconTextPopoverTriggerProps"
11018
12135
  }
11019
12136
  ],
@@ -11798,7 +12915,7 @@
11798
12915
  "flags": {},
11799
12916
  "typeParameter": [
11800
12917
  {
11801
- "id": 3740,
12918
+ "id": 5318,
11802
12919
  "name": "T",
11803
12920
  "kind": 131072,
11804
12921
  "kindString": "Type parameter",
@@ -11931,7 +13048,7 @@
11931
13048
  "flags": {},
11932
13049
  "typeParameter": [
11933
13050
  {
11934
- "id": 4352,
13051
+ "id": 5930,
11935
13052
  "name": "T",
11936
13053
  "kind": 131072,
11937
13054
  "kindString": "Type parameter",
@@ -12077,7 +13194,7 @@
12077
13194
  "flags": {},
12078
13195
  "typeParameter": [
12079
13196
  {
12080
- "id": 4412,
13197
+ "id": 5990,
12081
13198
  "name": "T",
12082
13199
  "kind": 131072,
12083
13200
  "kindString": "Type parameter",
@@ -12181,7 +13298,7 @@
12181
13298
  },
12182
13299
  "typeParameter": [
12183
13300
  {
12184
- "id": 3688,
13301
+ "id": 5266,
12185
13302
  "name": "T",
12186
13303
  "kind": 131072,
12187
13304
  "kindString": "Type parameter",
@@ -12193,7 +13310,7 @@
12193
13310
  "type": {
12194
13311
  "type": "reflection",
12195
13312
  "declaration": {
12196
- "id": 3689,
13313
+ "id": 5267,
12197
13314
  "name": "__type",
12198
13315
  "kind": 65536,
12199
13316
  "kindString": "Type literal",
@@ -12202,7 +13319,7 @@
12202
13319
  },
12203
13320
  "indexSignature": [
12204
13321
  {
12205
- "id": 3697,
13322
+ "id": 5275,
12206
13323
  "name": "__index",
12207
13324
  "kind": 8192,
12208
13325
  "kindString": "Index signature",
@@ -12211,7 +13328,7 @@
12211
13328
  },
12212
13329
  "parameters": [
12213
13330
  {
12214
- "id": 3698,
13331
+ "id": 5276,
12215
13332
  "name": "key",
12216
13333
  "kind": 32768,
12217
13334
  "kindString": "Parameter",
@@ -12232,7 +13349,7 @@
12232
13349
  ],
12233
13350
  "children": [
12234
13351
  {
12235
- "id": 3691,
13352
+ "id": 5269,
12236
13353
  "name": "isFocused",
12237
13354
  "kind": 32,
12238
13355
  "kindString": "Variable",
@@ -12253,7 +13370,7 @@
12253
13370
  }
12254
13371
  },
12255
13372
  {
12256
- "id": 3692,
13373
+ "id": 5270,
12257
13374
  "name": "isInverse",
12258
13375
  "kind": 32,
12259
13376
  "kindString": "Variable",
@@ -12274,7 +13391,7 @@
12274
13391
  }
12275
13392
  },
12276
13393
  {
12277
- "id": 3693,
13394
+ "id": 5271,
12278
13395
  "name": "item",
12279
13396
  "kind": 32,
12280
13397
  "kindString": "Variable",
@@ -12294,7 +13411,7 @@
12294
13411
  }
12295
13412
  },
12296
13413
  {
12297
- "id": 3694,
13414
+ "id": 5272,
12298
13415
  "name": "itemRef",
12299
13416
  "kind": 32,
12300
13417
  "kindString": "Variable",
@@ -12320,7 +13437,7 @@
12320
13437
  }
12321
13438
  },
12322
13439
  {
12323
- "id": 3695,
13440
+ "id": 5273,
12324
13441
  "name": "itemString",
12325
13442
  "kind": 32,
12326
13443
  "kindString": "Variable",
@@ -12340,7 +13457,7 @@
12340
13457
  }
12341
13458
  },
12342
13459
  {
12343
- "id": 3690,
13460
+ "id": 5268,
12344
13461
  "name": "key",
12345
13462
  "kind": 32,
12346
13463
  "kindString": "Variable",
@@ -12360,7 +13477,7 @@
12360
13477
  }
12361
13478
  },
12362
13479
  {
12363
- "id": 3696,
13480
+ "id": 5274,
12364
13481
  "name": "theme",
12365
13482
  "kind": 32,
12366
13483
  "kindString": "Variable",
@@ -12385,13 +13502,13 @@
12385
13502
  "title": "Variables",
12386
13503
  "kind": 32,
12387
13504
  "children": [
12388
- 3691,
12389
- 3692,
12390
- 3693,
12391
- 3694,
12392
- 3695,
12393
- 3690,
12394
- 3696
13505
+ 5269,
13506
+ 5270,
13507
+ 5271,
13508
+ 5272,
13509
+ 5273,
13510
+ 5268,
13511
+ 5274
12395
13512
  ]
12396
13513
  }
12397
13514
  ],
@@ -12417,7 +13534,7 @@
12417
13534
  },
12418
13535
  "typeParameter": [
12419
13536
  {
12420
- "id": 3700,
13537
+ "id": 5278,
12421
13538
  "name": "T",
12422
13539
  "kind": 131072,
12423
13540
  "kindString": "Type parameter",
@@ -12429,7 +13546,7 @@
12429
13546
  "type": {
12430
13547
  "type": "reflection",
12431
13548
  "declaration": {
12432
- "id": 3701,
13549
+ "id": 5279,
12433
13550
  "name": "__type",
12434
13551
  "kind": 65536,
12435
13552
  "kindString": "Type literal",
@@ -12438,7 +13555,7 @@
12438
13555
  },
12439
13556
  "children": [
12440
13557
  {
12441
- "id": 3702,
13558
+ "id": 5280,
12442
13559
  "name": "ClearIndicator",
12443
13560
  "kind": 32,
12444
13561
  "kindString": "Variable",
@@ -12458,7 +13575,7 @@
12458
13575
  "typeArguments": [
12459
13576
  {
12460
13577
  "type": "reference",
12461
- "id": 1831,
13578
+ "id": 4385,
12462
13579
  "name": "IconButtonProps"
12463
13580
  }
12464
13581
  ],
@@ -12466,7 +13583,7 @@
12466
13583
  }
12467
13584
  },
12468
13585
  {
12469
- "id": 3703,
13586
+ "id": 5281,
12470
13587
  "name": "DropdownIndicator",
12471
13588
  "kind": 32,
12472
13589
  "kindString": "Variable",
@@ -12499,7 +13616,7 @@
12499
13616
  }
12500
13617
  },
12501
13618
  {
12502
- "id": 3705,
13619
+ "id": 5283,
12503
13620
  "name": "Item",
12504
13621
  "kind": 32,
12505
13622
  "kindString": "Variable",
@@ -12519,7 +13636,7 @@
12519
13636
  "typeArguments": [
12520
13637
  {
12521
13638
  "type": "reference",
12522
- "id": 3687,
13639
+ "id": 5265,
12523
13640
  "typeArguments": [
12524
13641
  {
12525
13642
  "type": "typeParameter",
@@ -12533,7 +13650,7 @@
12533
13650
  }
12534
13651
  },
12535
13652
  {
12536
- "id": 3704,
13653
+ "id": 5282,
12537
13654
  "name": "LoadingIndicator",
12538
13655
  "kind": 32,
12539
13656
  "kindString": "Variable",
@@ -12553,7 +13670,7 @@
12553
13670
  "typeArguments": [
12554
13671
  {
12555
13672
  "type": "reference",
12556
- "id": 363,
13673
+ "id": 51,
12557
13674
  "name": "SpinnerProps"
12558
13675
  }
12559
13676
  ],
@@ -12566,10 +13683,10 @@
12566
13683
  "title": "Variables",
12567
13684
  "kind": 32,
12568
13685
  "children": [
12569
- 3702,
12570
- 3703,
12571
- 3705,
12572
- 3704
13686
+ 5280,
13687
+ 5281,
13688
+ 5283,
13689
+ 5282
12573
13690
  ]
12574
13691
  }
12575
13692
  ],
@@ -12595,7 +13712,7 @@
12595
13712
  },
12596
13713
  "typeParameter": [
12597
13714
  {
12598
- "id": 4473,
13715
+ "id": 6056,
12599
13716
  "name": "T",
12600
13717
  "kind": 131072,
12601
13718
  "kindString": "Type parameter",
@@ -12627,7 +13744,7 @@
12627
13744
  },
12628
13745
  "typeParameter": [
12629
13746
  {
12630
- "id": 4452,
13747
+ "id": 6035,
12631
13748
  "name": "T",
12632
13749
  "kind": 131072,
12633
13750
  "kindString": "Type parameter",
@@ -12821,7 +13938,7 @@
12821
13938
  },
12822
13939
  "typeParameter": [
12823
13940
  {
12824
- "id": 4591,
13941
+ "id": 6165,
12825
13942
  "name": "T",
12826
13943
  "kind": 131072,
12827
13944
  "kindString": "Type parameter",
@@ -12830,7 +13947,7 @@
12830
13947
  },
12831
13948
  "type": {
12832
13949
  "type": "reference",
12833
- "id": 4634,
13950
+ "id": 6208,
12834
13951
  "name": "SelectOptions"
12835
13952
  }
12836
13953
  }
@@ -12978,7 +14095,7 @@
12978
14095
  },
12979
14096
  "typeParameter": [
12980
14097
  {
12981
- "id": 4479,
14098
+ "id": 6062,
12982
14099
  "name": "T",
12983
14100
  "kind": 131072,
12984
14101
  "kindString": "Type parameter",
@@ -12987,7 +14104,7 @@
12987
14104
  },
12988
14105
  "type": {
12989
14106
  "type": "reference",
12990
- "id": 4634,
14107
+ "id": 6208,
12991
14108
  "name": "SelectOptions"
12992
14109
  }
12993
14110
  }
@@ -13456,7 +14573,7 @@
13456
14573
  {
13457
14574
  "type": "reflection",
13458
14575
  "declaration": {
13459
- "id": 4635,
14576
+ "id": 6209,
13460
14577
  "name": "__type",
13461
14578
  "kind": 65536,
13462
14579
  "kindString": "Type literal",
@@ -13465,7 +14582,7 @@
13465
14582
  },
13466
14583
  "indexSignature": [
13467
14584
  {
13468
- "id": 4638,
14585
+ "id": 6212,
13469
14586
  "name": "__index",
13470
14587
  "kind": 8192,
13471
14588
  "kindString": "Index signature",
@@ -13474,7 +14591,7 @@
13474
14591
  },
13475
14592
  "parameters": [
13476
14593
  {
13477
- "id": 4639,
14594
+ "id": 6213,
13478
14595
  "name": "key",
13479
14596
  "kind": 32768,
13480
14597
  "kindString": "Parameter",
@@ -13495,7 +14612,7 @@
13495
14612
  ],
13496
14613
  "children": [
13497
14614
  {
13498
- "id": 4640,
14615
+ "id": 6214,
13499
14616
  "name": "disabled",
13500
14617
  "kind": 32,
13501
14618
  "kindString": "Variable",
@@ -13506,7 +14623,7 @@
13506
14623
  "sources": [
13507
14624
  {
13508
14625
  "fileName": "packages/react-magma-dom/src/components/Select/index.tsx",
13509
- "line": 26,
14626
+ "line": 19,
13510
14627
  "character": 64
13511
14628
  }
13512
14629
  ],
@@ -13516,7 +14633,7 @@
13516
14633
  }
13517
14634
  },
13518
14635
  {
13519
- "id": 4637,
14636
+ "id": 6211,
13520
14637
  "name": "label",
13521
14638
  "kind": 32,
13522
14639
  "kindString": "Variable",
@@ -13526,7 +14643,7 @@
13526
14643
  "sources": [
13527
14644
  {
13528
14645
  "fileName": "packages/react-magma-dom/src/components/Select/index.tsx",
13529
- "line": 26,
14646
+ "line": 19,
13530
14647
  "character": 26
13531
14648
  }
13532
14649
  ],
@@ -13536,7 +14653,7 @@
13536
14653
  }
13537
14654
  },
13538
14655
  {
13539
- "id": 4636,
14656
+ "id": 6210,
13540
14657
  "name": "value",
13541
14658
  "kind": 32,
13542
14659
  "kindString": "Variable",
@@ -13546,7 +14663,7 @@
13546
14663
  "sources": [
13547
14664
  {
13548
14665
  "fileName": "packages/react-magma-dom/src/components/Select/index.tsx",
13549
- "line": 26,
14666
+ "line": 19,
13550
14667
  "character": 11
13551
14668
  }
13552
14669
  ],
@@ -13561,16 +14678,16 @@
13561
14678
  "title": "Variables",
13562
14679
  "kind": 32,
13563
14680
  "children": [
13564
- 4640,
13565
- 4637,
13566
- 4636
14681
+ 6214,
14682
+ 6211,
14683
+ 6210
13567
14684
  ]
13568
14685
  }
13569
14686
  ],
13570
14687
  "sources": [
13571
14688
  {
13572
14689
  "fileName": "packages/react-magma-dom/src/components/Select/index.tsx",
13573
- "line": 26,
14690
+ "line": 19,
13574
14691
  "character": 3
13575
14692
  }
13576
14693
  ]
@@ -13595,7 +14712,7 @@
13595
14712
  },
13596
14713
  "typeParameter": [
13597
14714
  {
13598
- "id": 4668,
14715
+ "id": 6242,
13599
14716
  "name": "T",
13600
14717
  "kind": 131072,
13601
14718
  "kindString": "Type parameter",
@@ -13609,7 +14726,7 @@
13609
14726
  "typeArguments": [
13610
14727
  {
13611
14728
  "type": "reference",
13612
- "id": 4478,
14729
+ "id": 6061,
13613
14730
  "typeArguments": [
13614
14731
  {
13615
14732
  "type": "typeParameter",
@@ -13620,7 +14737,7 @@
13620
14737
  },
13621
14738
  {
13622
14739
  "type": "reference",
13623
- "id": 4590,
14740
+ "id": 6164,
13624
14741
  "typeArguments": [
13625
14742
  {
13626
14743
  "type": "typeParameter",
@@ -14244,6 +15361,14 @@
14244
15361
  },
14245
15362
  "deprecated": false
14246
15363
  },
15364
+ "hasTablePagination": {
15365
+ "name": "hasTablePagination",
15366
+ "required": false,
15367
+ "type": {
15368
+ "name": "boolean"
15369
+ },
15370
+ "deprecated": false
15371
+ },
14247
15372
  "hasVerticalBorders": {
14248
15373
  "name": "hasVerticalBorders",
14249
15374
  "required": false,
@@ -14358,6 +15483,16 @@
14358
15483
  "defaultValue": "false",
14359
15484
  "deprecated": false
14360
15485
  },
15486
+ "hasOutsideBorder": {
15487
+ "name": "hasOutsideBorder",
15488
+ "required": false,
15489
+ "type": {
15490
+ "name": "boolean"
15491
+ },
15492
+ "description": "If true, the table will have outer border",
15493
+ "defaultValue": "false",
15494
+ "deprecated": false
15495
+ },
14361
15496
  "hasSquareCorners": {
14362
15497
  "name": "hasSquareCorners",
14363
15498
  "required": false,
@@ -14368,6 +15503,16 @@
14368
15503
  "defaultValue": "false",
14369
15504
  "deprecated": false
14370
15505
  },
15506
+ "hasTablePagination": {
15507
+ "name": "hasTablePagination",
15508
+ "required": false,
15509
+ "type": {
15510
+ "name": "boolean"
15511
+ },
15512
+ "description": " If true, the table will have additional styles for table.",
15513
+ "defaultValue": "false",
15514
+ "deprecated": false
15515
+ },
14371
15516
  "hasVerticalBorders": {
14372
15517
  "name": "hasVerticalBorders",
14373
15518
  "required": false,
@@ -14421,6 +15566,15 @@
14421
15566
  "name": "Array"
14422
15567
  },
14423
15568
  "deprecated": false
15569
+ },
15570
+ "tableTitle": {
15571
+ "name": "tableTitle",
15572
+ "required": false,
15573
+ "type": {
15574
+ "name": "React.ReactNode | string"
15575
+ },
15576
+ "description": "The title or caption of a table inside a <caption> HTML element that provides the table an accessible\ndescription.\nIt can be a simple string or a React node, such as a heading element (e.g., <h1>, <h2>).",
15577
+ "deprecated": false
14424
15578
  }
14425
15579
  }
14426
15580
  },
@@ -14648,6 +15802,16 @@
14648
15802
  "defaultValue": "DropdownDropDirection.up",
14649
15803
  "deprecated": true
14650
15804
  },
15805
+ "hasOutsideBorder": {
15806
+ "name": "hasOutsideBorder",
15807
+ "required": false,
15808
+ "type": {
15809
+ "name": "boolean"
15810
+ },
15811
+ "description": "If true, the table paginator will have outer border",
15812
+ "defaultValue": "false",
15813
+ "deprecated": false
15814
+ },
14651
15815
  "hasSquareCorners": {
14652
15816
  "name": "hasSquareCorners",
14653
15817
  "required": false,
@@ -14850,12 +16014,12 @@
14850
16014
  "typeArguments": [
14851
16015
  {
14852
16016
  "type": "reference",
14853
- "id": 24694,
16017
+ "id": 20099,
14854
16018
  "name": "ControlledPageProps"
14855
16019
  },
14856
16020
  {
14857
16021
  "type": "reference",
14858
- "id": 24696,
16022
+ "id": 20101,
14859
16023
  "name": "UncontrolledPageProps"
14860
16024
  }
14861
16025
  ],
@@ -14877,12 +16041,12 @@
14877
16041
  "typeArguments": [
14878
16042
  {
14879
16043
  "type": "reference",
14880
- "id": 24698,
16044
+ "id": 20103,
14881
16045
  "name": "ControlledRowsPerPageProps"
14882
16046
  },
14883
16047
  {
14884
16048
  "type": "reference",
14885
- "id": 24700,
16049
+ "id": 20105,
14886
16050
  "name": "UncontrolledRowsPerPageProps"
14887
16051
  }
14888
16052
  ],
@@ -14904,17 +16068,17 @@
14904
16068
  "types": [
14905
16069
  {
14906
16070
  "type": "reference",
14907
- "id": 24415,
16071
+ "id": 19819,
14908
16072
  "name": "BaseTablePaginationProps"
14909
16073
  },
14910
16074
  {
14911
16075
  "type": "reference",
14912
- "id": 24710,
16076
+ "id": 20115,
14913
16077
  "name": "PagePaginationProps"
14914
16078
  },
14915
16079
  {
14916
16080
  "type": "reference",
14917
- "id": 24711,
16081
+ "id": 20116,
14918
16082
  "name": "RowsPaginationProps"
14919
16083
  }
14920
16084
  ]
@@ -14937,6 +16101,16 @@
14937
16101
  "defaultValue": "DropdownDropDirection.up",
14938
16102
  "deprecated": true
14939
16103
  },
16104
+ "hasOutsideBorder": {
16105
+ "name": "hasOutsideBorder",
16106
+ "required": false,
16107
+ "type": {
16108
+ "name": "boolean"
16109
+ },
16110
+ "description": "If true, the table paginator will have outer border",
16111
+ "defaultValue": "false",
16112
+ "deprecated": false
16113
+ },
14940
16114
  "hasSquareCorners": {
14941
16115
  "name": "hasSquareCorners",
14942
16116
  "required": false,
@@ -15107,7 +16281,7 @@
15107
16281
  "type": {
15108
16282
  "name": "string"
15109
16283
  },
15110
- "description": "Unique name to be used to identify row for screenreaders",
16284
+ "description": "Unique name to be used to identify row for screen readers",
15111
16285
  "deprecated": false
15112
16286
  },
15113
16287
  "sortDirection": {
@@ -15530,12 +16704,12 @@
15530
16704
  "types": [
15531
16705
  {
15532
16706
  "type": "reference",
15533
- "id": 14987,
16707
+ "id": 23705,
15534
16708
  "name": "HorizontalTabsProps"
15535
16709
  },
15536
16710
  {
15537
16711
  "type": "reference",
15538
- "id": 14984,
16712
+ "id": 23702,
15539
16713
  "name": "VerticalTabsProps"
15540
16714
  }
15541
16715
  ]
@@ -16013,12 +17187,12 @@
16013
17187
  "typeArguments": [
16014
17188
  {
16015
17189
  "type": "reference",
16016
- "id": 30814,
17190
+ "id": 29895,
16017
17191
  "name": "DeletableTagProps"
16018
17192
  },
16019
17193
  {
16020
17194
  "type": "reference",
16021
- "id": 30827,
17195
+ "id": 29908,
16022
17196
  "name": "ClickableTagProps"
16023
17197
  }
16024
17198
  ],
@@ -16263,7 +17437,7 @@
16263
17437
  "type": "query",
16264
17438
  "queryType": {
16265
17439
  "type": "reference",
16266
- "id": 32155,
17440
+ "id": 31236,
16267
17441
  "name": "useTimePicker"
16268
17442
  }
16269
17443
  }
@@ -16542,7 +17716,7 @@
16542
17716
  "type": {
16543
17717
  "name": "boolean"
16544
17718
  },
16545
- "description": "If true, element is checked (i.e. selected)",
17719
+ "description": "If true, an element is checked (i.e., selected)",
16546
17720
  "defaultValue": "false",
16547
17721
  "deprecated": false
16548
17722
  },
@@ -16590,7 +17764,7 @@
16590
17764
  "type": {
16591
17765
  "name": "boolean"
16592
17766
  },
16593
- "description": "If true, label text will be hidden visually, but will still be read by assistive technology",
17767
+ "description": "If true, a label text will be hidden visually, but will still be read by assistive technology",
16594
17768
  "defaultValue": "false",
16595
17769
  "deprecated": false
16596
17770
  },
@@ -16958,12 +18132,12 @@
16958
18132
  "typeArguments": [
16959
18133
  {
16960
18134
  "type": "reference",
16961
- "id": 34889,
18135
+ "id": 36046,
16962
18136
  "name": "ToggleButtonTextProps"
16963
18137
  },
16964
18138
  {
16965
18139
  "type": "reference",
16966
- "id": 35173,
18140
+ "id": 36330,
16967
18141
  "name": "ToggleButtonIconProps"
16968
18142
  }
16969
18143
  ],
@@ -17558,19 +18732,107 @@
17558
18732
  },
17559
18733
  {
17560
18734
  "name": "TreeItemProps",
17561
- "kind": 4194304,
17562
- "kindString": "Type alias",
18735
+ "kind": 256,
18736
+ "kindString": "Interface",
17563
18737
  "flags": {
17564
18738
  "isExported": true
17565
18739
  },
17566
- "type": {
17567
- "type": "reference",
17568
- "id": 34160,
17569
- "name": "UseTreeItemProps"
17570
- },
17571
18740
  "id": "TreeItemProps",
17572
18741
  "tags": {},
17573
- "properties": {}
18742
+ "properties": {
18743
+ "additionalContent": {
18744
+ "name": "additionalContent",
18745
+ "required": false,
18746
+ "type": {
18747
+ "name": "React.ReactNode"
18748
+ },
18749
+ "description": "Enables additional content within the TreeItem.",
18750
+ "deprecated": false
18751
+ },
18752
+ "hoverColor": {
18753
+ "name": "hoverColor",
18754
+ "required": false,
18755
+ "type": {
18756
+ "name": "string"
18757
+ },
18758
+ "description": "Tree item hover color",
18759
+ "defaultValue": "transparent",
18760
+ "deprecated": false
18761
+ },
18762
+ "icon": {
18763
+ "name": "icon",
18764
+ "required": false,
18765
+ "type": {
18766
+ "name": "ReactElement"
18767
+ },
18768
+ "description": "Icon for the tree item",
18769
+ "deprecated": false
18770
+ },
18771
+ "index": {
18772
+ "name": "index",
18773
+ "required": false,
18774
+ "type": {
18775
+ "name": "number"
18776
+ },
18777
+ "description": "Index number\nprivate",
18778
+ "deprecated": false
18779
+ },
18780
+ "isDisabled": {
18781
+ "name": "isDisabled",
18782
+ "required": false,
18783
+ "type": {
18784
+ "name": "boolean"
18785
+ },
18786
+ "description": "If true, element is disabled",
18787
+ "defaultValue": "false",
18788
+ "deprecated": false
18789
+ },
18790
+ "itemId": {
18791
+ "name": "itemId",
18792
+ "required": true,
18793
+ "type": {
18794
+ "name": "string"
18795
+ },
18796
+ "description": "Item id",
18797
+ "deprecated": false
18798
+ },
18799
+ "label": {
18800
+ "name": "label",
18801
+ "required": true,
18802
+ "type": {
18803
+ "name": "React.ReactNode"
18804
+ },
18805
+ "description": "Item name",
18806
+ "deprecated": false
18807
+ },
18808
+ "labelStyle": {
18809
+ "name": "labelStyle",
18810
+ "required": false,
18811
+ "type": {
18812
+ "name": "CSSProperties"
18813
+ },
18814
+ "description": "Style properties for the tree item label",
18815
+ "deprecated": false
18816
+ },
18817
+ "onClick": {
18818
+ "name": "onClick",
18819
+ "required": false,
18820
+ "type": {
18821
+ "name": "function"
18822
+ },
18823
+ "description": "Action that fires when the item is clicked",
18824
+ "deprecated": false
18825
+ },
18826
+ "treeItemStyles": {
18827
+ "name": "treeItemStyles",
18828
+ "required": false,
18829
+ "type": {
18830
+ "name": "CSSProperties"
18831
+ },
18832
+ "description": "Style properties for the tree item",
18833
+ "deprecated": false
18834
+ }
18835
+ }
17574
18836
  },
17575
18837
  {
17576
18838
  "name": "TreeItemContextInterface",
@@ -17709,6 +18971,15 @@
17709
18971
  "description": "The content of the component",
17710
18972
  "deprecated": false
17711
18973
  },
18974
+ "expandIconStyles": {
18975
+ "name": "expandIconStyles",
18976
+ "required": false,
18977
+ "type": {
18978
+ "name": "ExpandIconStylesProps"
18979
+ },
18980
+ "description": "Expand icon styles.",
18981
+ "deprecated": false
18982
+ },
17712
18983
  "initialExpandedItems": {
17713
18984
  "name": "initialExpandedItems",
17714
18985
  "required": false,
@@ -17793,6 +19064,34 @@
17793
19064
  }
17794
19065
  }
17795
19066
  },
19067
+ {
19068
+ "name": "ExpandIconInterface",
19069
+ "kind": 256,
19070
+ "kindString": "Interface",
19071
+ "flags": {
19072
+ "isExported": true
19073
+ },
19074
+ "id": "ExpandIconInterface",
19075
+ "tags": {},
19076
+ "properties": {
19077
+ "color": {
19078
+ "name": "color",
19079
+ "required": false,
19080
+ "type": {
19081
+ "name": "string"
19082
+ },
19083
+ "deprecated": false
19084
+ },
19085
+ "size": {
19086
+ "name": "size",
19087
+ "required": false,
19088
+ "type": {
19089
+ "name": "number"
19090
+ },
19091
+ "deprecated": false
19092
+ }
19093
+ }
19094
+ },
17796
19095
  {
17797
19096
  "name": "TreeItemSelectedInterface",
17798
19097
  "kind": 256,
@@ -17869,6 +19168,14 @@
17869
19168
  "description": "The content of the component",
17870
19169
  "deprecated": false
17871
19170
  },
19171
+ "expandIconStyles": {
19172
+ "name": "expandIconStyles",
19173
+ "required": false,
19174
+ "type": {
19175
+ "name": "ExpandIconInterface"
19176
+ },
19177
+ "deprecated": false
19178
+ },
17872
19179
  "expandedSet": {
17873
19180
  "name": "expandedSet",
17874
19181
  "required": true,
@@ -18063,6 +19370,25 @@
18063
19370
  "id": "UseTreeItemProps",
18064
19371
  "tags": {},
18065
19372
  "properties": {
19373
+ "additionalContent": {
19374
+ "name": "additionalContent",
19375
+ "required": false,
19376
+ "type": {
19377
+ "name": "React.ReactNode"
19378
+ },
19379
+ "description": "Enables additional content within the TreeItem.",
19380
+ "deprecated": false
19381
+ },
19382
+ "hoverColor": {
19383
+ "name": "hoverColor",
19384
+ "required": false,
19385
+ "type": {
19386
+ "name": "string"
19387
+ },
19388
+ "description": "Tree item hover color",
19389
+ "defaultValue": "transparent",
19390
+ "deprecated": false
19391
+ },
18066
19392
  "icon": {
18067
19393
  "name": "icon",
18068
19394
  "required": false,
@@ -18126,6 +19452,44 @@
18126
19452
  },
18127
19453
  "description": "Action that fires when the item is clicked",
18128
19454
  "deprecated": false
19455
+ },
19456
+ "treeItemStyles": {
19457
+ "name": "treeItemStyles",
19458
+ "required": false,
19459
+ "type": {
19460
+ "name": "CSSProperties"
19461
+ },
19462
+ "description": "Style properties for the tree item",
19463
+ "deprecated": false
19464
+ }
19465
+ }
19466
+ },
19467
+ {
19468
+ "name": "ExpandIconStylesProps",
19469
+ "kind": 256,
19470
+ "kindString": "Interface",
19471
+ "flags": {},
19472
+ "id": "ExpandIconStylesProps",
19473
+ "tags": {},
19474
+ "properties": {
19475
+ "color": {
19476
+ "name": "color",
19477
+ "required": false,
19478
+ "type": {
19479
+ "name": "string"
19480
+ },
19481
+ "description": "Color for the expand/collapse icon.",
19482
+ "deprecated": false
19483
+ },
19484
+ "size": {
19485
+ "name": "size",
19486
+ "required": false,
19487
+ "type": {
19488
+ "name": "number"
19489
+ },
19490
+ "description": "Size for the expand/collapse icon.",
19491
+ "defaultValue": "24",
19492
+ "deprecated": false
18129
19493
  }
18130
19494
  }
18131
19495
  },
@@ -18206,6 +19570,15 @@
18206
19570
  "description": "The content of the component",
18207
19571
  "deprecated": false
18208
19572
  },
19573
+ "expandIconStyles": {
19574
+ "name": "expandIconStyles",
19575
+ "required": false,
19576
+ "type": {
19577
+ "name": "ExpandIconStylesProps"
19578
+ },
19579
+ "description": "Expand icon styles.",
19580
+ "deprecated": false
19581
+ },
18209
19582
  "initialExpandedItems": {
18210
19583
  "name": "initialExpandedItems",
18211
19584
  "required": false,
@@ -18304,7 +19677,7 @@
18304
19677
  "type": "query",
18305
19678
  "queryType": {
18306
19679
  "type": "reference",
18307
- "id": 33934,
19680
+ "id": 34781,
18308
19681
  "name": "useTreeView"
18309
19682
  }
18310
19683
  }
@@ -18324,7 +19697,7 @@
18324
19697
  },
18325
19698
  "typeParameter": [
18326
19699
  {
18327
- "id": 3204,
19700
+ "id": 2108,
18328
19701
  "name": "T",
18329
19702
  "kind": 131072,
18330
19703
  "kindString": "Type parameter",
@@ -18501,7 +19874,7 @@
18501
19874
  },
18502
19875
  "typeParameter": [
18503
19876
  {
18504
- "id": 22555,
19877
+ "id": 17945,
18505
19878
  "name": "PaginatedItem",
18506
19879
  "kind": 131072,
18507
19880
  "kindString": "Type parameter",
@@ -18561,7 +19934,7 @@
18561
19934
  },
18562
19935
  "typeParameter": [
18563
19936
  {
18564
- "id": 22564,
19937
+ "id": 17954,
18565
19938
  "name": "PaginatedItem",
18566
19939
  "kind": 131072,
18567
19940
  "kindString": "Type parameter",