dash_mantine_components 2.2.1 → 2.4.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 +2 -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 +378 -116
- package/package.json +29 -29
|
@@ -4,7 +4,7 @@ var pt = window.PropTypes;
|
|
|
4
4
|
var pk = window['dash_mantine_components'];
|
|
5
5
|
|
|
6
6
|
pk.AreaChart.propTypes = {data:pt.arrayOf(pt.shape({})),
|
|
7
|
-
series:pt.arrayOf(pt.shape({strokeDasharray:pt.oneOfType([pt.string,pt.number]),color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),name:pt.string,label:pt.string,yAxisId:pt.string})),
|
|
7
|
+
series:pt.arrayOf(pt.shape({strokeDasharray:pt.oneOfType([pt.string,pt.number]),color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),curveType:pt.oneOf(["'bump'", "'linear'", "'natural'", "'monotone'", "'step'", "'stepBefore'", "'stepAfter'"]),name:pt.string,label:pt.string,yAxisId:pt.string})),
|
|
8
8
|
type:pt.oneOf(["'default'", "'stacked'", "'percent'", "'split'"]),
|
|
9
9
|
withGradient:pt.bool,
|
|
10
10
|
curveType:pt.oneOf(["'bump'", "'linear'", "'natural'", "'monotone'", "'step'", "'stepBefore'", "'stepAfter'"]),
|
|
@@ -393,8 +393,6 @@ pk.CompositeChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
|
393
393
|
inset:pt.oneOfType([pt.string,pt.number]),
|
|
394
394
|
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"])]),
|
|
395
395
|
flex:pt.oneOfType([pt.string,pt.number]),
|
|
396
|
-
valueFormatter:pt.any,
|
|
397
|
-
tooltipProps:pt.object,
|
|
398
396
|
dataKey:pt.string,
|
|
399
397
|
referenceLines:pt.arrayOf(pt.object),
|
|
400
398
|
withXAxis:pt.bool,
|
|
@@ -408,6 +406,7 @@ pk.CompositeChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
|
408
406
|
unit:pt.string,
|
|
409
407
|
tooltipAnimationDuration:pt.number,
|
|
410
408
|
legendProps:pt.object,
|
|
409
|
+
tooltipProps:pt.object,
|
|
411
410
|
withLegend:pt.bool,
|
|
412
411
|
withTooltip:pt.bool,
|
|
413
412
|
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"])]),
|
|
@@ -417,6 +416,7 @@ pk.CompositeChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
|
417
416
|
withRightYAxis:pt.bool,
|
|
418
417
|
rightYAxisProps:pt.any,
|
|
419
418
|
rightYAxisLabel:pt.any,
|
|
419
|
+
valueFormatter:pt.any,
|
|
420
420
|
classNames:pt.object,
|
|
421
421
|
styles:pt.any,
|
|
422
422
|
unstyled:pt.bool,
|
|
@@ -520,7 +520,7 @@ pk.DonutChart.propTypes = {data:pt.arrayOf(pt.shape({name:pt.string,value:pt.num
|
|
|
520
520
|
tabIndex:pt.number,
|
|
521
521
|
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
522
522
|
pk.LineChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
523
|
-
series:pt.arrayOf(pt.shape({strokeDasharray:pt.oneOfType([pt.string,pt.number]),name:pt.string,color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),label:pt.string,yAxisId:pt.string})),
|
|
523
|
+
series:pt.arrayOf(pt.shape({strokeDasharray:pt.oneOfType([pt.string,pt.number]),curveType:pt.oneOf(["'bump'", "'linear'", "'natural'", "'monotone'", "'step'", "'stepBefore'", "'stepAfter'"]),name:pt.string,color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),label:pt.string,yAxisId:pt.string})),
|
|
524
524
|
curveType:pt.oneOf(["'bump'", "'linear'", "'natural'", "'monotone'", "'step'", "'stepBefore'", "'stepAfter'"]),
|
|
525
525
|
fillOpacity:pt.number,
|
|
526
526
|
withDots:pt.bool,
|
|
@@ -876,8 +876,6 @@ pk.ScatterChart.propTypes = {dataKey:pt.shape({x:pt.string,y:pt.string}),
|
|
|
876
876
|
inset:pt.oneOfType([pt.string,pt.number]),
|
|
877
877
|
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"])]),
|
|
878
878
|
flex:pt.oneOfType([pt.string,pt.number]),
|
|
879
|
-
valueFormatter:pt.any,
|
|
880
|
-
tooltipProps:pt.object,
|
|
881
879
|
referenceLines:pt.arrayOf(pt.object),
|
|
882
880
|
withXAxis:pt.bool,
|
|
883
881
|
withYAxis:pt.bool,
|
|
@@ -889,6 +887,7 @@ pk.ScatterChart.propTypes = {dataKey:pt.shape({x:pt.string,y:pt.string}),
|
|
|
889
887
|
gridAxis:pt.oneOf(["'none'", "'x'", "'y'", "'xy'"]),
|
|
890
888
|
tooltipAnimationDuration:pt.number,
|
|
891
889
|
legendProps:pt.object,
|
|
890
|
+
tooltipProps:pt.object,
|
|
892
891
|
withLegend:pt.bool,
|
|
893
892
|
withTooltip:pt.bool,
|
|
894
893
|
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"])]),
|
|
@@ -899,6 +898,7 @@ pk.ScatterChart.propTypes = {dataKey:pt.shape({x:pt.string,y:pt.string}),
|
|
|
899
898
|
withRightYAxis:pt.bool,
|
|
900
899
|
rightYAxisProps:pt.any,
|
|
901
900
|
rightYAxisLabel:pt.any,
|
|
901
|
+
valueFormatter:pt.any,
|
|
902
902
|
classNames:pt.object,
|
|
903
903
|
styles:pt.any,
|
|
904
904
|
unstyled:pt.bool,
|
|
@@ -988,7 +988,7 @@ pk.Sparkline.propTypes = {data:pt.arrayOf(pt.number),
|
|
|
988
988
|
tabIndex:pt.number,
|
|
989
989
|
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
990
990
|
pk.AreaChart.propTypes = {data:pt.arrayOf(pt.shape({})),
|
|
991
|
-
series:pt.arrayOf(pt.shape({strokeDasharray:pt.oneOfType([pt.string,pt.number]),color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),name:pt.string,label:pt.string,yAxisId:pt.string})),
|
|
991
|
+
series:pt.arrayOf(pt.shape({strokeDasharray:pt.oneOfType([pt.string,pt.number]),color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),curveType:pt.oneOf(["'bump'", "'linear'", "'natural'", "'monotone'", "'step'", "'stepBefore'", "'stepAfter'"]),name:pt.string,label:pt.string,yAxisId:pt.string})),
|
|
992
992
|
type:pt.oneOf(["'default'", "'stacked'", "'percent'", "'split'"]),
|
|
993
993
|
withGradient:pt.bool,
|
|
994
994
|
curveType:pt.oneOf(["'bump'", "'linear'", "'natural'", "'monotone'", "'step'", "'stepBefore'", "'stepAfter'"]),
|
|
@@ -1504,7 +1504,7 @@ pk.DonutChart.propTypes = {data:pt.arrayOf(pt.shape({name:pt.string,value:pt.num
|
|
|
1504
1504
|
tabIndex:pt.number,
|
|
1505
1505
|
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
1506
1506
|
pk.LineChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
1507
|
-
series:pt.arrayOf(pt.shape({strokeDasharray:pt.oneOfType([pt.string,pt.number]),name:pt.string,color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),label:pt.string,yAxisId:pt.string})),
|
|
1507
|
+
series:pt.arrayOf(pt.shape({strokeDasharray:pt.oneOfType([pt.string,pt.number]),curveType:pt.oneOf(["'bump'", "'linear'", "'natural'", "'monotone'", "'step'", "'stepBefore'", "'stepAfter'"]),name:pt.string,color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),label:pt.string,yAxisId:pt.string})),
|
|
1508
1508
|
curveType:pt.oneOf(["'bump'", "'linear'", "'natural'", "'monotone'", "'step'", "'stepBefore'", "'stepAfter'"]),
|
|
1509
1509
|
fillOpacity:pt.number,
|
|
1510
1510
|
withDots:pt.bool,
|
|
@@ -3220,6 +3220,94 @@ pk.ButtonGroup.propTypes = {children:pt.node,
|
|
|
3220
3220
|
unstyled:pt.bool,
|
|
3221
3221
|
variant:pt.string,
|
|
3222
3222
|
attributes:pt.any};
|
|
3223
|
+
pk.CopyButton.propTypes = {value:pt.string,
|
|
3224
|
+
timeout:pt.number,
|
|
3225
|
+
size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["compact-xs"]),pt.oneOf(["compact-sm"]),pt.oneOf(["compact-md"]),pt.oneOf(["compact-lg"]),pt.oneOf(["compact-xl"])]),
|
|
3226
|
+
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"])]),
|
|
3227
|
+
copiedColor: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"])]),
|
|
3228
|
+
fullWidth:pt.bool,
|
|
3229
|
+
radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3230
|
+
gradient:pt.shape({from:pt.string,to:pt.string,deg:pt.number}),
|
|
3231
|
+
disabled:pt.bool,
|
|
3232
|
+
children:pt.node,
|
|
3233
|
+
copiedChildren:pt.node,
|
|
3234
|
+
autoContrast:pt.bool,
|
|
3235
|
+
n_clicks:pt.number,
|
|
3236
|
+
triggerCopy:pt.bool,
|
|
3237
|
+
target_id:pt.string,
|
|
3238
|
+
id:pt.string,
|
|
3239
|
+
setProps:pt.any,
|
|
3240
|
+
data-*:pt.string,
|
|
3241
|
+
aria-*:pt.string,
|
|
3242
|
+
tabIndex:pt.number,
|
|
3243
|
+
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string}),
|
|
3244
|
+
className:pt.string,
|
|
3245
|
+
style:pt.any,
|
|
3246
|
+
hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3247
|
+
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3248
|
+
lightHidden:pt.bool,
|
|
3249
|
+
darkHidden:pt.bool,
|
|
3250
|
+
mod:pt.oneOfType([pt.string]),
|
|
3251
|
+
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3252
|
+
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3253
|
+
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3254
|
+
mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3255
|
+
mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3256
|
+
ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3257
|
+
me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3258
|
+
ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3259
|
+
mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3260
|
+
p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3261
|
+
py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3262
|
+
px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3263
|
+
pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3264
|
+
pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3265
|
+
ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3266
|
+
pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3267
|
+
pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3268
|
+
pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3269
|
+
bd:pt.oneOfType([pt.string,pt.number]),
|
|
3270
|
+
bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3271
|
+
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"])]),
|
|
3272
|
+
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"])]),
|
|
3273
|
+
opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),
|
|
3274
|
+
ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),
|
|
3275
|
+
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"])]),
|
|
3276
|
+
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"])]),
|
|
3277
|
+
lts:pt.oneOfType([pt.string,pt.number]),
|
|
3278
|
+
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"])]),
|
|
3279
|
+
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"])]),
|
|
3280
|
+
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"])]),
|
|
3281
|
+
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"])]),
|
|
3282
|
+
td:pt.oneOfType([pt.string,pt.number]),
|
|
3283
|
+
w:pt.oneOfType([pt.string,pt.number]),
|
|
3284
|
+
miw:pt.oneOfType([pt.string,pt.number]),
|
|
3285
|
+
maw:pt.oneOfType([pt.string,pt.number]),
|
|
3286
|
+
h:pt.oneOfType([pt.string,pt.number]),
|
|
3287
|
+
mih:pt.oneOfType([pt.string,pt.number]),
|
|
3288
|
+
mah:pt.oneOfType([pt.string,pt.number]),
|
|
3289
|
+
bgsz:pt.oneOfType([pt.string,pt.number]),
|
|
3290
|
+
bgp:pt.oneOfType([pt.string,pt.number]),
|
|
3291
|
+
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"])]),
|
|
3292
|
+
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"])]),
|
|
3293
|
+
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"])]),
|
|
3294
|
+
top:pt.oneOfType([pt.string,pt.number]),
|
|
3295
|
+
left:pt.oneOfType([pt.string,pt.number]),
|
|
3296
|
+
bottom:pt.oneOfType([pt.string,pt.number]),
|
|
3297
|
+
right:pt.oneOfType([pt.string,pt.number]),
|
|
3298
|
+
inset:pt.oneOfType([pt.string,pt.number]),
|
|
3299
|
+
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"])]),
|
|
3300
|
+
flex:pt.oneOfType([pt.string,pt.number]),
|
|
3301
|
+
classNames:pt.object,
|
|
3302
|
+
styles:pt.any,
|
|
3303
|
+
unstyled:pt.bool,
|
|
3304
|
+
variant:pt.string,
|
|
3305
|
+
attributes:pt.any};
|
|
3306
|
+
pk.CustomCopyButton.propTypes = {value:pt.string,
|
|
3307
|
+
timeout:pt.number,
|
|
3308
|
+
children:pt.any,
|
|
3309
|
+
id:pt.string,
|
|
3310
|
+
setProps:pt.any};
|
|
3223
3311
|
pk.UnstyledButton.propTypes = {children:pt.node,
|
|
3224
3312
|
n_clicks:pt.number,
|
|
3225
3313
|
disabled:pt.bool,
|
|
@@ -3868,7 +3956,7 @@ pk.ChipGroup.propTypes = {multiple:pt.bool,
|
|
|
3868
3956
|
pk.ChipGroupContext.propTypes = {};
|
|
3869
3957
|
pk.ColorInput.propTypes = {disallowInput:pt.bool,
|
|
3870
3958
|
fixOnBlur:pt.bool,
|
|
3871
|
-
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.
|
|
3959
|
+
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.oneOfType([pt.oneOf(["alignment"])]),rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"])]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,padding:pt.oneOfType([pt.number]),fallbackPlacements:pt.arrayOf(pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"])),fallbackStrategy:pt.oneOf(["'bestFit'", "'initialPlacement'"]),fallbackAxisSideDirection:pt.oneOf(["'end'", "'start'", "'none'"]),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.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,attributes:pt.any}),
|
|
3872
3960
|
withPreview:pt.bool,
|
|
3873
3961
|
withEyeDropper:pt.bool,
|
|
3874
3962
|
eyeDropperIcon:pt.node,
|
|
@@ -4061,7 +4149,7 @@ pk.ColorPicker.propTypes = {fullWidth:pt.bool,
|
|
|
4061
4149
|
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
4062
4150
|
pk.Autocomplete.propTypes = {data:pt.oneOfType([pt.arrayOf(pt.oneOfType([pt.string])),pt.arrayOf(pt.oneOfType([pt.string]))]),
|
|
4063
4151
|
value:pt.string,
|
|
4064
|
-
scrollAreaProps:pt.shape({scrollbarSize:pt.oneOfType([pt.string,pt.number]),type:pt.oneOf(["'auto'", "'always'", "'scroll'", "'hover'", "'never'"]),scrollHideDelay:pt.number,scrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["xy"])]),offsetScrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"])]),overscrollBehavior:pt.oneOfType([pt.oneOf(["auto"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["contain"]),pt.oneOf(["none"])]),className:pt.string,style: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]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),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(["-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(["scroll"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"])
|
|
4152
|
+
scrollAreaProps:pt.shape({scrollbarSize:pt.oneOfType([pt.string,pt.number]),type:pt.oneOf(["'auto'", "'always'", "'scroll'", "'hover'", "'never'"]),scrollHideDelay:pt.number,scrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["xy"])]),offsetScrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["present"])]),overscrollBehavior:pt.oneOfType([pt.oneOf(["auto"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["contain"]),pt.oneOf(["none"])]),className:pt.string,style: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]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),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(["-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(["local"]),pt.oneOf(["scroll"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"])]),pos:pt.oneOfType([pt.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,attributes:pt.any}),
|
|
4065
4153
|
clearable:pt.bool,
|
|
4066
4154
|
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}),
|
|
4067
4155
|
autoSelectOnBlur:pt.bool,
|
|
@@ -4113,7 +4201,7 @@ pk.Autocomplete.propTypes = {data:pt.oneOfType([pt.arrayOf(pt.oneOfType([pt.stri
|
|
|
4113
4201
|
bgsz:pt.oneOfType([pt.string,pt.number]),
|
|
4114
4202
|
bgp:pt.oneOfType([pt.string,pt.number]),
|
|
4115
4203
|
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"])]),
|
|
4116
|
-
bga:pt.oneOfType([pt.oneOf(["scroll"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"])
|
|
4204
|
+
bga:pt.oneOfType([pt.oneOf(["local"]),pt.oneOf(["scroll"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"])]),
|
|
4117
4205
|
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"])]),
|
|
4118
4206
|
top:pt.oneOfType([pt.string,pt.number]),
|
|
4119
4207
|
left:pt.oneOfType([pt.string,pt.number]),
|
|
@@ -4151,7 +4239,7 @@ pk.Autocomplete.propTypes = {data:pt.oneOfType([pt.arrayOf(pt.oneOfType([pt.stri
|
|
|
4151
4239
|
inputProps:pt.objectOf(pt.any),
|
|
4152
4240
|
dropdownOpened:pt.bool,
|
|
4153
4241
|
selectFirstOptionOnChange:pt.bool,
|
|
4154
|
-
comboboxProps:pt.shape({children:pt.node,size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),dropdownPadding:pt.oneOfType([pt.string,pt.number]),resetSelectionOnOptionHover:pt.bool,readOnly: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({padding:pt.oneOfType([pt.number]),mainAxis:pt.bool,crossAxis:pt.
|
|
4242
|
+
comboboxProps:pt.shape({children:pt.node,size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),dropdownPadding:pt.oneOfType([pt.string,pt.number]),resetSelectionOnOptionHover:pt.bool,readOnly: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({padding:pt.oneOfType([pt.number]),mainAxis:pt.bool,crossAxis:pt.oneOfType([pt.oneOf(["alignment"])]),rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"])]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,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(["'none'", "'end'", "'start'"]),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(["'fixed'", "'absolute'"]),overlayProps:pt.object,withOverlay:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any}),
|
|
4155
4243
|
limit:pt.number,
|
|
4156
4244
|
withScrollArea:pt.bool,
|
|
4157
4245
|
maxDropdownHeight:pt.oneOfType([pt.string,pt.number]),
|
|
@@ -4168,6 +4256,9 @@ pk.Autocomplete.propTypes = {data:pt.oneOfType([pt.arrayOf(pt.oneOfType([pt.stri
|
|
|
4168
4256
|
aria-*:pt.string,
|
|
4169
4257
|
tabIndex:pt.number,
|
|
4170
4258
|
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string}),
|
|
4259
|
+
n_blur:pt.number,
|
|
4260
|
+
n_submit:pt.number,
|
|
4261
|
+
debounce:pt.oneOfType([pt.number]),
|
|
4171
4262
|
persistence:pt.oneOfType([pt.string,pt.number]),
|
|
4172
4263
|
persisted_props:pt.arrayOf(pt.string),
|
|
4173
4264
|
persistence_type:pt.oneOf(["'local'", "'session'", "'memory'"])};
|
|
@@ -4183,7 +4274,8 @@ pk.MultiSelect.propTypes = {value:pt.arrayOf(pt.string),
|
|
|
4183
4274
|
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}),
|
|
4184
4275
|
hiddenInputProps:pt.object,
|
|
4185
4276
|
hiddenInputValuesDivider:pt.string,
|
|
4186
|
-
scrollAreaProps:pt.shape({scrollbarSize:pt.oneOfType([pt.string,pt.number]),type:pt.oneOf(["'auto'", "'always'", "'scroll'", "'hover'", "'never'"]),scrollHideDelay:pt.number,scrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["xy"])]),offsetScrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"])]),overscrollBehavior:pt.oneOfType([pt.oneOf(["auto"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["contain"]),pt.oneOf(["none"])]),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]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),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(["-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(["scroll"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"])
|
|
4277
|
+
scrollAreaProps:pt.shape({scrollbarSize:pt.oneOfType([pt.string,pt.number]),type:pt.oneOf(["'auto'", "'always'", "'scroll'", "'hover'", "'never'"]),scrollHideDelay:pt.number,scrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["xy"])]),offsetScrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["present"])]),overscrollBehavior:pt.oneOfType([pt.oneOf(["auto"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["contain"]),pt.oneOf(["none"])]),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]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),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(["-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(["local"]),pt.oneOf(["scroll"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"])]),pos:pt.oneOfType([pt.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,attributes:pt.any}),
|
|
4278
|
+
clearSearchOnChange:pt.bool,
|
|
4187
4279
|
className:pt.string,
|
|
4188
4280
|
style:pt.any,
|
|
4189
4281
|
hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -4232,7 +4324,7 @@ pk.MultiSelect.propTypes = {value:pt.arrayOf(pt.string),
|
|
|
4232
4324
|
bgsz:pt.oneOfType([pt.string,pt.number]),
|
|
4233
4325
|
bgp:pt.oneOfType([pt.string,pt.number]),
|
|
4234
4326
|
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"])]),
|
|
4235
|
-
bga:pt.oneOfType([pt.oneOf(["scroll"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"])
|
|
4327
|
+
bga:pt.oneOfType([pt.oneOf(["local"]),pt.oneOf(["scroll"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"])]),
|
|
4236
4328
|
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"])]),
|
|
4237
4329
|
top:pt.oneOfType([pt.string,pt.number]),
|
|
4238
4330
|
left:pt.oneOfType([pt.string,pt.number]),
|
|
@@ -4271,7 +4363,7 @@ pk.MultiSelect.propTypes = {value:pt.arrayOf(pt.string),
|
|
|
4271
4363
|
data:pt.oneOfType([pt.arrayOf(pt.oneOfType([pt.string])),pt.arrayOf(pt.oneOfType([pt.string]))]),
|
|
4272
4364
|
dropdownOpened:pt.bool,
|
|
4273
4365
|
selectFirstOptionOnChange:pt.bool,
|
|
4274
|
-
comboboxProps:pt.shape({children:pt.node,size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),dropdownPadding:pt.oneOfType([pt.string,pt.number]),resetSelectionOnOptionHover:pt.bool,readOnly: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({padding:pt.oneOfType([pt.number,pt.shape({top:pt.number,left:pt.number,bottom:pt.number,right:pt.number})]),mainAxis:pt.bool,crossAxis:pt.
|
|
4366
|
+
comboboxProps:pt.shape({children:pt.node,size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),dropdownPadding:pt.oneOfType([pt.string,pt.number]),resetSelectionOnOptionHover:pt.bool,readOnly: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({padding:pt.oneOfType([pt.number,pt.shape({top:pt.number,left:pt.number,bottom:pt.number,right:pt.number})]),mainAxis:pt.bool,crossAxis:pt.oneOfType([pt.oneOf(["alignment"])]),rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"]),pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number})]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,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(["'none'", "'end'", "'start'"]),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(["'fixed'", "'absolute'"]),overlayProps:pt.object,withOverlay:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any}),
|
|
4275
4367
|
limit:pt.number,
|
|
4276
4368
|
withScrollArea:pt.bool,
|
|
4277
4369
|
maxDropdownHeight:pt.oneOfType([pt.string,pt.number]),
|
|
@@ -4304,7 +4396,7 @@ pk.Select.propTypes = {value:pt.string,
|
|
|
4304
4396
|
clearable:pt.bool,
|
|
4305
4397
|
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}),
|
|
4306
4398
|
hiddenInputProps:pt.object,
|
|
4307
|
-
scrollAreaProps:pt.shape({scrollbarSize:pt.oneOfType([pt.string,pt.number]),type:pt.oneOf(["'auto'", "'always'", "'scroll'", "'hover'", "'never'"]),scrollHideDelay:pt.number,scrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["xy"])]),offsetScrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"])]),overscrollBehavior:pt.oneOfType([pt.oneOf(["auto"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["contain"]),pt.oneOf(["none"])]),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]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),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(["-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(["scroll"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"])
|
|
4399
|
+
scrollAreaProps:pt.shape({scrollbarSize:pt.oneOfType([pt.string,pt.number]),type:pt.oneOf(["'auto'", "'always'", "'scroll'", "'hover'", "'never'"]),scrollHideDelay:pt.number,scrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["xy"])]),offsetScrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["present"])]),overscrollBehavior:pt.oneOfType([pt.oneOf(["auto"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["contain"]),pt.oneOf(["none"])]),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]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),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(["-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(["local"]),pt.oneOf(["scroll"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"])]),pos:pt.oneOfType([pt.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,attributes:pt.any}),
|
|
4308
4400
|
autoSelectOnBlur:pt.bool,
|
|
4309
4401
|
clearSearchOnFocus:pt.bool,
|
|
4310
4402
|
className:pt.string,
|
|
@@ -4355,7 +4447,7 @@ pk.Select.propTypes = {value:pt.string,
|
|
|
4355
4447
|
bgsz:pt.oneOfType([pt.string,pt.number]),
|
|
4356
4448
|
bgp:pt.oneOfType([pt.string,pt.number]),
|
|
4357
4449
|
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"])]),
|
|
4358
|
-
bga:pt.oneOfType([pt.oneOf(["scroll"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"])
|
|
4450
|
+
bga:pt.oneOfType([pt.oneOf(["local"]),pt.oneOf(["scroll"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"])]),
|
|
4359
4451
|
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"])]),
|
|
4360
4452
|
top:pt.oneOfType([pt.string,pt.number]),
|
|
4361
4453
|
left:pt.oneOfType([pt.string,pt.number]),
|
|
@@ -4394,7 +4486,7 @@ pk.Select.propTypes = {value:pt.string,
|
|
|
4394
4486
|
data:pt.oneOfType([pt.arrayOf(pt.oneOfType([pt.string])),pt.arrayOf(pt.oneOfType([pt.string]))]),
|
|
4395
4487
|
dropdownOpened:pt.bool,
|
|
4396
4488
|
selectFirstOptionOnChange:pt.bool,
|
|
4397
|
-
comboboxProps:pt.shape({children:pt.node,size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),dropdownPadding:pt.oneOfType([pt.string,pt.number]),resetSelectionOnOptionHover:pt.bool,readOnly: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({padding:pt.oneOfType([pt.number,pt.shape({top:pt.number,left:pt.number,bottom:pt.number,right:pt.number})]),mainAxis:pt.bool,crossAxis:pt.
|
|
4489
|
+
comboboxProps:pt.shape({children:pt.node,size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),dropdownPadding:pt.oneOfType([pt.string,pt.number]),resetSelectionOnOptionHover:pt.bool,readOnly: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({padding:pt.oneOfType([pt.number,pt.shape({top:pt.number,left:pt.number,bottom:pt.number,right:pt.number})]),mainAxis:pt.bool,crossAxis:pt.oneOfType([pt.oneOf(["alignment"])]),rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"]),pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number})]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,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(["'none'", "'end'", "'start'"]),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(["'fixed'", "'absolute'"]),overlayProps:pt.object,withOverlay:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any}),
|
|
4398
4490
|
limit:pt.number,
|
|
4399
4491
|
withScrollArea:pt.bool,
|
|
4400
4492
|
maxDropdownHeight:pt.oneOfType([pt.string,pt.number]),
|
|
@@ -4427,7 +4519,7 @@ pk.TagsInput.propTypes = {data:pt.oneOfType([pt.arrayOf(pt.oneOfType([pt.string]
|
|
|
4427
4519
|
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}),
|
|
4428
4520
|
hiddenInputProps:pt.object,
|
|
4429
4521
|
hiddenInputValuesDivider:pt.string,
|
|
4430
|
-
scrollAreaProps:pt.shape({scrollbarSize:pt.oneOfType([pt.string,pt.number]),type:pt.oneOf(["'auto'", "'always'", "'scroll'", "'hover'", "'never'"]),scrollHideDelay:pt.number,scrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["xy"])]),offsetScrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"])]),overscrollBehavior:pt.oneOfType([pt.oneOf(["auto"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["contain"]),pt.oneOf(["none"])]),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]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),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(["-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(["scroll"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"])
|
|
4522
|
+
scrollAreaProps:pt.shape({scrollbarSize:pt.oneOfType([pt.string,pt.number]),type:pt.oneOf(["'auto'", "'always'", "'scroll'", "'hover'", "'never'"]),scrollHideDelay:pt.number,scrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["xy"])]),offsetScrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["present"])]),overscrollBehavior:pt.oneOfType([pt.oneOf(["auto"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["contain"]),pt.oneOf(["none"])]),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]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),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(["-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(["local"]),pt.oneOf(["scroll"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"])]),pos:pt.oneOfType([pt.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,attributes:pt.any}),
|
|
4431
4523
|
acceptValueOnBlur:pt.bool,
|
|
4432
4524
|
className:pt.string,
|
|
4433
4525
|
style:pt.any,
|
|
@@ -4477,7 +4569,7 @@ pk.TagsInput.propTypes = {data:pt.oneOfType([pt.arrayOf(pt.oneOfType([pt.string]
|
|
|
4477
4569
|
bgsz:pt.oneOfType([pt.string,pt.number]),
|
|
4478
4570
|
bgp:pt.oneOfType([pt.string,pt.number]),
|
|
4479
4571
|
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"])]),
|
|
4480
|
-
bga:pt.oneOfType([pt.oneOf(["scroll"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"])
|
|
4572
|
+
bga:pt.oneOfType([pt.oneOf(["local"]),pt.oneOf(["scroll"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"])]),
|
|
4481
4573
|
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"])]),
|
|
4482
4574
|
top:pt.oneOfType([pt.string,pt.number]),
|
|
4483
4575
|
left:pt.oneOfType([pt.string,pt.number]),
|
|
@@ -4515,7 +4607,7 @@ pk.TagsInput.propTypes = {data:pt.oneOfType([pt.arrayOf(pt.oneOfType([pt.string]
|
|
|
4515
4607
|
inputProps:pt.objectOf(pt.any),
|
|
4516
4608
|
dropdownOpened:pt.bool,
|
|
4517
4609
|
selectFirstOptionOnChange:pt.bool,
|
|
4518
|
-
comboboxProps:pt.shape({children:pt.node,size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),dropdownPadding:pt.oneOfType([pt.string,pt.number]),resetSelectionOnOptionHover:pt.bool,readOnly: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({padding:pt.oneOfType([pt.number,pt.shape({top:pt.number,left:pt.number,bottom:pt.number,right:pt.number})]),mainAxis:pt.bool,crossAxis:pt.
|
|
4610
|
+
comboboxProps:pt.shape({children:pt.node,size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),dropdownPadding:pt.oneOfType([pt.string,pt.number]),resetSelectionOnOptionHover:pt.bool,readOnly: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({padding:pt.oneOfType([pt.number,pt.shape({top:pt.number,left:pt.number,bottom:pt.number,right:pt.number})]),mainAxis:pt.bool,crossAxis:pt.oneOfType([pt.oneOf(["alignment"])]),rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"]),pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number})]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,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(["'none'", "'end'", "'start'"]),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(["'fixed'", "'absolute'"]),overlayProps:pt.object,withOverlay:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any}),
|
|
4519
4611
|
limit:pt.number,
|
|
4520
4612
|
withScrollArea:pt.bool,
|
|
4521
4613
|
maxDropdownHeight:pt.oneOfType([pt.string,pt.number]),
|
|
@@ -4892,7 +4984,7 @@ pk.HoverCard.propTypes = {openDelay:pt.number,
|
|
|
4892
4984
|
keepMounted:pt.bool,
|
|
4893
4985
|
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}),
|
|
4894
4986
|
width:pt.oneOfType([pt.string,pt.number]),
|
|
4895
|
-
middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.
|
|
4987
|
+
middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.oneOfType([pt.oneOf(["alignment"])]),rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"])]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,padding:pt.oneOfType([pt.number]),fallbackPlacements:pt.arrayOf(pt.oneOf(["'top'", "'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])}),
|
|
4896
4988
|
withArrow:pt.bool,
|
|
4897
4989
|
arrowSize:pt.number,
|
|
4898
4990
|
arrowOffset:pt.number,
|
|
@@ -6023,7 +6115,7 @@ pk.Menu.propTypes = {variant:pt.string,
|
|
|
6023
6115
|
keepMounted:pt.bool,
|
|
6024
6116
|
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}),
|
|
6025
6117
|
width:pt.oneOfType([pt.string,pt.number]),
|
|
6026
|
-
middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.
|
|
6118
|
+
middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.oneOfType([pt.oneOf(["alignment"])]),rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"])]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,padding:pt.oneOfType([pt.number]),fallbackPlacements:pt.arrayOf(pt.oneOf(["'top'", "'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])}),
|
|
6027
6119
|
withArrow:pt.bool,
|
|
6028
6120
|
arrowSize:pt.number,
|
|
6029
6121
|
arrowOffset:pt.number,
|
|
@@ -6351,7 +6443,7 @@ pk.SubMenu.propTypes = {variant:pt.string,
|
|
|
6351
6443
|
keepMounted:pt.bool,
|
|
6352
6444
|
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}),
|
|
6353
6445
|
width:pt.oneOfType([pt.string,pt.number]),
|
|
6354
|
-
middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.
|
|
6446
|
+
middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.oneOfType([pt.oneOf(["alignment"])]),rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"]),pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number})]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,padding:pt.oneOfType([pt.number,pt.shape({top:pt.number,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])}),
|
|
6355
6447
|
withArrow:pt.bool,
|
|
6356
6448
|
arrowSize:pt.number,
|
|
6357
6449
|
arrowOffset:pt.number,
|
|
@@ -6731,7 +6823,7 @@ pk.Popover.propTypes = {children:pt.node,
|
|
|
6731
6823
|
keepMounted:pt.bool,
|
|
6732
6824
|
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}),
|
|
6733
6825
|
width:pt.oneOfType([pt.string,pt.number]),
|
|
6734
|
-
middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.
|
|
6826
|
+
middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.oneOfType([pt.oneOf(["alignment"])]),rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"])]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,padding:pt.oneOfType([pt.number]),fallbackPlacements:pt.arrayOf(pt.oneOf(["'top'", "'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])}),
|
|
6735
6827
|
withArrow:pt.bool,
|
|
6736
6828
|
arrowSize:pt.number,
|
|
6737
6829
|
arrowOffset:pt.number,
|
|
@@ -6837,6 +6929,7 @@ pk.Progress.propTypes = {value:pt.number,
|
|
|
6837
6929
|
radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6838
6930
|
autoContrast:pt.bool,
|
|
6839
6931
|
transitionDuration:pt.number,
|
|
6932
|
+
orientation:pt.oneOf(["'horizontal'", "'vertical'"]),
|
|
6840
6933
|
className:pt.string,
|
|
6841
6934
|
style:pt.any,
|
|
6842
6935
|
hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -6979,6 +7072,7 @@ pk.ProgressRoot.propTypes = {children:pt.node,
|
|
|
6979
7072
|
radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
6980
7073
|
autoContrast:pt.bool,
|
|
6981
7074
|
transitionDuration:pt.number,
|
|
7075
|
+
orientation:pt.oneOf(["'horizontal'", "'vertical'"]),
|
|
6982
7076
|
className:pt.string,
|
|
6983
7077
|
style:pt.any,
|
|
6984
7078
|
hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -7451,6 +7545,157 @@ pk.RadioIndicator.propTypes = {color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf([
|
|
|
7451
7545
|
persistence:pt.oneOfType([pt.string,pt.number]),
|
|
7452
7546
|
persisted_props:pt.arrayOf(pt.string),
|
|
7453
7547
|
persistence_type:pt.oneOf(["'local'", "'session'", "'memory'"])};
|
|
7548
|
+
pk.ScrollArea.propTypes = {children:pt.node,
|
|
7549
|
+
scrollTo:pt.shape({top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),behavior:pt.oneOf(["'auto'", "'smooth'"])}),
|
|
7550
|
+
scrollbarSize:pt.oneOfType([pt.string,pt.number]),
|
|
7551
|
+
type:pt.oneOf(["'auto'", "'always'", "'scroll'", "'hover'", "'never'"]),
|
|
7552
|
+
scrollHideDelay:pt.number,
|
|
7553
|
+
scrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["xy"])]),
|
|
7554
|
+
offsetScrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["present"])]),
|
|
7555
|
+
overscrollBehavior:pt.oneOfType([pt.oneOf(["auto"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["contain"]),pt.oneOf(["none"])]),
|
|
7556
|
+
className:pt.string,
|
|
7557
|
+
style:pt.any,
|
|
7558
|
+
hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7559
|
+
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7560
|
+
lightHidden:pt.bool,
|
|
7561
|
+
darkHidden:pt.bool,
|
|
7562
|
+
mod:pt.oneOfType([pt.string]),
|
|
7563
|
+
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7564
|
+
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7565
|
+
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7566
|
+
mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7567
|
+
mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7568
|
+
ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7569
|
+
me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7570
|
+
ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7571
|
+
mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7572
|
+
p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7573
|
+
py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7574
|
+
px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7575
|
+
pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7576
|
+
pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7577
|
+
ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7578
|
+
pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7579
|
+
pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7580
|
+
pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7581
|
+
bd:pt.oneOfType([pt.string,pt.number]),
|
|
7582
|
+
bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7583
|
+
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"])]),
|
|
7584
|
+
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"])]),
|
|
7585
|
+
opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),
|
|
7586
|
+
ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),
|
|
7587
|
+
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"])]),
|
|
7588
|
+
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"])]),
|
|
7589
|
+
lts:pt.oneOfType([pt.string,pt.number]),
|
|
7590
|
+
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"])]),
|
|
7591
|
+
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"])]),
|
|
7592
|
+
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"])]),
|
|
7593
|
+
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"])]),
|
|
7594
|
+
td:pt.oneOfType([pt.string,pt.number]),
|
|
7595
|
+
w:pt.oneOfType([pt.string,pt.number]),
|
|
7596
|
+
miw:pt.oneOfType([pt.string,pt.number]),
|
|
7597
|
+
maw:pt.oneOfType([pt.string,pt.number]),
|
|
7598
|
+
h:pt.oneOfType([pt.string,pt.number]),
|
|
7599
|
+
mih:pt.oneOfType([pt.string,pt.number]),
|
|
7600
|
+
mah:pt.oneOfType([pt.string,pt.number]),
|
|
7601
|
+
bgsz:pt.oneOfType([pt.string,pt.number]),
|
|
7602
|
+
bgp:pt.oneOfType([pt.string,pt.number]),
|
|
7603
|
+
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"])]),
|
|
7604
|
+
bga:pt.oneOfType([pt.oneOf(["scroll"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"])]),
|
|
7605
|
+
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"])]),
|
|
7606
|
+
top:pt.oneOfType([pt.string,pt.number]),
|
|
7607
|
+
left:pt.oneOfType([pt.string,pt.number]),
|
|
7608
|
+
bottom:pt.oneOfType([pt.string,pt.number]),
|
|
7609
|
+
right:pt.oneOfType([pt.string,pt.number]),
|
|
7610
|
+
inset:pt.oneOfType([pt.string,pt.number]),
|
|
7611
|
+
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"])]),
|
|
7612
|
+
flex:pt.oneOfType([pt.string,pt.number]),
|
|
7613
|
+
classNames:pt.object,
|
|
7614
|
+
styles:pt.any,
|
|
7615
|
+
unstyled:pt.bool,
|
|
7616
|
+
variant:pt.string,
|
|
7617
|
+
attributes:pt.any,
|
|
7618
|
+
id:pt.string,
|
|
7619
|
+
setProps:pt.any,
|
|
7620
|
+
data-*:pt.string,
|
|
7621
|
+
aria-*:pt.string,
|
|
7622
|
+
tabIndex:pt.number,
|
|
7623
|
+
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
7624
|
+
pk.ScrollAreaAutosize.propTypes = {children:pt.node,
|
|
7625
|
+
scrollbarSize:pt.oneOfType([pt.string,pt.number]),
|
|
7626
|
+
type:pt.oneOf(["'auto'", "'always'", "'scroll'", "'hover'", "'never'"]),
|
|
7627
|
+
scrollHideDelay:pt.number,
|
|
7628
|
+
scrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["xy"])]),
|
|
7629
|
+
offsetScrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["present"])]),
|
|
7630
|
+
overscrollBehavior:pt.oneOfType([pt.oneOf(["auto"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["contain"]),pt.oneOf(["none"])]),
|
|
7631
|
+
className:pt.string,
|
|
7632
|
+
style:pt.any,
|
|
7633
|
+
hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7634
|
+
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7635
|
+
lightHidden:pt.bool,
|
|
7636
|
+
darkHidden:pt.bool,
|
|
7637
|
+
mod:pt.oneOfType([pt.string]),
|
|
7638
|
+
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7639
|
+
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7640
|
+
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7641
|
+
mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7642
|
+
mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7643
|
+
ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7644
|
+
me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7645
|
+
ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7646
|
+
mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7647
|
+
p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7648
|
+
py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7649
|
+
px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7650
|
+
pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7651
|
+
pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7652
|
+
ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7653
|
+
pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7654
|
+
pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7655
|
+
pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7656
|
+
bd:pt.oneOfType([pt.string,pt.number]),
|
|
7657
|
+
bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7658
|
+
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"])]),
|
|
7659
|
+
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"])]),
|
|
7660
|
+
opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),
|
|
7661
|
+
ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),
|
|
7662
|
+
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"])]),
|
|
7663
|
+
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"])]),
|
|
7664
|
+
lts:pt.oneOfType([pt.string,pt.number]),
|
|
7665
|
+
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"])]),
|
|
7666
|
+
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"])]),
|
|
7667
|
+
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"])]),
|
|
7668
|
+
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"])]),
|
|
7669
|
+
td:pt.oneOfType([pt.string,pt.number]),
|
|
7670
|
+
w:pt.oneOfType([pt.string,pt.number]),
|
|
7671
|
+
miw:pt.oneOfType([pt.string,pt.number]),
|
|
7672
|
+
maw:pt.oneOfType([pt.string,pt.number]),
|
|
7673
|
+
h:pt.oneOfType([pt.string,pt.number]),
|
|
7674
|
+
mih:pt.oneOfType([pt.string,pt.number]),
|
|
7675
|
+
mah:pt.oneOfType([pt.string,pt.number]),
|
|
7676
|
+
bgsz:pt.oneOfType([pt.string,pt.number]),
|
|
7677
|
+
bgp:pt.oneOfType([pt.string,pt.number]),
|
|
7678
|
+
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"])]),
|
|
7679
|
+
bga:pt.oneOfType([pt.oneOf(["scroll"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"])]),
|
|
7680
|
+
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"])]),
|
|
7681
|
+
top:pt.oneOfType([pt.string,pt.number]),
|
|
7682
|
+
left:pt.oneOfType([pt.string,pt.number]),
|
|
7683
|
+
bottom:pt.oneOfType([pt.string,pt.number]),
|
|
7684
|
+
right:pt.oneOfType([pt.string,pt.number]),
|
|
7685
|
+
inset:pt.oneOfType([pt.string,pt.number]),
|
|
7686
|
+
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"])]),
|
|
7687
|
+
flex:pt.oneOfType([pt.string,pt.number]),
|
|
7688
|
+
classNames:pt.object,
|
|
7689
|
+
styles:pt.any,
|
|
7690
|
+
unstyled:pt.bool,
|
|
7691
|
+
variant:pt.string,
|
|
7692
|
+
attributes:pt.any,
|
|
7693
|
+
id:pt.string,
|
|
7694
|
+
setProps:pt.any,
|
|
7695
|
+
data-*:pt.string,
|
|
7696
|
+
aria-*:pt.string,
|
|
7697
|
+
tabIndex:pt.number,
|
|
7698
|
+
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
7454
7699
|
pk.RangeSlider.propTypes = {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"])]),
|
|
7455
7700
|
radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
7456
7701
|
size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -7969,7 +8214,7 @@ pk.TableCaption.propTypes = {children:pt.node,
|
|
|
7969
8214
|
pk.TableScrollContainer.propTypes = {minWidth:pt.oneOfType([pt.string,pt.number]),
|
|
7970
8215
|
maxHeight:pt.oneOfType([pt.string,pt.number]),
|
|
7971
8216
|
type:pt.oneOf(["'native'", "'scrollarea'"]),
|
|
7972
|
-
scrollAreaProps:pt.shape({scrollbarSize:pt.oneOfType([pt.string,pt.number]),type:pt.oneOf(["'auto'", "'scroll'", "'always'", "'hover'", "'never'"]),scrollHideDelay:pt.number,scrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["xy"])]),offsetScrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"])]),overscrollBehavior:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["auto"]),pt.oneOf(["none"]),pt.oneOf(["contain"])]),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]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),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,attributes:pt.any}),
|
|
8217
|
+
scrollAreaProps:pt.shape({scrollbarSize:pt.oneOfType([pt.string,pt.number]),type:pt.oneOf(["'auto'", "'scroll'", "'always'", "'hover'", "'never'"]),scrollHideDelay:pt.number,scrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["xy"])]),offsetScrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["present"])]),overscrollBehavior:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["auto"]),pt.oneOf(["none"]),pt.oneOf(["contain"])]),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]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),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,attributes:pt.any}),
|
|
7973
8218
|
children:pt.node,
|
|
7974
8219
|
className:pt.string,
|
|
7975
8220
|
style:pt.any,
|
|
@@ -11262,81 +11507,6 @@ pk.RingProgress.propTypes = {label:pt.node,
|
|
|
11262
11507
|
aria-*:pt.string,
|
|
11263
11508
|
tabIndex:pt.number,
|
|
11264
11509
|
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
11265
|
-
pk.ScrollArea.propTypes = {children:pt.node,
|
|
11266
|
-
scrollbarSize:pt.oneOfType([pt.string,pt.number]),
|
|
11267
|
-
type:pt.oneOf(["'auto'", "'scroll'", "'always'", "'hover'", "'never'"]),
|
|
11268
|
-
scrollHideDelay:pt.number,
|
|
11269
|
-
scrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["xy"])]),
|
|
11270
|
-
offsetScrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"])]),
|
|
11271
|
-
overscrollBehavior: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(["auto"]),pt.oneOf(["contain"])]),
|
|
11272
|
-
className:pt.string,
|
|
11273
|
-
style:pt.any,
|
|
11274
|
-
hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11275
|
-
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11276
|
-
lightHidden:pt.bool,
|
|
11277
|
-
darkHidden:pt.bool,
|
|
11278
|
-
mod:pt.oneOfType([pt.string]),
|
|
11279
|
-
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11280
|
-
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11281
|
-
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11282
|
-
mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11283
|
-
mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11284
|
-
ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11285
|
-
me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11286
|
-
ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11287
|
-
mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11288
|
-
p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11289
|
-
py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11290
|
-
px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11291
|
-
pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11292
|
-
pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11293
|
-
ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11294
|
-
pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11295
|
-
pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11296
|
-
pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11297
|
-
bd:pt.oneOfType([pt.string,pt.number]),
|
|
11298
|
-
bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11299
|
-
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"])]),
|
|
11300
|
-
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"])]),
|
|
11301
|
-
opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),
|
|
11302
|
-
ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),
|
|
11303
|
-
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"])]),
|
|
11304
|
-
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"])]),
|
|
11305
|
-
lts:pt.oneOfType([pt.string,pt.number]),
|
|
11306
|
-
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"])]),
|
|
11307
|
-
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"])]),
|
|
11308
|
-
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"])]),
|
|
11309
|
-
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"])]),
|
|
11310
|
-
td:pt.oneOfType([pt.string,pt.number]),
|
|
11311
|
-
w:pt.oneOfType([pt.string,pt.number]),
|
|
11312
|
-
miw:pt.oneOfType([pt.string,pt.number]),
|
|
11313
|
-
maw:pt.oneOfType([pt.string,pt.number]),
|
|
11314
|
-
h:pt.oneOfType([pt.string,pt.number]),
|
|
11315
|
-
mih:pt.oneOfType([pt.string,pt.number]),
|
|
11316
|
-
mah:pt.oneOfType([pt.string,pt.number]),
|
|
11317
|
-
bgsz:pt.oneOfType([pt.string,pt.number]),
|
|
11318
|
-
bgp:pt.oneOfType([pt.string,pt.number]),
|
|
11319
|
-
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"])]),
|
|
11320
|
-
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"])]),
|
|
11321
|
-
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"])]),
|
|
11322
|
-
top:pt.oneOfType([pt.string,pt.number]),
|
|
11323
|
-
left:pt.oneOfType([pt.string,pt.number]),
|
|
11324
|
-
bottom:pt.oneOfType([pt.string,pt.number]),
|
|
11325
|
-
right:pt.oneOfType([pt.string,pt.number]),
|
|
11326
|
-
inset:pt.oneOfType([pt.string,pt.number]),
|
|
11327
|
-
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"])]),
|
|
11328
|
-
flex:pt.oneOfType([pt.string,pt.number]),
|
|
11329
|
-
classNames:pt.object,
|
|
11330
|
-
styles:pt.any,
|
|
11331
|
-
unstyled:pt.bool,
|
|
11332
|
-
variant:pt.string,
|
|
11333
|
-
attributes:pt.any,
|
|
11334
|
-
id:pt.string,
|
|
11335
|
-
setProps:pt.any,
|
|
11336
|
-
data-*:pt.string,
|
|
11337
|
-
aria-*:pt.string,
|
|
11338
|
-
tabIndex:pt.number,
|
|
11339
|
-
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
11340
11510
|
pk.SegmentedControl.propTypes = {data:pt.arrayOf(pt.oneOfType([pt.string])),
|
|
11341
11511
|
value:pt.string,
|
|
11342
11512
|
disabled:pt.bool,
|
|
@@ -12321,7 +12491,7 @@ pk.VisuallyHidden.propTypes = {children:pt.node,
|
|
|
12321
12491
|
tabIndex:pt.number,
|
|
12322
12492
|
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
12323
12493
|
pk.DateInput.propTypes = {value:pt.string,
|
|
12324
|
-
popoverProps:pt.shape({radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles:pt.bool,hideDetached:pt.bool,position:pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"]),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.
|
|
12494
|
+
popoverProps:pt.shape({radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles:pt.bool,hideDetached:pt.bool,position:pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"]),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.oneOfType([pt.oneOf(["alignment"])]),rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"])]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,padding:pt.oneOfType([pt.number]),fallbackPlacements:pt.arrayOf(pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"])),fallbackStrategy:pt.oneOf(["'bestFit'", "'initialPlacement'"]),fallbackAxisSideDirection:pt.oneOf(["'end'", "'start'", "'none'"]),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.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}),
|
|
12325
12495
|
clearable:pt.bool,
|
|
12326
12496
|
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}),
|
|
12327
12497
|
valueFormat:pt.string,
|
|
@@ -12644,7 +12814,7 @@ pk.DatePickerInput.propTypes = {valueFormat:pt.string,
|
|
|
12644
12814
|
flex:pt.oneOfType([pt.string,pt.number]),
|
|
12645
12815
|
closeOnChange:pt.bool,
|
|
12646
12816
|
dropdownType:pt.oneOf(["'popover'", "'modal'"]),
|
|
12647
|
-
popoverProps:pt.shape({radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles:pt.bool,hideDetached:pt.bool,position:pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"]),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.
|
|
12817
|
+
popoverProps:pt.shape({radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles:pt.bool,hideDetached:pt.bool,position:pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"]),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.oneOfType([pt.oneOf(["alignment"])]),rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"]),pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number})]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,padding:pt.oneOfType([pt.number,pt.shape({top:pt.number,left:pt.number,bottom:pt.number,right:pt.number})]),fallbackPlacements:pt.arrayOf(pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"])),fallbackStrategy:pt.oneOf(["'bestFit'", "'initialPlacement'"]),fallbackAxisSideDirection:pt.oneOf(["'end'", "'start'", "'none'"]),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.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}),
|
|
12648
12818
|
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]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),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]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),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,attributes:pt.any,children:pt.node,zIndex:pt.oneOfType([pt.string,pt.number]),center:pt.bool,fixed:pt.bool,backgroundOpacity:pt.number,color:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["aliceblue"]),pt.oneOf(["antiquewhite"]),pt.oneOf(["aqua"]),pt.oneOf(["aquamarine"]),pt.oneOf(["azure"]),pt.oneOf(["beige"]),pt.oneOf(["bisque"]),pt.oneOf(["black"]),pt.oneOf(["blanchedalmond"]),pt.oneOf(["blue"]),pt.oneOf(["blueviolet"]),pt.oneOf(["brown"]),pt.oneOf(["burlywood"]),pt.oneOf(["cadetblue"]),pt.oneOf(["chartreuse"]),pt.oneOf(["chocolate"]),pt.oneOf(["coral"]),pt.oneOf(["cornflowerblue"]),pt.oneOf(["cornsilk"]),pt.oneOf(["crimson"]),pt.oneOf(["cyan"]),pt.oneOf(["darkblue"]),pt.oneOf(["darkcyan"]),pt.oneOf(["darkgoldenrod"]),pt.oneOf(["darkgray"]),pt.oneOf(["darkgreen"]),pt.oneOf(["darkgrey"]),pt.oneOf(["darkkhaki"]),pt.oneOf(["darkmagenta"]),pt.oneOf(["darkolivegreen"]),pt.oneOf(["darkorange"]),pt.oneOf(["darkorchid"]),pt.oneOf(["darkred"]),pt.oneOf(["darksalmon"]),pt.oneOf(["darkseagreen"]),pt.oneOf(["darkslateblue"]),pt.oneOf(["darkslategray"]),pt.oneOf(["darkslategrey"]),pt.oneOf(["darkturquoise"]),pt.oneOf(["darkviolet"]),pt.oneOf(["deeppink"]),pt.oneOf(["deepskyblue"]),pt.oneOf(["dimgray"]),pt.oneOf(["dimgrey"]),pt.oneOf(["dodgerblue"]),pt.oneOf(["firebrick"]),pt.oneOf(["floralwhite"]),pt.oneOf(["forestgreen"]),pt.oneOf(["fuchsia"]),pt.oneOf(["gainsboro"]),pt.oneOf(["ghostwhite"]),pt.oneOf(["gold"]),pt.oneOf(["goldenrod"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["greenyellow"]),pt.oneOf(["grey"]),pt.oneOf(["honeydew"]),pt.oneOf(["hotpink"]),pt.oneOf(["indianred"]),pt.oneOf(["indigo"]),pt.oneOf(["ivory"]),pt.oneOf(["khaki"]),pt.oneOf(["lavender"]),pt.oneOf(["lavenderblush"]),pt.oneOf(["lawngreen"]),pt.oneOf(["lemonchiffon"]),pt.oneOf(["lightblue"]),pt.oneOf(["lightcoral"]),pt.oneOf(["lightcyan"]),pt.oneOf(["lightgoldenrodyellow"]),pt.oneOf(["lightgray"]),pt.oneOf(["lightgreen"]),pt.oneOf(["lightgrey"]),pt.oneOf(["lightpink"]),pt.oneOf(["lightsalmon"]),pt.oneOf(["lightseagreen"]),pt.oneOf(["lightskyblue"]),pt.oneOf(["lightslategray"]),pt.oneOf(["lightslategrey"]),pt.oneOf(["lightsteelblue"]),pt.oneOf(["lightyellow"]),pt.oneOf(["lime"]),pt.oneOf(["limegreen"]),pt.oneOf(["linen"]),pt.oneOf(["magenta"]),pt.oneOf(["maroon"]),pt.oneOf(["mediumaquamarine"]),pt.oneOf(["mediumblue"]),pt.oneOf(["mediumorchid"]),pt.oneOf(["mediumpurple"]),pt.oneOf(["mediumseagreen"]),pt.oneOf(["mediumslateblue"]),pt.oneOf(["mediumspringgreen"]),pt.oneOf(["mediumturquoise"]),pt.oneOf(["mediumvioletred"]),pt.oneOf(["midnightblue"]),pt.oneOf(["mintcream"]),pt.oneOf(["mistyrose"]),pt.oneOf(["moccasin"]),pt.oneOf(["navajowhite"]),pt.oneOf(["navy"]),pt.oneOf(["oldlace"]),pt.oneOf(["olive"]),pt.oneOf(["olivedrab"]),pt.oneOf(["orange"]),pt.oneOf(["orangered"]),pt.oneOf(["orchid"]),pt.oneOf(["palegoldenrod"]),pt.oneOf(["palegreen"]),pt.oneOf(["paleturquoise"]),pt.oneOf(["palevioletred"]),pt.oneOf(["papayawhip"]),pt.oneOf(["peachpuff"]),pt.oneOf(["peru"]),pt.oneOf(["pink"]),pt.oneOf(["plum"]),pt.oneOf(["powderblue"]),pt.oneOf(["purple"]),pt.oneOf(["rebeccapurple"]),pt.oneOf(["red"]),pt.oneOf(["rosybrown"]),pt.oneOf(["royalblue"]),pt.oneOf(["saddlebrown"]),pt.oneOf(["salmon"]),pt.oneOf(["sandybrown"]),pt.oneOf(["seagreen"]),pt.oneOf(["seashell"]),pt.oneOf(["sienna"]),pt.oneOf(["silver"]),pt.oneOf(["skyblue"]),pt.oneOf(["slateblue"]),pt.oneOf(["slategray"]),pt.oneOf(["slategrey"]),pt.oneOf(["snow"]),pt.oneOf(["springgreen"]),pt.oneOf(["steelblue"]),pt.oneOf(["tan"]),pt.oneOf(["teal"]),pt.oneOf(["thistle"]),pt.oneOf(["tomato"]),pt.oneOf(["transparent"]),pt.oneOf(["turquoise"]),pt.oneOf(["violet"]),pt.oneOf(["wheat"]),pt.oneOf(["white"]),pt.oneOf(["whitesmoke"]),pt.oneOf(["yellow"]),pt.oneOf(["yellowgreen"]),pt.oneOf(["ActiveBorder"]),pt.oneOf(["ActiveCaption"]),pt.oneOf(["AppWorkspace"]),pt.oneOf(["Background"]),pt.oneOf(["ButtonFace"]),pt.oneOf(["ButtonHighlight"]),pt.oneOf(["ButtonShadow"]),pt.oneOf(["ButtonText"]),pt.oneOf(["CaptionText"]),pt.oneOf(["GrayText"]),pt.oneOf(["Highlight"]),pt.oneOf(["HighlightText"]),pt.oneOf(["InactiveBorder"]),pt.oneOf(["InactiveCaption"]),pt.oneOf(["InactiveCaptionText"]),pt.oneOf(["InfoBackground"]),pt.oneOf(["InfoText"]),pt.oneOf(["Menu"]),pt.oneOf(["MenuText"]),pt.oneOf(["Scrollbar"]),pt.oneOf(["ThreeDDarkShadow"]),pt.oneOf(["ThreeDFace"]),pt.oneOf(["ThreeDHighlight"]),pt.oneOf(["ThreeDLightShadow"]),pt.oneOf(["ThreeDShadow"]),pt.oneOf(["Window"]),pt.oneOf(["WindowFrame"]),pt.oneOf(["WindowText"]),pt.oneOf(["currentcolor"])]),blur:pt.oneOfType([pt.string,pt.number]),gradient:pt.string}),withOverlay:pt.bool,padding:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),title:pt.node,withCloseButton:pt.bool,closeButtonProps:pt.shape({size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,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]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),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}),
|
|
12649
12819
|
clearable:pt.bool,
|
|
12650
12820
|
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}),
|
|
@@ -12820,7 +12990,7 @@ pk.DateTimePicker.propTypes = {valueFormat:pt.string,
|
|
|
12820
12990
|
descriptionProps:pt.objectOf(pt.any),
|
|
12821
12991
|
errorProps:pt.objectOf(pt.any),
|
|
12822
12992
|
inputWrapperOrder:pt.arrayOf(pt.oneOf(["'label'", "'description'", "'error'", "'input'"])),
|
|
12823
|
-
popoverProps:pt.shape({radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles:pt.bool,hideDetached:pt.bool,position:pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"]),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.
|
|
12993
|
+
popoverProps:pt.shape({radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles:pt.bool,hideDetached:pt.bool,position:pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"]),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.oneOfType([pt.oneOf(["alignment"])]),rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"]),pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number})]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,padding:pt.oneOfType([pt.number,pt.shape({top:pt.number,left:pt.number,bottom:pt.number,right:pt.number})]),fallbackPlacements:pt.arrayOf(pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"])),fallbackStrategy:pt.oneOf(["'bestFit'", "'initialPlacement'"]),fallbackAxisSideDirection:pt.oneOf(["'end'", "'start'", "'none'"]),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.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}),
|
|
12824
12994
|
clearable:pt.bool,
|
|
12825
12995
|
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}),
|
|
12826
12996
|
dropdownType:pt.oneOf(["'popover'", "'modal'"]),
|
|
@@ -12865,6 +13035,87 @@ pk.DatesProvider.propTypes = {id:pt.string,
|
|
|
12865
13035
|
setProps:pt.any,
|
|
12866
13036
|
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}),
|
|
12867
13037
|
children:pt.node};
|
|
13038
|
+
pk.MiniCalendar.propTypes = {date:pt.string,
|
|
13039
|
+
defaultDate:pt.string,
|
|
13040
|
+
value:pt.string,
|
|
13041
|
+
maxDate:pt.string,
|
|
13042
|
+
minDate:pt.string,
|
|
13043
|
+
numberOfDays:pt.number,
|
|
13044
|
+
monthLabelFormat:pt.string,
|
|
13045
|
+
getDayProps:pt.any,
|
|
13046
|
+
size:pt.oneOf(["'xs'", "'sm'", "'md'", "'lg'", "'xl'"]),
|
|
13047
|
+
locale:pt.string,
|
|
13048
|
+
id:pt.string,
|
|
13049
|
+
setProps:pt.any,
|
|
13050
|
+
data-*:pt.string,
|
|
13051
|
+
aria-*:pt.string,
|
|
13052
|
+
tabIndex:pt.number,
|
|
13053
|
+
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string}),
|
|
13054
|
+
persistence:pt.oneOfType([pt.string,pt.number]),
|
|
13055
|
+
persisted_props:pt.arrayOf(pt.string),
|
|
13056
|
+
persistence_type:pt.oneOf(["'local'", "'session'", "'memory'"]),
|
|
13057
|
+
className:pt.string,
|
|
13058
|
+
style:pt.any,
|
|
13059
|
+
hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13060
|
+
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13061
|
+
lightHidden:pt.bool,
|
|
13062
|
+
darkHidden:pt.bool,
|
|
13063
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
13064
|
+
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13065
|
+
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13066
|
+
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13067
|
+
mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13068
|
+
mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13069
|
+
ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13070
|
+
me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13071
|
+
ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13072
|
+
mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13073
|
+
p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13074
|
+
py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13075
|
+
px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13076
|
+
pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13077
|
+
pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13078
|
+
ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13079
|
+
pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13080
|
+
pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13081
|
+
pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13082
|
+
bd:pt.oneOfType([pt.string,pt.number]),
|
|
13083
|
+
bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
13084
|
+
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"])]),
|
|
13085
|
+
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"])]),
|
|
13086
|
+
opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),
|
|
13087
|
+
ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),
|
|
13088
|
+
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"])]),
|
|
13089
|
+
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"])]),
|
|
13090
|
+
lts:pt.oneOfType([pt.string,pt.number]),
|
|
13091
|
+
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"])]),
|
|
13092
|
+
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"])]),
|
|
13093
|
+
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"])]),
|
|
13094
|
+
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"])]),
|
|
13095
|
+
td:pt.oneOfType([pt.string,pt.number]),
|
|
13096
|
+
w:pt.oneOfType([pt.string,pt.number]),
|
|
13097
|
+
miw:pt.oneOfType([pt.string,pt.number]),
|
|
13098
|
+
maw:pt.oneOfType([pt.string,pt.number]),
|
|
13099
|
+
h:pt.oneOfType([pt.string,pt.number]),
|
|
13100
|
+
mih:pt.oneOfType([pt.string,pt.number]),
|
|
13101
|
+
mah:pt.oneOfType([pt.string,pt.number]),
|
|
13102
|
+
bgsz:pt.oneOfType([pt.string,pt.number]),
|
|
13103
|
+
bgp:pt.oneOfType([pt.string,pt.number]),
|
|
13104
|
+
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"])]),
|
|
13105
|
+
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"])]),
|
|
13106
|
+
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"])]),
|
|
13107
|
+
top:pt.oneOfType([pt.string,pt.number]),
|
|
13108
|
+
left:pt.oneOfType([pt.string,pt.number]),
|
|
13109
|
+
bottom:pt.oneOfType([pt.string,pt.number]),
|
|
13110
|
+
right:pt.oneOfType([pt.string,pt.number]),
|
|
13111
|
+
inset:pt.oneOfType([pt.string,pt.number]),
|
|
13112
|
+
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"])]),
|
|
13113
|
+
flex:pt.oneOfType([pt.string,pt.number]),
|
|
13114
|
+
classNames:pt.object,
|
|
13115
|
+
styles:pt.any,
|
|
13116
|
+
unstyled:pt.bool,
|
|
13117
|
+
variant:pt.string,
|
|
13118
|
+
attributes:pt.any};
|
|
12868
13119
|
pk.MonthPickerInput.propTypes = {valueFormat:pt.string,
|
|
12869
13120
|
n_submit:pt.number,
|
|
12870
13121
|
debounce:pt.oneOfType([pt.number]),
|
|
@@ -12936,7 +13187,7 @@ pk.MonthPickerInput.propTypes = {valueFormat:pt.string,
|
|
|
12936
13187
|
flex:pt.oneOfType([pt.string,pt.number]),
|
|
12937
13188
|
closeOnChange:pt.bool,
|
|
12938
13189
|
dropdownType:pt.oneOf(["'popover'", "'modal'"]),
|
|
12939
|
-
popoverProps:pt.shape({radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles:pt.bool,hideDetached:pt.bool,position:pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"]),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.
|
|
13190
|
+
popoverProps:pt.shape({radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles:pt.bool,hideDetached:pt.bool,position:pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"]),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.oneOfType([pt.oneOf(["alignment"])]),rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"]),pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number})]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,padding:pt.oneOfType([pt.number,pt.shape({top:pt.number,left:pt.number,bottom:pt.number,right:pt.number})]),fallbackPlacements:pt.arrayOf(pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"])),fallbackStrategy:pt.oneOf(["'bestFit'", "'initialPlacement'"]),fallbackAxisSideDirection:pt.oneOf(["'end'", "'start'", "'none'"]),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.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}),
|
|
12940
13191
|
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]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),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]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),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,attributes:pt.any,children:pt.node,zIndex:pt.oneOfType([pt.string,pt.number]),center:pt.bool,fixed:pt.bool,backgroundOpacity:pt.number,color:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["aliceblue"]),pt.oneOf(["antiquewhite"]),pt.oneOf(["aqua"]),pt.oneOf(["aquamarine"]),pt.oneOf(["azure"]),pt.oneOf(["beige"]),pt.oneOf(["bisque"]),pt.oneOf(["black"]),pt.oneOf(["blanchedalmond"]),pt.oneOf(["blue"]),pt.oneOf(["blueviolet"]),pt.oneOf(["brown"]),pt.oneOf(["burlywood"]),pt.oneOf(["cadetblue"]),pt.oneOf(["chartreuse"]),pt.oneOf(["chocolate"]),pt.oneOf(["coral"]),pt.oneOf(["cornflowerblue"]),pt.oneOf(["cornsilk"]),pt.oneOf(["crimson"]),pt.oneOf(["cyan"]),pt.oneOf(["darkblue"]),pt.oneOf(["darkcyan"]),pt.oneOf(["darkgoldenrod"]),pt.oneOf(["darkgray"]),pt.oneOf(["darkgreen"]),pt.oneOf(["darkgrey"]),pt.oneOf(["darkkhaki"]),pt.oneOf(["darkmagenta"]),pt.oneOf(["darkolivegreen"]),pt.oneOf(["darkorange"]),pt.oneOf(["darkorchid"]),pt.oneOf(["darkred"]),pt.oneOf(["darksalmon"]),pt.oneOf(["darkseagreen"]),pt.oneOf(["darkslateblue"]),pt.oneOf(["darkslategray"]),pt.oneOf(["darkslategrey"]),pt.oneOf(["darkturquoise"]),pt.oneOf(["darkviolet"]),pt.oneOf(["deeppink"]),pt.oneOf(["deepskyblue"]),pt.oneOf(["dimgray"]),pt.oneOf(["dimgrey"]),pt.oneOf(["dodgerblue"]),pt.oneOf(["firebrick"]),pt.oneOf(["floralwhite"]),pt.oneOf(["forestgreen"]),pt.oneOf(["fuchsia"]),pt.oneOf(["gainsboro"]),pt.oneOf(["ghostwhite"]),pt.oneOf(["gold"]),pt.oneOf(["goldenrod"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["greenyellow"]),pt.oneOf(["grey"]),pt.oneOf(["honeydew"]),pt.oneOf(["hotpink"]),pt.oneOf(["indianred"]),pt.oneOf(["indigo"]),pt.oneOf(["ivory"]),pt.oneOf(["khaki"]),pt.oneOf(["lavender"]),pt.oneOf(["lavenderblush"]),pt.oneOf(["lawngreen"]),pt.oneOf(["lemonchiffon"]),pt.oneOf(["lightblue"]),pt.oneOf(["lightcoral"]),pt.oneOf(["lightcyan"]),pt.oneOf(["lightgoldenrodyellow"]),pt.oneOf(["lightgray"]),pt.oneOf(["lightgreen"]),pt.oneOf(["lightgrey"]),pt.oneOf(["lightpink"]),pt.oneOf(["lightsalmon"]),pt.oneOf(["lightseagreen"]),pt.oneOf(["lightskyblue"]),pt.oneOf(["lightslategray"]),pt.oneOf(["lightslategrey"]),pt.oneOf(["lightsteelblue"]),pt.oneOf(["lightyellow"]),pt.oneOf(["lime"]),pt.oneOf(["limegreen"]),pt.oneOf(["linen"]),pt.oneOf(["magenta"]),pt.oneOf(["maroon"]),pt.oneOf(["mediumaquamarine"]),pt.oneOf(["mediumblue"]),pt.oneOf(["mediumorchid"]),pt.oneOf(["mediumpurple"]),pt.oneOf(["mediumseagreen"]),pt.oneOf(["mediumslateblue"]),pt.oneOf(["mediumspringgreen"]),pt.oneOf(["mediumturquoise"]),pt.oneOf(["mediumvioletred"]),pt.oneOf(["midnightblue"]),pt.oneOf(["mintcream"]),pt.oneOf(["mistyrose"]),pt.oneOf(["moccasin"]),pt.oneOf(["navajowhite"]),pt.oneOf(["navy"]),pt.oneOf(["oldlace"]),pt.oneOf(["olive"]),pt.oneOf(["olivedrab"]),pt.oneOf(["orange"]),pt.oneOf(["orangered"]),pt.oneOf(["orchid"]),pt.oneOf(["palegoldenrod"]),pt.oneOf(["palegreen"]),pt.oneOf(["paleturquoise"]),pt.oneOf(["palevioletred"]),pt.oneOf(["papayawhip"]),pt.oneOf(["peachpuff"]),pt.oneOf(["peru"]),pt.oneOf(["pink"]),pt.oneOf(["plum"]),pt.oneOf(["powderblue"]),pt.oneOf(["purple"]),pt.oneOf(["rebeccapurple"]),pt.oneOf(["red"]),pt.oneOf(["rosybrown"]),pt.oneOf(["royalblue"]),pt.oneOf(["saddlebrown"]),pt.oneOf(["salmon"]),pt.oneOf(["sandybrown"]),pt.oneOf(["seagreen"]),pt.oneOf(["seashell"]),pt.oneOf(["sienna"]),pt.oneOf(["silver"]),pt.oneOf(["skyblue"]),pt.oneOf(["slateblue"]),pt.oneOf(["slategray"]),pt.oneOf(["slategrey"]),pt.oneOf(["snow"]),pt.oneOf(["springgreen"]),pt.oneOf(["steelblue"]),pt.oneOf(["tan"]),pt.oneOf(["teal"]),pt.oneOf(["thistle"]),pt.oneOf(["tomato"]),pt.oneOf(["transparent"]),pt.oneOf(["turquoise"]),pt.oneOf(["violet"]),pt.oneOf(["wheat"]),pt.oneOf(["white"]),pt.oneOf(["whitesmoke"]),pt.oneOf(["yellow"]),pt.oneOf(["yellowgreen"]),pt.oneOf(["ActiveBorder"]),pt.oneOf(["ActiveCaption"]),pt.oneOf(["AppWorkspace"]),pt.oneOf(["Background"]),pt.oneOf(["ButtonFace"]),pt.oneOf(["ButtonHighlight"]),pt.oneOf(["ButtonShadow"]),pt.oneOf(["ButtonText"]),pt.oneOf(["CaptionText"]),pt.oneOf(["GrayText"]),pt.oneOf(["Highlight"]),pt.oneOf(["HighlightText"]),pt.oneOf(["InactiveBorder"]),pt.oneOf(["InactiveCaption"]),pt.oneOf(["InactiveCaptionText"]),pt.oneOf(["InfoBackground"]),pt.oneOf(["InfoText"]),pt.oneOf(["Menu"]),pt.oneOf(["MenuText"]),pt.oneOf(["Scrollbar"]),pt.oneOf(["ThreeDDarkShadow"]),pt.oneOf(["ThreeDFace"]),pt.oneOf(["ThreeDHighlight"]),pt.oneOf(["ThreeDLightShadow"]),pt.oneOf(["ThreeDShadow"]),pt.oneOf(["Window"]),pt.oneOf(["WindowFrame"]),pt.oneOf(["WindowText"]),pt.oneOf(["currentcolor"])]),blur:pt.oneOfType([pt.string,pt.number]),gradient:pt.string}),withOverlay:pt.bool,padding:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),title:pt.node,withCloseButton:pt.bool,closeButtonProps:pt.shape({size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,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]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),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}),
|
|
12941
13192
|
clearable:pt.bool,
|
|
12942
13193
|
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}),
|
|
@@ -13229,7 +13480,7 @@ pk.TimePicker.propTypes = {value:pt.string,
|
|
|
13229
13480
|
amPmInputLabel:pt.string,
|
|
13230
13481
|
amPmLabels:pt.shape({am:pt.string,pm:pt.string}),
|
|
13231
13482
|
withDropdown:pt.bool,
|
|
13232
|
-
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.
|
|
13483
|
+
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.oneOfType([pt.oneOf(["alignment"])]),rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"]),pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number})]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,padding:pt.oneOfType([pt.number,pt.shape({top:pt.number,left:pt.number,bottom:pt.number,right:pt.number})]),fallbackPlacements:pt.arrayOf(pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"])),fallbackStrategy:pt.oneOf(["'bestFit'", "'initialPlacement'"]),fallbackAxisSideDirection:pt.oneOf(["'end'", "'start'", "'none'"]),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.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,attributes:pt.any}),
|
|
13233
13484
|
clearButtonProps:pt.any,
|
|
13234
13485
|
hoursInputProps:pt.any,
|
|
13235
13486
|
minutesInputProps:pt.any,
|
|
@@ -13243,6 +13494,7 @@ pk.TimePicker.propTypes = {value:pt.string,
|
|
|
13243
13494
|
maxDropdownContentHeight:pt.number,
|
|
13244
13495
|
scrollAreaProps:pt.any,
|
|
13245
13496
|
timeRangePresets:pt.shape({startTime:pt.string,endTime:pt.string,interval:pt.string}),
|
|
13497
|
+
reverseTimeControlsList:pt.bool,
|
|
13246
13498
|
className:pt.string,
|
|
13247
13499
|
style:pt.any,
|
|
13248
13500
|
hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -13400,7 +13652,7 @@ pk.YearPickerInput.propTypes = {valueFormat:pt.string,
|
|
|
13400
13652
|
flex:pt.oneOfType([pt.string,pt.number]),
|
|
13401
13653
|
closeOnChange:pt.bool,
|
|
13402
13654
|
dropdownType:pt.oneOf(["'popover'", "'modal'"]),
|
|
13403
|
-
popoverProps:pt.shape({radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles:pt.bool,hideDetached:pt.bool,position:pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"]),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.
|
|
13655
|
+
popoverProps:pt.shape({radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles:pt.bool,hideDetached:pt.bool,position:pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"]),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.oneOfType([pt.oneOf(["alignment"])]),rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"]),pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number})]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,padding:pt.oneOfType([pt.number,pt.shape({top:pt.number,left:pt.number,bottom:pt.number,right:pt.number})]),fallbackPlacements:pt.arrayOf(pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"])),fallbackStrategy:pt.oneOf(["'bestFit'", "'initialPlacement'"]),fallbackAxisSideDirection:pt.oneOf(["'end'", "'start'", "'none'"]),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.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}),
|
|
13404
13656
|
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]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),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]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),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,attributes:pt.any,children:pt.node,zIndex:pt.oneOfType([pt.string,pt.number]),center:pt.bool,fixed:pt.bool,backgroundOpacity:pt.number,color:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["aliceblue"]),pt.oneOf(["antiquewhite"]),pt.oneOf(["aqua"]),pt.oneOf(["aquamarine"]),pt.oneOf(["azure"]),pt.oneOf(["beige"]),pt.oneOf(["bisque"]),pt.oneOf(["black"]),pt.oneOf(["blanchedalmond"]),pt.oneOf(["blue"]),pt.oneOf(["blueviolet"]),pt.oneOf(["brown"]),pt.oneOf(["burlywood"]),pt.oneOf(["cadetblue"]),pt.oneOf(["chartreuse"]),pt.oneOf(["chocolate"]),pt.oneOf(["coral"]),pt.oneOf(["cornflowerblue"]),pt.oneOf(["cornsilk"]),pt.oneOf(["crimson"]),pt.oneOf(["cyan"]),pt.oneOf(["darkblue"]),pt.oneOf(["darkcyan"]),pt.oneOf(["darkgoldenrod"]),pt.oneOf(["darkgray"]),pt.oneOf(["darkgreen"]),pt.oneOf(["darkgrey"]),pt.oneOf(["darkkhaki"]),pt.oneOf(["darkmagenta"]),pt.oneOf(["darkolivegreen"]),pt.oneOf(["darkorange"]),pt.oneOf(["darkorchid"]),pt.oneOf(["darkred"]),pt.oneOf(["darksalmon"]),pt.oneOf(["darkseagreen"]),pt.oneOf(["darkslateblue"]),pt.oneOf(["darkslategray"]),pt.oneOf(["darkslategrey"]),pt.oneOf(["darkturquoise"]),pt.oneOf(["darkviolet"]),pt.oneOf(["deeppink"]),pt.oneOf(["deepskyblue"]),pt.oneOf(["dimgray"]),pt.oneOf(["dimgrey"]),pt.oneOf(["dodgerblue"]),pt.oneOf(["firebrick"]),pt.oneOf(["floralwhite"]),pt.oneOf(["forestgreen"]),pt.oneOf(["fuchsia"]),pt.oneOf(["gainsboro"]),pt.oneOf(["ghostwhite"]),pt.oneOf(["gold"]),pt.oneOf(["goldenrod"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["greenyellow"]),pt.oneOf(["grey"]),pt.oneOf(["honeydew"]),pt.oneOf(["hotpink"]),pt.oneOf(["indianred"]),pt.oneOf(["indigo"]),pt.oneOf(["ivory"]),pt.oneOf(["khaki"]),pt.oneOf(["lavender"]),pt.oneOf(["lavenderblush"]),pt.oneOf(["lawngreen"]),pt.oneOf(["lemonchiffon"]),pt.oneOf(["lightblue"]),pt.oneOf(["lightcoral"]),pt.oneOf(["lightcyan"]),pt.oneOf(["lightgoldenrodyellow"]),pt.oneOf(["lightgray"]),pt.oneOf(["lightgreen"]),pt.oneOf(["lightgrey"]),pt.oneOf(["lightpink"]),pt.oneOf(["lightsalmon"]),pt.oneOf(["lightseagreen"]),pt.oneOf(["lightskyblue"]),pt.oneOf(["lightslategray"]),pt.oneOf(["lightslategrey"]),pt.oneOf(["lightsteelblue"]),pt.oneOf(["lightyellow"]),pt.oneOf(["lime"]),pt.oneOf(["limegreen"]),pt.oneOf(["linen"]),pt.oneOf(["magenta"]),pt.oneOf(["maroon"]),pt.oneOf(["mediumaquamarine"]),pt.oneOf(["mediumblue"]),pt.oneOf(["mediumorchid"]),pt.oneOf(["mediumpurple"]),pt.oneOf(["mediumseagreen"]),pt.oneOf(["mediumslateblue"]),pt.oneOf(["mediumspringgreen"]),pt.oneOf(["mediumturquoise"]),pt.oneOf(["mediumvioletred"]),pt.oneOf(["midnightblue"]),pt.oneOf(["mintcream"]),pt.oneOf(["mistyrose"]),pt.oneOf(["moccasin"]),pt.oneOf(["navajowhite"]),pt.oneOf(["navy"]),pt.oneOf(["oldlace"]),pt.oneOf(["olive"]),pt.oneOf(["olivedrab"]),pt.oneOf(["orange"]),pt.oneOf(["orangered"]),pt.oneOf(["orchid"]),pt.oneOf(["palegoldenrod"]),pt.oneOf(["palegreen"]),pt.oneOf(["paleturquoise"]),pt.oneOf(["palevioletred"]),pt.oneOf(["papayawhip"]),pt.oneOf(["peachpuff"]),pt.oneOf(["peru"]),pt.oneOf(["pink"]),pt.oneOf(["plum"]),pt.oneOf(["powderblue"]),pt.oneOf(["purple"]),pt.oneOf(["rebeccapurple"]),pt.oneOf(["red"]),pt.oneOf(["rosybrown"]),pt.oneOf(["royalblue"]),pt.oneOf(["saddlebrown"]),pt.oneOf(["salmon"]),pt.oneOf(["sandybrown"]),pt.oneOf(["seagreen"]),pt.oneOf(["seashell"]),pt.oneOf(["sienna"]),pt.oneOf(["silver"]),pt.oneOf(["skyblue"]),pt.oneOf(["slateblue"]),pt.oneOf(["slategray"]),pt.oneOf(["slategrey"]),pt.oneOf(["snow"]),pt.oneOf(["springgreen"]),pt.oneOf(["steelblue"]),pt.oneOf(["tan"]),pt.oneOf(["teal"]),pt.oneOf(["thistle"]),pt.oneOf(["tomato"]),pt.oneOf(["transparent"]),pt.oneOf(["turquoise"]),pt.oneOf(["violet"]),pt.oneOf(["wheat"]),pt.oneOf(["white"]),pt.oneOf(["whitesmoke"]),pt.oneOf(["yellow"]),pt.oneOf(["yellowgreen"]),pt.oneOf(["ActiveBorder"]),pt.oneOf(["ActiveCaption"]),pt.oneOf(["AppWorkspace"]),pt.oneOf(["Background"]),pt.oneOf(["ButtonFace"]),pt.oneOf(["ButtonHighlight"]),pt.oneOf(["ButtonShadow"]),pt.oneOf(["ButtonText"]),pt.oneOf(["CaptionText"]),pt.oneOf(["GrayText"]),pt.oneOf(["Highlight"]),pt.oneOf(["HighlightText"]),pt.oneOf(["InactiveBorder"]),pt.oneOf(["InactiveCaption"]),pt.oneOf(["InactiveCaptionText"]),pt.oneOf(["InfoBackground"]),pt.oneOf(["InfoText"]),pt.oneOf(["Menu"]),pt.oneOf(["MenuText"]),pt.oneOf(["Scrollbar"]),pt.oneOf(["ThreeDDarkShadow"]),pt.oneOf(["ThreeDFace"]),pt.oneOf(["ThreeDHighlight"]),pt.oneOf(["ThreeDLightShadow"]),pt.oneOf(["ThreeDShadow"]),pt.oneOf(["Window"]),pt.oneOf(["WindowFrame"]),pt.oneOf(["WindowText"]),pt.oneOf(["currentcolor"])]),blur:pt.oneOfType([pt.string,pt.number]),gradient:pt.string}),withOverlay:pt.bool,padding:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),title:pt.node,withCloseButton:pt.bool,closeButtonProps:pt.shape({size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,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]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),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}),
|
|
13405
13657
|
clearable:pt.bool,
|
|
13406
13658
|
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}),
|
|
@@ -14310,8 +14562,10 @@ pk.RichTextEditor.propTypes = {json:pt.object,
|
|
|
14310
14562
|
selected:pt.string,
|
|
14311
14563
|
debounce:pt.oneOfType([pt.number]),
|
|
14312
14564
|
n_blur:pt.number,
|
|
14565
|
+
focus:pt.oneOfType([pt.number,pt.oneOf(["start"]),pt.oneOf(["end"]),pt.oneOf(["all"])]),
|
|
14566
|
+
editable:pt.bool,
|
|
14313
14567
|
variant:pt.oneOf(["'default'", "'subtle'"]),
|
|
14314
|
-
extensions:pt.arrayOf(pt.oneOfType([pt.oneOf(["StarterKit"]),pt.oneOf(["Underline"]),pt.oneOf(["Link"]),pt.oneOf(["Superscript"]),pt.oneOf(["Subscript"]),pt.oneOf(["Highlight"]),pt.oneOf(["TextAlign"]),pt.oneOf(["TextStyle"]),pt.oneOf(["Table"]),pt.oneOf(["TableCell"]),pt.oneOf(["TableRow"]),pt.oneOf(["TableHeader"]),pt.oneOf(["Placeholder"]),pt.oneOf(["Image"]),pt.oneOf(["Color"]),pt.shape({StarterKit:pt.objectOf(pt.shape({})),Underline:pt.objectOf(pt.shape({})),Link:pt.objectOf(pt.shape({})),Superscript:pt.objectOf(pt.shape({})),Subscript:pt.objectOf(pt.shape({})),Highlight:pt.objectOf(pt.shape({})),TextAlign:pt.objectOf(pt.shape({})),TextStyle:pt.objectOf(pt.shape({})),Table:pt.objectOf(pt.shape({})),TableCell:pt.objectOf(pt.shape({})),TableRow:pt.objectOf(pt.shape({})),TableHeader:pt.objectOf(pt.shape({})),Placeholder:pt.objectOf(pt.shape({})),Image:pt.objectOf(pt.shape({})),Color:pt.objectOf(pt.shape({}))})])),
|
|
14568
|
+
extensions:pt.arrayOf(pt.oneOfType([pt.oneOf(["StarterKit"]),pt.oneOf(["Underline"]),pt.oneOf(["Link"]),pt.oneOf(["Superscript"]),pt.oneOf(["Subscript"]),pt.oneOf(["Highlight"]),pt.oneOf(["TextAlign"]),pt.oneOf(["TextStyle"]),pt.oneOf(["Table"]),pt.oneOf(["TableCell"]),pt.oneOf(["TableRow"]),pt.oneOf(["TableHeader"]),pt.oneOf(["Placeholder"]),pt.oneOf(["Image"]),pt.oneOf(["BackgroundColor"]),pt.oneOf(["FontFamily"]),pt.oneOf(["FontSize"]),pt.oneOf(["LineHeight"]),pt.oneOf(["Color"]),pt.oneOf(["CodeBlockLowlight"]),pt.shape({StarterKit:pt.objectOf(pt.shape({})),Underline:pt.objectOf(pt.shape({})),Link:pt.objectOf(pt.shape({})),Superscript:pt.objectOf(pt.shape({})),Subscript:pt.objectOf(pt.shape({})),Highlight:pt.objectOf(pt.shape({})),TextAlign:pt.objectOf(pt.shape({})),TextStyle:pt.objectOf(pt.shape({})),Table:pt.objectOf(pt.shape({})),TableCell:pt.objectOf(pt.shape({})),TableRow:pt.objectOf(pt.shape({})),TableHeader:pt.objectOf(pt.shape({})),Placeholder:pt.objectOf(pt.shape({})),Image:pt.objectOf(pt.shape({})),BackgroundColor:pt.objectOf(pt.shape({})),FontFamily:pt.objectOf(pt.shape({})),FontSize:pt.objectOf(pt.shape({})),LineHeight:pt.objectOf(pt.shape({})),Color:pt.objectOf(pt.shape({})),CodeBlockLowlight:pt.objectOf(pt.shape({}))})])),
|
|
14315
14569
|
toolbar:pt.shape({sticky:pt.bool,stickyOffset:pt.oneOfType([pt.string,pt.number]),controlsGroups:pt.arrayOf(pt.arrayOf(pt.oneOfType([pt.oneOf(["Underline"]),pt.oneOf(["Link"]),pt.oneOf(["Superscript"]),pt.oneOf(["Subscript"]),pt.oneOf(["Highlight"]),pt.oneOf(["Color"]),pt.oneOf(["Bold"]),pt.oneOf(["Italic"]),pt.oneOf(["Strikethrough"]),pt.oneOf(["ClearFormatting"]),pt.oneOf(["Code"]),pt.oneOf(["H1"]),pt.oneOf(["H2"]),pt.oneOf(["H3"]),pt.oneOf(["H4"]),pt.oneOf(["H5"]),pt.oneOf(["H6"]),pt.oneOf(["CodeBlock"]),pt.oneOf(["Blockquote"]),pt.oneOf(["Hr"]),pt.oneOf(["BulletList"]),pt.oneOf(["OrderedList"]),pt.oneOf(["Unlink"]),pt.oneOf(["AlignLeft"]),pt.oneOf(["AlignCenter"]),pt.oneOf(["AlignJustify"]),pt.oneOf(["AlignRight"]),pt.oneOf(["Undo"]),pt.oneOf(["Redo"]),pt.oneOf(["ColorPicker"]),pt.oneOf(["UnsetColor"])])))}),
|
|
14316
14570
|
withCodeHighlightStyles:pt.bool,
|
|
14317
14571
|
withTypographyStyles:pt.bool,
|
|
@@ -14350,7 +14604,7 @@ pk.RichTextEditor.propTypes = {json:pt.object,
|
|
|
14350
14604
|
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"])]),
|
|
14351
14605
|
fw:pt.oneOfType([pt.oneOf(["bold"]),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(["bolder"]),pt.oneOf(["lighter"])]),
|
|
14352
14606
|
lts:pt.oneOfType([pt.string,pt.number]),
|
|
14353
|
-
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(["
|
|
14607
|
+
ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["start"]),pt.oneOf(["end"]),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(["justify"]),pt.oneOf(["match-parent"])]),
|
|
14354
14608
|
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"])]),
|
|
14355
14609
|
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"])]),
|
|
14356
14610
|
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"])]),
|
|
@@ -14391,8 +14645,10 @@ pk.RichTextEditor.propTypes = {json:pt.object,
|
|
|
14391
14645
|
selected:pt.string,
|
|
14392
14646
|
debounce:pt.oneOfType([pt.number]),
|
|
14393
14647
|
n_blur:pt.number,
|
|
14648
|
+
focus:pt.oneOfType([pt.number,pt.oneOf(["start"]),pt.oneOf(["end"]),pt.oneOf(["all"])]),
|
|
14649
|
+
editable:pt.bool,
|
|
14394
14650
|
variant:pt.oneOf(["'default'", "'subtle'"]),
|
|
14395
|
-
extensions:pt.arrayOf(pt.oneOfType([pt.oneOf(["StarterKit"]),pt.oneOf(["Underline"]),pt.oneOf(["Link"]),pt.oneOf(["Superscript"]),pt.oneOf(["Subscript"]),pt.oneOf(["Highlight"]),pt.oneOf(["TextAlign"]),pt.oneOf(["TextStyle"]),pt.oneOf(["Table"]),pt.oneOf(["TableCell"]),pt.oneOf(["TableRow"]),pt.oneOf(["TableHeader"]),pt.oneOf(["Placeholder"]),pt.oneOf(["Image"]),pt.oneOf(["Color"])])),
|
|
14651
|
+
extensions:pt.arrayOf(pt.oneOfType([pt.oneOf(["StarterKit"]),pt.oneOf(["Underline"]),pt.oneOf(["Link"]),pt.oneOf(["Superscript"]),pt.oneOf(["Subscript"]),pt.oneOf(["Highlight"]),pt.oneOf(["TextAlign"]),pt.oneOf(["TextStyle"]),pt.oneOf(["Table"]),pt.oneOf(["TableCell"]),pt.oneOf(["TableRow"]),pt.oneOf(["TableHeader"]),pt.oneOf(["Placeholder"]),pt.oneOf(["Image"]),pt.oneOf(["BackgroundColor"]),pt.oneOf(["FontFamily"]),pt.oneOf(["FontSize"]),pt.oneOf(["LineHeight"]),pt.oneOf(["Color"]),pt.oneOf(["CodeBlockLowlight"])])),
|
|
14396
14652
|
toolbar:pt.shape({sticky:pt.bool,stickyOffset:pt.oneOfType([pt.string,pt.number]),controlsGroups:pt.arrayOf(pt.arrayOf(pt.oneOfType([pt.oneOf(["Underline"]),pt.oneOf(["Link"]),pt.oneOf(["Superscript"]),pt.oneOf(["Subscript"]),pt.oneOf(["Highlight"]),pt.oneOf(["Color"]),pt.oneOf(["Bold"]),pt.oneOf(["Italic"]),pt.oneOf(["Strikethrough"]),pt.oneOf(["ClearFormatting"]),pt.oneOf(["Code"]),pt.oneOf(["H1"]),pt.oneOf(["H2"]),pt.oneOf(["H3"]),pt.oneOf(["H4"]),pt.oneOf(["H5"]),pt.oneOf(["H6"]),pt.oneOf(["CodeBlock"]),pt.oneOf(["Blockquote"]),pt.oneOf(["Hr"]),pt.oneOf(["BulletList"]),pt.oneOf(["OrderedList"]),pt.oneOf(["Unlink"]),pt.oneOf(["AlignLeft"]),pt.oneOf(["AlignCenter"]),pt.oneOf(["AlignJustify"]),pt.oneOf(["AlignRight"]),pt.oneOf(["Undo"]),pt.oneOf(["Redo"]),pt.oneOf(["ColorPicker"]),pt.oneOf(["UnsetColor"])])))}),
|
|
14397
14653
|
withCodeHighlightStyles:pt.bool,
|
|
14398
14654
|
withTypographyStyles:pt.bool,
|
|
@@ -14431,7 +14687,7 @@ pk.RichTextEditor.propTypes = {json:pt.object,
|
|
|
14431
14687
|
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"])]),
|
|
14432
14688
|
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"])]),
|
|
14433
14689
|
lts:pt.oneOfType([pt.string,pt.number]),
|
|
14434
|
-
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(["
|
|
14690
|
+
ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["start"]),pt.oneOf(["end"]),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(["justify"]),pt.oneOf(["match-parent"])]),
|
|
14435
14691
|
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"])]),
|
|
14436
14692
|
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"])]),
|
|
14437
14693
|
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"])]),
|
|
@@ -14467,8 +14723,14 @@ pk.RichTextEditor.propTypes = {json:pt.object,
|
|
|
14467
14723
|
persistence:pt.oneOfType([pt.string,pt.number]),
|
|
14468
14724
|
persisted_props:pt.arrayOf(pt.string),
|
|
14469
14725
|
persistence_type:pt.oneOf(["'local'", "'session'", "'memory'"])};
|
|
14726
|
+
pk.DirectionProvider.propTypes = {children:pt.node,
|
|
14727
|
+
direction:pt.oneOf(["'rtl'", "'ltr'"]),
|
|
14728
|
+
id:pt.string,
|
|
14729
|
+
persistence:pt.oneOfType([pt.string,pt.number]),
|
|
14730
|
+
persisted_props:pt.arrayOf(pt.string),
|
|
14731
|
+
persistence_type:pt.oneOf(["'local'", "'session'", "'memory'"])};
|
|
14470
14732
|
pk.MantineProvider.propTypes = {id:pt.string,
|
|
14471
|
-
theme:pt.shape({focusRing:pt.oneOf(["'auto'", "'always'", "'never'"]),scale:pt.number,fontSmoothing:pt.bool,white:pt.string,black:pt.string,colors:pt.
|
|
14733
|
+
theme:pt.shape({focusRing:pt.oneOf(["'auto'", "'always'", "'never'"]),scale:pt.number,fontSmoothing:pt.bool,white:pt.string,black:pt.string,colors:pt.objectOf(pt.objectOf(pt.string)),primaryShade:pt.oneOfType([pt.oneOf([1]),pt.oneOf([2]),pt.oneOf([3]),pt.oneOf([4]),pt.oneOf([5]),pt.oneOf([6]),pt.oneOf([7]),pt.oneOf([8]),pt.oneOf([9]),pt.shape({light:pt.oneOf([0, 1, 2, 3, 4, 5, 6, 7, 8, 9]),dark:pt.oneOf([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])})]),primaryColor:pt.string,variantColorResolver:pt.shape({}),autoContrast:pt.bool,luminanceThreshold:pt.number,fontFamily:pt.string,fontFamilyMonospace:pt.string,headings:pt.shape({fontFamily:pt.string,fontWeight:pt.string,textWrap:pt.oneOf(["'wrap'", "'nowrap'", "'balance'", "'pretty'", "'stable'"]),sizes:pt.shape({h1:pt.shape({fontSize:pt.string,fontWeight:pt.string,lineHeight:pt.string}),h2:pt.shape({fontSize:pt.string,fontWeight:pt.string,lineHeight:pt.string}),h3:pt.shape({fontSize:pt.string,fontWeight:pt.string,lineHeight:pt.string}),h4:pt.shape({fontSize:pt.string,fontWeight:pt.string,lineHeight:pt.string}),h5:pt.shape({fontSize:pt.string,fontWeight:pt.string,lineHeight:pt.string}),h6:pt.shape({fontSize:pt.string,fontWeight:pt.string,lineHeight:pt.string})})}),radius:pt.objectOf(pt.string),defaultRadius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),spacing:pt.objectOf(pt.string),fontSizes:pt.objectOf(pt.string),lineHeights:pt.objectOf(pt.string),breakpoints:pt.objectOf(pt.string),shadows:pt.objectOf(pt.string),respectReducedMotion:pt.bool,cursorType:pt.oneOf(["'default'", "'pointer'"]),defaultGradient:pt.shape({from:pt.string,to:pt.string,deg:pt.number}),activeClassName:pt.string,focusClassName:pt.string,components:pt.objectOf(pt.shape({classNames:pt.any,styles:pt.any,vars:pt.any,defaultProps:pt.any})),other:pt.objectOf(pt.any)}),
|
|
14472
14734
|
colorSchemeManager:pt.shape({get:pt.any,set:pt.any,subscribe:pt.any,unsubscribe:pt.any,clear:pt.any}),
|
|
14473
14735
|
defaultColorScheme:pt.oneOf(["'auto'", "'dark'", "'light'"]),
|
|
14474
14736
|
forceColorScheme:pt.oneOf(["'dark'", "'light'"]),
|
|
@@ -14517,7 +14779,7 @@ pk.TypographyStylesProvider.propTypes = {children:pt.node,
|
|
|
14517
14779
|
opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),
|
|
14518
14780
|
ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),
|
|
14519
14781
|
fz:pt.oneOfType([pt.number,pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"]),pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
14520
|
-
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(["
|
|
14782
|
+
fw:pt.oneOfType([pt.oneOf(["bold"]),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(["bolder"]),pt.oneOf(["lighter"])]),
|
|
14521
14783
|
lts:pt.oneOfType([pt.string,pt.number]),
|
|
14522
14784
|
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"])]),
|
|
14523
14785
|
lh:pt.oneOfType([pt.number,pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"]),pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -14532,9 +14794,9 @@ pk.TypographyStylesProvider.propTypes = {children:pt.node,
|
|
|
14532
14794
|
mah:pt.oneOfType([pt.string,pt.number]),
|
|
14533
14795
|
bgsz:pt.oneOfType([pt.string,pt.number]),
|
|
14534
14796
|
bgp:pt.oneOfType([pt.string,pt.number]),
|
|
14535
|
-
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
|
|
14536
|
-
bga:pt.oneOfType([pt.oneOf(["
|
|
14537
|
-
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(["
|
|
14797
|
+
bgr:pt.oneOfType([pt.oneOf(["repeat"]),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-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),
|
|
14798
|
+
bga:pt.oneOfType([pt.oneOf(["local"]),pt.oneOf(["fixed"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["scroll"])]),
|
|
14799
|
+
pos:pt.oneOfType([pt.oneOf(["fixed"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),
|
|
14538
14800
|
top:pt.oneOfType([pt.string,pt.number]),
|
|
14539
14801
|
left:pt.oneOfType([pt.string,pt.number]),
|
|
14540
14802
|
bottom:pt.oneOfType([pt.string,pt.number]),
|