dash_mantine_components 2.3.0 → 2.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dash_mantine_components/async-AreaChart.js +1 -1
- package/dash_mantine_components/async-BarChart.js +1 -1
- package/dash_mantine_components/async-BubbleChart.js +1 -1
- package/dash_mantine_components/async-CodeHighlight.js +1 -1
- package/dash_mantine_components/async-CodeHighlightTabs.js +1 -1
- package/dash_mantine_components/async-CompositeChart.js +1 -1
- package/dash_mantine_components/async-DonutChart.js +1 -1
- package/dash_mantine_components/async-InlineCodeHighlight.js +1 -1
- package/dash_mantine_components/async-LineChart.js +1 -1
- package/dash_mantine_components/async-PieChart.js +1 -1
- package/dash_mantine_components/async-RadarChart.js +1 -1
- package/dash_mantine_components/async-RichTextEditor.js +1 -1
- package/dash_mantine_components/async-ScatterChart.js +1 -1
- package/dash_mantine_components/dash_mantine_components-charts-shared.js +1 -1
- package/dash_mantine_components/dash_mantine_components.js +1 -1
- package/dash_mantine_components/proptypes.js +144 -49
- package/package.json +28 -26
|
@@ -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,
|
|
@@ -4180,6 +4268,7 @@ pk.MultiSelect.propTypes = {value:pt.arrayOf(pt.string),
|
|
|
4180
4268
|
searchable:pt.bool,
|
|
4181
4269
|
nothingFoundMessage:pt.node,
|
|
4182
4270
|
withCheckIcon:pt.bool,
|
|
4271
|
+
withAlignedLabels:pt.bool,
|
|
4183
4272
|
checkIconPosition:pt.oneOf(["'left'", "'right'"]),
|
|
4184
4273
|
hidePickedOptions:pt.bool,
|
|
4185
4274
|
clearable:pt.bool,
|
|
@@ -4301,6 +4390,7 @@ pk.MultiSelect.propTypes = {value:pt.arrayOf(pt.string),
|
|
|
4301
4390
|
pk.Select.propTypes = {value:pt.string,
|
|
4302
4391
|
searchable:pt.bool,
|
|
4303
4392
|
withCheckIcon:pt.bool,
|
|
4393
|
+
withAlignedLabels:pt.bool,
|
|
4304
4394
|
checkIconPosition:pt.oneOf(["'left'", "'right'"]),
|
|
4305
4395
|
nothingFoundMessage:pt.node,
|
|
4306
4396
|
searchValue:pt.string,
|
|
@@ -9396,13 +9486,14 @@ pk.Anchor.propTypes = {children:pt.node,
|
|
|
9396
9486
|
href:pt.string,
|
|
9397
9487
|
refresh:pt.bool,
|
|
9398
9488
|
underline:pt.oneOf(["'always'", "'hover'", "'never'"]),
|
|
9489
|
+
anchorProps:pt.shape({}),
|
|
9399
9490
|
className:pt.string,
|
|
9400
9491
|
style:pt.any,
|
|
9401
9492
|
hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
9402
9493
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
9403
9494
|
lightHidden:pt.bool,
|
|
9404
9495
|
darkHidden:pt.bool,
|
|
9405
|
-
mod:pt.oneOfType([pt.string]),
|
|
9496
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
9406
9497
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
9407
9498
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
9408
9499
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -9478,7 +9569,7 @@ pk.AspectRatio.propTypes = {children:pt.node,
|
|
|
9478
9569
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
9479
9570
|
lightHidden:pt.bool,
|
|
9480
9571
|
darkHidden:pt.bool,
|
|
9481
|
-
mod:pt.oneOfType([pt.string]),
|
|
9572
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
9482
9573
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
9483
9574
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
9484
9575
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -9556,7 +9647,7 @@ pk.Badge.propTypes = {size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.on
|
|
|
9556
9647
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
9557
9648
|
lightHidden:pt.bool,
|
|
9558
9649
|
darkHidden:pt.bool,
|
|
9559
|
-
mod:pt.oneOfType([pt.string]),
|
|
9650
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
9560
9651
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
9561
9652
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
9562
9653
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -9630,7 +9721,7 @@ pk.Blockquote.propTypes = {icon:pt.node,
|
|
|
9630
9721
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
9631
9722
|
lightHidden:pt.bool,
|
|
9632
9723
|
darkHidden:pt.bool,
|
|
9633
|
-
mod:pt.oneOfType([pt.string]),
|
|
9724
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
9634
9725
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
9635
9726
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
9636
9727
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -9699,7 +9790,7 @@ pk.Box.propTypes = {children:pt.node,
|
|
|
9699
9790
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
9700
9791
|
lightHidden:pt.bool,
|
|
9701
9792
|
darkHidden:pt.bool,
|
|
9702
|
-
mod:pt.oneOfType([pt.string]),
|
|
9793
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
9703
9794
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
9704
9795
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
9705
9796
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -9765,7 +9856,7 @@ pk.Breadcrumbs.propTypes = {separator:pt.node,
|
|
|
9765
9856
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
9766
9857
|
lightHidden:pt.bool,
|
|
9767
9858
|
darkHidden:pt.bool,
|
|
9768
|
-
mod:pt.oneOfType([pt.string]),
|
|
9859
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
9769
9860
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
9770
9861
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
9771
9862
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -9839,7 +9930,7 @@ pk.Burger.propTypes = {size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["
|
|
|
9839
9930
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
9840
9931
|
lightHidden:pt.bool,
|
|
9841
9932
|
darkHidden:pt.bool,
|
|
9842
|
-
mod:pt.oneOfType([pt.string]),
|
|
9933
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
9843
9934
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
9844
9935
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
9845
9936
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -9912,7 +10003,7 @@ pk.Center.propTypes = {children:pt.node,
|
|
|
9912
10003
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
9913
10004
|
lightHidden:pt.bool,
|
|
9914
10005
|
darkHidden:pt.bool,
|
|
9915
|
-
mod:pt.oneOfType([pt.string]),
|
|
10006
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
9916
10007
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
9917
10008
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
9918
10009
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -9989,7 +10080,7 @@ pk.Code.propTypes = {children:pt.node,
|
|
|
9989
10080
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
9990
10081
|
lightHidden:pt.bool,
|
|
9991
10082
|
darkHidden:pt.bool,
|
|
9992
|
-
mod:pt.oneOfType([pt.string]),
|
|
10083
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
9993
10084
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
9994
10085
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
9995
10086
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -10057,7 +10148,7 @@ pk.Collapse.propTypes = {opened:pt.bool,
|
|
|
10057
10148
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10058
10149
|
lightHidden:pt.bool,
|
|
10059
10150
|
darkHidden:pt.bool,
|
|
10060
|
-
mod:pt.oneOfType([pt.string]),
|
|
10151
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
10061
10152
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10062
10153
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10063
10154
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -10124,7 +10215,7 @@ pk.Container.propTypes = {children:pt.node,
|
|
|
10124
10215
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10125
10216
|
lightHidden:pt.bool,
|
|
10126
10217
|
darkHidden:pt.bool,
|
|
10127
|
-
mod:pt.oneOfType([pt.string]),
|
|
10218
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
10128
10219
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10129
10220
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10130
10221
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -10197,7 +10288,7 @@ pk.Divider.propTypes = {color:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]
|
|
|
10197
10288
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10198
10289
|
lightHidden:pt.bool,
|
|
10199
10290
|
darkHidden:pt.bool,
|
|
10200
|
-
mod:pt.oneOfType([pt.string]),
|
|
10291
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
10201
10292
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10202
10293
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10203
10294
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -10269,7 +10360,7 @@ pk.Fieldset.propTypes = {disabled:pt.bool,
|
|
|
10269
10360
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10270
10361
|
lightHidden:pt.bool,
|
|
10271
10362
|
darkHidden:pt.bool,
|
|
10272
|
-
mod:pt.oneOfType([pt.string]),
|
|
10363
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
10273
10364
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10274
10365
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10275
10366
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -10345,7 +10436,7 @@ pk.Flex.propTypes = {children:pt.node,
|
|
|
10345
10436
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10346
10437
|
lightHidden:pt.bool,
|
|
10347
10438
|
darkHidden:pt.bool,
|
|
10348
|
-
mod:pt.oneOfType([pt.string]),
|
|
10439
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
10349
10440
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10350
10441
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10351
10442
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -10420,7 +10511,7 @@ pk.Group.propTypes = {children:pt.node,
|
|
|
10420
10511
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10421
10512
|
lightHidden:pt.bool,
|
|
10422
10513
|
darkHidden:pt.bool,
|
|
10423
|
-
mod:pt.oneOfType([pt.string]),
|
|
10514
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
10424
10515
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10425
10516
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10426
10517
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -10505,7 +10596,7 @@ pk.Highlight.propTypes = {highlight:pt.oneOfType([pt.string,pt.arrayOf(pt.string
|
|
|
10505
10596
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10506
10597
|
lightHidden:pt.bool,
|
|
10507
10598
|
darkHidden:pt.bool,
|
|
10508
|
-
mod:pt.oneOfType([pt.string]),
|
|
10599
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
10509
10600
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10510
10601
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10511
10602
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -10580,7 +10671,7 @@ pk.Indicator.propTypes = {position:pt.oneOf(["'top-center'", "'top-end'", "'top-
|
|
|
10580
10671
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10581
10672
|
lightHidden:pt.bool,
|
|
10582
10673
|
darkHidden:pt.bool,
|
|
10583
|
-
mod:pt.oneOfType([pt.string]),
|
|
10674
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
10584
10675
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10585
10676
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10586
10677
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -10650,7 +10741,7 @@ pk.Kbd.propTypes = {size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneO
|
|
|
10650
10741
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10651
10742
|
lightHidden:pt.bool,
|
|
10652
10743
|
darkHidden:pt.bool,
|
|
10653
|
-
mod:pt.oneOfType([pt.string]),
|
|
10744
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
10654
10745
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10655
10746
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10656
10747
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -10722,7 +10813,7 @@ pk.Loader.propTypes = {size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["
|
|
|
10722
10813
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10723
10814
|
lightHidden:pt.bool,
|
|
10724
10815
|
darkHidden:pt.bool,
|
|
10725
|
-
mod:pt.oneOfType([pt.string]),
|
|
10816
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
10726
10817
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10727
10818
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10728
10819
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -10785,8 +10876,8 @@ pk.Loader.propTypes = {size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["
|
|
|
10785
10876
|
tabIndex:pt.number,
|
|
10786
10877
|
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
10787
10878
|
pk.LoadingOverlay.propTypes = {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}),
|
|
10788
|
-
loaderProps:pt.shape({size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),color:pt.oneOfType([pt.oneOf(["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"])]),type:pt.oneOf(["'bars'", "'dots'", "'oval'"]),children: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]),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(["-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}),
|
|
10789
|
-
overlayProps:pt.shape({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,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"])]),children:pt.node,center:pt.bool,fixed: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]),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(["-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}),
|
|
10879
|
+
loaderProps:pt.shape({size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),color:pt.oneOfType([pt.oneOf(["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"])]),type:pt.oneOf(["'bars'", "'dots'", "'oval'"]),children: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(["-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}),
|
|
10880
|
+
overlayProps:pt.shape({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,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"])]),children:pt.node,center:pt.bool,fixed: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(["-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}),
|
|
10790
10881
|
visible:pt.bool,
|
|
10791
10882
|
zIndex:pt.oneOfType([pt.string,pt.number]),
|
|
10792
10883
|
className:pt.string,
|
|
@@ -10795,7 +10886,7 @@ pk.LoadingOverlay.propTypes = {transitionProps:pt.shape({keepMounted:pt.bool,tra
|
|
|
10795
10886
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10796
10887
|
lightHidden:pt.bool,
|
|
10797
10888
|
darkHidden:pt.bool,
|
|
10798
|
-
mod:pt.oneOfType([pt.string]),
|
|
10889
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
10799
10890
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10800
10891
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10801
10892
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -10871,7 +10962,7 @@ pk.Mark.propTypes = {children:pt.string,
|
|
|
10871
10962
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10872
10963
|
lightHidden:pt.bool,
|
|
10873
10964
|
darkHidden:pt.bool,
|
|
10874
|
-
mod:pt.oneOfType([pt.string]),
|
|
10965
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
10875
10966
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10876
10967
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10877
10968
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -10950,7 +11041,7 @@ pk.NavLink.propTypes = {label:pt.node,
|
|
|
10950
11041
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10951
11042
|
lightHidden:pt.bool,
|
|
10952
11043
|
darkHidden:pt.bool,
|
|
10953
|
-
mod:pt.oneOfType([pt.string]),
|
|
11044
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
10954
11045
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10955
11046
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
10956
11047
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -11045,7 +11136,7 @@ pk.Overlay.propTypes = {backgroundOpacity:pt.number,
|
|
|
11045
11136
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11046
11137
|
lightHidden:pt.bool,
|
|
11047
11138
|
darkHidden:pt.bool,
|
|
11048
|
-
mod:pt.oneOfType([pt.string]),
|
|
11139
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
11049
11140
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11050
11141
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11051
11142
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -11127,7 +11218,7 @@ pk.Pagination.propTypes = {withEdges:pt.bool,
|
|
|
11127
11218
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11128
11219
|
lightHidden:pt.bool,
|
|
11129
11220
|
darkHidden:pt.bool,
|
|
11130
|
-
mod:pt.oneOfType([pt.string]),
|
|
11221
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
11131
11222
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11132
11223
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11133
11224
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -11199,7 +11290,7 @@ pk.Paper.propTypes = {children:pt.node,
|
|
|
11199
11290
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11200
11291
|
lightHidden:pt.bool,
|
|
11201
11292
|
darkHidden:pt.bool,
|
|
11202
|
-
mod:pt.oneOfType([pt.string]),
|
|
11293
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
11203
11294
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11204
11295
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11205
11296
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -11280,7 +11371,7 @@ pk.Rating.propTypes = {value:pt.number,
|
|
|
11280
11371
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11281
11372
|
lightHidden:pt.bool,
|
|
11282
11373
|
darkHidden:pt.bool,
|
|
11283
|
-
mod:pt.oneOfType([pt.string]),
|
|
11374
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
11284
11375
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11285
11376
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11286
11377
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -11357,7 +11448,7 @@ pk.RingProgress.propTypes = {label:pt.node,
|
|
|
11357
11448
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11358
11449
|
lightHidden:pt.bool,
|
|
11359
11450
|
darkHidden:pt.bool,
|
|
11360
|
-
mod:pt.oneOfType([pt.string]),
|
|
11451
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
11361
11452
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11362
11453
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11363
11454
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -11439,7 +11530,7 @@ pk.SegmentedControl.propTypes = {data:pt.arrayOf(pt.oneOfType([pt.string])),
|
|
|
11439
11530
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11440
11531
|
lightHidden:pt.bool,
|
|
11441
11532
|
darkHidden:pt.bool,
|
|
11442
|
-
mod:pt.oneOfType([pt.string]),
|
|
11533
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
11443
11534
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11444
11535
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11445
11536
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -11520,7 +11611,7 @@ pk.SemiCircleProgress.propTypes = {value:pt.number,
|
|
|
11520
11611
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11521
11612
|
lightHidden:pt.bool,
|
|
11522
11613
|
darkHidden:pt.bool,
|
|
11523
|
-
mod:pt.oneOfType([pt.string]),
|
|
11614
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
11524
11615
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11525
11616
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11526
11617
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -11593,7 +11684,7 @@ pk.SimpleGrid.propTypes = {children:pt.node,
|
|
|
11593
11684
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11594
11685
|
lightHidden:pt.bool,
|
|
11595
11686
|
darkHidden:pt.bool,
|
|
11596
|
-
mod:pt.oneOfType([pt.string]),
|
|
11687
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
11597
11688
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11598
11689
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11599
11690
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -11668,7 +11759,7 @@ pk.Skeleton.propTypes = {visible:pt.bool,
|
|
|
11668
11759
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11669
11760
|
lightHidden:pt.bool,
|
|
11670
11761
|
darkHidden:pt.bool,
|
|
11671
|
-
mod:pt.oneOfType([pt.string]),
|
|
11762
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
11672
11763
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11673
11764
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11674
11765
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -11737,7 +11828,7 @@ pk.Space.propTypes = {children:pt.node,
|
|
|
11737
11828
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11738
11829
|
lightHidden:pt.bool,
|
|
11739
11830
|
darkHidden:pt.bool,
|
|
11740
|
-
mod:pt.oneOfType([pt.string]),
|
|
11831
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
11741
11832
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11742
11833
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11743
11834
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -11807,7 +11898,7 @@ pk.Spoiler.propTypes = {maxHeight:pt.number,
|
|
|
11807
11898
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11808
11899
|
lightHidden:pt.bool,
|
|
11809
11900
|
darkHidden:pt.bool,
|
|
11810
|
-
mod:pt.oneOfType([pt.string]),
|
|
11901
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
11811
11902
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11812
11903
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11813
11904
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -11879,7 +11970,7 @@ pk.Stack.propTypes = {children:pt.node,
|
|
|
11879
11970
|
visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11880
11971
|
lightHidden:pt.bool,
|
|
11881
11972
|
darkHidden:pt.bool,
|
|
11882
|
-
mod:pt.oneOfType([pt.string]),
|
|
11973
|
+
mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),
|
|
11883
11974
|
m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11884
11975
|
my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11885
11976
|
mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -11947,7 +12038,7 @@ pk.Switch.propTypes = {label:pt.node,
|
|
|
11947
12038
|
color:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),
|
|
11948
12039
|
size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11949
12040
|
radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
11950
|
-
wrapperProps:pt.
|
|
12041
|
+
wrapperProps:pt.objectOf(pt.any),
|
|
11951
12042
|
thumbIcon:pt.node,
|
|
11952
12043
|
labelPosition:pt.oneOf(["'left'", "'right'"]),
|
|
11953
12044
|
description:pt.node,
|
|
@@ -14474,8 +14565,10 @@ pk.RichTextEditor.propTypes = {json:pt.object,
|
|
|
14474
14565
|
selected:pt.string,
|
|
14475
14566
|
debounce:pt.oneOfType([pt.number]),
|
|
14476
14567
|
n_blur:pt.number,
|
|
14568
|
+
focus:pt.oneOfType([pt.number,pt.oneOf(["start"]),pt.oneOf(["end"]),pt.oneOf(["all"])]),
|
|
14569
|
+
editable:pt.bool,
|
|
14477
14570
|
variant:pt.oneOf(["'default'", "'subtle'"]),
|
|
14478
|
-
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.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({}))})])),
|
|
14571
|
+
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({}))})])),
|
|
14479
14572
|
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"])])))}),
|
|
14480
14573
|
withCodeHighlightStyles:pt.bool,
|
|
14481
14574
|
withTypographyStyles:pt.bool,
|
|
@@ -14514,7 +14607,7 @@ pk.RichTextEditor.propTypes = {json:pt.object,
|
|
|
14514
14607
|
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"])]),
|
|
14515
14608
|
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"])]),
|
|
14516
14609
|
lts:pt.oneOfType([pt.string,pt.number]),
|
|
14517
|
-
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(["
|
|
14610
|
+
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"])]),
|
|
14518
14611
|
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"])]),
|
|
14519
14612
|
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"])]),
|
|
14520
14613
|
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"])]),
|
|
@@ -14555,8 +14648,10 @@ pk.RichTextEditor.propTypes = {json:pt.object,
|
|
|
14555
14648
|
selected:pt.string,
|
|
14556
14649
|
debounce:pt.oneOfType([pt.number]),
|
|
14557
14650
|
n_blur:pt.number,
|
|
14651
|
+
focus:pt.oneOfType([pt.number,pt.oneOf(["start"]),pt.oneOf(["end"]),pt.oneOf(["all"])]),
|
|
14652
|
+
editable:pt.bool,
|
|
14558
14653
|
variant:pt.oneOf(["'default'", "'subtle'"]),
|
|
14559
|
-
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"])])),
|
|
14654
|
+
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"])])),
|
|
14560
14655
|
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"])])))}),
|
|
14561
14656
|
withCodeHighlightStyles:pt.bool,
|
|
14562
14657
|
withTypographyStyles:pt.bool,
|
|
@@ -14595,7 +14690,7 @@ pk.RichTextEditor.propTypes = {json:pt.object,
|
|
|
14595
14690
|
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"])]),
|
|
14596
14691
|
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"])]),
|
|
14597
14692
|
lts:pt.oneOfType([pt.string,pt.number]),
|
|
14598
|
-
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(["
|
|
14693
|
+
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"])]),
|
|
14599
14694
|
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"])]),
|
|
14600
14695
|
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"])]),
|
|
14601
14696
|
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"])]),
|