dash_mantine_components 2.2.0-rc1 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -9
- package/dash_mantine_components/async-AreaChart.js +1 -1
- package/dash_mantine_components/async-BarChart.js +1 -1
- package/dash_mantine_components/async-BubbleChart.js +1 -1
- package/dash_mantine_components/async-CodeHighlight.js +1 -1
- package/dash_mantine_components/async-CodeHighlightTabs.js +1 -1
- package/dash_mantine_components/async-CompositeChart.js +1 -1
- package/dash_mantine_components/async-DonutChart.js +1 -1
- package/dash_mantine_components/async-InlineCodeHighlight.js +1 -1
- package/dash_mantine_components/async-LineChart.js +1 -1
- package/dash_mantine_components/async-PieChart.js +1 -1
- package/dash_mantine_components/async-RadarChart.js +1 -1
- package/dash_mantine_components/async-RichTextEditor.js +1 -1
- package/dash_mantine_components/async-ScatterChart.js +1 -1
- package/dash_mantine_components/async-Sparkline.js +1 -1
- package/dash_mantine_components/dash_mantine_components-charts-shared.js +1 -1
- package/dash_mantine_components/dash_mantine_components.js +1 -1
- package/dash_mantine_components/proptypes.js +242 -67
- package/package.json +11 -11
|
@@ -111,6 +111,7 @@ pk.AreaChart.propTypes = {data:pt.arrayOf(pt.shape({})),
|
|
|
111
111
|
styles:pt.any,
|
|
112
112
|
unstyled:pt.bool,
|
|
113
113
|
variant:pt.string,
|
|
114
|
+
attributes:pt.any,
|
|
114
115
|
id:pt.string,
|
|
115
116
|
setProps:pt.any,
|
|
116
117
|
data-*:pt.string,
|
|
@@ -222,6 +223,7 @@ pk.BarChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
|
222
223
|
styles:pt.any,
|
|
223
224
|
unstyled:pt.bool,
|
|
224
225
|
variant:pt.string,
|
|
226
|
+
attributes:pt.any,
|
|
225
227
|
id:pt.string,
|
|
226
228
|
setProps:pt.any,
|
|
227
229
|
data-*:pt.string,
|
|
@@ -305,6 +307,7 @@ pk.BubbleChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
|
305
307
|
styles:pt.any,
|
|
306
308
|
unstyled:pt.bool,
|
|
307
309
|
variant:pt.string,
|
|
310
|
+
attributes:pt.any,
|
|
308
311
|
id:pt.string,
|
|
309
312
|
setProps:pt.any,
|
|
310
313
|
data-*:pt.string,
|
|
@@ -418,6 +421,7 @@ pk.CompositeChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
|
418
421
|
styles:pt.any,
|
|
419
422
|
unstyled:pt.bool,
|
|
420
423
|
variant:pt.string,
|
|
424
|
+
attributes:pt.any,
|
|
421
425
|
id:pt.string,
|
|
422
426
|
setProps:pt.any,
|
|
423
427
|
data-*:pt.string,
|
|
@@ -508,6 +512,7 @@ pk.DonutChart.propTypes = {data:pt.arrayOf(pt.shape({name:pt.string,value:pt.num
|
|
|
508
512
|
styles:pt.any,
|
|
509
513
|
unstyled:pt.bool,
|
|
510
514
|
variant:pt.string,
|
|
515
|
+
attributes:pt.any,
|
|
511
516
|
id:pt.string,
|
|
512
517
|
setProps:pt.any,
|
|
513
518
|
data-*:pt.string,
|
|
@@ -620,6 +625,7 @@ pk.LineChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
|
620
625
|
styles:pt.any,
|
|
621
626
|
unstyled:pt.bool,
|
|
622
627
|
variant:pt.string,
|
|
628
|
+
attributes:pt.any,
|
|
623
629
|
id:pt.string,
|
|
624
630
|
setProps:pt.any,
|
|
625
631
|
data-*:pt.string,
|
|
@@ -710,6 +716,7 @@ pk.PieChart.propTypes = {data:pt.arrayOf(pt.shape({key:pt.oneOfType([pt.string,p
|
|
|
710
716
|
styles:pt.any,
|
|
711
717
|
unstyled:pt.bool,
|
|
712
718
|
variant:pt.string,
|
|
719
|
+
attributes:pt.any,
|
|
713
720
|
id:pt.string,
|
|
714
721
|
setProps:pt.any,
|
|
715
722
|
data-*:pt.string,
|
|
@@ -794,6 +801,7 @@ pk.RadarChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
|
794
801
|
styles:pt.any,
|
|
795
802
|
unstyled:pt.bool,
|
|
796
803
|
variant:pt.string,
|
|
804
|
+
attributes:pt.any,
|
|
797
805
|
id:pt.string,
|
|
798
806
|
setProps:pt.any,
|
|
799
807
|
data-*:pt.string,
|
|
@@ -895,6 +903,7 @@ pk.ScatterChart.propTypes = {dataKey:pt.shape({x:pt.string,y:pt.string}),
|
|
|
895
903
|
styles:pt.any,
|
|
896
904
|
unstyled:pt.bool,
|
|
897
905
|
variant:pt.string,
|
|
906
|
+
attributes:pt.any,
|
|
898
907
|
id:pt.string,
|
|
899
908
|
setProps:pt.any,
|
|
900
909
|
data-*:pt.string,
|
|
@@ -971,6 +980,7 @@ pk.Sparkline.propTypes = {data:pt.arrayOf(pt.number),
|
|
|
971
980
|
styles:pt.any,
|
|
972
981
|
unstyled:pt.bool,
|
|
973
982
|
variant:pt.string,
|
|
983
|
+
attributes:pt.any,
|
|
974
984
|
id:pt.string,
|
|
975
985
|
setProps:pt.any,
|
|
976
986
|
data-*:pt.string,
|
|
@@ -1085,6 +1095,7 @@ pk.AreaChart.propTypes = {data:pt.arrayOf(pt.shape({})),
|
|
|
1085
1095
|
styles:pt.any,
|
|
1086
1096
|
unstyled:pt.bool,
|
|
1087
1097
|
variant:pt.string,
|
|
1098
|
+
attributes:pt.any,
|
|
1088
1099
|
id:pt.string,
|
|
1089
1100
|
setProps:pt.any,
|
|
1090
1101
|
data-*:pt.string,
|
|
@@ -1196,6 +1207,7 @@ pk.BarChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
|
1196
1207
|
styles:pt.any,
|
|
1197
1208
|
unstyled:pt.bool,
|
|
1198
1209
|
variant:pt.string,
|
|
1210
|
+
attributes:pt.any,
|
|
1199
1211
|
id:pt.string,
|
|
1200
1212
|
setProps:pt.any,
|
|
1201
1213
|
data-*:pt.string,
|
|
@@ -1279,6 +1291,7 @@ pk.BubbleChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
|
1279
1291
|
styles:pt.any,
|
|
1280
1292
|
unstyled:pt.bool,
|
|
1281
1293
|
variant:pt.string,
|
|
1294
|
+
attributes:pt.any,
|
|
1282
1295
|
id:pt.string,
|
|
1283
1296
|
setProps:pt.any,
|
|
1284
1297
|
data-*:pt.string,
|
|
@@ -1392,6 +1405,7 @@ pk.CompositeChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
|
1392
1405
|
styles:pt.any,
|
|
1393
1406
|
unstyled:pt.bool,
|
|
1394
1407
|
variant:pt.string,
|
|
1408
|
+
attributes:pt.any,
|
|
1395
1409
|
id:pt.string,
|
|
1396
1410
|
setProps:pt.any,
|
|
1397
1411
|
data-*:pt.string,
|
|
@@ -1482,6 +1496,7 @@ pk.DonutChart.propTypes = {data:pt.arrayOf(pt.shape({name:pt.string,value:pt.num
|
|
|
1482
1496
|
styles:pt.any,
|
|
1483
1497
|
unstyled:pt.bool,
|
|
1484
1498
|
variant:pt.string,
|
|
1499
|
+
attributes:pt.any,
|
|
1485
1500
|
id:pt.string,
|
|
1486
1501
|
setProps:pt.any,
|
|
1487
1502
|
data-*:pt.string,
|
|
@@ -1594,6 +1609,7 @@ pk.LineChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
|
1594
1609
|
styles:pt.any,
|
|
1595
1610
|
unstyled:pt.bool,
|
|
1596
1611
|
variant:pt.string,
|
|
1612
|
+
attributes:pt.any,
|
|
1597
1613
|
id:pt.string,
|
|
1598
1614
|
setProps:pt.any,
|
|
1599
1615
|
data-*:pt.string,
|
|
@@ -1684,6 +1700,7 @@ pk.PieChart.propTypes = {data:pt.arrayOf(pt.shape({key:pt.oneOfType([pt.string,p
|
|
|
1684
1700
|
styles:pt.any,
|
|
1685
1701
|
unstyled:pt.bool,
|
|
1686
1702
|
variant:pt.string,
|
|
1703
|
+
attributes:pt.any,
|
|
1687
1704
|
id:pt.string,
|
|
1688
1705
|
setProps:pt.any,
|
|
1689
1706
|
data-*:pt.string,
|
|
@@ -1768,6 +1785,7 @@ pk.RadarChart.propTypes = {data:pt.arrayOf(pt.objectOf(pt.any)),
|
|
|
1768
1785
|
styles:pt.any,
|
|
1769
1786
|
unstyled:pt.bool,
|
|
1770
1787
|
variant:pt.string,
|
|
1788
|
+
attributes:pt.any,
|
|
1771
1789
|
id:pt.string,
|
|
1772
1790
|
setProps:pt.any,
|
|
1773
1791
|
data-*:pt.string,
|
|
@@ -1869,6 +1887,7 @@ pk.ScatterChart.propTypes = {dataKey:pt.shape({x:pt.string,y:pt.string}),
|
|
|
1869
1887
|
styles:pt.any,
|
|
1870
1888
|
unstyled:pt.bool,
|
|
1871
1889
|
variant:pt.string,
|
|
1890
|
+
attributes:pt.any,
|
|
1872
1891
|
id:pt.string,
|
|
1873
1892
|
setProps:pt.any,
|
|
1874
1893
|
data-*:pt.string,
|
|
@@ -1945,6 +1964,7 @@ pk.Sparkline.propTypes = {data:pt.arrayOf(pt.number),
|
|
|
1945
1964
|
styles:pt.any,
|
|
1946
1965
|
unstyled:pt.bool,
|
|
1947
1966
|
variant:pt.string,
|
|
1967
|
+
attributes:pt.any,
|
|
1948
1968
|
id:pt.string,
|
|
1949
1969
|
setProps:pt.any,
|
|
1950
1970
|
data-*:pt.string,
|
|
@@ -1963,6 +1983,7 @@ pk.Accordion.propTypes = {multiple:pt.bool,
|
|
|
1963
1983
|
variant:pt.oneOf(["'default'", "'contained'", "'filled'", "'separated'"]),
|
|
1964
1984
|
radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
1965
1985
|
children:pt.node,
|
|
1986
|
+
chevronIconSize:pt.oneOfType([pt.string,pt.number]),
|
|
1966
1987
|
className:pt.string,
|
|
1967
1988
|
style:pt.any,
|
|
1968
1989
|
hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -2023,6 +2044,7 @@ pk.Accordion.propTypes = {multiple:pt.bool,
|
|
|
2023
2044
|
classNames:pt.object,
|
|
2024
2045
|
styles:pt.any,
|
|
2025
2046
|
unstyled:pt.bool,
|
|
2047
|
+
attributes:pt.any,
|
|
2026
2048
|
id:pt.string,
|
|
2027
2049
|
setProps:pt.any,
|
|
2028
2050
|
data-*:pt.string,
|
|
@@ -2097,6 +2119,7 @@ pk.AccordionControl.propTypes = {disabled:pt.bool,
|
|
|
2097
2119
|
styles:pt.any,
|
|
2098
2120
|
unstyled:pt.bool,
|
|
2099
2121
|
variant:pt.string,
|
|
2122
|
+
attributes:pt.any,
|
|
2100
2123
|
id:pt.string,
|
|
2101
2124
|
setProps:pt.any,
|
|
2102
2125
|
data-*:pt.string,
|
|
@@ -2166,6 +2189,7 @@ pk.AccordionItem.propTypes = {value:pt.string,
|
|
|
2166
2189
|
styles:pt.any,
|
|
2167
2190
|
unstyled:pt.bool,
|
|
2168
2191
|
variant:pt.string,
|
|
2192
|
+
attributes:pt.any,
|
|
2169
2193
|
id:pt.string,
|
|
2170
2194
|
setProps:pt.any,
|
|
2171
2195
|
data-*:pt.string,
|
|
@@ -2234,6 +2258,7 @@ pk.AccordionPanel.propTypes = {children:pt.node,
|
|
|
2234
2258
|
styles:pt.any,
|
|
2235
2259
|
unstyled:pt.bool,
|
|
2236
2260
|
variant:pt.string,
|
|
2261
|
+
attributes:pt.any,
|
|
2237
2262
|
id:pt.string,
|
|
2238
2263
|
setProps:pt.any,
|
|
2239
2264
|
data-*:pt.string,
|
|
@@ -2314,6 +2339,7 @@ pk.AppShell.propTypes = {withBorder:pt.bool,
|
|
|
2314
2339
|
styles:pt.any,
|
|
2315
2340
|
unstyled:pt.bool,
|
|
2316
2341
|
variant:pt.string,
|
|
2342
|
+
attributes:pt.any,
|
|
2317
2343
|
id:pt.string,
|
|
2318
2344
|
setProps:pt.any,
|
|
2319
2345
|
data-*:pt.string,
|
|
@@ -2384,6 +2410,7 @@ pk.AppShellAside.propTypes = {withBorder:pt.bool,
|
|
|
2384
2410
|
styles:pt.any,
|
|
2385
2411
|
unstyled:pt.bool,
|
|
2386
2412
|
variant:pt.string,
|
|
2413
|
+
attributes:pt.any,
|
|
2387
2414
|
id:pt.string,
|
|
2388
2415
|
setProps:pt.any,
|
|
2389
2416
|
data-*:pt.string,
|
|
@@ -2454,6 +2481,7 @@ pk.AppShellFooter.propTypes = {withBorder:pt.bool,
|
|
|
2454
2481
|
styles:pt.any,
|
|
2455
2482
|
unstyled:pt.bool,
|
|
2456
2483
|
variant:pt.string,
|
|
2484
|
+
attributes:pt.any,
|
|
2457
2485
|
id:pt.string,
|
|
2458
2486
|
setProps:pt.any,
|
|
2459
2487
|
data-*:pt.string,
|
|
@@ -2524,6 +2552,7 @@ pk.AppShellHeader.propTypes = {withBorder:pt.bool,
|
|
|
2524
2552
|
styles:pt.any,
|
|
2525
2553
|
unstyled:pt.bool,
|
|
2526
2554
|
variant:pt.string,
|
|
2555
|
+
attributes:pt.any,
|
|
2527
2556
|
id:pt.string,
|
|
2528
2557
|
setProps:pt.any,
|
|
2529
2558
|
data-*:pt.string,
|
|
@@ -2592,6 +2621,7 @@ pk.AppShellMain.propTypes = {children:pt.node,
|
|
|
2592
2621
|
styles:pt.any,
|
|
2593
2622
|
unstyled:pt.bool,
|
|
2594
2623
|
variant:pt.string,
|
|
2624
|
+
attributes:pt.any,
|
|
2595
2625
|
id:pt.string,
|
|
2596
2626
|
setProps:pt.any,
|
|
2597
2627
|
data-*:pt.string,
|
|
@@ -2662,6 +2692,7 @@ pk.AppShellNavbar.propTypes = {withBorder:pt.bool,
|
|
|
2662
2692
|
styles:pt.any,
|
|
2663
2693
|
unstyled:pt.bool,
|
|
2664
2694
|
variant:pt.string,
|
|
2695
|
+
attributes:pt.any,
|
|
2665
2696
|
id:pt.string,
|
|
2666
2697
|
setProps:pt.any,
|
|
2667
2698
|
data-*:pt.string,
|
|
@@ -2731,6 +2762,7 @@ pk.AppShellSection.propTypes = {grow:pt.bool,
|
|
|
2731
2762
|
styles:pt.any,
|
|
2732
2763
|
unstyled:pt.bool,
|
|
2733
2764
|
variant:pt.string,
|
|
2765
|
+
attributes:pt.any,
|
|
2734
2766
|
id:pt.string,
|
|
2735
2767
|
setProps:pt.any,
|
|
2736
2768
|
data-*:pt.string,
|
|
@@ -2809,6 +2841,7 @@ pk.Avatar.propTypes = {size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["
|
|
|
2809
2841
|
styles:pt.any,
|
|
2810
2842
|
unstyled:pt.bool,
|
|
2811
2843
|
variant:pt.string,
|
|
2844
|
+
attributes:pt.any,
|
|
2812
2845
|
id:pt.string,
|
|
2813
2846
|
setProps:pt.any,
|
|
2814
2847
|
data-*:pt.string,
|
|
@@ -2878,6 +2911,7 @@ pk.AvatarGroup.propTypes = {spacing:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.
|
|
|
2878
2911
|
styles:pt.any,
|
|
2879
2912
|
unstyled:pt.bool,
|
|
2880
2913
|
variant:pt.string,
|
|
2914
|
+
attributes:pt.any,
|
|
2881
2915
|
id:pt.string,
|
|
2882
2916
|
setProps:pt.any,
|
|
2883
2917
|
data-*:pt.string,
|
|
@@ -2886,7 +2920,7 @@ pk.AvatarGroup.propTypes = {spacing:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.
|
|
|
2886
2920
|
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
2887
2921
|
pk.ActionIcon.propTypes = {n_clicks:pt.number,
|
|
2888
2922
|
loading:pt.bool,
|
|
2889
|
-
loaderProps:pt.shape({size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),type:pt.oneOf(["'bars'", "'dots'", "'oval'"]),children:pt.node,className:pt.string,style:pt.any,hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),c:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number]),classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string}),
|
|
2923
|
+
loaderProps:pt.shape({size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),type:pt.oneOf(["'bars'", "'dots'", "'oval'"]),children:pt.node,className:pt.string,style:pt.any,hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),c:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number]),classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any}),
|
|
2890
2924
|
size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
2891
2925
|
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"])]),
|
|
2892
2926
|
radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -2955,6 +2989,7 @@ pk.ActionIcon.propTypes = {n_clicks:pt.number,
|
|
|
2955
2989
|
styles:pt.any,
|
|
2956
2990
|
unstyled:pt.bool,
|
|
2957
2991
|
variant:pt.string,
|
|
2992
|
+
attributes:pt.any,
|
|
2958
2993
|
id:pt.string,
|
|
2959
2994
|
setProps:pt.any,
|
|
2960
2995
|
data-*:pt.string,
|
|
@@ -3030,7 +3065,8 @@ pk.ActionIconGroup.propTypes = {children:pt.node,
|
|
|
3030
3065
|
classNames:pt.object,
|
|
3031
3066
|
styles:pt.any,
|
|
3032
3067
|
unstyled:pt.bool,
|
|
3033
|
-
variant:pt.string
|
|
3068
|
+
variant:pt.string,
|
|
3069
|
+
attributes:pt.any};
|
|
3034
3070
|
pk.Button.propTypes = {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"])]),
|
|
3035
3071
|
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"])]),
|
|
3036
3072
|
justify: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(["normal"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["space-around"]),pt.oneOf(["space-between"]),pt.oneOf(["space-evenly"]),pt.oneOf(["stretch"]),pt.oneOf(["flex-end"]),pt.oneOf(["flex-start"])]),
|
|
@@ -3042,7 +3078,7 @@ pk.Button.propTypes = {size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.o
|
|
|
3042
3078
|
disabled:pt.bool,
|
|
3043
3079
|
children:pt.node,
|
|
3044
3080
|
loading:pt.bool,
|
|
3045
|
-
loaderProps:pt.shape({size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),type:pt.oneOf(["'bars'", "'dots'", "'oval'"]),children:pt.node,className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),c:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number]),classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string}),
|
|
3081
|
+
loaderProps:pt.shape({size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),type:pt.oneOf(["'bars'", "'dots'", "'oval'"]),children:pt.node,className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),c:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number]),classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any}),
|
|
3046
3082
|
autoContrast:pt.bool,
|
|
3047
3083
|
n_clicks:pt.number,
|
|
3048
3084
|
id:pt.string,
|
|
@@ -3111,7 +3147,8 @@ pk.Button.propTypes = {size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.o
|
|
|
3111
3147
|
classNames:pt.object,
|
|
3112
3148
|
styles:pt.any,
|
|
3113
3149
|
unstyled:pt.bool,
|
|
3114
|
-
variant:pt.string
|
|
3150
|
+
variant:pt.string,
|
|
3151
|
+
attributes:pt.any};
|
|
3115
3152
|
pk.ButtonGroup.propTypes = {children:pt.node,
|
|
3116
3153
|
orientation:pt.oneOf(["'horizontal'", "'vertical'"]),
|
|
3117
3154
|
borderWidth:pt.oneOfType([pt.string,pt.number]),
|
|
@@ -3181,7 +3218,8 @@ pk.ButtonGroup.propTypes = {children:pt.node,
|
|
|
3181
3218
|
classNames:pt.object,
|
|
3182
3219
|
styles:pt.any,
|
|
3183
3220
|
unstyled:pt.bool,
|
|
3184
|
-
variant:pt.string
|
|
3221
|
+
variant:pt.string,
|
|
3222
|
+
attributes:pt.any};
|
|
3185
3223
|
pk.UnstyledButton.propTypes = {children:pt.node,
|
|
3186
3224
|
n_clicks:pt.number,
|
|
3187
3225
|
disabled:pt.bool,
|
|
@@ -3252,7 +3290,8 @@ pk.UnstyledButton.propTypes = {children:pt.node,
|
|
|
3252
3290
|
classNames:pt.object,
|
|
3253
3291
|
styles:pt.any,
|
|
3254
3292
|
unstyled:pt.bool,
|
|
3255
|
-
variant:pt.string
|
|
3293
|
+
variant:pt.string,
|
|
3294
|
+
attributes:pt.any};
|
|
3256
3295
|
pk.Card.propTypes = {shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3257
3296
|
radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
3258
3297
|
withBorder:pt.bool,
|
|
@@ -3319,6 +3358,7 @@ pk.Card.propTypes = {shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.o
|
|
|
3319
3358
|
styles:pt.any,
|
|
3320
3359
|
unstyled:pt.bool,
|
|
3321
3360
|
variant:pt.string,
|
|
3361
|
+
attributes:pt.any,
|
|
3322
3362
|
id:pt.string,
|
|
3323
3363
|
setProps:pt.any,
|
|
3324
3364
|
data-*:pt.string,
|
|
@@ -3389,6 +3429,7 @@ pk.CardSection.propTypes = {withBorder:pt.bool,
|
|
|
3389
3429
|
styles:pt.any,
|
|
3390
3430
|
unstyled:pt.bool,
|
|
3391
3431
|
variant:pt.string,
|
|
3432
|
+
attributes:pt.any,
|
|
3392
3433
|
id:pt.string,
|
|
3393
3434
|
setProps:pt.any,
|
|
3394
3435
|
data-*:pt.string,
|
|
@@ -3472,6 +3513,7 @@ pk.Checkbox.propTypes = {label:pt.node,
|
|
|
3472
3513
|
styles:pt.any,
|
|
3473
3514
|
unstyled:pt.bool,
|
|
3474
3515
|
variant:pt.string,
|
|
3516
|
+
attributes:pt.any,
|
|
3475
3517
|
id:pt.string,
|
|
3476
3518
|
setProps:pt.any,
|
|
3477
3519
|
data-*:pt.string,
|
|
@@ -3550,6 +3592,7 @@ pk.CheckboxCard.propTypes = {checked:pt.bool,
|
|
|
3550
3592
|
styles:pt.any,
|
|
3551
3593
|
unstyled:pt.bool,
|
|
3552
3594
|
variant:pt.string,
|
|
3595
|
+
attributes:pt.any,
|
|
3553
3596
|
id:pt.string,
|
|
3554
3597
|
setProps:pt.any,
|
|
3555
3598
|
data-*:pt.string,
|
|
@@ -3625,6 +3668,7 @@ pk.CheckboxGroup.propTypes = {children:pt.node,
|
|
|
3625
3668
|
styles:pt.any,
|
|
3626
3669
|
unstyled:pt.bool,
|
|
3627
3670
|
variant:pt.string,
|
|
3671
|
+
attributes:pt.any,
|
|
3628
3672
|
id:pt.string,
|
|
3629
3673
|
setProps:pt.any,
|
|
3630
3674
|
data-*:pt.string,
|
|
@@ -3716,6 +3760,7 @@ pk.CheckboxIndicator.propTypes = {color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneO
|
|
|
3716
3760
|
styles:pt.any,
|
|
3717
3761
|
unstyled:pt.bool,
|
|
3718
3762
|
variant:pt.string,
|
|
3763
|
+
attributes:pt.any,
|
|
3719
3764
|
id:pt.string,
|
|
3720
3765
|
setProps:pt.any,
|
|
3721
3766
|
data-*:pt.string,
|
|
@@ -3798,6 +3843,7 @@ pk.Chip.propTypes = {radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["
|
|
|
3798
3843
|
styles:pt.any,
|
|
3799
3844
|
unstyled:pt.bool,
|
|
3800
3845
|
variant:pt.string,
|
|
3846
|
+
attributes:pt.any,
|
|
3801
3847
|
setProps:pt.any,
|
|
3802
3848
|
data-*:pt.string,
|
|
3803
3849
|
aria-*:pt.string,
|
|
@@ -3822,7 +3868,7 @@ pk.ChipGroup.propTypes = {multiple:pt.bool,
|
|
|
3822
3868
|
pk.ChipGroupContext.propTypes = {};
|
|
3823
3869
|
pk.ColorInput.propTypes = {disallowInput:pt.bool,
|
|
3824
3870
|
fixOnBlur:pt.bool,
|
|
3825
|
-
popoverProps:pt.shape({children:pt.node,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles:pt.bool,hideDetached:pt.bool,position:pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"]),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.bool,rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"])]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,padding:pt.oneOfType([pt.number]),fallbackPlacements:pt.arrayOf(pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"])),fallbackStrategy:pt.oneOf(["'bestFit'", "'initialPlacement'"]),fallbackAxisSideDirection:pt.oneOf(["'end'", "'start'", "'none'"]),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.any,size:pt.oneOfType([pt.any])}),withArrow:pt.bool,arrowSize:pt.number,arrowOffset:pt.number,arrowRadius:pt.number,arrowPosition:pt.oneOf(["'center'", "'side'"]),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,returnFocus:pt.bool,floatingStrategy:pt.oneOf(["'absolute'", "'fixed'"]),overlayProps:pt.object,withOverlay:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string}),
|
|
3871
|
+
popoverProps:pt.shape({children:pt.node,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles:pt.bool,hideDetached:pt.bool,position:pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"]),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.bool,rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"])]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,padding:pt.oneOfType([pt.number]),fallbackPlacements:pt.arrayOf(pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"])),fallbackStrategy:pt.oneOf(["'bestFit'", "'initialPlacement'"]),fallbackAxisSideDirection:pt.oneOf(["'end'", "'start'", "'none'"]),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.any,size:pt.oneOfType([pt.any])}),withArrow:pt.bool,arrowSize:pt.number,arrowOffset:pt.number,arrowRadius:pt.number,arrowPosition:pt.oneOf(["'center'", "'side'"]),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,returnFocus:pt.bool,floatingStrategy:pt.oneOf(["'absolute'", "'fixed'"]),overlayProps:pt.object,withOverlay:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any}),
|
|
3826
3872
|
withPreview:pt.bool,
|
|
3827
3873
|
withEyeDropper:pt.bool,
|
|
3828
3874
|
eyeDropperIcon:pt.node,
|
|
@@ -3921,6 +3967,7 @@ pk.ColorInput.propTypes = {disallowInput:pt.bool,
|
|
|
3921
3967
|
styles:pt.any,
|
|
3922
3968
|
unstyled:pt.bool,
|
|
3923
3969
|
variant:pt.string,
|
|
3970
|
+
attributes:pt.any,
|
|
3924
3971
|
persistence:pt.oneOfType([pt.string,pt.number]),
|
|
3925
3972
|
persisted_props:pt.arrayOf(pt.string),
|
|
3926
3973
|
persistence_type:pt.oneOf(["'local'", "'session'", "'memory'"]),
|
|
@@ -4002,6 +4049,7 @@ pk.ColorPicker.propTypes = {fullWidth:pt.bool,
|
|
|
4002
4049
|
styles:pt.any,
|
|
4003
4050
|
unstyled:pt.bool,
|
|
4004
4051
|
variant:pt.string,
|
|
4052
|
+
attributes:pt.any,
|
|
4005
4053
|
persistence:pt.oneOfType([pt.string,pt.number]),
|
|
4006
4054
|
persisted_props:pt.arrayOf(pt.string),
|
|
4007
4055
|
persistence_type:pt.oneOf(["'local'", "'session'", "'memory'"]),
|
|
@@ -4013,9 +4061,10 @@ pk.ColorPicker.propTypes = {fullWidth:pt.bool,
|
|
|
4013
4061
|
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
4014
4062
|
pk.Autocomplete.propTypes = {data:pt.oneOfType([pt.arrayOf(pt.oneOfType([pt.string])),pt.arrayOf(pt.oneOfType([pt.string]))]),
|
|
4015
4063
|
value:pt.string,
|
|
4016
|
-
scrollAreaProps:pt.shape({scrollbarSize:pt.oneOfType([pt.string,pt.number]),type:pt.oneOf(["'auto'", "'always'", "'scroll'", "'hover'", "'never'"]),scrollHideDelay:pt.number,scrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["xy"])]),offsetScrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"])]),overscrollBehavior:pt.oneOfType([pt.oneOf(["auto"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["contain"]),pt.oneOf(["none"])]),className:pt.string,style:pt.any,hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),c:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["scroll"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"])]),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}),
|
|
4064
|
+
scrollAreaProps:pt.shape({scrollbarSize:pt.oneOfType([pt.string,pt.number]),type:pt.oneOf(["'auto'", "'always'", "'scroll'", "'hover'", "'never'"]),scrollHideDelay:pt.number,scrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["xy"])]),offsetScrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"])]),overscrollBehavior:pt.oneOfType([pt.oneOf(["auto"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["contain"]),pt.oneOf(["none"])]),className:pt.string,style:pt.any,hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),c:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["scroll"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"])]),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}),
|
|
4017
4065
|
clearable:pt.bool,
|
|
4018
4066
|
clearButtonProps:pt.shape({size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node}),
|
|
4067
|
+
autoSelectOnBlur:pt.bool,
|
|
4019
4068
|
className:pt.string,
|
|
4020
4069
|
style:pt.any,
|
|
4021
4070
|
hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -4102,7 +4151,7 @@ pk.Autocomplete.propTypes = {data:pt.oneOfType([pt.arrayOf(pt.oneOfType([pt.stri
|
|
|
4102
4151
|
inputProps:pt.objectOf(pt.any),
|
|
4103
4152
|
dropdownOpened:pt.bool,
|
|
4104
4153
|
selectFirstOptionOnChange:pt.bool,
|
|
4105
|
-
comboboxProps:pt.shape({children:pt.node,size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),dropdownPadding:pt.oneOfType([pt.string,pt.number]),resetSelectionOnOptionHover:pt.bool,readOnly:pt.bool,position:pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"]),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({padding:pt.oneOfType([pt.number]),mainAxis:pt.bool,crossAxis:pt.bool,rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"])]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,fallbackPlacements:pt.arrayOf(pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"])),fallbackStrategy:pt.oneOf(["'bestFit'", "'initialPlacement'"]),fallbackAxisSideDirection:pt.oneOf(["'none'", "'end'", "'start'"]),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.any,size:pt.oneOfType([pt.any])}),withArrow:pt.bool,arrowSize:pt.number,arrowOffset:pt.number,arrowRadius:pt.number,arrowPosition:pt.oneOf(["'center'", "'side'"]),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,returnFocus:pt.bool,floatingStrategy:pt.oneOf(["'fixed'", "'absolute'"]),overlayProps:pt.object,withOverlay:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string}),
|
|
4154
|
+
comboboxProps:pt.shape({children:pt.node,size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),dropdownPadding:pt.oneOfType([pt.string,pt.number]),resetSelectionOnOptionHover:pt.bool,readOnly:pt.bool,position:pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"]),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({padding:pt.oneOfType([pt.number]),mainAxis:pt.bool,crossAxis:pt.bool,rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"])]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,fallbackPlacements:pt.arrayOf(pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"])),fallbackStrategy:pt.oneOf(["'bestFit'", "'initialPlacement'"]),fallbackAxisSideDirection:pt.oneOf(["'none'", "'end'", "'start'"]),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.any,size:pt.oneOfType([pt.any])}),withArrow:pt.bool,arrowSize:pt.number,arrowOffset:pt.number,arrowRadius:pt.number,arrowPosition:pt.oneOf(["'center'", "'side'"]),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,returnFocus:pt.bool,floatingStrategy:pt.oneOf(["'fixed'", "'absolute'"]),overlayProps:pt.object,withOverlay:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any}),
|
|
4106
4155
|
limit:pt.number,
|
|
4107
4156
|
withScrollArea:pt.bool,
|
|
4108
4157
|
maxDropdownHeight:pt.oneOfType([pt.string,pt.number]),
|
|
@@ -4112,6 +4161,7 @@ pk.Autocomplete.propTypes = {data:pt.oneOfType([pt.arrayOf(pt.oneOfType([pt.stri
|
|
|
4112
4161
|
styles:pt.any,
|
|
4113
4162
|
unstyled:pt.bool,
|
|
4114
4163
|
variant:pt.string,
|
|
4164
|
+
attributes:pt.any,
|
|
4115
4165
|
id:pt.string,
|
|
4116
4166
|
setProps:pt.any,
|
|
4117
4167
|
data-*:pt.string,
|
|
@@ -4133,7 +4183,7 @@ pk.MultiSelect.propTypes = {value:pt.arrayOf(pt.string),
|
|
|
4133
4183
|
clearButtonProps:pt.shape({size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node}),
|
|
4134
4184
|
hiddenInputProps:pt.object,
|
|
4135
4185
|
hiddenInputValuesDivider:pt.string,
|
|
4136
|
-
scrollAreaProps:pt.shape({scrollbarSize:pt.oneOfType([pt.string,pt.number]),type:pt.oneOf(["'auto'", "'always'", "'scroll'", "'hover'", "'never'"]),scrollHideDelay:pt.number,scrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["xy"])]),offsetScrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"])]),overscrollBehavior:pt.oneOfType([pt.oneOf(["auto"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["contain"]),pt.oneOf(["none"])]),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),c:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["scroll"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"])]),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}),
|
|
4186
|
+
scrollAreaProps:pt.shape({scrollbarSize:pt.oneOfType([pt.string,pt.number]),type:pt.oneOf(["'auto'", "'always'", "'scroll'", "'hover'", "'never'"]),scrollHideDelay:pt.number,scrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["xy"])]),offsetScrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"])]),overscrollBehavior:pt.oneOfType([pt.oneOf(["auto"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["contain"]),pt.oneOf(["none"])]),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),c:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["scroll"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"])]),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}),
|
|
4137
4187
|
className:pt.string,
|
|
4138
4188
|
style:pt.any,
|
|
4139
4189
|
hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -4221,7 +4271,7 @@ pk.MultiSelect.propTypes = {value:pt.arrayOf(pt.string),
|
|
|
4221
4271
|
data:pt.oneOfType([pt.arrayOf(pt.oneOfType([pt.string])),pt.arrayOf(pt.oneOfType([pt.string]))]),
|
|
4222
4272
|
dropdownOpened:pt.bool,
|
|
4223
4273
|
selectFirstOptionOnChange:pt.bool,
|
|
4224
|
-
comboboxProps:pt.shape({children:pt.node,size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),dropdownPadding:pt.oneOfType([pt.string,pt.number]),resetSelectionOnOptionHover:pt.bool,readOnly:pt.bool,position:pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"]),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({padding:pt.oneOfType([pt.number,pt.shape({top:pt.number,left:pt.number,bottom:pt.number,right:pt.number})]),mainAxis:pt.bool,crossAxis:pt.bool,rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"]),pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number})]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,fallbackPlacements:pt.arrayOf(pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"])),fallbackStrategy:pt.oneOf(["'bestFit'", "'initialPlacement'"]),fallbackAxisSideDirection:pt.oneOf(["'none'", "'end'", "'start'"]),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.any,size:pt.oneOfType([pt.any])}),withArrow:pt.bool,arrowSize:pt.number,arrowOffset:pt.number,arrowRadius:pt.number,arrowPosition:pt.oneOf(["'center'", "'side'"]),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,returnFocus:pt.bool,floatingStrategy:pt.oneOf(["'fixed'", "'absolute'"]),overlayProps:pt.object,withOverlay:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string}),
|
|
4274
|
+
comboboxProps:pt.shape({children:pt.node,size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),dropdownPadding:pt.oneOfType([pt.string,pt.number]),resetSelectionOnOptionHover:pt.bool,readOnly:pt.bool,position:pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"]),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({padding:pt.oneOfType([pt.number,pt.shape({top:pt.number,left:pt.number,bottom:pt.number,right:pt.number})]),mainAxis:pt.bool,crossAxis:pt.bool,rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"]),pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number})]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,fallbackPlacements:pt.arrayOf(pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"])),fallbackStrategy:pt.oneOf(["'bestFit'", "'initialPlacement'"]),fallbackAxisSideDirection:pt.oneOf(["'none'", "'end'", "'start'"]),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.any,size:pt.oneOfType([pt.any])}),withArrow:pt.bool,arrowSize:pt.number,arrowOffset:pt.number,arrowRadius:pt.number,arrowPosition:pt.oneOf(["'center'", "'side'"]),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,returnFocus:pt.bool,floatingStrategy:pt.oneOf(["'fixed'", "'absolute'"]),overlayProps:pt.object,withOverlay:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any}),
|
|
4225
4275
|
limit:pt.number,
|
|
4226
4276
|
withScrollArea:pt.bool,
|
|
4227
4277
|
maxDropdownHeight:pt.oneOfType([pt.string,pt.number]),
|
|
@@ -4231,6 +4281,7 @@ pk.MultiSelect.propTypes = {value:pt.arrayOf(pt.string),
|
|
|
4231
4281
|
styles:pt.any,
|
|
4232
4282
|
unstyled:pt.bool,
|
|
4233
4283
|
variant:pt.string,
|
|
4284
|
+
attributes:pt.any,
|
|
4234
4285
|
id:pt.string,
|
|
4235
4286
|
setProps:pt.any,
|
|
4236
4287
|
data-*:pt.string,
|
|
@@ -4253,7 +4304,9 @@ pk.Select.propTypes = {value:pt.string,
|
|
|
4253
4304
|
clearable:pt.bool,
|
|
4254
4305
|
clearButtonProps:pt.shape({size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node}),
|
|
4255
4306
|
hiddenInputProps:pt.object,
|
|
4256
|
-
scrollAreaProps:pt.shape({scrollbarSize:pt.oneOfType([pt.string,pt.number]),type:pt.oneOf(["'auto'", "'always'", "'scroll'", "'hover'", "'never'"]),scrollHideDelay:pt.number,scrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["xy"])]),offsetScrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"])]),overscrollBehavior:pt.oneOfType([pt.oneOf(["auto"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["contain"]),pt.oneOf(["none"])]),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),c:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["scroll"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"])]),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}),
|
|
4307
|
+
scrollAreaProps:pt.shape({scrollbarSize:pt.oneOfType([pt.string,pt.number]),type:pt.oneOf(["'auto'", "'always'", "'scroll'", "'hover'", "'never'"]),scrollHideDelay:pt.number,scrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["xy"])]),offsetScrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"])]),overscrollBehavior:pt.oneOfType([pt.oneOf(["auto"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["contain"]),pt.oneOf(["none"])]),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),c:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["scroll"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number]),classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any}),
|
|
4308
|
+
autoSelectOnBlur:pt.bool,
|
|
4309
|
+
clearSearchOnFocus:pt.bool,
|
|
4257
4310
|
className:pt.string,
|
|
4258
4311
|
style:pt.any,
|
|
4259
4312
|
hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -4341,7 +4394,7 @@ pk.Select.propTypes = {value:pt.string,
|
|
|
4341
4394
|
data:pt.oneOfType([pt.arrayOf(pt.oneOfType([pt.string])),pt.arrayOf(pt.oneOfType([pt.string]))]),
|
|
4342
4395
|
dropdownOpened:pt.bool,
|
|
4343
4396
|
selectFirstOptionOnChange:pt.bool,
|
|
4344
|
-
comboboxProps:pt.shape({children:pt.node,size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),dropdownPadding:pt.oneOfType([pt.string,pt.number]),resetSelectionOnOptionHover:pt.bool,readOnly:pt.bool,position:pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"]),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({padding:pt.oneOfType([pt.number,pt.shape({top:pt.number,left:pt.number,bottom:pt.number,right:pt.number})]),mainAxis:pt.bool,crossAxis:pt.bool,rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"]),pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number})]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,fallbackPlacements:pt.arrayOf(pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"])),fallbackStrategy:pt.oneOf(["'bestFit'", "'initialPlacement'"]),fallbackAxisSideDirection:pt.oneOf(["'none'", "'end'", "'start'"]),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.any,size:pt.oneOfType([pt.any])}),withArrow:pt.bool,arrowSize:pt.number,arrowOffset:pt.number,arrowRadius:pt.number,arrowPosition:pt.oneOf(["'center'", "'side'"]),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,returnFocus:pt.bool,floatingStrategy:pt.oneOf(["'fixed'", "'absolute'"]),overlayProps:pt.object,withOverlay:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string}),
|
|
4397
|
+
comboboxProps:pt.shape({children:pt.node,size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),dropdownPadding:pt.oneOfType([pt.string,pt.number]),resetSelectionOnOptionHover:pt.bool,readOnly:pt.bool,position:pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"]),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({padding:pt.oneOfType([pt.number,pt.shape({top:pt.number,left:pt.number,bottom:pt.number,right:pt.number})]),mainAxis:pt.bool,crossAxis:pt.bool,rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"]),pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number})]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,fallbackPlacements:pt.arrayOf(pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"])),fallbackStrategy:pt.oneOf(["'bestFit'", "'initialPlacement'"]),fallbackAxisSideDirection:pt.oneOf(["'none'", "'end'", "'start'"]),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.any,size:pt.oneOfType([pt.any])}),withArrow:pt.bool,arrowSize:pt.number,arrowOffset:pt.number,arrowRadius:pt.number,arrowPosition:pt.oneOf(["'center'", "'side'"]),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,returnFocus:pt.bool,floatingStrategy:pt.oneOf(["'fixed'", "'absolute'"]),overlayProps:pt.object,withOverlay:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any}),
|
|
4345
4398
|
limit:pt.number,
|
|
4346
4399
|
withScrollArea:pt.bool,
|
|
4347
4400
|
maxDropdownHeight:pt.oneOfType([pt.string,pt.number]),
|
|
@@ -4351,6 +4404,7 @@ pk.Select.propTypes = {value:pt.string,
|
|
|
4351
4404
|
styles:pt.any,
|
|
4352
4405
|
unstyled:pt.bool,
|
|
4353
4406
|
variant:pt.string,
|
|
4407
|
+
attributes:pt.any,
|
|
4354
4408
|
id:pt.string,
|
|
4355
4409
|
setProps:pt.any,
|
|
4356
4410
|
data-*:pt.string,
|
|
@@ -4373,7 +4427,7 @@ pk.TagsInput.propTypes = {data:pt.oneOfType([pt.arrayOf(pt.oneOfType([pt.string]
|
|
|
4373
4427
|
clearButtonProps:pt.shape({size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node}),
|
|
4374
4428
|
hiddenInputProps:pt.object,
|
|
4375
4429
|
hiddenInputValuesDivider:pt.string,
|
|
4376
|
-
scrollAreaProps:pt.shape({scrollbarSize:pt.oneOfType([pt.string,pt.number]),type:pt.oneOf(["'auto'", "'always'", "'scroll'", "'hover'", "'never'"]),scrollHideDelay:pt.number,scrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["xy"])]),offsetScrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"])]),overscrollBehavior:pt.oneOfType([pt.oneOf(["auto"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["contain"]),pt.oneOf(["none"])]),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),c:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["scroll"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"])]),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}),
|
|
4430
|
+
scrollAreaProps:pt.shape({scrollbarSize:pt.oneOfType([pt.string,pt.number]),type:pt.oneOf(["'auto'", "'always'", "'scroll'", "'hover'", "'never'"]),scrollHideDelay:pt.number,scrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["xy"])]),offsetScrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"])]),overscrollBehavior:pt.oneOfType([pt.oneOf(["auto"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["contain"]),pt.oneOf(["none"])]),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),c:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["scroll"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"])]),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}),
|
|
4377
4431
|
acceptValueOnBlur:pt.bool,
|
|
4378
4432
|
className:pt.string,
|
|
4379
4433
|
style:pt.any,
|
|
@@ -4461,7 +4515,7 @@ pk.TagsInput.propTypes = {data:pt.oneOfType([pt.arrayOf(pt.oneOfType([pt.string]
|
|
|
4461
4515
|
inputProps:pt.objectOf(pt.any),
|
|
4462
4516
|
dropdownOpened:pt.bool,
|
|
4463
4517
|
selectFirstOptionOnChange:pt.bool,
|
|
4464
|
-
comboboxProps:pt.shape({children:pt.node,size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),dropdownPadding:pt.oneOfType([pt.string,pt.number]),resetSelectionOnOptionHover:pt.bool,readOnly:pt.bool,position:pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"]),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({padding:pt.oneOfType([pt.number,pt.shape({top:pt.number,left:pt.number,bottom:pt.number,right:pt.number})]),mainAxis:pt.bool,crossAxis:pt.bool,rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"]),pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number})]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,fallbackPlacements:pt.arrayOf(pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"])),fallbackStrategy:pt.oneOf(["'bestFit'", "'initialPlacement'"]),fallbackAxisSideDirection:pt.oneOf(["'none'", "'end'", "'start'"]),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.any,size:pt.oneOfType([pt.any])}),withArrow:pt.bool,arrowSize:pt.number,arrowOffset:pt.number,arrowRadius:pt.number,arrowPosition:pt.oneOf(["'center'", "'side'"]),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,returnFocus:pt.bool,floatingStrategy:pt.oneOf(["'fixed'", "'absolute'"]),overlayProps:pt.object,withOverlay:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string}),
|
|
4518
|
+
comboboxProps:pt.shape({children:pt.node,size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),dropdownPadding:pt.oneOfType([pt.string,pt.number]),resetSelectionOnOptionHover:pt.bool,readOnly:pt.bool,position:pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"]),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({padding:pt.oneOfType([pt.number,pt.shape({top:pt.number,left:pt.number,bottom:pt.number,right:pt.number})]),mainAxis:pt.bool,crossAxis:pt.bool,rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"]),pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number})]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,fallbackPlacements:pt.arrayOf(pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"])),fallbackStrategy:pt.oneOf(["'bestFit'", "'initialPlacement'"]),fallbackAxisSideDirection:pt.oneOf(["'none'", "'end'", "'start'"]),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.any,size:pt.oneOfType([pt.any])}),withArrow:pt.bool,arrowSize:pt.number,arrowOffset:pt.number,arrowRadius:pt.number,arrowPosition:pt.oneOf(["'center'", "'side'"]),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,returnFocus:pt.bool,floatingStrategy:pt.oneOf(["'fixed'", "'absolute'"]),overlayProps:pt.object,withOverlay:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any}),
|
|
4465
4519
|
limit:pt.number,
|
|
4466
4520
|
withScrollArea:pt.bool,
|
|
4467
4521
|
maxDropdownHeight:pt.oneOfType([pt.string,pt.number]),
|
|
@@ -4471,6 +4525,7 @@ pk.TagsInput.propTypes = {data:pt.oneOfType([pt.arrayOf(pt.oneOfType([pt.string]
|
|
|
4471
4525
|
styles:pt.any,
|
|
4472
4526
|
unstyled:pt.bool,
|
|
4473
4527
|
variant:pt.string,
|
|
4528
|
+
attributes:pt.any,
|
|
4474
4529
|
id:pt.string,
|
|
4475
4530
|
setProps:pt.any,
|
|
4476
4531
|
data-*:pt.string,
|
|
@@ -4485,7 +4540,7 @@ pk.Drawer.propTypes = {position:pt.oneOf(["'top'", "'left'", "'bottom'", "'right
|
|
|
4485
4540
|
offset:pt.oneOfType([pt.string,pt.number]),
|
|
4486
4541
|
title:pt.node,
|
|
4487
4542
|
withOverlay:pt.bool,
|
|
4488
|
-
overlayProps:pt.shape({transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),className:pt.string,style:pt.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(["center"]),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(["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(["fixed"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["local"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["fixed"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),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]),children:pt.node,radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),unstyled:pt.bool,zIndex:pt.oneOfType([pt.string,pt.number]),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,center:pt.bool,fixed:pt.bool}),
|
|
4543
|
+
overlayProps:pt.shape({transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),attributes:pt.any,unstyled:pt.bool,className:pt.string,style:pt.any,hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),c:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["center"]),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(["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(["fixed"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["local"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["fixed"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),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]),children:pt.node,radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),zIndex:pt.oneOfType([pt.string,pt.number]),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,center:pt.bool,fixed:pt.bool}),
|
|
4489
4544
|
children:pt.node,
|
|
4490
4545
|
withCloseButton:pt.bool,
|
|
4491
4546
|
closeButtonProps:pt.object,
|
|
@@ -4589,7 +4644,7 @@ pk.ManagedDrawer.propTypes = {id:pt.string,
|
|
|
4589
4644
|
offset:pt.oneOfType([pt.string,pt.number]),
|
|
4590
4645
|
title:pt.node,
|
|
4591
4646
|
withOverlay:pt.bool,
|
|
4592
|
-
overlayProps:pt.shape({transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string]),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(["center"]),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(["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(["fixed"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["local"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["fixed"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),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]),children:pt.node,radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),unstyled:pt.bool,zIndex:pt.oneOfType([pt.string,pt.number]),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,center:pt.bool,fixed:pt.bool}),
|
|
4647
|
+
overlayProps:pt.shape({transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),attributes:pt.any,unstyled: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(["center"]),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(["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(["fixed"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["local"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["fixed"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),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]),children:pt.node,radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),zIndex:pt.oneOfType([pt.string,pt.number]),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,center:pt.bool,fixed:pt.bool}),
|
|
4593
4648
|
children:pt.node,
|
|
4594
4649
|
withCloseButton:pt.bool,
|
|
4595
4650
|
closeButtonProps:pt.object,
|
|
@@ -4743,6 +4798,7 @@ pk.Grid.propTypes = {children:pt.node,
|
|
|
4743
4798
|
styles:pt.any,
|
|
4744
4799
|
unstyled:pt.bool,
|
|
4745
4800
|
variant:pt.string,
|
|
4801
|
+
attributes:pt.any,
|
|
4746
4802
|
id:pt.string,
|
|
4747
4803
|
setProps:pt.any,
|
|
4748
4804
|
data-*:pt.string,
|
|
@@ -4814,6 +4870,7 @@ pk.GridCol.propTypes = {children:pt.node,
|
|
|
4814
4870
|
styles:pt.any,
|
|
4815
4871
|
unstyled:pt.bool,
|
|
4816
4872
|
variant:pt.string,
|
|
4873
|
+
attributes:pt.any,
|
|
4817
4874
|
id:pt.string,
|
|
4818
4875
|
setProps:pt.any,
|
|
4819
4876
|
data-*:pt.string,
|
|
@@ -4855,6 +4912,7 @@ pk.HoverCard.propTypes = {openDelay:pt.number,
|
|
|
4855
4912
|
styles:pt.any,
|
|
4856
4913
|
unstyled:pt.bool,
|
|
4857
4914
|
variant:pt.string,
|
|
4915
|
+
attributes:pt.any,
|
|
4858
4916
|
id:pt.string,
|
|
4859
4917
|
setProps:pt.any,
|
|
4860
4918
|
data-*:pt.string,
|
|
@@ -4928,7 +4986,8 @@ pk.HoverCardDropdown.propTypes = {children:pt.node,
|
|
|
4928
4986
|
classNames:pt.object,
|
|
4929
4987
|
styles:pt.any,
|
|
4930
4988
|
unstyled:pt.bool,
|
|
4931
|
-
variant:pt.string
|
|
4989
|
+
variant:pt.string,
|
|
4990
|
+
attributes:pt.any};
|
|
4932
4991
|
pk.HoverCardTarget.propTypes = {children:pt.node,
|
|
4933
4992
|
boxWrapperProps:pt.shape({top:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),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(["right"]),pt.oneOf(["left"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["flex"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number])})};
|
|
4934
4993
|
pk.BackgroundImage.propTypes = {radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -4995,6 +5054,7 @@ pk.BackgroundImage.propTypes = {radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),
|
|
|
4995
5054
|
styles:pt.any,
|
|
4996
5055
|
unstyled:pt.bool,
|
|
4997
5056
|
variant:pt.string,
|
|
5057
|
+
attributes:pt.any,
|
|
4998
5058
|
id:pt.string,
|
|
4999
5059
|
setProps:pt.any,
|
|
5000
5060
|
data-*:pt.string,
|
|
@@ -5067,6 +5127,7 @@ pk.Image.propTypes = {radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf([
|
|
|
5067
5127
|
styles:pt.any,
|
|
5068
5128
|
unstyled:pt.bool,
|
|
5069
5129
|
variant:pt.string,
|
|
5130
|
+
attributes:pt.any,
|
|
5070
5131
|
id:pt.string,
|
|
5071
5132
|
setProps:pt.any,
|
|
5072
5133
|
data-*:pt.string,
|
|
@@ -5147,6 +5208,7 @@ pk.InputWrapper.propTypes = {children:pt.node,
|
|
|
5147
5208
|
styles:pt.any,
|
|
5148
5209
|
unstyled:pt.bool,
|
|
5149
5210
|
variant:pt.string,
|
|
5211
|
+
attributes:pt.any,
|
|
5150
5212
|
id:pt.string,
|
|
5151
5213
|
setProps:pt.any,
|
|
5152
5214
|
data-*:pt.string,
|
|
@@ -5249,6 +5311,7 @@ pk.JsonInput.propTypes = {value:pt.string,
|
|
|
5249
5311
|
styles:pt.any,
|
|
5250
5312
|
unstyled:pt.bool,
|
|
5251
5313
|
variant:pt.string,
|
|
5314
|
+
attributes:pt.any,
|
|
5252
5315
|
id:pt.string,
|
|
5253
5316
|
setProps:pt.any,
|
|
5254
5317
|
data-*:pt.string,
|
|
@@ -5372,6 +5435,7 @@ pk.NumberInput.propTypes = {value:pt.oneOfType([pt.string,pt.number]),
|
|
|
5372
5435
|
styles:pt.any,
|
|
5373
5436
|
unstyled:pt.bool,
|
|
5374
5437
|
variant:pt.string,
|
|
5438
|
+
attributes:pt.any,
|
|
5375
5439
|
id:pt.string,
|
|
5376
5440
|
setProps:pt.any,
|
|
5377
5441
|
data-*:pt.string,
|
|
@@ -5476,6 +5540,7 @@ pk.PasswordInput.propTypes = {visibilityToggleButtonProps:pt.objectOf(pt.any),
|
|
|
5476
5540
|
styles:pt.any,
|
|
5477
5541
|
unstyled:pt.bool,
|
|
5478
5542
|
variant:pt.string,
|
|
5543
|
+
attributes:pt.any,
|
|
5479
5544
|
id:pt.string,
|
|
5480
5545
|
setProps:pt.any,
|
|
5481
5546
|
data-*:pt.string,
|
|
@@ -5569,6 +5634,7 @@ pk.PinInput.propTypes = {name:pt.string,
|
|
|
5569
5634
|
styles:pt.any,
|
|
5570
5635
|
unstyled:pt.bool,
|
|
5571
5636
|
variant:pt.string,
|
|
5637
|
+
attributes:pt.any,
|
|
5572
5638
|
setProps:pt.any,
|
|
5573
5639
|
data-*:pt.string,
|
|
5574
5640
|
aria-*:pt.string,
|
|
@@ -5641,6 +5707,7 @@ pk.TextInput.propTypes = {value:pt.string,
|
|
|
5641
5707
|
styles:pt.any,
|
|
5642
5708
|
unstyled:pt.bool,
|
|
5643
5709
|
variant:pt.string,
|
|
5710
|
+
attributes:pt.any,
|
|
5644
5711
|
wrapperProps:pt.objectOf(pt.any),
|
|
5645
5712
|
readOnly:pt.bool,
|
|
5646
5713
|
label:pt.node,
|
|
@@ -5775,6 +5842,7 @@ pk.Textarea.propTypes = {value:pt.string,
|
|
|
5775
5842
|
styles:pt.any,
|
|
5776
5843
|
unstyled:pt.bool,
|
|
5777
5844
|
variant:pt.string,
|
|
5845
|
+
attributes:pt.any,
|
|
5778
5846
|
id:pt.string,
|
|
5779
5847
|
setProps:pt.any,
|
|
5780
5848
|
data-*:pt.string,
|
|
@@ -5861,7 +5929,8 @@ pk.List.propTypes = {children:pt.node,
|
|
|
5861
5929
|
classNames:pt.object,
|
|
5862
5930
|
styles:pt.any,
|
|
5863
5931
|
unstyled:pt.bool,
|
|
5864
|
-
variant:pt.string
|
|
5932
|
+
variant:pt.string,
|
|
5933
|
+
attributes:pt.any};
|
|
5865
5934
|
pk.ListItem.propTypes = {icon:pt.node,
|
|
5866
5935
|
children:pt.node,
|
|
5867
5936
|
id:pt.string,
|
|
@@ -5930,7 +5999,8 @@ pk.ListItem.propTypes = {icon:pt.node,
|
|
|
5930
5999
|
classNames:pt.object,
|
|
5931
6000
|
styles:pt.any,
|
|
5932
6001
|
unstyled:pt.bool,
|
|
5933
|
-
variant:pt.string
|
|
6002
|
+
variant:pt.string,
|
|
6003
|
+
attributes:pt.any};
|
|
5934
6004
|
pk.Menu.propTypes = {variant:pt.string,
|
|
5935
6005
|
children:pt.node,
|
|
5936
6006
|
opened:pt.bool,
|
|
@@ -5971,7 +6041,8 @@ pk.Menu.propTypes = {variant:pt.string,
|
|
|
5971
6041
|
withOverlay:pt.bool,
|
|
5972
6042
|
classNames:pt.object,
|
|
5973
6043
|
styles:pt.any,
|
|
5974
|
-
unstyled:pt.bool
|
|
6044
|
+
unstyled:pt.bool,
|
|
6045
|
+
attributes:pt.any};
|
|
5975
6046
|
pk.MenuDivider.propTypes = {top:pt.oneOfType([pt.string,pt.number]),
|
|
5976
6047
|
right:pt.oneOfType([pt.string,pt.number]),
|
|
5977
6048
|
bottom:pt.oneOfType([pt.string,pt.number]),
|
|
@@ -6038,7 +6109,8 @@ pk.MenuDivider.propTypes = {top:pt.oneOfType([pt.string,pt.number]),
|
|
|
6038
6109
|
classNames:pt.object,
|
|
6039
6110
|
styles:pt.any,
|
|
6040
6111
|
unstyled:pt.bool,
|
|
6041
|
-
variant:pt.string
|
|
6112
|
+
variant:pt.string,
|
|
6113
|
+
attributes:pt.any};
|
|
6042
6114
|
pk.MenuDropdown.propTypes = {children:pt.node,
|
|
6043
6115
|
top:pt.oneOfType([pt.string,pt.number]),
|
|
6044
6116
|
right:pt.oneOfType([pt.string,pt.number]),
|
|
@@ -6106,7 +6178,8 @@ pk.MenuDropdown.propTypes = {children:pt.node,
|
|
|
6106
6178
|
classNames:pt.object,
|
|
6107
6179
|
styles:pt.any,
|
|
6108
6180
|
unstyled:pt.bool,
|
|
6109
|
-
variant:pt.string
|
|
6181
|
+
variant:pt.string,
|
|
6182
|
+
attributes:pt.any};
|
|
6110
6183
|
pk.MenuItem.propTypes = {children:pt.node,
|
|
6111
6184
|
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"])]),
|
|
6112
6185
|
closeMenuOnClick:pt.bool,
|
|
@@ -6183,7 +6256,8 @@ pk.MenuItem.propTypes = {children:pt.node,
|
|
|
6183
6256
|
classNames:pt.object,
|
|
6184
6257
|
styles:pt.any,
|
|
6185
6258
|
unstyled:pt.bool,
|
|
6186
|
-
variant:pt.string
|
|
6259
|
+
variant:pt.string,
|
|
6260
|
+
attributes:pt.any};
|
|
6187
6261
|
pk.MenuLabel.propTypes = {children:pt.node,
|
|
6188
6262
|
top:pt.oneOfType([pt.string,pt.number]),
|
|
6189
6263
|
right:pt.oneOfType([pt.string,pt.number]),
|
|
@@ -6251,7 +6325,8 @@ pk.MenuLabel.propTypes = {children:pt.node,
|
|
|
6251
6325
|
classNames:pt.object,
|
|
6252
6326
|
styles:pt.any,
|
|
6253
6327
|
unstyled:pt.bool,
|
|
6254
|
-
variant:pt.string
|
|
6328
|
+
variant:pt.string,
|
|
6329
|
+
attributes:pt.any};
|
|
6255
6330
|
pk.MenuTarget.propTypes = {children:pt.node,
|
|
6256
6331
|
boxWrapperProps:pt.shape({top:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),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(["right"]),pt.oneOf(["left"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["flex"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number])})};
|
|
6257
6332
|
pk.SubMenu.propTypes = {variant:pt.string,
|
|
@@ -6294,7 +6369,8 @@ pk.SubMenu.propTypes = {variant:pt.string,
|
|
|
6294
6369
|
withOverlay:pt.bool,
|
|
6295
6370
|
classNames:pt.object,
|
|
6296
6371
|
styles:pt.any,
|
|
6297
|
-
unstyled:pt.bool
|
|
6372
|
+
unstyled:pt.bool,
|
|
6373
|
+
attributes:pt.any};
|
|
6298
6374
|
pk.SubMenuDropdown.propTypes = {children:pt.node,
|
|
6299
6375
|
top:pt.oneOfType([pt.string,pt.number]),
|
|
6300
6376
|
right:pt.oneOfType([pt.string,pt.number]),
|
|
@@ -6362,7 +6438,8 @@ pk.SubMenuDropdown.propTypes = {children:pt.node,
|
|
|
6362
6438
|
classNames:pt.object,
|
|
6363
6439
|
styles:pt.any,
|
|
6364
6440
|
unstyled:pt.bool,
|
|
6365
|
-
variant:pt.string
|
|
6441
|
+
variant:pt.string,
|
|
6442
|
+
attributes:pt.any};
|
|
6366
6443
|
pk.SubMenuItem.propTypes = {children:pt.node,
|
|
6367
6444
|
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"])]),
|
|
6368
6445
|
closeMenuOnClick:pt.bool,
|
|
@@ -6439,7 +6516,8 @@ pk.SubMenuItem.propTypes = {children:pt.node,
|
|
|
6439
6516
|
classNames:pt.object,
|
|
6440
6517
|
styles:pt.any,
|
|
6441
6518
|
unstyled:pt.bool,
|
|
6442
|
-
variant:pt.string
|
|
6519
|
+
variant:pt.string,
|
|
6520
|
+
attributes:pt.any};
|
|
6443
6521
|
pk.SubMenuTarget.propTypes = {children:pt.node,
|
|
6444
6522
|
boxWrapperProps:pt.shape({top:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),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(["right"]),pt.oneOf(["left"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["flex"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number])})};
|
|
6445
6523
|
pk.ManagedModal.propTypes = {id:pt.string,
|
|
@@ -6508,7 +6586,7 @@ pk.ManagedModal.propTypes = {id:pt.string,
|
|
|
6508
6586
|
flex:pt.oneOfType([pt.string,pt.number]),
|
|
6509
6587
|
title:pt.node,
|
|
6510
6588
|
withOverlay:pt.bool,
|
|
6511
|
-
overlayProps:pt.shape({transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),children:pt.node,className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.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]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),zIndex:pt.oneOfType([pt.string,pt.number]),unstyled:pt.bool,center:pt.bool,fixed:pt.bool,backgroundOpacity:pt.number,color:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["aliceblue"]),pt.oneOf(["antiquewhite"]),pt.oneOf(["aqua"]),pt.oneOf(["aquamarine"]),pt.oneOf(["azure"]),pt.oneOf(["beige"]),pt.oneOf(["bisque"]),pt.oneOf(["black"]),pt.oneOf(["blanchedalmond"]),pt.oneOf(["blue"]),pt.oneOf(["blueviolet"]),pt.oneOf(["brown"]),pt.oneOf(["burlywood"]),pt.oneOf(["cadetblue"]),pt.oneOf(["chartreuse"]),pt.oneOf(["chocolate"]),pt.oneOf(["coral"]),pt.oneOf(["cornflowerblue"]),pt.oneOf(["cornsilk"]),pt.oneOf(["crimson"]),pt.oneOf(["cyan"]),pt.oneOf(["darkblue"]),pt.oneOf(["darkcyan"]),pt.oneOf(["darkgoldenrod"]),pt.oneOf(["darkgray"]),pt.oneOf(["darkgreen"]),pt.oneOf(["darkgrey"]),pt.oneOf(["darkkhaki"]),pt.oneOf(["darkmagenta"]),pt.oneOf(["darkolivegreen"]),pt.oneOf(["darkorange"]),pt.oneOf(["darkorchid"]),pt.oneOf(["darkred"]),pt.oneOf(["darksalmon"]),pt.oneOf(["darkseagreen"]),pt.oneOf(["darkslateblue"]),pt.oneOf(["darkslategray"]),pt.oneOf(["darkslategrey"]),pt.oneOf(["darkturquoise"]),pt.oneOf(["darkviolet"]),pt.oneOf(["deeppink"]),pt.oneOf(["deepskyblue"]),pt.oneOf(["dimgray"]),pt.oneOf(["dimgrey"]),pt.oneOf(["dodgerblue"]),pt.oneOf(["firebrick"]),pt.oneOf(["floralwhite"]),pt.oneOf(["forestgreen"]),pt.oneOf(["fuchsia"]),pt.oneOf(["gainsboro"]),pt.oneOf(["ghostwhite"]),pt.oneOf(["gold"]),pt.oneOf(["goldenrod"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["greenyellow"]),pt.oneOf(["grey"]),pt.oneOf(["honeydew"]),pt.oneOf(["hotpink"]),pt.oneOf(["indianred"]),pt.oneOf(["indigo"]),pt.oneOf(["ivory"]),pt.oneOf(["khaki"]),pt.oneOf(["lavender"]),pt.oneOf(["lavenderblush"]),pt.oneOf(["lawngreen"]),pt.oneOf(["lemonchiffon"]),pt.oneOf(["lightblue"]),pt.oneOf(["lightcoral"]),pt.oneOf(["lightcyan"]),pt.oneOf(["lightgoldenrodyellow"]),pt.oneOf(["lightgray"]),pt.oneOf(["lightgreen"]),pt.oneOf(["lightgrey"]),pt.oneOf(["lightpink"]),pt.oneOf(["lightsalmon"]),pt.oneOf(["lightseagreen"]),pt.oneOf(["lightskyblue"]),pt.oneOf(["lightslategray"]),pt.oneOf(["lightslategrey"]),pt.oneOf(["lightsteelblue"]),pt.oneOf(["lightyellow"]),pt.oneOf(["lime"]),pt.oneOf(["limegreen"]),pt.oneOf(["linen"]),pt.oneOf(["magenta"]),pt.oneOf(["maroon"]),pt.oneOf(["mediumaquamarine"]),pt.oneOf(["mediumblue"]),pt.oneOf(["mediumorchid"]),pt.oneOf(["mediumpurple"]),pt.oneOf(["mediumseagreen"]),pt.oneOf(["mediumslateblue"]),pt.oneOf(["mediumspringgreen"]),pt.oneOf(["mediumturquoise"]),pt.oneOf(["mediumvioletred"]),pt.oneOf(["midnightblue"]),pt.oneOf(["mintcream"]),pt.oneOf(["mistyrose"]),pt.oneOf(["moccasin"]),pt.oneOf(["navajowhite"]),pt.oneOf(["navy"]),pt.oneOf(["oldlace"]),pt.oneOf(["olive"]),pt.oneOf(["olivedrab"]),pt.oneOf(["orange"]),pt.oneOf(["orangered"]),pt.oneOf(["orchid"]),pt.oneOf(["palegoldenrod"]),pt.oneOf(["palegreen"]),pt.oneOf(["paleturquoise"]),pt.oneOf(["palevioletred"]),pt.oneOf(["papayawhip"]),pt.oneOf(["peachpuff"]),pt.oneOf(["peru"]),pt.oneOf(["pink"]),pt.oneOf(["plum"]),pt.oneOf(["powderblue"]),pt.oneOf(["purple"]),pt.oneOf(["rebeccapurple"]),pt.oneOf(["red"]),pt.oneOf(["rosybrown"]),pt.oneOf(["royalblue"]),pt.oneOf(["saddlebrown"]),pt.oneOf(["salmon"]),pt.oneOf(["sandybrown"]),pt.oneOf(["seagreen"]),pt.oneOf(["seashell"]),pt.oneOf(["sienna"]),pt.oneOf(["silver"]),pt.oneOf(["skyblue"]),pt.oneOf(["slateblue"]),pt.oneOf(["slategray"]),pt.oneOf(["slategrey"]),pt.oneOf(["snow"]),pt.oneOf(["springgreen"]),pt.oneOf(["steelblue"]),pt.oneOf(["tan"]),pt.oneOf(["teal"]),pt.oneOf(["thistle"]),pt.oneOf(["tomato"]),pt.oneOf(["transparent"]),pt.oneOf(["turquoise"]),pt.oneOf(["violet"]),pt.oneOf(["wheat"]),pt.oneOf(["white"]),pt.oneOf(["whitesmoke"]),pt.oneOf(["yellow"]),pt.oneOf(["yellowgreen"]),pt.oneOf(["ActiveBorder"]),pt.oneOf(["ActiveCaption"]),pt.oneOf(["AppWorkspace"]),pt.oneOf(["Background"]),pt.oneOf(["ButtonFace"]),pt.oneOf(["ButtonHighlight"]),pt.oneOf(["ButtonShadow"]),pt.oneOf(["ButtonText"]),pt.oneOf(["CaptionText"]),pt.oneOf(["GrayText"]),pt.oneOf(["Highlight"]),pt.oneOf(["HighlightText"]),pt.oneOf(["InactiveBorder"]),pt.oneOf(["InactiveCaption"]),pt.oneOf(["InactiveCaptionText"]),pt.oneOf(["InfoBackground"]),pt.oneOf(["InfoText"]),pt.oneOf(["Menu"]),pt.oneOf(["MenuText"]),pt.oneOf(["Scrollbar"]),pt.oneOf(["ThreeDDarkShadow"]),pt.oneOf(["ThreeDFace"]),pt.oneOf(["ThreeDHighlight"]),pt.oneOf(["ThreeDLightShadow"]),pt.oneOf(["ThreeDShadow"]),pt.oneOf(["Window"]),pt.oneOf(["WindowFrame"]),pt.oneOf(["WindowText"]),pt.oneOf(["currentcolor"])]),blur:pt.oneOfType([pt.string,pt.number]),gradient:pt.string}),
|
|
6589
|
+
overlayProps:pt.shape({transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),children:pt.node,className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.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]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),zIndex:pt.oneOfType([pt.string,pt.number]),attributes:pt.any,unstyled:pt.bool,center:pt.bool,fixed:pt.bool,backgroundOpacity:pt.number,color:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["aliceblue"]),pt.oneOf(["antiquewhite"]),pt.oneOf(["aqua"]),pt.oneOf(["aquamarine"]),pt.oneOf(["azure"]),pt.oneOf(["beige"]),pt.oneOf(["bisque"]),pt.oneOf(["black"]),pt.oneOf(["blanchedalmond"]),pt.oneOf(["blue"]),pt.oneOf(["blueviolet"]),pt.oneOf(["brown"]),pt.oneOf(["burlywood"]),pt.oneOf(["cadetblue"]),pt.oneOf(["chartreuse"]),pt.oneOf(["chocolate"]),pt.oneOf(["coral"]),pt.oneOf(["cornflowerblue"]),pt.oneOf(["cornsilk"]),pt.oneOf(["crimson"]),pt.oneOf(["cyan"]),pt.oneOf(["darkblue"]),pt.oneOf(["darkcyan"]),pt.oneOf(["darkgoldenrod"]),pt.oneOf(["darkgray"]),pt.oneOf(["darkgreen"]),pt.oneOf(["darkgrey"]),pt.oneOf(["darkkhaki"]),pt.oneOf(["darkmagenta"]),pt.oneOf(["darkolivegreen"]),pt.oneOf(["darkorange"]),pt.oneOf(["darkorchid"]),pt.oneOf(["darkred"]),pt.oneOf(["darksalmon"]),pt.oneOf(["darkseagreen"]),pt.oneOf(["darkslateblue"]),pt.oneOf(["darkslategray"]),pt.oneOf(["darkslategrey"]),pt.oneOf(["darkturquoise"]),pt.oneOf(["darkviolet"]),pt.oneOf(["deeppink"]),pt.oneOf(["deepskyblue"]),pt.oneOf(["dimgray"]),pt.oneOf(["dimgrey"]),pt.oneOf(["dodgerblue"]),pt.oneOf(["firebrick"]),pt.oneOf(["floralwhite"]),pt.oneOf(["forestgreen"]),pt.oneOf(["fuchsia"]),pt.oneOf(["gainsboro"]),pt.oneOf(["ghostwhite"]),pt.oneOf(["gold"]),pt.oneOf(["goldenrod"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["greenyellow"]),pt.oneOf(["grey"]),pt.oneOf(["honeydew"]),pt.oneOf(["hotpink"]),pt.oneOf(["indianred"]),pt.oneOf(["indigo"]),pt.oneOf(["ivory"]),pt.oneOf(["khaki"]),pt.oneOf(["lavender"]),pt.oneOf(["lavenderblush"]),pt.oneOf(["lawngreen"]),pt.oneOf(["lemonchiffon"]),pt.oneOf(["lightblue"]),pt.oneOf(["lightcoral"]),pt.oneOf(["lightcyan"]),pt.oneOf(["lightgoldenrodyellow"]),pt.oneOf(["lightgray"]),pt.oneOf(["lightgreen"]),pt.oneOf(["lightgrey"]),pt.oneOf(["lightpink"]),pt.oneOf(["lightsalmon"]),pt.oneOf(["lightseagreen"]),pt.oneOf(["lightskyblue"]),pt.oneOf(["lightslategray"]),pt.oneOf(["lightslategrey"]),pt.oneOf(["lightsteelblue"]),pt.oneOf(["lightyellow"]),pt.oneOf(["lime"]),pt.oneOf(["limegreen"]),pt.oneOf(["linen"]),pt.oneOf(["magenta"]),pt.oneOf(["maroon"]),pt.oneOf(["mediumaquamarine"]),pt.oneOf(["mediumblue"]),pt.oneOf(["mediumorchid"]),pt.oneOf(["mediumpurple"]),pt.oneOf(["mediumseagreen"]),pt.oneOf(["mediumslateblue"]),pt.oneOf(["mediumspringgreen"]),pt.oneOf(["mediumturquoise"]),pt.oneOf(["mediumvioletred"]),pt.oneOf(["midnightblue"]),pt.oneOf(["mintcream"]),pt.oneOf(["mistyrose"]),pt.oneOf(["moccasin"]),pt.oneOf(["navajowhite"]),pt.oneOf(["navy"]),pt.oneOf(["oldlace"]),pt.oneOf(["olive"]),pt.oneOf(["olivedrab"]),pt.oneOf(["orange"]),pt.oneOf(["orangered"]),pt.oneOf(["orchid"]),pt.oneOf(["palegoldenrod"]),pt.oneOf(["palegreen"]),pt.oneOf(["paleturquoise"]),pt.oneOf(["palevioletred"]),pt.oneOf(["papayawhip"]),pt.oneOf(["peachpuff"]),pt.oneOf(["peru"]),pt.oneOf(["pink"]),pt.oneOf(["plum"]),pt.oneOf(["powderblue"]),pt.oneOf(["purple"]),pt.oneOf(["rebeccapurple"]),pt.oneOf(["red"]),pt.oneOf(["rosybrown"]),pt.oneOf(["royalblue"]),pt.oneOf(["saddlebrown"]),pt.oneOf(["salmon"]),pt.oneOf(["sandybrown"]),pt.oneOf(["seagreen"]),pt.oneOf(["seashell"]),pt.oneOf(["sienna"]),pt.oneOf(["silver"]),pt.oneOf(["skyblue"]),pt.oneOf(["slateblue"]),pt.oneOf(["slategray"]),pt.oneOf(["slategrey"]),pt.oneOf(["snow"]),pt.oneOf(["springgreen"]),pt.oneOf(["steelblue"]),pt.oneOf(["tan"]),pt.oneOf(["teal"]),pt.oneOf(["thistle"]),pt.oneOf(["tomato"]),pt.oneOf(["transparent"]),pt.oneOf(["turquoise"]),pt.oneOf(["violet"]),pt.oneOf(["wheat"]),pt.oneOf(["white"]),pt.oneOf(["whitesmoke"]),pt.oneOf(["yellow"]),pt.oneOf(["yellowgreen"]),pt.oneOf(["ActiveBorder"]),pt.oneOf(["ActiveCaption"]),pt.oneOf(["AppWorkspace"]),pt.oneOf(["Background"]),pt.oneOf(["ButtonFace"]),pt.oneOf(["ButtonHighlight"]),pt.oneOf(["ButtonShadow"]),pt.oneOf(["ButtonText"]),pt.oneOf(["CaptionText"]),pt.oneOf(["GrayText"]),pt.oneOf(["Highlight"]),pt.oneOf(["HighlightText"]),pt.oneOf(["InactiveBorder"]),pt.oneOf(["InactiveCaption"]),pt.oneOf(["InactiveCaptionText"]),pt.oneOf(["InfoBackground"]),pt.oneOf(["InfoText"]),pt.oneOf(["Menu"]),pt.oneOf(["MenuText"]),pt.oneOf(["Scrollbar"]),pt.oneOf(["ThreeDDarkShadow"]),pt.oneOf(["ThreeDFace"]),pt.oneOf(["ThreeDHighlight"]),pt.oneOf(["ThreeDLightShadow"]),pt.oneOf(["ThreeDShadow"]),pt.oneOf(["Window"]),pt.oneOf(["WindowFrame"]),pt.oneOf(["WindowText"]),pt.oneOf(["currentcolor"])]),blur:pt.oneOfType([pt.string,pt.number]),gradient:pt.string}),
|
|
6512
6590
|
withCloseButton:pt.bool,
|
|
6513
6591
|
closeButtonProps:pt.shape({size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string]),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])}),
|
|
6514
6592
|
yOffset:pt.oneOfType([pt.string,pt.number]),
|
|
@@ -6536,7 +6614,7 @@ pk.ManagedModal.propTypes = {id:pt.string,
|
|
|
6536
6614
|
variant:pt.string};
|
|
6537
6615
|
pk.Modal.propTypes = {title:pt.node,
|
|
6538
6616
|
withOverlay:pt.bool,
|
|
6539
|
-
overlayProps:pt.shape({transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),children:pt.node,className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.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]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),zIndex:pt.oneOfType([pt.string,pt.number]),unstyled:pt.bool,center:pt.bool,fixed:pt.bool,backgroundOpacity:pt.number,color:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["aliceblue"]),pt.oneOf(["antiquewhite"]),pt.oneOf(["aqua"]),pt.oneOf(["aquamarine"]),pt.oneOf(["azure"]),pt.oneOf(["beige"]),pt.oneOf(["bisque"]),pt.oneOf(["black"]),pt.oneOf(["blanchedalmond"]),pt.oneOf(["blue"]),pt.oneOf(["blueviolet"]),pt.oneOf(["brown"]),pt.oneOf(["burlywood"]),pt.oneOf(["cadetblue"]),pt.oneOf(["chartreuse"]),pt.oneOf(["chocolate"]),pt.oneOf(["coral"]),pt.oneOf(["cornflowerblue"]),pt.oneOf(["cornsilk"]),pt.oneOf(["crimson"]),pt.oneOf(["cyan"]),pt.oneOf(["darkblue"]),pt.oneOf(["darkcyan"]),pt.oneOf(["darkgoldenrod"]),pt.oneOf(["darkgray"]),pt.oneOf(["darkgreen"]),pt.oneOf(["darkgrey"]),pt.oneOf(["darkkhaki"]),pt.oneOf(["darkmagenta"]),pt.oneOf(["darkolivegreen"]),pt.oneOf(["darkorange"]),pt.oneOf(["darkorchid"]),pt.oneOf(["darkred"]),pt.oneOf(["darksalmon"]),pt.oneOf(["darkseagreen"]),pt.oneOf(["darkslateblue"]),pt.oneOf(["darkslategray"]),pt.oneOf(["darkslategrey"]),pt.oneOf(["darkturquoise"]),pt.oneOf(["darkviolet"]),pt.oneOf(["deeppink"]),pt.oneOf(["deepskyblue"]),pt.oneOf(["dimgray"]),pt.oneOf(["dimgrey"]),pt.oneOf(["dodgerblue"]),pt.oneOf(["firebrick"]),pt.oneOf(["floralwhite"]),pt.oneOf(["forestgreen"]),pt.oneOf(["fuchsia"]),pt.oneOf(["gainsboro"]),pt.oneOf(["ghostwhite"]),pt.oneOf(["gold"]),pt.oneOf(["goldenrod"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["greenyellow"]),pt.oneOf(["grey"]),pt.oneOf(["honeydew"]),pt.oneOf(["hotpink"]),pt.oneOf(["indianred"]),pt.oneOf(["indigo"]),pt.oneOf(["ivory"]),pt.oneOf(["khaki"]),pt.oneOf(["lavender"]),pt.oneOf(["lavenderblush"]),pt.oneOf(["lawngreen"]),pt.oneOf(["lemonchiffon"]),pt.oneOf(["lightblue"]),pt.oneOf(["lightcoral"]),pt.oneOf(["lightcyan"]),pt.oneOf(["lightgoldenrodyellow"]),pt.oneOf(["lightgray"]),pt.oneOf(["lightgreen"]),pt.oneOf(["lightgrey"]),pt.oneOf(["lightpink"]),pt.oneOf(["lightsalmon"]),pt.oneOf(["lightseagreen"]),pt.oneOf(["lightskyblue"]),pt.oneOf(["lightslategray"]),pt.oneOf(["lightslategrey"]),pt.oneOf(["lightsteelblue"]),pt.oneOf(["lightyellow"]),pt.oneOf(["lime"]),pt.oneOf(["limegreen"]),pt.oneOf(["linen"]),pt.oneOf(["magenta"]),pt.oneOf(["maroon"]),pt.oneOf(["mediumaquamarine"]),pt.oneOf(["mediumblue"]),pt.oneOf(["mediumorchid"]),pt.oneOf(["mediumpurple"]),pt.oneOf(["mediumseagreen"]),pt.oneOf(["mediumslateblue"]),pt.oneOf(["mediumspringgreen"]),pt.oneOf(["mediumturquoise"]),pt.oneOf(["mediumvioletred"]),pt.oneOf(["midnightblue"]),pt.oneOf(["mintcream"]),pt.oneOf(["mistyrose"]),pt.oneOf(["moccasin"]),pt.oneOf(["navajowhite"]),pt.oneOf(["navy"]),pt.oneOf(["oldlace"]),pt.oneOf(["olive"]),pt.oneOf(["olivedrab"]),pt.oneOf(["orange"]),pt.oneOf(["orangered"]),pt.oneOf(["orchid"]),pt.oneOf(["palegoldenrod"]),pt.oneOf(["palegreen"]),pt.oneOf(["paleturquoise"]),pt.oneOf(["palevioletred"]),pt.oneOf(["papayawhip"]),pt.oneOf(["peachpuff"]),pt.oneOf(["peru"]),pt.oneOf(["pink"]),pt.oneOf(["plum"]),pt.oneOf(["powderblue"]),pt.oneOf(["purple"]),pt.oneOf(["rebeccapurple"]),pt.oneOf(["red"]),pt.oneOf(["rosybrown"]),pt.oneOf(["royalblue"]),pt.oneOf(["saddlebrown"]),pt.oneOf(["salmon"]),pt.oneOf(["sandybrown"]),pt.oneOf(["seagreen"]),pt.oneOf(["seashell"]),pt.oneOf(["sienna"]),pt.oneOf(["silver"]),pt.oneOf(["skyblue"]),pt.oneOf(["slateblue"]),pt.oneOf(["slategray"]),pt.oneOf(["slategrey"]),pt.oneOf(["snow"]),pt.oneOf(["springgreen"]),pt.oneOf(["steelblue"]),pt.oneOf(["tan"]),pt.oneOf(["teal"]),pt.oneOf(["thistle"]),pt.oneOf(["tomato"]),pt.oneOf(["transparent"]),pt.oneOf(["turquoise"]),pt.oneOf(["violet"]),pt.oneOf(["wheat"]),pt.oneOf(["white"]),pt.oneOf(["whitesmoke"]),pt.oneOf(["yellow"]),pt.oneOf(["yellowgreen"]),pt.oneOf(["ActiveBorder"]),pt.oneOf(["ActiveCaption"]),pt.oneOf(["AppWorkspace"]),pt.oneOf(["Background"]),pt.oneOf(["ButtonFace"]),pt.oneOf(["ButtonHighlight"]),pt.oneOf(["ButtonShadow"]),pt.oneOf(["ButtonText"]),pt.oneOf(["CaptionText"]),pt.oneOf(["GrayText"]),pt.oneOf(["Highlight"]),pt.oneOf(["HighlightText"]),pt.oneOf(["InactiveBorder"]),pt.oneOf(["InactiveCaption"]),pt.oneOf(["InactiveCaptionText"]),pt.oneOf(["InfoBackground"]),pt.oneOf(["InfoText"]),pt.oneOf(["Menu"]),pt.oneOf(["MenuText"]),pt.oneOf(["Scrollbar"]),pt.oneOf(["ThreeDDarkShadow"]),pt.oneOf(["ThreeDFace"]),pt.oneOf(["ThreeDHighlight"]),pt.oneOf(["ThreeDLightShadow"]),pt.oneOf(["ThreeDShadow"]),pt.oneOf(["Window"]),pt.oneOf(["WindowFrame"]),pt.oneOf(["WindowText"]),pt.oneOf(["currentcolor"])]),blur:pt.oneOfType([pt.string,pt.number]),gradient:pt.string}),
|
|
6617
|
+
overlayProps:pt.shape({transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),children:pt.node,className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.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]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),zIndex:pt.oneOfType([pt.string,pt.number]),attributes:pt.any,unstyled:pt.bool,center:pt.bool,fixed:pt.bool,backgroundOpacity:pt.number,color:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["aliceblue"]),pt.oneOf(["antiquewhite"]),pt.oneOf(["aqua"]),pt.oneOf(["aquamarine"]),pt.oneOf(["azure"]),pt.oneOf(["beige"]),pt.oneOf(["bisque"]),pt.oneOf(["black"]),pt.oneOf(["blanchedalmond"]),pt.oneOf(["blue"]),pt.oneOf(["blueviolet"]),pt.oneOf(["brown"]),pt.oneOf(["burlywood"]),pt.oneOf(["cadetblue"]),pt.oneOf(["chartreuse"]),pt.oneOf(["chocolate"]),pt.oneOf(["coral"]),pt.oneOf(["cornflowerblue"]),pt.oneOf(["cornsilk"]),pt.oneOf(["crimson"]),pt.oneOf(["cyan"]),pt.oneOf(["darkblue"]),pt.oneOf(["darkcyan"]),pt.oneOf(["darkgoldenrod"]),pt.oneOf(["darkgray"]),pt.oneOf(["darkgreen"]),pt.oneOf(["darkgrey"]),pt.oneOf(["darkkhaki"]),pt.oneOf(["darkmagenta"]),pt.oneOf(["darkolivegreen"]),pt.oneOf(["darkorange"]),pt.oneOf(["darkorchid"]),pt.oneOf(["darkred"]),pt.oneOf(["darksalmon"]),pt.oneOf(["darkseagreen"]),pt.oneOf(["darkslateblue"]),pt.oneOf(["darkslategray"]),pt.oneOf(["darkslategrey"]),pt.oneOf(["darkturquoise"]),pt.oneOf(["darkviolet"]),pt.oneOf(["deeppink"]),pt.oneOf(["deepskyblue"]),pt.oneOf(["dimgray"]),pt.oneOf(["dimgrey"]),pt.oneOf(["dodgerblue"]),pt.oneOf(["firebrick"]),pt.oneOf(["floralwhite"]),pt.oneOf(["forestgreen"]),pt.oneOf(["fuchsia"]),pt.oneOf(["gainsboro"]),pt.oneOf(["ghostwhite"]),pt.oneOf(["gold"]),pt.oneOf(["goldenrod"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["greenyellow"]),pt.oneOf(["grey"]),pt.oneOf(["honeydew"]),pt.oneOf(["hotpink"]),pt.oneOf(["indianred"]),pt.oneOf(["indigo"]),pt.oneOf(["ivory"]),pt.oneOf(["khaki"]),pt.oneOf(["lavender"]),pt.oneOf(["lavenderblush"]),pt.oneOf(["lawngreen"]),pt.oneOf(["lemonchiffon"]),pt.oneOf(["lightblue"]),pt.oneOf(["lightcoral"]),pt.oneOf(["lightcyan"]),pt.oneOf(["lightgoldenrodyellow"]),pt.oneOf(["lightgray"]),pt.oneOf(["lightgreen"]),pt.oneOf(["lightgrey"]),pt.oneOf(["lightpink"]),pt.oneOf(["lightsalmon"]),pt.oneOf(["lightseagreen"]),pt.oneOf(["lightskyblue"]),pt.oneOf(["lightslategray"]),pt.oneOf(["lightslategrey"]),pt.oneOf(["lightsteelblue"]),pt.oneOf(["lightyellow"]),pt.oneOf(["lime"]),pt.oneOf(["limegreen"]),pt.oneOf(["linen"]),pt.oneOf(["magenta"]),pt.oneOf(["maroon"]),pt.oneOf(["mediumaquamarine"]),pt.oneOf(["mediumblue"]),pt.oneOf(["mediumorchid"]),pt.oneOf(["mediumpurple"]),pt.oneOf(["mediumseagreen"]),pt.oneOf(["mediumslateblue"]),pt.oneOf(["mediumspringgreen"]),pt.oneOf(["mediumturquoise"]),pt.oneOf(["mediumvioletred"]),pt.oneOf(["midnightblue"]),pt.oneOf(["mintcream"]),pt.oneOf(["mistyrose"]),pt.oneOf(["moccasin"]),pt.oneOf(["navajowhite"]),pt.oneOf(["navy"]),pt.oneOf(["oldlace"]),pt.oneOf(["olive"]),pt.oneOf(["olivedrab"]),pt.oneOf(["orange"]),pt.oneOf(["orangered"]),pt.oneOf(["orchid"]),pt.oneOf(["palegoldenrod"]),pt.oneOf(["palegreen"]),pt.oneOf(["paleturquoise"]),pt.oneOf(["palevioletred"]),pt.oneOf(["papayawhip"]),pt.oneOf(["peachpuff"]),pt.oneOf(["peru"]),pt.oneOf(["pink"]),pt.oneOf(["plum"]),pt.oneOf(["powderblue"]),pt.oneOf(["purple"]),pt.oneOf(["rebeccapurple"]),pt.oneOf(["red"]),pt.oneOf(["rosybrown"]),pt.oneOf(["royalblue"]),pt.oneOf(["saddlebrown"]),pt.oneOf(["salmon"]),pt.oneOf(["sandybrown"]),pt.oneOf(["seagreen"]),pt.oneOf(["seashell"]),pt.oneOf(["sienna"]),pt.oneOf(["silver"]),pt.oneOf(["skyblue"]),pt.oneOf(["slateblue"]),pt.oneOf(["slategray"]),pt.oneOf(["slategrey"]),pt.oneOf(["snow"]),pt.oneOf(["springgreen"]),pt.oneOf(["steelblue"]),pt.oneOf(["tan"]),pt.oneOf(["teal"]),pt.oneOf(["thistle"]),pt.oneOf(["tomato"]),pt.oneOf(["transparent"]),pt.oneOf(["turquoise"]),pt.oneOf(["violet"]),pt.oneOf(["wheat"]),pt.oneOf(["white"]),pt.oneOf(["whitesmoke"]),pt.oneOf(["yellow"]),pt.oneOf(["yellowgreen"]),pt.oneOf(["ActiveBorder"]),pt.oneOf(["ActiveCaption"]),pt.oneOf(["AppWorkspace"]),pt.oneOf(["Background"]),pt.oneOf(["ButtonFace"]),pt.oneOf(["ButtonHighlight"]),pt.oneOf(["ButtonShadow"]),pt.oneOf(["ButtonText"]),pt.oneOf(["CaptionText"]),pt.oneOf(["GrayText"]),pt.oneOf(["Highlight"]),pt.oneOf(["HighlightText"]),pt.oneOf(["InactiveBorder"]),pt.oneOf(["InactiveCaption"]),pt.oneOf(["InactiveCaptionText"]),pt.oneOf(["InfoBackground"]),pt.oneOf(["InfoText"]),pt.oneOf(["Menu"]),pt.oneOf(["MenuText"]),pt.oneOf(["Scrollbar"]),pt.oneOf(["ThreeDDarkShadow"]),pt.oneOf(["ThreeDFace"]),pt.oneOf(["ThreeDHighlight"]),pt.oneOf(["ThreeDLightShadow"]),pt.oneOf(["ThreeDShadow"]),pt.oneOf(["Window"]),pt.oneOf(["WindowFrame"]),pt.oneOf(["WindowText"]),pt.oneOf(["currentcolor"])]),blur:pt.oneOfType([pt.string,pt.number]),gradient:pt.string}),
|
|
6540
6618
|
children:pt.node,
|
|
6541
6619
|
withCloseButton:pt.bool,
|
|
6542
6620
|
closeButtonProps:pt.shape({size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string]),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])}),
|
|
@@ -6673,6 +6751,7 @@ pk.Popover.propTypes = {children:pt.node,
|
|
|
6673
6751
|
styles:pt.any,
|
|
6674
6752
|
unstyled:pt.bool,
|
|
6675
6753
|
variant:pt.string,
|
|
6754
|
+
attributes:pt.any,
|
|
6676
6755
|
id:pt.string,
|
|
6677
6756
|
setProps:pt.any,
|
|
6678
6757
|
data-*:pt.string,
|
|
@@ -6746,7 +6825,8 @@ pk.PopoverDropdown.propTypes = {children:pt.node,
|
|
|
6746
6825
|
classNames:pt.object,
|
|
6747
6826
|
styles:pt.any,
|
|
6748
6827
|
unstyled:pt.bool,
|
|
6749
|
-
variant:pt.string
|
|
6828
|
+
variant:pt.string,
|
|
6829
|
+
attributes:pt.any};
|
|
6750
6830
|
pk.PopoverTarget.propTypes = {children:pt.node,
|
|
6751
6831
|
boxWrapperProps:pt.shape({top:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),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(["right"]),pt.oneOf(["left"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["flex"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number])})};
|
|
6752
6832
|
pk.Progress.propTypes = {value:pt.number,
|
|
@@ -6823,7 +6903,8 @@ pk.Progress.propTypes = {value:pt.number,
|
|
|
6823
6903
|
classNames:pt.object,
|
|
6824
6904
|
styles:pt.any,
|
|
6825
6905
|
unstyled:pt.bool,
|
|
6826
|
-
variant:pt.string
|
|
6906
|
+
variant:pt.string,
|
|
6907
|
+
attributes:pt.any};
|
|
6827
6908
|
pk.ProgressLabel.propTypes = {children:pt.node,
|
|
6828
6909
|
className:pt.string,
|
|
6829
6910
|
style:pt.any,
|
|
@@ -6886,6 +6967,7 @@ pk.ProgressLabel.propTypes = {children:pt.node,
|
|
|
6886
6967
|
styles:pt.any,
|
|
6887
6968
|
unstyled:pt.bool,
|
|
6888
6969
|
variant:pt.string,
|
|
6970
|
+
attributes:pt.any,
|
|
6889
6971
|
id:pt.string,
|
|
6890
6972
|
setProps:pt.any,
|
|
6891
6973
|
data-*:pt.string,
|
|
@@ -6958,6 +7040,7 @@ pk.ProgressRoot.propTypes = {children:pt.node,
|
|
|
6958
7040
|
styles:pt.any,
|
|
6959
7041
|
unstyled:pt.bool,
|
|
6960
7042
|
variant:pt.string,
|
|
7043
|
+
attributes:pt.any,
|
|
6961
7044
|
id:pt.string,
|
|
6962
7045
|
setProps:pt.any,
|
|
6963
7046
|
data-*:pt.string,
|
|
@@ -7031,6 +7114,7 @@ pk.ProgressSection.propTypes = {value:pt.number,
|
|
|
7031
7114
|
styles:pt.any,
|
|
7032
7115
|
unstyled:pt.bool,
|
|
7033
7116
|
variant:pt.string,
|
|
7117
|
+
attributes:pt.any,
|
|
7034
7118
|
id:pt.string,
|
|
7035
7119
|
setProps:pt.any,
|
|
7036
7120
|
data-*:pt.string,
|
|
@@ -7110,6 +7194,7 @@ pk.Radio.propTypes = {label:pt.node,
|
|
|
7110
7194
|
styles:pt.any,
|
|
7111
7195
|
unstyled:pt.bool,
|
|
7112
7196
|
variant:pt.string,
|
|
7197
|
+
attributes:pt.any,
|
|
7113
7198
|
id:pt.string,
|
|
7114
7199
|
setProps:pt.any,
|
|
7115
7200
|
data-*:pt.string,
|
|
@@ -7188,6 +7273,7 @@ pk.RadioCard.propTypes = {checked:pt.bool,
|
|
|
7188
7273
|
styles:pt.any,
|
|
7189
7274
|
unstyled:pt.bool,
|
|
7190
7275
|
variant:pt.string,
|
|
7276
|
+
attributes:pt.any,
|
|
7191
7277
|
id:pt.string,
|
|
7192
7278
|
setProps:pt.any,
|
|
7193
7279
|
data-*:pt.string,
|
|
@@ -7275,6 +7361,7 @@ pk.RadioGroup.propTypes = {children:pt.node,
|
|
|
7275
7361
|
styles:pt.any,
|
|
7276
7362
|
unstyled:pt.bool,
|
|
7277
7363
|
variant:pt.string,
|
|
7364
|
+
attributes:pt.any,
|
|
7278
7365
|
id:pt.string,
|
|
7279
7366
|
setProps:pt.any,
|
|
7280
7367
|
data-*:pt.string,
|
|
@@ -7354,6 +7441,7 @@ pk.RadioIndicator.propTypes = {color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf([
|
|
|
7354
7441
|
styles:pt.any,
|
|
7355
7442
|
unstyled:pt.bool,
|
|
7356
7443
|
variant:pt.string,
|
|
7444
|
+
attributes:pt.any,
|
|
7357
7445
|
id:pt.string,
|
|
7358
7446
|
setProps:pt.any,
|
|
7359
7447
|
data-*:pt.string,
|
|
@@ -7451,6 +7539,7 @@ pk.RangeSlider.propTypes = {color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gr
|
|
|
7451
7539
|
styles:pt.any,
|
|
7452
7540
|
unstyled:pt.bool,
|
|
7453
7541
|
variant:pt.string,
|
|
7542
|
+
attributes:pt.any,
|
|
7454
7543
|
id:pt.string,
|
|
7455
7544
|
setProps:pt.any,
|
|
7456
7545
|
data-*:pt.string,
|
|
@@ -7544,6 +7633,7 @@ pk.Slider.propTypes = {color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"])
|
|
|
7544
7633
|
styles:pt.any,
|
|
7545
7634
|
unstyled:pt.bool,
|
|
7546
7635
|
variant:pt.string,
|
|
7636
|
+
attributes:pt.any,
|
|
7547
7637
|
id:pt.string,
|
|
7548
7638
|
setProps:pt.any,
|
|
7549
7639
|
data-*:pt.string,
|
|
@@ -7634,7 +7724,8 @@ pk.Stepper.propTypes = {active:pt.number,
|
|
|
7634
7724
|
classNames:pt.object,
|
|
7635
7725
|
styles:pt.any,
|
|
7636
7726
|
unstyled:pt.bool,
|
|
7637
|
-
variant:pt.string
|
|
7727
|
+
variant:pt.string,
|
|
7728
|
+
attributes:pt.any};
|
|
7638
7729
|
pk.StepperCompleted.propTypes = {children:pt.node};
|
|
7639
7730
|
pk.StepperStep.propTypes = {step:pt.number,
|
|
7640
7731
|
state:pt.oneOf(["'stepInactive'", "'stepProgress'", "'stepCompleted'"]),
|
|
@@ -7718,7 +7809,8 @@ pk.StepperStep.propTypes = {step:pt.number,
|
|
|
7718
7809
|
classNames:pt.object,
|
|
7719
7810
|
styles:pt.any,
|
|
7720
7811
|
unstyled:pt.bool,
|
|
7721
|
-
variant:pt.string
|
|
7812
|
+
variant:pt.string,
|
|
7813
|
+
attributes:pt.any};
|
|
7722
7814
|
pk.Table.propTypes = {layout:pt.oneOf(["'-moz-initial'", "'inherit'", "'initial'", "'revert'", "'revert-layer'", "'unset'", "'auto'", "'fixed'"]),
|
|
7723
7815
|
captionSide:pt.oneOf(["'top'", "'bottom'"]),
|
|
7724
7816
|
borderColor: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"])]),
|
|
@@ -7797,6 +7889,7 @@ pk.Table.propTypes = {layout:pt.oneOf(["'-moz-initial'", "'inherit'", "'initial'
|
|
|
7797
7889
|
classNames:pt.object,
|
|
7798
7890
|
styles:pt.any,
|
|
7799
7891
|
unstyled:pt.bool,
|
|
7892
|
+
attributes:pt.any,
|
|
7800
7893
|
id:pt.string,
|
|
7801
7894
|
setProps:pt.any,
|
|
7802
7895
|
data-*:pt.string,
|
|
@@ -7866,6 +7959,7 @@ pk.TableCaption.propTypes = {children:pt.node,
|
|
|
7866
7959
|
styles:pt.any,
|
|
7867
7960
|
unstyled:pt.bool,
|
|
7868
7961
|
variant:pt.string,
|
|
7962
|
+
attributes:pt.any,
|
|
7869
7963
|
id:pt.string,
|
|
7870
7964
|
setProps:pt.any,
|
|
7871
7965
|
data-*:pt.string,
|
|
@@ -7875,7 +7969,7 @@ pk.TableCaption.propTypes = {children:pt.node,
|
|
|
7875
7969
|
pk.TableScrollContainer.propTypes = {minWidth:pt.oneOfType([pt.string,pt.number]),
|
|
7876
7970
|
maxHeight:pt.oneOfType([pt.string,pt.number]),
|
|
7877
7971
|
type:pt.oneOf(["'native'", "'scrollarea'"]),
|
|
7878
|
-
scrollAreaProps:pt.shape({scrollbarSize:pt.oneOfType([pt.string,pt.number]),type:pt.oneOf(["'auto'", "'scroll'", "'always'", "'hover'", "'never'"]),scrollHideDelay:pt.number,scrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["xy"])]),offsetScrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"])]),overscrollBehavior:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["auto"]),pt.oneOf(["none"]),pt.oneOf(["contain"])]),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),c:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number]),classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string}),
|
|
7972
|
+
scrollAreaProps:pt.shape({scrollbarSize:pt.oneOfType([pt.string,pt.number]),type:pt.oneOf(["'auto'", "'scroll'", "'always'", "'hover'", "'never'"]),scrollHideDelay:pt.number,scrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"]),pt.oneOf(["xy"])]),offsetScrollbars:pt.oneOfType([pt.oneOf(["x"]),pt.oneOf(["y"])]),overscrollBehavior:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["auto"]),pt.oneOf(["none"]),pt.oneOf(["contain"])]),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),c:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number]),classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any}),
|
|
7879
7973
|
children:pt.node,
|
|
7880
7974
|
className:pt.string,
|
|
7881
7975
|
style:pt.any,
|
|
@@ -8003,6 +8097,7 @@ pk.TableTbody.propTypes = {children:pt.node,
|
|
|
8003
8097
|
styles:pt.any,
|
|
8004
8098
|
unstyled:pt.bool,
|
|
8005
8099
|
variant:pt.string,
|
|
8100
|
+
attributes:pt.any,
|
|
8006
8101
|
id:pt.string,
|
|
8007
8102
|
setProps:pt.any,
|
|
8008
8103
|
data-*:pt.string,
|
|
@@ -8072,6 +8167,7 @@ pk.TableTd.propTypes = {children:pt.node,
|
|
|
8072
8167
|
styles:pt.any,
|
|
8073
8168
|
unstyled:pt.bool,
|
|
8074
8169
|
variant:pt.string,
|
|
8170
|
+
attributes:pt.any,
|
|
8075
8171
|
id:pt.string,
|
|
8076
8172
|
setProps:pt.any,
|
|
8077
8173
|
data-*:pt.string,
|
|
@@ -8141,6 +8237,7 @@ pk.TableTfoot.propTypes = {children:pt.node,
|
|
|
8141
8237
|
styles:pt.any,
|
|
8142
8238
|
unstyled:pt.bool,
|
|
8143
8239
|
variant:pt.string,
|
|
8240
|
+
attributes:pt.any,
|
|
8144
8241
|
id:pt.string,
|
|
8145
8242
|
setProps:pt.any,
|
|
8146
8243
|
data-*:pt.string,
|
|
@@ -8210,6 +8307,7 @@ pk.TableTh.propTypes = {children:pt.node,
|
|
|
8210
8307
|
styles:pt.any,
|
|
8211
8308
|
unstyled:pt.bool,
|
|
8212
8309
|
variant:pt.string,
|
|
8310
|
+
attributes:pt.any,
|
|
8213
8311
|
id:pt.string,
|
|
8214
8312
|
setProps:pt.any,
|
|
8215
8313
|
data-*:pt.string,
|
|
@@ -8279,6 +8377,7 @@ pk.TableThead.propTypes = {children:pt.node,
|
|
|
8279
8377
|
styles:pt.any,
|
|
8280
8378
|
unstyled:pt.bool,
|
|
8281
8379
|
variant:pt.string,
|
|
8380
|
+
attributes:pt.any,
|
|
8282
8381
|
id:pt.string,
|
|
8283
8382
|
setProps:pt.any,
|
|
8284
8383
|
data-*:pt.string,
|
|
@@ -8348,6 +8447,7 @@ pk.TableTr.propTypes = {children:pt.node,
|
|
|
8348
8447
|
styles:pt.any,
|
|
8349
8448
|
unstyled:pt.bool,
|
|
8350
8449
|
variant:pt.string,
|
|
8450
|
+
attributes:pt.any,
|
|
8351
8451
|
id:pt.string,
|
|
8352
8452
|
setProps:pt.any,
|
|
8353
8453
|
data-*:pt.string,
|
|
@@ -8433,6 +8533,7 @@ pk.Tabs.propTypes = {value:pt.string,
|
|
|
8433
8533
|
styles:pt.any,
|
|
8434
8534
|
unstyled:pt.bool,
|
|
8435
8535
|
variant:pt.string,
|
|
8536
|
+
attributes:pt.any,
|
|
8436
8537
|
persistence:pt.oneOfType([pt.string,pt.number]),
|
|
8437
8538
|
persisted_props:pt.arrayOf(pt.string),
|
|
8438
8539
|
persistence_type:pt.oneOf(["'local'", "'session'", "'memory'"])};
|
|
@@ -8505,7 +8606,8 @@ pk.TabsList.propTypes = {children:pt.node,
|
|
|
8505
8606
|
classNames:pt.object,
|
|
8506
8607
|
styles:pt.any,
|
|
8507
8608
|
unstyled:pt.bool,
|
|
8508
|
-
variant:pt.string
|
|
8609
|
+
variant:pt.string,
|
|
8610
|
+
attributes:pt.any};
|
|
8509
8611
|
pk.TabsPanel.propTypes = {children:pt.node,
|
|
8510
8612
|
keepMounted:pt.bool,
|
|
8511
8613
|
value:pt.string,
|
|
@@ -8575,7 +8677,8 @@ pk.TabsPanel.propTypes = {children:pt.node,
|
|
|
8575
8677
|
classNames:pt.object,
|
|
8576
8678
|
styles:pt.any,
|
|
8577
8679
|
unstyled:pt.bool,
|
|
8578
|
-
variant:pt.string
|
|
8680
|
+
variant:pt.string,
|
|
8681
|
+
attributes:pt.any};
|
|
8579
8682
|
pk.TabsTab.propTypes = {value:pt.string,
|
|
8580
8683
|
children:pt.node,
|
|
8581
8684
|
rightSection:pt.node,
|
|
@@ -8647,6 +8750,7 @@ pk.TabsTab.propTypes = {value:pt.string,
|
|
|
8647
8750
|
tabIndex:pt.number,
|
|
8648
8751
|
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string}),
|
|
8649
8752
|
unstyled:pt.bool,
|
|
8753
|
+
attributes:pt.any,
|
|
8650
8754
|
classNames:pt.object,
|
|
8651
8755
|
styles:pt.any,
|
|
8652
8756
|
variant:pt.string};
|
|
@@ -8720,6 +8824,7 @@ pk.Timeline.propTypes = {children:pt.node,
|
|
|
8720
8824
|
styles:pt.any,
|
|
8721
8825
|
unstyled:pt.bool,
|
|
8722
8826
|
variant:pt.string,
|
|
8827
|
+
attributes:pt.any,
|
|
8723
8828
|
id:pt.string,
|
|
8724
8829
|
setProps:pt.any,
|
|
8725
8830
|
data-*:pt.string,
|
|
@@ -8792,6 +8897,7 @@ pk.TimelineItem.propTypes = {title:pt.node,
|
|
|
8792
8897
|
styles:pt.any,
|
|
8793
8898
|
unstyled:pt.bool,
|
|
8794
8899
|
variant:pt.string,
|
|
8900
|
+
attributes:pt.any,
|
|
8795
8901
|
id:pt.string,
|
|
8796
8902
|
setProps:pt.any,
|
|
8797
8903
|
data-*:pt.string,
|
|
@@ -8812,6 +8918,7 @@ pk.FloatingTooltip.propTypes = {offset:pt.number,
|
|
|
8812
8918
|
portalProps:pt.object,
|
|
8813
8919
|
middlewares:pt.object,
|
|
8814
8920
|
autoContrast:pt.bool,
|
|
8921
|
+
target:pt.oneOfType([pt.string]),
|
|
8815
8922
|
className:pt.string,
|
|
8816
8923
|
style:pt.any,
|
|
8817
8924
|
hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -8873,6 +8980,7 @@ pk.FloatingTooltip.propTypes = {offset:pt.number,
|
|
|
8873
8980
|
styles:pt.any,
|
|
8874
8981
|
unstyled:pt.bool,
|
|
8875
8982
|
variant:pt.string,
|
|
8983
|
+
attributes:pt.any,
|
|
8876
8984
|
id:pt.string,
|
|
8877
8985
|
setProps:pt.any,
|
|
8878
8986
|
data-*:pt.string,
|
|
@@ -8907,6 +9015,7 @@ pk.Tooltip.propTypes = {openDelay:pt.number,
|
|
|
8907
9015
|
portalProps:pt.object,
|
|
8908
9016
|
middlewares:pt.object,
|
|
8909
9017
|
autoContrast:pt.bool,
|
|
9018
|
+
target:pt.oneOfType([pt.string]),
|
|
8910
9019
|
className:pt.string,
|
|
8911
9020
|
style:pt.any,
|
|
8912
9021
|
hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -8968,6 +9077,7 @@ pk.Tooltip.propTypes = {openDelay:pt.number,
|
|
|
8968
9077
|
styles:pt.any,
|
|
8969
9078
|
unstyled:pt.bool,
|
|
8970
9079
|
variant:pt.string,
|
|
9080
|
+
attributes:pt.any,
|
|
8971
9081
|
id:pt.string,
|
|
8972
9082
|
setProps:pt.any,
|
|
8973
9083
|
data-*:pt.string,
|
|
@@ -9032,13 +9142,14 @@ pk.Affix.propTypes = {children:pt.node,
|
|
|
9032
9142
|
inset:pt.oneOfType([pt.string,pt.number]),
|
|
9033
9143
|
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"])]),
|
|
9034
9144
|
flex:pt.oneOfType([pt.string,pt.number]),
|
|
9035
|
-
zIndex:pt.oneOfType([pt.
|
|
9145
|
+
zIndex:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["auto"])]),
|
|
9036
9146
|
withinPortal:pt.bool,
|
|
9037
9147
|
position:pt.shape({top:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),left:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bottom:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),right:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])])}),
|
|
9038
9148
|
classNames:pt.object,
|
|
9039
9149
|
styles:pt.any,
|
|
9040
9150
|
unstyled:pt.bool,
|
|
9041
9151
|
variant:pt.string,
|
|
9152
|
+
attributes:pt.any,
|
|
9042
9153
|
id:pt.string,
|
|
9043
9154
|
setProps:pt.any,
|
|
9044
9155
|
data-*:pt.string,
|
|
@@ -9116,6 +9227,7 @@ pk.Alert.propTypes = {children:pt.node,
|
|
|
9116
9227
|
styles:pt.any,
|
|
9117
9228
|
unstyled:pt.bool,
|
|
9118
9229
|
variant:pt.string,
|
|
9230
|
+
attributes:pt.any,
|
|
9119
9231
|
id:pt.string,
|
|
9120
9232
|
setProps:pt.any,
|
|
9121
9233
|
data-*:pt.string,
|
|
@@ -9190,6 +9302,7 @@ pk.Anchor.propTypes = {children:pt.node,
|
|
|
9190
9302
|
styles:pt.any,
|
|
9191
9303
|
unstyled:pt.bool,
|
|
9192
9304
|
variant:pt.string,
|
|
9305
|
+
attributes:pt.any,
|
|
9193
9306
|
size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
9194
9307
|
lineClamp:pt.number,
|
|
9195
9308
|
truncate:pt.oneOfType([pt.oneOf(["end"]),pt.oneOf(["start"])]),
|
|
@@ -9263,6 +9376,7 @@ pk.AspectRatio.propTypes = {children:pt.node,
|
|
|
9263
9376
|
styles:pt.any,
|
|
9264
9377
|
unstyled:pt.bool,
|
|
9265
9378
|
variant:pt.string,
|
|
9379
|
+
attributes:pt.any,
|
|
9266
9380
|
id:pt.string,
|
|
9267
9381
|
setProps:pt.any,
|
|
9268
9382
|
data-*:pt.string,
|
|
@@ -9340,6 +9454,7 @@ pk.Badge.propTypes = {size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.on
|
|
|
9340
9454
|
styles:pt.any,
|
|
9341
9455
|
unstyled:pt.bool,
|
|
9342
9456
|
variant:pt.string,
|
|
9457
|
+
attributes:pt.any,
|
|
9343
9458
|
id:pt.string,
|
|
9344
9459
|
setProps:pt.any,
|
|
9345
9460
|
data-*:pt.string,
|
|
@@ -9413,6 +9528,7 @@ pk.Blockquote.propTypes = {icon:pt.node,
|
|
|
9413
9528
|
styles:pt.any,
|
|
9414
9529
|
unstyled:pt.bool,
|
|
9415
9530
|
variant:pt.string,
|
|
9531
|
+
attributes:pt.any,
|
|
9416
9532
|
id:pt.string,
|
|
9417
9533
|
setProps:pt.any,
|
|
9418
9534
|
data-*:pt.string,
|
|
@@ -9547,6 +9663,7 @@ pk.Breadcrumbs.propTypes = {separator:pt.node,
|
|
|
9547
9663
|
styles:pt.any,
|
|
9548
9664
|
unstyled:pt.bool,
|
|
9549
9665
|
variant:pt.string,
|
|
9666
|
+
attributes:pt.any,
|
|
9550
9667
|
id:pt.string,
|
|
9551
9668
|
setProps:pt.any,
|
|
9552
9669
|
data-*:pt.string,
|
|
@@ -9620,6 +9737,7 @@ pk.Burger.propTypes = {size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["
|
|
|
9620
9737
|
styles:pt.any,
|
|
9621
9738
|
unstyled:pt.bool,
|
|
9622
9739
|
variant:pt.string,
|
|
9740
|
+
attributes:pt.any,
|
|
9623
9741
|
id:pt.string,
|
|
9624
9742
|
setProps:pt.any,
|
|
9625
9743
|
data-*:pt.string,
|
|
@@ -9692,6 +9810,7 @@ pk.Center.propTypes = {children:pt.node,
|
|
|
9692
9810
|
styles:pt.any,
|
|
9693
9811
|
unstyled:pt.bool,
|
|
9694
9812
|
variant:pt.string,
|
|
9813
|
+
attributes:pt.any,
|
|
9695
9814
|
id:pt.string,
|
|
9696
9815
|
setProps:pt.any,
|
|
9697
9816
|
data-*:pt.string,
|
|
@@ -9767,12 +9886,14 @@ pk.Code.propTypes = {children:pt.node,
|
|
|
9767
9886
|
classNames:pt.object,
|
|
9768
9887
|
styles:pt.any,
|
|
9769
9888
|
unstyled:pt.bool,
|
|
9770
|
-
variant:pt.string
|
|
9889
|
+
variant:pt.string,
|
|
9890
|
+
attributes:pt.any};
|
|
9771
9891
|
pk.Collapse.propTypes = {opened:pt.bool,
|
|
9772
9892
|
transitionDuration:pt.number,
|
|
9773
9893
|
transitionTimingFunction:pt.string,
|
|
9774
9894
|
animateOpacity:pt.bool,
|
|
9775
9895
|
children:pt.node,
|
|
9896
|
+
keepMounted:pt.bool,
|
|
9776
9897
|
className:pt.string,
|
|
9777
9898
|
style:pt.any,
|
|
9778
9899
|
hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -9839,6 +9960,7 @@ pk.Collapse.propTypes = {opened:pt.bool,
|
|
|
9839
9960
|
pk.Container.propTypes = {children:pt.node,
|
|
9840
9961
|
size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
9841
9962
|
fluid:pt.bool,
|
|
9963
|
+
strategy:pt.oneOf(["'block'", "'grid'"]),
|
|
9842
9964
|
className:pt.string,
|
|
9843
9965
|
style:pt.any,
|
|
9844
9966
|
hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -9900,6 +10022,7 @@ pk.Container.propTypes = {children:pt.node,
|
|
|
9900
10022
|
styles:pt.any,
|
|
9901
10023
|
unstyled:pt.bool,
|
|
9902
10024
|
variant:pt.string,
|
|
10025
|
+
attributes:pt.any,
|
|
9903
10026
|
id:pt.string,
|
|
9904
10027
|
setProps:pt.any,
|
|
9905
10028
|
data-*:pt.string,
|
|
@@ -9972,6 +10095,7 @@ pk.Divider.propTypes = {color:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]
|
|
|
9972
10095
|
styles:pt.any,
|
|
9973
10096
|
unstyled:pt.bool,
|
|
9974
10097
|
variant:pt.string,
|
|
10098
|
+
attributes:pt.any,
|
|
9975
10099
|
id:pt.string,
|
|
9976
10100
|
setProps:pt.any,
|
|
9977
10101
|
data-*:pt.string,
|
|
@@ -10043,6 +10167,7 @@ pk.Fieldset.propTypes = {disabled:pt.bool,
|
|
|
10043
10167
|
styles:pt.any,
|
|
10044
10168
|
unstyled:pt.bool,
|
|
10045
10169
|
variant:pt.string,
|
|
10170
|
+
attributes:pt.any,
|
|
10046
10171
|
id:pt.string,
|
|
10047
10172
|
setProps:pt.any,
|
|
10048
10173
|
data-*:pt.string,
|
|
@@ -10118,6 +10243,7 @@ pk.Flex.propTypes = {children:pt.node,
|
|
|
10118
10243
|
styles:pt.any,
|
|
10119
10244
|
unstyled:pt.bool,
|
|
10120
10245
|
variant:pt.string,
|
|
10246
|
+
attributes:pt.any,
|
|
10121
10247
|
id:pt.string,
|
|
10122
10248
|
setProps:pt.any,
|
|
10123
10249
|
data-*:pt.string,
|
|
@@ -10192,6 +10318,7 @@ pk.Group.propTypes = {children:pt.node,
|
|
|
10192
10318
|
styles:pt.any,
|
|
10193
10319
|
unstyled:pt.bool,
|
|
10194
10320
|
variant:pt.string,
|
|
10321
|
+
attributes:pt.any,
|
|
10195
10322
|
id:pt.string,
|
|
10196
10323
|
setProps:pt.any,
|
|
10197
10324
|
data-*:pt.string,
|
|
@@ -10275,7 +10402,8 @@ pk.Highlight.propTypes = {highlight:pt.oneOfType([pt.string,pt.arrayOf(pt.string
|
|
|
10275
10402
|
classNames:pt.object,
|
|
10276
10403
|
styles:pt.any,
|
|
10277
10404
|
unstyled:pt.bool,
|
|
10278
|
-
variant:pt.string
|
|
10405
|
+
variant:pt.string,
|
|
10406
|
+
attributes:pt.any};
|
|
10279
10407
|
pk.Indicator.propTypes = {position:pt.oneOf(["'top-center'", "'top-end'", "'top-start'", "'bottom-center'", "'bottom-end'", "'bottom-start'", "'middle-center'", "'middle-end'", "'middle-start'"]),
|
|
10280
10408
|
offset:pt.number,
|
|
10281
10409
|
inline:pt.bool,
|
|
@@ -10350,6 +10478,7 @@ pk.Indicator.propTypes = {position:pt.oneOf(["'top-center'", "'top-end'", "'top-
|
|
|
10350
10478
|
styles:pt.any,
|
|
10351
10479
|
unstyled:pt.bool,
|
|
10352
10480
|
variant:pt.string,
|
|
10481
|
+
attributes:pt.any,
|
|
10353
10482
|
id:pt.string,
|
|
10354
10483
|
setProps:pt.any,
|
|
10355
10484
|
data-*:pt.string,
|
|
@@ -10419,6 +10548,7 @@ pk.Kbd.propTypes = {size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneO
|
|
|
10419
10548
|
styles:pt.any,
|
|
10420
10549
|
unstyled:pt.bool,
|
|
10421
10550
|
variant:pt.string,
|
|
10551
|
+
attributes:pt.any,
|
|
10422
10552
|
id:pt.string,
|
|
10423
10553
|
setProps:pt.any,
|
|
10424
10554
|
data-*:pt.string,
|
|
@@ -10490,6 +10620,7 @@ pk.Loader.propTypes = {size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["
|
|
|
10490
10620
|
styles:pt.any,
|
|
10491
10621
|
unstyled:pt.bool,
|
|
10492
10622
|
variant:pt.string,
|
|
10623
|
+
attributes:pt.any,
|
|
10493
10624
|
id:pt.string,
|
|
10494
10625
|
setProps:pt.any,
|
|
10495
10626
|
data-*:pt.string,
|
|
@@ -10497,8 +10628,8 @@ pk.Loader.propTypes = {size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["
|
|
|
10497
10628
|
tabIndex:pt.number,
|
|
10498
10629
|
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
10499
10630
|
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}),
|
|
10500
|
-
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}),
|
|
10501
|
-
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}),
|
|
10631
|
+
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}),
|
|
10632
|
+
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}),
|
|
10502
10633
|
visible:pt.bool,
|
|
10503
10634
|
zIndex:pt.oneOfType([pt.string,pt.number]),
|
|
10504
10635
|
className:pt.string,
|
|
@@ -10562,6 +10693,7 @@ pk.LoadingOverlay.propTypes = {transitionProps:pt.shape({keepMounted:pt.bool,tra
|
|
|
10562
10693
|
styles:pt.any,
|
|
10563
10694
|
unstyled:pt.bool,
|
|
10564
10695
|
variant:pt.string,
|
|
10696
|
+
attributes:pt.any,
|
|
10565
10697
|
id:pt.string,
|
|
10566
10698
|
setProps:pt.any,
|
|
10567
10699
|
data-*:pt.string,
|
|
@@ -10636,7 +10768,8 @@ pk.Mark.propTypes = {children:pt.string,
|
|
|
10636
10768
|
classNames:pt.object,
|
|
10637
10769
|
styles:pt.any,
|
|
10638
10770
|
unstyled:pt.bool,
|
|
10639
|
-
variant:pt.string
|
|
10771
|
+
variant:pt.string,
|
|
10772
|
+
attributes:pt.any};
|
|
10640
10773
|
pk.NavLink.propTypes = {label:pt.node,
|
|
10641
10774
|
description:pt.node,
|
|
10642
10775
|
leftSection:pt.node,
|
|
@@ -10715,6 +10848,7 @@ pk.NavLink.propTypes = {label:pt.node,
|
|
|
10715
10848
|
styles:pt.any,
|
|
10716
10849
|
unstyled:pt.bool,
|
|
10717
10850
|
variant:pt.string,
|
|
10851
|
+
attributes:pt.any,
|
|
10718
10852
|
id:pt.string,
|
|
10719
10853
|
setProps:pt.any,
|
|
10720
10854
|
data-*:pt.string,
|
|
@@ -10809,6 +10943,7 @@ pk.Overlay.propTypes = {backgroundOpacity:pt.number,
|
|
|
10809
10943
|
styles:pt.any,
|
|
10810
10944
|
unstyled:pt.bool,
|
|
10811
10945
|
variant:pt.string,
|
|
10946
|
+
attributes:pt.any,
|
|
10812
10947
|
id:pt.string,
|
|
10813
10948
|
setProps:pt.any,
|
|
10814
10949
|
data-*:pt.string,
|
|
@@ -10890,6 +11025,7 @@ pk.Pagination.propTypes = {withEdges:pt.bool,
|
|
|
10890
11025
|
styles:pt.any,
|
|
10891
11026
|
unstyled:pt.bool,
|
|
10892
11027
|
variant:pt.string,
|
|
11028
|
+
attributes:pt.any,
|
|
10893
11029
|
persistence:pt.oneOfType([pt.string,pt.number]),
|
|
10894
11030
|
persisted_props:pt.arrayOf(pt.string),
|
|
10895
11031
|
persistence_type:pt.oneOf(["'local'", "'session'", "'memory'"]),
|
|
@@ -10964,6 +11100,7 @@ pk.Paper.propTypes = {children:pt.node,
|
|
|
10964
11100
|
styles:pt.any,
|
|
10965
11101
|
unstyled:pt.bool,
|
|
10966
11102
|
variant:pt.string,
|
|
11103
|
+
attributes:pt.any,
|
|
10967
11104
|
id:pt.string,
|
|
10968
11105
|
setProps:pt.any,
|
|
10969
11106
|
data-*:pt.string,
|
|
@@ -11041,6 +11178,7 @@ pk.Rating.propTypes = {value:pt.number,
|
|
|
11041
11178
|
styles:pt.any,
|
|
11042
11179
|
unstyled:pt.bool,
|
|
11043
11180
|
variant:pt.string,
|
|
11181
|
+
attributes:pt.any,
|
|
11044
11182
|
id:pt.string,
|
|
11045
11183
|
setProps:pt.any,
|
|
11046
11184
|
data-*:pt.string,
|
|
@@ -11117,6 +11255,7 @@ pk.RingProgress.propTypes = {label:pt.node,
|
|
|
11117
11255
|
styles:pt.any,
|
|
11118
11256
|
unstyled:pt.bool,
|
|
11119
11257
|
variant:pt.string,
|
|
11258
|
+
attributes:pt.any,
|
|
11120
11259
|
id:pt.string,
|
|
11121
11260
|
setProps:pt.any,
|
|
11122
11261
|
data-*:pt.string,
|
|
@@ -11191,6 +11330,7 @@ pk.ScrollArea.propTypes = {children:pt.node,
|
|
|
11191
11330
|
styles:pt.any,
|
|
11192
11331
|
unstyled:pt.bool,
|
|
11193
11332
|
variant:pt.string,
|
|
11333
|
+
attributes:pt.any,
|
|
11194
11334
|
id:pt.string,
|
|
11195
11335
|
setProps:pt.any,
|
|
11196
11336
|
data-*:pt.string,
|
|
@@ -11272,6 +11412,7 @@ pk.SegmentedControl.propTypes = {data:pt.arrayOf(pt.oneOfType([pt.string])),
|
|
|
11272
11412
|
styles:pt.any,
|
|
11273
11413
|
unstyled:pt.bool,
|
|
11274
11414
|
variant:pt.string,
|
|
11415
|
+
attributes:pt.any,
|
|
11275
11416
|
id:pt.string,
|
|
11276
11417
|
setProps:pt.any,
|
|
11277
11418
|
data-*:pt.string,
|
|
@@ -11352,6 +11493,7 @@ pk.SemiCircleProgress.propTypes = {value:pt.number,
|
|
|
11352
11493
|
styles:pt.any,
|
|
11353
11494
|
unstyled:pt.bool,
|
|
11354
11495
|
variant:pt.string,
|
|
11496
|
+
attributes:pt.any,
|
|
11355
11497
|
id:pt.string,
|
|
11356
11498
|
setProps:pt.any,
|
|
11357
11499
|
data-*:pt.string,
|
|
@@ -11424,6 +11566,7 @@ pk.SimpleGrid.propTypes = {children:pt.node,
|
|
|
11424
11566
|
styles:pt.any,
|
|
11425
11567
|
unstyled:pt.bool,
|
|
11426
11568
|
variant:pt.string,
|
|
11569
|
+
attributes:pt.any,
|
|
11427
11570
|
id:pt.string,
|
|
11428
11571
|
setProps:pt.any,
|
|
11429
11572
|
data-*:pt.string,
|
|
@@ -11498,6 +11641,7 @@ pk.Skeleton.propTypes = {visible:pt.bool,
|
|
|
11498
11641
|
styles:pt.any,
|
|
11499
11642
|
unstyled:pt.bool,
|
|
11500
11643
|
variant:pt.string,
|
|
11644
|
+
attributes:pt.any,
|
|
11501
11645
|
id:pt.string,
|
|
11502
11646
|
setProps:pt.any,
|
|
11503
11647
|
data-*:pt.string,
|
|
@@ -11636,6 +11780,7 @@ pk.Spoiler.propTypes = {maxHeight:pt.number,
|
|
|
11636
11780
|
styles:pt.any,
|
|
11637
11781
|
unstyled:pt.bool,
|
|
11638
11782
|
variant:pt.string,
|
|
11783
|
+
attributes:pt.any,
|
|
11639
11784
|
id:pt.string,
|
|
11640
11785
|
setProps:pt.any,
|
|
11641
11786
|
data-*:pt.string,
|
|
@@ -11707,6 +11852,7 @@ pk.Stack.propTypes = {children:pt.node,
|
|
|
11707
11852
|
styles:pt.any,
|
|
11708
11853
|
unstyled:pt.bool,
|
|
11709
11854
|
variant:pt.string,
|
|
11855
|
+
attributes:pt.any,
|
|
11710
11856
|
id:pt.string,
|
|
11711
11857
|
setProps:pt.any,
|
|
11712
11858
|
data-*:pt.string,
|
|
@@ -11788,6 +11934,7 @@ pk.Switch.propTypes = {label:pt.node,
|
|
|
11788
11934
|
styles:pt.any,
|
|
11789
11935
|
unstyled:pt.bool,
|
|
11790
11936
|
variant:pt.string,
|
|
11937
|
+
attributes:pt.any,
|
|
11791
11938
|
id:pt.string,
|
|
11792
11939
|
setProps:pt.any,
|
|
11793
11940
|
data-*:pt.string,
|
|
@@ -11866,6 +12013,7 @@ pk.Text.propTypes = {children:pt.node,
|
|
|
11866
12013
|
styles:pt.any,
|
|
11867
12014
|
unstyled:pt.bool,
|
|
11868
12015
|
variant:pt.string,
|
|
12016
|
+
attributes:pt.any,
|
|
11869
12017
|
id:pt.string,
|
|
11870
12018
|
setProps:pt.any,
|
|
11871
12019
|
data-*:pt.string,
|
|
@@ -11944,7 +12092,8 @@ pk.ThemeIcon.propTypes = {size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf
|
|
|
11944
12092
|
classNames:pt.object,
|
|
11945
12093
|
styles:pt.any,
|
|
11946
12094
|
unstyled:pt.bool,
|
|
11947
|
-
variant:pt.string
|
|
12095
|
+
variant:pt.string,
|
|
12096
|
+
attributes:pt.any};
|
|
11948
12097
|
pk.Title.propTypes = {order:pt.oneOf([1, 2, 3, 4, 5, 6]),
|
|
11949
12098
|
size:pt.oneOfType([pt.string,pt.number]),
|
|
11950
12099
|
lineClamp:pt.number,
|
|
@@ -12016,7 +12165,8 @@ pk.Title.propTypes = {order:pt.oneOf([1, 2, 3, 4, 5, 6]),
|
|
|
12016
12165
|
classNames:pt.object,
|
|
12017
12166
|
styles:pt.any,
|
|
12018
12167
|
unstyled:pt.bool,
|
|
12019
|
-
variant:pt.string
|
|
12168
|
+
variant:pt.string,
|
|
12169
|
+
attributes:pt.any};
|
|
12020
12170
|
pk.Tree.propTypes = {allowRangeSelection:pt.bool,
|
|
12021
12171
|
checkboxes:pt.bool,
|
|
12022
12172
|
checked:pt.arrayOf(pt.string),
|
|
@@ -12094,6 +12244,7 @@ pk.Tree.propTypes = {allowRangeSelection:pt.bool,
|
|
|
12094
12244
|
styles:pt.any,
|
|
12095
12245
|
unstyled:pt.bool,
|
|
12096
12246
|
variant:pt.string,
|
|
12247
|
+
attributes:pt.any,
|
|
12097
12248
|
id:pt.string,
|
|
12098
12249
|
setProps:pt.any,
|
|
12099
12250
|
data-*:pt.string,
|
|
@@ -12162,6 +12313,7 @@ pk.VisuallyHidden.propTypes = {children:pt.node,
|
|
|
12162
12313
|
styles:pt.any,
|
|
12163
12314
|
unstyled:pt.bool,
|
|
12164
12315
|
variant:pt.string,
|
|
12316
|
+
attributes:pt.any,
|
|
12165
12317
|
id:pt.string,
|
|
12166
12318
|
setProps:pt.any,
|
|
12167
12319
|
data-*:pt.string,
|
|
@@ -12169,7 +12321,7 @@ pk.VisuallyHidden.propTypes = {children:pt.node,
|
|
|
12169
12321
|
tabIndex:pt.number,
|
|
12170
12322
|
loading_state:pt.shape({is_loading:pt.bool,prop_name:pt.string,component_name:pt.string})};
|
|
12171
12323
|
pk.DateInput.propTypes = {value:pt.string,
|
|
12172
|
-
popoverProps:pt.shape({radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles:pt.bool,hideDetached:pt.bool,position:pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"]),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.bool,rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"])]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,padding:pt.oneOfType([pt.number]),fallbackPlacements:pt.arrayOf(pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"])),fallbackStrategy:pt.oneOf(["'bestFit'", "'initialPlacement'"]),fallbackAxisSideDirection:pt.oneOf(["'end'", "'start'", "'none'"]),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.any,size:pt.oneOfType([pt.any])}),withArrow:pt.bool,arrowSize:pt.number,arrowOffset:pt.number,arrowRadius:pt.number,arrowPosition:pt.oneOf(["'center'", "'side'"]),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),returnFocus:pt.bool,floatingStrategy:pt.oneOf(["'absolute'", "'fixed'"]),overlayProps:pt.object,withOverlay:pt.bool}),
|
|
12324
|
+
popoverProps:pt.shape({radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles:pt.bool,hideDetached:pt.bool,position:pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"]),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.bool,rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"])]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,padding:pt.oneOfType([pt.number]),fallbackPlacements:pt.arrayOf(pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"])),fallbackStrategy:pt.oneOf(["'bestFit'", "'initialPlacement'"]),fallbackAxisSideDirection:pt.oneOf(["'end'", "'start'", "'none'"]),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.any,size:pt.oneOfType([pt.any])}),withArrow:pt.bool,arrowSize:pt.number,arrowOffset:pt.number,arrowRadius:pt.number,arrowPosition:pt.oneOf(["'center'", "'side'"]),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),returnFocus:pt.bool,floatingStrategy:pt.oneOf(["'absolute'", "'fixed'"]),overlayProps:pt.object,withOverlay:pt.bool}),
|
|
12173
12325
|
clearable:pt.bool,
|
|
12174
12326
|
clearButtonProps:pt.shape({size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node}),
|
|
12175
12327
|
valueFormat:pt.string,
|
|
@@ -12309,7 +12461,8 @@ pk.DateInput.propTypes = {value:pt.string,
|
|
|
12309
12461
|
classNames:pt.object,
|
|
12310
12462
|
styles:pt.any,
|
|
12311
12463
|
unstyled:pt.bool,
|
|
12312
|
-
variant:pt.string
|
|
12464
|
+
variant:pt.string,
|
|
12465
|
+
attributes:pt.any};
|
|
12313
12466
|
pk.DatePicker.propTypes = {disabledDates:pt.arrayOf(pt.string),
|
|
12314
12467
|
id:pt.string,
|
|
12315
12468
|
setProps:pt.any,
|
|
@@ -12416,7 +12569,8 @@ pk.DatePicker.propTypes = {disabledDates:pt.arrayOf(pt.string),
|
|
|
12416
12569
|
classNames:pt.object,
|
|
12417
12570
|
styles:pt.any,
|
|
12418
12571
|
unstyled:pt.bool,
|
|
12419
|
-
variant:pt.string
|
|
12572
|
+
variant:pt.string,
|
|
12573
|
+
attributes:pt.any};
|
|
12420
12574
|
pk.DatePickerInput.propTypes = {valueFormat:pt.string,
|
|
12421
12575
|
disabledDates:pt.any,
|
|
12422
12576
|
highlightToday:pt.bool,
|
|
@@ -12490,8 +12644,8 @@ pk.DatePickerInput.propTypes = {valueFormat:pt.string,
|
|
|
12490
12644
|
flex:pt.oneOfType([pt.string,pt.number]),
|
|
12491
12645
|
closeOnChange:pt.bool,
|
|
12492
12646
|
dropdownType:pt.oneOf(["'popover'", "'modal'"]),
|
|
12493
|
-
popoverProps:pt.shape({radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles:pt.bool,hideDetached:pt.bool,position:pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"]),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.bool,rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"]),pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number})]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,padding:pt.oneOfType([pt.number,pt.shape({top:pt.number,left:pt.number,bottom:pt.number,right:pt.number})]),fallbackPlacements:pt.arrayOf(pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"])),fallbackStrategy:pt.oneOf(["'bestFit'", "'initialPlacement'"]),fallbackAxisSideDirection:pt.oneOf(["'end'", "'start'", "'none'"]),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.any,size:pt.oneOfType([pt.any])}),withArrow:pt.bool,arrowSize:pt.number,arrowOffset:pt.number,arrowRadius:pt.number,arrowPosition:pt.oneOf(["'center'", "'side'"]),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),returnFocus:pt.bool,floatingStrategy:pt.oneOf(["'absolute'", "'fixed'"]),overlayProps:pt.object,withOverlay:pt.bool}),
|
|
12494
|
-
modalProps:pt.shape({className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),c:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number]),size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),opened:pt.bool,closeOnClickOutside:pt.bool,trapFocus:pt.bool,closeOnEscape:pt.bool,keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),returnFocus:pt.bool,overlayProps:pt.shape({transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),c:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),unstyled:pt.bool,children:pt.node,zIndex:pt.oneOfType([pt.string,pt.number]),center:pt.bool,fixed:pt.bool,backgroundOpacity:pt.number,color:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["aliceblue"]),pt.oneOf(["antiquewhite"]),pt.oneOf(["aqua"]),pt.oneOf(["aquamarine"]),pt.oneOf(["azure"]),pt.oneOf(["beige"]),pt.oneOf(["bisque"]),pt.oneOf(["black"]),pt.oneOf(["blanchedalmond"]),pt.oneOf(["blue"]),pt.oneOf(["blueviolet"]),pt.oneOf(["brown"]),pt.oneOf(["burlywood"]),pt.oneOf(["cadetblue"]),pt.oneOf(["chartreuse"]),pt.oneOf(["chocolate"]),pt.oneOf(["coral"]),pt.oneOf(["cornflowerblue"]),pt.oneOf(["cornsilk"]),pt.oneOf(["crimson"]),pt.oneOf(["cyan"]),pt.oneOf(["darkblue"]),pt.oneOf(["darkcyan"]),pt.oneOf(["darkgoldenrod"]),pt.oneOf(["darkgray"]),pt.oneOf(["darkgreen"]),pt.oneOf(["darkgrey"]),pt.oneOf(["darkkhaki"]),pt.oneOf(["darkmagenta"]),pt.oneOf(["darkolivegreen"]),pt.oneOf(["darkorange"]),pt.oneOf(["darkorchid"]),pt.oneOf(["darkred"]),pt.oneOf(["darksalmon"]),pt.oneOf(["darkseagreen"]),pt.oneOf(["darkslateblue"]),pt.oneOf(["darkslategray"]),pt.oneOf(["darkslategrey"]),pt.oneOf(["darkturquoise"]),pt.oneOf(["darkviolet"]),pt.oneOf(["deeppink"]),pt.oneOf(["deepskyblue"]),pt.oneOf(["dimgray"]),pt.oneOf(["dimgrey"]),pt.oneOf(["dodgerblue"]),pt.oneOf(["firebrick"]),pt.oneOf(["floralwhite"]),pt.oneOf(["forestgreen"]),pt.oneOf(["fuchsia"]),pt.oneOf(["gainsboro"]),pt.oneOf(["ghostwhite"]),pt.oneOf(["gold"]),pt.oneOf(["goldenrod"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["greenyellow"]),pt.oneOf(["grey"]),pt.oneOf(["honeydew"]),pt.oneOf(["hotpink"]),pt.oneOf(["indianred"]),pt.oneOf(["indigo"]),pt.oneOf(["ivory"]),pt.oneOf(["khaki"]),pt.oneOf(["lavender"]),pt.oneOf(["lavenderblush"]),pt.oneOf(["lawngreen"]),pt.oneOf(["lemonchiffon"]),pt.oneOf(["lightblue"]),pt.oneOf(["lightcoral"]),pt.oneOf(["lightcyan"]),pt.oneOf(["lightgoldenrodyellow"]),pt.oneOf(["lightgray"]),pt.oneOf(["lightgreen"]),pt.oneOf(["lightgrey"]),pt.oneOf(["lightpink"]),pt.oneOf(["lightsalmon"]),pt.oneOf(["lightseagreen"]),pt.oneOf(["lightskyblue"]),pt.oneOf(["lightslategray"]),pt.oneOf(["lightslategrey"]),pt.oneOf(["lightsteelblue"]),pt.oneOf(["lightyellow"]),pt.oneOf(["lime"]),pt.oneOf(["limegreen"]),pt.oneOf(["linen"]),pt.oneOf(["magenta"]),pt.oneOf(["maroon"]),pt.oneOf(["mediumaquamarine"]),pt.oneOf(["mediumblue"]),pt.oneOf(["mediumorchid"]),pt.oneOf(["mediumpurple"]),pt.oneOf(["mediumseagreen"]),pt.oneOf(["mediumslateblue"]),pt.oneOf(["mediumspringgreen"]),pt.oneOf(["mediumturquoise"]),pt.oneOf(["mediumvioletred"]),pt.oneOf(["midnightblue"]),pt.oneOf(["mintcream"]),pt.oneOf(["mistyrose"]),pt.oneOf(["moccasin"]),pt.oneOf(["navajowhite"]),pt.oneOf(["navy"]),pt.oneOf(["oldlace"]),pt.oneOf(["olive"]),pt.oneOf(["olivedrab"]),pt.oneOf(["orange"]),pt.oneOf(["orangered"]),pt.oneOf(["orchid"]),pt.oneOf(["palegoldenrod"]),pt.oneOf(["palegreen"]),pt.oneOf(["paleturquoise"]),pt.oneOf(["palevioletred"]),pt.oneOf(["papayawhip"]),pt.oneOf(["peachpuff"]),pt.oneOf(["peru"]),pt.oneOf(["pink"]),pt.oneOf(["plum"]),pt.oneOf(["powderblue"]),pt.oneOf(["purple"]),pt.oneOf(["rebeccapurple"]),pt.oneOf(["red"]),pt.oneOf(["rosybrown"]),pt.oneOf(["royalblue"]),pt.oneOf(["saddlebrown"]),pt.oneOf(["salmon"]),pt.oneOf(["sandybrown"]),pt.oneOf(["seagreen"]),pt.oneOf(["seashell"]),pt.oneOf(["sienna"]),pt.oneOf(["silver"]),pt.oneOf(["skyblue"]),pt.oneOf(["slateblue"]),pt.oneOf(["slategray"]),pt.oneOf(["slategrey"]),pt.oneOf(["snow"]),pt.oneOf(["springgreen"]),pt.oneOf(["steelblue"]),pt.oneOf(["tan"]),pt.oneOf(["teal"]),pt.oneOf(["thistle"]),pt.oneOf(["tomato"]),pt.oneOf(["transparent"]),pt.oneOf(["turquoise"]),pt.oneOf(["violet"]),pt.oneOf(["wheat"]),pt.oneOf(["white"]),pt.oneOf(["whitesmoke"]),pt.oneOf(["yellow"]),pt.oneOf(["yellowgreen"]),pt.oneOf(["ActiveBorder"]),pt.oneOf(["ActiveCaption"]),pt.oneOf(["AppWorkspace"]),pt.oneOf(["Background"]),pt.oneOf(["ButtonFace"]),pt.oneOf(["ButtonHighlight"]),pt.oneOf(["ButtonShadow"]),pt.oneOf(["ButtonText"]),pt.oneOf(["CaptionText"]),pt.oneOf(["GrayText"]),pt.oneOf(["Highlight"]),pt.oneOf(["HighlightText"]),pt.oneOf(["InactiveBorder"]),pt.oneOf(["InactiveCaption"]),pt.oneOf(["InactiveCaptionText"]),pt.oneOf(["InfoBackground"]),pt.oneOf(["InfoText"]),pt.oneOf(["Menu"]),pt.oneOf(["MenuText"]),pt.oneOf(["Scrollbar"]),pt.oneOf(["ThreeDDarkShadow"]),pt.oneOf(["ThreeDFace"]),pt.oneOf(["ThreeDHighlight"]),pt.oneOf(["ThreeDLightShadow"]),pt.oneOf(["ThreeDShadow"]),pt.oneOf(["Window"]),pt.oneOf(["WindowFrame"]),pt.oneOf(["WindowText"]),pt.oneOf(["currentcolor"])]),blur:pt.oneOfType([pt.string,pt.number]),gradient:pt.string}),withOverlay:pt.bool,padding:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),title:pt.node,withCloseButton:pt.bool,closeButtonProps:pt.shape({size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),c:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number])}),yOffset:pt.oneOfType([pt.string,pt.number]),xOffset:pt.oneOfType([pt.string,pt.number]),centered:pt.bool,fullScreen:pt.bool,lockScroll:pt.bool,removeScrollProps:pt.object}),
|
|
12647
|
+
popoverProps:pt.shape({radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles:pt.bool,hideDetached:pt.bool,position:pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"]),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.bool,rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"]),pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number})]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,padding:pt.oneOfType([pt.number,pt.shape({top:pt.number,left:pt.number,bottom:pt.number,right:pt.number})]),fallbackPlacements:pt.arrayOf(pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"])),fallbackStrategy:pt.oneOf(["'bestFit'", "'initialPlacement'"]),fallbackAxisSideDirection:pt.oneOf(["'end'", "'start'", "'none'"]),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.any,size:pt.oneOfType([pt.any])}),withArrow:pt.bool,arrowSize:pt.number,arrowOffset:pt.number,arrowRadius:pt.number,arrowPosition:pt.oneOf(["'center'", "'side'"]),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),returnFocus:pt.bool,floatingStrategy:pt.oneOf(["'absolute'", "'fixed'"]),overlayProps:pt.object,withOverlay:pt.bool}),
|
|
12648
|
+
modalProps:pt.shape({className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),c:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number]),size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),opened:pt.bool,closeOnClickOutside:pt.bool,trapFocus:pt.bool,closeOnEscape:pt.bool,keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),returnFocus:pt.bool,overlayProps:pt.shape({transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),c:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),unstyled:pt.bool,attributes:pt.any,children:pt.node,zIndex:pt.oneOfType([pt.string,pt.number]),center:pt.bool,fixed:pt.bool,backgroundOpacity:pt.number,color:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["aliceblue"]),pt.oneOf(["antiquewhite"]),pt.oneOf(["aqua"]),pt.oneOf(["aquamarine"]),pt.oneOf(["azure"]),pt.oneOf(["beige"]),pt.oneOf(["bisque"]),pt.oneOf(["black"]),pt.oneOf(["blanchedalmond"]),pt.oneOf(["blue"]),pt.oneOf(["blueviolet"]),pt.oneOf(["brown"]),pt.oneOf(["burlywood"]),pt.oneOf(["cadetblue"]),pt.oneOf(["chartreuse"]),pt.oneOf(["chocolate"]),pt.oneOf(["coral"]),pt.oneOf(["cornflowerblue"]),pt.oneOf(["cornsilk"]),pt.oneOf(["crimson"]),pt.oneOf(["cyan"]),pt.oneOf(["darkblue"]),pt.oneOf(["darkcyan"]),pt.oneOf(["darkgoldenrod"]),pt.oneOf(["darkgray"]),pt.oneOf(["darkgreen"]),pt.oneOf(["darkgrey"]),pt.oneOf(["darkkhaki"]),pt.oneOf(["darkmagenta"]),pt.oneOf(["darkolivegreen"]),pt.oneOf(["darkorange"]),pt.oneOf(["darkorchid"]),pt.oneOf(["darkred"]),pt.oneOf(["darksalmon"]),pt.oneOf(["darkseagreen"]),pt.oneOf(["darkslateblue"]),pt.oneOf(["darkslategray"]),pt.oneOf(["darkslategrey"]),pt.oneOf(["darkturquoise"]),pt.oneOf(["darkviolet"]),pt.oneOf(["deeppink"]),pt.oneOf(["deepskyblue"]),pt.oneOf(["dimgray"]),pt.oneOf(["dimgrey"]),pt.oneOf(["dodgerblue"]),pt.oneOf(["firebrick"]),pt.oneOf(["floralwhite"]),pt.oneOf(["forestgreen"]),pt.oneOf(["fuchsia"]),pt.oneOf(["gainsboro"]),pt.oneOf(["ghostwhite"]),pt.oneOf(["gold"]),pt.oneOf(["goldenrod"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["greenyellow"]),pt.oneOf(["grey"]),pt.oneOf(["honeydew"]),pt.oneOf(["hotpink"]),pt.oneOf(["indianred"]),pt.oneOf(["indigo"]),pt.oneOf(["ivory"]),pt.oneOf(["khaki"]),pt.oneOf(["lavender"]),pt.oneOf(["lavenderblush"]),pt.oneOf(["lawngreen"]),pt.oneOf(["lemonchiffon"]),pt.oneOf(["lightblue"]),pt.oneOf(["lightcoral"]),pt.oneOf(["lightcyan"]),pt.oneOf(["lightgoldenrodyellow"]),pt.oneOf(["lightgray"]),pt.oneOf(["lightgreen"]),pt.oneOf(["lightgrey"]),pt.oneOf(["lightpink"]),pt.oneOf(["lightsalmon"]),pt.oneOf(["lightseagreen"]),pt.oneOf(["lightskyblue"]),pt.oneOf(["lightslategray"]),pt.oneOf(["lightslategrey"]),pt.oneOf(["lightsteelblue"]),pt.oneOf(["lightyellow"]),pt.oneOf(["lime"]),pt.oneOf(["limegreen"]),pt.oneOf(["linen"]),pt.oneOf(["magenta"]),pt.oneOf(["maroon"]),pt.oneOf(["mediumaquamarine"]),pt.oneOf(["mediumblue"]),pt.oneOf(["mediumorchid"]),pt.oneOf(["mediumpurple"]),pt.oneOf(["mediumseagreen"]),pt.oneOf(["mediumslateblue"]),pt.oneOf(["mediumspringgreen"]),pt.oneOf(["mediumturquoise"]),pt.oneOf(["mediumvioletred"]),pt.oneOf(["midnightblue"]),pt.oneOf(["mintcream"]),pt.oneOf(["mistyrose"]),pt.oneOf(["moccasin"]),pt.oneOf(["navajowhite"]),pt.oneOf(["navy"]),pt.oneOf(["oldlace"]),pt.oneOf(["olive"]),pt.oneOf(["olivedrab"]),pt.oneOf(["orange"]),pt.oneOf(["orangered"]),pt.oneOf(["orchid"]),pt.oneOf(["palegoldenrod"]),pt.oneOf(["palegreen"]),pt.oneOf(["paleturquoise"]),pt.oneOf(["palevioletred"]),pt.oneOf(["papayawhip"]),pt.oneOf(["peachpuff"]),pt.oneOf(["peru"]),pt.oneOf(["pink"]),pt.oneOf(["plum"]),pt.oneOf(["powderblue"]),pt.oneOf(["purple"]),pt.oneOf(["rebeccapurple"]),pt.oneOf(["red"]),pt.oneOf(["rosybrown"]),pt.oneOf(["royalblue"]),pt.oneOf(["saddlebrown"]),pt.oneOf(["salmon"]),pt.oneOf(["sandybrown"]),pt.oneOf(["seagreen"]),pt.oneOf(["seashell"]),pt.oneOf(["sienna"]),pt.oneOf(["silver"]),pt.oneOf(["skyblue"]),pt.oneOf(["slateblue"]),pt.oneOf(["slategray"]),pt.oneOf(["slategrey"]),pt.oneOf(["snow"]),pt.oneOf(["springgreen"]),pt.oneOf(["steelblue"]),pt.oneOf(["tan"]),pt.oneOf(["teal"]),pt.oneOf(["thistle"]),pt.oneOf(["tomato"]),pt.oneOf(["transparent"]),pt.oneOf(["turquoise"]),pt.oneOf(["violet"]),pt.oneOf(["wheat"]),pt.oneOf(["white"]),pt.oneOf(["whitesmoke"]),pt.oneOf(["yellow"]),pt.oneOf(["yellowgreen"]),pt.oneOf(["ActiveBorder"]),pt.oneOf(["ActiveCaption"]),pt.oneOf(["AppWorkspace"]),pt.oneOf(["Background"]),pt.oneOf(["ButtonFace"]),pt.oneOf(["ButtonHighlight"]),pt.oneOf(["ButtonShadow"]),pt.oneOf(["ButtonText"]),pt.oneOf(["CaptionText"]),pt.oneOf(["GrayText"]),pt.oneOf(["Highlight"]),pt.oneOf(["HighlightText"]),pt.oneOf(["InactiveBorder"]),pt.oneOf(["InactiveCaption"]),pt.oneOf(["InactiveCaptionText"]),pt.oneOf(["InfoBackground"]),pt.oneOf(["InfoText"]),pt.oneOf(["Menu"]),pt.oneOf(["MenuText"]),pt.oneOf(["Scrollbar"]),pt.oneOf(["ThreeDDarkShadow"]),pt.oneOf(["ThreeDFace"]),pt.oneOf(["ThreeDHighlight"]),pt.oneOf(["ThreeDLightShadow"]),pt.oneOf(["ThreeDShadow"]),pt.oneOf(["Window"]),pt.oneOf(["WindowFrame"]),pt.oneOf(["WindowText"]),pt.oneOf(["currentcolor"])]),blur:pt.oneOfType([pt.string,pt.number]),gradient:pt.string}),withOverlay:pt.bool,padding:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),title:pt.node,withCloseButton:pt.bool,closeButtonProps:pt.shape({size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),c:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number])}),yOffset:pt.oneOfType([pt.string,pt.number]),xOffset:pt.oneOfType([pt.string,pt.number]),centered:pt.bool,fullScreen:pt.bool,lockScroll:pt.bool,removeScrollProps:pt.object}),
|
|
12495
12649
|
clearable:pt.bool,
|
|
12496
12650
|
clearButtonProps:pt.shape({size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node}),
|
|
12497
12651
|
readOnly:pt.bool,
|
|
@@ -12561,7 +12715,8 @@ pk.DatePickerInput.propTypes = {valueFormat:pt.string,
|
|
|
12561
12715
|
classNames:pt.object,
|
|
12562
12716
|
styles:pt.any,
|
|
12563
12717
|
unstyled:pt.bool,
|
|
12564
|
-
variant:pt.string
|
|
12718
|
+
variant:pt.string,
|
|
12719
|
+
attributes:pt.any};
|
|
12565
12720
|
pk.DateTimePicker.propTypes = {valueFormat:pt.string,
|
|
12566
12721
|
value:pt.string,
|
|
12567
12722
|
timePickerProps:pt.object,
|
|
@@ -12665,11 +12820,11 @@ pk.DateTimePicker.propTypes = {valueFormat:pt.string,
|
|
|
12665
12820
|
descriptionProps:pt.objectOf(pt.any),
|
|
12666
12821
|
errorProps:pt.objectOf(pt.any),
|
|
12667
12822
|
inputWrapperOrder:pt.arrayOf(pt.oneOf(["'label'", "'description'", "'error'", "'input'"])),
|
|
12668
|
-
popoverProps:pt.shape({radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles:pt.bool,hideDetached:pt.bool,position:pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"]),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.bool,rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"]),pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number})]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,padding:pt.oneOfType([pt.number,pt.shape({top:pt.number,left:pt.number,bottom:pt.number,right:pt.number})]),fallbackPlacements:pt.arrayOf(pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"])),fallbackStrategy:pt.oneOf(["'bestFit'", "'initialPlacement'"]),fallbackAxisSideDirection:pt.oneOf(["'end'", "'start'", "'none'"]),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.any,size:pt.oneOfType([pt.any])}),withArrow:pt.bool,arrowSize:pt.number,arrowOffset:pt.number,arrowRadius:pt.number,arrowPosition:pt.oneOf(["'center'", "'side'"]),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),returnFocus:pt.bool,floatingStrategy:pt.oneOf(["'absolute'", "'fixed'"]),overlayProps:pt.object,withOverlay:pt.bool}),
|
|
12823
|
+
popoverProps:pt.shape({radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles:pt.bool,hideDetached:pt.bool,position:pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"]),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.bool,rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"]),pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number})]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,padding:pt.oneOfType([pt.number,pt.shape({top:pt.number,left:pt.number,bottom:pt.number,right:pt.number})]),fallbackPlacements:pt.arrayOf(pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"])),fallbackStrategy:pt.oneOf(["'bestFit'", "'initialPlacement'"]),fallbackAxisSideDirection:pt.oneOf(["'end'", "'start'", "'none'"]),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.any,size:pt.oneOfType([pt.any])}),withArrow:pt.bool,arrowSize:pt.number,arrowOffset:pt.number,arrowRadius:pt.number,arrowPosition:pt.oneOf(["'center'", "'side'"]),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),returnFocus:pt.bool,floatingStrategy:pt.oneOf(["'absolute'", "'fixed'"]),overlayProps:pt.object,withOverlay:pt.bool}),
|
|
12669
12824
|
clearable:pt.bool,
|
|
12670
12825
|
clearButtonProps:pt.shape({size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node}),
|
|
12671
12826
|
dropdownType:pt.oneOf(["'popover'", "'modal'"]),
|
|
12672
|
-
modalProps:pt.shape({className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),c:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number]),size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),opened:pt.bool,closeOnClickOutside:pt.bool,trapFocus:pt.bool,closeOnEscape:pt.bool,keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),returnFocus:pt.bool,overlayProps:pt.shape({transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),c:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),unstyled:pt.bool,children:pt.node,zIndex:pt.oneOfType([pt.string,pt.number]),center:pt.bool,fixed:pt.bool,backgroundOpacity:pt.number,color:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["aliceblue"]),pt.oneOf(["antiquewhite"]),pt.oneOf(["aqua"]),pt.oneOf(["aquamarine"]),pt.oneOf(["azure"]),pt.oneOf(["beige"]),pt.oneOf(["bisque"]),pt.oneOf(["black"]),pt.oneOf(["blanchedalmond"]),pt.oneOf(["blue"]),pt.oneOf(["blueviolet"]),pt.oneOf(["brown"]),pt.oneOf(["burlywood"]),pt.oneOf(["cadetblue"]),pt.oneOf(["chartreuse"]),pt.oneOf(["chocolate"]),pt.oneOf(["coral"]),pt.oneOf(["cornflowerblue"]),pt.oneOf(["cornsilk"]),pt.oneOf(["crimson"]),pt.oneOf(["cyan"]),pt.oneOf(["darkblue"]),pt.oneOf(["darkcyan"]),pt.oneOf(["darkgoldenrod"]),pt.oneOf(["darkgray"]),pt.oneOf(["darkgreen"]),pt.oneOf(["darkgrey"]),pt.oneOf(["darkkhaki"]),pt.oneOf(["darkmagenta"]),pt.oneOf(["darkolivegreen"]),pt.oneOf(["darkorange"]),pt.oneOf(["darkorchid"]),pt.oneOf(["darkred"]),pt.oneOf(["darksalmon"]),pt.oneOf(["darkseagreen"]),pt.oneOf(["darkslateblue"]),pt.oneOf(["darkslategray"]),pt.oneOf(["darkslategrey"]),pt.oneOf(["darkturquoise"]),pt.oneOf(["darkviolet"]),pt.oneOf(["deeppink"]),pt.oneOf(["deepskyblue"]),pt.oneOf(["dimgray"]),pt.oneOf(["dimgrey"]),pt.oneOf(["dodgerblue"]),pt.oneOf(["firebrick"]),pt.oneOf(["floralwhite"]),pt.oneOf(["forestgreen"]),pt.oneOf(["fuchsia"]),pt.oneOf(["gainsboro"]),pt.oneOf(["ghostwhite"]),pt.oneOf(["gold"]),pt.oneOf(["goldenrod"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["greenyellow"]),pt.oneOf(["grey"]),pt.oneOf(["honeydew"]),pt.oneOf(["hotpink"]),pt.oneOf(["indianred"]),pt.oneOf(["indigo"]),pt.oneOf(["ivory"]),pt.oneOf(["khaki"]),pt.oneOf(["lavender"]),pt.oneOf(["lavenderblush"]),pt.oneOf(["lawngreen"]),pt.oneOf(["lemonchiffon"]),pt.oneOf(["lightblue"]),pt.oneOf(["lightcoral"]),pt.oneOf(["lightcyan"]),pt.oneOf(["lightgoldenrodyellow"]),pt.oneOf(["lightgray"]),pt.oneOf(["lightgreen"]),pt.oneOf(["lightgrey"]),pt.oneOf(["lightpink"]),pt.oneOf(["lightsalmon"]),pt.oneOf(["lightseagreen"]),pt.oneOf(["lightskyblue"]),pt.oneOf(["lightslategray"]),pt.oneOf(["lightslategrey"]),pt.oneOf(["lightsteelblue"]),pt.oneOf(["lightyellow"]),pt.oneOf(["lime"]),pt.oneOf(["limegreen"]),pt.oneOf(["linen"]),pt.oneOf(["magenta"]),pt.oneOf(["maroon"]),pt.oneOf(["mediumaquamarine"]),pt.oneOf(["mediumblue"]),pt.oneOf(["mediumorchid"]),pt.oneOf(["mediumpurple"]),pt.oneOf(["mediumseagreen"]),pt.oneOf(["mediumslateblue"]),pt.oneOf(["mediumspringgreen"]),pt.oneOf(["mediumturquoise"]),pt.oneOf(["mediumvioletred"]),pt.oneOf(["midnightblue"]),pt.oneOf(["mintcream"]),pt.oneOf(["mistyrose"]),pt.oneOf(["moccasin"]),pt.oneOf(["navajowhite"]),pt.oneOf(["navy"]),pt.oneOf(["oldlace"]),pt.oneOf(["olive"]),pt.oneOf(["olivedrab"]),pt.oneOf(["orange"]),pt.oneOf(["orangered"]),pt.oneOf(["orchid"]),pt.oneOf(["palegoldenrod"]),pt.oneOf(["palegreen"]),pt.oneOf(["paleturquoise"]),pt.oneOf(["palevioletred"]),pt.oneOf(["papayawhip"]),pt.oneOf(["peachpuff"]),pt.oneOf(["peru"]),pt.oneOf(["pink"]),pt.oneOf(["plum"]),pt.oneOf(["powderblue"]),pt.oneOf(["purple"]),pt.oneOf(["rebeccapurple"]),pt.oneOf(["red"]),pt.oneOf(["rosybrown"]),pt.oneOf(["royalblue"]),pt.oneOf(["saddlebrown"]),pt.oneOf(["salmon"]),pt.oneOf(["sandybrown"]),pt.oneOf(["seagreen"]),pt.oneOf(["seashell"]),pt.oneOf(["sienna"]),pt.oneOf(["silver"]),pt.oneOf(["skyblue"]),pt.oneOf(["slateblue"]),pt.oneOf(["slategray"]),pt.oneOf(["slategrey"]),pt.oneOf(["snow"]),pt.oneOf(["springgreen"]),pt.oneOf(["steelblue"]),pt.oneOf(["tan"]),pt.oneOf(["teal"]),pt.oneOf(["thistle"]),pt.oneOf(["tomato"]),pt.oneOf(["transparent"]),pt.oneOf(["turquoise"]),pt.oneOf(["violet"]),pt.oneOf(["wheat"]),pt.oneOf(["white"]),pt.oneOf(["whitesmoke"]),pt.oneOf(["yellow"]),pt.oneOf(["yellowgreen"]),pt.oneOf(["ActiveBorder"]),pt.oneOf(["ActiveCaption"]),pt.oneOf(["AppWorkspace"]),pt.oneOf(["Background"]),pt.oneOf(["ButtonFace"]),pt.oneOf(["ButtonHighlight"]),pt.oneOf(["ButtonShadow"]),pt.oneOf(["ButtonText"]),pt.oneOf(["CaptionText"]),pt.oneOf(["GrayText"]),pt.oneOf(["Highlight"]),pt.oneOf(["HighlightText"]),pt.oneOf(["InactiveBorder"]),pt.oneOf(["InactiveCaption"]),pt.oneOf(["InactiveCaptionText"]),pt.oneOf(["InfoBackground"]),pt.oneOf(["InfoText"]),pt.oneOf(["Menu"]),pt.oneOf(["MenuText"]),pt.oneOf(["Scrollbar"]),pt.oneOf(["ThreeDDarkShadow"]),pt.oneOf(["ThreeDFace"]),pt.oneOf(["ThreeDHighlight"]),pt.oneOf(["ThreeDLightShadow"]),pt.oneOf(["ThreeDShadow"]),pt.oneOf(["Window"]),pt.oneOf(["WindowFrame"]),pt.oneOf(["WindowText"]),pt.oneOf(["currentcolor"])]),blur:pt.oneOfType([pt.string,pt.number]),gradient:pt.string}),withOverlay:pt.bool,padding:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),title:pt.node,withCloseButton:pt.bool,closeButtonProps:pt.shape({size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),c:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number])}),yOffset:pt.oneOfType([pt.string,pt.number]),xOffset:pt.oneOfType([pt.string,pt.number]),centered:pt.bool,fullScreen:pt.bool,lockScroll:pt.bool,removeScrollProps:pt.object}),
|
|
12827
|
+
modalProps:pt.shape({className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),c:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number]),size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),opened:pt.bool,closeOnClickOutside:pt.bool,trapFocus:pt.bool,closeOnEscape:pt.bool,keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),returnFocus:pt.bool,overlayProps:pt.shape({transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),c:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),unstyled:pt.bool,attributes:pt.any,children:pt.node,zIndex:pt.oneOfType([pt.string,pt.number]),center:pt.bool,fixed:pt.bool,backgroundOpacity:pt.number,color:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["aliceblue"]),pt.oneOf(["antiquewhite"]),pt.oneOf(["aqua"]),pt.oneOf(["aquamarine"]),pt.oneOf(["azure"]),pt.oneOf(["beige"]),pt.oneOf(["bisque"]),pt.oneOf(["black"]),pt.oneOf(["blanchedalmond"]),pt.oneOf(["blue"]),pt.oneOf(["blueviolet"]),pt.oneOf(["brown"]),pt.oneOf(["burlywood"]),pt.oneOf(["cadetblue"]),pt.oneOf(["chartreuse"]),pt.oneOf(["chocolate"]),pt.oneOf(["coral"]),pt.oneOf(["cornflowerblue"]),pt.oneOf(["cornsilk"]),pt.oneOf(["crimson"]),pt.oneOf(["cyan"]),pt.oneOf(["darkblue"]),pt.oneOf(["darkcyan"]),pt.oneOf(["darkgoldenrod"]),pt.oneOf(["darkgray"]),pt.oneOf(["darkgreen"]),pt.oneOf(["darkgrey"]),pt.oneOf(["darkkhaki"]),pt.oneOf(["darkmagenta"]),pt.oneOf(["darkolivegreen"]),pt.oneOf(["darkorange"]),pt.oneOf(["darkorchid"]),pt.oneOf(["darkred"]),pt.oneOf(["darksalmon"]),pt.oneOf(["darkseagreen"]),pt.oneOf(["darkslateblue"]),pt.oneOf(["darkslategray"]),pt.oneOf(["darkslategrey"]),pt.oneOf(["darkturquoise"]),pt.oneOf(["darkviolet"]),pt.oneOf(["deeppink"]),pt.oneOf(["deepskyblue"]),pt.oneOf(["dimgray"]),pt.oneOf(["dimgrey"]),pt.oneOf(["dodgerblue"]),pt.oneOf(["firebrick"]),pt.oneOf(["floralwhite"]),pt.oneOf(["forestgreen"]),pt.oneOf(["fuchsia"]),pt.oneOf(["gainsboro"]),pt.oneOf(["ghostwhite"]),pt.oneOf(["gold"]),pt.oneOf(["goldenrod"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["greenyellow"]),pt.oneOf(["grey"]),pt.oneOf(["honeydew"]),pt.oneOf(["hotpink"]),pt.oneOf(["indianred"]),pt.oneOf(["indigo"]),pt.oneOf(["ivory"]),pt.oneOf(["khaki"]),pt.oneOf(["lavender"]),pt.oneOf(["lavenderblush"]),pt.oneOf(["lawngreen"]),pt.oneOf(["lemonchiffon"]),pt.oneOf(["lightblue"]),pt.oneOf(["lightcoral"]),pt.oneOf(["lightcyan"]),pt.oneOf(["lightgoldenrodyellow"]),pt.oneOf(["lightgray"]),pt.oneOf(["lightgreen"]),pt.oneOf(["lightgrey"]),pt.oneOf(["lightpink"]),pt.oneOf(["lightsalmon"]),pt.oneOf(["lightseagreen"]),pt.oneOf(["lightskyblue"]),pt.oneOf(["lightslategray"]),pt.oneOf(["lightslategrey"]),pt.oneOf(["lightsteelblue"]),pt.oneOf(["lightyellow"]),pt.oneOf(["lime"]),pt.oneOf(["limegreen"]),pt.oneOf(["linen"]),pt.oneOf(["magenta"]),pt.oneOf(["maroon"]),pt.oneOf(["mediumaquamarine"]),pt.oneOf(["mediumblue"]),pt.oneOf(["mediumorchid"]),pt.oneOf(["mediumpurple"]),pt.oneOf(["mediumseagreen"]),pt.oneOf(["mediumslateblue"]),pt.oneOf(["mediumspringgreen"]),pt.oneOf(["mediumturquoise"]),pt.oneOf(["mediumvioletred"]),pt.oneOf(["midnightblue"]),pt.oneOf(["mintcream"]),pt.oneOf(["mistyrose"]),pt.oneOf(["moccasin"]),pt.oneOf(["navajowhite"]),pt.oneOf(["navy"]),pt.oneOf(["oldlace"]),pt.oneOf(["olive"]),pt.oneOf(["olivedrab"]),pt.oneOf(["orange"]),pt.oneOf(["orangered"]),pt.oneOf(["orchid"]),pt.oneOf(["palegoldenrod"]),pt.oneOf(["palegreen"]),pt.oneOf(["paleturquoise"]),pt.oneOf(["palevioletred"]),pt.oneOf(["papayawhip"]),pt.oneOf(["peachpuff"]),pt.oneOf(["peru"]),pt.oneOf(["pink"]),pt.oneOf(["plum"]),pt.oneOf(["powderblue"]),pt.oneOf(["purple"]),pt.oneOf(["rebeccapurple"]),pt.oneOf(["red"]),pt.oneOf(["rosybrown"]),pt.oneOf(["royalblue"]),pt.oneOf(["saddlebrown"]),pt.oneOf(["salmon"]),pt.oneOf(["sandybrown"]),pt.oneOf(["seagreen"]),pt.oneOf(["seashell"]),pt.oneOf(["sienna"]),pt.oneOf(["silver"]),pt.oneOf(["skyblue"]),pt.oneOf(["slateblue"]),pt.oneOf(["slategray"]),pt.oneOf(["slategrey"]),pt.oneOf(["snow"]),pt.oneOf(["springgreen"]),pt.oneOf(["steelblue"]),pt.oneOf(["tan"]),pt.oneOf(["teal"]),pt.oneOf(["thistle"]),pt.oneOf(["tomato"]),pt.oneOf(["transparent"]),pt.oneOf(["turquoise"]),pt.oneOf(["violet"]),pt.oneOf(["wheat"]),pt.oneOf(["white"]),pt.oneOf(["whitesmoke"]),pt.oneOf(["yellow"]),pt.oneOf(["yellowgreen"]),pt.oneOf(["ActiveBorder"]),pt.oneOf(["ActiveCaption"]),pt.oneOf(["AppWorkspace"]),pt.oneOf(["Background"]),pt.oneOf(["ButtonFace"]),pt.oneOf(["ButtonHighlight"]),pt.oneOf(["ButtonShadow"]),pt.oneOf(["ButtonText"]),pt.oneOf(["CaptionText"]),pt.oneOf(["GrayText"]),pt.oneOf(["Highlight"]),pt.oneOf(["HighlightText"]),pt.oneOf(["InactiveBorder"]),pt.oneOf(["InactiveCaption"]),pt.oneOf(["InactiveCaptionText"]),pt.oneOf(["InfoBackground"]),pt.oneOf(["InfoText"]),pt.oneOf(["Menu"]),pt.oneOf(["MenuText"]),pt.oneOf(["Scrollbar"]),pt.oneOf(["ThreeDDarkShadow"]),pt.oneOf(["ThreeDFace"]),pt.oneOf(["ThreeDHighlight"]),pt.oneOf(["ThreeDLightShadow"]),pt.oneOf(["ThreeDShadow"]),pt.oneOf(["Window"]),pt.oneOf(["WindowFrame"]),pt.oneOf(["WindowText"]),pt.oneOf(["currentcolor"])]),blur:pt.oneOfType([pt.string,pt.number]),gradient:pt.string}),withOverlay:pt.bool,padding:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),title:pt.node,withCloseButton:pt.bool,closeButtonProps:pt.shape({size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),c:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number])}),yOffset:pt.oneOfType([pt.string,pt.number]),xOffset:pt.oneOfType([pt.string,pt.number]),centered:pt.bool,fullScreen:pt.bool,lockScroll:pt.bool,removeScrollProps:pt.object}),
|
|
12673
12828
|
sortDates:pt.bool,
|
|
12674
12829
|
labelSeparator:pt.string,
|
|
12675
12830
|
numberOfColumns:pt.number,
|
|
@@ -12704,7 +12859,8 @@ pk.DateTimePicker.propTypes = {valueFormat:pt.string,
|
|
|
12704
12859
|
classNames:pt.object,
|
|
12705
12860
|
styles:pt.any,
|
|
12706
12861
|
unstyled:pt.bool,
|
|
12707
|
-
variant:pt.string
|
|
12862
|
+
variant:pt.string,
|
|
12863
|
+
attributes:pt.any};
|
|
12708
12864
|
pk.DatesProvider.propTypes = {id:pt.string,
|
|
12709
12865
|
setProps:pt.any,
|
|
12710
12866
|
settings:pt.shape({locale:pt.string,firstDayOfWeek:pt.oneOf([0, 1, 2, 3, 4, 5, 6]),weekendDays:pt.arrayOf(pt.oneOf([0, 1, 2, 3, 4, 5, 6])),labelSeparator:pt.string,consistentWeeks:pt.bool}),
|
|
@@ -12780,8 +12936,8 @@ pk.MonthPickerInput.propTypes = {valueFormat:pt.string,
|
|
|
12780
12936
|
flex:pt.oneOfType([pt.string,pt.number]),
|
|
12781
12937
|
closeOnChange:pt.bool,
|
|
12782
12938
|
dropdownType:pt.oneOf(["'popover'", "'modal'"]),
|
|
12783
|
-
popoverProps:pt.shape({radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles:pt.bool,hideDetached:pt.bool,position:pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"]),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.bool,rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"]),pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number})]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,padding:pt.oneOfType([pt.number,pt.shape({top:pt.number,left:pt.number,bottom:pt.number,right:pt.number})]),fallbackPlacements:pt.arrayOf(pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"])),fallbackStrategy:pt.oneOf(["'bestFit'", "'initialPlacement'"]),fallbackAxisSideDirection:pt.oneOf(["'end'", "'start'", "'none'"]),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.any,size:pt.oneOfType([pt.any])}),withArrow:pt.bool,arrowSize:pt.number,arrowOffset:pt.number,arrowRadius:pt.number,arrowPosition:pt.oneOf(["'center'", "'side'"]),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),returnFocus:pt.bool,floatingStrategy:pt.oneOf(["'absolute'", "'fixed'"]),overlayProps:pt.object,withOverlay:pt.bool}),
|
|
12784
|
-
modalProps:pt.shape({className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),c:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number]),size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),opened:pt.bool,closeOnClickOutside:pt.bool,trapFocus:pt.bool,closeOnEscape:pt.bool,keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),returnFocus:pt.bool,overlayProps:pt.shape({transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),c:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),unstyled:pt.bool,children:pt.node,zIndex:pt.oneOfType([pt.string,pt.number]),center:pt.bool,fixed:pt.bool,backgroundOpacity:pt.number,color:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["aliceblue"]),pt.oneOf(["antiquewhite"]),pt.oneOf(["aqua"]),pt.oneOf(["aquamarine"]),pt.oneOf(["azure"]),pt.oneOf(["beige"]),pt.oneOf(["bisque"]),pt.oneOf(["black"]),pt.oneOf(["blanchedalmond"]),pt.oneOf(["blue"]),pt.oneOf(["blueviolet"]),pt.oneOf(["brown"]),pt.oneOf(["burlywood"]),pt.oneOf(["cadetblue"]),pt.oneOf(["chartreuse"]),pt.oneOf(["chocolate"]),pt.oneOf(["coral"]),pt.oneOf(["cornflowerblue"]),pt.oneOf(["cornsilk"]),pt.oneOf(["crimson"]),pt.oneOf(["cyan"]),pt.oneOf(["darkblue"]),pt.oneOf(["darkcyan"]),pt.oneOf(["darkgoldenrod"]),pt.oneOf(["darkgray"]),pt.oneOf(["darkgreen"]),pt.oneOf(["darkgrey"]),pt.oneOf(["darkkhaki"]),pt.oneOf(["darkmagenta"]),pt.oneOf(["darkolivegreen"]),pt.oneOf(["darkorange"]),pt.oneOf(["darkorchid"]),pt.oneOf(["darkred"]),pt.oneOf(["darksalmon"]),pt.oneOf(["darkseagreen"]),pt.oneOf(["darkslateblue"]),pt.oneOf(["darkslategray"]),pt.oneOf(["darkslategrey"]),pt.oneOf(["darkturquoise"]),pt.oneOf(["darkviolet"]),pt.oneOf(["deeppink"]),pt.oneOf(["deepskyblue"]),pt.oneOf(["dimgray"]),pt.oneOf(["dimgrey"]),pt.oneOf(["dodgerblue"]),pt.oneOf(["firebrick"]),pt.oneOf(["floralwhite"]),pt.oneOf(["forestgreen"]),pt.oneOf(["fuchsia"]),pt.oneOf(["gainsboro"]),pt.oneOf(["ghostwhite"]),pt.oneOf(["gold"]),pt.oneOf(["goldenrod"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["greenyellow"]),pt.oneOf(["grey"]),pt.oneOf(["honeydew"]),pt.oneOf(["hotpink"]),pt.oneOf(["indianred"]),pt.oneOf(["indigo"]),pt.oneOf(["ivory"]),pt.oneOf(["khaki"]),pt.oneOf(["lavender"]),pt.oneOf(["lavenderblush"]),pt.oneOf(["lawngreen"]),pt.oneOf(["lemonchiffon"]),pt.oneOf(["lightblue"]),pt.oneOf(["lightcoral"]),pt.oneOf(["lightcyan"]),pt.oneOf(["lightgoldenrodyellow"]),pt.oneOf(["lightgray"]),pt.oneOf(["lightgreen"]),pt.oneOf(["lightgrey"]),pt.oneOf(["lightpink"]),pt.oneOf(["lightsalmon"]),pt.oneOf(["lightseagreen"]),pt.oneOf(["lightskyblue"]),pt.oneOf(["lightslategray"]),pt.oneOf(["lightslategrey"]),pt.oneOf(["lightsteelblue"]),pt.oneOf(["lightyellow"]),pt.oneOf(["lime"]),pt.oneOf(["limegreen"]),pt.oneOf(["linen"]),pt.oneOf(["magenta"]),pt.oneOf(["maroon"]),pt.oneOf(["mediumaquamarine"]),pt.oneOf(["mediumblue"]),pt.oneOf(["mediumorchid"]),pt.oneOf(["mediumpurple"]),pt.oneOf(["mediumseagreen"]),pt.oneOf(["mediumslateblue"]),pt.oneOf(["mediumspringgreen"]),pt.oneOf(["mediumturquoise"]),pt.oneOf(["mediumvioletred"]),pt.oneOf(["midnightblue"]),pt.oneOf(["mintcream"]),pt.oneOf(["mistyrose"]),pt.oneOf(["moccasin"]),pt.oneOf(["navajowhite"]),pt.oneOf(["navy"]),pt.oneOf(["oldlace"]),pt.oneOf(["olive"]),pt.oneOf(["olivedrab"]),pt.oneOf(["orange"]),pt.oneOf(["orangered"]),pt.oneOf(["orchid"]),pt.oneOf(["palegoldenrod"]),pt.oneOf(["palegreen"]),pt.oneOf(["paleturquoise"]),pt.oneOf(["palevioletred"]),pt.oneOf(["papayawhip"]),pt.oneOf(["peachpuff"]),pt.oneOf(["peru"]),pt.oneOf(["pink"]),pt.oneOf(["plum"]),pt.oneOf(["powderblue"]),pt.oneOf(["purple"]),pt.oneOf(["rebeccapurple"]),pt.oneOf(["red"]),pt.oneOf(["rosybrown"]),pt.oneOf(["royalblue"]),pt.oneOf(["saddlebrown"]),pt.oneOf(["salmon"]),pt.oneOf(["sandybrown"]),pt.oneOf(["seagreen"]),pt.oneOf(["seashell"]),pt.oneOf(["sienna"]),pt.oneOf(["silver"]),pt.oneOf(["skyblue"]),pt.oneOf(["slateblue"]),pt.oneOf(["slategray"]),pt.oneOf(["slategrey"]),pt.oneOf(["snow"]),pt.oneOf(["springgreen"]),pt.oneOf(["steelblue"]),pt.oneOf(["tan"]),pt.oneOf(["teal"]),pt.oneOf(["thistle"]),pt.oneOf(["tomato"]),pt.oneOf(["transparent"]),pt.oneOf(["turquoise"]),pt.oneOf(["violet"]),pt.oneOf(["wheat"]),pt.oneOf(["white"]),pt.oneOf(["whitesmoke"]),pt.oneOf(["yellow"]),pt.oneOf(["yellowgreen"]),pt.oneOf(["ActiveBorder"]),pt.oneOf(["ActiveCaption"]),pt.oneOf(["AppWorkspace"]),pt.oneOf(["Background"]),pt.oneOf(["ButtonFace"]),pt.oneOf(["ButtonHighlight"]),pt.oneOf(["ButtonShadow"]),pt.oneOf(["ButtonText"]),pt.oneOf(["CaptionText"]),pt.oneOf(["GrayText"]),pt.oneOf(["Highlight"]),pt.oneOf(["HighlightText"]),pt.oneOf(["InactiveBorder"]),pt.oneOf(["InactiveCaption"]),pt.oneOf(["InactiveCaptionText"]),pt.oneOf(["InfoBackground"]),pt.oneOf(["InfoText"]),pt.oneOf(["Menu"]),pt.oneOf(["MenuText"]),pt.oneOf(["Scrollbar"]),pt.oneOf(["ThreeDDarkShadow"]),pt.oneOf(["ThreeDFace"]),pt.oneOf(["ThreeDHighlight"]),pt.oneOf(["ThreeDLightShadow"]),pt.oneOf(["ThreeDShadow"]),pt.oneOf(["Window"]),pt.oneOf(["WindowFrame"]),pt.oneOf(["WindowText"]),pt.oneOf(["currentcolor"])]),blur:pt.oneOfType([pt.string,pt.number]),gradient:pt.string}),withOverlay:pt.bool,padding:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),title:pt.node,withCloseButton:pt.bool,closeButtonProps:pt.shape({size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),c:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number])}),yOffset:pt.oneOfType([pt.string,pt.number]),xOffset:pt.oneOfType([pt.string,pt.number]),centered:pt.bool,fullScreen:pt.bool,lockScroll:pt.bool,removeScrollProps:pt.object}),
|
|
12939
|
+
popoverProps:pt.shape({radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles:pt.bool,hideDetached:pt.bool,position:pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"]),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.bool,rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"]),pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number})]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,padding:pt.oneOfType([pt.number,pt.shape({top:pt.number,left:pt.number,bottom:pt.number,right:pt.number})]),fallbackPlacements:pt.arrayOf(pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"])),fallbackStrategy:pt.oneOf(["'bestFit'", "'initialPlacement'"]),fallbackAxisSideDirection:pt.oneOf(["'end'", "'start'", "'none'"]),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.any,size:pt.oneOfType([pt.any])}),withArrow:pt.bool,arrowSize:pt.number,arrowOffset:pt.number,arrowRadius:pt.number,arrowPosition:pt.oneOf(["'center'", "'side'"]),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),returnFocus:pt.bool,floatingStrategy:pt.oneOf(["'absolute'", "'fixed'"]),overlayProps:pt.object,withOverlay:pt.bool}),
|
|
12940
|
+
modalProps:pt.shape({className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),c:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number]),size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),opened:pt.bool,closeOnClickOutside:pt.bool,trapFocus:pt.bool,closeOnEscape:pt.bool,keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),returnFocus:pt.bool,overlayProps:pt.shape({transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),c:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),unstyled:pt.bool,attributes:pt.any,children:pt.node,zIndex:pt.oneOfType([pt.string,pt.number]),center:pt.bool,fixed:pt.bool,backgroundOpacity:pt.number,color:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["aliceblue"]),pt.oneOf(["antiquewhite"]),pt.oneOf(["aqua"]),pt.oneOf(["aquamarine"]),pt.oneOf(["azure"]),pt.oneOf(["beige"]),pt.oneOf(["bisque"]),pt.oneOf(["black"]),pt.oneOf(["blanchedalmond"]),pt.oneOf(["blue"]),pt.oneOf(["blueviolet"]),pt.oneOf(["brown"]),pt.oneOf(["burlywood"]),pt.oneOf(["cadetblue"]),pt.oneOf(["chartreuse"]),pt.oneOf(["chocolate"]),pt.oneOf(["coral"]),pt.oneOf(["cornflowerblue"]),pt.oneOf(["cornsilk"]),pt.oneOf(["crimson"]),pt.oneOf(["cyan"]),pt.oneOf(["darkblue"]),pt.oneOf(["darkcyan"]),pt.oneOf(["darkgoldenrod"]),pt.oneOf(["darkgray"]),pt.oneOf(["darkgreen"]),pt.oneOf(["darkgrey"]),pt.oneOf(["darkkhaki"]),pt.oneOf(["darkmagenta"]),pt.oneOf(["darkolivegreen"]),pt.oneOf(["darkorange"]),pt.oneOf(["darkorchid"]),pt.oneOf(["darkred"]),pt.oneOf(["darksalmon"]),pt.oneOf(["darkseagreen"]),pt.oneOf(["darkslateblue"]),pt.oneOf(["darkslategray"]),pt.oneOf(["darkslategrey"]),pt.oneOf(["darkturquoise"]),pt.oneOf(["darkviolet"]),pt.oneOf(["deeppink"]),pt.oneOf(["deepskyblue"]),pt.oneOf(["dimgray"]),pt.oneOf(["dimgrey"]),pt.oneOf(["dodgerblue"]),pt.oneOf(["firebrick"]),pt.oneOf(["floralwhite"]),pt.oneOf(["forestgreen"]),pt.oneOf(["fuchsia"]),pt.oneOf(["gainsboro"]),pt.oneOf(["ghostwhite"]),pt.oneOf(["gold"]),pt.oneOf(["goldenrod"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["greenyellow"]),pt.oneOf(["grey"]),pt.oneOf(["honeydew"]),pt.oneOf(["hotpink"]),pt.oneOf(["indianred"]),pt.oneOf(["indigo"]),pt.oneOf(["ivory"]),pt.oneOf(["khaki"]),pt.oneOf(["lavender"]),pt.oneOf(["lavenderblush"]),pt.oneOf(["lawngreen"]),pt.oneOf(["lemonchiffon"]),pt.oneOf(["lightblue"]),pt.oneOf(["lightcoral"]),pt.oneOf(["lightcyan"]),pt.oneOf(["lightgoldenrodyellow"]),pt.oneOf(["lightgray"]),pt.oneOf(["lightgreen"]),pt.oneOf(["lightgrey"]),pt.oneOf(["lightpink"]),pt.oneOf(["lightsalmon"]),pt.oneOf(["lightseagreen"]),pt.oneOf(["lightskyblue"]),pt.oneOf(["lightslategray"]),pt.oneOf(["lightslategrey"]),pt.oneOf(["lightsteelblue"]),pt.oneOf(["lightyellow"]),pt.oneOf(["lime"]),pt.oneOf(["limegreen"]),pt.oneOf(["linen"]),pt.oneOf(["magenta"]),pt.oneOf(["maroon"]),pt.oneOf(["mediumaquamarine"]),pt.oneOf(["mediumblue"]),pt.oneOf(["mediumorchid"]),pt.oneOf(["mediumpurple"]),pt.oneOf(["mediumseagreen"]),pt.oneOf(["mediumslateblue"]),pt.oneOf(["mediumspringgreen"]),pt.oneOf(["mediumturquoise"]),pt.oneOf(["mediumvioletred"]),pt.oneOf(["midnightblue"]),pt.oneOf(["mintcream"]),pt.oneOf(["mistyrose"]),pt.oneOf(["moccasin"]),pt.oneOf(["navajowhite"]),pt.oneOf(["navy"]),pt.oneOf(["oldlace"]),pt.oneOf(["olive"]),pt.oneOf(["olivedrab"]),pt.oneOf(["orange"]),pt.oneOf(["orangered"]),pt.oneOf(["orchid"]),pt.oneOf(["palegoldenrod"]),pt.oneOf(["palegreen"]),pt.oneOf(["paleturquoise"]),pt.oneOf(["palevioletred"]),pt.oneOf(["papayawhip"]),pt.oneOf(["peachpuff"]),pt.oneOf(["peru"]),pt.oneOf(["pink"]),pt.oneOf(["plum"]),pt.oneOf(["powderblue"]),pt.oneOf(["purple"]),pt.oneOf(["rebeccapurple"]),pt.oneOf(["red"]),pt.oneOf(["rosybrown"]),pt.oneOf(["royalblue"]),pt.oneOf(["saddlebrown"]),pt.oneOf(["salmon"]),pt.oneOf(["sandybrown"]),pt.oneOf(["seagreen"]),pt.oneOf(["seashell"]),pt.oneOf(["sienna"]),pt.oneOf(["silver"]),pt.oneOf(["skyblue"]),pt.oneOf(["slateblue"]),pt.oneOf(["slategray"]),pt.oneOf(["slategrey"]),pt.oneOf(["snow"]),pt.oneOf(["springgreen"]),pt.oneOf(["steelblue"]),pt.oneOf(["tan"]),pt.oneOf(["teal"]),pt.oneOf(["thistle"]),pt.oneOf(["tomato"]),pt.oneOf(["transparent"]),pt.oneOf(["turquoise"]),pt.oneOf(["violet"]),pt.oneOf(["wheat"]),pt.oneOf(["white"]),pt.oneOf(["whitesmoke"]),pt.oneOf(["yellow"]),pt.oneOf(["yellowgreen"]),pt.oneOf(["ActiveBorder"]),pt.oneOf(["ActiveCaption"]),pt.oneOf(["AppWorkspace"]),pt.oneOf(["Background"]),pt.oneOf(["ButtonFace"]),pt.oneOf(["ButtonHighlight"]),pt.oneOf(["ButtonShadow"]),pt.oneOf(["ButtonText"]),pt.oneOf(["CaptionText"]),pt.oneOf(["GrayText"]),pt.oneOf(["Highlight"]),pt.oneOf(["HighlightText"]),pt.oneOf(["InactiveBorder"]),pt.oneOf(["InactiveCaption"]),pt.oneOf(["InactiveCaptionText"]),pt.oneOf(["InfoBackground"]),pt.oneOf(["InfoText"]),pt.oneOf(["Menu"]),pt.oneOf(["MenuText"]),pt.oneOf(["Scrollbar"]),pt.oneOf(["ThreeDDarkShadow"]),pt.oneOf(["ThreeDFace"]),pt.oneOf(["ThreeDHighlight"]),pt.oneOf(["ThreeDLightShadow"]),pt.oneOf(["ThreeDShadow"]),pt.oneOf(["Window"]),pt.oneOf(["WindowFrame"]),pt.oneOf(["WindowText"]),pt.oneOf(["currentcolor"])]),blur:pt.oneOfType([pt.string,pt.number]),gradient:pt.string}),withOverlay:pt.bool,padding:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),title:pt.node,withCloseButton:pt.bool,closeButtonProps:pt.shape({size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),c:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number])}),yOffset:pt.oneOfType([pt.string,pt.number]),xOffset:pt.oneOfType([pt.string,pt.number]),centered:pt.bool,fullScreen:pt.bool,lockScroll:pt.bool,removeScrollProps:pt.object}),
|
|
12785
12941
|
clearable:pt.bool,
|
|
12786
12942
|
clearButtonProps:pt.shape({size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node}),
|
|
12787
12943
|
readOnly:pt.bool,
|
|
@@ -12850,7 +13006,8 @@ pk.MonthPickerInput.propTypes = {valueFormat:pt.string,
|
|
|
12850
13006
|
classNames:pt.object,
|
|
12851
13007
|
styles:pt.any,
|
|
12852
13008
|
unstyled:pt.bool,
|
|
12853
|
-
variant:pt.string
|
|
13009
|
+
variant:pt.string,
|
|
13010
|
+
attributes:pt.any};
|
|
12854
13011
|
pk.TimeGrid.propTypes = {value:pt.string,
|
|
12855
13012
|
id:pt.string,
|
|
12856
13013
|
setProps:pt.any,
|
|
@@ -12935,7 +13092,8 @@ pk.TimeGrid.propTypes = {value:pt.string,
|
|
|
12935
13092
|
classNames:pt.object,
|
|
12936
13093
|
styles:pt.any,
|
|
12937
13094
|
unstyled:pt.bool,
|
|
12938
|
-
variant:pt.string
|
|
13095
|
+
variant:pt.string,
|
|
13096
|
+
attributes:pt.any};
|
|
12939
13097
|
pk.TimeInput.propTypes = {value:pt.string,
|
|
12940
13098
|
id:pt.string,
|
|
12941
13099
|
setProps:pt.any,
|
|
@@ -13039,7 +13197,8 @@ pk.TimeInput.propTypes = {value:pt.string,
|
|
|
13039
13197
|
classNames:pt.object,
|
|
13040
13198
|
styles:pt.any,
|
|
13041
13199
|
unstyled:pt.bool,
|
|
13042
|
-
variant:pt.string
|
|
13200
|
+
variant:pt.string,
|
|
13201
|
+
attributes:pt.any};
|
|
13043
13202
|
pk.TimePicker.propTypes = {value:pt.string,
|
|
13044
13203
|
id:pt.string,
|
|
13045
13204
|
setProps:pt.any,
|
|
@@ -13070,7 +13229,7 @@ pk.TimePicker.propTypes = {value:pt.string,
|
|
|
13070
13229
|
amPmInputLabel:pt.string,
|
|
13071
13230
|
amPmLabels:pt.shape({am:pt.string,pm:pt.string}),
|
|
13072
13231
|
withDropdown:pt.bool,
|
|
13073
|
-
popoverProps:pt.shape({children:pt.node,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles:pt.bool,hideDetached:pt.bool,position:pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"]),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.bool,rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"]),pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number})]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,padding:pt.oneOfType([pt.number,pt.shape({top:pt.number,left:pt.number,bottom:pt.number,right:pt.number})]),fallbackPlacements:pt.arrayOf(pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"])),fallbackStrategy:pt.oneOf(["'bestFit'", "'initialPlacement'"]),fallbackAxisSideDirection:pt.oneOf(["'end'", "'start'", "'none'"]),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.any,size:pt.oneOfType([pt.any])}),withArrow:pt.bool,arrowSize:pt.number,arrowOffset:pt.number,arrowRadius:pt.number,arrowPosition:pt.oneOf(["'center'", "'side'"]),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,returnFocus:pt.bool,floatingStrategy:pt.oneOf(["'absolute'", "'fixed'"]),overlayProps:pt.object,withOverlay:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string}),
|
|
13232
|
+
popoverProps:pt.shape({children:pt.node,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles:pt.bool,hideDetached:pt.bool,position:pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"]),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.bool,rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"]),pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number})]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,padding:pt.oneOfType([pt.number,pt.shape({top:pt.number,left:pt.number,bottom:pt.number,right:pt.number})]),fallbackPlacements:pt.arrayOf(pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"])),fallbackStrategy:pt.oneOf(["'bestFit'", "'initialPlacement'"]),fallbackAxisSideDirection:pt.oneOf(["'end'", "'start'", "'none'"]),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.any,size:pt.oneOfType([pt.any])}),withArrow:pt.bool,arrowSize:pt.number,arrowOffset:pt.number,arrowRadius:pt.number,arrowPosition:pt.oneOf(["'center'", "'side'"]),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,returnFocus:pt.bool,floatingStrategy:pt.oneOf(["'absolute'", "'fixed'"]),overlayProps:pt.object,withOverlay:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any}),
|
|
13074
13233
|
clearButtonProps:pt.any,
|
|
13075
13234
|
hoursInputProps:pt.any,
|
|
13076
13235
|
minutesInputProps:pt.any,
|
|
@@ -13168,7 +13327,8 @@ pk.TimePicker.propTypes = {value:pt.string,
|
|
|
13168
13327
|
classNames:pt.object,
|
|
13169
13328
|
styles:pt.any,
|
|
13170
13329
|
unstyled:pt.bool,
|
|
13171
|
-
variant:pt.string
|
|
13330
|
+
variant:pt.string,
|
|
13331
|
+
attributes:pt.any};
|
|
13172
13332
|
pk.YearPickerInput.propTypes = {valueFormat:pt.string,
|
|
13173
13333
|
n_submit:pt.number,
|
|
13174
13334
|
debounce:pt.number,
|
|
@@ -13240,8 +13400,8 @@ pk.YearPickerInput.propTypes = {valueFormat:pt.string,
|
|
|
13240
13400
|
flex:pt.oneOfType([pt.string,pt.number]),
|
|
13241
13401
|
closeOnChange:pt.bool,
|
|
13242
13402
|
dropdownType:pt.oneOf(["'popover'", "'modal'"]),
|
|
13243
|
-
popoverProps:pt.shape({radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles:pt.bool,hideDetached:pt.bool,position:pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"]),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.bool,rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"]),pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number})]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,padding:pt.oneOfType([pt.number,pt.shape({top:pt.number,left:pt.number,bottom:pt.number,right:pt.number})]),fallbackPlacements:pt.arrayOf(pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"])),fallbackStrategy:pt.oneOf(["'bestFit'", "'initialPlacement'"]),fallbackAxisSideDirection:pt.oneOf(["'end'", "'start'", "'none'"]),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.any,size:pt.oneOfType([pt.any])}),withArrow:pt.bool,arrowSize:pt.number,arrowOffset:pt.number,arrowRadius:pt.number,arrowPosition:pt.oneOf(["'center'", "'side'"]),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),returnFocus:pt.bool,floatingStrategy:pt.oneOf(["'absolute'", "'fixed'"]),overlayProps:pt.object,withOverlay:pt.bool}),
|
|
13244
|
-
modalProps:pt.shape({className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),c:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number]),size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),opened:pt.bool,closeOnClickOutside:pt.bool,trapFocus:pt.bool,closeOnEscape:pt.bool,keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),returnFocus:pt.bool,overlayProps:pt.shape({transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),c:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),unstyled:pt.bool,children:pt.node,zIndex:pt.oneOfType([pt.string,pt.number]),center:pt.bool,fixed:pt.bool,backgroundOpacity:pt.number,color:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["aliceblue"]),pt.oneOf(["antiquewhite"]),pt.oneOf(["aqua"]),pt.oneOf(["aquamarine"]),pt.oneOf(["azure"]),pt.oneOf(["beige"]),pt.oneOf(["bisque"]),pt.oneOf(["black"]),pt.oneOf(["blanchedalmond"]),pt.oneOf(["blue"]),pt.oneOf(["blueviolet"]),pt.oneOf(["brown"]),pt.oneOf(["burlywood"]),pt.oneOf(["cadetblue"]),pt.oneOf(["chartreuse"]),pt.oneOf(["chocolate"]),pt.oneOf(["coral"]),pt.oneOf(["cornflowerblue"]),pt.oneOf(["cornsilk"]),pt.oneOf(["crimson"]),pt.oneOf(["cyan"]),pt.oneOf(["darkblue"]),pt.oneOf(["darkcyan"]),pt.oneOf(["darkgoldenrod"]),pt.oneOf(["darkgray"]),pt.oneOf(["darkgreen"]),pt.oneOf(["darkgrey"]),pt.oneOf(["darkkhaki"]),pt.oneOf(["darkmagenta"]),pt.oneOf(["darkolivegreen"]),pt.oneOf(["darkorange"]),pt.oneOf(["darkorchid"]),pt.oneOf(["darkred"]),pt.oneOf(["darksalmon"]),pt.oneOf(["darkseagreen"]),pt.oneOf(["darkslateblue"]),pt.oneOf(["darkslategray"]),pt.oneOf(["darkslategrey"]),pt.oneOf(["darkturquoise"]),pt.oneOf(["darkviolet"]),pt.oneOf(["deeppink"]),pt.oneOf(["deepskyblue"]),pt.oneOf(["dimgray"]),pt.oneOf(["dimgrey"]),pt.oneOf(["dodgerblue"]),pt.oneOf(["firebrick"]),pt.oneOf(["floralwhite"]),pt.oneOf(["forestgreen"]),pt.oneOf(["fuchsia"]),pt.oneOf(["gainsboro"]),pt.oneOf(["ghostwhite"]),pt.oneOf(["gold"]),pt.oneOf(["goldenrod"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["greenyellow"]),pt.oneOf(["grey"]),pt.oneOf(["honeydew"]),pt.oneOf(["hotpink"]),pt.oneOf(["indianred"]),pt.oneOf(["indigo"]),pt.oneOf(["ivory"]),pt.oneOf(["khaki"]),pt.oneOf(["lavender"]),pt.oneOf(["lavenderblush"]),pt.oneOf(["lawngreen"]),pt.oneOf(["lemonchiffon"]),pt.oneOf(["lightblue"]),pt.oneOf(["lightcoral"]),pt.oneOf(["lightcyan"]),pt.oneOf(["lightgoldenrodyellow"]),pt.oneOf(["lightgray"]),pt.oneOf(["lightgreen"]),pt.oneOf(["lightgrey"]),pt.oneOf(["lightpink"]),pt.oneOf(["lightsalmon"]),pt.oneOf(["lightseagreen"]),pt.oneOf(["lightskyblue"]),pt.oneOf(["lightslategray"]),pt.oneOf(["lightslategrey"]),pt.oneOf(["lightsteelblue"]),pt.oneOf(["lightyellow"]),pt.oneOf(["lime"]),pt.oneOf(["limegreen"]),pt.oneOf(["linen"]),pt.oneOf(["magenta"]),pt.oneOf(["maroon"]),pt.oneOf(["mediumaquamarine"]),pt.oneOf(["mediumblue"]),pt.oneOf(["mediumorchid"]),pt.oneOf(["mediumpurple"]),pt.oneOf(["mediumseagreen"]),pt.oneOf(["mediumslateblue"]),pt.oneOf(["mediumspringgreen"]),pt.oneOf(["mediumturquoise"]),pt.oneOf(["mediumvioletred"]),pt.oneOf(["midnightblue"]),pt.oneOf(["mintcream"]),pt.oneOf(["mistyrose"]),pt.oneOf(["moccasin"]),pt.oneOf(["navajowhite"]),pt.oneOf(["navy"]),pt.oneOf(["oldlace"]),pt.oneOf(["olive"]),pt.oneOf(["olivedrab"]),pt.oneOf(["orange"]),pt.oneOf(["orangered"]),pt.oneOf(["orchid"]),pt.oneOf(["palegoldenrod"]),pt.oneOf(["palegreen"]),pt.oneOf(["paleturquoise"]),pt.oneOf(["palevioletred"]),pt.oneOf(["papayawhip"]),pt.oneOf(["peachpuff"]),pt.oneOf(["peru"]),pt.oneOf(["pink"]),pt.oneOf(["plum"]),pt.oneOf(["powderblue"]),pt.oneOf(["purple"]),pt.oneOf(["rebeccapurple"]),pt.oneOf(["red"]),pt.oneOf(["rosybrown"]),pt.oneOf(["royalblue"]),pt.oneOf(["saddlebrown"]),pt.oneOf(["salmon"]),pt.oneOf(["sandybrown"]),pt.oneOf(["seagreen"]),pt.oneOf(["seashell"]),pt.oneOf(["sienna"]),pt.oneOf(["silver"]),pt.oneOf(["skyblue"]),pt.oneOf(["slateblue"]),pt.oneOf(["slategray"]),pt.oneOf(["slategrey"]),pt.oneOf(["snow"]),pt.oneOf(["springgreen"]),pt.oneOf(["steelblue"]),pt.oneOf(["tan"]),pt.oneOf(["teal"]),pt.oneOf(["thistle"]),pt.oneOf(["tomato"]),pt.oneOf(["transparent"]),pt.oneOf(["turquoise"]),pt.oneOf(["violet"]),pt.oneOf(["wheat"]),pt.oneOf(["white"]),pt.oneOf(["whitesmoke"]),pt.oneOf(["yellow"]),pt.oneOf(["yellowgreen"]),pt.oneOf(["ActiveBorder"]),pt.oneOf(["ActiveCaption"]),pt.oneOf(["AppWorkspace"]),pt.oneOf(["Background"]),pt.oneOf(["ButtonFace"]),pt.oneOf(["ButtonHighlight"]),pt.oneOf(["ButtonShadow"]),pt.oneOf(["ButtonText"]),pt.oneOf(["CaptionText"]),pt.oneOf(["GrayText"]),pt.oneOf(["Highlight"]),pt.oneOf(["HighlightText"]),pt.oneOf(["InactiveBorder"]),pt.oneOf(["InactiveCaption"]),pt.oneOf(["InactiveCaptionText"]),pt.oneOf(["InfoBackground"]),pt.oneOf(["InfoText"]),pt.oneOf(["Menu"]),pt.oneOf(["MenuText"]),pt.oneOf(["Scrollbar"]),pt.oneOf(["ThreeDDarkShadow"]),pt.oneOf(["ThreeDFace"]),pt.oneOf(["ThreeDHighlight"]),pt.oneOf(["ThreeDLightShadow"]),pt.oneOf(["ThreeDShadow"]),pt.oneOf(["Window"]),pt.oneOf(["WindowFrame"]),pt.oneOf(["WindowText"]),pt.oneOf(["currentcolor"])]),blur:pt.oneOfType([pt.string,pt.number]),gradient:pt.string}),withOverlay:pt.bool,padding:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),title:pt.node,withCloseButton:pt.bool,closeButtonProps:pt.shape({size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),c:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number])}),yOffset:pt.oneOfType([pt.string,pt.number]),xOffset:pt.oneOfType([pt.string,pt.number]),centered:pt.bool,fullScreen:pt.bool,lockScroll:pt.bool,removeScrollProps:pt.object}),
|
|
13403
|
+
popoverProps:pt.shape({radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any,opened:pt.bool,closeOnClickOutside:pt.bool,clickOutsideEvents:pt.arrayOf(pt.string),trapFocus:pt.bool,closeOnEscape:pt.bool,withRoles:pt.bool,hideDetached:pt.bool,position:pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"]),offset:pt.oneOfType([pt.number]),positionDependencies:pt.arrayOf(pt.any),keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),width:pt.oneOfType([pt.string,pt.number]),middlewares:pt.shape({shift:pt.oneOfType([pt.any]),flip:pt.oneOfType([pt.shape({mainAxis:pt.bool,crossAxis:pt.bool,rootBoundary:pt.oneOfType([pt.oneOf(["viewport"]),pt.oneOf(["document"]),pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number})]),elementContext:pt.oneOf(["'reference'", "'floating'"]),altBoundary:pt.bool,padding:pt.oneOfType([pt.number,pt.shape({top:pt.number,left:pt.number,bottom:pt.number,right:pt.number})]),fallbackPlacements:pt.arrayOf(pt.oneOf(["'top'", "'left'", "'bottom'", "'right'", "'top-end'", "'top-start'", "'left-end'", "'left-start'", "'bottom-end'", "'bottom-start'", "'right-end'", "'right-start'"])),fallbackStrategy:pt.oneOf(["'bestFit'", "'initialPlacement'"]),fallbackAxisSideDirection:pt.oneOf(["'end'", "'start'", "'none'"]),flipAlignment:pt.bool,boundary:pt.oneOfType([pt.shape({x:pt.number,y:pt.number,width:pt.number,height:pt.number}),pt.oneOf(["clippingAncestors"]),pt.arrayOf(pt.node)])})]),inline:pt.any,size:pt.oneOfType([pt.any])}),withArrow:pt.bool,arrowSize:pt.number,arrowOffset:pt.number,arrowRadius:pt.number,arrowPosition:pt.oneOf(["'center'", "'side'"]),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),returnFocus:pt.bool,floatingStrategy:pt.oneOf(["'absolute'", "'fixed'"]),overlayProps:pt.object,withOverlay:pt.bool}),
|
|
13404
|
+
modalProps:pt.shape({className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),c:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number]),size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),opened:pt.bool,closeOnClickOutside:pt.bool,trapFocus:pt.bool,closeOnEscape:pt.bool,keepMounted:pt.bool,transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),withinPortal:pt.bool,portalProps:pt.object,zIndex:pt.oneOfType([pt.string,pt.number]),shadow:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),returnFocus:pt.bool,overlayProps:pt.shape({transitionProps:pt.shape({keepMounted:pt.bool,transition:pt.oneOfType([pt.oneOf(["fade"]),pt.oneOf(["fade-down"]),pt.oneOf(["fade-up"]),pt.oneOf(["fade-left"]),pt.oneOf(["fade-right"]),pt.oneOf(["skew-up"]),pt.oneOf(["skew-down"]),pt.oneOf(["rotate-right"]),pt.oneOf(["rotate-left"]),pt.oneOf(["slide-down"]),pt.oneOf(["slide-up"]),pt.oneOf(["slide-right"]),pt.oneOf(["slide-left"]),pt.oneOf(["scale-y"]),pt.oneOf(["scale-x"]),pt.oneOf(["scale"]),pt.oneOf(["pop"]),pt.oneOf(["pop-top-left"]),pt.oneOf(["pop-top-right"]),pt.oneOf(["pop-bottom-left"]),pt.oneOf(["pop-bottom-right"])]),duration:pt.number,exitDuration:pt.number,timingFunction:pt.string,mounted:pt.bool}),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),c:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),unstyled:pt.bool,attributes:pt.any,children:pt.node,zIndex:pt.oneOfType([pt.string,pt.number]),center:pt.bool,fixed:pt.bool,backgroundOpacity:pt.number,color:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["aliceblue"]),pt.oneOf(["antiquewhite"]),pt.oneOf(["aqua"]),pt.oneOf(["aquamarine"]),pt.oneOf(["azure"]),pt.oneOf(["beige"]),pt.oneOf(["bisque"]),pt.oneOf(["black"]),pt.oneOf(["blanchedalmond"]),pt.oneOf(["blue"]),pt.oneOf(["blueviolet"]),pt.oneOf(["brown"]),pt.oneOf(["burlywood"]),pt.oneOf(["cadetblue"]),pt.oneOf(["chartreuse"]),pt.oneOf(["chocolate"]),pt.oneOf(["coral"]),pt.oneOf(["cornflowerblue"]),pt.oneOf(["cornsilk"]),pt.oneOf(["crimson"]),pt.oneOf(["cyan"]),pt.oneOf(["darkblue"]),pt.oneOf(["darkcyan"]),pt.oneOf(["darkgoldenrod"]),pt.oneOf(["darkgray"]),pt.oneOf(["darkgreen"]),pt.oneOf(["darkgrey"]),pt.oneOf(["darkkhaki"]),pt.oneOf(["darkmagenta"]),pt.oneOf(["darkolivegreen"]),pt.oneOf(["darkorange"]),pt.oneOf(["darkorchid"]),pt.oneOf(["darkred"]),pt.oneOf(["darksalmon"]),pt.oneOf(["darkseagreen"]),pt.oneOf(["darkslateblue"]),pt.oneOf(["darkslategray"]),pt.oneOf(["darkslategrey"]),pt.oneOf(["darkturquoise"]),pt.oneOf(["darkviolet"]),pt.oneOf(["deeppink"]),pt.oneOf(["deepskyblue"]),pt.oneOf(["dimgray"]),pt.oneOf(["dimgrey"]),pt.oneOf(["dodgerblue"]),pt.oneOf(["firebrick"]),pt.oneOf(["floralwhite"]),pt.oneOf(["forestgreen"]),pt.oneOf(["fuchsia"]),pt.oneOf(["gainsboro"]),pt.oneOf(["ghostwhite"]),pt.oneOf(["gold"]),pt.oneOf(["goldenrod"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["greenyellow"]),pt.oneOf(["grey"]),pt.oneOf(["honeydew"]),pt.oneOf(["hotpink"]),pt.oneOf(["indianred"]),pt.oneOf(["indigo"]),pt.oneOf(["ivory"]),pt.oneOf(["khaki"]),pt.oneOf(["lavender"]),pt.oneOf(["lavenderblush"]),pt.oneOf(["lawngreen"]),pt.oneOf(["lemonchiffon"]),pt.oneOf(["lightblue"]),pt.oneOf(["lightcoral"]),pt.oneOf(["lightcyan"]),pt.oneOf(["lightgoldenrodyellow"]),pt.oneOf(["lightgray"]),pt.oneOf(["lightgreen"]),pt.oneOf(["lightgrey"]),pt.oneOf(["lightpink"]),pt.oneOf(["lightsalmon"]),pt.oneOf(["lightseagreen"]),pt.oneOf(["lightskyblue"]),pt.oneOf(["lightslategray"]),pt.oneOf(["lightslategrey"]),pt.oneOf(["lightsteelblue"]),pt.oneOf(["lightyellow"]),pt.oneOf(["lime"]),pt.oneOf(["limegreen"]),pt.oneOf(["linen"]),pt.oneOf(["magenta"]),pt.oneOf(["maroon"]),pt.oneOf(["mediumaquamarine"]),pt.oneOf(["mediumblue"]),pt.oneOf(["mediumorchid"]),pt.oneOf(["mediumpurple"]),pt.oneOf(["mediumseagreen"]),pt.oneOf(["mediumslateblue"]),pt.oneOf(["mediumspringgreen"]),pt.oneOf(["mediumturquoise"]),pt.oneOf(["mediumvioletred"]),pt.oneOf(["midnightblue"]),pt.oneOf(["mintcream"]),pt.oneOf(["mistyrose"]),pt.oneOf(["moccasin"]),pt.oneOf(["navajowhite"]),pt.oneOf(["navy"]),pt.oneOf(["oldlace"]),pt.oneOf(["olive"]),pt.oneOf(["olivedrab"]),pt.oneOf(["orange"]),pt.oneOf(["orangered"]),pt.oneOf(["orchid"]),pt.oneOf(["palegoldenrod"]),pt.oneOf(["palegreen"]),pt.oneOf(["paleturquoise"]),pt.oneOf(["palevioletred"]),pt.oneOf(["papayawhip"]),pt.oneOf(["peachpuff"]),pt.oneOf(["peru"]),pt.oneOf(["pink"]),pt.oneOf(["plum"]),pt.oneOf(["powderblue"]),pt.oneOf(["purple"]),pt.oneOf(["rebeccapurple"]),pt.oneOf(["red"]),pt.oneOf(["rosybrown"]),pt.oneOf(["royalblue"]),pt.oneOf(["saddlebrown"]),pt.oneOf(["salmon"]),pt.oneOf(["sandybrown"]),pt.oneOf(["seagreen"]),pt.oneOf(["seashell"]),pt.oneOf(["sienna"]),pt.oneOf(["silver"]),pt.oneOf(["skyblue"]),pt.oneOf(["slateblue"]),pt.oneOf(["slategray"]),pt.oneOf(["slategrey"]),pt.oneOf(["snow"]),pt.oneOf(["springgreen"]),pt.oneOf(["steelblue"]),pt.oneOf(["tan"]),pt.oneOf(["teal"]),pt.oneOf(["thistle"]),pt.oneOf(["tomato"]),pt.oneOf(["transparent"]),pt.oneOf(["turquoise"]),pt.oneOf(["violet"]),pt.oneOf(["wheat"]),pt.oneOf(["white"]),pt.oneOf(["whitesmoke"]),pt.oneOf(["yellow"]),pt.oneOf(["yellowgreen"]),pt.oneOf(["ActiveBorder"]),pt.oneOf(["ActiveCaption"]),pt.oneOf(["AppWorkspace"]),pt.oneOf(["Background"]),pt.oneOf(["ButtonFace"]),pt.oneOf(["ButtonHighlight"]),pt.oneOf(["ButtonShadow"]),pt.oneOf(["ButtonText"]),pt.oneOf(["CaptionText"]),pt.oneOf(["GrayText"]),pt.oneOf(["Highlight"]),pt.oneOf(["HighlightText"]),pt.oneOf(["InactiveBorder"]),pt.oneOf(["InactiveCaption"]),pt.oneOf(["InactiveCaptionText"]),pt.oneOf(["InfoBackground"]),pt.oneOf(["InfoText"]),pt.oneOf(["Menu"]),pt.oneOf(["MenuText"]),pt.oneOf(["Scrollbar"]),pt.oneOf(["ThreeDDarkShadow"]),pt.oneOf(["ThreeDFace"]),pt.oneOf(["ThreeDHighlight"]),pt.oneOf(["ThreeDLightShadow"]),pt.oneOf(["ThreeDShadow"]),pt.oneOf(["Window"]),pt.oneOf(["WindowFrame"]),pt.oneOf(["WindowText"]),pt.oneOf(["currentcolor"])]),blur:pt.oneOfType([pt.string,pt.number]),gradient:pt.string}),withOverlay:pt.bool,padding:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),title:pt.node,withCloseButton:pt.bool,closeButtonProps:pt.shape({size:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node,className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),c:pt.oneOfType([pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["gray"]),pt.oneOf(["green"]),pt.oneOf(["indigo"]),pt.oneOf(["lime"]),pt.oneOf(["orange"]),pt.oneOf(["pink"]),pt.oneOf(["red"]),pt.oneOf(["teal"]),pt.oneOf(["violet"]),pt.oneOf(["yellow"]),pt.oneOf(["dark"]),pt.oneOf(["grape"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["end"]),pt.oneOf(["start"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["center"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["local"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["absolute"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number])}),yOffset:pt.oneOfType([pt.string,pt.number]),xOffset:pt.oneOfType([pt.string,pt.number]),centered:pt.bool,fullScreen:pt.bool,lockScroll:pt.bool,removeScrollProps:pt.object}),
|
|
13245
13405
|
clearable:pt.bool,
|
|
13246
13406
|
clearButtonProps:pt.shape({size:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),disabled:pt.bool,iconSize:pt.oneOfType([pt.string,pt.number]),children:pt.node,icon:pt.node}),
|
|
13247
13407
|
readOnly:pt.bool,
|
|
@@ -13290,7 +13450,8 @@ pk.YearPickerInput.propTypes = {valueFormat:pt.string,
|
|
|
13290
13450
|
classNames:pt.object,
|
|
13291
13451
|
styles:pt.any,
|
|
13292
13452
|
unstyled:pt.bool,
|
|
13293
|
-
variant:pt.string
|
|
13453
|
+
variant:pt.string,
|
|
13454
|
+
attributes:pt.any};
|
|
13294
13455
|
pk.Carousel.propTypes = {children:pt.node,
|
|
13295
13456
|
active:pt.number,
|
|
13296
13457
|
controlSize:pt.oneOfType([pt.string,pt.number]),
|
|
@@ -13371,6 +13532,7 @@ pk.Carousel.propTypes = {children:pt.node,
|
|
|
13371
13532
|
styles:pt.any,
|
|
13372
13533
|
unstyled:pt.bool,
|
|
13373
13534
|
variant:pt.string,
|
|
13535
|
+
attributes:pt.any,
|
|
13374
13536
|
id:pt.string,
|
|
13375
13537
|
setProps:pt.any,
|
|
13376
13538
|
data-*:pt.string,
|
|
@@ -13439,6 +13601,7 @@ pk.CarouselSlide.propTypes = {children:pt.node,
|
|
|
13439
13601
|
styles:pt.any,
|
|
13440
13602
|
unstyled:pt.bool,
|
|
13441
13603
|
variant:pt.string,
|
|
13604
|
+
attributes:pt.any,
|
|
13442
13605
|
id:pt.string,
|
|
13443
13606
|
setProps:pt.any,
|
|
13444
13607
|
data-*:pt.string,
|
|
@@ -13512,6 +13675,7 @@ pk.CodeHighlight.propTypes = {code:pt.string,
|
|
|
13512
13675
|
styles:pt.any,
|
|
13513
13676
|
unstyled:pt.bool,
|
|
13514
13677
|
variant:pt.string,
|
|
13678
|
+
attributes:pt.any,
|
|
13515
13679
|
id:pt.string,
|
|
13516
13680
|
setProps:pt.any,
|
|
13517
13681
|
data-*:pt.string,
|
|
@@ -13590,6 +13754,7 @@ pk.CodeHighlightTabs.propTypes = {code:pt.any,
|
|
|
13590
13754
|
styles:pt.any,
|
|
13591
13755
|
unstyled:pt.bool,
|
|
13592
13756
|
variant:pt.string,
|
|
13757
|
+
attributes:pt.any,
|
|
13593
13758
|
id:pt.string,
|
|
13594
13759
|
setProps:pt.any,
|
|
13595
13760
|
data-*:pt.string,
|
|
@@ -13659,6 +13824,7 @@ pk.InlineCodeHighlight.propTypes = {code:pt.string,
|
|
|
13659
13824
|
styles:pt.any,
|
|
13660
13825
|
unstyled:pt.bool,
|
|
13661
13826
|
variant:pt.string,
|
|
13827
|
+
attributes:pt.any,
|
|
13662
13828
|
id:pt.string,
|
|
13663
13829
|
setProps:pt.any,
|
|
13664
13830
|
data-*:pt.string,
|
|
@@ -13732,6 +13898,7 @@ pk.CodeHighlight.propTypes = {code:pt.string,
|
|
|
13732
13898
|
styles:pt.any,
|
|
13733
13899
|
unstyled:pt.bool,
|
|
13734
13900
|
variant:pt.string,
|
|
13901
|
+
attributes:pt.any,
|
|
13735
13902
|
id:pt.string,
|
|
13736
13903
|
setProps:pt.any,
|
|
13737
13904
|
data-*:pt.string,
|
|
@@ -13810,6 +13977,7 @@ pk.CodeHighlightTabs.propTypes = {code:pt.any,
|
|
|
13810
13977
|
styles:pt.any,
|
|
13811
13978
|
unstyled:pt.bool,
|
|
13812
13979
|
variant:pt.string,
|
|
13980
|
+
attributes:pt.any,
|
|
13813
13981
|
id:pt.string,
|
|
13814
13982
|
setProps:pt.any,
|
|
13815
13983
|
data-*:pt.string,
|
|
@@ -13879,6 +14047,7 @@ pk.InlineCodeHighlight.propTypes = {code:pt.string,
|
|
|
13879
14047
|
styles:pt.any,
|
|
13880
14048
|
unstyled:pt.bool,
|
|
13881
14049
|
variant:pt.string,
|
|
14050
|
+
attributes:pt.any,
|
|
13882
14051
|
id:pt.string,
|
|
13883
14052
|
setProps:pt.any,
|
|
13884
14053
|
data-*:pt.string,
|
|
@@ -13959,6 +14128,7 @@ pk.Notification.propTypes = {color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["g
|
|
|
13959
14128
|
styles:pt.any,
|
|
13960
14129
|
unstyled:pt.bool,
|
|
13961
14130
|
variant:pt.string,
|
|
14131
|
+
attributes:pt.any,
|
|
13962
14132
|
setProps:pt.any,
|
|
13963
14133
|
data-*:pt.string,
|
|
13964
14134
|
aria-*:pt.string,
|
|
@@ -13973,7 +14143,7 @@ pk.NotificationContainer.propTypes = {position:pt.oneOf(["'top-left'", "'top-rig
|
|
|
13973
14143
|
zIndex:pt.oneOfType([pt.string,pt.number]),
|
|
13974
14144
|
withinPortal:pt.bool,
|
|
13975
14145
|
portalProps:pt.object,
|
|
13976
|
-
sendNotifications:pt.arrayOf(pt.shape({color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),icon:pt.any,title:pt.any,loading:pt.bool,withBorder:pt.bool,withCloseButton:pt.bool,closeButtonProps:pt.objectOf(pt.any),id:pt.string,message:pt.any,autoClose:pt.oneOfType([pt.number]),action:pt.oneOf(["'show'", "'update'"]),position:pt.oneOf(["'top-left'", "'top-right'", "'bottom-left'", "'bottom-right'", "'top-center'", "'bottom-center'"]),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),c:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number]),classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string})),
|
|
14146
|
+
sendNotifications:pt.arrayOf(pt.shape({color:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),radius:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),icon:pt.any,title:pt.any,loading:pt.bool,withBorder:pt.bool,withCloseButton:pt.bool,closeButtonProps:pt.objectOf(pt.any),id:pt.string,message:pt.any,autoClose:pt.oneOfType([pt.number]),action:pt.oneOf(["'show'", "'update'"]),position:pt.oneOf(["'top-left'", "'top-right'", "'bottom-left'", "'bottom-right'", "'top-center'", "'bottom-center'"]),className:pt.string,style:pt.oneOfType([pt.any]),hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),visibleFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),lightHidden:pt.bool,darkHidden:pt.bool,mod:pt.oneOfType([pt.string,pt.objectOf(pt.any)]),m:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),my:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mx:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ms:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),me:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ml:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),mr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),p:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),py:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),px:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pt:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pb:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),ps:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pe:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pl:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),pr:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bd:pt.oneOfType([pt.string,pt.number]),bdrs:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),bg:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),c:pt.oneOfType([pt.oneOf(["dark"]),pt.oneOf(["gray"]),pt.oneOf(["red"]),pt.oneOf(["pink"]),pt.oneOf(["grape"]),pt.oneOf(["violet"]),pt.oneOf(["indigo"]),pt.oneOf(["blue"]),pt.oneOf(["cyan"]),pt.oneOf(["green"]),pt.oneOf(["lime"]),pt.oneOf(["yellow"]),pt.oneOf(["orange"]),pt.oneOf(["teal"])]),opacity:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"])]),ff:pt.oneOfType([pt.oneOf(["monospace"]),pt.oneOf(["text"]),pt.oneOf(["heading"])]),fz:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fw:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["bold"]),pt.oneOf(["normal"]),pt.oneOf(["bolder"]),pt.oneOf(["lighter"])]),lts:pt.oneOfType([pt.string,pt.number]),ta:pt.oneOfType([pt.oneOf(["left"]),pt.oneOf(["right"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["-webkit-match-parent"]),pt.oneOf(["center"]),pt.oneOf(["end"]),pt.oneOf(["justify"]),pt.oneOf(["match-parent"]),pt.oneOf(["start"])]),lh:pt.oneOfType([pt.number,pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"]),pt.oneOf(["h1"]),pt.oneOf(["h2"]),pt.oneOf(["h3"]),pt.oneOf(["h4"]),pt.oneOf(["h5"]),pt.oneOf(["h6"])]),fs:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["normal"]),pt.oneOf(["italic"]),pt.oneOf(["oblique"])]),tt:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["capitalize"]),pt.oneOf(["full-size-kana"]),pt.oneOf(["full-width"]),pt.oneOf(["lowercase"]),pt.oneOf(["uppercase"])]),td:pt.oneOfType([pt.string,pt.number]),w:pt.oneOfType([pt.string,pt.number]),miw:pt.oneOfType([pt.string,pt.number]),maw:pt.oneOfType([pt.string,pt.number]),h:pt.oneOfType([pt.string,pt.number]),mih:pt.oneOfType([pt.string,pt.number]),mah:pt.oneOfType([pt.string,pt.number]),bgsz:pt.oneOfType([pt.string,pt.number]),bgp:pt.oneOfType([pt.string,pt.number]),bgr:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["no-repeat"]),pt.oneOf(["repeat"]),pt.oneOf(["repeat-x"]),pt.oneOf(["repeat-y"]),pt.oneOf(["round"]),pt.oneOf(["space"])]),bga:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["local"]),pt.oneOf(["scroll"])]),pos:pt.oneOfType([pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["fixed"]),pt.oneOf(["-webkit-sticky"]),pt.oneOf(["absolute"]),pt.oneOf(["relative"]),pt.oneOf(["static"]),pt.oneOf(["sticky"])]),top:pt.oneOfType([pt.string,pt.number]),left:pt.oneOfType([pt.string,pt.number]),bottom:pt.oneOfType([pt.string,pt.number]),right:pt.oneOfType([pt.string,pt.number]),inset:pt.oneOfType([pt.string,pt.number]),display:pt.oneOfType([pt.oneOf(["flex"]),pt.oneOf(["-moz-initial"]),pt.oneOf(["inherit"]),pt.oneOf(["initial"]),pt.oneOf(["revert"]),pt.oneOf(["revert-layer"]),pt.oneOf(["unset"]),pt.oneOf(["none"]),pt.oneOf(["block"]),pt.oneOf(["inline"]),pt.oneOf(["run-in"]),pt.oneOf(["-ms-flexbox"]),pt.oneOf(["-ms-grid"]),pt.oneOf(["-webkit-flex"]),pt.oneOf(["flow"]),pt.oneOf(["flow-root"]),pt.oneOf(["grid"]),pt.oneOf(["ruby"]),pt.oneOf(["table"]),pt.oneOf(["ruby-base"]),pt.oneOf(["ruby-base-container"]),pt.oneOf(["ruby-text"]),pt.oneOf(["ruby-text-container"]),pt.oneOf(["table-caption"]),pt.oneOf(["table-cell"]),pt.oneOf(["table-column"]),pt.oneOf(["table-column-group"]),pt.oneOf(["table-footer-group"]),pt.oneOf(["table-header-group"]),pt.oneOf(["table-row"]),pt.oneOf(["table-row-group"]),pt.oneOf(["-ms-inline-flexbox"]),pt.oneOf(["-ms-inline-grid"]),pt.oneOf(["-webkit-inline-flex"]),pt.oneOf(["inline-block"]),pt.oneOf(["inline-flex"]),pt.oneOf(["inline-grid"]),pt.oneOf(["inline-list-item"]),pt.oneOf(["inline-table"]),pt.oneOf(["contents"]),pt.oneOf(["list-item"])]),flex:pt.oneOfType([pt.string,pt.number]),classNames:pt.object,styles:pt.any,unstyled:pt.bool,variant:pt.string,attributes:pt.any})),
|
|
13977
14147
|
hideNotifications:pt.arrayOf(pt.string),
|
|
13978
14148
|
clean:pt.bool,
|
|
13979
14149
|
cleanQueue:pt.bool,
|
|
@@ -14038,6 +14208,7 @@ pk.NotificationContainer.propTypes = {position:pt.oneOf(["'top-left'", "'top-rig
|
|
|
14038
14208
|
styles:pt.any,
|
|
14039
14209
|
unstyled:pt.bool,
|
|
14040
14210
|
variant:pt.string,
|
|
14211
|
+
attributes:pt.any,
|
|
14041
14212
|
id:pt.string,
|
|
14042
14213
|
setProps:pt.any,
|
|
14043
14214
|
data-*:pt.string,
|
|
@@ -14113,6 +14284,7 @@ pk.NotificationProvider.propTypes = {position:pt.oneOf(["'top-left'", "'top-righ
|
|
|
14113
14284
|
styles:pt.any,
|
|
14114
14285
|
unstyled:pt.bool,
|
|
14115
14286
|
variant:pt.string,
|
|
14287
|
+
attributes:pt.any,
|
|
14116
14288
|
id:pt.string,
|
|
14117
14289
|
setProps:pt.any,
|
|
14118
14290
|
data-*:pt.string,
|
|
@@ -14143,7 +14315,7 @@ pk.RichTextEditor.propTypes = {json:pt.object,
|
|
|
14143
14315
|
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"])])))}),
|
|
14144
14316
|
withCodeHighlightStyles:pt.bool,
|
|
14145
14317
|
withTypographyStyles:pt.bool,
|
|
14146
|
-
labels:pt.shape({boldControlLabel:pt.string,hrControlLabel:pt.string,italicControlLabel:pt.string,underlineControlLabel:pt.string,strikeControlLabel:pt.string,clearFormattingControlLabel:pt.string,linkControlLabel:pt.string,unlinkControlLabel:pt.string,bulletListControlLabel:pt.string,orderedListControlLabel:pt.string,h1ControlLabel:pt.string,h2ControlLabel:pt.string,h3ControlLabel:pt.string,h4ControlLabel:pt.string,h5ControlLabel:pt.string,h6ControlLabel:pt.string,blockquoteControlLabel:pt.string,alignLeftControlLabel:pt.string,alignCenterControlLabel:pt.string,alignRightControlLabel:pt.string,alignJustifyControlLabel:pt.string,codeControlLabel:pt.string,codeBlockControlLabel:pt.string,subscriptControlLabel:pt.string,superscriptControlLabel:pt.string,colorPickerControlLabel:pt.string,unsetColorControlLabel:pt.string,highlightControlLabel:pt.string,undoControlLabel:pt.string,redoControlLabel:pt.string,linkEditorInputLabel:pt.string,linkEditorInputPlaceholder:pt.string,linkEditorExternalLink:pt.string,linkEditorInternalLink:pt.string,linkEditorSave:pt.string,colorPickerCancel:pt.string,colorPickerClear:pt.string,colorPickerColorPicker:pt.string,colorPickerPalette:pt.string,colorPickerSave:pt.string,tasksControlLabel:pt.string,tasksSinkLabel:pt.string,tasksLiftLabel:pt.string,colorControlLabel:pt.string,colorPickerColorLabel:pt.string}),
|
|
14318
|
+
labels:pt.shape({boldControlLabel:pt.string,hrControlLabel:pt.string,italicControlLabel:pt.string,underlineControlLabel:pt.string,strikeControlLabel:pt.string,clearFormattingControlLabel:pt.string,linkControlLabel:pt.string,unlinkControlLabel:pt.string,bulletListControlLabel:pt.string,orderedListControlLabel:pt.string,h1ControlLabel:pt.string,h2ControlLabel:pt.string,h3ControlLabel:pt.string,h4ControlLabel:pt.string,h5ControlLabel:pt.string,h6ControlLabel:pt.string,blockquoteControlLabel:pt.string,alignLeftControlLabel:pt.string,alignCenterControlLabel:pt.string,alignRightControlLabel:pt.string,alignJustifyControlLabel:pt.string,codeControlLabel:pt.string,codeBlockControlLabel:pt.string,subscriptControlLabel:pt.string,superscriptControlLabel:pt.string,colorPickerControlLabel:pt.string,unsetColorControlLabel:pt.string,highlightControlLabel:pt.string,undoControlLabel:pt.string,redoControlLabel:pt.string,sourceCodeControlLabel:pt.string,linkEditorInputLabel:pt.string,linkEditorInputPlaceholder:pt.string,linkEditorExternalLink:pt.string,linkEditorInternalLink:pt.string,linkEditorSave:pt.string,colorPickerCancel:pt.string,colorPickerClear:pt.string,colorPickerColorPicker:pt.string,colorPickerPalette:pt.string,colorPickerSave:pt.string,tasksControlLabel:pt.string,tasksSinkLabel:pt.string,tasksLiftLabel:pt.string,colorControlLabel:pt.string,colorPickerColorLabel:pt.string}),
|
|
14147
14319
|
className:pt.string,
|
|
14148
14320
|
style:pt.any,
|
|
14149
14321
|
hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -14204,6 +14376,7 @@ pk.RichTextEditor.propTypes = {json:pt.object,
|
|
|
14204
14376
|
classNames:pt.object,
|
|
14205
14377
|
styles:pt.any,
|
|
14206
14378
|
unstyled:pt.bool,
|
|
14379
|
+
attributes:pt.any,
|
|
14207
14380
|
id:pt.string,
|
|
14208
14381
|
setProps:pt.any,
|
|
14209
14382
|
data-*:pt.string,
|
|
@@ -14223,7 +14396,7 @@ pk.RichTextEditor.propTypes = {json:pt.object,
|
|
|
14223
14396
|
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"])])))}),
|
|
14224
14397
|
withCodeHighlightStyles:pt.bool,
|
|
14225
14398
|
withTypographyStyles:pt.bool,
|
|
14226
|
-
labels:pt.shape({boldControlLabel:pt.string,hrControlLabel:pt.string,italicControlLabel:pt.string,underlineControlLabel:pt.string,strikeControlLabel:pt.string,clearFormattingControlLabel:pt.string,linkControlLabel:pt.string,unlinkControlLabel:pt.string,bulletListControlLabel:pt.string,orderedListControlLabel:pt.string,h1ControlLabel:pt.string,h2ControlLabel:pt.string,h3ControlLabel:pt.string,h4ControlLabel:pt.string,h5ControlLabel:pt.string,h6ControlLabel:pt.string,blockquoteControlLabel:pt.string,alignLeftControlLabel:pt.string,alignCenterControlLabel:pt.string,alignRightControlLabel:pt.string,alignJustifyControlLabel:pt.string,codeControlLabel:pt.string,codeBlockControlLabel:pt.string,subscriptControlLabel:pt.string,superscriptControlLabel:pt.string,colorPickerControlLabel:pt.string,unsetColorControlLabel:pt.string,highlightControlLabel:pt.string,undoControlLabel:pt.string,redoControlLabel:pt.string,linkEditorInputLabel:pt.string,linkEditorInputPlaceholder:pt.string,linkEditorExternalLink:pt.string,linkEditorInternalLink:pt.string,linkEditorSave:pt.string,colorPickerCancel:pt.string,colorPickerClear:pt.string,colorPickerColorPicker:pt.string,colorPickerPalette:pt.string,colorPickerSave:pt.string,tasksControlLabel:pt.string,tasksSinkLabel:pt.string,tasksLiftLabel:pt.string,colorControlLabel:pt.string,colorPickerColorLabel:pt.string}),
|
|
14399
|
+
labels:pt.shape({boldControlLabel:pt.string,hrControlLabel:pt.string,italicControlLabel:pt.string,underlineControlLabel:pt.string,strikeControlLabel:pt.string,clearFormattingControlLabel:pt.string,linkControlLabel:pt.string,unlinkControlLabel:pt.string,bulletListControlLabel:pt.string,orderedListControlLabel:pt.string,h1ControlLabel:pt.string,h2ControlLabel:pt.string,h3ControlLabel:pt.string,h4ControlLabel:pt.string,h5ControlLabel:pt.string,h6ControlLabel:pt.string,blockquoteControlLabel:pt.string,alignLeftControlLabel:pt.string,alignCenterControlLabel:pt.string,alignRightControlLabel:pt.string,alignJustifyControlLabel:pt.string,codeControlLabel:pt.string,codeBlockControlLabel:pt.string,subscriptControlLabel:pt.string,superscriptControlLabel:pt.string,colorPickerControlLabel:pt.string,unsetColorControlLabel:pt.string,highlightControlLabel:pt.string,undoControlLabel:pt.string,redoControlLabel:pt.string,sourceCodeControlLabel:pt.string,linkEditorInputLabel:pt.string,linkEditorInputPlaceholder:pt.string,linkEditorExternalLink:pt.string,linkEditorInternalLink:pt.string,linkEditorSave:pt.string,colorPickerCancel:pt.string,colorPickerClear:pt.string,colorPickerColorPicker:pt.string,colorPickerPalette:pt.string,colorPickerSave:pt.string,tasksControlLabel:pt.string,tasksSinkLabel:pt.string,tasksLiftLabel:pt.string,colorControlLabel:pt.string,colorPickerColorLabel:pt.string}),
|
|
14227
14400
|
className:pt.string,
|
|
14228
14401
|
style:pt.any,
|
|
14229
14402
|
hiddenFrom:pt.oneOfType([pt.oneOf(["xs"]),pt.oneOf(["sm"]),pt.oneOf(["md"]),pt.oneOf(["lg"]),pt.oneOf(["xl"])]),
|
|
@@ -14284,6 +14457,7 @@ pk.RichTextEditor.propTypes = {json:pt.object,
|
|
|
14284
14457
|
classNames:pt.object,
|
|
14285
14458
|
styles:pt.any,
|
|
14286
14459
|
unstyled:pt.bool,
|
|
14460
|
+
attributes:pt.any,
|
|
14287
14461
|
id:pt.string,
|
|
14288
14462
|
setProps:pt.any,
|
|
14289
14463
|
data-*:pt.string,
|
|
@@ -14372,6 +14546,7 @@ pk.TypographyStylesProvider.propTypes = {children:pt.node,
|
|
|
14372
14546
|
styles:pt.any,
|
|
14373
14547
|
unstyled:pt.bool,
|
|
14374
14548
|
variant:pt.string,
|
|
14549
|
+
attributes:pt.any,
|
|
14375
14550
|
id:pt.string,
|
|
14376
14551
|
setProps:pt.any,
|
|
14377
14552
|
data-*:pt.string,
|