dash_mantine_components 1.3.0 → 2.0.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-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 +528 -66
- package/package.json +17 -16
|
@@ -105,6 +105,7 @@ pk.AreaChart.propTypes = {data:pt.arrayOf(pt.shape({})),
|
|
|
105
105
|
withRightYAxis:pt.bool,
|
|
106
106
|
rightYAxisProps:pt.any,
|
|
107
107
|
rightYAxisLabel:pt.any,
|
|
108
|
+
valueFormatter:pt.any,
|
|
108
109
|
classNames:pt.object,
|
|
109
110
|
styles:pt.any,
|
|
110
111
|
unstyled:pt.bool,
|
|
@@ -132,6 +133,7 @@ pk.BarChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
|
132
133
|
minBarSize:pt.number,
|
|
133
134
|
maxBarWidth:pt.number,
|
|
134
135
|
barLabelColor: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"])]),
|
|
136
|
+
getBarColor:pt.any,
|
|
135
137
|
className:pt.string,
|
|
136
138
|
style:pt.any,
|
|
137
139
|
hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -212,6 +214,7 @@ pk.BarChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
|
212
214
|
withRightYAxis:pt.bool,
|
|
213
215
|
rightYAxisProps:pt.any,
|
|
214
216
|
rightYAxisLabel:pt.any,
|
|
217
|
+
valueFormatter:pt.any,
|
|
215
218
|
classNames:pt.object,
|
|
216
219
|
styles:pt.any,
|
|
217
220
|
unstyled:pt.bool,
|
|
@@ -382,6 +385,8 @@ pk.CompositeChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
|
382
385
|
inset:pt.oneOfType([pt.string,pt.number]),
|
|
383
386
|
display:pt.oneOfType([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"])]),
|
|
384
387
|
flex:pt.oneOfType([pt.string,pt.number]),
|
|
388
|
+
valueFormatter:pt.any,
|
|
389
|
+
tooltipProps:pt.object,
|
|
385
390
|
dataKey:pt.string,
|
|
386
391
|
referenceLines:pt.arrayOf(pt.object),
|
|
387
392
|
withXAxis:pt.bool,
|
|
@@ -395,7 +400,6 @@ pk.CompositeChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
|
395
400
|
unit:pt.string,
|
|
396
401
|
tooltipAnimationDuration:pt.number,
|
|
397
402
|
legendProps:pt.object,
|
|
398
|
-
tooltipProps:pt.object,
|
|
399
403
|
withLegend:pt.bool,
|
|
400
404
|
withTooltip:pt.bool,
|
|
401
405
|
textColor: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"])]),
|
|
@@ -604,6 +608,7 @@ pk.LineChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
|
604
608
|
withRightYAxis:pt.bool,
|
|
605
609
|
rightYAxisProps:pt.any,
|
|
606
610
|
rightYAxisLabel:pt.any,
|
|
611
|
+
valueFormatter:pt.any,
|
|
607
612
|
classNames:pt.object,
|
|
608
613
|
styles:pt.any,
|
|
609
614
|
unstyled:pt.bool,
|
|
@@ -853,6 +858,8 @@ pk.ScatterChart.propTypes = {dataKey:pt.shape({x:pt.string,y:pt.string}),
|
|
|
853
858
|
inset:pt.oneOfType([pt.string,pt.number]),
|
|
854
859
|
display:pt.oneOfType([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"])]),
|
|
855
860
|
flex:pt.oneOfType([pt.string,pt.number]),
|
|
861
|
+
valueFormatter:pt.any,
|
|
862
|
+
tooltipProps:pt.object,
|
|
856
863
|
referenceLines:pt.arrayOf(pt.object),
|
|
857
864
|
withXAxis:pt.bool,
|
|
858
865
|
withYAxis:pt.bool,
|
|
@@ -864,7 +871,6 @@ pk.ScatterChart.propTypes = {dataKey:pt.shape({x:pt.string,y:pt.string}),
|
|
|
864
871
|
gridAxis:pt.oneOf(["'none'", "'x'", "'y'", "'xy'"]),
|
|
865
872
|
tooltipAnimationDuration:pt.number,
|
|
866
873
|
legendProps:pt.object,
|
|
867
|
-
tooltipProps:pt.object,
|
|
868
874
|
withLegend:pt.bool,
|
|
869
875
|
withTooltip:pt.bool,
|
|
870
876
|
textColor: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"])]),
|
|
@@ -1062,6 +1068,7 @@ pk.AreaChart.propTypes = {data:pt.arrayOf(pt.shape({})),
|
|
|
1062
1068
|
withRightYAxis:pt.bool,
|
|
1063
1069
|
rightYAxisProps:pt.any,
|
|
1064
1070
|
rightYAxisLabel:pt.any,
|
|
1071
|
+
valueFormatter:pt.any,
|
|
1065
1072
|
classNames:pt.object,
|
|
1066
1073
|
styles:pt.any,
|
|
1067
1074
|
unstyled:pt.bool,
|
|
@@ -1089,6 +1096,7 @@ pk.BarChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
|
1089
1096
|
minBarSize:pt.number,
|
|
1090
1097
|
maxBarWidth:pt.number,
|
|
1091
1098
|
barLabelColor: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"])]),
|
|
1099
|
+
getBarColor:pt.any,
|
|
1092
1100
|
className:pt.string,
|
|
1093
1101
|
style:pt.any,
|
|
1094
1102
|
hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -1169,6 +1177,7 @@ pk.BarChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
|
1169
1177
|
withRightYAxis:pt.bool,
|
|
1170
1178
|
rightYAxisProps:pt.any,
|
|
1171
1179
|
rightYAxisLabel:pt.any,
|
|
1180
|
+
valueFormatter:pt.any,
|
|
1172
1181
|
classNames:pt.object,
|
|
1173
1182
|
styles:pt.any,
|
|
1174
1183
|
unstyled:pt.bool,
|
|
@@ -1362,6 +1371,7 @@ pk.CompositeChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
|
1362
1371
|
withRightYAxis:pt.bool,
|
|
1363
1372
|
rightYAxisProps:pt.any,
|
|
1364
1373
|
rightYAxisLabel:pt.any,
|
|
1374
|
+
valueFormatter:pt.any,
|
|
1365
1375
|
classNames:pt.object,
|
|
1366
1376
|
styles:pt.any,
|
|
1367
1377
|
unstyled:pt.bool,
|
|
@@ -1561,6 +1571,7 @@ pk.LineChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
|
1561
1571
|
withRightYAxis:pt.bool,
|
|
1562
1572
|
rightYAxisProps:pt.any,
|
|
1563
1573
|
rightYAxisLabel:pt.any,
|
|
1574
|
+
valueFormatter:pt.any,
|
|
1564
1575
|
classNames:pt.object,
|
|
1565
1576
|
styles:pt.any,
|
|
1566
1577
|
unstyled:pt.bool,
|
|
@@ -1832,6 +1843,7 @@ pk.ScatterChart.propTypes = {dataKey:pt.shape({x:pt.string,y:pt.string}),
|
|
|
1832
1843
|
withRightYAxis:pt.bool,
|
|
1833
1844
|
rightYAxisProps:pt.any,
|
|
1834
1845
|
rightYAxisLabel:pt.any,
|
|
1846
|
+
valueFormatter:pt.any,
|
|
1835
1847
|
classNames:pt.object,
|
|
1836
1848
|
styles:pt.any,
|
|
1837
1849
|
unstyled:pt.bool,
|
|
@@ -3763,7 +3775,7 @@ pk.ChipGroup.propTypes = {multiple:pt.bool,
|
|
|
3763
3775
|
pk.ChipGroupContext.propTypes = {};
|
|
3764
3776
|
pk.ColorInput.propTypes = {disallowInput:pt.bool,
|
|
3765
3777
|
fixOnBlur:pt.bool,
|
|
3766
|
-
popoverProps:pt.shape({children:pt.node,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles: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.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.bool,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.any,size:pt.oneOfType([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]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,returnFocus:pt.bool,floatingStrategy:pt.oneOf(["'absolute'", "'fixed'"]),overlayProps:pt.object,withOverlay:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string}),
|
|
3778
|
+
popoverProps:pt.shape({children:pt.node,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.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.bool,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.any,size:pt.oneOfType([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]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,returnFocus:pt.bool,floatingStrategy:pt.oneOf(["'absolute'", "'fixed'"]),overlayProps:pt.object,withOverlay:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string}),
|
|
3767
3779
|
withPreview:pt.bool,
|
|
3768
3780
|
withEyeDropper:pt.bool,
|
|
3769
3781
|
eyeDropperIcon:pt.node,
|
|
@@ -4042,6 +4054,8 @@ pk.Autocomplete.propTypes = {data:pt.oneOfType([pt.arrayOf(pt.oneOfType([pt.stri
|
|
|
4042
4054
|
limit:pt.number,
|
|
4043
4055
|
withScrollArea:pt.bool,
|
|
4044
4056
|
maxDropdownHeight:pt.oneOfType([pt.string,pt.number]),
|
|
4057
|
+
renderOption:pt.any,
|
|
4058
|
+
filter:pt.any,
|
|
4045
4059
|
classNames:pt.object,
|
|
4046
4060
|
styles:pt.any,
|
|
4047
4061
|
unstyled:pt.bool,
|
|
@@ -4158,6 +4172,8 @@ pk.MultiSelect.propTypes = {value:pt.arrayOf(pt.string),
|
|
|
4158
4172
|
limit:pt.number,
|
|
4159
4173
|
withScrollArea:pt.bool,
|
|
4160
4174
|
maxDropdownHeight:pt.oneOfType([pt.string,pt.number]),
|
|
4175
|
+
renderOption:pt.any,
|
|
4176
|
+
filter:pt.any,
|
|
4161
4177
|
classNames:pt.object,
|
|
4162
4178
|
styles:pt.any,
|
|
4163
4179
|
unstyled:pt.bool,
|
|
@@ -4275,6 +4291,8 @@ pk.Select.propTypes = {value:pt.string,
|
|
|
4275
4291
|
limit:pt.number,
|
|
4276
4292
|
withScrollArea:pt.bool,
|
|
4277
4293
|
maxDropdownHeight:pt.oneOfType([pt.string,pt.number]),
|
|
4294
|
+
renderOption:pt.any,
|
|
4295
|
+
filter:pt.any,
|
|
4278
4296
|
classNames:pt.object,
|
|
4279
4297
|
styles:pt.any,
|
|
4280
4298
|
unstyled:pt.bool,
|
|
@@ -4392,6 +4410,8 @@ pk.TagsInput.propTypes = {data:pt.oneOfType([pt.arrayOf(pt.oneOfType([pt.string]
|
|
|
4392
4410
|
limit:pt.number,
|
|
4393
4411
|
withScrollArea:pt.bool,
|
|
4394
4412
|
maxDropdownHeight:pt.oneOfType([pt.string,pt.number]),
|
|
4413
|
+
renderOption:pt.any,
|
|
4414
|
+
filter:pt.any,
|
|
4395
4415
|
classNames:pt.object,
|
|
4396
4416
|
styles:pt.any,
|
|
4397
4417
|
unstyled:pt.bool,
|
|
@@ -4558,6 +4578,7 @@ pk.HoverCard.propTypes = {openDelay:pt.number,
|
|
|
4558
4578
|
trapFocus:pt.bool,
|
|
4559
4579
|
closeOnEscape:pt.bool,
|
|
4560
4580
|
withRoles:pt.bool,
|
|
4581
|
+
hideDetached:pt.bool,
|
|
4561
4582
|
position:pt.oneOf(["'top'", "'right'", "'bottom'", "'left'", "'top-end'", "'top-start'", "'right-end'", "'right-start'", "'bottom-end'", "'bottom-start'", "'left-end'", "'left-start'"]),
|
|
4562
4583
|
offset:pt.oneOfType([pt.number]),
|
|
4563
4584
|
positionDependencies:pt.arrayOf(pt.any),
|
|
@@ -5967,6 +5988,192 @@ pk.MenuLabel.propTypes = {children:pt.node,
|
|
|
5967
5988
|
variant:pt.string};
|
|
5968
5989
|
pk.MenuTarget.propTypes = {children:pt.node,
|
|
5969
5990
|
boxWrapperProps:pt.shape({top:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bg: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"])]),c: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"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([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]),ta:pt.oneOfType([pt.oneOf(["right"]),pt.oneOf(["left"]),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.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([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.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]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([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.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.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"])]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([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(["flex"]),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])})};
|
|
5991
|
+
pk.SubMenu.propTypes = {variant:pt.string,
|
|
5992
|
+
children:pt.node,
|
|
5993
|
+
opened:pt.bool,
|
|
5994
|
+
defaultOpened:pt.bool,
|
|
5995
|
+
trapFocus:pt.bool,
|
|
5996
|
+
closeOnItemClick:pt.bool,
|
|
5997
|
+
loop:pt.bool,
|
|
5998
|
+
closeOnEscape:pt.bool,
|
|
5999
|
+
trigger:pt.oneOf(["'click'", "'hover'", "'click-hover'"]),
|
|
6000
|
+
openDelay:pt.number,
|
|
6001
|
+
closeDelay:pt.number,
|
|
6002
|
+
closeOnClickOutside:pt.bool,
|
|
6003
|
+
clickOutsideEvents:pt.arrayOf(pt.string),
|
|
6004
|
+
menuItemTabIndex:pt.oneOf([0, -1]),
|
|
6005
|
+
id:pt.string,
|
|
6006
|
+
setProps:pt.any,
|
|
6007
|
+
position:pt.oneOf(["'top'", "'right'", "'bottom'", "'left'", "'top-end'", "'top-start'", "'right-end'", "'right-start'", "'bottom-end'", "'bottom-start'", "'left-end'", "'left-start'"]),
|
|
6008
|
+
offset:pt.oneOfType([pt.number]),
|
|
6009
|
+
positionDependencies:pt.arrayOf(pt.any),
|
|
6010
|
+
keepMounted:pt.bool,
|
|
6011
|
+
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}),
|
|
6012
|
+
width:pt.oneOfType([pt.string,pt.number]),
|
|
6013
|
+
middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.bool,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,right:pt.number,bottom:pt.number,left:pt.number})]),fallbackPlacements:pt.arrayOf(pt.oneOf(["'top'", "'right'", "'bottom'", "'left'", "'top-end'", "'top-start'", "'right-end'", "'right-start'", "'bottom-end'", "'bottom-start'", "'left-end'", "'left-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.any,size:pt.oneOfType([pt.any])}),
|
|
6014
|
+
withArrow:pt.bool,
|
|
6015
|
+
arrowSize:pt.number,
|
|
6016
|
+
arrowOffset:pt.number,
|
|
6017
|
+
arrowRadius:pt.number,
|
|
6018
|
+
arrowPosition:pt.oneOf(["'center'", "'side'"]),
|
|
6019
|
+
withinPortal:pt.bool,
|
|
6020
|
+
portalProps:pt.object,
|
|
6021
|
+
zIndex:pt.oneOfType([pt.string,pt.number]),
|
|
6022
|
+
radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6023
|
+
shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6024
|
+
disabled:pt.bool,
|
|
6025
|
+
returnFocus:pt.bool,
|
|
6026
|
+
floatingStrategy:pt.oneOf(["'absolute'", "'fixed'"]),
|
|
6027
|
+
overlayProps:pt.object,
|
|
6028
|
+
withOverlay:pt.bool,
|
|
6029
|
+
classNames:pt.object,
|
|
6030
|
+
styles:pt.any,
|
|
6031
|
+
unstyled:pt.bool};
|
|
6032
|
+
pk.SubMenuDropdown.propTypes = {children:pt.node,
|
|
6033
|
+
top:pt.oneOfType([pt.string,pt.number]),
|
|
6034
|
+
right:pt.oneOfType([pt.string,pt.number]),
|
|
6035
|
+
bottom:pt.oneOfType([pt.string,pt.number]),
|
|
6036
|
+
left:pt.oneOfType([pt.string,pt.number]),
|
|
6037
|
+
className:pt.string,
|
|
6038
|
+
style:pt.any,
|
|
6039
|
+
hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6040
|
+
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6041
|
+
lightHidden:pt.bool,
|
|
6042
|
+
darkHidden:pt.bool,
|
|
6043
|
+
mod:pt.oneOfType([pt.string]),
|
|
6044
|
+
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6045
|
+
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6046
|
+
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6047
|
+
mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6048
|
+
mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6049
|
+
ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6050
|
+
me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6051
|
+
ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6052
|
+
mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6053
|
+
p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6054
|
+
py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6055
|
+
px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6056
|
+
pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6057
|
+
pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6058
|
+
ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6059
|
+
pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6060
|
+
pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6061
|
+
pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6062
|
+
bd:pt.oneOfType([pt.string,pt.number]),
|
|
6063
|
+
bg: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"])]),
|
|
6064
|
+
c: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"])]),
|
|
6065
|
+
opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),
|
|
6066
|
+
ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),
|
|
6067
|
+
fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),
|
|
6068
|
+
fw:pt.oneOfType([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"])]),
|
|
6069
|
+
lts:pt.oneOfType([pt.string,pt.number]),
|
|
6070
|
+
ta:pt.oneOfType([pt.oneOf(["right"]),pt.oneOf(["left"]),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"])]),
|
|
6071
|
+
lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),
|
|
6072
|
+
fs:pt.oneOfType([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"])]),
|
|
6073
|
+
tt:pt.oneOfType([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"])]),
|
|
6074
|
+
td:pt.oneOfType([pt.string,pt.number]),
|
|
6075
|
+
w:pt.oneOfType([pt.string,pt.number]),
|
|
6076
|
+
miw:pt.oneOfType([pt.string,pt.number]),
|
|
6077
|
+
maw:pt.oneOfType([pt.string,pt.number]),
|
|
6078
|
+
h:pt.oneOfType([pt.string,pt.number]),
|
|
6079
|
+
mih:pt.oneOfType([pt.string,pt.number]),
|
|
6080
|
+
mah:pt.oneOfType([pt.string,pt.number]),
|
|
6081
|
+
bgsz:pt.oneOfType([pt.string,pt.number]),
|
|
6082
|
+
bgp:pt.oneOfType([pt.string,pt.number]),
|
|
6083
|
+
bgr:pt.oneOfType([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"])]),
|
|
6084
|
+
bga:pt.oneOfType([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"])]),
|
|
6085
|
+
pos:pt.oneOfType([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"])]),
|
|
6086
|
+
inset:pt.oneOfType([pt.string,pt.number]),
|
|
6087
|
+
display:pt.oneOfType([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(["flex"]),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"])]),
|
|
6088
|
+
flex:pt.oneOfType([pt.string,pt.number]),
|
|
6089
|
+
id:pt.string,
|
|
6090
|
+
setProps:pt.any,
|
|
6091
|
+
data-*:pt.string,
|
|
6092
|
+
aria-*:pt.string,
|
|
6093
|
+
tabIndex:pt.number,
|
|
6094
|
+
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string}),
|
|
6095
|
+
classNames:pt.object,
|
|
6096
|
+
styles:pt.any,
|
|
6097
|
+
unstyled:pt.bool,
|
|
6098
|
+
variant:pt.string};
|
|
6099
|
+
pk.SubMenuItem.propTypes = {children:pt.node,
|
|
6100
|
+
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"])]),
|
|
6101
|
+
closeMenuOnClick:pt.bool,
|
|
6102
|
+
leftSection:pt.node,
|
|
6103
|
+
rightSection:pt.node,
|
|
6104
|
+
disabled:pt.bool,
|
|
6105
|
+
href:pt.string,
|
|
6106
|
+
n_clicks:pt.number,
|
|
6107
|
+
target:pt.oneOf(["'_blank'", "'_self'"]),
|
|
6108
|
+
refresh:pt.bool,
|
|
6109
|
+
top:pt.oneOfType([pt.string,pt.number]),
|
|
6110
|
+
right:pt.oneOfType([pt.string,pt.number]),
|
|
6111
|
+
bottom:pt.oneOfType([pt.string,pt.number]),
|
|
6112
|
+
left:pt.oneOfType([pt.string,pt.number]),
|
|
6113
|
+
className:pt.string,
|
|
6114
|
+
style:pt.any,
|
|
6115
|
+
hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6116
|
+
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6117
|
+
lightHidden:pt.bool,
|
|
6118
|
+
darkHidden:pt.bool,
|
|
6119
|
+
mod:pt.oneOfType([pt.string]),
|
|
6120
|
+
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6121
|
+
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6122
|
+
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6123
|
+
mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6124
|
+
mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6125
|
+
ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6126
|
+
me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6127
|
+
ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6128
|
+
mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6129
|
+
p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6130
|
+
py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6131
|
+
px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6132
|
+
pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6133
|
+
pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6134
|
+
ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6135
|
+
pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6136
|
+
pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6137
|
+
pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6138
|
+
bd:pt.oneOfType([pt.string,pt.number]),
|
|
6139
|
+
bg: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"])]),
|
|
6140
|
+
c: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"])]),
|
|
6141
|
+
opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),
|
|
6142
|
+
ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),
|
|
6143
|
+
fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),
|
|
6144
|
+
fw:pt.oneOfType([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"])]),
|
|
6145
|
+
lts:pt.oneOfType([pt.string,pt.number]),
|
|
6146
|
+
ta:pt.oneOfType([pt.oneOf(["right"]),pt.oneOf(["left"]),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"])]),
|
|
6147
|
+
lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),
|
|
6148
|
+
fs:pt.oneOfType([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"])]),
|
|
6149
|
+
tt:pt.oneOfType([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"])]),
|
|
6150
|
+
td:pt.oneOfType([pt.string,pt.number]),
|
|
6151
|
+
w:pt.oneOfType([pt.string,pt.number]),
|
|
6152
|
+
miw:pt.oneOfType([pt.string,pt.number]),
|
|
6153
|
+
maw:pt.oneOfType([pt.string,pt.number]),
|
|
6154
|
+
h:pt.oneOfType([pt.string,pt.number]),
|
|
6155
|
+
mih:pt.oneOfType([pt.string,pt.number]),
|
|
6156
|
+
mah:pt.oneOfType([pt.string,pt.number]),
|
|
6157
|
+
bgsz:pt.oneOfType([pt.string,pt.number]),
|
|
6158
|
+
bgp:pt.oneOfType([pt.string,pt.number]),
|
|
6159
|
+
bgr:pt.oneOfType([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"])]),
|
|
6160
|
+
bga:pt.oneOfType([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"])]),
|
|
6161
|
+
pos:pt.oneOfType([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"])]),
|
|
6162
|
+
inset:pt.oneOfType([pt.string,pt.number]),
|
|
6163
|
+
display:pt.oneOfType([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(["flex"]),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"])]),
|
|
6164
|
+
flex:pt.oneOfType([pt.string,pt.number]),
|
|
6165
|
+
id:pt.string,
|
|
6166
|
+
setProps:pt.any,
|
|
6167
|
+
data-*:pt.string,
|
|
6168
|
+
aria-*:pt.string,
|
|
6169
|
+
tabIndex:pt.number,
|
|
6170
|
+
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string}),
|
|
6171
|
+
classNames:pt.object,
|
|
6172
|
+
styles:pt.any,
|
|
6173
|
+
unstyled:pt.bool,
|
|
6174
|
+
variant:pt.string};
|
|
6175
|
+
pk.SubMenuTarget.propTypes = {children:pt.node,
|
|
6176
|
+
boxWrapperProps:pt.shape({top:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bg: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"])]),c: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"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([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]),ta:pt.oneOfType([pt.oneOf(["right"]),pt.oneOf(["left"]),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.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([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.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]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([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.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.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"])]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([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(["flex"]),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])})};
|
|
5970
6177
|
pk.Popover.propTypes = {children:pt.node,
|
|
5971
6178
|
opened:pt.bool,
|
|
5972
6179
|
closeOnClickOutside:pt.bool,
|
|
@@ -5974,6 +6181,7 @@ pk.Popover.propTypes = {children:pt.node,
|
|
|
5974
6181
|
trapFocus:pt.bool,
|
|
5975
6182
|
closeOnEscape:pt.bool,
|
|
5976
6183
|
withRoles:pt.bool,
|
|
6184
|
+
hideDetached:pt.bool,
|
|
5977
6185
|
position:pt.oneOf(["'top'", "'right'", "'bottom'", "'left'", "'top-end'", "'top-start'", "'right-end'", "'right-start'", "'bottom-end'", "'bottom-start'", "'left-end'", "'left-start'"]),
|
|
5978
6186
|
offset:pt.oneOfType([pt.number]),
|
|
5979
6187
|
positionDependencies:pt.arrayOf(pt.any),
|
|
@@ -6692,7 +6900,7 @@ pk.RangeSlider.propTypes = {color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gr
|
|
|
6692
6900
|
name:pt.string,
|
|
6693
6901
|
marks:pt.arrayOf(pt.shape({value:pt.number,label:pt.node})),
|
|
6694
6902
|
label:pt.node,
|
|
6695
|
-
labelTransitionProps: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(["
|
|
6903
|
+
labelTransitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["scale"]),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(["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}),
|
|
6696
6904
|
labelAlwaysOn:pt.bool,
|
|
6697
6905
|
showLabelOnHover:pt.bool,
|
|
6698
6906
|
thumbChildren:pt.node,
|
|
@@ -6705,6 +6913,7 @@ pk.RangeSlider.propTypes = {color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gr
|
|
|
6705
6913
|
thumbToLabel:pt.string,
|
|
6706
6914
|
updatemode:pt.oneOf(["'mouseup'", "'drag'"]),
|
|
6707
6915
|
restrictToMarks:pt.bool,
|
|
6916
|
+
scale:pt.any,
|
|
6708
6917
|
className:pt.string,
|
|
6709
6918
|
style:pt.any,
|
|
6710
6919
|
hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -6785,7 +6994,7 @@ pk.Slider.propTypes = {color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"])
|
|
|
6785
6994
|
name:pt.string,
|
|
6786
6995
|
marks:pt.arrayOf(pt.shape({value:pt.number,label:pt.node})),
|
|
6787
6996
|
label:pt.node,
|
|
6788
|
-
labelTransitionProps: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(["
|
|
6997
|
+
labelTransitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["scale"]),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(["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}),
|
|
6789
6998
|
labelAlwaysOn:pt.bool,
|
|
6790
6999
|
thumbLabel:pt.string,
|
|
6791
7000
|
showLabelOnHover:pt.bool,
|
|
@@ -6795,6 +7004,7 @@ pk.Slider.propTypes = {color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"])
|
|
|
6795
7004
|
inverted:pt.bool,
|
|
6796
7005
|
updatemode:pt.oneOf(["'mouseup'", "'drag'"]),
|
|
6797
7006
|
restrictToMarks:pt.bool,
|
|
7007
|
+
scale:pt.any,
|
|
6798
7008
|
className:pt.string,
|
|
6799
7009
|
style:pt.any,
|
|
6800
7010
|
hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -11161,6 +11371,7 @@ pk.Switch.propTypes = {label:pt.node,
|
|
|
11161
11371
|
error:pt.node,
|
|
11162
11372
|
disabled:pt.bool,
|
|
11163
11373
|
checked:pt.bool,
|
|
11374
|
+
withThumbIndicator:pt.bool,
|
|
11164
11375
|
className:pt.string,
|
|
11165
11376
|
style:pt.any,
|
|
11166
11377
|
hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -11596,16 +11807,15 @@ pk.VisuallyHidden.propTypes = {children:pt.node,
|
|
|
11596
11807
|
tabIndex:pt.number,
|
|
11597
11808
|
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
11598
11809
|
pk.DateInput.propTypes = {value:pt.string,
|
|
11599
|
-
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,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles: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.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.bool,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.any,size:pt.oneOfType([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}),
|
|
11810
|
+
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,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.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.bool,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.any,size:pt.oneOfType([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}),
|
|
11600
11811
|
clearable:pt.bool,
|
|
11601
11812
|
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}),
|
|
11602
11813
|
valueFormat:pt.string,
|
|
11603
11814
|
fixOnBlur:pt.bool,
|
|
11604
11815
|
allowDeselect:pt.bool,
|
|
11605
|
-
preserveTime:pt.bool,
|
|
11606
11816
|
maxLevel:pt.oneOf(["'month'", "'year'", "'decade'"]),
|
|
11607
11817
|
level:pt.oneOf(["'month'", "'year'", "'decade'"]),
|
|
11608
|
-
disabledDates:pt.
|
|
11818
|
+
disabledDates:pt.any,
|
|
11609
11819
|
highlightToday:pt.bool,
|
|
11610
11820
|
id:pt.string,
|
|
11611
11821
|
setProps:pt.any,
|
|
@@ -11727,15 +11937,13 @@ pk.DateInput.propTypes = {value:pt.string,
|
|
|
11727
11937
|
weekendDays:pt.arrayOf(pt.oneOf([0, 1, 2, 3, 4, 5, 6])),
|
|
11728
11938
|
hideOutsideDates:pt.bool,
|
|
11729
11939
|
hideWeekdays:pt.bool,
|
|
11940
|
+
withWeekNumbers:pt.bool,
|
|
11730
11941
|
classNames:pt.object,
|
|
11731
11942
|
styles:pt.any,
|
|
11732
11943
|
unstyled:pt.bool,
|
|
11733
11944
|
variant:pt.string};
|
|
11734
|
-
pk.DatePicker.propTypes = {
|
|
11735
|
-
|
|
11736
|
-
highlightToday:pt.bool,
|
|
11737
|
-
n_submit:pt.number,
|
|
11738
|
-
debounce:pt.oneOfType([pt.number]),
|
|
11945
|
+
pk.DatePicker.propTypes = {disabledDates:pt.arrayOf(pt.string),
|
|
11946
|
+
defaultDate:pt.string,
|
|
11739
11947
|
id:pt.string,
|
|
11740
11948
|
setProps:pt.any,
|
|
11741
11949
|
data-*:pt.string,
|
|
@@ -11801,40 +12009,6 @@ pk.DatePicker.propTypes = {valueFormat:pt.string,
|
|
|
11801
12009
|
inset:pt.oneOfType([pt.string,pt.number]),
|
|
11802
12010
|
display:pt.oneOfType([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"])]),
|
|
11803
12011
|
flex:pt.oneOfType([pt.string,pt.number]),
|
|
11804
|
-
closeOnChange:pt.bool,
|
|
11805
|
-
dropdownType:pt.oneOf(["'popover'", "'modal'"]),
|
|
11806
|
-
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,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles: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.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.bool,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.any,size:pt.oneOfType([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}),
|
|
11807
|
-
modalProps:pt.shape({className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bg: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"])]),c: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"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([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]),ta:pt.oneOfType([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.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([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.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]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([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.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.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]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([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]),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.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bg: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"])]),c: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"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([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]),ta:pt.oneOfType([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.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([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.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]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([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.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.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]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([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]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),unstyled:pt.bool,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,className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bg: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"])]),c: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"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([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]),ta:pt.oneOfType([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.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([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.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]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([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.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.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]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([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])}),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}),
|
|
11808
|
-
clearable:pt.bool,
|
|
11809
|
-
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}),
|
|
11810
|
-
readOnly:pt.bool,
|
|
11811
|
-
sortDates:pt.bool,
|
|
11812
|
-
labelSeparator:pt.string,
|
|
11813
|
-
placeholder:pt.string,
|
|
11814
|
-
wrapperProps:pt.objectOf(pt.any),
|
|
11815
|
-
leftSection:pt.node,
|
|
11816
|
-
leftSectionWidth:pt.oneOfType([pt.string,pt.number]),
|
|
11817
|
-
leftSectionProps:pt.object,
|
|
11818
|
-
leftSectionPointerEvents:pt.oneOf(["'-moz-initial'", "'inherit'", "'initial'", "'revert'", "'revert-layer'", "'unset'", "'auto'", "'none'", "'all'", "'fill'", "'painted'", "'stroke'", "'visible'", "'visibleFill'", "'visiblePainted'", "'visibleStroke'"]),
|
|
11819
|
-
rightSection:pt.node,
|
|
11820
|
-
rightSectionWidth:pt.oneOfType([pt.string,pt.number]),
|
|
11821
|
-
rightSectionProps:pt.object,
|
|
11822
|
-
rightSectionPointerEvents:pt.oneOf(["'-moz-initial'", "'inherit'", "'initial'", "'revert'", "'revert-layer'", "'unset'", "'auto'", "'none'", "'all'", "'fill'", "'painted'", "'stroke'", "'visible'", "'visibleFill'", "'visiblePainted'", "'visibleStroke'"]),
|
|
11823
|
-
required:pt.bool,
|
|
11824
|
-
radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11825
|
-
disabled:pt.bool,
|
|
11826
|
-
pointer:pt.bool,
|
|
11827
|
-
withErrorStyles:pt.bool,
|
|
11828
|
-
name:pt.string,
|
|
11829
|
-
inputProps:pt.objectOf(pt.any),
|
|
11830
|
-
label:pt.node,
|
|
11831
|
-
description:pt.node,
|
|
11832
|
-
error:pt.node,
|
|
11833
|
-
withAsterisk:pt.bool,
|
|
11834
|
-
labelProps:pt.objectOf(pt.any),
|
|
11835
|
-
descriptionProps:pt.objectOf(pt.any),
|
|
11836
|
-
errorProps:pt.objectOf(pt.any),
|
|
11837
|
-
inputWrapperOrder:pt.arrayOf(pt.oneOf(["'label'", "'description'", "'error'", "'input'"])),
|
|
11838
12012
|
maxLevel:pt.oneOf(["'month'", "'year'", "'decade'"]),
|
|
11839
12013
|
level:pt.oneOf(["'month'", "'year'", "'decade'"]),
|
|
11840
12014
|
type:pt.oneOf(["'default'", "'multiple'", "'range'"]),
|
|
@@ -11855,6 +12029,7 @@ pk.DatePicker.propTypes = {valueFormat:pt.string,
|
|
|
11855
12029
|
weekendDays:pt.arrayOf(pt.oneOf([0, 1, 2, 3, 4, 5, 6])),
|
|
11856
12030
|
hideOutsideDates:pt.bool,
|
|
11857
12031
|
hideWeekdays:pt.bool,
|
|
12032
|
+
withWeekNumbers:pt.bool,
|
|
11858
12033
|
numberOfColumns:pt.number,
|
|
11859
12034
|
columnsToScroll:pt.number,
|
|
11860
12035
|
ariaLabels:pt.shape({monthLevelControl:pt.string,yearLevelControl:pt.string,nextMonth:pt.string,previousMonth:pt.string,nextYear:pt.string,previousYear:pt.string,nextDecade:pt.string,previousDecade:pt.string}),
|
|
@@ -11868,7 +12043,7 @@ pk.DatePicker.propTypes = {valueFormat:pt.string,
|
|
|
11868
12043
|
unstyled:pt.bool,
|
|
11869
12044
|
variant:pt.string};
|
|
11870
12045
|
pk.DatePickerInput.propTypes = {valueFormat:pt.string,
|
|
11871
|
-
disabledDates:pt.
|
|
12046
|
+
disabledDates:pt.any,
|
|
11872
12047
|
highlightToday:pt.bool,
|
|
11873
12048
|
n_submit:pt.number,
|
|
11874
12049
|
debounce:pt.oneOfType([pt.number]),
|
|
@@ -11939,7 +12114,7 @@ pk.DatePickerInput.propTypes = {valueFormat:pt.string,
|
|
|
11939
12114
|
flex:pt.oneOfType([pt.string,pt.number]),
|
|
11940
12115
|
closeOnChange:pt.bool,
|
|
11941
12116
|
dropdownType:pt.oneOf(["'popover'", "'modal'"]),
|
|
11942
|
-
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,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles: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.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.bool,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.any,size:pt.oneOfType([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}),
|
|
12117
|
+
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,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.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.bool,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.any,size:pt.oneOfType([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}),
|
|
11943
12118
|
modalProps:pt.shape({className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bg: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"])]),c: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"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([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]),ta:pt.oneOfType([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.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([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.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]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([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.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.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]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([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]),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.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bg: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"])]),c: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"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([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]),ta:pt.oneOfType([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.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([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.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]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([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.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.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]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([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]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),unstyled:pt.bool,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,className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bg: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"])]),c: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"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([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]),ta:pt.oneOfType([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.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([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.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]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([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.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.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]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([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])}),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}),
|
|
11944
12119
|
clearable:pt.bool,
|
|
11945
12120
|
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}),
|
|
@@ -11991,6 +12166,7 @@ pk.DatePickerInput.propTypes = {valueFormat:pt.string,
|
|
|
11991
12166
|
weekendDays:pt.arrayOf(pt.oneOf([0, 1, 2, 3, 4, 5, 6])),
|
|
11992
12167
|
hideOutsideDates:pt.bool,
|
|
11993
12168
|
hideWeekdays:pt.bool,
|
|
12169
|
+
withWeekNumbers:pt.bool,
|
|
11994
12170
|
numberOfColumns:pt.number,
|
|
11995
12171
|
columnsToScroll:pt.number,
|
|
11996
12172
|
ariaLabels:pt.shape({monthLevelControl:pt.string,yearLevelControl:pt.string,nextMonth:pt.string,previousMonth:pt.string,nextYear:pt.string,previousYear:pt.string,nextDecade:pt.string,previousDecade:pt.string}),
|
|
@@ -12005,10 +12181,10 @@ pk.DatePickerInput.propTypes = {valueFormat:pt.string,
|
|
|
12005
12181
|
variant:pt.string};
|
|
12006
12182
|
pk.DateTimePicker.propTypes = {valueFormat:pt.string,
|
|
12007
12183
|
value:pt.string,
|
|
12008
|
-
|
|
12184
|
+
timePickerProps:pt.object,
|
|
12009
12185
|
submitButtonProps:pt.any,
|
|
12010
12186
|
withSeconds:pt.bool,
|
|
12011
|
-
disabledDates:pt.
|
|
12187
|
+
disabledDates:pt.any,
|
|
12012
12188
|
n_submit:pt.number,
|
|
12013
12189
|
debounce:pt.number,
|
|
12014
12190
|
highlightToday:pt.bool,
|
|
@@ -12103,7 +12279,7 @@ pk.DateTimePicker.propTypes = {valueFormat:pt.string,
|
|
|
12103
12279
|
descriptionProps:pt.objectOf(pt.any),
|
|
12104
12280
|
errorProps:pt.objectOf(pt.any),
|
|
12105
12281
|
inputWrapperOrder:pt.arrayOf(pt.oneOf(["'label'", "'description'", "'error'", "'input'"])),
|
|
12106
|
-
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,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles: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.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.bool,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.any,size:pt.oneOfType([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}),
|
|
12282
|
+
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,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.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.bool,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.any,size:pt.oneOfType([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}),
|
|
12107
12283
|
clearable:pt.bool,
|
|
12108
12284
|
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}),
|
|
12109
12285
|
dropdownType:pt.oneOf(["'popover'", "'modal'"]),
|
|
@@ -12133,16 +12309,16 @@ pk.DateTimePicker.propTypes = {valueFormat:pt.string,
|
|
|
12133
12309
|
weekendDays:pt.arrayOf(pt.oneOf([0, 1, 2, 3, 4, 5, 6])),
|
|
12134
12310
|
hideOutsideDates:pt.bool,
|
|
12135
12311
|
hideWeekdays:pt.bool,
|
|
12312
|
+
withWeekNumbers:pt.bool,
|
|
12136
12313
|
classNames:pt.object,
|
|
12137
12314
|
styles:pt.any,
|
|
12138
12315
|
unstyled:pt.bool,
|
|
12139
12316
|
variant:pt.string};
|
|
12140
12317
|
pk.DatesProvider.propTypes = {id:pt.string,
|
|
12141
12318
|
setProps:pt.any,
|
|
12142
|
-
settings:pt.shape({locale:pt.string,
|
|
12319
|
+
settings:pt.shape({locale:pt.string,firstDayOfWeek:pt.oneOf([0, 1, 2, 3, 4, 5, 6]),weekendDays:pt.arrayOf(pt.oneOf([0, 1, 2, 3, 4, 5, 6])),labelSeparator:pt.string,consistentWeeks:pt.bool}),
|
|
12143
12320
|
children:pt.node};
|
|
12144
12321
|
pk.MonthPickerInput.propTypes = {valueFormat:pt.string,
|
|
12145
|
-
disabledDates:pt.arrayOf(pt.string),
|
|
12146
12322
|
n_submit:pt.number,
|
|
12147
12323
|
debounce:pt.oneOfType([pt.number]),
|
|
12148
12324
|
id:pt.string,
|
|
@@ -12212,7 +12388,7 @@ pk.MonthPickerInput.propTypes = {valueFormat:pt.string,
|
|
|
12212
12388
|
flex:pt.oneOfType([pt.string,pt.number]),
|
|
12213
12389
|
closeOnChange:pt.bool,
|
|
12214
12390
|
dropdownType:pt.oneOf(["'popover'", "'modal'"]),
|
|
12215
|
-
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,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles: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.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.bool,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.any,size:pt.oneOfType([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}),
|
|
12391
|
+
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,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.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.bool,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.any,size:pt.oneOfType([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}),
|
|
12216
12392
|
modalProps:pt.shape({className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bg: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"])]),c: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"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([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]),ta:pt.oneOfType([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.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([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.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]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([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.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.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]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([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]),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.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bg: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"])]),c: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"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([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]),ta:pt.oneOfType([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.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([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.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]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([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.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.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]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([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]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),unstyled:pt.bool,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,className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bg: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"])]),c: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"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([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]),ta:pt.oneOfType([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.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([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.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]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([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.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.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]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([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])}),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}),
|
|
12217
12393
|
clearable:pt.bool,
|
|
12218
12394
|
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}),
|
|
@@ -12272,6 +12448,91 @@ pk.MonthPickerInput.propTypes = {valueFormat:pt.string,
|
|
|
12272
12448
|
weekendDays:pt.arrayOf(pt.oneOf([0, 1, 2, 3, 4, 5, 6])),
|
|
12273
12449
|
hideOutsideDates:pt.bool,
|
|
12274
12450
|
hideWeekdays:pt.bool,
|
|
12451
|
+
withWeekNumbers:pt.bool,
|
|
12452
|
+
classNames:pt.object,
|
|
12453
|
+
styles:pt.any,
|
|
12454
|
+
unstyled:pt.bool,
|
|
12455
|
+
variant:pt.string};
|
|
12456
|
+
pk.TimeGrid.propTypes = {value:pt.string,
|
|
12457
|
+
id:pt.string,
|
|
12458
|
+
setProps:pt.any,
|
|
12459
|
+
data-*:pt.string,
|
|
12460
|
+
aria-*:pt.string,
|
|
12461
|
+
tabIndex:pt.number,
|
|
12462
|
+
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string}),
|
|
12463
|
+
persistence:pt.oneOfType([pt.string,pt.number]),
|
|
12464
|
+
persisted_props:pt.arrayOf(pt.string),
|
|
12465
|
+
persistence_type:pt.oneOf(["'local'", "'session'", "'memory'"]),
|
|
12466
|
+
data:pt.arrayOf(pt.string),
|
|
12467
|
+
defaultValue:pt.string,
|
|
12468
|
+
allowDeselect:pt.bool,
|
|
12469
|
+
format:pt.oneOf(["'12h'", "'24h'"]),
|
|
12470
|
+
withSeconds:pt.bool,
|
|
12471
|
+
amPmLabels:pt.shape({am:pt.string,pm:pt.string}),
|
|
12472
|
+
simpleGridProps:pt.any,
|
|
12473
|
+
radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12474
|
+
size:pt.oneOf(["'xs'", "'sm'", "'md'", "'lg'", "'xl'"]),
|
|
12475
|
+
minTime:pt.string,
|
|
12476
|
+
maxTime:pt.string,
|
|
12477
|
+
disableTime:pt.arrayOf(pt.string),
|
|
12478
|
+
disabled:pt.bool,
|
|
12479
|
+
timeRangeData:pt.shape({startTime:pt.string,endTime:pt.string,interval:pt.string}),
|
|
12480
|
+
className:pt.string,
|
|
12481
|
+
style:pt.any,
|
|
12482
|
+
hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12483
|
+
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12484
|
+
lightHidden:pt.bool,
|
|
12485
|
+
darkHidden:pt.bool,
|
|
12486
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
12487
|
+
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12488
|
+
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12489
|
+
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12490
|
+
mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12491
|
+
mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12492
|
+
ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12493
|
+
me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12494
|
+
ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12495
|
+
mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12496
|
+
p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12497
|
+
py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12498
|
+
px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12499
|
+
pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12500
|
+
pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12501
|
+
ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12502
|
+
pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12503
|
+
pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12504
|
+
pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12505
|
+
bd:pt.oneOfType([pt.string,pt.number]),
|
|
12506
|
+
bg: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"])]),
|
|
12507
|
+
c: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"])]),
|
|
12508
|
+
opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),
|
|
12509
|
+
ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),
|
|
12510
|
+
fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),
|
|
12511
|
+
fw:pt.oneOfType([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"])]),
|
|
12512
|
+
lts:pt.oneOfType([pt.string,pt.number]),
|
|
12513
|
+
ta:pt.oneOfType([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"])]),
|
|
12514
|
+
lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),
|
|
12515
|
+
fs:pt.oneOfType([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"])]),
|
|
12516
|
+
tt:pt.oneOfType([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"])]),
|
|
12517
|
+
td:pt.oneOfType([pt.string,pt.number]),
|
|
12518
|
+
w:pt.oneOfType([pt.string,pt.number]),
|
|
12519
|
+
miw:pt.oneOfType([pt.string,pt.number]),
|
|
12520
|
+
maw:pt.oneOfType([pt.string,pt.number]),
|
|
12521
|
+
h:pt.oneOfType([pt.string,pt.number]),
|
|
12522
|
+
mih:pt.oneOfType([pt.string,pt.number]),
|
|
12523
|
+
mah:pt.oneOfType([pt.string,pt.number]),
|
|
12524
|
+
bgsz:pt.oneOfType([pt.string,pt.number]),
|
|
12525
|
+
bgp:pt.oneOfType([pt.string,pt.number]),
|
|
12526
|
+
bgr:pt.oneOfType([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"])]),
|
|
12527
|
+
bga:pt.oneOfType([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"])]),
|
|
12528
|
+
pos:pt.oneOfType([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"])]),
|
|
12529
|
+
top:pt.oneOfType([pt.string,pt.number]),
|
|
12530
|
+
left:pt.oneOfType([pt.string,pt.number]),
|
|
12531
|
+
bottom:pt.oneOfType([pt.string,pt.number]),
|
|
12532
|
+
right:pt.oneOfType([pt.string,pt.number]),
|
|
12533
|
+
inset:pt.oneOfType([pt.string,pt.number]),
|
|
12534
|
+
display:pt.oneOfType([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"])]),
|
|
12535
|
+
flex:pt.oneOfType([pt.string,pt.number]),
|
|
12275
12536
|
classNames:pt.object,
|
|
12276
12537
|
styles:pt.any,
|
|
12277
12538
|
unstyled:pt.bool,
|
|
@@ -12379,8 +12640,135 @@ pk.TimeInput.propTypes = {value:pt.string,
|
|
|
12379
12640
|
styles:pt.any,
|
|
12380
12641
|
unstyled:pt.bool,
|
|
12381
12642
|
variant:pt.string};
|
|
12643
|
+
pk.TimePicker.propTypes = {value:pt.string,
|
|
12644
|
+
id:pt.string,
|
|
12645
|
+
setProps:pt.any,
|
|
12646
|
+
data-*:pt.string,
|
|
12647
|
+
aria-*:pt.string,
|
|
12648
|
+
tabIndex:pt.number,
|
|
12649
|
+
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string}),
|
|
12650
|
+
persistence:pt.oneOfType([pt.string,pt.number]),
|
|
12651
|
+
persisted_props:pt.arrayOf(pt.string),
|
|
12652
|
+
persistence_type:pt.oneOf(["'local'", "'session'", "'memory'"]),
|
|
12653
|
+
n_blur:pt.number,
|
|
12654
|
+
n_submit:pt.number,
|
|
12655
|
+
debounce:pt.oneOfType([pt.number]),
|
|
12656
|
+
defaultValue:pt.string,
|
|
12657
|
+
clearable:pt.bool,
|
|
12658
|
+
name:pt.string,
|
|
12659
|
+
form:pt.string,
|
|
12660
|
+
min:pt.string,
|
|
12661
|
+
max:pt.string,
|
|
12662
|
+
format:pt.oneOf(["'12h'", "'24h'"]),
|
|
12663
|
+
hoursStep:pt.number,
|
|
12664
|
+
minutesStep:pt.number,
|
|
12665
|
+
secondsStep:pt.number,
|
|
12666
|
+
withSeconds:pt.bool,
|
|
12667
|
+
hoursInputLabel:pt.string,
|
|
12668
|
+
minutesInputLabel:pt.string,
|
|
12669
|
+
secondsInputLabel:pt.string,
|
|
12670
|
+
amPmInputLabel:pt.string,
|
|
12671
|
+
amPmLabels:pt.shape({am:pt.string,pm:pt.string}),
|
|
12672
|
+
withDropdown:pt.bool,
|
|
12673
|
+
popoverProps:pt.shape({children:pt.node,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.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.bool,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.any,size:pt.oneOfType([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]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,returnFocus:pt.bool,floatingStrategy:pt.oneOf(["'absolute'", "'fixed'"]),overlayProps:pt.object,withOverlay:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string}),
|
|
12674
|
+
clearButtonProps:pt.any,
|
|
12675
|
+
hoursInputProps:pt.any,
|
|
12676
|
+
minutesInputProps:pt.any,
|
|
12677
|
+
secondsInputProps:pt.any,
|
|
12678
|
+
amPmSelectProps:pt.any,
|
|
12679
|
+
readOnly:pt.bool,
|
|
12680
|
+
disabled:pt.bool,
|
|
12681
|
+
hiddenInputProps:pt.any,
|
|
12682
|
+
pasteSplit:pt.shape({}),
|
|
12683
|
+
presets:pt.oneOfType([pt.arrayOf(pt.string)]),
|
|
12684
|
+
maxDropdownContentHeight:pt.number,
|
|
12685
|
+
scrollAreaProps:pt.any,
|
|
12686
|
+
timeRangePresets:pt.shape({startTime:pt.string,endTime:pt.string,interval:pt.string}),
|
|
12687
|
+
className:pt.string,
|
|
12688
|
+
style:pt.any,
|
|
12689
|
+
hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12690
|
+
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12691
|
+
lightHidden:pt.bool,
|
|
12692
|
+
darkHidden:pt.bool,
|
|
12693
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
12694
|
+
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12695
|
+
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12696
|
+
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12697
|
+
mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12698
|
+
mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12699
|
+
ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12700
|
+
me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12701
|
+
ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12702
|
+
mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12703
|
+
p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12704
|
+
py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12705
|
+
px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12706
|
+
pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12707
|
+
pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12708
|
+
ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12709
|
+
pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12710
|
+
pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12711
|
+
pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12712
|
+
bd:pt.oneOfType([pt.string,pt.number]),
|
|
12713
|
+
bg: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"])]),
|
|
12714
|
+
c: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"])]),
|
|
12715
|
+
opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),
|
|
12716
|
+
ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),
|
|
12717
|
+
fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),
|
|
12718
|
+
fw:pt.oneOfType([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"])]),
|
|
12719
|
+
lts:pt.oneOfType([pt.string,pt.number]),
|
|
12720
|
+
ta:pt.oneOfType([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"])]),
|
|
12721
|
+
lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),
|
|
12722
|
+
fs:pt.oneOfType([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"])]),
|
|
12723
|
+
tt:pt.oneOfType([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"])]),
|
|
12724
|
+
td:pt.oneOfType([pt.string,pt.number]),
|
|
12725
|
+
w:pt.oneOfType([pt.string,pt.number]),
|
|
12726
|
+
miw:pt.oneOfType([pt.string,pt.number]),
|
|
12727
|
+
maw:pt.oneOfType([pt.string,pt.number]),
|
|
12728
|
+
h:pt.oneOfType([pt.string,pt.number]),
|
|
12729
|
+
mih:pt.oneOfType([pt.string,pt.number]),
|
|
12730
|
+
mah:pt.oneOfType([pt.string,pt.number]),
|
|
12731
|
+
bgsz:pt.oneOfType([pt.string,pt.number]),
|
|
12732
|
+
bgp:pt.oneOfType([pt.string,pt.number]),
|
|
12733
|
+
bgr:pt.oneOfType([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"])]),
|
|
12734
|
+
bga:pt.oneOfType([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"])]),
|
|
12735
|
+
pos:pt.oneOfType([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"])]),
|
|
12736
|
+
top:pt.oneOfType([pt.string,pt.number]),
|
|
12737
|
+
left:pt.oneOfType([pt.string,pt.number]),
|
|
12738
|
+
bottom:pt.oneOfType([pt.string,pt.number]),
|
|
12739
|
+
right:pt.oneOfType([pt.string,pt.number]),
|
|
12740
|
+
inset:pt.oneOfType([pt.string,pt.number]),
|
|
12741
|
+
display:pt.oneOfType([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"])]),
|
|
12742
|
+
flex:pt.oneOfType([pt.string,pt.number]),
|
|
12743
|
+
wrapperProps:pt.objectOf(pt.any),
|
|
12744
|
+
label:pt.node,
|
|
12745
|
+
description:pt.node,
|
|
12746
|
+
error:pt.node,
|
|
12747
|
+
required:pt.bool,
|
|
12748
|
+
withAsterisk:pt.bool,
|
|
12749
|
+
labelProps:pt.objectOf(pt.any),
|
|
12750
|
+
descriptionProps:pt.objectOf(pt.any),
|
|
12751
|
+
errorProps:pt.objectOf(pt.any),
|
|
12752
|
+
inputWrapperOrder:pt.arrayOf(pt.oneOf(["'label'", "'description'", "'error'", "'input'"])),
|
|
12753
|
+
size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12754
|
+
leftSection:pt.node,
|
|
12755
|
+
leftSectionWidth:pt.oneOfType([pt.string,pt.number]),
|
|
12756
|
+
leftSectionProps:pt.object,
|
|
12757
|
+
leftSectionPointerEvents:pt.oneOf(["'-moz-initial'", "'inherit'", "'initial'", "'revert'", "'revert-layer'", "'unset'", "'auto'", "'none'", "'all'", "'fill'", "'painted'", "'stroke'", "'visible'", "'visibleFill'", "'visiblePainted'", "'visibleStroke'"]),
|
|
12758
|
+
rightSection:pt.node,
|
|
12759
|
+
rightSectionWidth:pt.oneOfType([pt.string,pt.number]),
|
|
12760
|
+
rightSectionProps:pt.object,
|
|
12761
|
+
rightSectionPointerEvents:pt.oneOf(["'-moz-initial'", "'inherit'", "'initial'", "'revert'", "'revert-layer'", "'unset'", "'auto'", "'none'", "'all'", "'fill'", "'painted'", "'stroke'", "'visible'", "'visibleFill'", "'visiblePainted'", "'visibleStroke'"]),
|
|
12762
|
+
radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12763
|
+
pointer:pt.bool,
|
|
12764
|
+
withErrorStyles:pt.bool,
|
|
12765
|
+
placeholder:pt.string,
|
|
12766
|
+
inputProps:pt.objectOf(pt.any),
|
|
12767
|
+
classNames:pt.object,
|
|
12768
|
+
styles:pt.any,
|
|
12769
|
+
unstyled:pt.bool,
|
|
12770
|
+
variant:pt.string};
|
|
12382
12771
|
pk.YearPickerInput.propTypes = {valueFormat:pt.string,
|
|
12383
|
-
disabledDates:pt.arrayOf(pt.string),
|
|
12384
12772
|
n_submit:pt.number,
|
|
12385
12773
|
debounce:pt.number,
|
|
12386
12774
|
id:pt.string,
|
|
@@ -12450,7 +12838,7 @@ pk.YearPickerInput.propTypes = {valueFormat:pt.string,
|
|
|
12450
12838
|
flex:pt.oneOfType([pt.string,pt.number]),
|
|
12451
12839
|
closeOnChange:pt.bool,
|
|
12452
12840
|
dropdownType:pt.oneOf(["'popover'", "'modal'"]),
|
|
12453
|
-
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,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles: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.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.bool,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.any,size:pt.oneOfType([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}),
|
|
12841
|
+
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,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.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.bool,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.any,size:pt.oneOfType([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}),
|
|
12454
12842
|
modalProps:pt.shape({className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bg: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"])]),c: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"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([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]),ta:pt.oneOfType([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.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([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.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]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([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.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.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]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([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]),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.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bg: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"])]),c: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"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([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]),ta:pt.oneOfType([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.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([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.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]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([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.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.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]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([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]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),unstyled:pt.bool,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,className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bg: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"])]),c: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"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([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]),ta:pt.oneOfType([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.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([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.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]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([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.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.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]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([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])}),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}),
|
|
12455
12843
|
clearable:pt.bool,
|
|
12456
12844
|
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}),
|
|
@@ -12509,6 +12897,7 @@ pk.YearPickerInput.propTypes = {valueFormat:pt.string,
|
|
|
12509
12897
|
weekendDays:pt.arrayOf(pt.oneOf([0, 1, 2, 3, 4, 5, 6])),
|
|
12510
12898
|
hideOutsideDates:pt.bool,
|
|
12511
12899
|
hideWeekdays:pt.bool,
|
|
12900
|
+
withWeekNumbers:pt.bool,
|
|
12512
12901
|
classNames:pt.object,
|
|
12513
12902
|
styles:pt.any,
|
|
12514
12903
|
unstyled:pt.bool,
|
|
@@ -12521,23 +12910,17 @@ pk.Carousel.propTypes = {children:pt.node,
|
|
|
12521
12910
|
slideGap:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
12522
12911
|
orientation:pt.oneOf(["'horizontal'", "'vertical'"]),
|
|
12523
12912
|
height:pt.oneOfType([pt.string,pt.number]),
|
|
12524
|
-
align:pt.oneOf(["'start'", "'center'", "'end'"]),
|
|
12525
|
-
slidesToScroll:pt.oneOfType([pt.number,pt.oneOf(["auto"])]),
|
|
12526
12913
|
includeGapInSize:pt.bool,
|
|
12527
|
-
dragFree:pt.bool,
|
|
12528
|
-
loop:pt.bool,
|
|
12529
12914
|
initialSlide:pt.number,
|
|
12530
|
-
inViewThreshold:pt.number,
|
|
12531
12915
|
withControls:pt.bool,
|
|
12532
12916
|
withIndicators:pt.bool,
|
|
12533
12917
|
nextControlIcon:pt.node,
|
|
12534
12918
|
previousControlIcon:pt.node,
|
|
12535
|
-
skipSnaps:pt.bool,
|
|
12536
|
-
containScroll:pt.oneOf(["''", "'trimSnaps'", "'keepSnaps'"]),
|
|
12537
12919
|
withKeyboardEvents:pt.bool,
|
|
12538
12920
|
autoplay:pt.any,
|
|
12539
12921
|
autoScroll:pt.any,
|
|
12540
12922
|
type:pt.oneOf(["'media'", "'container'"]),
|
|
12923
|
+
emblaOptions:pt.object,
|
|
12541
12924
|
className:pt.string,
|
|
12542
12925
|
style:pt.any,
|
|
12543
12926
|
hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -12571,7 +12954,7 @@ pk.Carousel.propTypes = {children:pt.node,
|
|
|
12571
12954
|
fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),
|
|
12572
12955
|
fw:pt.oneOfType([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"])]),
|
|
12573
12956
|
lts:pt.oneOfType([pt.string,pt.number]),
|
|
12574
|
-
ta:pt.oneOfType([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(["
|
|
12957
|
+
ta:pt.oneOfType([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"])]),
|
|
12575
12958
|
lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),
|
|
12576
12959
|
fs:pt.oneOfType([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"])]),
|
|
12577
12960
|
tt:pt.oneOfType([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"])]),
|
|
@@ -12638,7 +13021,7 @@ pk.CarouselSlide.propTypes = {children:pt.node,
|
|
|
12638
13021
|
fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),
|
|
12639
13022
|
fw:pt.oneOfType([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"])]),
|
|
12640
13023
|
lts:pt.oneOfType([pt.string,pt.number]),
|
|
12641
|
-
ta:pt.oneOfType([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(["
|
|
13024
|
+
ta:pt.oneOfType([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"])]),
|
|
12642
13025
|
lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),
|
|
12643
13026
|
fs:pt.oneOfType([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"])]),
|
|
12644
13027
|
tt:pt.oneOfType([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"])]),
|
|
@@ -13183,6 +13566,85 @@ pk.Notification.propTypes = {color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["g
|
|
|
13183
13566
|
aria-*:pt.string,
|
|
13184
13567
|
tabIndex:pt.number,
|
|
13185
13568
|
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
13569
|
+
pk.NotificationContainer.propTypes = {position:pt.oneOf(["'top-left'", "'top-right'", "'bottom-left'", "'bottom-right'", "'top-center'", "'bottom-center'"]),
|
|
13570
|
+
autoClose:pt.oneOfType([pt.number]),
|
|
13571
|
+
transitionDuration:pt.number,
|
|
13572
|
+
containerWidth:pt.oneOfType([pt.string,pt.number]),
|
|
13573
|
+
notificationMaxHeight:pt.oneOfType([pt.string,pt.number]),
|
|
13574
|
+
limit:pt.number,
|
|
13575
|
+
zIndex:pt.oneOfType([pt.string,pt.number]),
|
|
13576
|
+
withinPortal:pt.bool,
|
|
13577
|
+
portalProps:pt.object,
|
|
13578
|
+
sendNotifications: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"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),icon:pt.any,title:pt.any,loading:pt.bool,withBorder:pt.bool,withCloseButton:pt.bool,closeButtonProps:pt.objectOf(pt.any),id:pt.string,message:pt.any,autoClose:pt.oneOfType([pt.number]),action:pt.oneOf(["'show'", "'update'"]),position:pt.oneOf(["'top-left'", "'top-right'", "'bottom-left'", "'bottom-right'", "'top-center'", "'bottom-center'"]),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bg: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"])]),c: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"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([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]),ta:pt.oneOfType([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.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([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.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]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([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.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.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]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([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]),classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string})),
|
|
13579
|
+
hideNotifications:pt.arrayOf(pt.string),
|
|
13580
|
+
clean:pt.bool,
|
|
13581
|
+
cleanQueue:pt.bool,
|
|
13582
|
+
className:pt.string,
|
|
13583
|
+
style:pt.any,
|
|
13584
|
+
hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13585
|
+
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13586
|
+
lightHidden:pt.bool,
|
|
13587
|
+
darkHidden:pt.bool,
|
|
13588
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
13589
|
+
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13590
|
+
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13591
|
+
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13592
|
+
mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13593
|
+
mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13594
|
+
ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13595
|
+
me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13596
|
+
ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13597
|
+
mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13598
|
+
p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13599
|
+
py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13600
|
+
px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13601
|
+
pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13602
|
+
pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13603
|
+
ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13604
|
+
pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13605
|
+
pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13606
|
+
pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13607
|
+
bd:pt.oneOfType([pt.string,pt.number]),
|
|
13608
|
+
bg: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"])]),
|
|
13609
|
+
c: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"])]),
|
|
13610
|
+
opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),
|
|
13611
|
+
ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),
|
|
13612
|
+
fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),
|
|
13613
|
+
fw:pt.oneOfType([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"])]),
|
|
13614
|
+
lts:pt.oneOfType([pt.string,pt.number]),
|
|
13615
|
+
ta:pt.oneOfType([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"])]),
|
|
13616
|
+
lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),
|
|
13617
|
+
fs:pt.oneOfType([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"])]),
|
|
13618
|
+
tt:pt.oneOfType([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"])]),
|
|
13619
|
+
td:pt.oneOfType([pt.string,pt.number]),
|
|
13620
|
+
w:pt.oneOfType([pt.string,pt.number]),
|
|
13621
|
+
miw:pt.oneOfType([pt.string,pt.number]),
|
|
13622
|
+
maw:pt.oneOfType([pt.string,pt.number]),
|
|
13623
|
+
h:pt.oneOfType([pt.string,pt.number]),
|
|
13624
|
+
mih:pt.oneOfType([pt.string,pt.number]),
|
|
13625
|
+
mah:pt.oneOfType([pt.string,pt.number]),
|
|
13626
|
+
bgsz:pt.oneOfType([pt.string,pt.number]),
|
|
13627
|
+
bgp:pt.oneOfType([pt.string,pt.number]),
|
|
13628
|
+
bgr:pt.oneOfType([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"])]),
|
|
13629
|
+
bga:pt.oneOfType([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"])]),
|
|
13630
|
+
pos:pt.oneOfType([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"])]),
|
|
13631
|
+
top:pt.oneOfType([pt.string,pt.number]),
|
|
13632
|
+
left:pt.oneOfType([pt.string,pt.number]),
|
|
13633
|
+
bottom:pt.oneOfType([pt.string,pt.number]),
|
|
13634
|
+
right:pt.oneOfType([pt.string,pt.number]),
|
|
13635
|
+
inset:pt.oneOfType([pt.string,pt.number]),
|
|
13636
|
+
display:pt.oneOfType([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"])]),
|
|
13637
|
+
flex:pt.oneOfType([pt.string,pt.number]),
|
|
13638
|
+
classNames:pt.object,
|
|
13639
|
+
styles:pt.any,
|
|
13640
|
+
unstyled:pt.bool,
|
|
13641
|
+
variant:pt.string,
|
|
13642
|
+
id:pt.string,
|
|
13643
|
+
setProps:pt.any,
|
|
13644
|
+
data-*:pt.string,
|
|
13645
|
+
aria-*:pt.string,
|
|
13646
|
+
tabIndex:pt.number,
|
|
13647
|
+
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
13186
13648
|
pk.NotificationProvider.propTypes = {position:pt.oneOf(["'top-left'", "'top-right'", "'bottom-left'", "'bottom-right'", "'top-center'", "'bottom-center'"]),
|
|
13187
13649
|
autoClose:pt.oneOfType([pt.number]),
|
|
13188
13650
|
transitionDuration:pt.number,
|