react-magma-dom 4.9.0-next.5 → 4.9.0-next.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Popover/Popover.d.ts +102 -0
- package/dist/components/Popover/PopoverContent.d.ts +12 -0
- package/dist/components/Popover/PopoverSection.d.ts +13 -0
- package/dist/components/Popover/PopoverTrigger.d.ts +37 -0
- package/dist/components/Popover/index.d.ts +4 -0
- package/dist/esm/index.js +1156 -24
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/properties.json +627 -4
- package/dist/react-magma-dom.cjs.development.js +490 -18
- package/dist/react-magma-dom.cjs.development.js.map +1 -1
- package/dist/react-magma-dom.cjs.production.min.js +1 -1
- package/dist/react-magma-dom.cjs.production.min.js.map +1 -1
- package/package.json +4 -3
package/dist/index.d.ts
CHANGED
|
@@ -85,6 +85,10 @@ export { EnumTooltipPosition, StyledTooltip, Tooltip, TooltipArrow, TooltipPosit
|
|
|
85
85
|
export { Textarea, TextareaProps } from './components/Textarea';
|
|
86
86
|
export { TimePicker, TimePickerProps } from './components/TimePicker';
|
|
87
87
|
export { TypographyProps, TypographyColor, TypographyContextVariant, TypographyVisualStyle, } from './components/Typography';
|
|
88
|
+
export { Popover, PopoverProps, PopoverPosition, PopoverApi, } from './components/Popover';
|
|
89
|
+
export { PopoverTrigger, PopoverTriggerProps, } from './components/Popover/PopoverTrigger';
|
|
90
|
+
export { PopoverContent, PopoverContentProps, } from './components/Popover/PopoverContent';
|
|
91
|
+
export { PopoverHeader, PopoverFooter, PopoverSectionProps, } from './components/Popover/PopoverSection';
|
|
88
92
|
export { VisuallyHidden, VisuallyHiddenProps, } from './components/VisuallyHidden';
|
|
89
93
|
export { magma, ThemeInterface } from './theme/magma';
|
|
90
94
|
export { GlobalStyles } from './theme/GlobalStyles';
|
package/dist/properties.json
CHANGED
|
@@ -10288,6 +10288,629 @@
|
|
|
10288
10288
|
}
|
|
10289
10289
|
}
|
|
10290
10290
|
},
|
|
10291
|
+
{
|
|
10292
|
+
"name": "PopoverApi",
|
|
10293
|
+
"kind": 256,
|
|
10294
|
+
"kindString": "Interface",
|
|
10295
|
+
"flags": {
|
|
10296
|
+
"isExported": true
|
|
10297
|
+
},
|
|
10298
|
+
"id": "PopoverApi",
|
|
10299
|
+
"tags": {},
|
|
10300
|
+
"properties": {}
|
|
10301
|
+
},
|
|
10302
|
+
{
|
|
10303
|
+
"name": "PopoverContextInterface",
|
|
10304
|
+
"kind": 256,
|
|
10305
|
+
"kindString": "Interface",
|
|
10306
|
+
"flags": {
|
|
10307
|
+
"isExported": true
|
|
10308
|
+
},
|
|
10309
|
+
"id": "PopoverContextInterface",
|
|
10310
|
+
"tags": {},
|
|
10311
|
+
"properties": {
|
|
10312
|
+
"arrowContext": {
|
|
10313
|
+
"name": "arrowContext",
|
|
10314
|
+
"required": false,
|
|
10315
|
+
"type": {
|
|
10316
|
+
"name": "any"
|
|
10317
|
+
},
|
|
10318
|
+
"deprecated": false
|
|
10319
|
+
},
|
|
10320
|
+
"arrowRef": {
|
|
10321
|
+
"name": "arrowRef",
|
|
10322
|
+
"required": false,
|
|
10323
|
+
"type": {
|
|
10324
|
+
"name": "MutableRefObject"
|
|
10325
|
+
},
|
|
10326
|
+
"deprecated": false
|
|
10327
|
+
},
|
|
10328
|
+
"closePopover": {
|
|
10329
|
+
"name": "closePopover",
|
|
10330
|
+
"required": false,
|
|
10331
|
+
"type": {
|
|
10332
|
+
"name": "function"
|
|
10333
|
+
},
|
|
10334
|
+
"deprecated": false
|
|
10335
|
+
},
|
|
10336
|
+
"contentRef": {
|
|
10337
|
+
"name": "contentRef",
|
|
10338
|
+
"required": false,
|
|
10339
|
+
"type": {
|
|
10340
|
+
"name": "any"
|
|
10341
|
+
},
|
|
10342
|
+
"deprecated": false
|
|
10343
|
+
},
|
|
10344
|
+
"floatingStyles": {
|
|
10345
|
+
"name": "floatingStyles",
|
|
10346
|
+
"required": false,
|
|
10347
|
+
"type": {
|
|
10348
|
+
"name": "CSSProperties"
|
|
10349
|
+
},
|
|
10350
|
+
"deprecated": false
|
|
10351
|
+
},
|
|
10352
|
+
"focusTrap": {
|
|
10353
|
+
"name": "focusTrap",
|
|
10354
|
+
"required": false,
|
|
10355
|
+
"type": {
|
|
10356
|
+
"name": "boolean"
|
|
10357
|
+
},
|
|
10358
|
+
"deprecated": false
|
|
10359
|
+
},
|
|
10360
|
+
"hasActiveElements": {
|
|
10361
|
+
"name": "hasActiveElements",
|
|
10362
|
+
"required": false,
|
|
10363
|
+
"type": {
|
|
10364
|
+
"name": "boolean"
|
|
10365
|
+
},
|
|
10366
|
+
"deprecated": false
|
|
10367
|
+
},
|
|
10368
|
+
"hasPointer": {
|
|
10369
|
+
"name": "hasPointer",
|
|
10370
|
+
"required": false,
|
|
10371
|
+
"type": {
|
|
10372
|
+
"name": "boolean"
|
|
10373
|
+
},
|
|
10374
|
+
"deprecated": false
|
|
10375
|
+
},
|
|
10376
|
+
"hoverable": {
|
|
10377
|
+
"name": "hoverable",
|
|
10378
|
+
"required": false,
|
|
10379
|
+
"type": {
|
|
10380
|
+
"name": "boolean"
|
|
10381
|
+
},
|
|
10382
|
+
"deprecated": false
|
|
10383
|
+
},
|
|
10384
|
+
"isDisabled": {
|
|
10385
|
+
"name": "isDisabled",
|
|
10386
|
+
"required": false,
|
|
10387
|
+
"type": {
|
|
10388
|
+
"name": "boolean"
|
|
10389
|
+
},
|
|
10390
|
+
"deprecated": false
|
|
10391
|
+
},
|
|
10392
|
+
"isInverse": {
|
|
10393
|
+
"name": "isInverse",
|
|
10394
|
+
"required": false,
|
|
10395
|
+
"type": {
|
|
10396
|
+
"name": "boolean"
|
|
10397
|
+
},
|
|
10398
|
+
"description": "If true, the component will have inverse styling to better appear on a dark background",
|
|
10399
|
+
"defaultValue": "false",
|
|
10400
|
+
"deprecated": false
|
|
10401
|
+
},
|
|
10402
|
+
"isOpen": {
|
|
10403
|
+
"name": "isOpen",
|
|
10404
|
+
"required": true,
|
|
10405
|
+
"type": {
|
|
10406
|
+
"name": "boolean"
|
|
10407
|
+
},
|
|
10408
|
+
"deprecated": false
|
|
10409
|
+
},
|
|
10410
|
+
"maxHeight": {
|
|
10411
|
+
"name": "maxHeight",
|
|
10412
|
+
"required": false,
|
|
10413
|
+
"type": {
|
|
10414
|
+
"name": "string"
|
|
10415
|
+
},
|
|
10416
|
+
"deprecated": false
|
|
10417
|
+
},
|
|
10418
|
+
"openPopover": {
|
|
10419
|
+
"name": "openPopover",
|
|
10420
|
+
"required": false,
|
|
10421
|
+
"type": {
|
|
10422
|
+
"name": "function"
|
|
10423
|
+
},
|
|
10424
|
+
"deprecated": false
|
|
10425
|
+
},
|
|
10426
|
+
"popoverContentId": {
|
|
10427
|
+
"name": "popoverContentId",
|
|
10428
|
+
"required": false,
|
|
10429
|
+
"type": {
|
|
10430
|
+
"name": "MutableRefObject"
|
|
10431
|
+
},
|
|
10432
|
+
"deprecated": false
|
|
10433
|
+
},
|
|
10434
|
+
"popoverTriggerId": {
|
|
10435
|
+
"name": "popoverTriggerId",
|
|
10436
|
+
"required": false,
|
|
10437
|
+
"type": {
|
|
10438
|
+
"name": "MutableRefObject"
|
|
10439
|
+
},
|
|
10440
|
+
"deprecated": false
|
|
10441
|
+
},
|
|
10442
|
+
"position": {
|
|
10443
|
+
"name": "position",
|
|
10444
|
+
"required": false,
|
|
10445
|
+
"type": {
|
|
10446
|
+
"name": "enum",
|
|
10447
|
+
"options": [
|
|
10448
|
+
"PopoverPosition.bottom",
|
|
10449
|
+
"PopoverPosition.top"
|
|
10450
|
+
]
|
|
10451
|
+
},
|
|
10452
|
+
"deprecated": false
|
|
10453
|
+
},
|
|
10454
|
+
"setFloating": {
|
|
10455
|
+
"name": "setFloating",
|
|
10456
|
+
"required": false,
|
|
10457
|
+
"type": {
|
|
10458
|
+
"name": "function"
|
|
10459
|
+
},
|
|
10460
|
+
"deprecated": false
|
|
10461
|
+
},
|
|
10462
|
+
"setIsOpen": {
|
|
10463
|
+
"name": "setIsOpen",
|
|
10464
|
+
"required": true,
|
|
10465
|
+
"type": {
|
|
10466
|
+
"name": "React.Dispatch"
|
|
10467
|
+
},
|
|
10468
|
+
"deprecated": false
|
|
10469
|
+
},
|
|
10470
|
+
"setReference": {
|
|
10471
|
+
"name": "setReference",
|
|
10472
|
+
"required": false,
|
|
10473
|
+
"type": {
|
|
10474
|
+
"name": "function"
|
|
10475
|
+
},
|
|
10476
|
+
"deprecated": false
|
|
10477
|
+
},
|
|
10478
|
+
"toggleRef": {
|
|
10479
|
+
"name": "toggleRef",
|
|
10480
|
+
"required": false,
|
|
10481
|
+
"type": {
|
|
10482
|
+
"name": "any"
|
|
10483
|
+
},
|
|
10484
|
+
"deprecated": false
|
|
10485
|
+
},
|
|
10486
|
+
"width": {
|
|
10487
|
+
"name": "width",
|
|
10488
|
+
"required": false,
|
|
10489
|
+
"type": {
|
|
10490
|
+
"name": "string"
|
|
10491
|
+
},
|
|
10492
|
+
"deprecated": false
|
|
10493
|
+
}
|
|
10494
|
+
}
|
|
10495
|
+
},
|
|
10496
|
+
{
|
|
10497
|
+
"name": "PopoverProps",
|
|
10498
|
+
"kind": 256,
|
|
10499
|
+
"kindString": "Interface",
|
|
10500
|
+
"flags": {
|
|
10501
|
+
"isExported": true
|
|
10502
|
+
},
|
|
10503
|
+
"id": "PopoverProps",
|
|
10504
|
+
"tags": {},
|
|
10505
|
+
"properties": {
|
|
10506
|
+
"apiRef": {
|
|
10507
|
+
"name": "apiRef",
|
|
10508
|
+
"required": false,
|
|
10509
|
+
"type": {
|
|
10510
|
+
"name": "MutableRefObject"
|
|
10511
|
+
},
|
|
10512
|
+
"description": "The ref object that allows Popover manipulation.\nActions available:\nclosePopoverManually(event): void - Closes the popover manually.",
|
|
10513
|
+
"deprecated": false
|
|
10514
|
+
},
|
|
10515
|
+
"focusTrap": {
|
|
10516
|
+
"name": "focusTrap",
|
|
10517
|
+
"required": false,
|
|
10518
|
+
"type": {
|
|
10519
|
+
"name": "boolean"
|
|
10520
|
+
},
|
|
10521
|
+
"description": "If true, the focus will be trapped within the popover, preventing focus from moving outside.\nThis is recommended when using interactive elements inside the popover to improve accessibility.",
|
|
10522
|
+
"defaultValue": "false",
|
|
10523
|
+
"deprecated": false
|
|
10524
|
+
},
|
|
10525
|
+
"hasPointer": {
|
|
10526
|
+
"name": "hasPointer",
|
|
10527
|
+
"required": false,
|
|
10528
|
+
"type": {
|
|
10529
|
+
"name": "boolean"
|
|
10530
|
+
},
|
|
10531
|
+
"description": "If true, a pointer (arrow) is displayed pointing towards the trigger element.",
|
|
10532
|
+
"defaultValue": "true",
|
|
10533
|
+
"deprecated": false
|
|
10534
|
+
},
|
|
10535
|
+
"hoverable": {
|
|
10536
|
+
"name": "hoverable",
|
|
10537
|
+
"required": false,
|
|
10538
|
+
"type": {
|
|
10539
|
+
"name": "boolean"
|
|
10540
|
+
},
|
|
10541
|
+
"description": "If true, the popover will remain open when hovered over.",
|
|
10542
|
+
"defaultValue": "false",
|
|
10543
|
+
"deprecated": false
|
|
10544
|
+
},
|
|
10545
|
+
"isDisabled": {
|
|
10546
|
+
"name": "isDisabled",
|
|
10547
|
+
"required": false,
|
|
10548
|
+
"type": {
|
|
10549
|
+
"name": "boolean"
|
|
10550
|
+
},
|
|
10551
|
+
"description": "If true, the popover will be disabled and cannot be opened.",
|
|
10552
|
+
"defaultValue": "false",
|
|
10553
|
+
"deprecated": false
|
|
10554
|
+
},
|
|
10555
|
+
"isInverse": {
|
|
10556
|
+
"name": "isInverse",
|
|
10557
|
+
"required": false,
|
|
10558
|
+
"type": {
|
|
10559
|
+
"name": "boolean"
|
|
10560
|
+
},
|
|
10561
|
+
"description": "If true, the component will have inverse styling to better appear on a dark background",
|
|
10562
|
+
"defaultValue": "false",
|
|
10563
|
+
"deprecated": false
|
|
10564
|
+
},
|
|
10565
|
+
"maxHeight": {
|
|
10566
|
+
"name": "maxHeight",
|
|
10567
|
+
"required": false,
|
|
10568
|
+
"type": {
|
|
10569
|
+
"name": "string | number"
|
|
10570
|
+
},
|
|
10571
|
+
"description": "Sets the maximum height of the popover content.",
|
|
10572
|
+
"defaultValue": "100%",
|
|
10573
|
+
"deprecated": false
|
|
10574
|
+
},
|
|
10575
|
+
"onClose": {
|
|
10576
|
+
"name": "onClose",
|
|
10577
|
+
"required": false,
|
|
10578
|
+
"type": {
|
|
10579
|
+
"name": "function"
|
|
10580
|
+
},
|
|
10581
|
+
"description": "Function called when closing the popover menu",
|
|
10582
|
+
"deprecated": false
|
|
10583
|
+
},
|
|
10584
|
+
"onOpen": {
|
|
10585
|
+
"name": "onOpen",
|
|
10586
|
+
"required": false,
|
|
10587
|
+
"type": {
|
|
10588
|
+
"name": "function"
|
|
10589
|
+
},
|
|
10590
|
+
"description": "Function called when opening the popover menu",
|
|
10591
|
+
"deprecated": false
|
|
10592
|
+
},
|
|
10593
|
+
"openByDefault": {
|
|
10594
|
+
"name": "openByDefault",
|
|
10595
|
+
"required": false,
|
|
10596
|
+
"type": {
|
|
10597
|
+
"name": "boolean"
|
|
10598
|
+
},
|
|
10599
|
+
"description": "If true, the popover is open by default when the component is first rendered.",
|
|
10600
|
+
"defaultValue": "false",
|
|
10601
|
+
"deprecated": false
|
|
10602
|
+
},
|
|
10603
|
+
"position": {
|
|
10604
|
+
"name": "position",
|
|
10605
|
+
"required": false,
|
|
10606
|
+
"type": {
|
|
10607
|
+
"name": "enum",
|
|
10608
|
+
"options": [
|
|
10609
|
+
"PopoverPosition.bottom",
|
|
10610
|
+
"PopoverPosition.top"
|
|
10611
|
+
]
|
|
10612
|
+
},
|
|
10613
|
+
"description": "Determines the position of the popover relative to its trigger.",
|
|
10614
|
+
"defaultValue": "PopoverPosition.bottom",
|
|
10615
|
+
"deprecated": false
|
|
10616
|
+
},
|
|
10617
|
+
"width": {
|
|
10618
|
+
"name": "width",
|
|
10619
|
+
"required": false,
|
|
10620
|
+
"type": {
|
|
10621
|
+
"name": "string | number"
|
|
10622
|
+
},
|
|
10623
|
+
"description": "Sets the width of the popover.",
|
|
10624
|
+
"defaultValue": "Width of longest menu item",
|
|
10625
|
+
"deprecated": false
|
|
10626
|
+
}
|
|
10627
|
+
}
|
|
10628
|
+
},
|
|
10629
|
+
{
|
|
10630
|
+
"name": "PopoverContentProps",
|
|
10631
|
+
"kind": 256,
|
|
10632
|
+
"kindString": "Interface",
|
|
10633
|
+
"flags": {
|
|
10634
|
+
"isExported": true
|
|
10635
|
+
},
|
|
10636
|
+
"id": "PopoverContentProps",
|
|
10637
|
+
"tags": {},
|
|
10638
|
+
"properties": {
|
|
10639
|
+
"children": {
|
|
10640
|
+
"name": "children",
|
|
10641
|
+
"required": true,
|
|
10642
|
+
"type": {
|
|
10643
|
+
"name": "React.ReactChild | "
|
|
10644
|
+
},
|
|
10645
|
+
"description": "The content of the component",
|
|
10646
|
+
"deprecated": false
|
|
10647
|
+
}
|
|
10648
|
+
}
|
|
10649
|
+
},
|
|
10650
|
+
{
|
|
10651
|
+
"name": "PopoverSectionProps",
|
|
10652
|
+
"kind": 256,
|
|
10653
|
+
"kindString": "Interface",
|
|
10654
|
+
"flags": {
|
|
10655
|
+
"isExported": true
|
|
10656
|
+
},
|
|
10657
|
+
"id": "PopoverSectionProps",
|
|
10658
|
+
"tags": {},
|
|
10659
|
+
"properties": {
|
|
10660
|
+
"children": {
|
|
10661
|
+
"name": "children",
|
|
10662
|
+
"required": true,
|
|
10663
|
+
"type": {
|
|
10664
|
+
"name": "React.ReactChild | "
|
|
10665
|
+
},
|
|
10666
|
+
"description": "The content of the component",
|
|
10667
|
+
"deprecated": false
|
|
10668
|
+
}
|
|
10669
|
+
}
|
|
10670
|
+
},
|
|
10671
|
+
{
|
|
10672
|
+
"name": "PopoverSectionTemplateProps",
|
|
10673
|
+
"kind": 256,
|
|
10674
|
+
"kindString": "Interface",
|
|
10675
|
+
"flags": {},
|
|
10676
|
+
"id": "PopoverSectionTemplateProps",
|
|
10677
|
+
"tags": {},
|
|
10678
|
+
"properties": {
|
|
10679
|
+
"children": {
|
|
10680
|
+
"name": "children",
|
|
10681
|
+
"required": true,
|
|
10682
|
+
"type": {
|
|
10683
|
+
"name": "React.ReactChild | "
|
|
10684
|
+
},
|
|
10685
|
+
"description": "The content of the component",
|
|
10686
|
+
"deprecated": false
|
|
10687
|
+
},
|
|
10688
|
+
"section": {
|
|
10689
|
+
"name": "section",
|
|
10690
|
+
"required": true,
|
|
10691
|
+
"type": {
|
|
10692
|
+
"name": "enum",
|
|
10693
|
+
"options": [
|
|
10694
|
+
"SectionEnum.footer",
|
|
10695
|
+
"SectionEnum.header"
|
|
10696
|
+
]
|
|
10697
|
+
},
|
|
10698
|
+
"deprecated": false
|
|
10699
|
+
},
|
|
10700
|
+
"style": {
|
|
10701
|
+
"name": "style",
|
|
10702
|
+
"required": false,
|
|
10703
|
+
"type": {
|
|
10704
|
+
"name": "CSSProperties"
|
|
10705
|
+
},
|
|
10706
|
+
"deprecated": false
|
|
10707
|
+
}
|
|
10708
|
+
}
|
|
10709
|
+
},
|
|
10710
|
+
{
|
|
10711
|
+
"name": "IconOnlyPopoverTriggerProps",
|
|
10712
|
+
"kind": 256,
|
|
10713
|
+
"kindString": "Interface",
|
|
10714
|
+
"flags": {},
|
|
10715
|
+
"id": "IconOnlyPopoverTriggerProps",
|
|
10716
|
+
"tags": {},
|
|
10717
|
+
"properties": {
|
|
10718
|
+
"aria-label": {
|
|
10719
|
+
"name": "aria-label",
|
|
10720
|
+
"required": true,
|
|
10721
|
+
"type": {
|
|
10722
|
+
"name": "string"
|
|
10723
|
+
},
|
|
10724
|
+
"description": "The text the screen reader will announce. Required for icon-only buttons",
|
|
10725
|
+
"deprecated": false
|
|
10726
|
+
},
|
|
10727
|
+
"icon": {
|
|
10728
|
+
"name": "icon",
|
|
10729
|
+
"required": false,
|
|
10730
|
+
"type": {
|
|
10731
|
+
"name": "ReactElement"
|
|
10732
|
+
},
|
|
10733
|
+
"description": "Icon to display within the component",
|
|
10734
|
+
"deprecated": false
|
|
10735
|
+
},
|
|
10736
|
+
"tabIndex": {
|
|
10737
|
+
"name": "tabIndex",
|
|
10738
|
+
"required": false,
|
|
10739
|
+
"type": {
|
|
10740
|
+
"name": "number"
|
|
10741
|
+
},
|
|
10742
|
+
"description": "The tab order of the component when navigating with a keyboard",
|
|
10743
|
+
"deprecated": false
|
|
10744
|
+
}
|
|
10745
|
+
}
|
|
10746
|
+
},
|
|
10747
|
+
{
|
|
10748
|
+
"name": "IconTextPopoverTriggerProps",
|
|
10749
|
+
"kind": 256,
|
|
10750
|
+
"kindString": "Interface",
|
|
10751
|
+
"flags": {},
|
|
10752
|
+
"id": "IconTextPopoverTriggerProps",
|
|
10753
|
+
"tags": {},
|
|
10754
|
+
"properties": {
|
|
10755
|
+
"children": {
|
|
10756
|
+
"name": "children",
|
|
10757
|
+
"required": true,
|
|
10758
|
+
"type": {
|
|
10759
|
+
"name": "React.ReactChild | | string"
|
|
10760
|
+
},
|
|
10761
|
+
"description": "The content of the component",
|
|
10762
|
+
"deprecated": false
|
|
10763
|
+
},
|
|
10764
|
+
"icon": {
|
|
10765
|
+
"name": "icon",
|
|
10766
|
+
"required": false,
|
|
10767
|
+
"type": {
|
|
10768
|
+
"name": "ReactElement"
|
|
10769
|
+
},
|
|
10770
|
+
"description": "Icon to display within the component",
|
|
10771
|
+
"deprecated": false
|
|
10772
|
+
},
|
|
10773
|
+
"isFullWidth": {
|
|
10774
|
+
"name": "isFullWidth",
|
|
10775
|
+
"required": false,
|
|
10776
|
+
"type": {
|
|
10777
|
+
"name": "boolean"
|
|
10778
|
+
},
|
|
10779
|
+
"description": "Set the button to display full-width.",
|
|
10780
|
+
"defaultValue": "false",
|
|
10781
|
+
"deprecated": false
|
|
10782
|
+
},
|
|
10783
|
+
"isInverse": {
|
|
10784
|
+
"name": "isInverse",
|
|
10785
|
+
"required": false,
|
|
10786
|
+
"type": {
|
|
10787
|
+
"name": "boolean"
|
|
10788
|
+
},
|
|
10789
|
+
"description": "If true, the component will have inverse styling to better appear on a dark background",
|
|
10790
|
+
"defaultValue": "false",
|
|
10791
|
+
"deprecated": false
|
|
10792
|
+
},
|
|
10793
|
+
"isLoading": {
|
|
10794
|
+
"name": "isLoading",
|
|
10795
|
+
"required": false,
|
|
10796
|
+
"type": {
|
|
10797
|
+
"name": "boolean"
|
|
10798
|
+
},
|
|
10799
|
+
"description": " Set the button to a loading state",
|
|
10800
|
+
"defaultValue": "false",
|
|
10801
|
+
"deprecated": false
|
|
10802
|
+
},
|
|
10803
|
+
"shape": {
|
|
10804
|
+
"name": "shape",
|
|
10805
|
+
"required": false,
|
|
10806
|
+
"type": {
|
|
10807
|
+
"name": "enum",
|
|
10808
|
+
"options": [
|
|
10809
|
+
"ButtonShape.fill",
|
|
10810
|
+
"ButtonShape.leftCap",
|
|
10811
|
+
"ButtonShape.rightCap",
|
|
10812
|
+
"ButtonShape.round"
|
|
10813
|
+
]
|
|
10814
|
+
},
|
|
10815
|
+
"description": "Defines the border radius",
|
|
10816
|
+
"defaultValue": "ButtonShape.fill",
|
|
10817
|
+
"deprecated": false
|
|
10818
|
+
},
|
|
10819
|
+
"size": {
|
|
10820
|
+
"name": "size",
|
|
10821
|
+
"required": false,
|
|
10822
|
+
"type": {
|
|
10823
|
+
"name": "enum",
|
|
10824
|
+
"options": [
|
|
10825
|
+
"ButtonSize.large",
|
|
10826
|
+
"ButtonSize.medium",
|
|
10827
|
+
"ButtonSize.small"
|
|
10828
|
+
]
|
|
10829
|
+
},
|
|
10830
|
+
"description": "The relative size of the button",
|
|
10831
|
+
"defaultValue": "ButtonSize.medium",
|
|
10832
|
+
"deprecated": false
|
|
10833
|
+
},
|
|
10834
|
+
"tabIndex": {
|
|
10835
|
+
"name": "tabIndex",
|
|
10836
|
+
"required": false,
|
|
10837
|
+
"type": {
|
|
10838
|
+
"name": "number"
|
|
10839
|
+
},
|
|
10840
|
+
"description": "The tab order of the component when navigating with a keyboard",
|
|
10841
|
+
"deprecated": false
|
|
10842
|
+
},
|
|
10843
|
+
"textTransform": {
|
|
10844
|
+
"name": "textTransform",
|
|
10845
|
+
"required": false,
|
|
10846
|
+
"type": {
|
|
10847
|
+
"name": "enum",
|
|
10848
|
+
"options": [
|
|
10849
|
+
"ButtonTextTransform.none",
|
|
10850
|
+
"ButtonTextTransform.uppercase"
|
|
10851
|
+
]
|
|
10852
|
+
},
|
|
10853
|
+
"description": "Determines whether the button appears in all-caps",
|
|
10854
|
+
"defaultValue": "ButtonTextTransform.uppercase",
|
|
10855
|
+
"deprecated": false
|
|
10856
|
+
},
|
|
10857
|
+
"type": {
|
|
10858
|
+
"name": "type",
|
|
10859
|
+
"required": false,
|
|
10860
|
+
"type": {
|
|
10861
|
+
"name": "enum",
|
|
10862
|
+
"options": [
|
|
10863
|
+
"ButtonType.button",
|
|
10864
|
+
"ButtonType.reset",
|
|
10865
|
+
"ButtonType.submit"
|
|
10866
|
+
]
|
|
10867
|
+
},
|
|
10868
|
+
"description": "The type attribute of the button\nButtonType.button",
|
|
10869
|
+
"deprecated": false
|
|
10870
|
+
},
|
|
10871
|
+
"variant": {
|
|
10872
|
+
"name": "variant",
|
|
10873
|
+
"required": false,
|
|
10874
|
+
"type": {
|
|
10875
|
+
"name": "enum",
|
|
10876
|
+
"options": [
|
|
10877
|
+
"ButtonVariant.link",
|
|
10878
|
+
"ButtonVariant.solid"
|
|
10879
|
+
]
|
|
10880
|
+
},
|
|
10881
|
+
"description": "The variant of the button",
|
|
10882
|
+
"defaultValue": "ButtonVariant.solid",
|
|
10883
|
+
"deprecated": false
|
|
10884
|
+
}
|
|
10885
|
+
}
|
|
10886
|
+
},
|
|
10887
|
+
{
|
|
10888
|
+
"name": "PopoverTriggerProps",
|
|
10889
|
+
"kind": 4194304,
|
|
10890
|
+
"kindString": "Type alias",
|
|
10891
|
+
"flags": {
|
|
10892
|
+
"isExported": true
|
|
10893
|
+
},
|
|
10894
|
+
"type": {
|
|
10895
|
+
"type": "reference",
|
|
10896
|
+
"typeArguments": [
|
|
10897
|
+
{
|
|
10898
|
+
"type": "reference",
|
|
10899
|
+
"id": 31245,
|
|
10900
|
+
"name": "IconOnlyPopoverTriggerProps"
|
|
10901
|
+
},
|
|
10902
|
+
{
|
|
10903
|
+
"type": "reference",
|
|
10904
|
+
"id": 31250,
|
|
10905
|
+
"name": "IconTextPopoverTriggerProps"
|
|
10906
|
+
}
|
|
10907
|
+
],
|
|
10908
|
+
"name": "XOR"
|
|
10909
|
+
},
|
|
10910
|
+
"id": "PopoverTriggerProps",
|
|
10911
|
+
"tags": {},
|
|
10912
|
+
"properties": {}
|
|
10913
|
+
},
|
|
10291
10914
|
{
|
|
10292
10915
|
"name": "ProgressBarProps",
|
|
10293
10916
|
"kind": 256,
|
|
@@ -16212,12 +16835,12 @@
|
|
|
16212
16835
|
"typeArguments": [
|
|
16213
16836
|
{
|
|
16214
16837
|
"type": "reference",
|
|
16215
|
-
"id":
|
|
16838
|
+
"id": 34140,
|
|
16216
16839
|
"name": "ToggleButtonTextProps"
|
|
16217
16840
|
},
|
|
16218
16841
|
{
|
|
16219
16842
|
"type": "reference",
|
|
16220
|
-
"id":
|
|
16843
|
+
"id": 34418,
|
|
16221
16844
|
"name": "ToggleButtonIconProps"
|
|
16222
16845
|
}
|
|
16223
16846
|
],
|
|
@@ -16819,7 +17442,7 @@
|
|
|
16819
17442
|
},
|
|
16820
17443
|
"type": {
|
|
16821
17444
|
"type": "reference",
|
|
16822
|
-
"id":
|
|
17445
|
+
"id": 33425,
|
|
16823
17446
|
"name": "UseTreeItemProps"
|
|
16824
17447
|
},
|
|
16825
17448
|
"id": "TreeItemProps",
|
|
@@ -17574,7 +18197,7 @@
|
|
|
17574
18197
|
"type": "query",
|
|
17575
18198
|
"queryType": {
|
|
17576
18199
|
"type": "reference",
|
|
17577
|
-
"id":
|
|
18200
|
+
"id": 33197,
|
|
17578
18201
|
"name": "useTreeView"
|
|
17579
18202
|
}
|
|
17580
18203
|
}
|