dash_mantine_components 2.6.1 → 2.8.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.
- package/dash_mantine_components/async-AreaChart.js +1 -1
- package/dash_mantine_components/async-BarChart.js +1 -1
- package/dash_mantine_components/async-BubbleChart.js +1 -1
- package/dash_mantine_components/async-CodeHighlight.js +1 -1
- package/dash_mantine_components/async-CodeHighlightTabs.js +1 -1
- package/dash_mantine_components/async-CompositeChart.js +1 -1
- package/dash_mantine_components/async-DonutChart.js +1 -1
- package/dash_mantine_components/async-FunnelChart.js +1 -0
- package/dash_mantine_components/async-Heatmap.js +1 -0
- package/dash_mantine_components/async-InlineCodeHighlight.js +1 -1
- package/dash_mantine_components/async-LineChart.js +1 -1
- package/dash_mantine_components/async-PieChart.js +1 -1
- package/dash_mantine_components/async-RadarChart.js +1 -1
- package/dash_mantine_components/async-RichTextEditor.js +1 -1
- package/dash_mantine_components/async-ScatterChart.js +1 -1
- package/dash_mantine_components/async-Sparkline.js +1 -1
- package/dash_mantine_components/dash_mantine_components-charts-shared.js +1 -1
- package/dash_mantine_components/dash_mantine_components.js +1 -1
- package/dash_mantine_components/proptypes.js +480 -106
- package/package.json +11 -11
|
@@ -519,6 +519,184 @@ pk.DonutChart.propTypes = {data:pt.arrayOf(pt.shape({name:pt.string,value:pt.num
|
|
|
519
519
|
aria-*:pt.string,
|
|
520
520
|
tabIndex:pt.number,
|
|
521
521
|
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
522
|
+
pk.FunnelChart.propTypes = {data:pt.arrayOf(pt.shape({key:pt.oneOfType([pt.string,pt.number]),name:pt.string,value:pt.number,color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])])})),
|
|
523
|
+
withTooltip:pt.bool,
|
|
524
|
+
tooltipAnimationDuration:pt.number,
|
|
525
|
+
tooltipProps:pt.object,
|
|
526
|
+
funnelProps:pt.object,
|
|
527
|
+
strokeColor:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),
|
|
528
|
+
labelColor:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),
|
|
529
|
+
size:pt.number,
|
|
530
|
+
strokeWidth:pt.number,
|
|
531
|
+
withLabels:pt.bool,
|
|
532
|
+
labelsPosition:pt.oneOf(['left','right','inside']),
|
|
533
|
+
valueFormatter:pt.any,
|
|
534
|
+
tooltipDataSource:pt.oneOf(['segment','all']),
|
|
535
|
+
children:pt.node,
|
|
536
|
+
funnelChartProps:pt.object,
|
|
537
|
+
clickData:pt.objectOf(pt.any),
|
|
538
|
+
hoverData:pt.objectOf(pt.any),
|
|
539
|
+
clickSeriesName:pt.objectOf(pt.any),
|
|
540
|
+
hoverSeriesName:pt.objectOf(pt.any),
|
|
541
|
+
hiddenFrom:pt.string,
|
|
542
|
+
visibleFrom:pt.string,
|
|
543
|
+
mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),
|
|
544
|
+
m:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
545
|
+
my:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
546
|
+
mx:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
547
|
+
mt:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
548
|
+
mb:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
549
|
+
ms:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
550
|
+
me:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
551
|
+
ml:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
552
|
+
mr:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
553
|
+
p:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
554
|
+
py:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
555
|
+
px:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
556
|
+
pt:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
557
|
+
pb:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
558
|
+
ps:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
559
|
+
pe:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
560
|
+
pl:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
561
|
+
pr:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
562
|
+
bd:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
563
|
+
bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
564
|
+
bg:pt.oneOfType([pt.string,pt.object]),
|
|
565
|
+
c:pt.oneOfType([pt.string,pt.object]),
|
|
566
|
+
opacity:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
567
|
+
ff:pt.oneOfType([pt.string,pt.object]),
|
|
568
|
+
fz:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
569
|
+
fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),
|
|
570
|
+
lts:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
571
|
+
ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),
|
|
572
|
+
lh:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
573
|
+
fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),
|
|
574
|
+
tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),
|
|
575
|
+
td:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
576
|
+
w:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
577
|
+
miw:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
578
|
+
maw:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
579
|
+
h:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
580
|
+
mih:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
581
|
+
mah:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
582
|
+
bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
583
|
+
bgp:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
584
|
+
bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),
|
|
585
|
+
bga:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"]),pt.oneOf(["scroll"])]),
|
|
586
|
+
pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),
|
|
587
|
+
top:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
588
|
+
left:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
589
|
+
bottom:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
590
|
+
right:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
591
|
+
inset:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
592
|
+
display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),
|
|
593
|
+
flex:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
594
|
+
className:pt.string,
|
|
595
|
+
style:pt.any,
|
|
596
|
+
lightHidden:pt.bool,
|
|
597
|
+
darkHidden:pt.bool,
|
|
598
|
+
classNames:pt.object,
|
|
599
|
+
styles:pt.any,
|
|
600
|
+
unstyled:pt.bool,
|
|
601
|
+
variant:pt.string,
|
|
602
|
+
attributes:pt.any,
|
|
603
|
+
id:pt.string,
|
|
604
|
+
setProps:pt.any,
|
|
605
|
+
data-*:pt.string,
|
|
606
|
+
aria-*:pt.string,
|
|
607
|
+
tabIndex:pt.number,
|
|
608
|
+
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
609
|
+
pk.Heatmap.propTypes = {data:pt.objectOf(pt.number),
|
|
610
|
+
domain:pt.array,
|
|
611
|
+
startDate:pt.oneOfType([pt.string]),
|
|
612
|
+
endDate:pt.oneOfType([pt.string]),
|
|
613
|
+
withMonthLabels:pt.bool,
|
|
614
|
+
monthLabels:pt.arrayOf(pt.string),
|
|
615
|
+
withWeekdayLabels:pt.bool,
|
|
616
|
+
weekdayLabels:pt.arrayOf(pt.string),
|
|
617
|
+
withOutsideDates:pt.bool,
|
|
618
|
+
firstDayOfWeek:pt.oneOf([0,2,1,3,4,5,6]),
|
|
619
|
+
rectSize:pt.number,
|
|
620
|
+
gap:pt.number,
|
|
621
|
+
rectRadius:pt.number,
|
|
622
|
+
colors:pt.arrayOf(pt.string),
|
|
623
|
+
weekdaysLabelsWidth:pt.number,
|
|
624
|
+
monthsLabelsHeight:pt.number,
|
|
625
|
+
fontSize:pt.number,
|
|
626
|
+
getTooltipLabel:pt.any,
|
|
627
|
+
withTooltip:pt.bool,
|
|
628
|
+
tooltipProps:pt.any,
|
|
629
|
+
splitMonths:pt.bool,
|
|
630
|
+
clickData:pt.shape({}),
|
|
631
|
+
hoverData:pt.objectOf(pt.number),
|
|
632
|
+
hiddenFrom:pt.string,
|
|
633
|
+
visibleFrom:pt.string,
|
|
634
|
+
mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),
|
|
635
|
+
m:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
636
|
+
my:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
637
|
+
mx:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
638
|
+
mt:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
639
|
+
mb:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
640
|
+
ms:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
641
|
+
me:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
642
|
+
ml:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
643
|
+
mr:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
644
|
+
p:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
645
|
+
py:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
646
|
+
px:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
647
|
+
pt:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
648
|
+
pb:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
649
|
+
ps:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
650
|
+
pe:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
651
|
+
pl:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
652
|
+
pr:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
653
|
+
bd:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
654
|
+
bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
655
|
+
bg:pt.oneOfType([pt.string,pt.object]),
|
|
656
|
+
c:pt.oneOfType([pt.string,pt.object]),
|
|
657
|
+
opacity:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
658
|
+
ff:pt.oneOfType([pt.string,pt.object]),
|
|
659
|
+
fz:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
660
|
+
fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),
|
|
661
|
+
lts:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
662
|
+
ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),
|
|
663
|
+
lh:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
664
|
+
fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),
|
|
665
|
+
tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),
|
|
666
|
+
td:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
667
|
+
w:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
668
|
+
miw:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
669
|
+
maw:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
670
|
+
h:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
671
|
+
mih:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
672
|
+
mah:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
673
|
+
bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
674
|
+
bgp:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
675
|
+
bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),
|
|
676
|
+
bga:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"]),pt.oneOf(["scroll"])]),
|
|
677
|
+
pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),
|
|
678
|
+
top:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
679
|
+
left:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
680
|
+
bottom:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
681
|
+
right:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
682
|
+
inset:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
683
|
+
display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),
|
|
684
|
+
flex:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
685
|
+
className:pt.string,
|
|
686
|
+
style:pt.any,
|
|
687
|
+
lightHidden:pt.bool,
|
|
688
|
+
darkHidden:pt.bool,
|
|
689
|
+
classNames:pt.object,
|
|
690
|
+
styles:pt.any,
|
|
691
|
+
unstyled:pt.bool,
|
|
692
|
+
variant:pt.string,
|
|
693
|
+
attributes:pt.any,
|
|
694
|
+
id:pt.string,
|
|
695
|
+
setProps:pt.any,
|
|
696
|
+
data-*:pt.string,
|
|
697
|
+
aria-*:pt.string,
|
|
698
|
+
tabIndex:pt.number,
|
|
699
|
+
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
522
700
|
pk.LineChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
523
701
|
series:pt.arrayOf(pt.shape({strokeDasharray:pt.oneOfType([pt.string,pt.number]),curveType:pt.oneOf(['bump','linear','natural','monotone','step','stepBefore','stepAfter']),name:pt.string,color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),label:pt.string,yAxisId:pt.string})),
|
|
524
702
|
curveType:pt.oneOf(['bump','linear','natural','monotone','step','stepBefore','stepAfter']),
|
|
@@ -740,6 +918,12 @@ pk.RadarChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
|
740
918
|
polarRadiusAxisProps:pt.object,
|
|
741
919
|
children:pt.node,
|
|
742
920
|
clickData:pt.objectOf(pt.any),
|
|
921
|
+
withTooltip:pt.bool,
|
|
922
|
+
tooltipProps:pt.object,
|
|
923
|
+
tooltipAnimationDuration:pt.number,
|
|
924
|
+
withDots:pt.bool,
|
|
925
|
+
dotProps:pt.object,
|
|
926
|
+
activeDotProps:pt.object,
|
|
743
927
|
hiddenFrom:pt.string,
|
|
744
928
|
visibleFrom:pt.string,
|
|
745
929
|
mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),
|
|
@@ -809,7 +993,7 @@ pk.RadarChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
|
809
993
|
tabIndex:pt.number,
|
|
810
994
|
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
811
995
|
pk.ScatterChart.propTypes = {dataKey:pt.shape({x:pt.string,y:pt.string}),
|
|
812
|
-
data:pt.arrayOf(pt.shape({color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),name:pt.string,data:pt.arrayOf(pt.
|
|
996
|
+
data:pt.arrayOf(pt.shape({color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),name:pt.string,data:pt.arrayOf(pt.objectOf(pt.number))})),
|
|
813
997
|
unit:pt.shape({x:pt.string,y:pt.string}),
|
|
814
998
|
labels:pt.shape({x:pt.string,y:pt.string}),
|
|
815
999
|
scatterChartProps:pt.object,
|
|
@@ -1503,6 +1687,184 @@ pk.DonutChart.propTypes = {data:pt.arrayOf(pt.shape({name:pt.string,value:pt.num
|
|
|
1503
1687
|
aria-*:pt.string,
|
|
1504
1688
|
tabIndex:pt.number,
|
|
1505
1689
|
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
1690
|
+
pk.FunnelChart.propTypes = {data:pt.arrayOf(pt.shape({key:pt.oneOfType([pt.string,pt.number]),name:pt.string,value:pt.number,color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])])})),
|
|
1691
|
+
withTooltip:pt.bool,
|
|
1692
|
+
tooltipAnimationDuration:pt.number,
|
|
1693
|
+
tooltipProps:pt.object,
|
|
1694
|
+
funnelProps:pt.object,
|
|
1695
|
+
strokeColor:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),
|
|
1696
|
+
labelColor:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),
|
|
1697
|
+
size:pt.number,
|
|
1698
|
+
strokeWidth:pt.number,
|
|
1699
|
+
withLabels:pt.bool,
|
|
1700
|
+
labelsPosition:pt.oneOf(['left','right','inside']),
|
|
1701
|
+
valueFormatter:pt.any,
|
|
1702
|
+
tooltipDataSource:pt.oneOf(['segment','all']),
|
|
1703
|
+
children:pt.node,
|
|
1704
|
+
funnelChartProps:pt.object,
|
|
1705
|
+
clickData:pt.objectOf(pt.any),
|
|
1706
|
+
hoverData:pt.objectOf(pt.any),
|
|
1707
|
+
clickSeriesName:pt.objectOf(pt.any),
|
|
1708
|
+
hoverSeriesName:pt.objectOf(pt.any),
|
|
1709
|
+
hiddenFrom:pt.string,
|
|
1710
|
+
visibleFrom:pt.string,
|
|
1711
|
+
mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),
|
|
1712
|
+
m:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1713
|
+
my:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1714
|
+
mx:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1715
|
+
mt:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1716
|
+
mb:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1717
|
+
ms:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1718
|
+
me:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1719
|
+
ml:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1720
|
+
mr:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1721
|
+
p:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1722
|
+
py:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1723
|
+
px:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1724
|
+
pt:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1725
|
+
pb:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1726
|
+
ps:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1727
|
+
pe:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1728
|
+
pl:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1729
|
+
pr:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1730
|
+
bd:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1731
|
+
bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1732
|
+
bg:pt.oneOfType([pt.string,pt.object]),
|
|
1733
|
+
c:pt.oneOfType([pt.string,pt.object]),
|
|
1734
|
+
opacity:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1735
|
+
ff:pt.oneOfType([pt.string,pt.object]),
|
|
1736
|
+
fz:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1737
|
+
fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),
|
|
1738
|
+
lts:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1739
|
+
ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),
|
|
1740
|
+
lh:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1741
|
+
fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),
|
|
1742
|
+
tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),
|
|
1743
|
+
td:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1744
|
+
w:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1745
|
+
miw:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1746
|
+
maw:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1747
|
+
h:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1748
|
+
mih:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1749
|
+
mah:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1750
|
+
bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1751
|
+
bgp:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1752
|
+
bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),
|
|
1753
|
+
bga:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"]),pt.oneOf(["scroll"])]),
|
|
1754
|
+
pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),
|
|
1755
|
+
top:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1756
|
+
left:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1757
|
+
bottom:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1758
|
+
right:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1759
|
+
inset:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1760
|
+
display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),
|
|
1761
|
+
flex:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1762
|
+
className:pt.string,
|
|
1763
|
+
style:pt.any,
|
|
1764
|
+
lightHidden:pt.bool,
|
|
1765
|
+
darkHidden:pt.bool,
|
|
1766
|
+
classNames:pt.object,
|
|
1767
|
+
styles:pt.any,
|
|
1768
|
+
unstyled:pt.bool,
|
|
1769
|
+
variant:pt.string,
|
|
1770
|
+
attributes:pt.any,
|
|
1771
|
+
id:pt.string,
|
|
1772
|
+
setProps:pt.any,
|
|
1773
|
+
data-*:pt.string,
|
|
1774
|
+
aria-*:pt.string,
|
|
1775
|
+
tabIndex:pt.number,
|
|
1776
|
+
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
1777
|
+
pk.Heatmap.propTypes = {data:pt.objectOf(pt.number),
|
|
1778
|
+
domain:pt.array,
|
|
1779
|
+
startDate:pt.oneOfType([pt.string]),
|
|
1780
|
+
endDate:pt.oneOfType([pt.string]),
|
|
1781
|
+
withMonthLabels:pt.bool,
|
|
1782
|
+
monthLabels:pt.arrayOf(pt.string),
|
|
1783
|
+
withWeekdayLabels:pt.bool,
|
|
1784
|
+
weekdayLabels:pt.arrayOf(pt.string),
|
|
1785
|
+
withOutsideDates:pt.bool,
|
|
1786
|
+
firstDayOfWeek:pt.oneOf([0,2,1,3,4,5,6]),
|
|
1787
|
+
rectSize:pt.number,
|
|
1788
|
+
gap:pt.number,
|
|
1789
|
+
rectRadius:pt.number,
|
|
1790
|
+
colors:pt.arrayOf(pt.string),
|
|
1791
|
+
weekdaysLabelsWidth:pt.number,
|
|
1792
|
+
monthsLabelsHeight:pt.number,
|
|
1793
|
+
fontSize:pt.number,
|
|
1794
|
+
getTooltipLabel:pt.any,
|
|
1795
|
+
withTooltip:pt.bool,
|
|
1796
|
+
tooltipProps:pt.any,
|
|
1797
|
+
splitMonths:pt.bool,
|
|
1798
|
+
clickData:pt.shape({}),
|
|
1799
|
+
hoverData:pt.objectOf(pt.number),
|
|
1800
|
+
hiddenFrom:pt.string,
|
|
1801
|
+
visibleFrom:pt.string,
|
|
1802
|
+
mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),
|
|
1803
|
+
m:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1804
|
+
my:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1805
|
+
mx:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1806
|
+
mt:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1807
|
+
mb:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1808
|
+
ms:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1809
|
+
me:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1810
|
+
ml:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1811
|
+
mr:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1812
|
+
p:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1813
|
+
py:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1814
|
+
px:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1815
|
+
pt:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1816
|
+
pb:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1817
|
+
ps:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1818
|
+
pe:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1819
|
+
pl:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1820
|
+
pr:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1821
|
+
bd:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1822
|
+
bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1823
|
+
bg:pt.oneOfType([pt.string,pt.object]),
|
|
1824
|
+
c:pt.oneOfType([pt.string,pt.object]),
|
|
1825
|
+
opacity:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1826
|
+
ff:pt.oneOfType([pt.string,pt.object]),
|
|
1827
|
+
fz:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1828
|
+
fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),
|
|
1829
|
+
lts:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1830
|
+
ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),
|
|
1831
|
+
lh:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1832
|
+
fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),
|
|
1833
|
+
tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),
|
|
1834
|
+
td:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1835
|
+
w:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1836
|
+
miw:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1837
|
+
maw:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1838
|
+
h:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1839
|
+
mih:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1840
|
+
mah:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1841
|
+
bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1842
|
+
bgp:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1843
|
+
bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),
|
|
1844
|
+
bga:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"]),pt.oneOf(["scroll"])]),
|
|
1845
|
+
pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),
|
|
1846
|
+
top:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1847
|
+
left:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1848
|
+
bottom:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1849
|
+
right:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1850
|
+
inset:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1851
|
+
display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),
|
|
1852
|
+
flex:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
1853
|
+
className:pt.string,
|
|
1854
|
+
style:pt.any,
|
|
1855
|
+
lightHidden:pt.bool,
|
|
1856
|
+
darkHidden:pt.bool,
|
|
1857
|
+
classNames:pt.object,
|
|
1858
|
+
styles:pt.any,
|
|
1859
|
+
unstyled:pt.bool,
|
|
1860
|
+
variant:pt.string,
|
|
1861
|
+
attributes:pt.any,
|
|
1862
|
+
id:pt.string,
|
|
1863
|
+
setProps:pt.any,
|
|
1864
|
+
data-*:pt.string,
|
|
1865
|
+
aria-*:pt.string,
|
|
1866
|
+
tabIndex:pt.number,
|
|
1867
|
+
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
1506
1868
|
pk.LineChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
1507
1869
|
series:pt.arrayOf(pt.shape({strokeDasharray:pt.oneOfType([pt.string,pt.number]),curveType:pt.oneOf(['bump','linear','natural','monotone','step','stepBefore','stepAfter']),name:pt.string,color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),label:pt.string,yAxisId:pt.string})),
|
|
1508
1870
|
curveType:pt.oneOf(['bump','linear','natural','monotone','step','stepBefore','stepAfter']),
|
|
@@ -1724,6 +2086,12 @@ pk.RadarChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
|
1724
2086
|
polarRadiusAxisProps:pt.object,
|
|
1725
2087
|
children:pt.node,
|
|
1726
2088
|
clickData:pt.objectOf(pt.any),
|
|
2089
|
+
withTooltip:pt.bool,
|
|
2090
|
+
tooltipProps:pt.object,
|
|
2091
|
+
tooltipAnimationDuration:pt.number,
|
|
2092
|
+
withDots:pt.bool,
|
|
2093
|
+
dotProps:pt.object,
|
|
2094
|
+
activeDotProps:pt.object,
|
|
1727
2095
|
hiddenFrom:pt.string,
|
|
1728
2096
|
visibleFrom:pt.string,
|
|
1729
2097
|
mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),
|
|
@@ -1793,7 +2161,7 @@ pk.RadarChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
|
1793
2161
|
tabIndex:pt.number,
|
|
1794
2162
|
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
1795
2163
|
pk.ScatterChart.propTypes = {dataKey:pt.shape({x:pt.string,y:pt.string}),
|
|
1796
|
-
data:pt.arrayOf(pt.shape({color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),name:pt.string,data:pt.arrayOf(pt.
|
|
2164
|
+
data:pt.arrayOf(pt.shape({color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),name:pt.string,data:pt.arrayOf(pt.objectOf(pt.number))})),
|
|
1797
2165
|
unit:pt.shape({x:pt.string,y:pt.string}),
|
|
1798
2166
|
labels:pt.shape({x:pt.string,y:pt.string}),
|
|
1799
2167
|
scatterChartProps:pt.object,
|
|
@@ -2929,6 +3297,7 @@ pk.ActionIcon.propTypes = {n_clicks:pt.number,
|
|
|
2929
3297
|
disabled:pt.bool,
|
|
2930
3298
|
children:pt.node,
|
|
2931
3299
|
autoContrast:pt.bool,
|
|
3300
|
+
buttonProps:pt.object,
|
|
2932
3301
|
hiddenFrom:pt.string,
|
|
2933
3302
|
visibleFrom:pt.string,
|
|
2934
3303
|
mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),
|
|
@@ -3082,6 +3451,7 @@ pk.Button.propTypes = {size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.o
|
|
|
3082
3451
|
loaderProps:pt.shape({size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),type:pt.oneOf(['bars','dots','oval']),children:pt.node,hiddenFrom:pt.string,visibleFrom:pt.string,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),className:pt.string,style:pt.oneOfType([pt.any]),lightHidden:pt.bool,darkHidden:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any}),
|
|
3083
3452
|
autoContrast:pt.bool,
|
|
3084
3453
|
n_clicks:pt.number,
|
|
3454
|
+
buttonProps:pt.object,
|
|
3085
3455
|
id:pt.string,
|
|
3086
3456
|
setProps:pt.any,
|
|
3087
3457
|
data-*:pt.string,
|
|
@@ -3236,6 +3606,7 @@ pk.CopyButton.propTypes = {value:pt.string,
|
|
|
3236
3606
|
n_clicks:pt.number,
|
|
3237
3607
|
triggerCopy:pt.bool,
|
|
3238
3608
|
target_id:pt.string,
|
|
3609
|
+
buttonProps:pt.object,
|
|
3239
3610
|
id:pt.string,
|
|
3240
3611
|
setProps:pt.any,
|
|
3241
3612
|
data-*:pt.string,
|
|
@@ -3312,6 +3683,7 @@ pk.CustomCopyButton.propTypes = {value:pt.string,
|
|
|
3312
3683
|
pk.UnstyledButton.propTypes = {children:pt.node,
|
|
3313
3684
|
n_clicks:pt.number,
|
|
3314
3685
|
disabled:pt.bool,
|
|
3686
|
+
buttonProps:pt.object,
|
|
3315
3687
|
className:pt.string,
|
|
3316
3688
|
style:pt.any,
|
|
3317
3689
|
hiddenFrom:pt.string,
|
|
@@ -4152,7 +4524,7 @@ pk.Autocomplete.propTypes = {data:pt.oneOfType([pt.arrayOf(pt.oneOfType([pt.stri
|
|
|
4152
4524
|
value:pt.string,
|
|
4153
4525
|
scrollAreaProps:pt.shape({scrollbarSize:pt.oneOfType([pt.string,pt.number]),type:pt.oneOf(['auto','always','scroll','hover','never']),scrollHideDelay:pt.number,scrollbars:pt.oneOfType([pt.bool,pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["xy"])]),offsetScrollbars:pt.oneOfType([pt.bool,pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["present"])]),overscrollBehavior:pt.oneOfType([pt.oneOf(["auto"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["contain"]),pt.oneOf(["none"])]),hiddenFrom:pt.string,visibleFrom:pt.string,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["local"]),pt.oneOf(["scroll"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),className:pt.string,style:pt.any,lightHidden:pt.bool,darkHidden:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any}),
|
|
4154
4526
|
clearable:pt.bool,
|
|
4155
|
-
clearButtonProps:pt.shape({size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node}),
|
|
4527
|
+
clearButtonProps:pt.shape({size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,ButtonProps:pt.object}),
|
|
4156
4528
|
autoSelectOnBlur:pt.bool,
|
|
4157
4529
|
openOnFocus:pt.bool,
|
|
4158
4530
|
hiddenFrom:pt.string,
|
|
@@ -4275,7 +4647,7 @@ pk.MultiSelect.propTypes = {value:pt.arrayOf(pt.string),
|
|
|
4275
4647
|
checkIconPosition:pt.oneOf(['left','right']),
|
|
4276
4648
|
hidePickedOptions:pt.bool,
|
|
4277
4649
|
clearable:pt.bool,
|
|
4278
|
-
clearButtonProps:pt.shape({size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node}),
|
|
4650
|
+
clearButtonProps:pt.shape({size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,ButtonProps:pt.object}),
|
|
4279
4651
|
hiddenInputProps:pt.object,
|
|
4280
4652
|
hiddenInputValuesDivider:pt.string,
|
|
4281
4653
|
scrollAreaProps:pt.shape({scrollbarSize:pt.oneOfType([pt.string,pt.number]),type:pt.oneOf(['auto','always','scroll','hover','never']),scrollHideDelay:pt.number,scrollbars:pt.oneOfType([pt.bool,pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["xy"])]),offsetScrollbars:pt.oneOfType([pt.bool,pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["present"])]),overscrollBehavior:pt.oneOfType([pt.oneOf(["auto"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["contain"]),pt.oneOf(["none"])]),hiddenFrom:pt.string,visibleFrom:pt.string,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["local"]),pt.oneOf(["scroll"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),className:pt.string,style:pt.oneOfType([pt.any]),lightHidden:pt.bool,darkHidden:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any}),
|
|
@@ -4401,7 +4773,7 @@ pk.Select.propTypes = {value:pt.string,
|
|
|
4401
4773
|
searchValue:pt.string,
|
|
4402
4774
|
allowDeselect:pt.bool,
|
|
4403
4775
|
clearable:pt.bool,
|
|
4404
|
-
clearButtonProps:pt.shape({size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node}),
|
|
4776
|
+
clearButtonProps:pt.shape({size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,ButtonProps:pt.object}),
|
|
4405
4777
|
hiddenInputProps:pt.object,
|
|
4406
4778
|
scrollAreaProps:pt.shape({scrollbarSize:pt.oneOfType([pt.string,pt.number]),type:pt.oneOf(['auto','always','scroll','hover','never']),scrollHideDelay:pt.number,scrollbars:pt.oneOfType([pt.bool,pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["xy"])]),offsetScrollbars:pt.oneOfType([pt.bool,pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["present"])]),overscrollBehavior:pt.oneOfType([pt.oneOf(["auto"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["contain"]),pt.oneOf(["none"])]),hiddenFrom:pt.string,visibleFrom:pt.string,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["local"]),pt.oneOf(["scroll"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),className:pt.string,style:pt.oneOfType([pt.any]),lightHidden:pt.bool,darkHidden:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any}),
|
|
4407
4779
|
autoSelectOnBlur:pt.bool,
|
|
@@ -4525,7 +4897,7 @@ pk.TagsInput.propTypes = {data:pt.oneOfType([pt.arrayOf(pt.oneOfType([pt.string]
|
|
|
4525
4897
|
allowDuplicates:pt.bool,
|
|
4526
4898
|
splitChars:pt.arrayOf(pt.string),
|
|
4527
4899
|
clearable:pt.bool,
|
|
4528
|
-
clearButtonProps:pt.shape({size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node}),
|
|
4900
|
+
clearButtonProps:pt.shape({size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,ButtonProps:pt.object}),
|
|
4529
4901
|
hiddenInputProps:pt.object,
|
|
4530
4902
|
hiddenInputValuesDivider:pt.string,
|
|
4531
4903
|
scrollAreaProps:pt.shape({scrollbarSize:pt.oneOfType([pt.string,pt.number]),type:pt.oneOf(['auto','always','scroll','hover','never']),scrollHideDelay:pt.number,scrollbars:pt.oneOfType([pt.bool,pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["xy"])]),offsetScrollbars:pt.oneOfType([pt.bool,pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["present"])]),overscrollBehavior:pt.oneOfType([pt.oneOf(["auto"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["contain"]),pt.oneOf(["none"])]),hiddenFrom:pt.string,visibleFrom:pt.string,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["local"]),pt.oneOf(["scroll"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),className:pt.string,style:pt.oneOfType([pt.any]),lightHidden:pt.bool,darkHidden:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any}),
|
|
@@ -6691,7 +7063,7 @@ pk.ManagedModal.propTypes = {id:pt.string,
|
|
|
6691
7063
|
withOverlay:pt.bool,
|
|
6692
7064
|
overlayProps:pt.shape({transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),children:pt.node,className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.string,visibleFrom:pt.string,lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),zIndex:pt.oneOfType([pt.string,pt.number]),attributes:pt.any,unstyled:pt.bool,center:pt.bool,fixed:pt.bool,backgroundOpacity:pt.number,color:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["aliceblue"]),pt.oneOf(["antiquewhite"]),pt.oneOf(["aqua"]),pt.oneOf(["aquamarine"]),pt.oneOf(["azure"]),pt.oneOf(["beige"]),pt.oneOf(["bisque"]),pt.oneOf(["black"]),pt.oneOf(["blanchedalmond"]),pt.oneOf(["blue"]),pt.oneOf(["blueviolet"]),pt.oneOf(["brown"]),pt.oneOf(["burlywood"]),pt.oneOf(["cadetblue"]),pt.oneOf(["chartreuse"]),pt.oneOf(["chocolate"]),pt.oneOf(["coral"]),pt.oneOf(["cornflowerblue"]),pt.oneOf(["cornsilk"]),pt.oneOf(["crimson"]),pt.oneOf(["cyan"]),pt.oneOf(["darkblue"]),pt.oneOf(["darkcyan"]),pt.oneOf(["darkgoldenrod"]),pt.oneOf(["darkgray"]),pt.oneOf(["darkgreen"]),pt.oneOf(["darkgrey"]),pt.oneOf(["darkkhaki"]),pt.oneOf(["darkmagenta"]),pt.oneOf(["darkolivegreen"]),pt.oneOf(["darkorange"]),pt.oneOf(["darkorchid"]),pt.oneOf(["darkred"]),pt.oneOf(["darksalmon"]),pt.oneOf(["darkseagreen"]),pt.oneOf(["darkslateblue"]),pt.oneOf(["darkslategray"]),pt.oneOf(["darkslategrey"]),pt.oneOf(["darkturquoise"]),pt.oneOf(["darkviolet"]),pt.oneOf(["deeppink"]),pt.oneOf(["deepskyblue"]),pt.oneOf(["dimgray"]),pt.oneOf(["dimgrey"]),pt.oneOf(["dodgerblue"]),pt.oneOf(["firebrick"]),pt.oneOf(["floralwhite"]),pt.oneOf(["forestgreen"]),pt.oneOf(["fuchsia"]),pt.oneOf(["gainsboro"]),pt.oneOf(["ghostwhite"]),pt.oneOf(["gold"]),pt.oneOf(["goldenrod"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["greenyellow"]),pt.oneOf(["grey"]),pt.oneOf(["honeydew"]),pt.oneOf(["hotpink"]),pt.oneOf(["indianred"]),pt.oneOf(["indigo"]),pt.oneOf(["ivory"]),pt.oneOf(["khaki"]),pt.oneOf(["lavender"]),pt.oneOf(["lavenderblush"]),pt.oneOf(["lawngreen"]),pt.oneOf(["lemonchiffon"]),pt.oneOf(["lightblue"]),pt.oneOf(["lightcoral"]),pt.oneOf(["lightcyan"]),pt.oneOf(["lightgoldenrodyellow"]),pt.oneOf(["lightgray"]),pt.oneOf(["lightgreen"]),pt.oneOf(["lightgrey"]),pt.oneOf(["lightpink"]),pt.oneOf(["lightsalmon"]),pt.oneOf(["lightseagreen"]),pt.oneOf(["lightskyblue"]),pt.oneOf(["lightslategray"]),pt.oneOf(["lightslategrey"]),pt.oneOf(["lightsteelblue"]),pt.oneOf(["lightyellow"]),pt.oneOf(["lime"]),pt.oneOf(["limegreen"]),pt.oneOf(["linen"]),pt.oneOf(["magenta"]),pt.oneOf(["maroon"]),pt.oneOf(["mediumaquamarine"]),pt.oneOf(["mediumblue"]),pt.oneOf(["mediumorchid"]),pt.oneOf(["mediumpurple"]),pt.oneOf(["mediumseagreen"]),pt.oneOf(["mediumslateblue"]),pt.oneOf(["mediumspringgreen"]),pt.oneOf(["mediumturquoise"]),pt.oneOf(["mediumvioletred"]),pt.oneOf(["midnightblue"]),pt.oneOf(["mintcream"]),pt.oneOf(["mistyrose"]),pt.oneOf(["moccasin"]),pt.oneOf(["navajowhite"]),pt.oneOf(["navy"]),pt.oneOf(["oldlace"]),pt.oneOf(["olive"]),pt.oneOf(["olivedrab"]),pt.oneOf(["orange"]),pt.oneOf(["orangered"]),pt.oneOf(["orchid"]),pt.oneOf(["palegoldenrod"]),pt.oneOf(["palegreen"]),pt.oneOf(["paleturquoise"]),pt.oneOf(["palevioletred"]),pt.oneOf(["papayawhip"]),pt.oneOf(["peachpuff"]),pt.oneOf(["peru"]),pt.oneOf(["pink"]),pt.oneOf(["plum"]),pt.oneOf(["powderblue"]),pt.oneOf(["purple"]),pt.oneOf(["rebeccapurple"]),pt.oneOf(["red"]),pt.oneOf(["rosybrown"]),pt.oneOf(["royalblue"]),pt.oneOf(["saddlebrown"]),pt.oneOf(["salmon"]),pt.oneOf(["sandybrown"]),pt.oneOf(["seagreen"]),pt.oneOf(["seashell"]),pt.oneOf(["sienna"]),pt.oneOf(["silver"]),pt.oneOf(["skyblue"]),pt.oneOf(["slateblue"]),pt.oneOf(["slategray"]),pt.oneOf(["slategrey"]),pt.oneOf(["snow"]),pt.oneOf(["springgreen"]),pt.oneOf(["steelblue"]),pt.oneOf(["tan"]),pt.oneOf(["teal"]),pt.oneOf(["thistle"]),pt.oneOf(["tomato"]),pt.oneOf(["transparent"]),pt.oneOf(["turquoise"]),pt.oneOf(["violet"]),pt.oneOf(["wheat"]),pt.oneOf(["white"]),pt.oneOf(["whitesmoke"]),pt.oneOf(["yellow"]),pt.oneOf(["yellowgreen"]),pt.oneOf(["ActiveBorder"]),pt.oneOf(["ActiveCaption"]),pt.oneOf(["AppWorkspace"]),pt.oneOf(["Background"]),pt.oneOf(["ButtonFace"]),pt.oneOf(["ButtonHighlight"]),pt.oneOf(["ButtonShadow"]),pt.oneOf(["ButtonText"]),pt.oneOf(["CaptionText"]),pt.oneOf(["GrayText"]),pt.oneOf(["Highlight"]),pt.oneOf(["HighlightText"]),pt.oneOf(["InactiveBorder"]),pt.oneOf(["InactiveCaption"]),pt.oneOf(["InactiveCaptionText"]),pt.oneOf(["InfoBackground"]),pt.oneOf(["InfoText"]),pt.oneOf(["Menu"]),pt.oneOf(["MenuText"]),pt.oneOf(["Scrollbar"]),pt.oneOf(["ThreeDDarkShadow"]),pt.oneOf(["ThreeDFace"]),pt.oneOf(["ThreeDHighlight"]),pt.oneOf(["ThreeDLightShadow"]),pt.oneOf(["ThreeDShadow"]),pt.oneOf(["Window"]),pt.oneOf(["WindowFrame"]),pt.oneOf(["WindowText"]),pt.oneOf(["currentcolor"])]),blur:pt.oneOfType([pt.string,pt.number]),gradient:pt.string}),
|
|
6693
7065
|
withCloseButton:pt.bool,
|
|
6694
|
-
closeButtonProps:pt.shape({size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,hiddenFrom:pt.string,visibleFrom:pt.string,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),className:pt.string,style:pt.oneOfType([pt.any]),lightHidden:pt.bool,darkHidden:pt.bool}),
|
|
7066
|
+
closeButtonProps:pt.shape({size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,ButtonProps:pt.object,hiddenFrom:pt.string,visibleFrom:pt.string,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),className:pt.string,style:pt.oneOfType([pt.any]),lightHidden:pt.bool,darkHidden:pt.bool}),
|
|
6695
7067
|
yOffset:pt.oneOfType([pt.string,pt.number]),
|
|
6696
7068
|
xOffset:pt.oneOfType([pt.string,pt.number]),
|
|
6697
7069
|
radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -6720,7 +7092,7 @@ pk.Modal.propTypes = {title:pt.node,
|
|
|
6720
7092
|
overlayProps:pt.shape({transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),children:pt.node,className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.string,visibleFrom:pt.string,lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),zIndex:pt.oneOfType([pt.string,pt.number]),attributes:pt.any,unstyled:pt.bool,center:pt.bool,fixed:pt.bool,backgroundOpacity:pt.number,color:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["aliceblue"]),pt.oneOf(["antiquewhite"]),pt.oneOf(["aqua"]),pt.oneOf(["aquamarine"]),pt.oneOf(["azure"]),pt.oneOf(["beige"]),pt.oneOf(["bisque"]),pt.oneOf(["black"]),pt.oneOf(["blanchedalmond"]),pt.oneOf(["blue"]),pt.oneOf(["blueviolet"]),pt.oneOf(["brown"]),pt.oneOf(["burlywood"]),pt.oneOf(["cadetblue"]),pt.oneOf(["chartreuse"]),pt.oneOf(["chocolate"]),pt.oneOf(["coral"]),pt.oneOf(["cornflowerblue"]),pt.oneOf(["cornsilk"]),pt.oneOf(["crimson"]),pt.oneOf(["cyan"]),pt.oneOf(["darkblue"]),pt.oneOf(["darkcyan"]),pt.oneOf(["darkgoldenrod"]),pt.oneOf(["darkgray"]),pt.oneOf(["darkgreen"]),pt.oneOf(["darkgrey"]),pt.oneOf(["darkkhaki"]),pt.oneOf(["darkmagenta"]),pt.oneOf(["darkolivegreen"]),pt.oneOf(["darkorange"]),pt.oneOf(["darkorchid"]),pt.oneOf(["darkred"]),pt.oneOf(["darksalmon"]),pt.oneOf(["darkseagreen"]),pt.oneOf(["darkslateblue"]),pt.oneOf(["darkslategray"]),pt.oneOf(["darkslategrey"]),pt.oneOf(["darkturquoise"]),pt.oneOf(["darkviolet"]),pt.oneOf(["deeppink"]),pt.oneOf(["deepskyblue"]),pt.oneOf(["dimgray"]),pt.oneOf(["dimgrey"]),pt.oneOf(["dodgerblue"]),pt.oneOf(["firebrick"]),pt.oneOf(["floralwhite"]),pt.oneOf(["forestgreen"]),pt.oneOf(["fuchsia"]),pt.oneOf(["gainsboro"]),pt.oneOf(["ghostwhite"]),pt.oneOf(["gold"]),pt.oneOf(["goldenrod"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["greenyellow"]),pt.oneOf(["grey"]),pt.oneOf(["honeydew"]),pt.oneOf(["hotpink"]),pt.oneOf(["indianred"]),pt.oneOf(["indigo"]),pt.oneOf(["ivory"]),pt.oneOf(["khaki"]),pt.oneOf(["lavender"]),pt.oneOf(["lavenderblush"]),pt.oneOf(["lawngreen"]),pt.oneOf(["lemonchiffon"]),pt.oneOf(["lightblue"]),pt.oneOf(["lightcoral"]),pt.oneOf(["lightcyan"]),pt.oneOf(["lightgoldenrodyellow"]),pt.oneOf(["lightgray"]),pt.oneOf(["lightgreen"]),pt.oneOf(["lightgrey"]),pt.oneOf(["lightpink"]),pt.oneOf(["lightsalmon"]),pt.oneOf(["lightseagreen"]),pt.oneOf(["lightskyblue"]),pt.oneOf(["lightslategray"]),pt.oneOf(["lightslategrey"]),pt.oneOf(["lightsteelblue"]),pt.oneOf(["lightyellow"]),pt.oneOf(["lime"]),pt.oneOf(["limegreen"]),pt.oneOf(["linen"]),pt.oneOf(["magenta"]),pt.oneOf(["maroon"]),pt.oneOf(["mediumaquamarine"]),pt.oneOf(["mediumblue"]),pt.oneOf(["mediumorchid"]),pt.oneOf(["mediumpurple"]),pt.oneOf(["mediumseagreen"]),pt.oneOf(["mediumslateblue"]),pt.oneOf(["mediumspringgreen"]),pt.oneOf(["mediumturquoise"]),pt.oneOf(["mediumvioletred"]),pt.oneOf(["midnightblue"]),pt.oneOf(["mintcream"]),pt.oneOf(["mistyrose"]),pt.oneOf(["moccasin"]),pt.oneOf(["navajowhite"]),pt.oneOf(["navy"]),pt.oneOf(["oldlace"]),pt.oneOf(["olive"]),pt.oneOf(["olivedrab"]),pt.oneOf(["orange"]),pt.oneOf(["orangered"]),pt.oneOf(["orchid"]),pt.oneOf(["palegoldenrod"]),pt.oneOf(["palegreen"]),pt.oneOf(["paleturquoise"]),pt.oneOf(["palevioletred"]),pt.oneOf(["papayawhip"]),pt.oneOf(["peachpuff"]),pt.oneOf(["peru"]),pt.oneOf(["pink"]),pt.oneOf(["plum"]),pt.oneOf(["powderblue"]),pt.oneOf(["purple"]),pt.oneOf(["rebeccapurple"]),pt.oneOf(["red"]),pt.oneOf(["rosybrown"]),pt.oneOf(["royalblue"]),pt.oneOf(["saddlebrown"]),pt.oneOf(["salmon"]),pt.oneOf(["sandybrown"]),pt.oneOf(["seagreen"]),pt.oneOf(["seashell"]),pt.oneOf(["sienna"]),pt.oneOf(["silver"]),pt.oneOf(["skyblue"]),pt.oneOf(["slateblue"]),pt.oneOf(["slategray"]),pt.oneOf(["slategrey"]),pt.oneOf(["snow"]),pt.oneOf(["springgreen"]),pt.oneOf(["steelblue"]),pt.oneOf(["tan"]),pt.oneOf(["teal"]),pt.oneOf(["thistle"]),pt.oneOf(["tomato"]),pt.oneOf(["transparent"]),pt.oneOf(["turquoise"]),pt.oneOf(["violet"]),pt.oneOf(["wheat"]),pt.oneOf(["white"]),pt.oneOf(["whitesmoke"]),pt.oneOf(["yellow"]),pt.oneOf(["yellowgreen"]),pt.oneOf(["ActiveBorder"]),pt.oneOf(["ActiveCaption"]),pt.oneOf(["AppWorkspace"]),pt.oneOf(["Background"]),pt.oneOf(["ButtonFace"]),pt.oneOf(["ButtonHighlight"]),pt.oneOf(["ButtonShadow"]),pt.oneOf(["ButtonText"]),pt.oneOf(["CaptionText"]),pt.oneOf(["GrayText"]),pt.oneOf(["Highlight"]),pt.oneOf(["HighlightText"]),pt.oneOf(["InactiveBorder"]),pt.oneOf(["InactiveCaption"]),pt.oneOf(["InactiveCaptionText"]),pt.oneOf(["InfoBackground"]),pt.oneOf(["InfoText"]),pt.oneOf(["Menu"]),pt.oneOf(["MenuText"]),pt.oneOf(["Scrollbar"]),pt.oneOf(["ThreeDDarkShadow"]),pt.oneOf(["ThreeDFace"]),pt.oneOf(["ThreeDHighlight"]),pt.oneOf(["ThreeDLightShadow"]),pt.oneOf(["ThreeDShadow"]),pt.oneOf(["Window"]),pt.oneOf(["WindowFrame"]),pt.oneOf(["WindowText"]),pt.oneOf(["currentcolor"])]),blur:pt.oneOfType([pt.string,pt.number]),gradient:pt.string}),
|
|
6721
7093
|
children:pt.node,
|
|
6722
7094
|
withCloseButton:pt.bool,
|
|
6723
|
-
closeButtonProps:pt.shape({size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,hiddenFrom:pt.string,visibleFrom:pt.string,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),className:pt.string,style:pt.oneOfType([pt.any]),lightHidden:pt.bool,darkHidden:pt.bool}),
|
|
7095
|
+
closeButtonProps:pt.shape({size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,ButtonProps:pt.object,hiddenFrom:pt.string,visibleFrom:pt.string,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),className:pt.string,style:pt.oneOfType([pt.any]),lightHidden:pt.bool,darkHidden:pt.bool}),
|
|
6724
7096
|
yOffset:pt.oneOfType([pt.string,pt.number]),
|
|
6725
7097
|
xOffset:pt.oneOfType([pt.string,pt.number]),
|
|
6726
7098
|
radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -6820,6 +7192,95 @@ pk.ModalStack.propTypes = {children:pt.arrayOf(pt.shape({type:pt.oneOfType([pt.s
|
|
|
6820
7192
|
aria-*:pt.string,
|
|
6821
7193
|
tabIndex:pt.number,
|
|
6822
7194
|
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
7195
|
+
pk.NavLink.propTypes = {label:pt.node,
|
|
7196
|
+
description:pt.node,
|
|
7197
|
+
leftSection:pt.node,
|
|
7198
|
+
rightSection:pt.node,
|
|
7199
|
+
active:pt.oneOfType([pt.bool,pt.oneOf(["children"]),pt.oneOf(["exact"]),pt.oneOf(["partial"]),pt.oneOf(["exact-with-search"])]),
|
|
7200
|
+
color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),
|
|
7201
|
+
href:pt.string,
|
|
7202
|
+
target:pt.oneOf(['_blank','_self']),
|
|
7203
|
+
noWrap:pt.bool,
|
|
7204
|
+
children:pt.node,
|
|
7205
|
+
opened:pt.bool,
|
|
7206
|
+
disableRightSectionRotation:pt.bool,
|
|
7207
|
+
childrenOffset:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7208
|
+
disabled:pt.bool,
|
|
7209
|
+
autoContrast:pt.bool,
|
|
7210
|
+
n_clicks:pt.number,
|
|
7211
|
+
refresh:pt.bool,
|
|
7212
|
+
hiddenFrom:pt.string,
|
|
7213
|
+
visibleFrom:pt.string,
|
|
7214
|
+
mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),
|
|
7215
|
+
m:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7216
|
+
my:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7217
|
+
mx:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7218
|
+
mt:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7219
|
+
mb:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7220
|
+
ms:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7221
|
+
me:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7222
|
+
ml:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7223
|
+
mr:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7224
|
+
p:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7225
|
+
py:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7226
|
+
px:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7227
|
+
pt:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7228
|
+
pb:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7229
|
+
ps:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7230
|
+
pe:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7231
|
+
pl:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7232
|
+
pr:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7233
|
+
bd:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7234
|
+
bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7235
|
+
bg:pt.oneOfType([pt.string,pt.object]),
|
|
7236
|
+
c:pt.oneOfType([pt.string,pt.object]),
|
|
7237
|
+
opacity:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7238
|
+
ff:pt.oneOfType([pt.string,pt.object]),
|
|
7239
|
+
fz:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7240
|
+
fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),
|
|
7241
|
+
lts:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7242
|
+
ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),
|
|
7243
|
+
lh:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7244
|
+
fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),
|
|
7245
|
+
tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),
|
|
7246
|
+
td:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7247
|
+
w:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7248
|
+
miw:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7249
|
+
maw:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7250
|
+
h:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7251
|
+
mih:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7252
|
+
mah:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7253
|
+
bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7254
|
+
bgp:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7255
|
+
bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),
|
|
7256
|
+
bga:pt.oneOfType([pt.object,pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),
|
|
7257
|
+
pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),
|
|
7258
|
+
top:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7259
|
+
left:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7260
|
+
bottom:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7261
|
+
right:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7262
|
+
inset:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7263
|
+
display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),
|
|
7264
|
+
flex:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
7265
|
+
className:pt.string,
|
|
7266
|
+
style:pt.any,
|
|
7267
|
+
lightHidden:pt.bool,
|
|
7268
|
+
darkHidden:pt.bool,
|
|
7269
|
+
classNames:pt.object,
|
|
7270
|
+
styles:pt.any,
|
|
7271
|
+
unstyled:pt.bool,
|
|
7272
|
+
variant:pt.string,
|
|
7273
|
+
attributes:pt.any,
|
|
7274
|
+
id:pt.string,
|
|
7275
|
+
setProps:pt.any,
|
|
7276
|
+
data-*:pt.string,
|
|
7277
|
+
aria-*:pt.string,
|
|
7278
|
+
tabIndex:pt.number,
|
|
7279
|
+
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string}),
|
|
7280
|
+
persistence:pt.oneOfType([pt.string,pt.number,pt.bool]),
|
|
7281
|
+
persisted_props:pt.arrayOf(pt.string),
|
|
7282
|
+
persistence_type:pt.oneOf(['local','session','memory'])};
|
|
7283
|
+
pk.NavLinkContext.propTypes = {};
|
|
6823
7284
|
pk.Popover.propTypes = {children:pt.node,
|
|
6824
7285
|
opened:pt.bool,
|
|
6825
7286
|
closeOnClickOutside:pt.bool,
|
|
@@ -8999,6 +9460,7 @@ pk.TabsTab.propTypes = {value:pt.string,
|
|
|
8999
9460
|
flex:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
9000
9461
|
size:pt.oneOfType([pt.string,pt.number]),
|
|
9001
9462
|
disabled:pt.bool,
|
|
9463
|
+
buttonProps:pt.object,
|
|
9002
9464
|
id:pt.string,
|
|
9003
9465
|
setProps:pt.any,
|
|
9004
9466
|
data-*:pt.string,
|
|
@@ -11104,94 +11566,6 @@ pk.Mark.propTypes = {children:pt.string,
|
|
|
11104
11566
|
unstyled:pt.bool,
|
|
11105
11567
|
variant:pt.string,
|
|
11106
11568
|
attributes:pt.any};
|
|
11107
|
-
pk.NavLink.propTypes = {label:pt.node,
|
|
11108
|
-
description:pt.node,
|
|
11109
|
-
leftSection:pt.node,
|
|
11110
|
-
rightSection:pt.node,
|
|
11111
|
-
active:pt.oneOfType([pt.bool,pt.oneOf(["exact"]),pt.oneOf(["partial"])]),
|
|
11112
|
-
color:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),
|
|
11113
|
-
href:pt.string,
|
|
11114
|
-
target:pt.oneOf(['_blank','_self']),
|
|
11115
|
-
noWrap:pt.bool,
|
|
11116
|
-
children:pt.node,
|
|
11117
|
-
opened:pt.bool,
|
|
11118
|
-
disableRightSectionRotation:pt.bool,
|
|
11119
|
-
childrenOffset:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11120
|
-
disabled:pt.bool,
|
|
11121
|
-
autoContrast:pt.bool,
|
|
11122
|
-
n_clicks:pt.number,
|
|
11123
|
-
refresh:pt.bool,
|
|
11124
|
-
hiddenFrom:pt.string,
|
|
11125
|
-
visibleFrom:pt.string,
|
|
11126
|
-
mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),
|
|
11127
|
-
m:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11128
|
-
my:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11129
|
-
mx:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11130
|
-
mt:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11131
|
-
mb:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11132
|
-
ms:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11133
|
-
me:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11134
|
-
ml:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11135
|
-
mr:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11136
|
-
p:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11137
|
-
py:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11138
|
-
px:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11139
|
-
pt:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11140
|
-
pb:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11141
|
-
ps:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11142
|
-
pe:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11143
|
-
pl:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11144
|
-
pr:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11145
|
-
bd:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11146
|
-
bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11147
|
-
bg:pt.oneOfType([pt.string,pt.object]),
|
|
11148
|
-
c:pt.oneOfType([pt.string,pt.object]),
|
|
11149
|
-
opacity:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11150
|
-
ff:pt.oneOfType([pt.string,pt.object]),
|
|
11151
|
-
fz:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11152
|
-
fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),
|
|
11153
|
-
lts:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11154
|
-
ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),
|
|
11155
|
-
lh:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11156
|
-
fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),
|
|
11157
|
-
tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),
|
|
11158
|
-
td:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11159
|
-
w:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11160
|
-
miw:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11161
|
-
maw:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11162
|
-
h:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11163
|
-
mih:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11164
|
-
mah:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11165
|
-
bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11166
|
-
bgp:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11167
|
-
bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),
|
|
11168
|
-
bga:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"]),pt.oneOf(["scroll"])]),
|
|
11169
|
-
pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),
|
|
11170
|
-
top:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11171
|
-
left:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11172
|
-
bottom:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11173
|
-
right:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11174
|
-
inset:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11175
|
-
display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),
|
|
11176
|
-
flex:pt.oneOfType([pt.string,pt.number,pt.object]),
|
|
11177
|
-
className:pt.string,
|
|
11178
|
-
style:pt.any,
|
|
11179
|
-
lightHidden:pt.bool,
|
|
11180
|
-
darkHidden:pt.bool,
|
|
11181
|
-
classNames:pt.object,
|
|
11182
|
-
styles:pt.any,
|
|
11183
|
-
unstyled:pt.bool,
|
|
11184
|
-
variant:pt.string,
|
|
11185
|
-
attributes:pt.any,
|
|
11186
|
-
id:pt.string,
|
|
11187
|
-
setProps:pt.any,
|
|
11188
|
-
data-*:pt.string,
|
|
11189
|
-
aria-*:pt.string,
|
|
11190
|
-
tabIndex:pt.number,
|
|
11191
|
-
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string}),
|
|
11192
|
-
persistence:pt.oneOfType([pt.string,pt.number,pt.bool]),
|
|
11193
|
-
persisted_props:pt.arrayOf(pt.string),
|
|
11194
|
-
persistence_type:pt.oneOf(['local','session','memory'])};
|
|
11195
11569
|
pk.NumberFormatter.propTypes = {value:pt.oneOfType([pt.string,pt.number]),
|
|
11196
11570
|
allowNegative:pt.bool,
|
|
11197
11571
|
decimalScale:pt.number,
|
|
@@ -12661,7 +13035,7 @@ pk.VisuallyHidden.propTypes = {children:pt.node,
|
|
|
12661
13035
|
pk.DateInput.propTypes = {value:pt.string,
|
|
12662
13036
|
popoverProps:pt.shape({radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles:pt.bool,hideDetached:pt.bool,position:pt.oneOf(['top','left','bottom','right','top-end','top-start','left-end','left-start','bottom-end','bottom-start','right-end','right-start']),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.bool,pt.any]),flip:pt.oneOfType([pt.bool,pt.shape({mainAxis:pt.bool,crossAxis:pt.oneOfType([pt.bool,pt.oneOf(["alignment"])]),rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"])]),elementContext:pt.oneOf(['reference','floating']),altBoundary:pt.bool,padding:pt.oneOfType([pt.number]),fallbackPlacements:pt.arrayOf(pt.oneOf(['top','left','bottom','right','top-end','top-start','left-end','left-start','bottom-end','bottom-start','right-end','right-start'])),fallbackStrategy:pt.oneOf(['bestFit','initialPlacement']),fallbackAxisSideDirection:pt.oneOf(['end','start','none']),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.oneOfType([pt.bool]),size:pt.oneOfType([pt.bool,pt.any])}),withArrow:pt.bool,arrowSize:pt.number,arrowOffset:pt.number,arrowRadius:pt.number,arrowPosition:pt.oneOf(['center','side']),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),returnFocus:pt.bool,floatingStrategy:pt.oneOf(['absolute','fixed']),overlayProps:pt.object,withOverlay:pt.bool}),
|
|
12663
13037
|
clearable:pt.bool,
|
|
12664
|
-
clearButtonProps:pt.shape({size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node}),
|
|
13038
|
+
clearButtonProps:pt.shape({size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,ButtonProps:pt.object}),
|
|
12665
13039
|
valueFormat:pt.string,
|
|
12666
13040
|
fixOnBlur:pt.bool,
|
|
12667
13041
|
allowDeselect:pt.bool,
|
|
@@ -12983,9 +13357,9 @@ pk.DatePickerInput.propTypes = {valueFormat:pt.string,
|
|
|
12983
13357
|
closeOnChange:pt.bool,
|
|
12984
13358
|
dropdownType:pt.oneOf(['popover','modal']),
|
|
12985
13359
|
popoverProps:pt.shape({radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles:pt.bool,hideDetached:pt.bool,position:pt.oneOf(['top','left','bottom','right','top-end','top-start','left-end','left-start','bottom-end','bottom-start','right-end','right-start']),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.bool,pt.any]),flip:pt.oneOfType([pt.bool,pt.shape({mainAxis:pt.bool,crossAxis:pt.oneOfType([pt.bool,pt.oneOf(["alignment"])]),rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"]),pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number})]),elementContext:pt.oneOf(['reference','floating']),altBoundary:pt.bool,padding:pt.oneOfType([pt.number,pt.shape({top:pt.number,left:pt.number,bottom:pt.number,right:pt.number})]),fallbackPlacements:pt.arrayOf(pt.oneOf(['top','left','bottom','right','top-end','top-start','left-end','left-start','bottom-end','bottom-start','right-end','right-start'])),fallbackStrategy:pt.oneOf(['bestFit','initialPlacement']),fallbackAxisSideDirection:pt.oneOf(['end','start','none']),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.oneOfType([pt.bool]),size:pt.oneOfType([pt.bool,pt.any])}),withArrow:pt.bool,arrowSize:pt.number,arrowOffset:pt.number,arrowRadius:pt.number,arrowPosition:pt.oneOf(['center','side']),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),returnFocus:pt.bool,floatingStrategy:pt.oneOf(['absolute','fixed']),overlayProps:pt.object,withOverlay:pt.bool}),
|
|
12986
|
-
modalProps:pt.shape({className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.string,visibleFrom:pt.string,lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),opened:pt.bool,closeOnClickOutside:pt.bool,trapFocus:pt.bool,closeOnEscape:pt.bool,keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),returnFocus:pt.bool,overlayProps:pt.shape({transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.string,visibleFrom:pt.string,lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),unstyled:pt.bool,attributes:pt.any,children:pt.node,zIndex:pt.oneOfType([pt.string,pt.number]),center:pt.bool,fixed:pt.bool,backgroundOpacity:pt.number,color:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["aliceblue"]),pt.oneOf(["antiquewhite"]),pt.oneOf(["aqua"]),pt.oneOf(["aquamarine"]),pt.oneOf(["azure"]),pt.oneOf(["beige"]),pt.oneOf(["bisque"]),pt.oneOf(["black"]),pt.oneOf(["blanchedalmond"]),pt.oneOf(["blue"]),pt.oneOf(["blueviolet"]),pt.oneOf(["brown"]),pt.oneOf(["burlywood"]),pt.oneOf(["cadetblue"]),pt.oneOf(["chartreuse"]),pt.oneOf(["chocolate"]),pt.oneOf(["coral"]),pt.oneOf(["cornflowerblue"]),pt.oneOf(["cornsilk"]),pt.oneOf(["crimson"]),pt.oneOf(["cyan"]),pt.oneOf(["darkblue"]),pt.oneOf(["darkcyan"]),pt.oneOf(["darkgoldenrod"]),pt.oneOf(["darkgray"]),pt.oneOf(["darkgreen"]),pt.oneOf(["darkgrey"]),pt.oneOf(["darkkhaki"]),pt.oneOf(["darkmagenta"]),pt.oneOf(["darkolivegreen"]),pt.oneOf(["darkorange"]),pt.oneOf(["darkorchid"]),pt.oneOf(["darkred"]),pt.oneOf(["darksalmon"]),pt.oneOf(["darkseagreen"]),pt.oneOf(["darkslateblue"]),pt.oneOf(["darkslategray"]),pt.oneOf(["darkslategrey"]),pt.oneOf(["darkturquoise"]),pt.oneOf(["darkviolet"]),pt.oneOf(["deeppink"]),pt.oneOf(["deepskyblue"]),pt.oneOf(["dimgray"]),pt.oneOf(["dimgrey"]),pt.oneOf(["dodgerblue"]),pt.oneOf(["firebrick"]),pt.oneOf(["floralwhite"]),pt.oneOf(["forestgreen"]),pt.oneOf(["fuchsia"]),pt.oneOf(["gainsboro"]),pt.oneOf(["ghostwhite"]),pt.oneOf(["gold"]),pt.oneOf(["goldenrod"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["greenyellow"]),pt.oneOf(["grey"]),pt.oneOf(["honeydew"]),pt.oneOf(["hotpink"]),pt.oneOf(["indianred"]),pt.oneOf(["indigo"]),pt.oneOf(["ivory"]),pt.oneOf(["khaki"]),pt.oneOf(["lavender"]),pt.oneOf(["lavenderblush"]),pt.oneOf(["lawngreen"]),pt.oneOf(["lemonchiffon"]),pt.oneOf(["lightblue"]),pt.oneOf(["lightcoral"]),pt.oneOf(["lightcyan"]),pt.oneOf(["lightgoldenrodyellow"]),pt.oneOf(["lightgray"]),pt.oneOf(["lightgreen"]),pt.oneOf(["lightgrey"]),pt.oneOf(["lightpink"]),pt.oneOf(["lightsalmon"]),pt.oneOf(["lightseagreen"]),pt.oneOf(["lightskyblue"]),pt.oneOf(["lightslategray"]),pt.oneOf(["lightslategrey"]),pt.oneOf(["lightsteelblue"]),pt.oneOf(["lightyellow"]),pt.oneOf(["lime"]),pt.oneOf(["limegreen"]),pt.oneOf(["linen"]),pt.oneOf(["magenta"]),pt.oneOf(["maroon"]),pt.oneOf(["mediumaquamarine"]),pt.oneOf(["mediumblue"]),pt.oneOf(["mediumorchid"]),pt.oneOf(["mediumpurple"]),pt.oneOf(["mediumseagreen"]),pt.oneOf(["mediumslateblue"]),pt.oneOf(["mediumspringgreen"]),pt.oneOf(["mediumturquoise"]),pt.oneOf(["mediumvioletred"]),pt.oneOf(["midnightblue"]),pt.oneOf(["mintcream"]),pt.oneOf(["mistyrose"]),pt.oneOf(["moccasin"]),pt.oneOf(["navajowhite"]),pt.oneOf(["navy"]),pt.oneOf(["oldlace"]),pt.oneOf(["olive"]),pt.oneOf(["olivedrab"]),pt.oneOf(["orange"]),pt.oneOf(["orangered"]),pt.oneOf(["orchid"]),pt.oneOf(["palegoldenrod"]),pt.oneOf(["palegreen"]),pt.oneOf(["paleturquoise"]),pt.oneOf(["palevioletred"]),pt.oneOf(["papayawhip"]),pt.oneOf(["peachpuff"]),pt.oneOf(["peru"]),pt.oneOf(["pink"]),pt.oneOf(["plum"]),pt.oneOf(["powderblue"]),pt.oneOf(["purple"]),pt.oneOf(["rebeccapurple"]),pt.oneOf(["red"]),pt.oneOf(["rosybrown"]),pt.oneOf(["royalblue"]),pt.oneOf(["saddlebrown"]),pt.oneOf(["salmon"]),pt.oneOf(["sandybrown"]),pt.oneOf(["seagreen"]),pt.oneOf(["seashell"]),pt.oneOf(["sienna"]),pt.oneOf(["silver"]),pt.oneOf(["skyblue"]),pt.oneOf(["slateblue"]),pt.oneOf(["slategray"]),pt.oneOf(["slategrey"]),pt.oneOf(["snow"]),pt.oneOf(["springgreen"]),pt.oneOf(["steelblue"]),pt.oneOf(["tan"]),pt.oneOf(["teal"]),pt.oneOf(["thistle"]),pt.oneOf(["tomato"]),pt.oneOf(["transparent"]),pt.oneOf(["turquoise"]),pt.oneOf(["violet"]),pt.oneOf(["wheat"]),pt.oneOf(["white"]),pt.oneOf(["whitesmoke"]),pt.oneOf(["yellow"]),pt.oneOf(["yellowgreen"]),pt.oneOf(["ActiveBorder"]),pt.oneOf(["ActiveCaption"]),pt.oneOf(["AppWorkspace"]),pt.oneOf(["Background"]),pt.oneOf(["ButtonFace"]),pt.oneOf(["ButtonHighlight"]),pt.oneOf(["ButtonShadow"]),pt.oneOf(["ButtonText"]),pt.oneOf(["CaptionText"]),pt.oneOf(["GrayText"]),pt.oneOf(["Highlight"]),pt.oneOf(["HighlightText"]),pt.oneOf(["InactiveBorder"]),pt.oneOf(["InactiveCaption"]),pt.oneOf(["InactiveCaptionText"]),pt.oneOf(["InfoBackground"]),pt.oneOf(["InfoText"]),pt.oneOf(["Menu"]),pt.oneOf(["MenuText"]),pt.oneOf(["Scrollbar"]),pt.oneOf(["ThreeDDarkShadow"]),pt.oneOf(["ThreeDFace"]),pt.oneOf(["ThreeDHighlight"]),pt.oneOf(["ThreeDLightShadow"]),pt.oneOf(["ThreeDShadow"]),pt.oneOf(["Window"]),pt.oneOf(["WindowFrame"]),pt.oneOf(["WindowText"]),pt.oneOf(["currentcolor"])]),blur:pt.oneOfType([pt.string,pt.number]),gradient:pt.string}),withOverlay:pt.bool,padding:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),title:pt.node,withCloseButton:pt.bool,closeButtonProps:pt.shape({size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,hiddenFrom:pt.string,visibleFrom:pt.string,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),className:pt.string,style:pt.oneOfType([pt.any]),lightHidden:pt.bool,darkHidden:pt.bool}),yOffset:pt.oneOfType([pt.string,pt.number]),xOffset:pt.oneOfType([pt.string,pt.number]),centered:pt.bool,fullScreen:pt.bool,lockScroll:pt.bool,removeScrollProps:pt.object}),
|
|
13360
|
+
modalProps:pt.shape({className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.string,visibleFrom:pt.string,lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),opened:pt.bool,closeOnClickOutside:pt.bool,trapFocus:pt.bool,closeOnEscape:pt.bool,keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),returnFocus:pt.bool,overlayProps:pt.shape({transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.string,visibleFrom:pt.string,lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),unstyled:pt.bool,attributes:pt.any,children:pt.node,zIndex:pt.oneOfType([pt.string,pt.number]),center:pt.bool,fixed:pt.bool,backgroundOpacity:pt.number,color:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["aliceblue"]),pt.oneOf(["antiquewhite"]),pt.oneOf(["aqua"]),pt.oneOf(["aquamarine"]),pt.oneOf(["azure"]),pt.oneOf(["beige"]),pt.oneOf(["bisque"]),pt.oneOf(["black"]),pt.oneOf(["blanchedalmond"]),pt.oneOf(["blue"]),pt.oneOf(["blueviolet"]),pt.oneOf(["brown"]),pt.oneOf(["burlywood"]),pt.oneOf(["cadetblue"]),pt.oneOf(["chartreuse"]),pt.oneOf(["chocolate"]),pt.oneOf(["coral"]),pt.oneOf(["cornflowerblue"]),pt.oneOf(["cornsilk"]),pt.oneOf(["crimson"]),pt.oneOf(["cyan"]),pt.oneOf(["darkblue"]),pt.oneOf(["darkcyan"]),pt.oneOf(["darkgoldenrod"]),pt.oneOf(["darkgray"]),pt.oneOf(["darkgreen"]),pt.oneOf(["darkgrey"]),pt.oneOf(["darkkhaki"]),pt.oneOf(["darkmagenta"]),pt.oneOf(["darkolivegreen"]),pt.oneOf(["darkorange"]),pt.oneOf(["darkorchid"]),pt.oneOf(["darkred"]),pt.oneOf(["darksalmon"]),pt.oneOf(["darkseagreen"]),pt.oneOf(["darkslateblue"]),pt.oneOf(["darkslategray"]),pt.oneOf(["darkslategrey"]),pt.oneOf(["darkturquoise"]),pt.oneOf(["darkviolet"]),pt.oneOf(["deeppink"]),pt.oneOf(["deepskyblue"]),pt.oneOf(["dimgray"]),pt.oneOf(["dimgrey"]),pt.oneOf(["dodgerblue"]),pt.oneOf(["firebrick"]),pt.oneOf(["floralwhite"]),pt.oneOf(["forestgreen"]),pt.oneOf(["fuchsia"]),pt.oneOf(["gainsboro"]),pt.oneOf(["ghostwhite"]),pt.oneOf(["gold"]),pt.oneOf(["goldenrod"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["greenyellow"]),pt.oneOf(["grey"]),pt.oneOf(["honeydew"]),pt.oneOf(["hotpink"]),pt.oneOf(["indianred"]),pt.oneOf(["indigo"]),pt.oneOf(["ivory"]),pt.oneOf(["khaki"]),pt.oneOf(["lavender"]),pt.oneOf(["lavenderblush"]),pt.oneOf(["lawngreen"]),pt.oneOf(["lemonchiffon"]),pt.oneOf(["lightblue"]),pt.oneOf(["lightcoral"]),pt.oneOf(["lightcyan"]),pt.oneOf(["lightgoldenrodyellow"]),pt.oneOf(["lightgray"]),pt.oneOf(["lightgreen"]),pt.oneOf(["lightgrey"]),pt.oneOf(["lightpink"]),pt.oneOf(["lightsalmon"]),pt.oneOf(["lightseagreen"]),pt.oneOf(["lightskyblue"]),pt.oneOf(["lightslategray"]),pt.oneOf(["lightslategrey"]),pt.oneOf(["lightsteelblue"]),pt.oneOf(["lightyellow"]),pt.oneOf(["lime"]),pt.oneOf(["limegreen"]),pt.oneOf(["linen"]),pt.oneOf(["magenta"]),pt.oneOf(["maroon"]),pt.oneOf(["mediumaquamarine"]),pt.oneOf(["mediumblue"]),pt.oneOf(["mediumorchid"]),pt.oneOf(["mediumpurple"]),pt.oneOf(["mediumseagreen"]),pt.oneOf(["mediumslateblue"]),pt.oneOf(["mediumspringgreen"]),pt.oneOf(["mediumturquoise"]),pt.oneOf(["mediumvioletred"]),pt.oneOf(["midnightblue"]),pt.oneOf(["mintcream"]),pt.oneOf(["mistyrose"]),pt.oneOf(["moccasin"]),pt.oneOf(["navajowhite"]),pt.oneOf(["navy"]),pt.oneOf(["oldlace"]),pt.oneOf(["olive"]),pt.oneOf(["olivedrab"]),pt.oneOf(["orange"]),pt.oneOf(["orangered"]),pt.oneOf(["orchid"]),pt.oneOf(["palegoldenrod"]),pt.oneOf(["palegreen"]),pt.oneOf(["paleturquoise"]),pt.oneOf(["palevioletred"]),pt.oneOf(["papayawhip"]),pt.oneOf(["peachpuff"]),pt.oneOf(["peru"]),pt.oneOf(["pink"]),pt.oneOf(["plum"]),pt.oneOf(["powderblue"]),pt.oneOf(["purple"]),pt.oneOf(["rebeccapurple"]),pt.oneOf(["red"]),pt.oneOf(["rosybrown"]),pt.oneOf(["royalblue"]),pt.oneOf(["saddlebrown"]),pt.oneOf(["salmon"]),pt.oneOf(["sandybrown"]),pt.oneOf(["seagreen"]),pt.oneOf(["seashell"]),pt.oneOf(["sienna"]),pt.oneOf(["silver"]),pt.oneOf(["skyblue"]),pt.oneOf(["slateblue"]),pt.oneOf(["slategray"]),pt.oneOf(["slategrey"]),pt.oneOf(["snow"]),pt.oneOf(["springgreen"]),pt.oneOf(["steelblue"]),pt.oneOf(["tan"]),pt.oneOf(["teal"]),pt.oneOf(["thistle"]),pt.oneOf(["tomato"]),pt.oneOf(["transparent"]),pt.oneOf(["turquoise"]),pt.oneOf(["violet"]),pt.oneOf(["wheat"]),pt.oneOf(["white"]),pt.oneOf(["whitesmoke"]),pt.oneOf(["yellow"]),pt.oneOf(["yellowgreen"]),pt.oneOf(["ActiveBorder"]),pt.oneOf(["ActiveCaption"]),pt.oneOf(["AppWorkspace"]),pt.oneOf(["Background"]),pt.oneOf(["ButtonFace"]),pt.oneOf(["ButtonHighlight"]),pt.oneOf(["ButtonShadow"]),pt.oneOf(["ButtonText"]),pt.oneOf(["CaptionText"]),pt.oneOf(["GrayText"]),pt.oneOf(["Highlight"]),pt.oneOf(["HighlightText"]),pt.oneOf(["InactiveBorder"]),pt.oneOf(["InactiveCaption"]),pt.oneOf(["InactiveCaptionText"]),pt.oneOf(["InfoBackground"]),pt.oneOf(["InfoText"]),pt.oneOf(["Menu"]),pt.oneOf(["MenuText"]),pt.oneOf(["Scrollbar"]),pt.oneOf(["ThreeDDarkShadow"]),pt.oneOf(["ThreeDFace"]),pt.oneOf(["ThreeDHighlight"]),pt.oneOf(["ThreeDLightShadow"]),pt.oneOf(["ThreeDShadow"]),pt.oneOf(["Window"]),pt.oneOf(["WindowFrame"]),pt.oneOf(["WindowText"]),pt.oneOf(["currentcolor"])]),blur:pt.oneOfType([pt.string,pt.number]),gradient:pt.string}),withOverlay:pt.bool,padding:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),title:pt.node,withCloseButton:pt.bool,closeButtonProps:pt.shape({size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,ButtonProps:pt.object,hiddenFrom:pt.string,visibleFrom:pt.string,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),className:pt.string,style:pt.oneOfType([pt.any]),lightHidden:pt.bool,darkHidden:pt.bool}),yOffset:pt.oneOfType([pt.string,pt.number]),xOffset:pt.oneOfType([pt.string,pt.number]),centered:pt.bool,fullScreen:pt.bool,lockScroll:pt.bool,removeScrollProps:pt.object}),
|
|
12987
13361
|
clearable:pt.bool,
|
|
12988
|
-
clearButtonProps:pt.shape({size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node}),
|
|
13362
|
+
clearButtonProps:pt.shape({size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,ButtonProps:pt.object}),
|
|
12989
13363
|
readOnly:pt.bool,
|
|
12990
13364
|
sortDates:pt.bool,
|
|
12991
13365
|
labelSeparator:pt.string,
|
|
@@ -13160,9 +13534,9 @@ pk.DateTimePicker.propTypes = {valueFormat:pt.string,
|
|
|
13160
13534
|
inputWrapperOrder:pt.arrayOf(pt.oneOf(['label','description','error','input'])),
|
|
13161
13535
|
popoverProps:pt.shape({radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles:pt.bool,hideDetached:pt.bool,position:pt.oneOf(['top','left','bottom','right','top-end','top-start','left-end','left-start','bottom-end','bottom-start','right-end','right-start']),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.bool,pt.any]),flip:pt.oneOfType([pt.bool,pt.shape({mainAxis:pt.bool,crossAxis:pt.oneOfType([pt.bool,pt.oneOf(["alignment"])]),rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"]),pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number})]),elementContext:pt.oneOf(['reference','floating']),altBoundary:pt.bool,padding:pt.oneOfType([pt.number,pt.shape({top:pt.number,left:pt.number,bottom:pt.number,right:pt.number})]),fallbackPlacements:pt.arrayOf(pt.oneOf(['top','left','bottom','right','top-end','top-start','left-end','left-start','bottom-end','bottom-start','right-end','right-start'])),fallbackStrategy:pt.oneOf(['bestFit','initialPlacement']),fallbackAxisSideDirection:pt.oneOf(['end','start','none']),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.oneOfType([pt.bool]),size:pt.oneOfType([pt.bool,pt.any])}),withArrow:pt.bool,arrowSize:pt.number,arrowOffset:pt.number,arrowRadius:pt.number,arrowPosition:pt.oneOf(['center','side']),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),returnFocus:pt.bool,floatingStrategy:pt.oneOf(['absolute','fixed']),overlayProps:pt.object,withOverlay:pt.bool}),
|
|
13162
13536
|
clearable:pt.bool,
|
|
13163
|
-
clearButtonProps:pt.shape({size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node}),
|
|
13537
|
+
clearButtonProps:pt.shape({size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,ButtonProps:pt.object}),
|
|
13164
13538
|
dropdownType:pt.oneOf(['popover','modal']),
|
|
13165
|
-
modalProps:pt.shape({className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.string,visibleFrom:pt.string,lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),opened:pt.bool,closeOnClickOutside:pt.bool,trapFocus:pt.bool,closeOnEscape:pt.bool,keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),returnFocus:pt.bool,overlayProps:pt.shape({transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.string,visibleFrom:pt.string,lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),unstyled:pt.bool,attributes:pt.any,children:pt.node,zIndex:pt.oneOfType([pt.string,pt.number]),center:pt.bool,fixed:pt.bool,backgroundOpacity:pt.number,color:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["aliceblue"]),pt.oneOf(["antiquewhite"]),pt.oneOf(["aqua"]),pt.oneOf(["aquamarine"]),pt.oneOf(["azure"]),pt.oneOf(["beige"]),pt.oneOf(["bisque"]),pt.oneOf(["black"]),pt.oneOf(["blanchedalmond"]),pt.oneOf(["blue"]),pt.oneOf(["blueviolet"]),pt.oneOf(["brown"]),pt.oneOf(["burlywood"]),pt.oneOf(["cadetblue"]),pt.oneOf(["chartreuse"]),pt.oneOf(["chocolate"]),pt.oneOf(["coral"]),pt.oneOf(["cornflowerblue"]),pt.oneOf(["cornsilk"]),pt.oneOf(["crimson"]),pt.oneOf(["cyan"]),pt.oneOf(["darkblue"]),pt.oneOf(["darkcyan"]),pt.oneOf(["darkgoldenrod"]),pt.oneOf(["darkgray"]),pt.oneOf(["darkgreen"]),pt.oneOf(["darkgrey"]),pt.oneOf(["darkkhaki"]),pt.oneOf(["darkmagenta"]),pt.oneOf(["darkolivegreen"]),pt.oneOf(["darkorange"]),pt.oneOf(["darkorchid"]),pt.oneOf(["darkred"]),pt.oneOf(["darksalmon"]),pt.oneOf(["darkseagreen"]),pt.oneOf(["darkslateblue"]),pt.oneOf(["darkslategray"]),pt.oneOf(["darkslategrey"]),pt.oneOf(["darkturquoise"]),pt.oneOf(["darkviolet"]),pt.oneOf(["deeppink"]),pt.oneOf(["deepskyblue"]),pt.oneOf(["dimgray"]),pt.oneOf(["dimgrey"]),pt.oneOf(["dodgerblue"]),pt.oneOf(["firebrick"]),pt.oneOf(["floralwhite"]),pt.oneOf(["forestgreen"]),pt.oneOf(["fuchsia"]),pt.oneOf(["gainsboro"]),pt.oneOf(["ghostwhite"]),pt.oneOf(["gold"]),pt.oneOf(["goldenrod"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["greenyellow"]),pt.oneOf(["grey"]),pt.oneOf(["honeydew"]),pt.oneOf(["hotpink"]),pt.oneOf(["indianred"]),pt.oneOf(["indigo"]),pt.oneOf(["ivory"]),pt.oneOf(["khaki"]),pt.oneOf(["lavender"]),pt.oneOf(["lavenderblush"]),pt.oneOf(["lawngreen"]),pt.oneOf(["lemonchiffon"]),pt.oneOf(["lightblue"]),pt.oneOf(["lightcoral"]),pt.oneOf(["lightcyan"]),pt.oneOf(["lightgoldenrodyellow"]),pt.oneOf(["lightgray"]),pt.oneOf(["lightgreen"]),pt.oneOf(["lightgrey"]),pt.oneOf(["lightpink"]),pt.oneOf(["lightsalmon"]),pt.oneOf(["lightseagreen"]),pt.oneOf(["lightskyblue"]),pt.oneOf(["lightslategray"]),pt.oneOf(["lightslategrey"]),pt.oneOf(["lightsteelblue"]),pt.oneOf(["lightyellow"]),pt.oneOf(["lime"]),pt.oneOf(["limegreen"]),pt.oneOf(["linen"]),pt.oneOf(["magenta"]),pt.oneOf(["maroon"]),pt.oneOf(["mediumaquamarine"]),pt.oneOf(["mediumblue"]),pt.oneOf(["mediumorchid"]),pt.oneOf(["mediumpurple"]),pt.oneOf(["mediumseagreen"]),pt.oneOf(["mediumslateblue"]),pt.oneOf(["mediumspringgreen"]),pt.oneOf(["mediumturquoise"]),pt.oneOf(["mediumvioletred"]),pt.oneOf(["midnightblue"]),pt.oneOf(["mintcream"]),pt.oneOf(["mistyrose"]),pt.oneOf(["moccasin"]),pt.oneOf(["navajowhite"]),pt.oneOf(["navy"]),pt.oneOf(["oldlace"]),pt.oneOf(["olive"]),pt.oneOf(["olivedrab"]),pt.oneOf(["orange"]),pt.oneOf(["orangered"]),pt.oneOf(["orchid"]),pt.oneOf(["palegoldenrod"]),pt.oneOf(["palegreen"]),pt.oneOf(["paleturquoise"]),pt.oneOf(["palevioletred"]),pt.oneOf(["papayawhip"]),pt.oneOf(["peachpuff"]),pt.oneOf(["peru"]),pt.oneOf(["pink"]),pt.oneOf(["plum"]),pt.oneOf(["powderblue"]),pt.oneOf(["purple"]),pt.oneOf(["rebeccapurple"]),pt.oneOf(["red"]),pt.oneOf(["rosybrown"]),pt.oneOf(["royalblue"]),pt.oneOf(["saddlebrown"]),pt.oneOf(["salmon"]),pt.oneOf(["sandybrown"]),pt.oneOf(["seagreen"]),pt.oneOf(["seashell"]),pt.oneOf(["sienna"]),pt.oneOf(["silver"]),pt.oneOf(["skyblue"]),pt.oneOf(["slateblue"]),pt.oneOf(["slategray"]),pt.oneOf(["slategrey"]),pt.oneOf(["snow"]),pt.oneOf(["springgreen"]),pt.oneOf(["steelblue"]),pt.oneOf(["tan"]),pt.oneOf(["teal"]),pt.oneOf(["thistle"]),pt.oneOf(["tomato"]),pt.oneOf(["transparent"]),pt.oneOf(["turquoise"]),pt.oneOf(["violet"]),pt.oneOf(["wheat"]),pt.oneOf(["white"]),pt.oneOf(["whitesmoke"]),pt.oneOf(["yellow"]),pt.oneOf(["yellowgreen"]),pt.oneOf(["ActiveBorder"]),pt.oneOf(["ActiveCaption"]),pt.oneOf(["AppWorkspace"]),pt.oneOf(["Background"]),pt.oneOf(["ButtonFace"]),pt.oneOf(["ButtonHighlight"]),pt.oneOf(["ButtonShadow"]),pt.oneOf(["ButtonText"]),pt.oneOf(["CaptionText"]),pt.oneOf(["GrayText"]),pt.oneOf(["Highlight"]),pt.oneOf(["HighlightText"]),pt.oneOf(["InactiveBorder"]),pt.oneOf(["InactiveCaption"]),pt.oneOf(["InactiveCaptionText"]),pt.oneOf(["InfoBackground"]),pt.oneOf(["InfoText"]),pt.oneOf(["Menu"]),pt.oneOf(["MenuText"]),pt.oneOf(["Scrollbar"]),pt.oneOf(["ThreeDDarkShadow"]),pt.oneOf(["ThreeDFace"]),pt.oneOf(["ThreeDHighlight"]),pt.oneOf(["ThreeDLightShadow"]),pt.oneOf(["ThreeDShadow"]),pt.oneOf(["Window"]),pt.oneOf(["WindowFrame"]),pt.oneOf(["WindowText"]),pt.oneOf(["currentcolor"])]),blur:pt.oneOfType([pt.string,pt.number]),gradient:pt.string}),withOverlay:pt.bool,padding:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),title:pt.node,withCloseButton:pt.bool,closeButtonProps:pt.shape({size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,hiddenFrom:pt.string,visibleFrom:pt.string,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),className:pt.string,style:pt.oneOfType([pt.any]),lightHidden:pt.bool,darkHidden:pt.bool}),yOffset:pt.oneOfType([pt.string,pt.number]),xOffset:pt.oneOfType([pt.string,pt.number]),centered:pt.bool,fullScreen:pt.bool,lockScroll:pt.bool,removeScrollProps:pt.object}),
|
|
13539
|
+
modalProps:pt.shape({className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.string,visibleFrom:pt.string,lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),opened:pt.bool,closeOnClickOutside:pt.bool,trapFocus:pt.bool,closeOnEscape:pt.bool,keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),returnFocus:pt.bool,overlayProps:pt.shape({transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.string,visibleFrom:pt.string,lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),unstyled:pt.bool,attributes:pt.any,children:pt.node,zIndex:pt.oneOfType([pt.string,pt.number]),center:pt.bool,fixed:pt.bool,backgroundOpacity:pt.number,color:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["aliceblue"]),pt.oneOf(["antiquewhite"]),pt.oneOf(["aqua"]),pt.oneOf(["aquamarine"]),pt.oneOf(["azure"]),pt.oneOf(["beige"]),pt.oneOf(["bisque"]),pt.oneOf(["black"]),pt.oneOf(["blanchedalmond"]),pt.oneOf(["blue"]),pt.oneOf(["blueviolet"]),pt.oneOf(["brown"]),pt.oneOf(["burlywood"]),pt.oneOf(["cadetblue"]),pt.oneOf(["chartreuse"]),pt.oneOf(["chocolate"]),pt.oneOf(["coral"]),pt.oneOf(["cornflowerblue"]),pt.oneOf(["cornsilk"]),pt.oneOf(["crimson"]),pt.oneOf(["cyan"]),pt.oneOf(["darkblue"]),pt.oneOf(["darkcyan"]),pt.oneOf(["darkgoldenrod"]),pt.oneOf(["darkgray"]),pt.oneOf(["darkgreen"]),pt.oneOf(["darkgrey"]),pt.oneOf(["darkkhaki"]),pt.oneOf(["darkmagenta"]),pt.oneOf(["darkolivegreen"]),pt.oneOf(["darkorange"]),pt.oneOf(["darkorchid"]),pt.oneOf(["darkred"]),pt.oneOf(["darksalmon"]),pt.oneOf(["darkseagreen"]),pt.oneOf(["darkslateblue"]),pt.oneOf(["darkslategray"]),pt.oneOf(["darkslategrey"]),pt.oneOf(["darkturquoise"]),pt.oneOf(["darkviolet"]),pt.oneOf(["deeppink"]),pt.oneOf(["deepskyblue"]),pt.oneOf(["dimgray"]),pt.oneOf(["dimgrey"]),pt.oneOf(["dodgerblue"]),pt.oneOf(["firebrick"]),pt.oneOf(["floralwhite"]),pt.oneOf(["forestgreen"]),pt.oneOf(["fuchsia"]),pt.oneOf(["gainsboro"]),pt.oneOf(["ghostwhite"]),pt.oneOf(["gold"]),pt.oneOf(["goldenrod"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["greenyellow"]),pt.oneOf(["grey"]),pt.oneOf(["honeydew"]),pt.oneOf(["hotpink"]),pt.oneOf(["indianred"]),pt.oneOf(["indigo"]),pt.oneOf(["ivory"]),pt.oneOf(["khaki"]),pt.oneOf(["lavender"]),pt.oneOf(["lavenderblush"]),pt.oneOf(["lawngreen"]),pt.oneOf(["lemonchiffon"]),pt.oneOf(["lightblue"]),pt.oneOf(["lightcoral"]),pt.oneOf(["lightcyan"]),pt.oneOf(["lightgoldenrodyellow"]),pt.oneOf(["lightgray"]),pt.oneOf(["lightgreen"]),pt.oneOf(["lightgrey"]),pt.oneOf(["lightpink"]),pt.oneOf(["lightsalmon"]),pt.oneOf(["lightseagreen"]),pt.oneOf(["lightskyblue"]),pt.oneOf(["lightslategray"]),pt.oneOf(["lightslategrey"]),pt.oneOf(["lightsteelblue"]),pt.oneOf(["lightyellow"]),pt.oneOf(["lime"]),pt.oneOf(["limegreen"]),pt.oneOf(["linen"]),pt.oneOf(["magenta"]),pt.oneOf(["maroon"]),pt.oneOf(["mediumaquamarine"]),pt.oneOf(["mediumblue"]),pt.oneOf(["mediumorchid"]),pt.oneOf(["mediumpurple"]),pt.oneOf(["mediumseagreen"]),pt.oneOf(["mediumslateblue"]),pt.oneOf(["mediumspringgreen"]),pt.oneOf(["mediumturquoise"]),pt.oneOf(["mediumvioletred"]),pt.oneOf(["midnightblue"]),pt.oneOf(["mintcream"]),pt.oneOf(["mistyrose"]),pt.oneOf(["moccasin"]),pt.oneOf(["navajowhite"]),pt.oneOf(["navy"]),pt.oneOf(["oldlace"]),pt.oneOf(["olive"]),pt.oneOf(["olivedrab"]),pt.oneOf(["orange"]),pt.oneOf(["orangered"]),pt.oneOf(["orchid"]),pt.oneOf(["palegoldenrod"]),pt.oneOf(["palegreen"]),pt.oneOf(["paleturquoise"]),pt.oneOf(["palevioletred"]),pt.oneOf(["papayawhip"]),pt.oneOf(["peachpuff"]),pt.oneOf(["peru"]),pt.oneOf(["pink"]),pt.oneOf(["plum"]),pt.oneOf(["powderblue"]),pt.oneOf(["purple"]),pt.oneOf(["rebeccapurple"]),pt.oneOf(["red"]),pt.oneOf(["rosybrown"]),pt.oneOf(["royalblue"]),pt.oneOf(["saddlebrown"]),pt.oneOf(["salmon"]),pt.oneOf(["sandybrown"]),pt.oneOf(["seagreen"]),pt.oneOf(["seashell"]),pt.oneOf(["sienna"]),pt.oneOf(["silver"]),pt.oneOf(["skyblue"]),pt.oneOf(["slateblue"]),pt.oneOf(["slategray"]),pt.oneOf(["slategrey"]),pt.oneOf(["snow"]),pt.oneOf(["springgreen"]),pt.oneOf(["steelblue"]),pt.oneOf(["tan"]),pt.oneOf(["teal"]),pt.oneOf(["thistle"]),pt.oneOf(["tomato"]),pt.oneOf(["transparent"]),pt.oneOf(["turquoise"]),pt.oneOf(["violet"]),pt.oneOf(["wheat"]),pt.oneOf(["white"]),pt.oneOf(["whitesmoke"]),pt.oneOf(["yellow"]),pt.oneOf(["yellowgreen"]),pt.oneOf(["ActiveBorder"]),pt.oneOf(["ActiveCaption"]),pt.oneOf(["AppWorkspace"]),pt.oneOf(["Background"]),pt.oneOf(["ButtonFace"]),pt.oneOf(["ButtonHighlight"]),pt.oneOf(["ButtonShadow"]),pt.oneOf(["ButtonText"]),pt.oneOf(["CaptionText"]),pt.oneOf(["GrayText"]),pt.oneOf(["Highlight"]),pt.oneOf(["HighlightText"]),pt.oneOf(["InactiveBorder"]),pt.oneOf(["InactiveCaption"]),pt.oneOf(["InactiveCaptionText"]),pt.oneOf(["InfoBackground"]),pt.oneOf(["InfoText"]),pt.oneOf(["Menu"]),pt.oneOf(["MenuText"]),pt.oneOf(["Scrollbar"]),pt.oneOf(["ThreeDDarkShadow"]),pt.oneOf(["ThreeDFace"]),pt.oneOf(["ThreeDHighlight"]),pt.oneOf(["ThreeDLightShadow"]),pt.oneOf(["ThreeDShadow"]),pt.oneOf(["Window"]),pt.oneOf(["WindowFrame"]),pt.oneOf(["WindowText"]),pt.oneOf(["currentcolor"])]),blur:pt.oneOfType([pt.string,pt.number]),gradient:pt.string}),withOverlay:pt.bool,padding:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),title:pt.node,withCloseButton:pt.bool,closeButtonProps:pt.shape({size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,ButtonProps:pt.object,hiddenFrom:pt.string,visibleFrom:pt.string,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),className:pt.string,style:pt.oneOfType([pt.any]),lightHidden:pt.bool,darkHidden:pt.bool}),yOffset:pt.oneOfType([pt.string,pt.number]),xOffset:pt.oneOfType([pt.string,pt.number]),centered:pt.bool,fullScreen:pt.bool,lockScroll:pt.bool,removeScrollProps:pt.object}),
|
|
13166
13540
|
sortDates:pt.bool,
|
|
13167
13541
|
labelSeparator:pt.string,
|
|
13168
13542
|
numberOfColumns:pt.number,
|
|
@@ -13356,9 +13730,9 @@ pk.MonthPickerInput.propTypes = {valueFormat:pt.string,
|
|
|
13356
13730
|
closeOnChange:pt.bool,
|
|
13357
13731
|
dropdownType:pt.oneOf(['popover','modal']),
|
|
13358
13732
|
popoverProps:pt.shape({radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles:pt.bool,hideDetached:pt.bool,position:pt.oneOf(['top','left','bottom','right','top-end','top-start','left-end','left-start','bottom-end','bottom-start','right-end','right-start']),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.bool,pt.any]),flip:pt.oneOfType([pt.bool,pt.shape({mainAxis:pt.bool,crossAxis:pt.oneOfType([pt.bool,pt.oneOf(["alignment"])]),rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"]),pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number})]),elementContext:pt.oneOf(['reference','floating']),altBoundary:pt.bool,padding:pt.oneOfType([pt.number,pt.shape({top:pt.number,left:pt.number,bottom:pt.number,right:pt.number})]),fallbackPlacements:pt.arrayOf(pt.oneOf(['top','left','bottom','right','top-end','top-start','left-end','left-start','bottom-end','bottom-start','right-end','right-start'])),fallbackStrategy:pt.oneOf(['bestFit','initialPlacement']),fallbackAxisSideDirection:pt.oneOf(['end','start','none']),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.oneOfType([pt.bool]),size:pt.oneOfType([pt.bool,pt.any])}),withArrow:pt.bool,arrowSize:pt.number,arrowOffset:pt.number,arrowRadius:pt.number,arrowPosition:pt.oneOf(['center','side']),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),returnFocus:pt.bool,floatingStrategy:pt.oneOf(['absolute','fixed']),overlayProps:pt.object,withOverlay:pt.bool}),
|
|
13359
|
-
modalProps:pt.shape({className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.string,visibleFrom:pt.string,lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),opened:pt.bool,closeOnClickOutside:pt.bool,trapFocus:pt.bool,closeOnEscape:pt.bool,keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),returnFocus:pt.bool,overlayProps:pt.shape({transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.string,visibleFrom:pt.string,lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),unstyled:pt.bool,attributes:pt.any,children:pt.node,zIndex:pt.oneOfType([pt.string,pt.number]),center:pt.bool,fixed:pt.bool,backgroundOpacity:pt.number,color:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["aliceblue"]),pt.oneOf(["antiquewhite"]),pt.oneOf(["aqua"]),pt.oneOf(["aquamarine"]),pt.oneOf(["azure"]),pt.oneOf(["beige"]),pt.oneOf(["bisque"]),pt.oneOf(["black"]),pt.oneOf(["blanchedalmond"]),pt.oneOf(["blue"]),pt.oneOf(["blueviolet"]),pt.oneOf(["brown"]),pt.oneOf(["burlywood"]),pt.oneOf(["cadetblue"]),pt.oneOf(["chartreuse"]),pt.oneOf(["chocolate"]),pt.oneOf(["coral"]),pt.oneOf(["cornflowerblue"]),pt.oneOf(["cornsilk"]),pt.oneOf(["crimson"]),pt.oneOf(["cyan"]),pt.oneOf(["darkblue"]),pt.oneOf(["darkcyan"]),pt.oneOf(["darkgoldenrod"]),pt.oneOf(["darkgray"]),pt.oneOf(["darkgreen"]),pt.oneOf(["darkgrey"]),pt.oneOf(["darkkhaki"]),pt.oneOf(["darkmagenta"]),pt.oneOf(["darkolivegreen"]),pt.oneOf(["darkorange"]),pt.oneOf(["darkorchid"]),pt.oneOf(["darkred"]),pt.oneOf(["darksalmon"]),pt.oneOf(["darkseagreen"]),pt.oneOf(["darkslateblue"]),pt.oneOf(["darkslategray"]),pt.oneOf(["darkslategrey"]),pt.oneOf(["darkturquoise"]),pt.oneOf(["darkviolet"]),pt.oneOf(["deeppink"]),pt.oneOf(["deepskyblue"]),pt.oneOf(["dimgray"]),pt.oneOf(["dimgrey"]),pt.oneOf(["dodgerblue"]),pt.oneOf(["firebrick"]),pt.oneOf(["floralwhite"]),pt.oneOf(["forestgreen"]),pt.oneOf(["fuchsia"]),pt.oneOf(["gainsboro"]),pt.oneOf(["ghostwhite"]),pt.oneOf(["gold"]),pt.oneOf(["goldenrod"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["greenyellow"]),pt.oneOf(["grey"]),pt.oneOf(["honeydew"]),pt.oneOf(["hotpink"]),pt.oneOf(["indianred"]),pt.oneOf(["indigo"]),pt.oneOf(["ivory"]),pt.oneOf(["khaki"]),pt.oneOf(["lavender"]),pt.oneOf(["lavenderblush"]),pt.oneOf(["lawngreen"]),pt.oneOf(["lemonchiffon"]),pt.oneOf(["lightblue"]),pt.oneOf(["lightcoral"]),pt.oneOf(["lightcyan"]),pt.oneOf(["lightgoldenrodyellow"]),pt.oneOf(["lightgray"]),pt.oneOf(["lightgreen"]),pt.oneOf(["lightgrey"]),pt.oneOf(["lightpink"]),pt.oneOf(["lightsalmon"]),pt.oneOf(["lightseagreen"]),pt.oneOf(["lightskyblue"]),pt.oneOf(["lightslategray"]),pt.oneOf(["lightslategrey"]),pt.oneOf(["lightsteelblue"]),pt.oneOf(["lightyellow"]),pt.oneOf(["lime"]),pt.oneOf(["limegreen"]),pt.oneOf(["linen"]),pt.oneOf(["magenta"]),pt.oneOf(["maroon"]),pt.oneOf(["mediumaquamarine"]),pt.oneOf(["mediumblue"]),pt.oneOf(["mediumorchid"]),pt.oneOf(["mediumpurple"]),pt.oneOf(["mediumseagreen"]),pt.oneOf(["mediumslateblue"]),pt.oneOf(["mediumspringgreen"]),pt.oneOf(["mediumturquoise"]),pt.oneOf(["mediumvioletred"]),pt.oneOf(["midnightblue"]),pt.oneOf(["mintcream"]),pt.oneOf(["mistyrose"]),pt.oneOf(["moccasin"]),pt.oneOf(["navajowhite"]),pt.oneOf(["navy"]),pt.oneOf(["oldlace"]),pt.oneOf(["olive"]),pt.oneOf(["olivedrab"]),pt.oneOf(["orange"]),pt.oneOf(["orangered"]),pt.oneOf(["orchid"]),pt.oneOf(["palegoldenrod"]),pt.oneOf(["palegreen"]),pt.oneOf(["paleturquoise"]),pt.oneOf(["palevioletred"]),pt.oneOf(["papayawhip"]),pt.oneOf(["peachpuff"]),pt.oneOf(["peru"]),pt.oneOf(["pink"]),pt.oneOf(["plum"]),pt.oneOf(["powderblue"]),pt.oneOf(["purple"]),pt.oneOf(["rebeccapurple"]),pt.oneOf(["red"]),pt.oneOf(["rosybrown"]),pt.oneOf(["royalblue"]),pt.oneOf(["saddlebrown"]),pt.oneOf(["salmon"]),pt.oneOf(["sandybrown"]),pt.oneOf(["seagreen"]),pt.oneOf(["seashell"]),pt.oneOf(["sienna"]),pt.oneOf(["silver"]),pt.oneOf(["skyblue"]),pt.oneOf(["slateblue"]),pt.oneOf(["slategray"]),pt.oneOf(["slategrey"]),pt.oneOf(["snow"]),pt.oneOf(["springgreen"]),pt.oneOf(["steelblue"]),pt.oneOf(["tan"]),pt.oneOf(["teal"]),pt.oneOf(["thistle"]),pt.oneOf(["tomato"]),pt.oneOf(["transparent"]),pt.oneOf(["turquoise"]),pt.oneOf(["violet"]),pt.oneOf(["wheat"]),pt.oneOf(["white"]),pt.oneOf(["whitesmoke"]),pt.oneOf(["yellow"]),pt.oneOf(["yellowgreen"]),pt.oneOf(["ActiveBorder"]),pt.oneOf(["ActiveCaption"]),pt.oneOf(["AppWorkspace"]),pt.oneOf(["Background"]),pt.oneOf(["ButtonFace"]),pt.oneOf(["ButtonHighlight"]),pt.oneOf(["ButtonShadow"]),pt.oneOf(["ButtonText"]),pt.oneOf(["CaptionText"]),pt.oneOf(["GrayText"]),pt.oneOf(["Highlight"]),pt.oneOf(["HighlightText"]),pt.oneOf(["InactiveBorder"]),pt.oneOf(["InactiveCaption"]),pt.oneOf(["InactiveCaptionText"]),pt.oneOf(["InfoBackground"]),pt.oneOf(["InfoText"]),pt.oneOf(["Menu"]),pt.oneOf(["MenuText"]),pt.oneOf(["Scrollbar"]),pt.oneOf(["ThreeDDarkShadow"]),pt.oneOf(["ThreeDFace"]),pt.oneOf(["ThreeDHighlight"]),pt.oneOf(["ThreeDLightShadow"]),pt.oneOf(["ThreeDShadow"]),pt.oneOf(["Window"]),pt.oneOf(["WindowFrame"]),pt.oneOf(["WindowText"]),pt.oneOf(["currentcolor"])]),blur:pt.oneOfType([pt.string,pt.number]),gradient:pt.string}),withOverlay:pt.bool,padding:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),title:pt.node,withCloseButton:pt.bool,closeButtonProps:pt.shape({size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,hiddenFrom:pt.string,visibleFrom:pt.string,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),className:pt.string,style:pt.oneOfType([pt.any]),lightHidden:pt.bool,darkHidden:pt.bool}),yOffset:pt.oneOfType([pt.string,pt.number]),xOffset:pt.oneOfType([pt.string,pt.number]),centered:pt.bool,fullScreen:pt.bool,lockScroll:pt.bool,removeScrollProps:pt.object}),
|
|
13733
|
+
modalProps:pt.shape({className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.string,visibleFrom:pt.string,lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),opened:pt.bool,closeOnClickOutside:pt.bool,trapFocus:pt.bool,closeOnEscape:pt.bool,keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),returnFocus:pt.bool,overlayProps:pt.shape({transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.string,visibleFrom:pt.string,lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),unstyled:pt.bool,attributes:pt.any,children:pt.node,zIndex:pt.oneOfType([pt.string,pt.number]),center:pt.bool,fixed:pt.bool,backgroundOpacity:pt.number,color:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["aliceblue"]),pt.oneOf(["antiquewhite"]),pt.oneOf(["aqua"]),pt.oneOf(["aquamarine"]),pt.oneOf(["azure"]),pt.oneOf(["beige"]),pt.oneOf(["bisque"]),pt.oneOf(["black"]),pt.oneOf(["blanchedalmond"]),pt.oneOf(["blue"]),pt.oneOf(["blueviolet"]),pt.oneOf(["brown"]),pt.oneOf(["burlywood"]),pt.oneOf(["cadetblue"]),pt.oneOf(["chartreuse"]),pt.oneOf(["chocolate"]),pt.oneOf(["coral"]),pt.oneOf(["cornflowerblue"]),pt.oneOf(["cornsilk"]),pt.oneOf(["crimson"]),pt.oneOf(["cyan"]),pt.oneOf(["darkblue"]),pt.oneOf(["darkcyan"]),pt.oneOf(["darkgoldenrod"]),pt.oneOf(["darkgray"]),pt.oneOf(["darkgreen"]),pt.oneOf(["darkgrey"]),pt.oneOf(["darkkhaki"]),pt.oneOf(["darkmagenta"]),pt.oneOf(["darkolivegreen"]),pt.oneOf(["darkorange"]),pt.oneOf(["darkorchid"]),pt.oneOf(["darkred"]),pt.oneOf(["darksalmon"]),pt.oneOf(["darkseagreen"]),pt.oneOf(["darkslateblue"]),pt.oneOf(["darkslategray"]),pt.oneOf(["darkslategrey"]),pt.oneOf(["darkturquoise"]),pt.oneOf(["darkviolet"]),pt.oneOf(["deeppink"]),pt.oneOf(["deepskyblue"]),pt.oneOf(["dimgray"]),pt.oneOf(["dimgrey"]),pt.oneOf(["dodgerblue"]),pt.oneOf(["firebrick"]),pt.oneOf(["floralwhite"]),pt.oneOf(["forestgreen"]),pt.oneOf(["fuchsia"]),pt.oneOf(["gainsboro"]),pt.oneOf(["ghostwhite"]),pt.oneOf(["gold"]),pt.oneOf(["goldenrod"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["greenyellow"]),pt.oneOf(["grey"]),pt.oneOf(["honeydew"]),pt.oneOf(["hotpink"]),pt.oneOf(["indianred"]),pt.oneOf(["indigo"]),pt.oneOf(["ivory"]),pt.oneOf(["khaki"]),pt.oneOf(["lavender"]),pt.oneOf(["lavenderblush"]),pt.oneOf(["lawngreen"]),pt.oneOf(["lemonchiffon"]),pt.oneOf(["lightblue"]),pt.oneOf(["lightcoral"]),pt.oneOf(["lightcyan"]),pt.oneOf(["lightgoldenrodyellow"]),pt.oneOf(["lightgray"]),pt.oneOf(["lightgreen"]),pt.oneOf(["lightgrey"]),pt.oneOf(["lightpink"]),pt.oneOf(["lightsalmon"]),pt.oneOf(["lightseagreen"]),pt.oneOf(["lightskyblue"]),pt.oneOf(["lightslategray"]),pt.oneOf(["lightslategrey"]),pt.oneOf(["lightsteelblue"]),pt.oneOf(["lightyellow"]),pt.oneOf(["lime"]),pt.oneOf(["limegreen"]),pt.oneOf(["linen"]),pt.oneOf(["magenta"]),pt.oneOf(["maroon"]),pt.oneOf(["mediumaquamarine"]),pt.oneOf(["mediumblue"]),pt.oneOf(["mediumorchid"]),pt.oneOf(["mediumpurple"]),pt.oneOf(["mediumseagreen"]),pt.oneOf(["mediumslateblue"]),pt.oneOf(["mediumspringgreen"]),pt.oneOf(["mediumturquoise"]),pt.oneOf(["mediumvioletred"]),pt.oneOf(["midnightblue"]),pt.oneOf(["mintcream"]),pt.oneOf(["mistyrose"]),pt.oneOf(["moccasin"]),pt.oneOf(["navajowhite"]),pt.oneOf(["navy"]),pt.oneOf(["oldlace"]),pt.oneOf(["olive"]),pt.oneOf(["olivedrab"]),pt.oneOf(["orange"]),pt.oneOf(["orangered"]),pt.oneOf(["orchid"]),pt.oneOf(["palegoldenrod"]),pt.oneOf(["palegreen"]),pt.oneOf(["paleturquoise"]),pt.oneOf(["palevioletred"]),pt.oneOf(["papayawhip"]),pt.oneOf(["peachpuff"]),pt.oneOf(["peru"]),pt.oneOf(["pink"]),pt.oneOf(["plum"]),pt.oneOf(["powderblue"]),pt.oneOf(["purple"]),pt.oneOf(["rebeccapurple"]),pt.oneOf(["red"]),pt.oneOf(["rosybrown"]),pt.oneOf(["royalblue"]),pt.oneOf(["saddlebrown"]),pt.oneOf(["salmon"]),pt.oneOf(["sandybrown"]),pt.oneOf(["seagreen"]),pt.oneOf(["seashell"]),pt.oneOf(["sienna"]),pt.oneOf(["silver"]),pt.oneOf(["skyblue"]),pt.oneOf(["slateblue"]),pt.oneOf(["slategray"]),pt.oneOf(["slategrey"]),pt.oneOf(["snow"]),pt.oneOf(["springgreen"]),pt.oneOf(["steelblue"]),pt.oneOf(["tan"]),pt.oneOf(["teal"]),pt.oneOf(["thistle"]),pt.oneOf(["tomato"]),pt.oneOf(["transparent"]),pt.oneOf(["turquoise"]),pt.oneOf(["violet"]),pt.oneOf(["wheat"]),pt.oneOf(["white"]),pt.oneOf(["whitesmoke"]),pt.oneOf(["yellow"]),pt.oneOf(["yellowgreen"]),pt.oneOf(["ActiveBorder"]),pt.oneOf(["ActiveCaption"]),pt.oneOf(["AppWorkspace"]),pt.oneOf(["Background"]),pt.oneOf(["ButtonFace"]),pt.oneOf(["ButtonHighlight"]),pt.oneOf(["ButtonShadow"]),pt.oneOf(["ButtonText"]),pt.oneOf(["CaptionText"]),pt.oneOf(["GrayText"]),pt.oneOf(["Highlight"]),pt.oneOf(["HighlightText"]),pt.oneOf(["InactiveBorder"]),pt.oneOf(["InactiveCaption"]),pt.oneOf(["InactiveCaptionText"]),pt.oneOf(["InfoBackground"]),pt.oneOf(["InfoText"]),pt.oneOf(["Menu"]),pt.oneOf(["MenuText"]),pt.oneOf(["Scrollbar"]),pt.oneOf(["ThreeDDarkShadow"]),pt.oneOf(["ThreeDFace"]),pt.oneOf(["ThreeDHighlight"]),pt.oneOf(["ThreeDLightShadow"]),pt.oneOf(["ThreeDShadow"]),pt.oneOf(["Window"]),pt.oneOf(["WindowFrame"]),pt.oneOf(["WindowText"]),pt.oneOf(["currentcolor"])]),blur:pt.oneOfType([pt.string,pt.number]),gradient:pt.string}),withOverlay:pt.bool,padding:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),title:pt.node,withCloseButton:pt.bool,closeButtonProps:pt.shape({size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,ButtonProps:pt.object,hiddenFrom:pt.string,visibleFrom:pt.string,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),className:pt.string,style:pt.oneOfType([pt.any]),lightHidden:pt.bool,darkHidden:pt.bool}),yOffset:pt.oneOfType([pt.string,pt.number]),xOffset:pt.oneOfType([pt.string,pt.number]),centered:pt.bool,fullScreen:pt.bool,lockScroll:pt.bool,removeScrollProps:pt.object}),
|
|
13360
13734
|
clearable:pt.bool,
|
|
13361
|
-
clearButtonProps:pt.shape({size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node}),
|
|
13735
|
+
clearButtonProps:pt.shape({size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,ButtonProps:pt.object}),
|
|
13362
13736
|
readOnly:pt.bool,
|
|
13363
13737
|
sortDates:pt.bool,
|
|
13364
13738
|
labelSeparator:pt.string,
|
|
@@ -13821,9 +14195,9 @@ pk.YearPickerInput.propTypes = {valueFormat:pt.string,
|
|
|
13821
14195
|
closeOnChange:pt.bool,
|
|
13822
14196
|
dropdownType:pt.oneOf(['popover','modal']),
|
|
13823
14197
|
popoverProps:pt.shape({radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles:pt.bool,hideDetached:pt.bool,position:pt.oneOf(['top','left','bottom','right','top-end','top-start','left-end','left-start','bottom-end','bottom-start','right-end','right-start']),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.bool,pt.any]),flip:pt.oneOfType([pt.bool,pt.shape({mainAxis:pt.bool,crossAxis:pt.oneOfType([pt.bool,pt.oneOf(["alignment"])]),rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"]),pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number})]),elementContext:pt.oneOf(['reference','floating']),altBoundary:pt.bool,padding:pt.oneOfType([pt.number,pt.shape({top:pt.number,left:pt.number,bottom:pt.number,right:pt.number})]),fallbackPlacements:pt.arrayOf(pt.oneOf(['top','left','bottom','right','top-end','top-start','left-end','left-start','bottom-end','bottom-start','right-end','right-start'])),fallbackStrategy:pt.oneOf(['bestFit','initialPlacement']),fallbackAxisSideDirection:pt.oneOf(['end','start','none']),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.oneOfType([pt.bool]),size:pt.oneOfType([pt.bool,pt.any])}),withArrow:pt.bool,arrowSize:pt.number,arrowOffset:pt.number,arrowRadius:pt.number,arrowPosition:pt.oneOf(['center','side']),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),returnFocus:pt.bool,floatingStrategy:pt.oneOf(['absolute','fixed']),overlayProps:pt.object,withOverlay:pt.bool}),
|
|
13824
|
-
modalProps:pt.shape({className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.string,visibleFrom:pt.string,lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),opened:pt.bool,closeOnClickOutside:pt.bool,trapFocus:pt.bool,closeOnEscape:pt.bool,keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),returnFocus:pt.bool,overlayProps:pt.shape({transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.string,visibleFrom:pt.string,lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),unstyled:pt.bool,attributes:pt.any,children:pt.node,zIndex:pt.oneOfType([pt.string,pt.number]),center:pt.bool,fixed:pt.bool,backgroundOpacity:pt.number,color:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["aliceblue"]),pt.oneOf(["antiquewhite"]),pt.oneOf(["aqua"]),pt.oneOf(["aquamarine"]),pt.oneOf(["azure"]),pt.oneOf(["beige"]),pt.oneOf(["bisque"]),pt.oneOf(["black"]),pt.oneOf(["blanchedalmond"]),pt.oneOf(["blue"]),pt.oneOf(["blueviolet"]),pt.oneOf(["brown"]),pt.oneOf(["burlywood"]),pt.oneOf(["cadetblue"]),pt.oneOf(["chartreuse"]),pt.oneOf(["chocolate"]),pt.oneOf(["coral"]),pt.oneOf(["cornflowerblue"]),pt.oneOf(["cornsilk"]),pt.oneOf(["crimson"]),pt.oneOf(["cyan"]),pt.oneOf(["darkblue"]),pt.oneOf(["darkcyan"]),pt.oneOf(["darkgoldenrod"]),pt.oneOf(["darkgray"]),pt.oneOf(["darkgreen"]),pt.oneOf(["darkgrey"]),pt.oneOf(["darkkhaki"]),pt.oneOf(["darkmagenta"]),pt.oneOf(["darkolivegreen"]),pt.oneOf(["darkorange"]),pt.oneOf(["darkorchid"]),pt.oneOf(["darkred"]),pt.oneOf(["darksalmon"]),pt.oneOf(["darkseagreen"]),pt.oneOf(["darkslateblue"]),pt.oneOf(["darkslategray"]),pt.oneOf(["darkslategrey"]),pt.oneOf(["darkturquoise"]),pt.oneOf(["darkviolet"]),pt.oneOf(["deeppink"]),pt.oneOf(["deepskyblue"]),pt.oneOf(["dimgray"]),pt.oneOf(["dimgrey"]),pt.oneOf(["dodgerblue"]),pt.oneOf(["firebrick"]),pt.oneOf(["floralwhite"]),pt.oneOf(["forestgreen"]),pt.oneOf(["fuchsia"]),pt.oneOf(["gainsboro"]),pt.oneOf(["ghostwhite"]),pt.oneOf(["gold"]),pt.oneOf(["goldenrod"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["greenyellow"]),pt.oneOf(["grey"]),pt.oneOf(["honeydew"]),pt.oneOf(["hotpink"]),pt.oneOf(["indianred"]),pt.oneOf(["indigo"]),pt.oneOf(["ivory"]),pt.oneOf(["khaki"]),pt.oneOf(["lavender"]),pt.oneOf(["lavenderblush"]),pt.oneOf(["lawngreen"]),pt.oneOf(["lemonchiffon"]),pt.oneOf(["lightblue"]),pt.oneOf(["lightcoral"]),pt.oneOf(["lightcyan"]),pt.oneOf(["lightgoldenrodyellow"]),pt.oneOf(["lightgray"]),pt.oneOf(["lightgreen"]),pt.oneOf(["lightgrey"]),pt.oneOf(["lightpink"]),pt.oneOf(["lightsalmon"]),pt.oneOf(["lightseagreen"]),pt.oneOf(["lightskyblue"]),pt.oneOf(["lightslategray"]),pt.oneOf(["lightslategrey"]),pt.oneOf(["lightsteelblue"]),pt.oneOf(["lightyellow"]),pt.oneOf(["lime"]),pt.oneOf(["limegreen"]),pt.oneOf(["linen"]),pt.oneOf(["magenta"]),pt.oneOf(["maroon"]),pt.oneOf(["mediumaquamarine"]),pt.oneOf(["mediumblue"]),pt.oneOf(["mediumorchid"]),pt.oneOf(["mediumpurple"]),pt.oneOf(["mediumseagreen"]),pt.oneOf(["mediumslateblue"]),pt.oneOf(["mediumspringgreen"]),pt.oneOf(["mediumturquoise"]),pt.oneOf(["mediumvioletred"]),pt.oneOf(["midnightblue"]),pt.oneOf(["mintcream"]),pt.oneOf(["mistyrose"]),pt.oneOf(["moccasin"]),pt.oneOf(["navajowhite"]),pt.oneOf(["navy"]),pt.oneOf(["oldlace"]),pt.oneOf(["olive"]),pt.oneOf(["olivedrab"]),pt.oneOf(["orange"]),pt.oneOf(["orangered"]),pt.oneOf(["orchid"]),pt.oneOf(["palegoldenrod"]),pt.oneOf(["palegreen"]),pt.oneOf(["paleturquoise"]),pt.oneOf(["palevioletred"]),pt.oneOf(["papayawhip"]),pt.oneOf(["peachpuff"]),pt.oneOf(["peru"]),pt.oneOf(["pink"]),pt.oneOf(["plum"]),pt.oneOf(["powderblue"]),pt.oneOf(["purple"]),pt.oneOf(["rebeccapurple"]),pt.oneOf(["red"]),pt.oneOf(["rosybrown"]),pt.oneOf(["royalblue"]),pt.oneOf(["saddlebrown"]),pt.oneOf(["salmon"]),pt.oneOf(["sandybrown"]),pt.oneOf(["seagreen"]),pt.oneOf(["seashell"]),pt.oneOf(["sienna"]),pt.oneOf(["silver"]),pt.oneOf(["skyblue"]),pt.oneOf(["slateblue"]),pt.oneOf(["slategray"]),pt.oneOf(["slategrey"]),pt.oneOf(["snow"]),pt.oneOf(["springgreen"]),pt.oneOf(["steelblue"]),pt.oneOf(["tan"]),pt.oneOf(["teal"]),pt.oneOf(["thistle"]),pt.oneOf(["tomato"]),pt.oneOf(["transparent"]),pt.oneOf(["turquoise"]),pt.oneOf(["violet"]),pt.oneOf(["wheat"]),pt.oneOf(["white"]),pt.oneOf(["whitesmoke"]),pt.oneOf(["yellow"]),pt.oneOf(["yellowgreen"]),pt.oneOf(["ActiveBorder"]),pt.oneOf(["ActiveCaption"]),pt.oneOf(["AppWorkspace"]),pt.oneOf(["Background"]),pt.oneOf(["ButtonFace"]),pt.oneOf(["ButtonHighlight"]),pt.oneOf(["ButtonShadow"]),pt.oneOf(["ButtonText"]),pt.oneOf(["CaptionText"]),pt.oneOf(["GrayText"]),pt.oneOf(["Highlight"]),pt.oneOf(["HighlightText"]),pt.oneOf(["InactiveBorder"]),pt.oneOf(["InactiveCaption"]),pt.oneOf(["InactiveCaptionText"]),pt.oneOf(["InfoBackground"]),pt.oneOf(["InfoText"]),pt.oneOf(["Menu"]),pt.oneOf(["MenuText"]),pt.oneOf(["Scrollbar"]),pt.oneOf(["ThreeDDarkShadow"]),pt.oneOf(["ThreeDFace"]),pt.oneOf(["ThreeDHighlight"]),pt.oneOf(["ThreeDLightShadow"]),pt.oneOf(["ThreeDShadow"]),pt.oneOf(["Window"]),pt.oneOf(["WindowFrame"]),pt.oneOf(["WindowText"]),pt.oneOf(["currentcolor"])]),blur:pt.oneOfType([pt.string,pt.number]),gradient:pt.string}),withOverlay:pt.bool,padding:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),title:pt.node,withCloseButton:pt.bool,closeButtonProps:pt.shape({size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,hiddenFrom:pt.string,visibleFrom:pt.string,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),className:pt.string,style:pt.oneOfType([pt.any]),lightHidden:pt.bool,darkHidden:pt.bool}),yOffset:pt.oneOfType([pt.string,pt.number]),xOffset:pt.oneOfType([pt.string,pt.number]),centered:pt.bool,fullScreen:pt.bool,lockScroll:pt.bool,removeScrollProps:pt.object}),
|
|
14198
|
+
modalProps:pt.shape({className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.string,visibleFrom:pt.string,lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),opened:pt.bool,closeOnClickOutside:pt.bool,trapFocus:pt.bool,closeOnEscape:pt.bool,keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),returnFocus:pt.bool,overlayProps:pt.shape({transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.string,visibleFrom:pt.string,lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),unstyled:pt.bool,attributes:pt.any,children:pt.node,zIndex:pt.oneOfType([pt.string,pt.number]),center:pt.bool,fixed:pt.bool,backgroundOpacity:pt.number,color:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["aliceblue"]),pt.oneOf(["antiquewhite"]),pt.oneOf(["aqua"]),pt.oneOf(["aquamarine"]),pt.oneOf(["azure"]),pt.oneOf(["beige"]),pt.oneOf(["bisque"]),pt.oneOf(["black"]),pt.oneOf(["blanchedalmond"]),pt.oneOf(["blue"]),pt.oneOf(["blueviolet"]),pt.oneOf(["brown"]),pt.oneOf(["burlywood"]),pt.oneOf(["cadetblue"]),pt.oneOf(["chartreuse"]),pt.oneOf(["chocolate"]),pt.oneOf(["coral"]),pt.oneOf(["cornflowerblue"]),pt.oneOf(["cornsilk"]),pt.oneOf(["crimson"]),pt.oneOf(["cyan"]),pt.oneOf(["darkblue"]),pt.oneOf(["darkcyan"]),pt.oneOf(["darkgoldenrod"]),pt.oneOf(["darkgray"]),pt.oneOf(["darkgreen"]),pt.oneOf(["darkgrey"]),pt.oneOf(["darkkhaki"]),pt.oneOf(["darkmagenta"]),pt.oneOf(["darkolivegreen"]),pt.oneOf(["darkorange"]),pt.oneOf(["darkorchid"]),pt.oneOf(["darkred"]),pt.oneOf(["darksalmon"]),pt.oneOf(["darkseagreen"]),pt.oneOf(["darkslateblue"]),pt.oneOf(["darkslategray"]),pt.oneOf(["darkslategrey"]),pt.oneOf(["darkturquoise"]),pt.oneOf(["darkviolet"]),pt.oneOf(["deeppink"]),pt.oneOf(["deepskyblue"]),pt.oneOf(["dimgray"]),pt.oneOf(["dimgrey"]),pt.oneOf(["dodgerblue"]),pt.oneOf(["firebrick"]),pt.oneOf(["floralwhite"]),pt.oneOf(["forestgreen"]),pt.oneOf(["fuchsia"]),pt.oneOf(["gainsboro"]),pt.oneOf(["ghostwhite"]),pt.oneOf(["gold"]),pt.oneOf(["goldenrod"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["greenyellow"]),pt.oneOf(["grey"]),pt.oneOf(["honeydew"]),pt.oneOf(["hotpink"]),pt.oneOf(["indianred"]),pt.oneOf(["indigo"]),pt.oneOf(["ivory"]),pt.oneOf(["khaki"]),pt.oneOf(["lavender"]),pt.oneOf(["lavenderblush"]),pt.oneOf(["lawngreen"]),pt.oneOf(["lemonchiffon"]),pt.oneOf(["lightblue"]),pt.oneOf(["lightcoral"]),pt.oneOf(["lightcyan"]),pt.oneOf(["lightgoldenrodyellow"]),pt.oneOf(["lightgray"]),pt.oneOf(["lightgreen"]),pt.oneOf(["lightgrey"]),pt.oneOf(["lightpink"]),pt.oneOf(["lightsalmon"]),pt.oneOf(["lightseagreen"]),pt.oneOf(["lightskyblue"]),pt.oneOf(["lightslategray"]),pt.oneOf(["lightslategrey"]),pt.oneOf(["lightsteelblue"]),pt.oneOf(["lightyellow"]),pt.oneOf(["lime"]),pt.oneOf(["limegreen"]),pt.oneOf(["linen"]),pt.oneOf(["magenta"]),pt.oneOf(["maroon"]),pt.oneOf(["mediumaquamarine"]),pt.oneOf(["mediumblue"]),pt.oneOf(["mediumorchid"]),pt.oneOf(["mediumpurple"]),pt.oneOf(["mediumseagreen"]),pt.oneOf(["mediumslateblue"]),pt.oneOf(["mediumspringgreen"]),pt.oneOf(["mediumturquoise"]),pt.oneOf(["mediumvioletred"]),pt.oneOf(["midnightblue"]),pt.oneOf(["mintcream"]),pt.oneOf(["mistyrose"]),pt.oneOf(["moccasin"]),pt.oneOf(["navajowhite"]),pt.oneOf(["navy"]),pt.oneOf(["oldlace"]),pt.oneOf(["olive"]),pt.oneOf(["olivedrab"]),pt.oneOf(["orange"]),pt.oneOf(["orangered"]),pt.oneOf(["orchid"]),pt.oneOf(["palegoldenrod"]),pt.oneOf(["palegreen"]),pt.oneOf(["paleturquoise"]),pt.oneOf(["palevioletred"]),pt.oneOf(["papayawhip"]),pt.oneOf(["peachpuff"]),pt.oneOf(["peru"]),pt.oneOf(["pink"]),pt.oneOf(["plum"]),pt.oneOf(["powderblue"]),pt.oneOf(["purple"]),pt.oneOf(["rebeccapurple"]),pt.oneOf(["red"]),pt.oneOf(["rosybrown"]),pt.oneOf(["royalblue"]),pt.oneOf(["saddlebrown"]),pt.oneOf(["salmon"]),pt.oneOf(["sandybrown"]),pt.oneOf(["seagreen"]),pt.oneOf(["seashell"]),pt.oneOf(["sienna"]),pt.oneOf(["silver"]),pt.oneOf(["skyblue"]),pt.oneOf(["slateblue"]),pt.oneOf(["slategray"]),pt.oneOf(["slategrey"]),pt.oneOf(["snow"]),pt.oneOf(["springgreen"]),pt.oneOf(["steelblue"]),pt.oneOf(["tan"]),pt.oneOf(["teal"]),pt.oneOf(["thistle"]),pt.oneOf(["tomato"]),pt.oneOf(["transparent"]),pt.oneOf(["turquoise"]),pt.oneOf(["violet"]),pt.oneOf(["wheat"]),pt.oneOf(["white"]),pt.oneOf(["whitesmoke"]),pt.oneOf(["yellow"]),pt.oneOf(["yellowgreen"]),pt.oneOf(["ActiveBorder"]),pt.oneOf(["ActiveCaption"]),pt.oneOf(["AppWorkspace"]),pt.oneOf(["Background"]),pt.oneOf(["ButtonFace"]),pt.oneOf(["ButtonHighlight"]),pt.oneOf(["ButtonShadow"]),pt.oneOf(["ButtonText"]),pt.oneOf(["CaptionText"]),pt.oneOf(["GrayText"]),pt.oneOf(["Highlight"]),pt.oneOf(["HighlightText"]),pt.oneOf(["InactiveBorder"]),pt.oneOf(["InactiveCaption"]),pt.oneOf(["InactiveCaptionText"]),pt.oneOf(["InfoBackground"]),pt.oneOf(["InfoText"]),pt.oneOf(["Menu"]),pt.oneOf(["MenuText"]),pt.oneOf(["Scrollbar"]),pt.oneOf(["ThreeDDarkShadow"]),pt.oneOf(["ThreeDFace"]),pt.oneOf(["ThreeDHighlight"]),pt.oneOf(["ThreeDLightShadow"]),pt.oneOf(["ThreeDShadow"]),pt.oneOf(["Window"]),pt.oneOf(["WindowFrame"]),pt.oneOf(["WindowText"]),pt.oneOf(["currentcolor"])]),blur:pt.oneOfType([pt.string,pt.number]),gradient:pt.string}),withOverlay:pt.bool,padding:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),title:pt.node,withCloseButton:pt.bool,closeButtonProps:pt.shape({size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,ButtonProps:pt.object,hiddenFrom:pt.string,visibleFrom:pt.string,mod:pt.oneOfType([pt.string,pt.object,pt.arrayOf(pt.oneOfType([pt.string,pt.object]))]),m:pt.oneOfType([pt.string,pt.number,pt.object]),my:pt.oneOfType([pt.string,pt.number,pt.object]),mx:pt.oneOfType([pt.string,pt.number,pt.object]),mt:pt.oneOfType([pt.string,pt.number,pt.object]),mb:pt.oneOfType([pt.string,pt.number,pt.object]),ms:pt.oneOfType([pt.string,pt.number,pt.object]),me:pt.oneOfType([pt.string,pt.number,pt.object]),ml:pt.oneOfType([pt.string,pt.number,pt.object]),mr:pt.oneOfType([pt.string,pt.number,pt.object]),p:pt.oneOfType([pt.string,pt.number,pt.object]),py:pt.oneOfType([pt.string,pt.number,pt.object]),px:pt.oneOfType([pt.string,pt.number,pt.object]),pt:pt.oneOfType([pt.string,pt.number,pt.object]),pb:pt.oneOfType([pt.string,pt.number,pt.object]),ps:pt.oneOfType([pt.string,pt.number,pt.object]),pe:pt.oneOfType([pt.string,pt.number,pt.object]),pl:pt.oneOfType([pt.string,pt.number,pt.object]),pr:pt.oneOfType([pt.string,pt.number,pt.object]),bd:pt.oneOfType([pt.string,pt.number,pt.object]),bdrs:pt.oneOfType([pt.string,pt.number,pt.object]),bg:pt.oneOfType([pt.string,pt.object]),c:pt.oneOfType([pt.string,pt.object]),opacity:pt.oneOfType([pt.string,pt.number,pt.object]),ff:pt.oneOfType([pt.string,pt.object]),fz:pt.oneOfType([pt.string,pt.number,pt.object]),fw:pt.oneOfType([pt.number,pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number,pt.object]),ta:pt.oneOfType([pt.object,pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.string,pt.number,pt.object]),fs:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number,pt.object]),w:pt.oneOfType([pt.string,pt.number,pt.object]),miw:pt.oneOfType([pt.string,pt.number,pt.object]),maw:pt.oneOfType([pt.string,pt.number,pt.object]),h:pt.oneOfType([pt.string,pt.number,pt.object]),mih:pt.oneOfType([pt.string,pt.number,pt.object]),mah:pt.oneOfType([pt.string,pt.number,pt.object]),bgsz:pt.oneOfType([pt.string,pt.number,pt.object]),bgp:pt.oneOfType([pt.string,pt.number,pt.object]),bgr:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.object,pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.object,pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number,pt.object]),left:pt.oneOfType([pt.string,pt.number,pt.object]),bottom:pt.oneOfType([pt.string,pt.number,pt.object]),right:pt.oneOfType([pt.string,pt.number,pt.object]),inset:pt.oneOfType([pt.string,pt.number,pt.object]),display:pt.oneOfType([pt.object,pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number,pt.object]),className:pt.string,style:pt.oneOfType([pt.any]),lightHidden:pt.bool,darkHidden:pt.bool}),yOffset:pt.oneOfType([pt.string,pt.number]),xOffset:pt.oneOfType([pt.string,pt.number]),centered:pt.bool,fullScreen:pt.bool,lockScroll:pt.bool,removeScrollProps:pt.object}),
|
|
13825
14199
|
clearable:pt.bool,
|
|
13826
|
-
clearButtonProps:pt.shape({size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node}),
|
|
14200
|
+
clearButtonProps:pt.shape({size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,ButtonProps:pt.object}),
|
|
13827
14201
|
readOnly:pt.bool,
|
|
13828
14202
|
sortDates:pt.bool,
|
|
13829
14203
|
labelSeparator:pt.string,
|
|
@@ -14898,6 +15272,7 @@ pk.DirectionProvider.propTypes = {children:pt.node,
|
|
|
14898
15272
|
persisted_props:pt.arrayOf(pt.string),
|
|
14899
15273
|
persistence_type:pt.oneOf(['local','session','memory'])};
|
|
14900
15274
|
pk.MantineProvider.propTypes = {id:pt.string,
|
|
15275
|
+
getStyleNonce:pt.any,
|
|
14901
15276
|
theme:pt.shape({focusRing:pt.oneOf(['auto','always','never']),scale:pt.number,fontSmoothing:pt.bool,white:pt.string,black:pt.string,colors:pt.objectOf(pt.objectOf(pt.string)),primaryShade:pt.oneOfType([pt.oneOf([1]),pt.oneOf([2]),pt.oneOf([3]),pt.oneOf([4]),pt.oneOf([5]),pt.oneOf([6]),pt.oneOf([7]),pt.oneOf([8]),pt.oneOf([9]),pt.shape({light:pt.oneOf([0,1,2,3,4,5,6,7,8,9]),dark:pt.oneOf([0,1,2,3,4,5,6,7,8,9])})]),primaryColor:pt.string,variantColorResolver:pt.shape({}),autoContrast:pt.bool,luminanceThreshold:pt.number,fontFamily:pt.string,fontFamilyMonospace:pt.string,headings:pt.shape({fontFamily:pt.string,fontWeight:pt.string,textWrap:pt.oneOf(['wrap','nowrap','balance','pretty','stable']),sizes:pt.shape({h1:pt.shape({fontSize:pt.string,fontWeight:pt.string,lineHeight:pt.string}),h2:pt.shape({fontSize:pt.string,fontWeight:pt.string,lineHeight:pt.string}),h3:pt.shape({fontSize:pt.string,fontWeight:pt.string,lineHeight:pt.string}),h4:pt.shape({fontSize:pt.string,fontWeight:pt.string,lineHeight:pt.string}),h5:pt.shape({fontSize:pt.string,fontWeight:pt.string,lineHeight:pt.string}),h6:pt.shape({fontSize:pt.string,fontWeight:pt.string,lineHeight:pt.string})})}),radius:pt.objectOf(pt.string),defaultRadius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),spacing:pt.objectOf(pt.string),fontSizes:pt.objectOf(pt.string),lineHeights:pt.objectOf(pt.string),breakpoints:pt.objectOf(pt.string),shadows:pt.objectOf(pt.string),respectReducedMotion:pt.bool,cursorType:pt.oneOf(['default','pointer']),defaultGradient:pt.shape({from:pt.string,to:pt.string,deg:pt.number}),activeClassName:pt.string,focusClassName:pt.string,components:pt.objectOf(pt.shape({classNames:pt.any,styles:pt.any,vars:pt.any,defaultProps:pt.any})),other:pt.objectOf(pt.any)}),
|
|
14902
15277
|
colorSchemeManager:pt.shape({get:pt.any,set:pt.any,subscribe:pt.any,unsubscribe:pt.any,clear:pt.any}),
|
|
14903
15278
|
defaultColorScheme:pt.oneOf(['auto','dark','light']),
|
|
@@ -14907,7 +15282,6 @@ pk.MantineProvider.propTypes = {id:pt.string,
|
|
|
14907
15282
|
deduplicateCssVariables:pt.bool,
|
|
14908
15283
|
getRootElement:pt.any,
|
|
14909
15284
|
classNamesPrefix:pt.string,
|
|
14910
|
-
getStyleNonce:pt.any,
|
|
14911
15285
|
cssVariablesResolver:pt.shape({}),
|
|
14912
15286
|
withStaticClasses:pt.bool,
|
|
14913
15287
|
withGlobalClasses:pt.bool,
|