dash_mantine_components 0.11.0-a0 → 0.11.0-a1
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.
|
@@ -398,6 +398,66 @@
|
|
|
398
398
|
],
|
|
399
399
|
"raw": "MantineNumberSize"
|
|
400
400
|
}
|
|
401
|
+
},
|
|
402
|
+
"persistence": {
|
|
403
|
+
"description": "Used to allow user interactions in this component to be persisted when\nthe component - or the page - is refreshed. If `persisted` is truthy and\nhasn't changed from its previous value, a `value` that the user has\nchanged while using the app will keep that change, as long as\nthe new `value` also matches what was given originally.\nUsed in conjunction with `persistence_type`.",
|
|
404
|
+
"required": true,
|
|
405
|
+
"type": {
|
|
406
|
+
"name": "union",
|
|
407
|
+
"value": [
|
|
408
|
+
{
|
|
409
|
+
"name": "string",
|
|
410
|
+
"raw": "string"
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"name": "number",
|
|
414
|
+
"raw": "number"
|
|
415
|
+
}
|
|
416
|
+
],
|
|
417
|
+
"raw": "string | number | boolean"
|
|
418
|
+
}
|
|
419
|
+
},
|
|
420
|
+
"persisted_props": {
|
|
421
|
+
"description": "Properties whose user interactions will persist after refreshing the\ncomponent or the page. Since only `value` is allowed this prop can\nnormally be ignored.",
|
|
422
|
+
"required": false,
|
|
423
|
+
"defaultValue": {
|
|
424
|
+
"value": "[\"value\"]",
|
|
425
|
+
"computed": false
|
|
426
|
+
},
|
|
427
|
+
"type": {
|
|
428
|
+
"name": "arrayOf",
|
|
429
|
+
"value": {
|
|
430
|
+
"name": "string",
|
|
431
|
+
"raw": "string"
|
|
432
|
+
},
|
|
433
|
+
"raw": "string[]"
|
|
434
|
+
}
|
|
435
|
+
},
|
|
436
|
+
"persistence_type": {
|
|
437
|
+
"description": "Where persisted user changes will be stored:\nmemory: only kept in memory, reset on page refresh.\nlocal: window.localStorage, data is kept after the browser quit.\nsession: window.sessionStorage, data is cleared once the browser quit.",
|
|
438
|
+
"required": false,
|
|
439
|
+
"defaultValue": {
|
|
440
|
+
"value": "'local'",
|
|
441
|
+
"computed": false
|
|
442
|
+
},
|
|
443
|
+
"type": {
|
|
444
|
+
"name": "enum",
|
|
445
|
+
"value": [
|
|
446
|
+
{
|
|
447
|
+
"value": "'local'",
|
|
448
|
+
"computed": false
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"value": "'session'",
|
|
452
|
+
"computed": false
|
|
453
|
+
},
|
|
454
|
+
{
|
|
455
|
+
"value": "'memory'",
|
|
456
|
+
"computed": false
|
|
457
|
+
}
|
|
458
|
+
],
|
|
459
|
+
"raw": "\"local\" | \"session\" | \"memory\""
|
|
460
|
+
}
|
|
401
461
|
}
|
|
402
462
|
},
|
|
403
463
|
"isContext": false
|
|
@@ -1642,97 +1702,76 @@
|
|
|
1642
1702
|
},
|
|
1643
1703
|
"isContext": false
|
|
1644
1704
|
},
|
|
1645
|
-
"src/ts/components/core/appshell/
|
|
1646
|
-
"displayName": "
|
|
1647
|
-
"description": "
|
|
1705
|
+
"src/ts/components/core/appshell/AppShell.tsx": {
|
|
1706
|
+
"displayName": "AppShell",
|
|
1707
|
+
"description": "Responsive shell for your application with header and navbar. For more information, see: https://mantine.dev/core/app-shell/",
|
|
1648
1708
|
"props": {
|
|
1649
|
-
"
|
|
1650
|
-
"description": "
|
|
1709
|
+
"navbar": {
|
|
1710
|
+
"description": "<Navbar /> component",
|
|
1651
1711
|
"required": false,
|
|
1652
1712
|
"type": {
|
|
1653
1713
|
"name": "node",
|
|
1654
|
-
"raw": "
|
|
1714
|
+
"raw": "Element"
|
|
1655
1715
|
}
|
|
1656
1716
|
},
|
|
1657
|
-
"
|
|
1658
|
-
"description": "
|
|
1717
|
+
"aside": {
|
|
1718
|
+
"description": "<Aside /> component",
|
|
1659
1719
|
"required": false,
|
|
1660
1720
|
"type": {
|
|
1661
|
-
"name": "
|
|
1662
|
-
"
|
|
1663
|
-
"raw": "Partial<Record<string, string | number>>"
|
|
1721
|
+
"name": "node",
|
|
1722
|
+
"raw": "Element"
|
|
1664
1723
|
}
|
|
1665
1724
|
},
|
|
1666
|
-
"
|
|
1667
|
-
"description": "
|
|
1725
|
+
"header": {
|
|
1726
|
+
"description": "<Header /> component",
|
|
1668
1727
|
"required": false,
|
|
1669
1728
|
"type": {
|
|
1670
|
-
"name": "
|
|
1671
|
-
"
|
|
1672
|
-
{
|
|
1673
|
-
"name": "string",
|
|
1674
|
-
"raw": "string"
|
|
1675
|
-
},
|
|
1676
|
-
{
|
|
1677
|
-
"name": "number",
|
|
1678
|
-
"raw": "number"
|
|
1679
|
-
}
|
|
1680
|
-
],
|
|
1681
|
-
"raw": "string | number"
|
|
1729
|
+
"name": "node",
|
|
1730
|
+
"raw": "Element"
|
|
1682
1731
|
}
|
|
1683
1732
|
},
|
|
1684
|
-
"
|
|
1685
|
-
"description": "
|
|
1733
|
+
"footer": {
|
|
1734
|
+
"description": "<Footer /> component",
|
|
1686
1735
|
"required": false,
|
|
1687
1736
|
"type": {
|
|
1688
|
-
"name": "
|
|
1689
|
-
"raw": "
|
|
1737
|
+
"name": "node",
|
|
1738
|
+
"raw": "Element"
|
|
1739
|
+
}
|
|
1740
|
+
},
|
|
1741
|
+
"zIndex": {
|
|
1742
|
+
"description": "zIndex prop passed to Navbar and Header components",
|
|
1743
|
+
"required": false,
|
|
1744
|
+
"type": {
|
|
1745
|
+
"name": "number",
|
|
1746
|
+
"raw": "number"
|
|
1690
1747
|
}
|
|
1691
1748
|
},
|
|
1692
1749
|
"fixed": {
|
|
1693
|
-
"description": "
|
|
1750
|
+
"description": "true to switch from static layout to fixed",
|
|
1694
1751
|
"required": false,
|
|
1695
1752
|
"type": {
|
|
1696
1753
|
"name": "bool",
|
|
1697
1754
|
"raw": "boolean"
|
|
1698
1755
|
}
|
|
1699
1756
|
},
|
|
1700
|
-
"
|
|
1701
|
-
"description": "
|
|
1757
|
+
"hidden": {
|
|
1758
|
+
"description": "true to hide all AppShell parts and render only children",
|
|
1702
1759
|
"required": false,
|
|
1703
1760
|
"type": {
|
|
1704
|
-
"name": "
|
|
1705
|
-
"
|
|
1706
|
-
"top": {
|
|
1707
|
-
"description": "",
|
|
1708
|
-
"required": false,
|
|
1709
|
-
"name": "number",
|
|
1710
|
-
"raw": "number"
|
|
1711
|
-
},
|
|
1712
|
-
"left": {
|
|
1713
|
-
"description": "",
|
|
1714
|
-
"required": false,
|
|
1715
|
-
"name": "number",
|
|
1716
|
-
"raw": "number"
|
|
1717
|
-
},
|
|
1718
|
-
"bottom": {
|
|
1719
|
-
"description": "",
|
|
1720
|
-
"required": false,
|
|
1721
|
-
"name": "number",
|
|
1722
|
-
"raw": "number"
|
|
1723
|
-
},
|
|
1724
|
-
"right": {
|
|
1725
|
-
"description": "",
|
|
1726
|
-
"required": false,
|
|
1727
|
-
"name": "number",
|
|
1728
|
-
"raw": "number"
|
|
1729
|
-
}
|
|
1730
|
-
},
|
|
1731
|
-
"raw": "HorizontalSectionPosition"
|
|
1761
|
+
"name": "bool",
|
|
1762
|
+
"raw": "boolean"
|
|
1732
1763
|
}
|
|
1733
1764
|
},
|
|
1734
|
-
"
|
|
1735
|
-
"description": "
|
|
1765
|
+
"children": {
|
|
1766
|
+
"description": "AppShell content",
|
|
1767
|
+
"required": true,
|
|
1768
|
+
"type": {
|
|
1769
|
+
"name": "node",
|
|
1770
|
+
"raw": "ReactNode"
|
|
1771
|
+
}
|
|
1772
|
+
},
|
|
1773
|
+
"padding": {
|
|
1774
|
+
"description": "Content padding",
|
|
1736
1775
|
"required": false,
|
|
1737
1776
|
"type": {
|
|
1738
1777
|
"name": "union",
|
|
@@ -1745,20 +1784,32 @@
|
|
|
1745
1784
|
"raw": "MantineNumberSize"
|
|
1746
1785
|
}
|
|
1747
1786
|
},
|
|
1748
|
-
"
|
|
1749
|
-
"description": "
|
|
1787
|
+
"navbarOffsetBreakpoint": {
|
|
1788
|
+
"description": "Breakpoint at which Navbar component should no longer be offset with padding-left, applicable only for fixed position",
|
|
1750
1789
|
"required": false,
|
|
1751
1790
|
"type": {
|
|
1752
|
-
"name": "
|
|
1753
|
-
"
|
|
1791
|
+
"name": "union",
|
|
1792
|
+
"value": [
|
|
1793
|
+
{
|
|
1794
|
+
"name": "number",
|
|
1795
|
+
"raw": "number"
|
|
1796
|
+
}
|
|
1797
|
+
],
|
|
1798
|
+
"raw": "MantineNumberSize"
|
|
1754
1799
|
}
|
|
1755
1800
|
},
|
|
1756
|
-
"
|
|
1757
|
-
"description": "
|
|
1801
|
+
"asideOffsetBreakpoint": {
|
|
1802
|
+
"description": "Breakpoint at which Aside component should no longer be offset with padding-right, applicable only for fixed position",
|
|
1758
1803
|
"required": false,
|
|
1759
1804
|
"type": {
|
|
1760
|
-
"name": "
|
|
1761
|
-
"
|
|
1805
|
+
"name": "union",
|
|
1806
|
+
"value": [
|
|
1807
|
+
{
|
|
1808
|
+
"name": "number",
|
|
1809
|
+
"raw": "number"
|
|
1810
|
+
}
|
|
1811
|
+
],
|
|
1812
|
+
"raw": "MantineNumberSize"
|
|
1762
1813
|
}
|
|
1763
1814
|
},
|
|
1764
1815
|
"className": {
|
|
@@ -2016,21 +2067,30 @@
|
|
|
2016
2067
|
},
|
|
2017
2068
|
"isContext": false
|
|
2018
2069
|
},
|
|
2019
|
-
"src/ts/components/core/appshell/
|
|
2020
|
-
"displayName": "
|
|
2021
|
-
"description": "
|
|
2070
|
+
"src/ts/components/core/appshell/Aside.tsx": {
|
|
2071
|
+
"displayName": "Aside",
|
|
2072
|
+
"description": "Aside. For more information, see: https://mantine.dev/core/app-shell/",
|
|
2022
2073
|
"props": {
|
|
2023
2074
|
"children": {
|
|
2024
|
-
"description": "Section
|
|
2075
|
+
"description": "Section Content",
|
|
2025
2076
|
"required": false,
|
|
2026
2077
|
"type": {
|
|
2027
2078
|
"name": "node",
|
|
2028
2079
|
"raw": "ReactNode"
|
|
2029
2080
|
}
|
|
2030
2081
|
},
|
|
2082
|
+
"width": {
|
|
2083
|
+
"description": "Component width with breakpoints",
|
|
2084
|
+
"required": false,
|
|
2085
|
+
"type": {
|
|
2086
|
+
"name": "shape",
|
|
2087
|
+
"value": {},
|
|
2088
|
+
"raw": "Partial<Record<string, string | number>>"
|
|
2089
|
+
}
|
|
2090
|
+
},
|
|
2031
2091
|
"height": {
|
|
2032
|
-
"description": "
|
|
2033
|
-
"required":
|
|
2092
|
+
"description": "Component height",
|
|
2093
|
+
"required": false,
|
|
2034
2094
|
"type": {
|
|
2035
2095
|
"name": "union",
|
|
2036
2096
|
"value": [
|
|
@@ -2055,7 +2115,7 @@
|
|
|
2055
2115
|
}
|
|
2056
2116
|
},
|
|
2057
2117
|
"fixed": {
|
|
2058
|
-
"description": "
|
|
2118
|
+
"description": "Set position to fixed",
|
|
2059
2119
|
"required": false,
|
|
2060
2120
|
"type": {
|
|
2061
2121
|
"name": "bool",
|
|
@@ -2063,7 +2123,7 @@
|
|
|
2063
2123
|
}
|
|
2064
2124
|
},
|
|
2065
2125
|
"position": {
|
|
2066
|
-
"description": "
|
|
2126
|
+
"description": "Position for fixed variant",
|
|
2067
2127
|
"required": false,
|
|
2068
2128
|
"type": {
|
|
2069
2129
|
"name": "shape",
|
|
@@ -2093,7 +2153,29 @@
|
|
|
2093
2153
|
"raw": "number"
|
|
2094
2154
|
}
|
|
2095
2155
|
},
|
|
2096
|
-
"raw": "
|
|
2156
|
+
"raw": "HorizontalSectionPosition"
|
|
2157
|
+
}
|
|
2158
|
+
},
|
|
2159
|
+
"hiddenBreakpoint": {
|
|
2160
|
+
"description": "Breakpoint at which component will be hidden if hidden prop is true",
|
|
2161
|
+
"required": false,
|
|
2162
|
+
"type": {
|
|
2163
|
+
"name": "union",
|
|
2164
|
+
"value": [
|
|
2165
|
+
{
|
|
2166
|
+
"name": "number",
|
|
2167
|
+
"raw": "number"
|
|
2168
|
+
}
|
|
2169
|
+
],
|
|
2170
|
+
"raw": "MantineNumberSize"
|
|
2171
|
+
}
|
|
2172
|
+
},
|
|
2173
|
+
"hidden": {
|
|
2174
|
+
"description": "Set to true to hide component at hiddenBreakpoint",
|
|
2175
|
+
"required": false,
|
|
2176
|
+
"type": {
|
|
2177
|
+
"name": "bool",
|
|
2178
|
+
"raw": "boolean"
|
|
2097
2179
|
}
|
|
2098
2180
|
},
|
|
2099
2181
|
"zIndex": {
|
|
@@ -2359,9 +2441,9 @@
|
|
|
2359
2441
|
},
|
|
2360
2442
|
"isContext": false
|
|
2361
2443
|
},
|
|
2362
|
-
"src/ts/components/core/appshell/
|
|
2363
|
-
"displayName": "
|
|
2364
|
-
"description": "
|
|
2444
|
+
"src/ts/components/core/appshell/Footer.tsx": {
|
|
2445
|
+
"displayName": "Footer",
|
|
2446
|
+
"description": "Footer. For more information, see: https://mantine.dev/core/app-shell/",
|
|
2365
2447
|
"props": {
|
|
2366
2448
|
"children": {
|
|
2367
2449
|
"description": "Section content",
|
|
@@ -2702,30 +2784,21 @@
|
|
|
2702
2784
|
},
|
|
2703
2785
|
"isContext": false
|
|
2704
2786
|
},
|
|
2705
|
-
"src/ts/components/core/appshell/
|
|
2706
|
-
"displayName": "
|
|
2707
|
-
"description": "
|
|
2787
|
+
"src/ts/components/core/appshell/Header.tsx": {
|
|
2788
|
+
"displayName": "Header",
|
|
2789
|
+
"description": "Header. For more information, see: https://mantine.dev/core/app-shell/",
|
|
2708
2790
|
"props": {
|
|
2709
2791
|
"children": {
|
|
2710
|
-
"description": "Section
|
|
2792
|
+
"description": "Section content",
|
|
2711
2793
|
"required": false,
|
|
2712
2794
|
"type": {
|
|
2713
2795
|
"name": "node",
|
|
2714
2796
|
"raw": "ReactNode"
|
|
2715
2797
|
}
|
|
2716
2798
|
},
|
|
2717
|
-
"width": {
|
|
2718
|
-
"description": "Component width with breakpoints",
|
|
2719
|
-
"required": false,
|
|
2720
|
-
"type": {
|
|
2721
|
-
"name": "shape",
|
|
2722
|
-
"value": {},
|
|
2723
|
-
"raw": "Partial<Record<string, string | number>>"
|
|
2724
|
-
}
|
|
2725
|
-
},
|
|
2726
2799
|
"height": {
|
|
2727
|
-
"description": "
|
|
2728
|
-
"required":
|
|
2800
|
+
"description": "Section height",
|
|
2801
|
+
"required": true,
|
|
2729
2802
|
"type": {
|
|
2730
2803
|
"name": "union",
|
|
2731
2804
|
"value": [
|
|
@@ -2750,7 +2823,7 @@
|
|
|
2750
2823
|
}
|
|
2751
2824
|
},
|
|
2752
2825
|
"fixed": {
|
|
2753
|
-
"description": "
|
|
2826
|
+
"description": "Changes position to fixed, controlled by AppShell component if rendered inside",
|
|
2754
2827
|
"required": false,
|
|
2755
2828
|
"type": {
|
|
2756
2829
|
"name": "bool",
|
|
@@ -2758,7 +2831,7 @@
|
|
|
2758
2831
|
}
|
|
2759
2832
|
},
|
|
2760
2833
|
"position": {
|
|
2761
|
-
"description": "
|
|
2834
|
+
"description": "Control top, left, right or bottom position values, controlled by AppShell component if rendered inside",
|
|
2762
2835
|
"required": false,
|
|
2763
2836
|
"type": {
|
|
2764
2837
|
"name": "shape",
|
|
@@ -2788,29 +2861,381 @@
|
|
|
2788
2861
|
"raw": "number"
|
|
2789
2862
|
}
|
|
2790
2863
|
},
|
|
2791
|
-
"raw": "
|
|
2792
|
-
}
|
|
2793
|
-
},
|
|
2794
|
-
"
|
|
2795
|
-
"description": "
|
|
2796
|
-
"required": false,
|
|
2797
|
-
"type": {
|
|
2798
|
-
"name": "
|
|
2799
|
-
"
|
|
2800
|
-
|
|
2801
|
-
|
|
2802
|
-
|
|
2803
|
-
|
|
2804
|
-
|
|
2805
|
-
|
|
2806
|
-
|
|
2807
|
-
|
|
2808
|
-
|
|
2809
|
-
|
|
2810
|
-
|
|
2811
|
-
"
|
|
2812
|
-
|
|
2813
|
-
|
|
2864
|
+
"raw": "VerticalSectionPosition"
|
|
2865
|
+
}
|
|
2866
|
+
},
|
|
2867
|
+
"zIndex": {
|
|
2868
|
+
"description": "z-index",
|
|
2869
|
+
"required": false,
|
|
2870
|
+
"type": {
|
|
2871
|
+
"name": "number",
|
|
2872
|
+
"raw": "number"
|
|
2873
|
+
}
|
|
2874
|
+
},
|
|
2875
|
+
"className": {
|
|
2876
|
+
"description": "Often used with CSS to style elements with common properties",
|
|
2877
|
+
"required": false,
|
|
2878
|
+
"type": {
|
|
2879
|
+
"name": "string",
|
|
2880
|
+
"raw": "string"
|
|
2881
|
+
}
|
|
2882
|
+
},
|
|
2883
|
+
"style": {
|
|
2884
|
+
"description": "Inline style",
|
|
2885
|
+
"required": false,
|
|
2886
|
+
"type": {
|
|
2887
|
+
"name": "any",
|
|
2888
|
+
"raw": "any"
|
|
2889
|
+
}
|
|
2890
|
+
},
|
|
2891
|
+
"styles": {
|
|
2892
|
+
"description": "Mantine styles API",
|
|
2893
|
+
"required": false,
|
|
2894
|
+
"type": {
|
|
2895
|
+
"name": "object",
|
|
2896
|
+
"raw": "object"
|
|
2897
|
+
}
|
|
2898
|
+
},
|
|
2899
|
+
"id": {
|
|
2900
|
+
"description": "Unique ID to identify this component in Dash callbacks.",
|
|
2901
|
+
"required": false,
|
|
2902
|
+
"type": {
|
|
2903
|
+
"name": "string",
|
|
2904
|
+
"raw": "string"
|
|
2905
|
+
}
|
|
2906
|
+
},
|
|
2907
|
+
"unstyled": {
|
|
2908
|
+
"description": "Remove all Mantine styling from the component",
|
|
2909
|
+
"required": false,
|
|
2910
|
+
"type": {
|
|
2911
|
+
"name": "bool",
|
|
2912
|
+
"raw": "boolean"
|
|
2913
|
+
}
|
|
2914
|
+
},
|
|
2915
|
+
"setProps": {
|
|
2916
|
+
"description": "Update props to trigger callbacks.",
|
|
2917
|
+
"required": true,
|
|
2918
|
+
"type": {
|
|
2919
|
+
"name": "func",
|
|
2920
|
+
"raw": "(props: Record<string, any>) => void"
|
|
2921
|
+
}
|
|
2922
|
+
},
|
|
2923
|
+
"sx": {
|
|
2924
|
+
"description": "With sx you can add styles to component root element. If you need to customize styles of other elements within component use styles prop",
|
|
2925
|
+
"required": false,
|
|
2926
|
+
"type": {
|
|
2927
|
+
"name": "any",
|
|
2928
|
+
"raw": "any"
|
|
2929
|
+
}
|
|
2930
|
+
},
|
|
2931
|
+
"m": {
|
|
2932
|
+
"description": "margin props",
|
|
2933
|
+
"required": false,
|
|
2934
|
+
"type": {
|
|
2935
|
+
"name": "union",
|
|
2936
|
+
"value": [
|
|
2937
|
+
{
|
|
2938
|
+
"name": "number",
|
|
2939
|
+
"raw": "number"
|
|
2940
|
+
}
|
|
2941
|
+
],
|
|
2942
|
+
"raw": "MantineNumberSize"
|
|
2943
|
+
}
|
|
2944
|
+
},
|
|
2945
|
+
"my": {
|
|
2946
|
+
"description": "margin props",
|
|
2947
|
+
"required": false,
|
|
2948
|
+
"type": {
|
|
2949
|
+
"name": "union",
|
|
2950
|
+
"value": [
|
|
2951
|
+
{
|
|
2952
|
+
"name": "number",
|
|
2953
|
+
"raw": "number"
|
|
2954
|
+
}
|
|
2955
|
+
],
|
|
2956
|
+
"raw": "MantineNumberSize"
|
|
2957
|
+
}
|
|
2958
|
+
},
|
|
2959
|
+
"mx": {
|
|
2960
|
+
"description": "margin props",
|
|
2961
|
+
"required": false,
|
|
2962
|
+
"type": {
|
|
2963
|
+
"name": "union",
|
|
2964
|
+
"value": [
|
|
2965
|
+
{
|
|
2966
|
+
"name": "number",
|
|
2967
|
+
"raw": "number"
|
|
2968
|
+
}
|
|
2969
|
+
],
|
|
2970
|
+
"raw": "MantineNumberSize"
|
|
2971
|
+
}
|
|
2972
|
+
},
|
|
2973
|
+
"mt": {
|
|
2974
|
+
"description": "margin props",
|
|
2975
|
+
"required": false,
|
|
2976
|
+
"type": {
|
|
2977
|
+
"name": "union",
|
|
2978
|
+
"value": [
|
|
2979
|
+
{
|
|
2980
|
+
"name": "number",
|
|
2981
|
+
"raw": "number"
|
|
2982
|
+
}
|
|
2983
|
+
],
|
|
2984
|
+
"raw": "MantineNumberSize"
|
|
2985
|
+
}
|
|
2986
|
+
},
|
|
2987
|
+
"mb": {
|
|
2988
|
+
"description": "margin props",
|
|
2989
|
+
"required": false,
|
|
2990
|
+
"type": {
|
|
2991
|
+
"name": "union",
|
|
2992
|
+
"value": [
|
|
2993
|
+
{
|
|
2994
|
+
"name": "number",
|
|
2995
|
+
"raw": "number"
|
|
2996
|
+
}
|
|
2997
|
+
],
|
|
2998
|
+
"raw": "MantineNumberSize"
|
|
2999
|
+
}
|
|
3000
|
+
},
|
|
3001
|
+
"ml": {
|
|
3002
|
+
"description": "margin props",
|
|
3003
|
+
"required": false,
|
|
3004
|
+
"type": {
|
|
3005
|
+
"name": "union",
|
|
3006
|
+
"value": [
|
|
3007
|
+
{
|
|
3008
|
+
"name": "number",
|
|
3009
|
+
"raw": "number"
|
|
3010
|
+
}
|
|
3011
|
+
],
|
|
3012
|
+
"raw": "MantineNumberSize"
|
|
3013
|
+
}
|
|
3014
|
+
},
|
|
3015
|
+
"mr": {
|
|
3016
|
+
"description": "margin props",
|
|
3017
|
+
"required": false,
|
|
3018
|
+
"type": {
|
|
3019
|
+
"name": "union",
|
|
3020
|
+
"value": [
|
|
3021
|
+
{
|
|
3022
|
+
"name": "number",
|
|
3023
|
+
"raw": "number"
|
|
3024
|
+
}
|
|
3025
|
+
],
|
|
3026
|
+
"raw": "MantineNumberSize"
|
|
3027
|
+
}
|
|
3028
|
+
},
|
|
3029
|
+
"p": {
|
|
3030
|
+
"description": "padding props",
|
|
3031
|
+
"required": false,
|
|
3032
|
+
"type": {
|
|
3033
|
+
"name": "union",
|
|
3034
|
+
"value": [
|
|
3035
|
+
{
|
|
3036
|
+
"name": "number",
|
|
3037
|
+
"raw": "number"
|
|
3038
|
+
}
|
|
3039
|
+
],
|
|
3040
|
+
"raw": "MantineNumberSize"
|
|
3041
|
+
}
|
|
3042
|
+
},
|
|
3043
|
+
"py": {
|
|
3044
|
+
"description": "padding props",
|
|
3045
|
+
"required": false,
|
|
3046
|
+
"type": {
|
|
3047
|
+
"name": "union",
|
|
3048
|
+
"value": [
|
|
3049
|
+
{
|
|
3050
|
+
"name": "number",
|
|
3051
|
+
"raw": "number"
|
|
3052
|
+
}
|
|
3053
|
+
],
|
|
3054
|
+
"raw": "MantineNumberSize"
|
|
3055
|
+
}
|
|
3056
|
+
},
|
|
3057
|
+
"px": {
|
|
3058
|
+
"description": "padding props",
|
|
3059
|
+
"required": false,
|
|
3060
|
+
"type": {
|
|
3061
|
+
"name": "union",
|
|
3062
|
+
"value": [
|
|
3063
|
+
{
|
|
3064
|
+
"name": "number",
|
|
3065
|
+
"raw": "number"
|
|
3066
|
+
}
|
|
3067
|
+
],
|
|
3068
|
+
"raw": "MantineNumberSize"
|
|
3069
|
+
}
|
|
3070
|
+
},
|
|
3071
|
+
"pt": {
|
|
3072
|
+
"description": "padding props",
|
|
3073
|
+
"required": false,
|
|
3074
|
+
"type": {
|
|
3075
|
+
"name": "union",
|
|
3076
|
+
"value": [
|
|
3077
|
+
{
|
|
3078
|
+
"name": "number",
|
|
3079
|
+
"raw": "number"
|
|
3080
|
+
}
|
|
3081
|
+
],
|
|
3082
|
+
"raw": "MantineNumberSize"
|
|
3083
|
+
}
|
|
3084
|
+
},
|
|
3085
|
+
"pb": {
|
|
3086
|
+
"description": "padding props",
|
|
3087
|
+
"required": false,
|
|
3088
|
+
"type": {
|
|
3089
|
+
"name": "union",
|
|
3090
|
+
"value": [
|
|
3091
|
+
{
|
|
3092
|
+
"name": "number",
|
|
3093
|
+
"raw": "number"
|
|
3094
|
+
}
|
|
3095
|
+
],
|
|
3096
|
+
"raw": "MantineNumberSize"
|
|
3097
|
+
}
|
|
3098
|
+
},
|
|
3099
|
+
"pl": {
|
|
3100
|
+
"description": "padding props",
|
|
3101
|
+
"required": false,
|
|
3102
|
+
"type": {
|
|
3103
|
+
"name": "union",
|
|
3104
|
+
"value": [
|
|
3105
|
+
{
|
|
3106
|
+
"name": "number",
|
|
3107
|
+
"raw": "number"
|
|
3108
|
+
}
|
|
3109
|
+
],
|
|
3110
|
+
"raw": "MantineNumberSize"
|
|
3111
|
+
}
|
|
3112
|
+
},
|
|
3113
|
+
"pr": {
|
|
3114
|
+
"description": "padding props",
|
|
3115
|
+
"required": false,
|
|
3116
|
+
"type": {
|
|
3117
|
+
"name": "union",
|
|
3118
|
+
"value": [
|
|
3119
|
+
{
|
|
3120
|
+
"name": "number",
|
|
3121
|
+
"raw": "number"
|
|
3122
|
+
}
|
|
3123
|
+
],
|
|
3124
|
+
"raw": "MantineNumberSize"
|
|
3125
|
+
}
|
|
3126
|
+
}
|
|
3127
|
+
},
|
|
3128
|
+
"isContext": false
|
|
3129
|
+
},
|
|
3130
|
+
"src/ts/components/core/appshell/Navbar.tsx": {
|
|
3131
|
+
"displayName": "Navbar",
|
|
3132
|
+
"description": "Navbar. For more information, see: https://mantine.dev/core/app-shell/",
|
|
3133
|
+
"props": {
|
|
3134
|
+
"children": {
|
|
3135
|
+
"description": "Section Content",
|
|
3136
|
+
"required": false,
|
|
3137
|
+
"type": {
|
|
3138
|
+
"name": "node",
|
|
3139
|
+
"raw": "ReactNode"
|
|
3140
|
+
}
|
|
3141
|
+
},
|
|
3142
|
+
"width": {
|
|
3143
|
+
"description": "Component width with breakpoints",
|
|
3144
|
+
"required": false,
|
|
3145
|
+
"type": {
|
|
3146
|
+
"name": "shape",
|
|
3147
|
+
"value": {},
|
|
3148
|
+
"raw": "Partial<Record<string, string | number>>"
|
|
3149
|
+
}
|
|
3150
|
+
},
|
|
3151
|
+
"height": {
|
|
3152
|
+
"description": "Component height",
|
|
3153
|
+
"required": false,
|
|
3154
|
+
"type": {
|
|
3155
|
+
"name": "union",
|
|
3156
|
+
"value": [
|
|
3157
|
+
{
|
|
3158
|
+
"name": "string",
|
|
3159
|
+
"raw": "string"
|
|
3160
|
+
},
|
|
3161
|
+
{
|
|
3162
|
+
"name": "number",
|
|
3163
|
+
"raw": "number"
|
|
3164
|
+
}
|
|
3165
|
+
],
|
|
3166
|
+
"raw": "string | number"
|
|
3167
|
+
}
|
|
3168
|
+
},
|
|
3169
|
+
"withBorder": {
|
|
3170
|
+
"description": "Border",
|
|
3171
|
+
"required": false,
|
|
3172
|
+
"type": {
|
|
3173
|
+
"name": "bool",
|
|
3174
|
+
"raw": "boolean"
|
|
3175
|
+
}
|
|
3176
|
+
},
|
|
3177
|
+
"fixed": {
|
|
3178
|
+
"description": "Set position to fixed",
|
|
3179
|
+
"required": false,
|
|
3180
|
+
"type": {
|
|
3181
|
+
"name": "bool",
|
|
3182
|
+
"raw": "boolean"
|
|
3183
|
+
}
|
|
3184
|
+
},
|
|
3185
|
+
"position": {
|
|
3186
|
+
"description": "Position for fixed variant",
|
|
3187
|
+
"required": false,
|
|
3188
|
+
"type": {
|
|
3189
|
+
"name": "shape",
|
|
3190
|
+
"value": {
|
|
3191
|
+
"top": {
|
|
3192
|
+
"description": "",
|
|
3193
|
+
"required": false,
|
|
3194
|
+
"name": "number",
|
|
3195
|
+
"raw": "number"
|
|
3196
|
+
},
|
|
3197
|
+
"left": {
|
|
3198
|
+
"description": "",
|
|
3199
|
+
"required": false,
|
|
3200
|
+
"name": "number",
|
|
3201
|
+
"raw": "number"
|
|
3202
|
+
},
|
|
3203
|
+
"bottom": {
|
|
3204
|
+
"description": "",
|
|
3205
|
+
"required": false,
|
|
3206
|
+
"name": "number",
|
|
3207
|
+
"raw": "number"
|
|
3208
|
+
},
|
|
3209
|
+
"right": {
|
|
3210
|
+
"description": "",
|
|
3211
|
+
"required": false,
|
|
3212
|
+
"name": "number",
|
|
3213
|
+
"raw": "number"
|
|
3214
|
+
}
|
|
3215
|
+
},
|
|
3216
|
+
"raw": "HorizontalSectionPosition"
|
|
3217
|
+
}
|
|
3218
|
+
},
|
|
3219
|
+
"hiddenBreakpoint": {
|
|
3220
|
+
"description": "Breakpoint at which component will be hidden if hidden prop is true",
|
|
3221
|
+
"required": false,
|
|
3222
|
+
"type": {
|
|
3223
|
+
"name": "union",
|
|
3224
|
+
"value": [
|
|
3225
|
+
{
|
|
3226
|
+
"name": "number",
|
|
3227
|
+
"raw": "number"
|
|
3228
|
+
}
|
|
3229
|
+
],
|
|
3230
|
+
"raw": "MantineNumberSize"
|
|
3231
|
+
}
|
|
3232
|
+
},
|
|
3233
|
+
"hidden": {
|
|
3234
|
+
"description": "Set to true to hide component at hiddenBreakpoint",
|
|
3235
|
+
"required": false,
|
|
3236
|
+
"type": {
|
|
3237
|
+
"name": "bool",
|
|
3238
|
+
"raw": "boolean"
|
|
2814
3239
|
}
|
|
2815
3240
|
},
|
|
2816
3241
|
"zIndex": {
|
|
@@ -4564,20 +4989,20 @@
|
|
|
4564
4989
|
},
|
|
4565
4990
|
"isContext": false
|
|
4566
4991
|
},
|
|
4567
|
-
"src/ts/components/core/
|
|
4568
|
-
"displayName": "
|
|
4569
|
-
"description": "
|
|
4992
|
+
"src/ts/components/core/card/Card.tsx": {
|
|
4993
|
+
"displayName": "Card",
|
|
4994
|
+
"description": "Renders white or dark background depending on color scheme. For more information, see: https://mantine.dev/core/card/",
|
|
4570
4995
|
"props": {
|
|
4571
|
-
"
|
|
4572
|
-
"description": "
|
|
4996
|
+
"children": {
|
|
4997
|
+
"description": "Card children",
|
|
4573
4998
|
"required": false,
|
|
4574
4999
|
"type": {
|
|
4575
|
-
"name": "
|
|
4576
|
-
"raw": "
|
|
5000
|
+
"name": "node",
|
|
5001
|
+
"raw": "ReactNode"
|
|
4577
5002
|
}
|
|
4578
5003
|
},
|
|
4579
5004
|
"radius": {
|
|
4580
|
-
"description": "
|
|
5005
|
+
"description": "Predefined border-radius value from theme.radius or number for border-radius in px",
|
|
4581
5006
|
"required": false,
|
|
4582
5007
|
"type": {
|
|
4583
5008
|
"name": "union",
|
|
@@ -4590,80 +5015,22 @@
|
|
|
4590
5015
|
"raw": "MantineNumberSize"
|
|
4591
5016
|
}
|
|
4592
5017
|
},
|
|
4593
|
-
"
|
|
4594
|
-
"description": "Predefined
|
|
4595
|
-
"required": false,
|
|
4596
|
-
"type": {
|
|
4597
|
-
"name": "enum",
|
|
4598
|
-
"value": [
|
|
4599
|
-
{
|
|
4600
|
-
"value": "'xs'",
|
|
4601
|
-
"computed": false
|
|
4602
|
-
},
|
|
4603
|
-
{
|
|
4604
|
-
"value": "'sm'",
|
|
4605
|
-
"computed": false
|
|
4606
|
-
},
|
|
4607
|
-
{
|
|
4608
|
-
"value": "'md'",
|
|
4609
|
-
"computed": false
|
|
4610
|
-
},
|
|
4611
|
-
{
|
|
4612
|
-
"value": "'lg'",
|
|
4613
|
-
"computed": false
|
|
4614
|
-
},
|
|
4615
|
-
{
|
|
4616
|
-
"value": "'xl'",
|
|
4617
|
-
"computed": false
|
|
4618
|
-
}
|
|
4619
|
-
],
|
|
4620
|
-
"raw": "MantineSize"
|
|
4621
|
-
}
|
|
4622
|
-
},
|
|
4623
|
-
"label": {
|
|
4624
|
-
"description": "Checkbox label",
|
|
4625
|
-
"required": false,
|
|
4626
|
-
"type": {
|
|
4627
|
-
"name": "node",
|
|
4628
|
-
"raw": "ReactNode"
|
|
4629
|
-
}
|
|
4630
|
-
},
|
|
4631
|
-
"indeterminate": {
|
|
4632
|
-
"description": "Indeterminate state of checkbox, overwrites checked",
|
|
4633
|
-
"required": false,
|
|
4634
|
-
"type": {
|
|
4635
|
-
"name": "bool",
|
|
4636
|
-
"raw": "boolean"
|
|
4637
|
-
}
|
|
4638
|
-
},
|
|
4639
|
-
"transitionDuration": {
|
|
4640
|
-
"description": "Transition duration in ms",
|
|
5018
|
+
"shadow": {
|
|
5019
|
+
"description": "Predefined box-shadow from theme.shadows (xs, sm, md, lg, xl) or any valid css box-shadow property",
|
|
4641
5020
|
"required": false,
|
|
4642
5021
|
"type": {
|
|
4643
|
-
"name": "
|
|
4644
|
-
"raw": "
|
|
5022
|
+
"name": "any",
|
|
5023
|
+
"raw": "MantineShadow"
|
|
4645
5024
|
}
|
|
4646
5025
|
},
|
|
4647
|
-
"
|
|
4648
|
-
"description": "
|
|
5026
|
+
"withBorder": {
|
|
5027
|
+
"description": "Adds 1px border with theme.colors.gray[3] color in light color scheme and theme.colors.dark[4] in dark color scheme",
|
|
4649
5028
|
"required": false,
|
|
4650
|
-
"defaultValue": {
|
|
4651
|
-
"value": "false",
|
|
4652
|
-
"computed": false
|
|
4653
|
-
},
|
|
4654
5029
|
"type": {
|
|
4655
5030
|
"name": "bool",
|
|
4656
5031
|
"raw": "boolean"
|
|
4657
5032
|
}
|
|
4658
5033
|
},
|
|
4659
|
-
"value": {
|
|
4660
|
-
"description": "To be used with checkbox group",
|
|
4661
|
-
"required": false,
|
|
4662
|
-
"type": {
|
|
4663
|
-
"name": "string",
|
|
4664
|
-
"raw": "string"
|
|
4665
|
-
}
|
|
4666
|
-
},
|
|
4667
5034
|
"className": {
|
|
4668
5035
|
"description": "Often used with CSS to style elements with common properties",
|
|
4669
5036
|
"required": false,
|
|
@@ -4919,176 +5286,34 @@
|
|
|
4919
5286
|
},
|
|
4920
5287
|
"isContext": false
|
|
4921
5288
|
},
|
|
4922
|
-
"src/ts/components/core/
|
|
4923
|
-
"displayName": "
|
|
4924
|
-
"description": "
|
|
5289
|
+
"src/ts/components/core/card/CardSection.tsx": {
|
|
5290
|
+
"displayName": "CardSection",
|
|
5291
|
+
"description": "Renders white or dark background depending on color scheme. For more information, see: https://mantine.dev/core/card/",
|
|
4925
5292
|
"props": {
|
|
4926
5293
|
"children": {
|
|
4927
|
-
"description": "
|
|
4928
|
-
"required": false,
|
|
4929
|
-
"type": {
|
|
4930
|
-
"name": "node",
|
|
4931
|
-
"raw": "ReactNode"
|
|
4932
|
-
}
|
|
4933
|
-
},
|
|
4934
|
-
"value": {
|
|
4935
|
-
"description": "Value of currently selected checkbox",
|
|
4936
|
-
"required": false,
|
|
4937
|
-
"type": {
|
|
4938
|
-
"name": "arrayOf",
|
|
4939
|
-
"value": {
|
|
4940
|
-
"name": "string",
|
|
4941
|
-
"raw": "string"
|
|
4942
|
-
},
|
|
4943
|
-
"raw": "string[]"
|
|
4944
|
-
}
|
|
4945
|
-
},
|
|
4946
|
-
"orientation": {
|
|
4947
|
-
"description": "Horizontal or vertical orientation",
|
|
4948
|
-
"required": false,
|
|
4949
|
-
"type": {
|
|
4950
|
-
"name": "enum",
|
|
4951
|
-
"value": [
|
|
4952
|
-
{
|
|
4953
|
-
"value": "'horizontal'",
|
|
4954
|
-
"computed": false
|
|
4955
|
-
},
|
|
4956
|
-
{
|
|
4957
|
-
"value": "'vertical'",
|
|
4958
|
-
"computed": false
|
|
4959
|
-
}
|
|
4960
|
-
],
|
|
4961
|
-
"raw": "\"horizontal\" | \"vertical\""
|
|
4962
|
-
}
|
|
4963
|
-
},
|
|
4964
|
-
"spacing": {
|
|
4965
|
-
"description": "Spacing between checkboxes in horizontal orientation",
|
|
4966
|
-
"required": false,
|
|
4967
|
-
"type": {
|
|
4968
|
-
"name": "union",
|
|
4969
|
-
"value": [
|
|
4970
|
-
{
|
|
4971
|
-
"name": "number",
|
|
4972
|
-
"raw": "number"
|
|
4973
|
-
}
|
|
4974
|
-
],
|
|
4975
|
-
"raw": "MantineNumberSize"
|
|
4976
|
-
}
|
|
4977
|
-
},
|
|
4978
|
-
"offset": {
|
|
4979
|
-
"description": "Space between label and inputs",
|
|
4980
|
-
"required": false,
|
|
4981
|
-
"type": {
|
|
4982
|
-
"name": "union",
|
|
4983
|
-
"value": [
|
|
4984
|
-
{
|
|
4985
|
-
"name": "number",
|
|
4986
|
-
"raw": "number"
|
|
4987
|
-
}
|
|
4988
|
-
],
|
|
4989
|
-
"raw": "MantineNumberSize"
|
|
4990
|
-
}
|
|
4991
|
-
},
|
|
4992
|
-
"size": {
|
|
4993
|
-
"description": "Predefined label fontSize, checkbox width, height and border-radius",
|
|
4994
|
-
"required": false,
|
|
4995
|
-
"type": {
|
|
4996
|
-
"name": "enum",
|
|
4997
|
-
"value": [
|
|
4998
|
-
{
|
|
4999
|
-
"value": "'xs'",
|
|
5000
|
-
"computed": false
|
|
5001
|
-
},
|
|
5002
|
-
{
|
|
5003
|
-
"value": "'sm'",
|
|
5004
|
-
"computed": false
|
|
5005
|
-
},
|
|
5006
|
-
{
|
|
5007
|
-
"value": "'md'",
|
|
5008
|
-
"computed": false
|
|
5009
|
-
},
|
|
5010
|
-
{
|
|
5011
|
-
"value": "'lg'",
|
|
5012
|
-
"computed": false
|
|
5013
|
-
},
|
|
5014
|
-
{
|
|
5015
|
-
"value": "'xl'",
|
|
5016
|
-
"computed": false
|
|
5017
|
-
}
|
|
5018
|
-
],
|
|
5019
|
-
"raw": "MantineSize"
|
|
5020
|
-
}
|
|
5021
|
-
},
|
|
5022
|
-
"label": {
|
|
5023
|
-
"description": "Input label, displayed before input",
|
|
5294
|
+
"description": "Card children",
|
|
5024
5295
|
"required": false,
|
|
5025
5296
|
"type": {
|
|
5026
5297
|
"name": "node",
|
|
5027
5298
|
"raw": "ReactNode"
|
|
5028
5299
|
}
|
|
5029
5300
|
},
|
|
5030
|
-
"
|
|
5031
|
-
"description": "
|
|
5032
|
-
"required": false,
|
|
5033
|
-
"type": {
|
|
5034
|
-
"name": "node",
|
|
5035
|
-
"raw": "ReactNode"
|
|
5036
|
-
}
|
|
5037
|
-
},
|
|
5038
|
-
"error": {
|
|
5039
|
-
"description": "Displays error message after input",
|
|
5040
|
-
"required": false,
|
|
5041
|
-
"type": {
|
|
5042
|
-
"name": "node",
|
|
5043
|
-
"raw": "ReactNode"
|
|
5044
|
-
}
|
|
5045
|
-
},
|
|
5046
|
-
"required": {
|
|
5047
|
-
"description": "Adds required attribute to the input and red asterisk on the right side of label",
|
|
5301
|
+
"inheritPadding": {
|
|
5302
|
+
"description": "Determines whether section from inherit padding from Card",
|
|
5048
5303
|
"required": false,
|
|
5049
5304
|
"type": {
|
|
5050
5305
|
"name": "bool",
|
|
5051
5306
|
"raw": "boolean"
|
|
5052
5307
|
}
|
|
5053
5308
|
},
|
|
5054
|
-
"
|
|
5055
|
-
"description": "
|
|
5309
|
+
"withBorder": {
|
|
5310
|
+
"description": "Adds 1px border with theme.colors.gray[3] color in light color scheme and theme.colors.dark[4] in dark color scheme",
|
|
5056
5311
|
"required": false,
|
|
5057
5312
|
"type": {
|
|
5058
5313
|
"name": "bool",
|
|
5059
5314
|
"raw": "boolean"
|
|
5060
5315
|
}
|
|
5061
5316
|
},
|
|
5062
|
-
"inputWrapperOrder": {
|
|
5063
|
-
"description": "Controls order of the Input.Wrapper elements",
|
|
5064
|
-
"required": false,
|
|
5065
|
-
"type": {
|
|
5066
|
-
"name": "arrayOf",
|
|
5067
|
-
"value": {
|
|
5068
|
-
"name": "enum",
|
|
5069
|
-
"value": [
|
|
5070
|
-
{
|
|
5071
|
-
"value": "'label'",
|
|
5072
|
-
"computed": false
|
|
5073
|
-
},
|
|
5074
|
-
{
|
|
5075
|
-
"value": "'description'",
|
|
5076
|
-
"computed": false
|
|
5077
|
-
},
|
|
5078
|
-
{
|
|
5079
|
-
"value": "'error'",
|
|
5080
|
-
"computed": false
|
|
5081
|
-
},
|
|
5082
|
-
{
|
|
5083
|
-
"value": "'input'",
|
|
5084
|
-
"computed": false
|
|
5085
|
-
}
|
|
5086
|
-
],
|
|
5087
|
-
"raw": "\"label\" | \"description\" | \"error\" | \"input\""
|
|
5088
|
-
},
|
|
5089
|
-
"raw": "(\"label\" | \"description\" | \"error\" | \"input\")[]"
|
|
5090
|
-
}
|
|
5091
|
-
},
|
|
5092
5317
|
"className": {
|
|
5093
5318
|
"description": "Often used with CSS to style elements with common properties",
|
|
5094
5319
|
"required": false,
|
|
@@ -5344,12 +5569,20 @@
|
|
|
5344
5569
|
},
|
|
5345
5570
|
"isContext": false
|
|
5346
5571
|
},
|
|
5347
|
-
"src/ts/components/core/
|
|
5348
|
-
"displayName": "
|
|
5349
|
-
"description": "
|
|
5572
|
+
"src/ts/components/core/checkbox/Checkbox.tsx": {
|
|
5573
|
+
"displayName": "Checkbox",
|
|
5574
|
+
"description": "Capture boolean input from user. For more information, see: https://mantine.dev/core/checkbox/",
|
|
5350
5575
|
"props": {
|
|
5576
|
+
"color": {
|
|
5577
|
+
"description": "Key of theme.colors",
|
|
5578
|
+
"required": false,
|
|
5579
|
+
"type": {
|
|
5580
|
+
"name": "any",
|
|
5581
|
+
"raw": "DefaultMantineColor"
|
|
5582
|
+
}
|
|
5583
|
+
},
|
|
5351
5584
|
"radius": {
|
|
5352
|
-
"description": "
|
|
5585
|
+
"description": "Key of theme.radius or number to set border-radius in px",
|
|
5353
5586
|
"required": false,
|
|
5354
5587
|
"type": {
|
|
5355
5588
|
"name": "union",
|
|
@@ -5392,52 +5625,32 @@
|
|
|
5392
5625
|
"raw": "MantineSize"
|
|
5393
5626
|
}
|
|
5394
5627
|
},
|
|
5395
|
-
"
|
|
5396
|
-
"description": "
|
|
5628
|
+
"label": {
|
|
5629
|
+
"description": "Checkbox label",
|
|
5397
5630
|
"required": false,
|
|
5398
5631
|
"type": {
|
|
5399
|
-
"name": "
|
|
5400
|
-
"
|
|
5401
|
-
{
|
|
5402
|
-
"value": "'radio'",
|
|
5403
|
-
"computed": false
|
|
5404
|
-
},
|
|
5405
|
-
{
|
|
5406
|
-
"value": "'checkbox'",
|
|
5407
|
-
"computed": false
|
|
5408
|
-
}
|
|
5409
|
-
],
|
|
5410
|
-
"raw": "\"radio\" | \"checkbox\""
|
|
5632
|
+
"name": "node",
|
|
5633
|
+
"raw": "ReactNode"
|
|
5411
5634
|
}
|
|
5412
5635
|
},
|
|
5413
|
-
"
|
|
5414
|
-
"description": "
|
|
5636
|
+
"indeterminate": {
|
|
5637
|
+
"description": "Indeterminate state of checkbox, overwrites checked",
|
|
5415
5638
|
"required": false,
|
|
5416
5639
|
"type": {
|
|
5417
|
-
"name": "
|
|
5418
|
-
"
|
|
5419
|
-
{
|
|
5420
|
-
"value": "'outline'",
|
|
5421
|
-
"computed": false
|
|
5422
|
-
},
|
|
5423
|
-
{
|
|
5424
|
-
"value": "'filled'",
|
|
5425
|
-
"computed": false
|
|
5426
|
-
}
|
|
5427
|
-
],
|
|
5428
|
-
"raw": "\"outline\" | \"filled\""
|
|
5640
|
+
"name": "bool",
|
|
5641
|
+
"raw": "boolean"
|
|
5429
5642
|
}
|
|
5430
5643
|
},
|
|
5431
|
-
"
|
|
5432
|
-
"description": "
|
|
5644
|
+
"transitionDuration": {
|
|
5645
|
+
"description": "Transition duration in ms",
|
|
5433
5646
|
"required": false,
|
|
5434
5647
|
"type": {
|
|
5435
|
-
"name": "
|
|
5436
|
-
"raw": "
|
|
5648
|
+
"name": "number",
|
|
5649
|
+
"raw": "number"
|
|
5437
5650
|
}
|
|
5438
5651
|
},
|
|
5439
5652
|
"checked": {
|
|
5440
|
-
"description": "
|
|
5653
|
+
"description": "State of check box",
|
|
5441
5654
|
"required": false,
|
|
5442
5655
|
"defaultValue": {
|
|
5443
5656
|
"value": "false",
|
|
@@ -5448,16 +5661,8 @@
|
|
|
5448
5661
|
"raw": "boolean"
|
|
5449
5662
|
}
|
|
5450
5663
|
},
|
|
5451
|
-
"color": {
|
|
5452
|
-
"description": "Active color from theme, defaults to theme.primaryColor",
|
|
5453
|
-
"required": false,
|
|
5454
|
-
"type": {
|
|
5455
|
-
"name": "any",
|
|
5456
|
-
"raw": "DefaultMantineColor"
|
|
5457
|
-
}
|
|
5458
|
-
},
|
|
5459
5664
|
"value": {
|
|
5460
|
-
"description": "To be used with
|
|
5665
|
+
"description": "To be used with checkbox group",
|
|
5461
5666
|
"required": false,
|
|
5462
5667
|
"type": {
|
|
5463
5668
|
"name": "string",
|
|
@@ -5715,16 +5920,76 @@
|
|
|
5715
5920
|
],
|
|
5716
5921
|
"raw": "MantineNumberSize"
|
|
5717
5922
|
}
|
|
5923
|
+
},
|
|
5924
|
+
"persistence": {
|
|
5925
|
+
"description": "Used to allow user interactions in this component to be persisted when\nthe component - or the page - is refreshed. If `persisted` is truthy and\nhasn't changed from its previous value, a `value` that the user has\nchanged while using the app will keep that change, as long as\nthe new `value` also matches what was given originally.\nUsed in conjunction with `persistence_type`.",
|
|
5926
|
+
"required": true,
|
|
5927
|
+
"type": {
|
|
5928
|
+
"name": "union",
|
|
5929
|
+
"value": [
|
|
5930
|
+
{
|
|
5931
|
+
"name": "string",
|
|
5932
|
+
"raw": "string"
|
|
5933
|
+
},
|
|
5934
|
+
{
|
|
5935
|
+
"name": "number",
|
|
5936
|
+
"raw": "number"
|
|
5937
|
+
}
|
|
5938
|
+
],
|
|
5939
|
+
"raw": "string | number | boolean"
|
|
5940
|
+
}
|
|
5941
|
+
},
|
|
5942
|
+
"persisted_props": {
|
|
5943
|
+
"description": "Properties whose user interactions will persist after refreshing the\ncomponent or the page. Since only `value` is allowed this prop can\nnormally be ignored.",
|
|
5944
|
+
"required": false,
|
|
5945
|
+
"defaultValue": {
|
|
5946
|
+
"value": "[\"checked\"]",
|
|
5947
|
+
"computed": false
|
|
5948
|
+
},
|
|
5949
|
+
"type": {
|
|
5950
|
+
"name": "arrayOf",
|
|
5951
|
+
"value": {
|
|
5952
|
+
"name": "string",
|
|
5953
|
+
"raw": "string"
|
|
5954
|
+
},
|
|
5955
|
+
"raw": "string[]"
|
|
5956
|
+
}
|
|
5957
|
+
},
|
|
5958
|
+
"persistence_type": {
|
|
5959
|
+
"description": "Where persisted user changes will be stored:\nmemory: only kept in memory, reset on page refresh.\nlocal: window.localStorage, data is kept after the browser quit.\nsession: window.sessionStorage, data is cleared once the browser quit.",
|
|
5960
|
+
"required": false,
|
|
5961
|
+
"defaultValue": {
|
|
5962
|
+
"value": "'local'",
|
|
5963
|
+
"computed": false
|
|
5964
|
+
},
|
|
5965
|
+
"type": {
|
|
5966
|
+
"name": "enum",
|
|
5967
|
+
"value": [
|
|
5968
|
+
{
|
|
5969
|
+
"value": "'local'",
|
|
5970
|
+
"computed": false
|
|
5971
|
+
},
|
|
5972
|
+
{
|
|
5973
|
+
"value": "'session'",
|
|
5974
|
+
"computed": false
|
|
5975
|
+
},
|
|
5976
|
+
{
|
|
5977
|
+
"value": "'memory'",
|
|
5978
|
+
"computed": false
|
|
5979
|
+
}
|
|
5980
|
+
],
|
|
5981
|
+
"raw": "\"local\" | \"session\" | \"memory\""
|
|
5982
|
+
}
|
|
5718
5983
|
}
|
|
5719
5984
|
},
|
|
5720
5985
|
"isContext": false
|
|
5721
5986
|
},
|
|
5722
|
-
"src/ts/components/core/
|
|
5723
|
-
"displayName": "
|
|
5724
|
-
"description": "
|
|
5987
|
+
"src/ts/components/core/checkbox/CheckboxGroup.tsx": {
|
|
5988
|
+
"displayName": "CheckboxGroup",
|
|
5989
|
+
"description": "Capture boolean input from user. For more information, see: https://mantine.dev/core/checkbox/",
|
|
5725
5990
|
"props": {
|
|
5726
5991
|
"children": {
|
|
5727
|
-
"description": "
|
|
5992
|
+
"description": "dmc.Checkbox components only",
|
|
5728
5993
|
"required": false,
|
|
5729
5994
|
"type": {
|
|
5730
5995
|
"name": "node",
|
|
@@ -5732,7 +5997,7 @@
|
|
|
5732
5997
|
}
|
|
5733
5998
|
},
|
|
5734
5999
|
"value": {
|
|
5735
|
-
"description": "Value of currently selected
|
|
6000
|
+
"description": "Value of currently selected checkbox",
|
|
5736
6001
|
"required": false,
|
|
5737
6002
|
"type": {
|
|
5738
6003
|
"name": "arrayOf",
|
|
@@ -5743,98 +6008,210 @@
|
|
|
5743
6008
|
"raw": "string[]"
|
|
5744
6009
|
}
|
|
5745
6010
|
},
|
|
5746
|
-
"
|
|
5747
|
-
"description": "
|
|
6011
|
+
"orientation": {
|
|
6012
|
+
"description": "Horizontal or vertical orientation",
|
|
5748
6013
|
"required": false,
|
|
5749
6014
|
"type": {
|
|
5750
|
-
"name": "
|
|
5751
|
-
"
|
|
6015
|
+
"name": "enum",
|
|
6016
|
+
"value": [
|
|
6017
|
+
{
|
|
6018
|
+
"value": "'horizontal'",
|
|
6019
|
+
"computed": false
|
|
6020
|
+
},
|
|
6021
|
+
{
|
|
6022
|
+
"value": "'vertical'",
|
|
6023
|
+
"computed": false
|
|
6024
|
+
}
|
|
6025
|
+
],
|
|
6026
|
+
"raw": "\"horizontal\" | \"vertical\""
|
|
5752
6027
|
}
|
|
5753
6028
|
},
|
|
5754
|
-
"
|
|
5755
|
-
"description": "
|
|
6029
|
+
"spacing": {
|
|
6030
|
+
"description": "Spacing between checkboxes in horizontal orientation",
|
|
6031
|
+
"required": false,
|
|
6032
|
+
"type": {
|
|
6033
|
+
"name": "union",
|
|
6034
|
+
"value": [
|
|
6035
|
+
{
|
|
6036
|
+
"name": "number",
|
|
6037
|
+
"raw": "number"
|
|
6038
|
+
}
|
|
6039
|
+
],
|
|
6040
|
+
"raw": "MantineNumberSize"
|
|
6041
|
+
}
|
|
6042
|
+
},
|
|
6043
|
+
"offset": {
|
|
6044
|
+
"description": "Space between label and inputs",
|
|
6045
|
+
"required": false,
|
|
6046
|
+
"type": {
|
|
6047
|
+
"name": "union",
|
|
6048
|
+
"value": [
|
|
6049
|
+
{
|
|
6050
|
+
"name": "number",
|
|
6051
|
+
"raw": "number"
|
|
6052
|
+
}
|
|
6053
|
+
],
|
|
6054
|
+
"raw": "MantineNumberSize"
|
|
6055
|
+
}
|
|
6056
|
+
},
|
|
6057
|
+
"size": {
|
|
6058
|
+
"description": "Predefined label fontSize, checkbox width, height and border-radius",
|
|
5756
6059
|
"required": false,
|
|
5757
6060
|
"type": {
|
|
5758
6061
|
"name": "enum",
|
|
5759
6062
|
"value": [
|
|
5760
6063
|
{
|
|
5761
|
-
"value": "'
|
|
6064
|
+
"value": "'xs'",
|
|
5762
6065
|
"computed": false
|
|
5763
6066
|
},
|
|
5764
6067
|
{
|
|
5765
|
-
"value": "'
|
|
6068
|
+
"value": "'sm'",
|
|
5766
6069
|
"computed": false
|
|
5767
6070
|
},
|
|
5768
6071
|
{
|
|
5769
|
-
"value": "'
|
|
6072
|
+
"value": "'md'",
|
|
5770
6073
|
"computed": false
|
|
5771
6074
|
},
|
|
5772
6075
|
{
|
|
5773
|
-
"value": "'
|
|
6076
|
+
"value": "'lg'",
|
|
6077
|
+
"computed": false
|
|
6078
|
+
},
|
|
6079
|
+
{
|
|
6080
|
+
"value": "'xl'",
|
|
5774
6081
|
"computed": false
|
|
5775
6082
|
}
|
|
5776
6083
|
],
|
|
5777
|
-
"raw": "
|
|
6084
|
+
"raw": "MantineSize"
|
|
5778
6085
|
}
|
|
5779
6086
|
},
|
|
5780
|
-
"
|
|
5781
|
-
"description": "
|
|
6087
|
+
"label": {
|
|
6088
|
+
"description": "Input label, displayed before input",
|
|
6089
|
+
"required": false,
|
|
6090
|
+
"type": {
|
|
6091
|
+
"name": "node",
|
|
6092
|
+
"raw": "ReactNode"
|
|
6093
|
+
}
|
|
6094
|
+
},
|
|
6095
|
+
"description": {
|
|
6096
|
+
"description": "Input description, displayed after label",
|
|
6097
|
+
"required": false,
|
|
6098
|
+
"type": {
|
|
6099
|
+
"name": "node",
|
|
6100
|
+
"raw": "ReactNode"
|
|
6101
|
+
}
|
|
6102
|
+
},
|
|
6103
|
+
"error": {
|
|
6104
|
+
"description": "Displays error message after input",
|
|
6105
|
+
"required": false,
|
|
6106
|
+
"type": {
|
|
6107
|
+
"name": "node",
|
|
6108
|
+
"raw": "ReactNode"
|
|
6109
|
+
}
|
|
6110
|
+
},
|
|
6111
|
+
"required": {
|
|
6112
|
+
"description": "Adds required attribute to the input and red asterisk on the right side of label",
|
|
5782
6113
|
"required": false,
|
|
5783
6114
|
"type": {
|
|
5784
6115
|
"name": "bool",
|
|
5785
6116
|
"raw": "boolean"
|
|
5786
6117
|
}
|
|
5787
6118
|
},
|
|
5788
|
-
"
|
|
5789
|
-
"description": "
|
|
6119
|
+
"withAsterisk": {
|
|
6120
|
+
"description": "Determines whether required asterisk should be rendered, overrides required prop, does not add required attribute to the input",
|
|
5790
6121
|
"required": false,
|
|
5791
6122
|
"type": {
|
|
5792
6123
|
"name": "bool",
|
|
5793
6124
|
"raw": "boolean"
|
|
5794
6125
|
}
|
|
5795
6126
|
},
|
|
5796
|
-
"
|
|
5797
|
-
"description": "
|
|
6127
|
+
"inputWrapperOrder": {
|
|
6128
|
+
"description": "Controls order of the Input.Wrapper elements",
|
|
5798
6129
|
"required": false,
|
|
6130
|
+
"type": {
|
|
6131
|
+
"name": "arrayOf",
|
|
6132
|
+
"value": {
|
|
6133
|
+
"name": "enum",
|
|
6134
|
+
"value": [
|
|
6135
|
+
{
|
|
6136
|
+
"value": "'label'",
|
|
6137
|
+
"computed": false
|
|
6138
|
+
},
|
|
6139
|
+
{
|
|
6140
|
+
"value": "'description'",
|
|
6141
|
+
"computed": false
|
|
6142
|
+
},
|
|
6143
|
+
{
|
|
6144
|
+
"value": "'error'",
|
|
6145
|
+
"computed": false
|
|
6146
|
+
},
|
|
6147
|
+
{
|
|
6148
|
+
"value": "'input'",
|
|
6149
|
+
"computed": false
|
|
6150
|
+
}
|
|
6151
|
+
],
|
|
6152
|
+
"raw": "\"label\" | \"description\" | \"error\" | \"input\""
|
|
6153
|
+
},
|
|
6154
|
+
"raw": "(\"label\" | \"description\" | \"error\" | \"input\")[]"
|
|
6155
|
+
}
|
|
6156
|
+
},
|
|
6157
|
+
"persistence": {
|
|
6158
|
+
"description": "Used to allow user interactions in this component to be persisted when\nthe component - or the page - is refreshed. If `persisted` is truthy and\nhasn't changed from its previous value, a `value` that the user has\nchanged while using the app will keep that change, as long as\nthe new `value` also matches what was given originally.\nUsed in conjunction with `persistence_type`.",
|
|
6159
|
+
"required": true,
|
|
5799
6160
|
"type": {
|
|
5800
6161
|
"name": "union",
|
|
5801
6162
|
"value": [
|
|
6163
|
+
{
|
|
6164
|
+
"name": "string",
|
|
6165
|
+
"raw": "string"
|
|
6166
|
+
},
|
|
5802
6167
|
{
|
|
5803
6168
|
"name": "number",
|
|
5804
6169
|
"raw": "number"
|
|
5805
6170
|
}
|
|
5806
6171
|
],
|
|
5807
|
-
"raw": "
|
|
6172
|
+
"raw": "string | number | boolean"
|
|
5808
6173
|
}
|
|
5809
6174
|
},
|
|
5810
|
-
"
|
|
5811
|
-
"description": "
|
|
6175
|
+
"persisted_props": {
|
|
6176
|
+
"description": "Properties whose user interactions will persist after refreshing the\ncomponent or the page. Since only `value` is allowed this prop can\nnormally be ignored.",
|
|
5812
6177
|
"required": false,
|
|
6178
|
+
"defaultValue": {
|
|
6179
|
+
"value": "[\"value\"]",
|
|
6180
|
+
"computed": false
|
|
6181
|
+
},
|
|
6182
|
+
"type": {
|
|
6183
|
+
"name": "arrayOf",
|
|
6184
|
+
"value": {
|
|
6185
|
+
"name": "string",
|
|
6186
|
+
"raw": "string"
|
|
6187
|
+
},
|
|
6188
|
+
"raw": "string[]"
|
|
6189
|
+
}
|
|
6190
|
+
},
|
|
6191
|
+
"persistence_type": {
|
|
6192
|
+
"description": "Where persisted user changes will be stored:\nmemory: only kept in memory, reset on page refresh.\nlocal: window.localStorage, data is kept after the browser quit.\nsession: window.sessionStorage, data is cleared once the browser quit.",
|
|
6193
|
+
"required": false,
|
|
6194
|
+
"defaultValue": {
|
|
6195
|
+
"value": "'local'",
|
|
6196
|
+
"computed": false
|
|
6197
|
+
},
|
|
5813
6198
|
"type": {
|
|
5814
6199
|
"name": "enum",
|
|
5815
6200
|
"value": [
|
|
5816
6201
|
{
|
|
5817
|
-
"value": "'
|
|
5818
|
-
"computed": false
|
|
5819
|
-
},
|
|
5820
|
-
{
|
|
5821
|
-
"value": "'flex-start'",
|
|
5822
|
-
"computed": false
|
|
5823
|
-
},
|
|
5824
|
-
{
|
|
5825
|
-
"value": "'flex-end'",
|
|
6202
|
+
"value": "'local'",
|
|
5826
6203
|
"computed": false
|
|
5827
6204
|
},
|
|
5828
6205
|
{
|
|
5829
|
-
"value": "'
|
|
6206
|
+
"value": "'session'",
|
|
5830
6207
|
"computed": false
|
|
5831
6208
|
},
|
|
5832
6209
|
{
|
|
5833
|
-
"value": "'
|
|
6210
|
+
"value": "'memory'",
|
|
5834
6211
|
"computed": false
|
|
5835
6212
|
}
|
|
5836
6213
|
],
|
|
5837
|
-
"raw": "\"
|
|
6214
|
+
"raw": "\"local\" | \"session\" | \"memory\""
|
|
5838
6215
|
}
|
|
5839
6216
|
},
|
|
5840
6217
|
"className": {
|
|
@@ -6092,148 +6469,184 @@
|
|
|
6092
6469
|
},
|
|
6093
6470
|
"isContext": false
|
|
6094
6471
|
},
|
|
6095
|
-
"src/ts/components/core/
|
|
6096
|
-
"displayName": "
|
|
6097
|
-
"description": "
|
|
6472
|
+
"src/ts/components/core/chip/Chip.tsx": {
|
|
6473
|
+
"displayName": "Chip",
|
|
6474
|
+
"description": "Pick one or multiple values with inline controls. For more information, see: https://mantine.dev/core/chip/",
|
|
6098
6475
|
"props": {
|
|
6099
|
-
"
|
|
6100
|
-
"description": "
|
|
6476
|
+
"radius": {
|
|
6477
|
+
"description": "Chip radius from theme or number to set value in px",
|
|
6101
6478
|
"required": false,
|
|
6102
6479
|
"type": {
|
|
6103
|
-
"name": "
|
|
6104
|
-
"
|
|
6480
|
+
"name": "union",
|
|
6481
|
+
"value": [
|
|
6482
|
+
{
|
|
6483
|
+
"name": "number",
|
|
6484
|
+
"raw": "number"
|
|
6485
|
+
}
|
|
6486
|
+
],
|
|
6487
|
+
"raw": "MantineNumberSize"
|
|
6105
6488
|
}
|
|
6106
6489
|
},
|
|
6107
|
-
"
|
|
6108
|
-
"description": "
|
|
6490
|
+
"size": {
|
|
6491
|
+
"description": "Predefined label font-size and checkbox width and height in px",
|
|
6109
6492
|
"required": false,
|
|
6110
6493
|
"type": {
|
|
6111
6494
|
"name": "enum",
|
|
6112
6495
|
"value": [
|
|
6113
6496
|
{
|
|
6114
|
-
"value": "'
|
|
6497
|
+
"value": "'xs'",
|
|
6115
6498
|
"computed": false
|
|
6116
6499
|
},
|
|
6117
6500
|
{
|
|
6118
|
-
"value": "'
|
|
6501
|
+
"value": "'sm'",
|
|
6502
|
+
"computed": false
|
|
6503
|
+
},
|
|
6504
|
+
{
|
|
6505
|
+
"value": "'md'",
|
|
6506
|
+
"computed": false
|
|
6507
|
+
},
|
|
6508
|
+
{
|
|
6509
|
+
"value": "'lg'",
|
|
6510
|
+
"computed": false
|
|
6511
|
+
},
|
|
6512
|
+
{
|
|
6513
|
+
"value": "'xl'",
|
|
6119
6514
|
"computed": false
|
|
6120
6515
|
}
|
|
6121
6516
|
],
|
|
6122
|
-
"raw": "
|
|
6517
|
+
"raw": "MantineSize"
|
|
6123
6518
|
}
|
|
6124
6519
|
},
|
|
6125
|
-
"
|
|
6126
|
-
"description": "
|
|
6520
|
+
"type": {
|
|
6521
|
+
"description": "Chip input type",
|
|
6127
6522
|
"required": false,
|
|
6128
6523
|
"type": {
|
|
6129
|
-
"name": "
|
|
6130
|
-
"
|
|
6524
|
+
"name": "enum",
|
|
6525
|
+
"value": [
|
|
6526
|
+
{
|
|
6527
|
+
"value": "'radio'",
|
|
6528
|
+
"computed": false
|
|
6529
|
+
},
|
|
6530
|
+
{
|
|
6531
|
+
"value": "'checkbox'",
|
|
6532
|
+
"computed": false
|
|
6533
|
+
}
|
|
6534
|
+
],
|
|
6535
|
+
"raw": "\"radio\" | \"checkbox\""
|
|
6131
6536
|
}
|
|
6132
6537
|
},
|
|
6133
|
-
"
|
|
6134
|
-
"description": "
|
|
6538
|
+
"variant": {
|
|
6539
|
+
"description": "Controls chip appearance, defaults to filled with dark theme and to outline in light theme",
|
|
6135
6540
|
"required": false,
|
|
6136
6541
|
"type": {
|
|
6137
|
-
"name": "
|
|
6542
|
+
"name": "enum",
|
|
6138
6543
|
"value": [
|
|
6139
6544
|
{
|
|
6140
|
-
"
|
|
6141
|
-
"
|
|
6545
|
+
"value": "'outline'",
|
|
6546
|
+
"computed": false
|
|
6547
|
+
},
|
|
6548
|
+
{
|
|
6549
|
+
"value": "'filled'",
|
|
6550
|
+
"computed": false
|
|
6142
6551
|
}
|
|
6143
6552
|
],
|
|
6144
|
-
"raw": "
|
|
6553
|
+
"raw": "\"outline\" | \"filled\""
|
|
6145
6554
|
}
|
|
6146
6555
|
},
|
|
6147
|
-
"
|
|
6148
|
-
"description": "
|
|
6556
|
+
"children": {
|
|
6557
|
+
"description": "Chip label",
|
|
6149
6558
|
"required": false,
|
|
6150
6559
|
"type": {
|
|
6151
6560
|
"name": "node",
|
|
6152
6561
|
"raw": "ReactNode"
|
|
6153
6562
|
}
|
|
6154
6563
|
},
|
|
6155
|
-
"
|
|
6156
|
-
"description": "
|
|
6564
|
+
"checked": {
|
|
6565
|
+
"description": "Checked state for controlled component",
|
|
6566
|
+
"required": false,
|
|
6567
|
+
"defaultValue": {
|
|
6568
|
+
"value": "false",
|
|
6569
|
+
"computed": false
|
|
6570
|
+
},
|
|
6571
|
+
"type": {
|
|
6572
|
+
"name": "bool",
|
|
6573
|
+
"raw": "boolean"
|
|
6574
|
+
}
|
|
6575
|
+
},
|
|
6576
|
+
"color": {
|
|
6577
|
+
"description": "Active color from theme, defaults to theme.primaryColor",
|
|
6578
|
+
"required": false,
|
|
6579
|
+
"type": {
|
|
6580
|
+
"name": "any",
|
|
6581
|
+
"raw": "DefaultMantineColor"
|
|
6582
|
+
}
|
|
6583
|
+
},
|
|
6584
|
+
"value": {
|
|
6585
|
+
"description": "To be used with chip group",
|
|
6157
6586
|
"required": false,
|
|
6587
|
+
"type": {
|
|
6588
|
+
"name": "string",
|
|
6589
|
+
"raw": "string"
|
|
6590
|
+
}
|
|
6591
|
+
},
|
|
6592
|
+
"persistence": {
|
|
6593
|
+
"description": "Used to allow user interactions in this component to be persisted when\nthe component - or the page - is refreshed. If `persisted` is truthy and\nhasn't changed from its previous value, a `value` that the user has\nchanged while using the app will keep that change, as long as\nthe new `value` also matches what was given originally.\nUsed in conjunction with `persistence_type`.",
|
|
6594
|
+
"required": true,
|
|
6158
6595
|
"type": {
|
|
6159
6596
|
"name": "union",
|
|
6160
6597
|
"value": [
|
|
6598
|
+
{
|
|
6599
|
+
"name": "string",
|
|
6600
|
+
"raw": "string"
|
|
6601
|
+
},
|
|
6161
6602
|
{
|
|
6162
6603
|
"name": "number",
|
|
6163
6604
|
"raw": "number"
|
|
6164
6605
|
}
|
|
6165
6606
|
],
|
|
6166
|
-
"raw": "
|
|
6607
|
+
"raw": "string | number | boolean"
|
|
6167
6608
|
}
|
|
6168
6609
|
},
|
|
6169
|
-
"
|
|
6170
|
-
"description": "
|
|
6610
|
+
"persisted_props": {
|
|
6611
|
+
"description": "Properties whose user interactions will persist after refreshing the\ncomponent or the page. Since only `value` is allowed this prop can\nnormally be ignored.",
|
|
6171
6612
|
"required": false,
|
|
6613
|
+
"defaultValue": {
|
|
6614
|
+
"value": "[\"checked\"]",
|
|
6615
|
+
"computed": false
|
|
6616
|
+
},
|
|
6172
6617
|
"type": {
|
|
6173
|
-
"name": "
|
|
6174
|
-
"
|
|
6618
|
+
"name": "arrayOf",
|
|
6619
|
+
"value": {
|
|
6620
|
+
"name": "string",
|
|
6621
|
+
"raw": "string"
|
|
6622
|
+
},
|
|
6623
|
+
"raw": "string[]"
|
|
6175
6624
|
}
|
|
6176
6625
|
},
|
|
6177
|
-
"
|
|
6178
|
-
"description": "
|
|
6626
|
+
"persistence_type": {
|
|
6627
|
+
"description": "Where persisted user changes will be stored:\nmemory: only kept in memory, reset on page refresh.\nlocal: window.localStorage, data is kept after the browser quit.\nsession: window.sessionStorage, data is cleared once the browser quit.",
|
|
6179
6628
|
"required": false,
|
|
6629
|
+
"defaultValue": {
|
|
6630
|
+
"value": "'local'",
|
|
6631
|
+
"computed": false
|
|
6632
|
+
},
|
|
6180
6633
|
"type": {
|
|
6181
6634
|
"name": "enum",
|
|
6182
6635
|
"value": [
|
|
6183
6636
|
{
|
|
6184
|
-
"value": "'
|
|
6185
|
-
"computed": false
|
|
6186
|
-
},
|
|
6187
|
-
{
|
|
6188
|
-
"value": "'circle'",
|
|
6189
|
-
"computed": false
|
|
6190
|
-
},
|
|
6191
|
-
{
|
|
6192
|
-
"value": "'square'",
|
|
6193
|
-
"computed": false
|
|
6194
|
-
},
|
|
6195
|
-
{
|
|
6196
|
-
"value": "'decimal'",
|
|
6197
|
-
"computed": false
|
|
6198
|
-
},
|
|
6199
|
-
{
|
|
6200
|
-
"value": "'lower-roman'",
|
|
6201
|
-
"computed": false
|
|
6202
|
-
},
|
|
6203
|
-
{
|
|
6204
|
-
"value": "'upper-roman'",
|
|
6205
|
-
"computed": false
|
|
6206
|
-
},
|
|
6207
|
-
{
|
|
6208
|
-
"value": "'lower-greek'",
|
|
6209
|
-
"computed": false
|
|
6210
|
-
},
|
|
6211
|
-
{
|
|
6212
|
-
"value": "'lower-latin'",
|
|
6637
|
+
"value": "'local'",
|
|
6213
6638
|
"computed": false
|
|
6214
6639
|
},
|
|
6215
6640
|
{
|
|
6216
|
-
"value": "'
|
|
6641
|
+
"value": "'session'",
|
|
6217
6642
|
"computed": false
|
|
6218
6643
|
},
|
|
6219
6644
|
{
|
|
6220
|
-
"value": "'
|
|
6221
|
-
"computed": false
|
|
6222
|
-
},
|
|
6223
|
-
{
|
|
6224
|
-
"value": "'upper-alpha'",
|
|
6225
|
-
"computed": false
|
|
6226
|
-
},
|
|
6227
|
-
{
|
|
6228
|
-
"value": "'none'",
|
|
6229
|
-
"computed": false
|
|
6230
|
-
},
|
|
6231
|
-
{
|
|
6232
|
-
"value": "'inherit'",
|
|
6645
|
+
"value": "'memory'",
|
|
6233
6646
|
"computed": false
|
|
6234
6647
|
}
|
|
6235
6648
|
],
|
|
6236
|
-
"raw": "\"
|
|
6649
|
+
"raw": "\"local\" | \"session\" | \"memory\""
|
|
6237
6650
|
}
|
|
6238
6651
|
},
|
|
6239
6652
|
"className": {
|
|
@@ -6491,24 +6904,856 @@
|
|
|
6491
6904
|
},
|
|
6492
6905
|
"isContext": false
|
|
6493
6906
|
},
|
|
6494
|
-
"src/ts/components/core/
|
|
6495
|
-
"displayName": "
|
|
6496
|
-
"description": "
|
|
6907
|
+
"src/ts/components/core/chip/ChipGroup.tsx": {
|
|
6908
|
+
"displayName": "ChipGroup",
|
|
6909
|
+
"description": "Pick one or multiple values with inline controls. For more information, see: https://mantine.dev/core/chip/",
|
|
6497
6910
|
"props": {
|
|
6498
6911
|
"children": {
|
|
6499
|
-
"description": "
|
|
6912
|
+
"description": "Chip components only",
|
|
6500
6913
|
"required": false,
|
|
6501
6914
|
"type": {
|
|
6502
6915
|
"name": "node",
|
|
6503
6916
|
"raw": "ReactNode"
|
|
6504
6917
|
}
|
|
6505
6918
|
},
|
|
6506
|
-
"
|
|
6507
|
-
"description": "
|
|
6919
|
+
"value": {
|
|
6920
|
+
"description": "Value of currently selected Chip",
|
|
6508
6921
|
"required": false,
|
|
6509
6922
|
"type": {
|
|
6510
|
-
"name": "
|
|
6511
|
-
"
|
|
6923
|
+
"name": "arrayOf",
|
|
6924
|
+
"value": {
|
|
6925
|
+
"name": "string",
|
|
6926
|
+
"raw": "string"
|
|
6927
|
+
},
|
|
6928
|
+
"raw": "string[]"
|
|
6929
|
+
}
|
|
6930
|
+
},
|
|
6931
|
+
"multiple": {
|
|
6932
|
+
"description": "Allow multiple values to be selected at a time",
|
|
6933
|
+
"required": false,
|
|
6934
|
+
"type": {
|
|
6935
|
+
"name": "bool",
|
|
6936
|
+
"raw": "boolean"
|
|
6937
|
+
}
|
|
6938
|
+
},
|
|
6939
|
+
"position": {
|
|
6940
|
+
"description": "Defines justify-content property",
|
|
6941
|
+
"required": false,
|
|
6942
|
+
"type": {
|
|
6943
|
+
"name": "enum",
|
|
6944
|
+
"value": [
|
|
6945
|
+
{
|
|
6946
|
+
"value": "'right'",
|
|
6947
|
+
"computed": false
|
|
6948
|
+
},
|
|
6949
|
+
{
|
|
6950
|
+
"value": "'center'",
|
|
6951
|
+
"computed": false
|
|
6952
|
+
},
|
|
6953
|
+
{
|
|
6954
|
+
"value": "'left'",
|
|
6955
|
+
"computed": false
|
|
6956
|
+
},
|
|
6957
|
+
{
|
|
6958
|
+
"value": "'apart'",
|
|
6959
|
+
"computed": false
|
|
6960
|
+
}
|
|
6961
|
+
],
|
|
6962
|
+
"raw": "GroupPosition"
|
|
6963
|
+
}
|
|
6964
|
+
},
|
|
6965
|
+
"noWrap": {
|
|
6966
|
+
"description": "Defined flex-wrap property",
|
|
6967
|
+
"required": false,
|
|
6968
|
+
"type": {
|
|
6969
|
+
"name": "bool",
|
|
6970
|
+
"raw": "boolean"
|
|
6971
|
+
}
|
|
6972
|
+
},
|
|
6973
|
+
"grow": {
|
|
6974
|
+
"description": "Defines flex-grow property for each element, true -> 1, false -> 0",
|
|
6975
|
+
"required": false,
|
|
6976
|
+
"type": {
|
|
6977
|
+
"name": "bool",
|
|
6978
|
+
"raw": "boolean"
|
|
6979
|
+
}
|
|
6980
|
+
},
|
|
6981
|
+
"spacing": {
|
|
6982
|
+
"description": "Space between elements",
|
|
6983
|
+
"required": false,
|
|
6984
|
+
"type": {
|
|
6985
|
+
"name": "union",
|
|
6986
|
+
"value": [
|
|
6987
|
+
{
|
|
6988
|
+
"name": "number",
|
|
6989
|
+
"raw": "number"
|
|
6990
|
+
}
|
|
6991
|
+
],
|
|
6992
|
+
"raw": "MantineNumberSize"
|
|
6993
|
+
}
|
|
6994
|
+
},
|
|
6995
|
+
"align": {
|
|
6996
|
+
"description": "Defines align-items css property",
|
|
6997
|
+
"required": false,
|
|
6998
|
+
"type": {
|
|
6999
|
+
"name": "enum",
|
|
7000
|
+
"value": [
|
|
7001
|
+
{
|
|
7002
|
+
"value": "'center'",
|
|
7003
|
+
"computed": false
|
|
7004
|
+
},
|
|
7005
|
+
{
|
|
7006
|
+
"value": "'flex-start'",
|
|
7007
|
+
"computed": false
|
|
7008
|
+
},
|
|
7009
|
+
{
|
|
7010
|
+
"value": "'flex-end'",
|
|
7011
|
+
"computed": false
|
|
7012
|
+
},
|
|
7013
|
+
{
|
|
7014
|
+
"value": "'baseline'",
|
|
7015
|
+
"computed": false
|
|
7016
|
+
},
|
|
7017
|
+
{
|
|
7018
|
+
"value": "'stretch'",
|
|
7019
|
+
"computed": false
|
|
7020
|
+
}
|
|
7021
|
+
],
|
|
7022
|
+
"raw": "\"center\" | \"flex-start\" | \"flex-end\" | \"baseline\" | \"stretch\""
|
|
7023
|
+
}
|
|
7024
|
+
},
|
|
7025
|
+
"className": {
|
|
7026
|
+
"description": "Often used with CSS to style elements with common properties",
|
|
7027
|
+
"required": false,
|
|
7028
|
+
"type": {
|
|
7029
|
+
"name": "string",
|
|
7030
|
+
"raw": "string"
|
|
7031
|
+
}
|
|
7032
|
+
},
|
|
7033
|
+
"style": {
|
|
7034
|
+
"description": "Inline style",
|
|
7035
|
+
"required": false,
|
|
7036
|
+
"type": {
|
|
7037
|
+
"name": "any",
|
|
7038
|
+
"raw": "any"
|
|
7039
|
+
}
|
|
7040
|
+
},
|
|
7041
|
+
"styles": {
|
|
7042
|
+
"description": "Mantine styles API",
|
|
7043
|
+
"required": false,
|
|
7044
|
+
"type": {
|
|
7045
|
+
"name": "object",
|
|
7046
|
+
"raw": "object"
|
|
7047
|
+
}
|
|
7048
|
+
},
|
|
7049
|
+
"id": {
|
|
7050
|
+
"description": "Unique ID to identify this component in Dash callbacks.",
|
|
7051
|
+
"required": false,
|
|
7052
|
+
"type": {
|
|
7053
|
+
"name": "string",
|
|
7054
|
+
"raw": "string"
|
|
7055
|
+
}
|
|
7056
|
+
},
|
|
7057
|
+
"unstyled": {
|
|
7058
|
+
"description": "Remove all Mantine styling from the component",
|
|
7059
|
+
"required": false,
|
|
7060
|
+
"type": {
|
|
7061
|
+
"name": "bool",
|
|
7062
|
+
"raw": "boolean"
|
|
7063
|
+
}
|
|
7064
|
+
},
|
|
7065
|
+
"setProps": {
|
|
7066
|
+
"description": "Update props to trigger callbacks.",
|
|
7067
|
+
"required": true,
|
|
7068
|
+
"type": {
|
|
7069
|
+
"name": "func",
|
|
7070
|
+
"raw": "(props: Record<string, any>) => void"
|
|
7071
|
+
}
|
|
7072
|
+
},
|
|
7073
|
+
"sx": {
|
|
7074
|
+
"description": "With sx you can add styles to component root element. If you need to customize styles of other elements within component use styles prop",
|
|
7075
|
+
"required": false,
|
|
7076
|
+
"type": {
|
|
7077
|
+
"name": "any",
|
|
7078
|
+
"raw": "any"
|
|
7079
|
+
}
|
|
7080
|
+
},
|
|
7081
|
+
"m": {
|
|
7082
|
+
"description": "margin props",
|
|
7083
|
+
"required": false,
|
|
7084
|
+
"type": {
|
|
7085
|
+
"name": "union",
|
|
7086
|
+
"value": [
|
|
7087
|
+
{
|
|
7088
|
+
"name": "number",
|
|
7089
|
+
"raw": "number"
|
|
7090
|
+
}
|
|
7091
|
+
],
|
|
7092
|
+
"raw": "MantineNumberSize"
|
|
7093
|
+
}
|
|
7094
|
+
},
|
|
7095
|
+
"my": {
|
|
7096
|
+
"description": "margin props",
|
|
7097
|
+
"required": false,
|
|
7098
|
+
"type": {
|
|
7099
|
+
"name": "union",
|
|
7100
|
+
"value": [
|
|
7101
|
+
{
|
|
7102
|
+
"name": "number",
|
|
7103
|
+
"raw": "number"
|
|
7104
|
+
}
|
|
7105
|
+
],
|
|
7106
|
+
"raw": "MantineNumberSize"
|
|
7107
|
+
}
|
|
7108
|
+
},
|
|
7109
|
+
"mx": {
|
|
7110
|
+
"description": "margin props",
|
|
7111
|
+
"required": false,
|
|
7112
|
+
"type": {
|
|
7113
|
+
"name": "union",
|
|
7114
|
+
"value": [
|
|
7115
|
+
{
|
|
7116
|
+
"name": "number",
|
|
7117
|
+
"raw": "number"
|
|
7118
|
+
}
|
|
7119
|
+
],
|
|
7120
|
+
"raw": "MantineNumberSize"
|
|
7121
|
+
}
|
|
7122
|
+
},
|
|
7123
|
+
"mt": {
|
|
7124
|
+
"description": "margin props",
|
|
7125
|
+
"required": false,
|
|
7126
|
+
"type": {
|
|
7127
|
+
"name": "union",
|
|
7128
|
+
"value": [
|
|
7129
|
+
{
|
|
7130
|
+
"name": "number",
|
|
7131
|
+
"raw": "number"
|
|
7132
|
+
}
|
|
7133
|
+
],
|
|
7134
|
+
"raw": "MantineNumberSize"
|
|
7135
|
+
}
|
|
7136
|
+
},
|
|
7137
|
+
"mb": {
|
|
7138
|
+
"description": "margin props",
|
|
7139
|
+
"required": false,
|
|
7140
|
+
"type": {
|
|
7141
|
+
"name": "union",
|
|
7142
|
+
"value": [
|
|
7143
|
+
{
|
|
7144
|
+
"name": "number",
|
|
7145
|
+
"raw": "number"
|
|
7146
|
+
}
|
|
7147
|
+
],
|
|
7148
|
+
"raw": "MantineNumberSize"
|
|
7149
|
+
}
|
|
7150
|
+
},
|
|
7151
|
+
"ml": {
|
|
7152
|
+
"description": "margin props",
|
|
7153
|
+
"required": false,
|
|
7154
|
+
"type": {
|
|
7155
|
+
"name": "union",
|
|
7156
|
+
"value": [
|
|
7157
|
+
{
|
|
7158
|
+
"name": "number",
|
|
7159
|
+
"raw": "number"
|
|
7160
|
+
}
|
|
7161
|
+
],
|
|
7162
|
+
"raw": "MantineNumberSize"
|
|
7163
|
+
}
|
|
7164
|
+
},
|
|
7165
|
+
"mr": {
|
|
7166
|
+
"description": "margin props",
|
|
7167
|
+
"required": false,
|
|
7168
|
+
"type": {
|
|
7169
|
+
"name": "union",
|
|
7170
|
+
"value": [
|
|
7171
|
+
{
|
|
7172
|
+
"name": "number",
|
|
7173
|
+
"raw": "number"
|
|
7174
|
+
}
|
|
7175
|
+
],
|
|
7176
|
+
"raw": "MantineNumberSize"
|
|
7177
|
+
}
|
|
7178
|
+
},
|
|
7179
|
+
"p": {
|
|
7180
|
+
"description": "padding props",
|
|
7181
|
+
"required": false,
|
|
7182
|
+
"type": {
|
|
7183
|
+
"name": "union",
|
|
7184
|
+
"value": [
|
|
7185
|
+
{
|
|
7186
|
+
"name": "number",
|
|
7187
|
+
"raw": "number"
|
|
7188
|
+
}
|
|
7189
|
+
],
|
|
7190
|
+
"raw": "MantineNumberSize"
|
|
7191
|
+
}
|
|
7192
|
+
},
|
|
7193
|
+
"py": {
|
|
7194
|
+
"description": "padding props",
|
|
7195
|
+
"required": false,
|
|
7196
|
+
"type": {
|
|
7197
|
+
"name": "union",
|
|
7198
|
+
"value": [
|
|
7199
|
+
{
|
|
7200
|
+
"name": "number",
|
|
7201
|
+
"raw": "number"
|
|
7202
|
+
}
|
|
7203
|
+
],
|
|
7204
|
+
"raw": "MantineNumberSize"
|
|
7205
|
+
}
|
|
7206
|
+
},
|
|
7207
|
+
"px": {
|
|
7208
|
+
"description": "padding props",
|
|
7209
|
+
"required": false,
|
|
7210
|
+
"type": {
|
|
7211
|
+
"name": "union",
|
|
7212
|
+
"value": [
|
|
7213
|
+
{
|
|
7214
|
+
"name": "number",
|
|
7215
|
+
"raw": "number"
|
|
7216
|
+
}
|
|
7217
|
+
],
|
|
7218
|
+
"raw": "MantineNumberSize"
|
|
7219
|
+
}
|
|
7220
|
+
},
|
|
7221
|
+
"pt": {
|
|
7222
|
+
"description": "padding props",
|
|
7223
|
+
"required": false,
|
|
7224
|
+
"type": {
|
|
7225
|
+
"name": "union",
|
|
7226
|
+
"value": [
|
|
7227
|
+
{
|
|
7228
|
+
"name": "number",
|
|
7229
|
+
"raw": "number"
|
|
7230
|
+
}
|
|
7231
|
+
],
|
|
7232
|
+
"raw": "MantineNumberSize"
|
|
7233
|
+
}
|
|
7234
|
+
},
|
|
7235
|
+
"pb": {
|
|
7236
|
+
"description": "padding props",
|
|
7237
|
+
"required": false,
|
|
7238
|
+
"type": {
|
|
7239
|
+
"name": "union",
|
|
7240
|
+
"value": [
|
|
7241
|
+
{
|
|
7242
|
+
"name": "number",
|
|
7243
|
+
"raw": "number"
|
|
7244
|
+
}
|
|
7245
|
+
],
|
|
7246
|
+
"raw": "MantineNumberSize"
|
|
7247
|
+
}
|
|
7248
|
+
},
|
|
7249
|
+
"pl": {
|
|
7250
|
+
"description": "padding props",
|
|
7251
|
+
"required": false,
|
|
7252
|
+
"type": {
|
|
7253
|
+
"name": "union",
|
|
7254
|
+
"value": [
|
|
7255
|
+
{
|
|
7256
|
+
"name": "number",
|
|
7257
|
+
"raw": "number"
|
|
7258
|
+
}
|
|
7259
|
+
],
|
|
7260
|
+
"raw": "MantineNumberSize"
|
|
7261
|
+
}
|
|
7262
|
+
},
|
|
7263
|
+
"pr": {
|
|
7264
|
+
"description": "padding props",
|
|
7265
|
+
"required": false,
|
|
7266
|
+
"type": {
|
|
7267
|
+
"name": "union",
|
|
7268
|
+
"value": [
|
|
7269
|
+
{
|
|
7270
|
+
"name": "number",
|
|
7271
|
+
"raw": "number"
|
|
7272
|
+
}
|
|
7273
|
+
],
|
|
7274
|
+
"raw": "MantineNumberSize"
|
|
7275
|
+
}
|
|
7276
|
+
},
|
|
7277
|
+
"persistence": {
|
|
7278
|
+
"description": "Used to allow user interactions in this component to be persisted when\nthe component - or the page - is refreshed. If `persisted` is truthy and\nhasn't changed from its previous value, a `value` that the user has\nchanged while using the app will keep that change, as long as\nthe new `value` also matches what was given originally.\nUsed in conjunction with `persistence_type`.",
|
|
7279
|
+
"required": true,
|
|
7280
|
+
"type": {
|
|
7281
|
+
"name": "union",
|
|
7282
|
+
"value": [
|
|
7283
|
+
{
|
|
7284
|
+
"name": "string",
|
|
7285
|
+
"raw": "string"
|
|
7286
|
+
},
|
|
7287
|
+
{
|
|
7288
|
+
"name": "number",
|
|
7289
|
+
"raw": "number"
|
|
7290
|
+
}
|
|
7291
|
+
],
|
|
7292
|
+
"raw": "string | number | boolean"
|
|
7293
|
+
}
|
|
7294
|
+
},
|
|
7295
|
+
"persisted_props": {
|
|
7296
|
+
"description": "Properties whose user interactions will persist after refreshing the\ncomponent or the page. Since only `value` is allowed this prop can\nnormally be ignored.",
|
|
7297
|
+
"required": false,
|
|
7298
|
+
"defaultValue": {
|
|
7299
|
+
"value": "[\"value\"]",
|
|
7300
|
+
"computed": false
|
|
7301
|
+
},
|
|
7302
|
+
"type": {
|
|
7303
|
+
"name": "arrayOf",
|
|
7304
|
+
"value": {
|
|
7305
|
+
"name": "string",
|
|
7306
|
+
"raw": "string"
|
|
7307
|
+
},
|
|
7308
|
+
"raw": "string[]"
|
|
7309
|
+
}
|
|
7310
|
+
},
|
|
7311
|
+
"persistence_type": {
|
|
7312
|
+
"description": "Where persisted user changes will be stored:\nmemory: only kept in memory, reset on page refresh.\nlocal: window.localStorage, data is kept after the browser quit.\nsession: window.sessionStorage, data is cleared once the browser quit.",
|
|
7313
|
+
"required": false,
|
|
7314
|
+
"defaultValue": {
|
|
7315
|
+
"value": "'local'",
|
|
7316
|
+
"computed": false
|
|
7317
|
+
},
|
|
7318
|
+
"type": {
|
|
7319
|
+
"name": "enum",
|
|
7320
|
+
"value": [
|
|
7321
|
+
{
|
|
7322
|
+
"value": "'local'",
|
|
7323
|
+
"computed": false
|
|
7324
|
+
},
|
|
7325
|
+
{
|
|
7326
|
+
"value": "'session'",
|
|
7327
|
+
"computed": false
|
|
7328
|
+
},
|
|
7329
|
+
{
|
|
7330
|
+
"value": "'memory'",
|
|
7331
|
+
"computed": false
|
|
7332
|
+
}
|
|
7333
|
+
],
|
|
7334
|
+
"raw": "\"local\" | \"session\" | \"memory\""
|
|
7335
|
+
}
|
|
7336
|
+
}
|
|
7337
|
+
},
|
|
7338
|
+
"isContext": false
|
|
7339
|
+
},
|
|
7340
|
+
"src/ts/components/core/list/List.tsx": {
|
|
7341
|
+
"displayName": "List",
|
|
7342
|
+
"description": "Display ordered or unordered list, see: https://mantine.dev/core/list/",
|
|
7343
|
+
"props": {
|
|
7344
|
+
"children": {
|
|
7345
|
+
"description": "dmc.ListItem components only",
|
|
7346
|
+
"required": false,
|
|
7347
|
+
"type": {
|
|
7348
|
+
"name": "node",
|
|
7349
|
+
"raw": "ReactNode"
|
|
7350
|
+
}
|
|
7351
|
+
},
|
|
7352
|
+
"type": {
|
|
7353
|
+
"description": "List type: ol or ul",
|
|
7354
|
+
"required": false,
|
|
7355
|
+
"type": {
|
|
7356
|
+
"name": "enum",
|
|
7357
|
+
"value": [
|
|
7358
|
+
{
|
|
7359
|
+
"value": "'ordered'",
|
|
7360
|
+
"computed": false
|
|
7361
|
+
},
|
|
7362
|
+
{
|
|
7363
|
+
"value": "'unordered'",
|
|
7364
|
+
"computed": false
|
|
7365
|
+
}
|
|
7366
|
+
],
|
|
7367
|
+
"raw": "\"ordered\" | \"unordered\""
|
|
7368
|
+
}
|
|
7369
|
+
},
|
|
7370
|
+
"withPadding": {
|
|
7371
|
+
"description": "Include padding-left to offset list from main content",
|
|
7372
|
+
"required": false,
|
|
7373
|
+
"type": {
|
|
7374
|
+
"name": "bool",
|
|
7375
|
+
"raw": "boolean"
|
|
7376
|
+
}
|
|
7377
|
+
},
|
|
7378
|
+
"size": {
|
|
7379
|
+
"description": "Font size from theme or number to set value in px",
|
|
7380
|
+
"required": false,
|
|
7381
|
+
"type": {
|
|
7382
|
+
"name": "union",
|
|
7383
|
+
"value": [
|
|
7384
|
+
{
|
|
7385
|
+
"name": "number",
|
|
7386
|
+
"raw": "number"
|
|
7387
|
+
}
|
|
7388
|
+
],
|
|
7389
|
+
"raw": "MantineNumberSize"
|
|
7390
|
+
}
|
|
7391
|
+
},
|
|
7392
|
+
"icon": {
|
|
7393
|
+
"description": "Icon that should replace list item dot",
|
|
7394
|
+
"required": false,
|
|
7395
|
+
"type": {
|
|
7396
|
+
"name": "node",
|
|
7397
|
+
"raw": "ReactNode"
|
|
7398
|
+
}
|
|
7399
|
+
},
|
|
7400
|
+
"spacing": {
|
|
7401
|
+
"description": "Spacing between items from theme or number to set value in px",
|
|
7402
|
+
"required": false,
|
|
7403
|
+
"type": {
|
|
7404
|
+
"name": "union",
|
|
7405
|
+
"value": [
|
|
7406
|
+
{
|
|
7407
|
+
"name": "number",
|
|
7408
|
+
"raw": "number"
|
|
7409
|
+
}
|
|
7410
|
+
],
|
|
7411
|
+
"raw": "MantineNumberSize"
|
|
7412
|
+
}
|
|
7413
|
+
},
|
|
7414
|
+
"center": {
|
|
7415
|
+
"description": "Center items with icon",
|
|
7416
|
+
"required": false,
|
|
7417
|
+
"type": {
|
|
7418
|
+
"name": "bool",
|
|
7419
|
+
"raw": "boolean"
|
|
7420
|
+
}
|
|
7421
|
+
},
|
|
7422
|
+
"listStyleType": {
|
|
7423
|
+
"description": "List style",
|
|
7424
|
+
"required": false,
|
|
7425
|
+
"type": {
|
|
7426
|
+
"name": "enum",
|
|
7427
|
+
"value": [
|
|
7428
|
+
{
|
|
7429
|
+
"value": "'disc'",
|
|
7430
|
+
"computed": false
|
|
7431
|
+
},
|
|
7432
|
+
{
|
|
7433
|
+
"value": "'circle'",
|
|
7434
|
+
"computed": false
|
|
7435
|
+
},
|
|
7436
|
+
{
|
|
7437
|
+
"value": "'square'",
|
|
7438
|
+
"computed": false
|
|
7439
|
+
},
|
|
7440
|
+
{
|
|
7441
|
+
"value": "'decimal'",
|
|
7442
|
+
"computed": false
|
|
7443
|
+
},
|
|
7444
|
+
{
|
|
7445
|
+
"value": "'lower-roman'",
|
|
7446
|
+
"computed": false
|
|
7447
|
+
},
|
|
7448
|
+
{
|
|
7449
|
+
"value": "'upper-roman'",
|
|
7450
|
+
"computed": false
|
|
7451
|
+
},
|
|
7452
|
+
{
|
|
7453
|
+
"value": "'lower-greek'",
|
|
7454
|
+
"computed": false
|
|
7455
|
+
},
|
|
7456
|
+
{
|
|
7457
|
+
"value": "'lower-latin'",
|
|
7458
|
+
"computed": false
|
|
7459
|
+
},
|
|
7460
|
+
{
|
|
7461
|
+
"value": "'upper-latin'",
|
|
7462
|
+
"computed": false
|
|
7463
|
+
},
|
|
7464
|
+
{
|
|
7465
|
+
"value": "'lower-alpha'",
|
|
7466
|
+
"computed": false
|
|
7467
|
+
},
|
|
7468
|
+
{
|
|
7469
|
+
"value": "'upper-alpha'",
|
|
7470
|
+
"computed": false
|
|
7471
|
+
},
|
|
7472
|
+
{
|
|
7473
|
+
"value": "'none'",
|
|
7474
|
+
"computed": false
|
|
7475
|
+
},
|
|
7476
|
+
{
|
|
7477
|
+
"value": "'inherit'",
|
|
7478
|
+
"computed": false
|
|
7479
|
+
}
|
|
7480
|
+
],
|
|
7481
|
+
"raw": "\"disc\" | \"circle\" | \"square\" | \"decimal\" | \"lower-roman\" | \"upper-roman\" | \"lower-greek\" | \"lower-latin\" | \"upper-latin\" | \"lower-alpha\" | \"upper-alpha\" | \"none\" | \"inherit\""
|
|
7482
|
+
}
|
|
7483
|
+
},
|
|
7484
|
+
"className": {
|
|
7485
|
+
"description": "Often used with CSS to style elements with common properties",
|
|
7486
|
+
"required": false,
|
|
7487
|
+
"type": {
|
|
7488
|
+
"name": "string",
|
|
7489
|
+
"raw": "string"
|
|
7490
|
+
}
|
|
7491
|
+
},
|
|
7492
|
+
"style": {
|
|
7493
|
+
"description": "Inline style",
|
|
7494
|
+
"required": false,
|
|
7495
|
+
"type": {
|
|
7496
|
+
"name": "any",
|
|
7497
|
+
"raw": "any"
|
|
7498
|
+
}
|
|
7499
|
+
},
|
|
7500
|
+
"styles": {
|
|
7501
|
+
"description": "Mantine styles API",
|
|
7502
|
+
"required": false,
|
|
7503
|
+
"type": {
|
|
7504
|
+
"name": "object",
|
|
7505
|
+
"raw": "object"
|
|
7506
|
+
}
|
|
7507
|
+
},
|
|
7508
|
+
"id": {
|
|
7509
|
+
"description": "Unique ID to identify this component in Dash callbacks.",
|
|
7510
|
+
"required": false,
|
|
7511
|
+
"type": {
|
|
7512
|
+
"name": "string",
|
|
7513
|
+
"raw": "string"
|
|
7514
|
+
}
|
|
7515
|
+
},
|
|
7516
|
+
"unstyled": {
|
|
7517
|
+
"description": "Remove all Mantine styling from the component",
|
|
7518
|
+
"required": false,
|
|
7519
|
+
"type": {
|
|
7520
|
+
"name": "bool",
|
|
7521
|
+
"raw": "boolean"
|
|
7522
|
+
}
|
|
7523
|
+
},
|
|
7524
|
+
"setProps": {
|
|
7525
|
+
"description": "Update props to trigger callbacks.",
|
|
7526
|
+
"required": true,
|
|
7527
|
+
"type": {
|
|
7528
|
+
"name": "func",
|
|
7529
|
+
"raw": "(props: Record<string, any>) => void"
|
|
7530
|
+
}
|
|
7531
|
+
},
|
|
7532
|
+
"sx": {
|
|
7533
|
+
"description": "With sx you can add styles to component root element. If you need to customize styles of other elements within component use styles prop",
|
|
7534
|
+
"required": false,
|
|
7535
|
+
"type": {
|
|
7536
|
+
"name": "any",
|
|
7537
|
+
"raw": "any"
|
|
7538
|
+
}
|
|
7539
|
+
},
|
|
7540
|
+
"m": {
|
|
7541
|
+
"description": "margin props",
|
|
7542
|
+
"required": false,
|
|
7543
|
+
"type": {
|
|
7544
|
+
"name": "union",
|
|
7545
|
+
"value": [
|
|
7546
|
+
{
|
|
7547
|
+
"name": "number",
|
|
7548
|
+
"raw": "number"
|
|
7549
|
+
}
|
|
7550
|
+
],
|
|
7551
|
+
"raw": "MantineNumberSize"
|
|
7552
|
+
}
|
|
7553
|
+
},
|
|
7554
|
+
"my": {
|
|
7555
|
+
"description": "margin props",
|
|
7556
|
+
"required": false,
|
|
7557
|
+
"type": {
|
|
7558
|
+
"name": "union",
|
|
7559
|
+
"value": [
|
|
7560
|
+
{
|
|
7561
|
+
"name": "number",
|
|
7562
|
+
"raw": "number"
|
|
7563
|
+
}
|
|
7564
|
+
],
|
|
7565
|
+
"raw": "MantineNumberSize"
|
|
7566
|
+
}
|
|
7567
|
+
},
|
|
7568
|
+
"mx": {
|
|
7569
|
+
"description": "margin props",
|
|
7570
|
+
"required": false,
|
|
7571
|
+
"type": {
|
|
7572
|
+
"name": "union",
|
|
7573
|
+
"value": [
|
|
7574
|
+
{
|
|
7575
|
+
"name": "number",
|
|
7576
|
+
"raw": "number"
|
|
7577
|
+
}
|
|
7578
|
+
],
|
|
7579
|
+
"raw": "MantineNumberSize"
|
|
7580
|
+
}
|
|
7581
|
+
},
|
|
7582
|
+
"mt": {
|
|
7583
|
+
"description": "margin props",
|
|
7584
|
+
"required": false,
|
|
7585
|
+
"type": {
|
|
7586
|
+
"name": "union",
|
|
7587
|
+
"value": [
|
|
7588
|
+
{
|
|
7589
|
+
"name": "number",
|
|
7590
|
+
"raw": "number"
|
|
7591
|
+
}
|
|
7592
|
+
],
|
|
7593
|
+
"raw": "MantineNumberSize"
|
|
7594
|
+
}
|
|
7595
|
+
},
|
|
7596
|
+
"mb": {
|
|
7597
|
+
"description": "margin props",
|
|
7598
|
+
"required": false,
|
|
7599
|
+
"type": {
|
|
7600
|
+
"name": "union",
|
|
7601
|
+
"value": [
|
|
7602
|
+
{
|
|
7603
|
+
"name": "number",
|
|
7604
|
+
"raw": "number"
|
|
7605
|
+
}
|
|
7606
|
+
],
|
|
7607
|
+
"raw": "MantineNumberSize"
|
|
7608
|
+
}
|
|
7609
|
+
},
|
|
7610
|
+
"ml": {
|
|
7611
|
+
"description": "margin props",
|
|
7612
|
+
"required": false,
|
|
7613
|
+
"type": {
|
|
7614
|
+
"name": "union",
|
|
7615
|
+
"value": [
|
|
7616
|
+
{
|
|
7617
|
+
"name": "number",
|
|
7618
|
+
"raw": "number"
|
|
7619
|
+
}
|
|
7620
|
+
],
|
|
7621
|
+
"raw": "MantineNumberSize"
|
|
7622
|
+
}
|
|
7623
|
+
},
|
|
7624
|
+
"mr": {
|
|
7625
|
+
"description": "margin props",
|
|
7626
|
+
"required": false,
|
|
7627
|
+
"type": {
|
|
7628
|
+
"name": "union",
|
|
7629
|
+
"value": [
|
|
7630
|
+
{
|
|
7631
|
+
"name": "number",
|
|
7632
|
+
"raw": "number"
|
|
7633
|
+
}
|
|
7634
|
+
],
|
|
7635
|
+
"raw": "MantineNumberSize"
|
|
7636
|
+
}
|
|
7637
|
+
},
|
|
7638
|
+
"p": {
|
|
7639
|
+
"description": "padding props",
|
|
7640
|
+
"required": false,
|
|
7641
|
+
"type": {
|
|
7642
|
+
"name": "union",
|
|
7643
|
+
"value": [
|
|
7644
|
+
{
|
|
7645
|
+
"name": "number",
|
|
7646
|
+
"raw": "number"
|
|
7647
|
+
}
|
|
7648
|
+
],
|
|
7649
|
+
"raw": "MantineNumberSize"
|
|
7650
|
+
}
|
|
7651
|
+
},
|
|
7652
|
+
"py": {
|
|
7653
|
+
"description": "padding props",
|
|
7654
|
+
"required": false,
|
|
7655
|
+
"type": {
|
|
7656
|
+
"name": "union",
|
|
7657
|
+
"value": [
|
|
7658
|
+
{
|
|
7659
|
+
"name": "number",
|
|
7660
|
+
"raw": "number"
|
|
7661
|
+
}
|
|
7662
|
+
],
|
|
7663
|
+
"raw": "MantineNumberSize"
|
|
7664
|
+
}
|
|
7665
|
+
},
|
|
7666
|
+
"px": {
|
|
7667
|
+
"description": "padding props",
|
|
7668
|
+
"required": false,
|
|
7669
|
+
"type": {
|
|
7670
|
+
"name": "union",
|
|
7671
|
+
"value": [
|
|
7672
|
+
{
|
|
7673
|
+
"name": "number",
|
|
7674
|
+
"raw": "number"
|
|
7675
|
+
}
|
|
7676
|
+
],
|
|
7677
|
+
"raw": "MantineNumberSize"
|
|
7678
|
+
}
|
|
7679
|
+
},
|
|
7680
|
+
"pt": {
|
|
7681
|
+
"description": "padding props",
|
|
7682
|
+
"required": false,
|
|
7683
|
+
"type": {
|
|
7684
|
+
"name": "union",
|
|
7685
|
+
"value": [
|
|
7686
|
+
{
|
|
7687
|
+
"name": "number",
|
|
7688
|
+
"raw": "number"
|
|
7689
|
+
}
|
|
7690
|
+
],
|
|
7691
|
+
"raw": "MantineNumberSize"
|
|
7692
|
+
}
|
|
7693
|
+
},
|
|
7694
|
+
"pb": {
|
|
7695
|
+
"description": "padding props",
|
|
7696
|
+
"required": false,
|
|
7697
|
+
"type": {
|
|
7698
|
+
"name": "union",
|
|
7699
|
+
"value": [
|
|
7700
|
+
{
|
|
7701
|
+
"name": "number",
|
|
7702
|
+
"raw": "number"
|
|
7703
|
+
}
|
|
7704
|
+
],
|
|
7705
|
+
"raw": "MantineNumberSize"
|
|
7706
|
+
}
|
|
7707
|
+
},
|
|
7708
|
+
"pl": {
|
|
7709
|
+
"description": "padding props",
|
|
7710
|
+
"required": false,
|
|
7711
|
+
"type": {
|
|
7712
|
+
"name": "union",
|
|
7713
|
+
"value": [
|
|
7714
|
+
{
|
|
7715
|
+
"name": "number",
|
|
7716
|
+
"raw": "number"
|
|
7717
|
+
}
|
|
7718
|
+
],
|
|
7719
|
+
"raw": "MantineNumberSize"
|
|
7720
|
+
}
|
|
7721
|
+
},
|
|
7722
|
+
"pr": {
|
|
7723
|
+
"description": "padding props",
|
|
7724
|
+
"required": false,
|
|
7725
|
+
"type": {
|
|
7726
|
+
"name": "union",
|
|
7727
|
+
"value": [
|
|
7728
|
+
{
|
|
7729
|
+
"name": "number",
|
|
7730
|
+
"raw": "number"
|
|
7731
|
+
}
|
|
7732
|
+
],
|
|
7733
|
+
"raw": "MantineNumberSize"
|
|
7734
|
+
}
|
|
7735
|
+
}
|
|
7736
|
+
},
|
|
7737
|
+
"isContext": false
|
|
7738
|
+
},
|
|
7739
|
+
"src/ts/components/core/list/ListItem.tsx": {
|
|
7740
|
+
"displayName": "ListItem",
|
|
7741
|
+
"description": "Display ordered or unordered list, see: https://mantine.dev/core/list/",
|
|
7742
|
+
"props": {
|
|
7743
|
+
"children": {
|
|
7744
|
+
"description": "ListItem content",
|
|
7745
|
+
"required": false,
|
|
7746
|
+
"type": {
|
|
7747
|
+
"name": "node",
|
|
7748
|
+
"raw": "ReactNode"
|
|
7749
|
+
}
|
|
7750
|
+
},
|
|
7751
|
+
"icon": {
|
|
7752
|
+
"description": "Icon to replace bullet",
|
|
7753
|
+
"required": false,
|
|
7754
|
+
"type": {
|
|
7755
|
+
"name": "node",
|
|
7756
|
+
"raw": "ReactNode"
|
|
6512
7757
|
}
|
|
6513
7758
|
},
|
|
6514
7759
|
"className": {
|
|
@@ -8795,6 +10040,66 @@
|
|
|
8795
10040
|
"raw": "(\"label\" | \"description\" | \"error\" | \"input\")[]"
|
|
8796
10041
|
}
|
|
8797
10042
|
},
|
|
10043
|
+
"persistence": {
|
|
10044
|
+
"description": "Used to allow user interactions in this component to be persisted when\nthe component - or the page - is refreshed. If `persisted` is truthy and\nhasn't changed from its previous value, a `value` that the user has\nchanged while using the app will keep that change, as long as\nthe new `value` also matches what was given originally.\nUsed in conjunction with `persistence_type`.",
|
|
10045
|
+
"required": true,
|
|
10046
|
+
"type": {
|
|
10047
|
+
"name": "union",
|
|
10048
|
+
"value": [
|
|
10049
|
+
{
|
|
10050
|
+
"name": "string",
|
|
10051
|
+
"raw": "string"
|
|
10052
|
+
},
|
|
10053
|
+
{
|
|
10054
|
+
"name": "number",
|
|
10055
|
+
"raw": "number"
|
|
10056
|
+
}
|
|
10057
|
+
],
|
|
10058
|
+
"raw": "string | number | boolean"
|
|
10059
|
+
}
|
|
10060
|
+
},
|
|
10061
|
+
"persisted_props": {
|
|
10062
|
+
"description": "Properties whose user interactions will persist after refreshing the\ncomponent or the page. Since only `value` is allowed this prop can\nnormally be ignored.",
|
|
10063
|
+
"required": false,
|
|
10064
|
+
"defaultValue": {
|
|
10065
|
+
"value": "[\"value\"]",
|
|
10066
|
+
"computed": false
|
|
10067
|
+
},
|
|
10068
|
+
"type": {
|
|
10069
|
+
"name": "arrayOf",
|
|
10070
|
+
"value": {
|
|
10071
|
+
"name": "string",
|
|
10072
|
+
"raw": "string"
|
|
10073
|
+
},
|
|
10074
|
+
"raw": "string[]"
|
|
10075
|
+
}
|
|
10076
|
+
},
|
|
10077
|
+
"persistence_type": {
|
|
10078
|
+
"description": "Where persisted user changes will be stored:\nmemory: only kept in memory, reset on page refresh.\nlocal: window.localStorage, data is kept after the browser quit.\nsession: window.sessionStorage, data is cleared once the browser quit.",
|
|
10079
|
+
"required": false,
|
|
10080
|
+
"defaultValue": {
|
|
10081
|
+
"value": "'local'",
|
|
10082
|
+
"computed": false
|
|
10083
|
+
},
|
|
10084
|
+
"type": {
|
|
10085
|
+
"name": "enum",
|
|
10086
|
+
"value": [
|
|
10087
|
+
{
|
|
10088
|
+
"value": "'local'",
|
|
10089
|
+
"computed": false
|
|
10090
|
+
},
|
|
10091
|
+
{
|
|
10092
|
+
"value": "'session'",
|
|
10093
|
+
"computed": false
|
|
10094
|
+
},
|
|
10095
|
+
{
|
|
10096
|
+
"value": "'memory'",
|
|
10097
|
+
"computed": false
|
|
10098
|
+
}
|
|
10099
|
+
],
|
|
10100
|
+
"raw": "\"local\" | \"session\" | \"memory\""
|
|
10101
|
+
}
|
|
10102
|
+
},
|
|
8798
10103
|
"className": {
|
|
8799
10104
|
"description": "Often used with CSS to style elements with common properties",
|
|
8800
10105
|
"required": false,
|
|
@@ -9500,6 +10805,82 @@
|
|
|
9500
10805
|
"raw": "string"
|
|
9501
10806
|
}
|
|
9502
10807
|
},
|
|
10808
|
+
"name": {
|
|
10809
|
+
"description": "Name prop",
|
|
10810
|
+
"required": false,
|
|
10811
|
+
"type": {
|
|
10812
|
+
"name": "string",
|
|
10813
|
+
"raw": "string"
|
|
10814
|
+
}
|
|
10815
|
+
},
|
|
10816
|
+
"debounce": {
|
|
10817
|
+
"description": "Debounce time",
|
|
10818
|
+
"required": false,
|
|
10819
|
+
"type": {
|
|
10820
|
+
"name": "number",
|
|
10821
|
+
"raw": "number"
|
|
10822
|
+
}
|
|
10823
|
+
},
|
|
10824
|
+
"persistence": {
|
|
10825
|
+
"description": "Used to allow user interactions in this component to be persisted when\nthe component - or the page - is refreshed. If `persisted` is truthy and\nhasn't changed from its previous value, a `value` that the user has\nchanged while using the app will keep that change, as long as\nthe new `value` also matches what was given originally.\nUsed in conjunction with `persistence_type`.",
|
|
10826
|
+
"required": true,
|
|
10827
|
+
"type": {
|
|
10828
|
+
"name": "union",
|
|
10829
|
+
"value": [
|
|
10830
|
+
{
|
|
10831
|
+
"name": "string",
|
|
10832
|
+
"raw": "string"
|
|
10833
|
+
},
|
|
10834
|
+
{
|
|
10835
|
+
"name": "number",
|
|
10836
|
+
"raw": "number"
|
|
10837
|
+
}
|
|
10838
|
+
],
|
|
10839
|
+
"raw": "string | number | boolean"
|
|
10840
|
+
}
|
|
10841
|
+
},
|
|
10842
|
+
"persisted_props": {
|
|
10843
|
+
"description": "Properties whose user interactions will persist after refreshing the\ncomponent or the page. Since only `value` is allowed this prop can\nnormally be ignored.",
|
|
10844
|
+
"required": false,
|
|
10845
|
+
"defaultValue": {
|
|
10846
|
+
"value": "[\"value\"]",
|
|
10847
|
+
"computed": false
|
|
10848
|
+
},
|
|
10849
|
+
"type": {
|
|
10850
|
+
"name": "arrayOf",
|
|
10851
|
+
"value": {
|
|
10852
|
+
"name": "string",
|
|
10853
|
+
"raw": "string"
|
|
10854
|
+
},
|
|
10855
|
+
"raw": "string[]"
|
|
10856
|
+
}
|
|
10857
|
+
},
|
|
10858
|
+
"persistence_type": {
|
|
10859
|
+
"description": "Where persisted user changes will be stored:\nmemory: only kept in memory, reset on page refresh.\nlocal: window.localStorage, data is kept after the browser quit.\nsession: window.sessionStorage, data is cleared once the browser quit.",
|
|
10860
|
+
"required": false,
|
|
10861
|
+
"defaultValue": {
|
|
10862
|
+
"value": "'local'",
|
|
10863
|
+
"computed": false
|
|
10864
|
+
},
|
|
10865
|
+
"type": {
|
|
10866
|
+
"name": "enum",
|
|
10867
|
+
"value": [
|
|
10868
|
+
{
|
|
10869
|
+
"value": "'local'",
|
|
10870
|
+
"computed": false
|
|
10871
|
+
},
|
|
10872
|
+
{
|
|
10873
|
+
"value": "'session'",
|
|
10874
|
+
"computed": false
|
|
10875
|
+
},
|
|
10876
|
+
{
|
|
10877
|
+
"value": "'memory'",
|
|
10878
|
+
"computed": false
|
|
10879
|
+
}
|
|
10880
|
+
],
|
|
10881
|
+
"raw": "\"local\" | \"session\" | \"memory\""
|
|
10882
|
+
}
|
|
10883
|
+
},
|
|
9503
10884
|
"className": {
|
|
9504
10885
|
"description": "Often used with CSS to style elements with common properties",
|
|
9505
10886
|
"required": false,
|
|
@@ -9783,6 +11164,66 @@
|
|
|
9783
11164
|
"raw": "string"
|
|
9784
11165
|
}
|
|
9785
11166
|
},
|
|
11167
|
+
"persistence": {
|
|
11168
|
+
"description": "Used to allow user interactions in this component to be persisted when\nthe component - or the page - is refreshed. If `persisted` is truthy and\nhasn't changed from its previous value, a `value` that the user has\nchanged while using the app will keep that change, as long as\nthe new `value` also matches what was given originally.\nUsed in conjunction with `persistence_type`.",
|
|
11169
|
+
"required": true,
|
|
11170
|
+
"type": {
|
|
11171
|
+
"name": "union",
|
|
11172
|
+
"value": [
|
|
11173
|
+
{
|
|
11174
|
+
"name": "string",
|
|
11175
|
+
"raw": "string"
|
|
11176
|
+
},
|
|
11177
|
+
{
|
|
11178
|
+
"name": "number",
|
|
11179
|
+
"raw": "number"
|
|
11180
|
+
}
|
|
11181
|
+
],
|
|
11182
|
+
"raw": "string | number | boolean"
|
|
11183
|
+
}
|
|
11184
|
+
},
|
|
11185
|
+
"persisted_props": {
|
|
11186
|
+
"description": "Properties whose user interactions will persist after refreshing the\ncomponent or the page. Since only `value` is allowed this prop can\nnormally be ignored.",
|
|
11187
|
+
"required": false,
|
|
11188
|
+
"defaultValue": {
|
|
11189
|
+
"value": "[\"value\"]",
|
|
11190
|
+
"computed": false
|
|
11191
|
+
},
|
|
11192
|
+
"type": {
|
|
11193
|
+
"name": "arrayOf",
|
|
11194
|
+
"value": {
|
|
11195
|
+
"name": "string",
|
|
11196
|
+
"raw": "string"
|
|
11197
|
+
},
|
|
11198
|
+
"raw": "string[]"
|
|
11199
|
+
}
|
|
11200
|
+
},
|
|
11201
|
+
"persistence_type": {
|
|
11202
|
+
"description": "Where persisted user changes will be stored:\nmemory: only kept in memory, reset on page refresh.\nlocal: window.localStorage, data is kept after the browser quit.\nsession: window.sessionStorage, data is cleared once the browser quit.",
|
|
11203
|
+
"required": false,
|
|
11204
|
+
"defaultValue": {
|
|
11205
|
+
"value": "'local'",
|
|
11206
|
+
"computed": false
|
|
11207
|
+
},
|
|
11208
|
+
"type": {
|
|
11209
|
+
"name": "enum",
|
|
11210
|
+
"value": [
|
|
11211
|
+
{
|
|
11212
|
+
"value": "'local'",
|
|
11213
|
+
"computed": false
|
|
11214
|
+
},
|
|
11215
|
+
{
|
|
11216
|
+
"value": "'session'",
|
|
11217
|
+
"computed": false
|
|
11218
|
+
},
|
|
11219
|
+
{
|
|
11220
|
+
"value": "'memory'",
|
|
11221
|
+
"computed": false
|
|
11222
|
+
}
|
|
11223
|
+
],
|
|
11224
|
+
"raw": "\"local\" | \"session\" | \"memory\""
|
|
11225
|
+
}
|
|
11226
|
+
},
|
|
9786
11227
|
"data": {
|
|
9787
11228
|
"description": "Select data used to renderer items in dropdown",
|
|
9788
11229
|
"required": false,
|
|
@@ -10193,6 +11634,22 @@
|
|
|
10193
11634
|
"raw": "string"
|
|
10194
11635
|
}
|
|
10195
11636
|
},
|
|
11637
|
+
"name": {
|
|
11638
|
+
"description": "Name prop",
|
|
11639
|
+
"required": false,
|
|
11640
|
+
"type": {
|
|
11641
|
+
"name": "string",
|
|
11642
|
+
"raw": "string"
|
|
11643
|
+
}
|
|
11644
|
+
},
|
|
11645
|
+
"debounce": {
|
|
11646
|
+
"description": "Debounce time",
|
|
11647
|
+
"required": false,
|
|
11648
|
+
"type": {
|
|
11649
|
+
"name": "number",
|
|
11650
|
+
"raw": "number"
|
|
11651
|
+
}
|
|
11652
|
+
},
|
|
10196
11653
|
"className": {
|
|
10197
11654
|
"description": "Often used with CSS to style elements with common properties",
|
|
10198
11655
|
"required": false,
|
|
@@ -10718,6 +12175,66 @@
|
|
|
10718
12175
|
"raw": "\"mouseup\" | \"drag\""
|
|
10719
12176
|
}
|
|
10720
12177
|
},
|
|
12178
|
+
"persistence": {
|
|
12179
|
+
"description": "Used to allow user interactions in this component to be persisted when\nthe component - or the page - is refreshed. If `persisted` is truthy and\nhasn't changed from its previous value, a `value` that the user has\nchanged while using the app will keep that change, as long as\nthe new `value` also matches what was given originally.\nUsed in conjunction with `persistence_type`.",
|
|
12180
|
+
"required": true,
|
|
12181
|
+
"type": {
|
|
12182
|
+
"name": "union",
|
|
12183
|
+
"value": [
|
|
12184
|
+
{
|
|
12185
|
+
"name": "string",
|
|
12186
|
+
"raw": "string"
|
|
12187
|
+
},
|
|
12188
|
+
{
|
|
12189
|
+
"name": "number",
|
|
12190
|
+
"raw": "number"
|
|
12191
|
+
}
|
|
12192
|
+
],
|
|
12193
|
+
"raw": "string | number | boolean"
|
|
12194
|
+
}
|
|
12195
|
+
},
|
|
12196
|
+
"persisted_props": {
|
|
12197
|
+
"description": "Properties whose user interactions will persist after refreshing the\ncomponent or the page. Since only `value` is allowed this prop can\nnormally be ignored.",
|
|
12198
|
+
"required": false,
|
|
12199
|
+
"defaultValue": {
|
|
12200
|
+
"value": "[\"value\"]",
|
|
12201
|
+
"computed": false
|
|
12202
|
+
},
|
|
12203
|
+
"type": {
|
|
12204
|
+
"name": "arrayOf",
|
|
12205
|
+
"value": {
|
|
12206
|
+
"name": "string",
|
|
12207
|
+
"raw": "string"
|
|
12208
|
+
},
|
|
12209
|
+
"raw": "string[]"
|
|
12210
|
+
}
|
|
12211
|
+
},
|
|
12212
|
+
"persistence_type": {
|
|
12213
|
+
"description": "Where persisted user changes will be stored:\nmemory: only kept in memory, reset on page refresh.\nlocal: window.localStorage, data is kept after the browser quit.\nsession: window.sessionStorage, data is cleared once the browser quit.",
|
|
12214
|
+
"required": false,
|
|
12215
|
+
"defaultValue": {
|
|
12216
|
+
"value": "'local'",
|
|
12217
|
+
"computed": false
|
|
12218
|
+
},
|
|
12219
|
+
"type": {
|
|
12220
|
+
"name": "enum",
|
|
12221
|
+
"value": [
|
|
12222
|
+
{
|
|
12223
|
+
"value": "'local'",
|
|
12224
|
+
"computed": false
|
|
12225
|
+
},
|
|
12226
|
+
{
|
|
12227
|
+
"value": "'session'",
|
|
12228
|
+
"computed": false
|
|
12229
|
+
},
|
|
12230
|
+
{
|
|
12231
|
+
"value": "'memory'",
|
|
12232
|
+
"computed": false
|
|
12233
|
+
}
|
|
12234
|
+
],
|
|
12235
|
+
"raw": "\"local\" | \"session\" | \"memory\""
|
|
12236
|
+
}
|
|
12237
|
+
},
|
|
10721
12238
|
"className": {
|
|
10722
12239
|
"description": "Often used with CSS to style elements with common properties",
|
|
10723
12240
|
"required": false,
|
|
@@ -11235,6 +12752,66 @@
|
|
|
11235
12752
|
"raw": "\"mouseup\" | \"drag\""
|
|
11236
12753
|
}
|
|
11237
12754
|
},
|
|
12755
|
+
"persistence": {
|
|
12756
|
+
"description": "Used to allow user interactions in this component to be persisted when\nthe component - or the page - is refreshed. If `persisted` is truthy and\nhasn't changed from its previous value, a `value` that the user has\nchanged while using the app will keep that change, as long as\nthe new `value` also matches what was given originally.\nUsed in conjunction with `persistence_type`.",
|
|
12757
|
+
"required": true,
|
|
12758
|
+
"type": {
|
|
12759
|
+
"name": "union",
|
|
12760
|
+
"value": [
|
|
12761
|
+
{
|
|
12762
|
+
"name": "string",
|
|
12763
|
+
"raw": "string"
|
|
12764
|
+
},
|
|
12765
|
+
{
|
|
12766
|
+
"name": "number",
|
|
12767
|
+
"raw": "number"
|
|
12768
|
+
}
|
|
12769
|
+
],
|
|
12770
|
+
"raw": "string | number | boolean"
|
|
12771
|
+
}
|
|
12772
|
+
},
|
|
12773
|
+
"persisted_props": {
|
|
12774
|
+
"description": "Properties whose user interactions will persist after refreshing the\ncomponent or the page. Since only `value` is allowed this prop can\nnormally be ignored.",
|
|
12775
|
+
"required": false,
|
|
12776
|
+
"defaultValue": {
|
|
12777
|
+
"value": "[\"value\"]",
|
|
12778
|
+
"computed": false
|
|
12779
|
+
},
|
|
12780
|
+
"type": {
|
|
12781
|
+
"name": "arrayOf",
|
|
12782
|
+
"value": {
|
|
12783
|
+
"name": "string",
|
|
12784
|
+
"raw": "string"
|
|
12785
|
+
},
|
|
12786
|
+
"raw": "string[]"
|
|
12787
|
+
}
|
|
12788
|
+
},
|
|
12789
|
+
"persistence_type": {
|
|
12790
|
+
"description": "Where persisted user changes will be stored:\nmemory: only kept in memory, reset on page refresh.\nlocal: window.localStorage, data is kept after the browser quit.\nsession: window.sessionStorage, data is cleared once the browser quit.",
|
|
12791
|
+
"required": false,
|
|
12792
|
+
"defaultValue": {
|
|
12793
|
+
"value": "'local'",
|
|
12794
|
+
"computed": false
|
|
12795
|
+
},
|
|
12796
|
+
"type": {
|
|
12797
|
+
"name": "enum",
|
|
12798
|
+
"value": [
|
|
12799
|
+
{
|
|
12800
|
+
"value": "'local'",
|
|
12801
|
+
"computed": false
|
|
12802
|
+
},
|
|
12803
|
+
{
|
|
12804
|
+
"value": "'session'",
|
|
12805
|
+
"computed": false
|
|
12806
|
+
},
|
|
12807
|
+
{
|
|
12808
|
+
"value": "'memory'",
|
|
12809
|
+
"computed": false
|
|
12810
|
+
}
|
|
12811
|
+
],
|
|
12812
|
+
"raw": "\"local\" | \"session\" | \"memory\""
|
|
12813
|
+
}
|
|
12814
|
+
},
|
|
11238
12815
|
"className": {
|
|
11239
12816
|
"description": "Often used with CSS to style elements with common properties",
|
|
11240
12817
|
"required": false,
|
|
@@ -11937,6 +13514,66 @@
|
|
|
11937
13514
|
"raw": "TabsPlacement"
|
|
11938
13515
|
}
|
|
11939
13516
|
},
|
|
13517
|
+
"persistence": {
|
|
13518
|
+
"description": "Used to allow user interactions in this component to be persisted when\nthe component - or the page - is refreshed. If `persisted` is truthy and\nhasn't changed from its previous value, a `value` that the user has\nchanged while using the app will keep that change, as long as\nthe new `value` also matches what was given originally.\nUsed in conjunction with `persistence_type`.",
|
|
13519
|
+
"required": true,
|
|
13520
|
+
"type": {
|
|
13521
|
+
"name": "union",
|
|
13522
|
+
"value": [
|
|
13523
|
+
{
|
|
13524
|
+
"name": "string",
|
|
13525
|
+
"raw": "string"
|
|
13526
|
+
},
|
|
13527
|
+
{
|
|
13528
|
+
"name": "number",
|
|
13529
|
+
"raw": "number"
|
|
13530
|
+
}
|
|
13531
|
+
],
|
|
13532
|
+
"raw": "string | number | boolean"
|
|
13533
|
+
}
|
|
13534
|
+
},
|
|
13535
|
+
"persisted_props": {
|
|
13536
|
+
"description": "Properties whose user interactions will persist after refreshing the\ncomponent or the page. Since only `value` is allowed this prop can\nnormally be ignored.",
|
|
13537
|
+
"required": false,
|
|
13538
|
+
"defaultValue": {
|
|
13539
|
+
"value": "[\"value\"]",
|
|
13540
|
+
"computed": false
|
|
13541
|
+
},
|
|
13542
|
+
"type": {
|
|
13543
|
+
"name": "arrayOf",
|
|
13544
|
+
"value": {
|
|
13545
|
+
"name": "string",
|
|
13546
|
+
"raw": "string"
|
|
13547
|
+
},
|
|
13548
|
+
"raw": "string[]"
|
|
13549
|
+
}
|
|
13550
|
+
},
|
|
13551
|
+
"persistence_type": {
|
|
13552
|
+
"description": "Where persisted user changes will be stored:\nmemory: only kept in memory, reset on page refresh.\nlocal: window.localStorage, data is kept after the browser quit.\nsession: window.sessionStorage, data is cleared once the browser quit.",
|
|
13553
|
+
"required": false,
|
|
13554
|
+
"defaultValue": {
|
|
13555
|
+
"value": "'local'",
|
|
13556
|
+
"computed": false
|
|
13557
|
+
},
|
|
13558
|
+
"type": {
|
|
13559
|
+
"name": "enum",
|
|
13560
|
+
"value": [
|
|
13561
|
+
{
|
|
13562
|
+
"value": "'local'",
|
|
13563
|
+
"computed": false
|
|
13564
|
+
},
|
|
13565
|
+
{
|
|
13566
|
+
"value": "'session'",
|
|
13567
|
+
"computed": false
|
|
13568
|
+
},
|
|
13569
|
+
{
|
|
13570
|
+
"value": "'memory'",
|
|
13571
|
+
"computed": false
|
|
13572
|
+
}
|
|
13573
|
+
],
|
|
13574
|
+
"raw": "\"local\" | \"session\" | \"memory\""
|
|
13575
|
+
}
|
|
13576
|
+
},
|
|
11940
13577
|
"className": {
|
|
11941
13578
|
"description": "Often used with CSS to style elements with common properties",
|
|
11942
13579
|
"required": false,
|
|
@@ -12946,6 +14583,26 @@
|
|
|
12946
14583
|
"raw": "string"
|
|
12947
14584
|
}
|
|
12948
14585
|
},
|
|
14586
|
+
"name": {
|
|
14587
|
+
"description": "Name prop",
|
|
14588
|
+
"required": false,
|
|
14589
|
+
"type": {
|
|
14590
|
+
"name": "string",
|
|
14591
|
+
"raw": "string"
|
|
14592
|
+
}
|
|
14593
|
+
},
|
|
14594
|
+
"debounce": {
|
|
14595
|
+
"description": "Debounce time",
|
|
14596
|
+
"required": false,
|
|
14597
|
+
"defaultValue": {
|
|
14598
|
+
"value": "0",
|
|
14599
|
+
"computed": false
|
|
14600
|
+
},
|
|
14601
|
+
"type": {
|
|
14602
|
+
"name": "number",
|
|
14603
|
+
"raw": "number"
|
|
14604
|
+
}
|
|
14605
|
+
},
|
|
12949
14606
|
"label": {
|
|
12950
14607
|
"description": "Input label, displayed before input",
|
|
12951
14608
|
"required": false,
|
|
@@ -13270,6 +14927,10 @@
|
|
|
13270
14927
|
"value": {
|
|
13271
14928
|
"description": "Input value for controlled variant",
|
|
13272
14929
|
"required": false,
|
|
14930
|
+
"defaultValue": {
|
|
14931
|
+
"value": "''",
|
|
14932
|
+
"computed": false
|
|
14933
|
+
},
|
|
13273
14934
|
"type": {
|
|
13274
14935
|
"name": "number",
|
|
13275
14936
|
"raw": "number"
|
|
@@ -13495,6 +15156,26 @@
|
|
|
13495
15156
|
"raw": "string"
|
|
13496
15157
|
}
|
|
13497
15158
|
},
|
|
15159
|
+
"name": {
|
|
15160
|
+
"description": "Name prop",
|
|
15161
|
+
"required": false,
|
|
15162
|
+
"type": {
|
|
15163
|
+
"name": "string",
|
|
15164
|
+
"raw": "string"
|
|
15165
|
+
}
|
|
15166
|
+
},
|
|
15167
|
+
"debounce": {
|
|
15168
|
+
"description": "Debounce time",
|
|
15169
|
+
"required": false,
|
|
15170
|
+
"defaultValue": {
|
|
15171
|
+
"value": "0",
|
|
15172
|
+
"computed": false
|
|
15173
|
+
},
|
|
15174
|
+
"type": {
|
|
15175
|
+
"name": "number",
|
|
15176
|
+
"raw": "number"
|
|
15177
|
+
}
|
|
15178
|
+
},
|
|
13498
15179
|
"label": {
|
|
13499
15180
|
"description": "Input label, displayed before input",
|
|
13500
15181
|
"required": false,
|
|
@@ -13976,6 +15657,26 @@
|
|
|
13976
15657
|
"raw": "string"
|
|
13977
15658
|
}
|
|
13978
15659
|
},
|
|
15660
|
+
"name": {
|
|
15661
|
+
"description": "Name prop",
|
|
15662
|
+
"required": false,
|
|
15663
|
+
"type": {
|
|
15664
|
+
"name": "string",
|
|
15665
|
+
"raw": "string"
|
|
15666
|
+
}
|
|
15667
|
+
},
|
|
15668
|
+
"debounce": {
|
|
15669
|
+
"description": "Debounce time",
|
|
15670
|
+
"required": false,
|
|
15671
|
+
"defaultValue": {
|
|
15672
|
+
"value": "0",
|
|
15673
|
+
"computed": false
|
|
15674
|
+
},
|
|
15675
|
+
"type": {
|
|
15676
|
+
"name": "number",
|
|
15677
|
+
"raw": "number"
|
|
15678
|
+
}
|
|
15679
|
+
},
|
|
13979
15680
|
"label": {
|
|
13980
15681
|
"description": "Input label, displayed before input",
|
|
13981
15682
|
"required": false,
|
|
@@ -14469,6 +16170,26 @@
|
|
|
14469
16170
|
"raw": "string"
|
|
14470
16171
|
}
|
|
14471
16172
|
},
|
|
16173
|
+
"name": {
|
|
16174
|
+
"description": "Name prop",
|
|
16175
|
+
"required": false,
|
|
16176
|
+
"type": {
|
|
16177
|
+
"name": "string",
|
|
16178
|
+
"raw": "string"
|
|
16179
|
+
}
|
|
16180
|
+
},
|
|
16181
|
+
"debounce": {
|
|
16182
|
+
"description": "Debounce time",
|
|
16183
|
+
"required": false,
|
|
16184
|
+
"defaultValue": {
|
|
16185
|
+
"value": "0",
|
|
16186
|
+
"computed": false
|
|
16187
|
+
},
|
|
16188
|
+
"type": {
|
|
16189
|
+
"name": "number",
|
|
16190
|
+
"raw": "number"
|
|
16191
|
+
}
|
|
16192
|
+
},
|
|
14472
16193
|
"label": {
|
|
14473
16194
|
"description": "Input label, displayed before input",
|
|
14474
16195
|
"required": false,
|
|
@@ -14948,6 +16669,26 @@
|
|
|
14948
16669
|
"raw": "string"
|
|
14949
16670
|
}
|
|
14950
16671
|
},
|
|
16672
|
+
"name": {
|
|
16673
|
+
"description": "Name prop",
|
|
16674
|
+
"required": false,
|
|
16675
|
+
"type": {
|
|
16676
|
+
"name": "string",
|
|
16677
|
+
"raw": "string"
|
|
16678
|
+
}
|
|
16679
|
+
},
|
|
16680
|
+
"debounce": {
|
|
16681
|
+
"description": "Debounce time",
|
|
16682
|
+
"required": false,
|
|
16683
|
+
"defaultValue": {
|
|
16684
|
+
"value": "0",
|
|
16685
|
+
"computed": false
|
|
16686
|
+
},
|
|
16687
|
+
"type": {
|
|
16688
|
+
"name": "number",
|
|
16689
|
+
"raw": "number"
|
|
16690
|
+
}
|
|
16691
|
+
},
|
|
14951
16692
|
"label": {
|
|
14952
16693
|
"description": "Input label, displayed before input",
|
|
14953
16694
|
"required": false,
|
|
@@ -18742,138 +20483,429 @@
|
|
|
18742
20483
|
},
|
|
18743
20484
|
"isContext": false
|
|
18744
20485
|
},
|
|
18745
|
-
"src/ts/components/core/Badge.tsx": {
|
|
18746
|
-
"displayName": "Badge",
|
|
18747
|
-
"description": "Render react node inside portal at fixed position. For more information, see: https://mantine.dev/core/Badge/",
|
|
20486
|
+
"src/ts/components/core/Badge.tsx": {
|
|
20487
|
+
"displayName": "Badge",
|
|
20488
|
+
"description": "Render react node inside portal at fixed position. For more information, see: https://mantine.dev/core/Badge/",
|
|
20489
|
+
"props": {
|
|
20490
|
+
"color": {
|
|
20491
|
+
"description": "Key of theme.colors",
|
|
20492
|
+
"required": false,
|
|
20493
|
+
"type": {
|
|
20494
|
+
"name": "any",
|
|
20495
|
+
"raw": "DefaultMantineColor"
|
|
20496
|
+
}
|
|
20497
|
+
},
|
|
20498
|
+
"variant": {
|
|
20499
|
+
"description": "Controls appearance",
|
|
20500
|
+
"required": false,
|
|
20501
|
+
"type": {
|
|
20502
|
+
"name": "enum",
|
|
20503
|
+
"value": [
|
|
20504
|
+
{
|
|
20505
|
+
"value": "'filled'",
|
|
20506
|
+
"computed": false
|
|
20507
|
+
},
|
|
20508
|
+
{
|
|
20509
|
+
"value": "'outline'",
|
|
20510
|
+
"computed": false
|
|
20511
|
+
},
|
|
20512
|
+
{
|
|
20513
|
+
"value": "'light'",
|
|
20514
|
+
"computed": false
|
|
20515
|
+
},
|
|
20516
|
+
{
|
|
20517
|
+
"value": "'gradient'",
|
|
20518
|
+
"computed": false
|
|
20519
|
+
},
|
|
20520
|
+
{
|
|
20521
|
+
"value": "'dot'",
|
|
20522
|
+
"computed": false
|
|
20523
|
+
}
|
|
20524
|
+
],
|
|
20525
|
+
"raw": "BadgeVariant"
|
|
20526
|
+
}
|
|
20527
|
+
},
|
|
20528
|
+
"gradient": {
|
|
20529
|
+
"description": "Controls gradient, applied to gradient variant only",
|
|
20530
|
+
"required": false,
|
|
20531
|
+
"type": {
|
|
20532
|
+
"name": "shape",
|
|
20533
|
+
"value": {
|
|
20534
|
+
"from": {
|
|
20535
|
+
"description": "",
|
|
20536
|
+
"required": true,
|
|
20537
|
+
"name": "string",
|
|
20538
|
+
"raw": "string"
|
|
20539
|
+
},
|
|
20540
|
+
"to": {
|
|
20541
|
+
"description": "",
|
|
20542
|
+
"required": true,
|
|
20543
|
+
"name": "string",
|
|
20544
|
+
"raw": "string"
|
|
20545
|
+
},
|
|
20546
|
+
"deg": {
|
|
20547
|
+
"description": "",
|
|
20548
|
+
"required": false,
|
|
20549
|
+
"name": "number",
|
|
20550
|
+
"raw": "number"
|
|
20551
|
+
}
|
|
20552
|
+
},
|
|
20553
|
+
"raw": "MantineGradient"
|
|
20554
|
+
}
|
|
20555
|
+
},
|
|
20556
|
+
"size": {
|
|
20557
|
+
"description": "Badge height and font size",
|
|
20558
|
+
"required": false,
|
|
20559
|
+
"type": {
|
|
20560
|
+
"name": "enum",
|
|
20561
|
+
"value": [
|
|
20562
|
+
{
|
|
20563
|
+
"value": "'xs'",
|
|
20564
|
+
"computed": false
|
|
20565
|
+
},
|
|
20566
|
+
{
|
|
20567
|
+
"value": "'sm'",
|
|
20568
|
+
"computed": false
|
|
20569
|
+
},
|
|
20570
|
+
{
|
|
20571
|
+
"value": "'md'",
|
|
20572
|
+
"computed": false
|
|
20573
|
+
},
|
|
20574
|
+
{
|
|
20575
|
+
"value": "'lg'",
|
|
20576
|
+
"computed": false
|
|
20577
|
+
},
|
|
20578
|
+
{
|
|
20579
|
+
"value": "'xl'",
|
|
20580
|
+
"computed": false
|
|
20581
|
+
}
|
|
20582
|
+
],
|
|
20583
|
+
"raw": "MantineSize"
|
|
20584
|
+
}
|
|
20585
|
+
},
|
|
20586
|
+
"radius": {
|
|
20587
|
+
"description": "Key of theme.radius or number to set border-radius in px",
|
|
20588
|
+
"required": false,
|
|
20589
|
+
"type": {
|
|
20590
|
+
"name": "union",
|
|
20591
|
+
"value": [
|
|
20592
|
+
{
|
|
20593
|
+
"name": "number",
|
|
20594
|
+
"raw": "number"
|
|
20595
|
+
}
|
|
20596
|
+
],
|
|
20597
|
+
"raw": "MantineNumberSize"
|
|
20598
|
+
}
|
|
20599
|
+
},
|
|
20600
|
+
"fullWidth": {
|
|
20601
|
+
"description": "Sets badge width to 100% of parent element, hides overflow text with text-overflow: ellipsis",
|
|
20602
|
+
"required": false,
|
|
20603
|
+
"type": {
|
|
20604
|
+
"name": "bool",
|
|
20605
|
+
"raw": "boolean"
|
|
20606
|
+
}
|
|
20607
|
+
},
|
|
20608
|
+
"leftSection": {
|
|
20609
|
+
"description": "Section rendered on the left side of label",
|
|
20610
|
+
"required": false,
|
|
20611
|
+
"type": {
|
|
20612
|
+
"name": "node",
|
|
20613
|
+
"raw": "ReactNode"
|
|
20614
|
+
}
|
|
20615
|
+
},
|
|
20616
|
+
"rightSection": {
|
|
20617
|
+
"description": "Section rendered on the right side of label",
|
|
20618
|
+
"required": false,
|
|
20619
|
+
"type": {
|
|
20620
|
+
"name": "node",
|
|
20621
|
+
"raw": "ReactNode"
|
|
20622
|
+
}
|
|
20623
|
+
},
|
|
20624
|
+
"children": {
|
|
20625
|
+
"description": "Badge label",
|
|
20626
|
+
"required": false,
|
|
20627
|
+
"type": {
|
|
20628
|
+
"name": "node",
|
|
20629
|
+
"raw": "ReactNode"
|
|
20630
|
+
}
|
|
20631
|
+
},
|
|
20632
|
+
"className": {
|
|
20633
|
+
"description": "Often used with CSS to style elements with common properties",
|
|
20634
|
+
"required": false,
|
|
20635
|
+
"type": {
|
|
20636
|
+
"name": "string",
|
|
20637
|
+
"raw": "string"
|
|
20638
|
+
}
|
|
20639
|
+
},
|
|
20640
|
+
"style": {
|
|
20641
|
+
"description": "Inline style",
|
|
20642
|
+
"required": false,
|
|
20643
|
+
"type": {
|
|
20644
|
+
"name": "any",
|
|
20645
|
+
"raw": "any"
|
|
20646
|
+
}
|
|
20647
|
+
},
|
|
20648
|
+
"styles": {
|
|
20649
|
+
"description": "Mantine styles API",
|
|
20650
|
+
"required": false,
|
|
20651
|
+
"type": {
|
|
20652
|
+
"name": "object",
|
|
20653
|
+
"raw": "object"
|
|
20654
|
+
}
|
|
20655
|
+
},
|
|
20656
|
+
"id": {
|
|
20657
|
+
"description": "Unique ID to identify this component in Dash callbacks.",
|
|
20658
|
+
"required": false,
|
|
20659
|
+
"type": {
|
|
20660
|
+
"name": "string",
|
|
20661
|
+
"raw": "string"
|
|
20662
|
+
}
|
|
20663
|
+
},
|
|
20664
|
+
"unstyled": {
|
|
20665
|
+
"description": "Remove all Mantine styling from the component",
|
|
20666
|
+
"required": false,
|
|
20667
|
+
"type": {
|
|
20668
|
+
"name": "bool",
|
|
20669
|
+
"raw": "boolean"
|
|
20670
|
+
}
|
|
20671
|
+
},
|
|
20672
|
+
"setProps": {
|
|
20673
|
+
"description": "Update props to trigger callbacks.",
|
|
20674
|
+
"required": true,
|
|
20675
|
+
"type": {
|
|
20676
|
+
"name": "func",
|
|
20677
|
+
"raw": "(props: Record<string, any>) => void"
|
|
20678
|
+
}
|
|
20679
|
+
},
|
|
20680
|
+
"sx": {
|
|
20681
|
+
"description": "With sx you can add styles to component root element. If you need to customize styles of other elements within component use styles prop",
|
|
20682
|
+
"required": false,
|
|
20683
|
+
"type": {
|
|
20684
|
+
"name": "any",
|
|
20685
|
+
"raw": "any"
|
|
20686
|
+
}
|
|
20687
|
+
},
|
|
20688
|
+
"m": {
|
|
20689
|
+
"description": "margin props",
|
|
20690
|
+
"required": false,
|
|
20691
|
+
"type": {
|
|
20692
|
+
"name": "union",
|
|
20693
|
+
"value": [
|
|
20694
|
+
{
|
|
20695
|
+
"name": "number",
|
|
20696
|
+
"raw": "number"
|
|
20697
|
+
}
|
|
20698
|
+
],
|
|
20699
|
+
"raw": "MantineNumberSize"
|
|
20700
|
+
}
|
|
20701
|
+
},
|
|
20702
|
+
"my": {
|
|
20703
|
+
"description": "margin props",
|
|
20704
|
+
"required": false,
|
|
20705
|
+
"type": {
|
|
20706
|
+
"name": "union",
|
|
20707
|
+
"value": [
|
|
20708
|
+
{
|
|
20709
|
+
"name": "number",
|
|
20710
|
+
"raw": "number"
|
|
20711
|
+
}
|
|
20712
|
+
],
|
|
20713
|
+
"raw": "MantineNumberSize"
|
|
20714
|
+
}
|
|
20715
|
+
},
|
|
20716
|
+
"mx": {
|
|
20717
|
+
"description": "margin props",
|
|
20718
|
+
"required": false,
|
|
20719
|
+
"type": {
|
|
20720
|
+
"name": "union",
|
|
20721
|
+
"value": [
|
|
20722
|
+
{
|
|
20723
|
+
"name": "number",
|
|
20724
|
+
"raw": "number"
|
|
20725
|
+
}
|
|
20726
|
+
],
|
|
20727
|
+
"raw": "MantineNumberSize"
|
|
20728
|
+
}
|
|
20729
|
+
},
|
|
20730
|
+
"mt": {
|
|
20731
|
+
"description": "margin props",
|
|
20732
|
+
"required": false,
|
|
20733
|
+
"type": {
|
|
20734
|
+
"name": "union",
|
|
20735
|
+
"value": [
|
|
20736
|
+
{
|
|
20737
|
+
"name": "number",
|
|
20738
|
+
"raw": "number"
|
|
20739
|
+
}
|
|
20740
|
+
],
|
|
20741
|
+
"raw": "MantineNumberSize"
|
|
20742
|
+
}
|
|
20743
|
+
},
|
|
20744
|
+
"mb": {
|
|
20745
|
+
"description": "margin props",
|
|
20746
|
+
"required": false,
|
|
20747
|
+
"type": {
|
|
20748
|
+
"name": "union",
|
|
20749
|
+
"value": [
|
|
20750
|
+
{
|
|
20751
|
+
"name": "number",
|
|
20752
|
+
"raw": "number"
|
|
20753
|
+
}
|
|
20754
|
+
],
|
|
20755
|
+
"raw": "MantineNumberSize"
|
|
20756
|
+
}
|
|
20757
|
+
},
|
|
20758
|
+
"ml": {
|
|
20759
|
+
"description": "margin props",
|
|
20760
|
+
"required": false,
|
|
20761
|
+
"type": {
|
|
20762
|
+
"name": "union",
|
|
20763
|
+
"value": [
|
|
20764
|
+
{
|
|
20765
|
+
"name": "number",
|
|
20766
|
+
"raw": "number"
|
|
20767
|
+
}
|
|
20768
|
+
],
|
|
20769
|
+
"raw": "MantineNumberSize"
|
|
20770
|
+
}
|
|
20771
|
+
},
|
|
20772
|
+
"mr": {
|
|
20773
|
+
"description": "margin props",
|
|
20774
|
+
"required": false,
|
|
20775
|
+
"type": {
|
|
20776
|
+
"name": "union",
|
|
20777
|
+
"value": [
|
|
20778
|
+
{
|
|
20779
|
+
"name": "number",
|
|
20780
|
+
"raw": "number"
|
|
20781
|
+
}
|
|
20782
|
+
],
|
|
20783
|
+
"raw": "MantineNumberSize"
|
|
20784
|
+
}
|
|
20785
|
+
},
|
|
20786
|
+
"p": {
|
|
20787
|
+
"description": "padding props",
|
|
20788
|
+
"required": false,
|
|
20789
|
+
"type": {
|
|
20790
|
+
"name": "union",
|
|
20791
|
+
"value": [
|
|
20792
|
+
{
|
|
20793
|
+
"name": "number",
|
|
20794
|
+
"raw": "number"
|
|
20795
|
+
}
|
|
20796
|
+
],
|
|
20797
|
+
"raw": "MantineNumberSize"
|
|
20798
|
+
}
|
|
20799
|
+
},
|
|
20800
|
+
"py": {
|
|
20801
|
+
"description": "padding props",
|
|
20802
|
+
"required": false,
|
|
20803
|
+
"type": {
|
|
20804
|
+
"name": "union",
|
|
20805
|
+
"value": [
|
|
20806
|
+
{
|
|
20807
|
+
"name": "number",
|
|
20808
|
+
"raw": "number"
|
|
20809
|
+
}
|
|
20810
|
+
],
|
|
20811
|
+
"raw": "MantineNumberSize"
|
|
20812
|
+
}
|
|
20813
|
+
},
|
|
20814
|
+
"px": {
|
|
20815
|
+
"description": "padding props",
|
|
20816
|
+
"required": false,
|
|
20817
|
+
"type": {
|
|
20818
|
+
"name": "union",
|
|
20819
|
+
"value": [
|
|
20820
|
+
{
|
|
20821
|
+
"name": "number",
|
|
20822
|
+
"raw": "number"
|
|
20823
|
+
}
|
|
20824
|
+
],
|
|
20825
|
+
"raw": "MantineNumberSize"
|
|
20826
|
+
}
|
|
20827
|
+
},
|
|
20828
|
+
"pt": {
|
|
20829
|
+
"description": "padding props",
|
|
20830
|
+
"required": false,
|
|
20831
|
+
"type": {
|
|
20832
|
+
"name": "union",
|
|
20833
|
+
"value": [
|
|
20834
|
+
{
|
|
20835
|
+
"name": "number",
|
|
20836
|
+
"raw": "number"
|
|
20837
|
+
}
|
|
20838
|
+
],
|
|
20839
|
+
"raw": "MantineNumberSize"
|
|
20840
|
+
}
|
|
20841
|
+
},
|
|
20842
|
+
"pb": {
|
|
20843
|
+
"description": "padding props",
|
|
20844
|
+
"required": false,
|
|
20845
|
+
"type": {
|
|
20846
|
+
"name": "union",
|
|
20847
|
+
"value": [
|
|
20848
|
+
{
|
|
20849
|
+
"name": "number",
|
|
20850
|
+
"raw": "number"
|
|
20851
|
+
}
|
|
20852
|
+
],
|
|
20853
|
+
"raw": "MantineNumberSize"
|
|
20854
|
+
}
|
|
20855
|
+
},
|
|
20856
|
+
"pl": {
|
|
20857
|
+
"description": "padding props",
|
|
20858
|
+
"required": false,
|
|
20859
|
+
"type": {
|
|
20860
|
+
"name": "union",
|
|
20861
|
+
"value": [
|
|
20862
|
+
{
|
|
20863
|
+
"name": "number",
|
|
20864
|
+
"raw": "number"
|
|
20865
|
+
}
|
|
20866
|
+
],
|
|
20867
|
+
"raw": "MantineNumberSize"
|
|
20868
|
+
}
|
|
20869
|
+
},
|
|
20870
|
+
"pr": {
|
|
20871
|
+
"description": "padding props",
|
|
20872
|
+
"required": false,
|
|
20873
|
+
"type": {
|
|
20874
|
+
"name": "union",
|
|
20875
|
+
"value": [
|
|
20876
|
+
{
|
|
20877
|
+
"name": "number",
|
|
20878
|
+
"raw": "number"
|
|
20879
|
+
}
|
|
20880
|
+
],
|
|
20881
|
+
"raw": "MantineNumberSize"
|
|
20882
|
+
}
|
|
20883
|
+
}
|
|
20884
|
+
},
|
|
20885
|
+
"isContext": false
|
|
20886
|
+
},
|
|
20887
|
+
"src/ts/components/core/Blockquote.tsx": {
|
|
20888
|
+
"displayName": "Blockquote",
|
|
20889
|
+
"description": "Blockquote with optional cite. For more information, see: https://mantine.dev/core/blockquote/",
|
|
18748
20890
|
"props": {
|
|
18749
20891
|
"color": {
|
|
18750
|
-
"description": "
|
|
20892
|
+
"description": "Icon color from theme",
|
|
18751
20893
|
"required": false,
|
|
18752
20894
|
"type": {
|
|
18753
20895
|
"name": "any",
|
|
18754
20896
|
"raw": "DefaultMantineColor"
|
|
18755
20897
|
}
|
|
18756
20898
|
},
|
|
18757
|
-
"
|
|
18758
|
-
"description": "
|
|
18759
|
-
"required": false,
|
|
18760
|
-
"type": {
|
|
18761
|
-
"name": "enum",
|
|
18762
|
-
"value": [
|
|
18763
|
-
{
|
|
18764
|
-
"value": "'filled'",
|
|
18765
|
-
"computed": false
|
|
18766
|
-
},
|
|
18767
|
-
{
|
|
18768
|
-
"value": "'outline'",
|
|
18769
|
-
"computed": false
|
|
18770
|
-
},
|
|
18771
|
-
{
|
|
18772
|
-
"value": "'light'",
|
|
18773
|
-
"computed": false
|
|
18774
|
-
},
|
|
18775
|
-
{
|
|
18776
|
-
"value": "'gradient'",
|
|
18777
|
-
"computed": false
|
|
18778
|
-
},
|
|
18779
|
-
{
|
|
18780
|
-
"value": "'dot'",
|
|
18781
|
-
"computed": false
|
|
18782
|
-
}
|
|
18783
|
-
],
|
|
18784
|
-
"raw": "BadgeVariant"
|
|
18785
|
-
}
|
|
18786
|
-
},
|
|
18787
|
-
"gradient": {
|
|
18788
|
-
"description": "Controls gradient, applied to gradient variant only",
|
|
18789
|
-
"required": false,
|
|
18790
|
-
"type": {
|
|
18791
|
-
"name": "shape",
|
|
18792
|
-
"value": {
|
|
18793
|
-
"from": {
|
|
18794
|
-
"description": "",
|
|
18795
|
-
"required": true,
|
|
18796
|
-
"name": "string",
|
|
18797
|
-
"raw": "string"
|
|
18798
|
-
},
|
|
18799
|
-
"to": {
|
|
18800
|
-
"description": "",
|
|
18801
|
-
"required": true,
|
|
18802
|
-
"name": "string",
|
|
18803
|
-
"raw": "string"
|
|
18804
|
-
},
|
|
18805
|
-
"deg": {
|
|
18806
|
-
"description": "",
|
|
18807
|
-
"required": false,
|
|
18808
|
-
"name": "number",
|
|
18809
|
-
"raw": "number"
|
|
18810
|
-
}
|
|
18811
|
-
},
|
|
18812
|
-
"raw": "MantineGradient"
|
|
18813
|
-
}
|
|
18814
|
-
},
|
|
18815
|
-
"size": {
|
|
18816
|
-
"description": "Badge height and font size",
|
|
18817
|
-
"required": false,
|
|
18818
|
-
"type": {
|
|
18819
|
-
"name": "enum",
|
|
18820
|
-
"value": [
|
|
18821
|
-
{
|
|
18822
|
-
"value": "'xs'",
|
|
18823
|
-
"computed": false
|
|
18824
|
-
},
|
|
18825
|
-
{
|
|
18826
|
-
"value": "'sm'",
|
|
18827
|
-
"computed": false
|
|
18828
|
-
},
|
|
18829
|
-
{
|
|
18830
|
-
"value": "'md'",
|
|
18831
|
-
"computed": false
|
|
18832
|
-
},
|
|
18833
|
-
{
|
|
18834
|
-
"value": "'lg'",
|
|
18835
|
-
"computed": false
|
|
18836
|
-
},
|
|
18837
|
-
{
|
|
18838
|
-
"value": "'xl'",
|
|
18839
|
-
"computed": false
|
|
18840
|
-
}
|
|
18841
|
-
],
|
|
18842
|
-
"raw": "MantineSize"
|
|
18843
|
-
}
|
|
18844
|
-
},
|
|
18845
|
-
"radius": {
|
|
18846
|
-
"description": "Key of theme.radius or number to set border-radius in px",
|
|
18847
|
-
"required": false,
|
|
18848
|
-
"type": {
|
|
18849
|
-
"name": "union",
|
|
18850
|
-
"value": [
|
|
18851
|
-
{
|
|
18852
|
-
"name": "number",
|
|
18853
|
-
"raw": "number"
|
|
18854
|
-
}
|
|
18855
|
-
],
|
|
18856
|
-
"raw": "MantineNumberSize"
|
|
18857
|
-
}
|
|
18858
|
-
},
|
|
18859
|
-
"fullWidth": {
|
|
18860
|
-
"description": "Sets badge width to 100% of parent element, hides overflow text with text-overflow: ellipsis",
|
|
18861
|
-
"required": false,
|
|
18862
|
-
"type": {
|
|
18863
|
-
"name": "bool",
|
|
18864
|
-
"raw": "boolean"
|
|
18865
|
-
}
|
|
18866
|
-
},
|
|
18867
|
-
"leftSection": {
|
|
18868
|
-
"description": "Section rendered on the left side of label",
|
|
20899
|
+
"icon": {
|
|
20900
|
+
"description": "Icon, defaults to quote icon",
|
|
18869
20901
|
"required": false,
|
|
18870
20902
|
"type": {
|
|
18871
20903
|
"name": "node",
|
|
18872
20904
|
"raw": "ReactNode"
|
|
18873
20905
|
}
|
|
18874
20906
|
},
|
|
18875
|
-
"
|
|
18876
|
-
"description": "
|
|
20907
|
+
"cite": {
|
|
20908
|
+
"description": "Describe a reference to a cited quote",
|
|
18877
20909
|
"required": false,
|
|
18878
20910
|
"type": {
|
|
18879
20911
|
"name": "node",
|
|
@@ -18881,7 +20913,7 @@
|
|
|
18881
20913
|
}
|
|
18882
20914
|
},
|
|
18883
20915
|
"children": {
|
|
18884
|
-
"description": "
|
|
20916
|
+
"description": "Content",
|
|
18885
20917
|
"required": false,
|
|
18886
20918
|
"type": {
|
|
18887
20919
|
"name": "node",
|
|
@@ -19143,28 +21175,12 @@
|
|
|
19143
21175
|
},
|
|
19144
21176
|
"isContext": false
|
|
19145
21177
|
},
|
|
19146
|
-
"src/ts/components/core/
|
|
19147
|
-
"displayName": "
|
|
19148
|
-
"description": "
|
|
21178
|
+
"src/ts/components/core/Breadcrumbs.tsx": {
|
|
21179
|
+
"displayName": "Breadcrumbs",
|
|
21180
|
+
"description": "Separate list of react nodes with given separator. For more information, see: https://mantine.dev/core/breadcrumbs/",
|
|
19149
21181
|
"props": {
|
|
19150
|
-
"
|
|
19151
|
-
"description": "
|
|
19152
|
-
"required": false,
|
|
19153
|
-
"type": {
|
|
19154
|
-
"name": "any",
|
|
19155
|
-
"raw": "DefaultMantineColor"
|
|
19156
|
-
}
|
|
19157
|
-
},
|
|
19158
|
-
"icon": {
|
|
19159
|
-
"description": "Icon, defaults to quote icon",
|
|
19160
|
-
"required": false,
|
|
19161
|
-
"type": {
|
|
19162
|
-
"name": "node",
|
|
19163
|
-
"raw": "ReactNode"
|
|
19164
|
-
}
|
|
19165
|
-
},
|
|
19166
|
-
"cite": {
|
|
19167
|
-
"description": "Describe a reference to a cited quote",
|
|
21182
|
+
"separator": {
|
|
21183
|
+
"description": "Separator between breadcrumbs",
|
|
19168
21184
|
"required": false,
|
|
19169
21185
|
"type": {
|
|
19170
21186
|
"name": "node",
|
|
@@ -19172,7 +21188,7 @@
|
|
|
19172
21188
|
}
|
|
19173
21189
|
},
|
|
19174
21190
|
"children": {
|
|
19175
|
-
"description": "
|
|
21191
|
+
"description": "React nodes that should be separated",
|
|
19176
21192
|
"required": false,
|
|
19177
21193
|
"type": {
|
|
19178
21194
|
"name": "node",
|
|
@@ -19434,24 +21450,110 @@
|
|
|
19434
21450
|
},
|
|
19435
21451
|
"isContext": false
|
|
19436
21452
|
},
|
|
19437
|
-
"src/ts/components/core/
|
|
19438
|
-
"displayName": "
|
|
19439
|
-
"description": "
|
|
21453
|
+
"src/ts/components/core/Burger.tsx": {
|
|
21454
|
+
"displayName": "Burger",
|
|
21455
|
+
"description": "Display burger-style menu button. For more information, see: https://mantine.dev/core/burger/",
|
|
19440
21456
|
"props": {
|
|
19441
|
-
"
|
|
19442
|
-
"description": "
|
|
21457
|
+
"opened": {
|
|
21458
|
+
"description": "Burger state: true for cross, false for burger",
|
|
19443
21459
|
"required": false,
|
|
21460
|
+
"defaultValue": {
|
|
21461
|
+
"value": "false",
|
|
21462
|
+
"computed": false
|
|
21463
|
+
},
|
|
19444
21464
|
"type": {
|
|
19445
|
-
"name": "
|
|
19446
|
-
"raw": "
|
|
21465
|
+
"name": "bool",
|
|
21466
|
+
"raw": "boolean"
|
|
19447
21467
|
}
|
|
19448
21468
|
},
|
|
19449
|
-
"
|
|
19450
|
-
"description": "
|
|
21469
|
+
"color": {
|
|
21470
|
+
"description": "Burger color value, not connected to theme.colors, defaults to theme.black with light color scheme and theme.white with dark",
|
|
19451
21471
|
"required": false,
|
|
19452
21472
|
"type": {
|
|
19453
|
-
"name": "
|
|
19454
|
-
"raw": "
|
|
21473
|
+
"name": "string",
|
|
21474
|
+
"raw": "string"
|
|
21475
|
+
}
|
|
21476
|
+
},
|
|
21477
|
+
"size": {
|
|
21478
|
+
"description": "Predefined burger size or number to set width and height in px",
|
|
21479
|
+
"required": false,
|
|
21480
|
+
"type": {
|
|
21481
|
+
"name": "union",
|
|
21482
|
+
"value": [
|
|
21483
|
+
{
|
|
21484
|
+
"name": "number",
|
|
21485
|
+
"raw": "number"
|
|
21486
|
+
}
|
|
21487
|
+
],
|
|
21488
|
+
"raw": "MantineNumberSize"
|
|
21489
|
+
}
|
|
21490
|
+
},
|
|
21491
|
+
"transitionDuration": {
|
|
21492
|
+
"description": "Transition duration in ms",
|
|
21493
|
+
"required": false,
|
|
21494
|
+
"type": {
|
|
21495
|
+
"name": "number",
|
|
21496
|
+
"raw": "number"
|
|
21497
|
+
}
|
|
21498
|
+
},
|
|
21499
|
+
"persistence": {
|
|
21500
|
+
"description": "Used to allow user interactions in this component to be persisted when\nthe component - or the page - is refreshed. If `persisted` is truthy and\nhasn't changed from its previous value, a `value` that the user has\nchanged while using the app will keep that change, as long as\nthe new `value` also matches what was given originally.\nUsed in conjunction with `persistence_type`.",
|
|
21501
|
+
"required": true,
|
|
21502
|
+
"type": {
|
|
21503
|
+
"name": "union",
|
|
21504
|
+
"value": [
|
|
21505
|
+
{
|
|
21506
|
+
"name": "string",
|
|
21507
|
+
"raw": "string"
|
|
21508
|
+
},
|
|
21509
|
+
{
|
|
21510
|
+
"name": "number",
|
|
21511
|
+
"raw": "number"
|
|
21512
|
+
}
|
|
21513
|
+
],
|
|
21514
|
+
"raw": "string | number | boolean"
|
|
21515
|
+
}
|
|
21516
|
+
},
|
|
21517
|
+
"persisted_props": {
|
|
21518
|
+
"description": "Properties whose user interactions will persist after refreshing the\ncomponent or the page. Since only `value` is allowed this prop can\nnormally be ignored.",
|
|
21519
|
+
"required": false,
|
|
21520
|
+
"defaultValue": {
|
|
21521
|
+
"value": "[\"opened\"]",
|
|
21522
|
+
"computed": false
|
|
21523
|
+
},
|
|
21524
|
+
"type": {
|
|
21525
|
+
"name": "arrayOf",
|
|
21526
|
+
"value": {
|
|
21527
|
+
"name": "string",
|
|
21528
|
+
"raw": "string"
|
|
21529
|
+
},
|
|
21530
|
+
"raw": "string[]"
|
|
21531
|
+
}
|
|
21532
|
+
},
|
|
21533
|
+
"persistence_type": {
|
|
21534
|
+
"description": "Where persisted user changes will be stored:\nmemory: only kept in memory, reset on page refresh.\nlocal: window.localStorage, data is kept after the browser quit.\nsession: window.sessionStorage, data is cleared once the browser quit.",
|
|
21535
|
+
"required": false,
|
|
21536
|
+
"defaultValue": {
|
|
21537
|
+
"value": "'local'",
|
|
21538
|
+
"computed": false
|
|
21539
|
+
},
|
|
21540
|
+
"type": {
|
|
21541
|
+
"name": "enum",
|
|
21542
|
+
"value": [
|
|
21543
|
+
{
|
|
21544
|
+
"value": "'local'",
|
|
21545
|
+
"computed": false
|
|
21546
|
+
},
|
|
21547
|
+
{
|
|
21548
|
+
"value": "'session'",
|
|
21549
|
+
"computed": false
|
|
21550
|
+
},
|
|
21551
|
+
{
|
|
21552
|
+
"value": "'memory'",
|
|
21553
|
+
"computed": false
|
|
21554
|
+
}
|
|
21555
|
+
],
|
|
21556
|
+
"raw": "\"local\" | \"session\" | \"memory\""
|
|
19455
21557
|
}
|
|
19456
21558
|
},
|
|
19457
21559
|
"className": {
|
|
@@ -20866,6 +22968,66 @@
|
|
|
20866
22968
|
"raw": "boolean"
|
|
20867
22969
|
}
|
|
20868
22970
|
},
|
|
22971
|
+
"persistence": {
|
|
22972
|
+
"description": "Used to allow user interactions in this component to be persisted when\nthe component - or the page - is refreshed. If `persisted` is truthy and\nhasn't changed from its previous value, a `value` that the user has\nchanged while using the app will keep that change, as long as\nthe new `value` also matches what was given originally.\nUsed in conjunction with `persistence_type`.",
|
|
22973
|
+
"required": true,
|
|
22974
|
+
"type": {
|
|
22975
|
+
"name": "union",
|
|
22976
|
+
"value": [
|
|
22977
|
+
{
|
|
22978
|
+
"name": "string",
|
|
22979
|
+
"raw": "string"
|
|
22980
|
+
},
|
|
22981
|
+
{
|
|
22982
|
+
"name": "number",
|
|
22983
|
+
"raw": "number"
|
|
22984
|
+
}
|
|
22985
|
+
],
|
|
22986
|
+
"raw": "string | number | boolean"
|
|
22987
|
+
}
|
|
22988
|
+
},
|
|
22989
|
+
"persisted_props": {
|
|
22990
|
+
"description": "Properties whose user interactions will persist after refreshing the\ncomponent or the page. Since only `value` is allowed this prop can\nnormally be ignored.",
|
|
22991
|
+
"required": false,
|
|
22992
|
+
"defaultValue": {
|
|
22993
|
+
"value": "[\"value\"]",
|
|
22994
|
+
"computed": false
|
|
22995
|
+
},
|
|
22996
|
+
"type": {
|
|
22997
|
+
"name": "arrayOf",
|
|
22998
|
+
"value": {
|
|
22999
|
+
"name": "string",
|
|
23000
|
+
"raw": "string"
|
|
23001
|
+
},
|
|
23002
|
+
"raw": "string[]"
|
|
23003
|
+
}
|
|
23004
|
+
},
|
|
23005
|
+
"persistence_type": {
|
|
23006
|
+
"description": "Where persisted user changes will be stored:\nmemory: only kept in memory, reset on page refresh.\nlocal: window.localStorage, data is kept after the browser quit.\nsession: window.sessionStorage, data is cleared once the browser quit.",
|
|
23007
|
+
"required": false,
|
|
23008
|
+
"defaultValue": {
|
|
23009
|
+
"value": "'local'",
|
|
23010
|
+
"computed": false
|
|
23011
|
+
},
|
|
23012
|
+
"type": {
|
|
23013
|
+
"name": "enum",
|
|
23014
|
+
"value": [
|
|
23015
|
+
{
|
|
23016
|
+
"value": "'local'",
|
|
23017
|
+
"computed": false
|
|
23018
|
+
},
|
|
23019
|
+
{
|
|
23020
|
+
"value": "'session'",
|
|
23021
|
+
"computed": false
|
|
23022
|
+
},
|
|
23023
|
+
{
|
|
23024
|
+
"value": "'memory'",
|
|
23025
|
+
"computed": false
|
|
23026
|
+
}
|
|
23027
|
+
],
|
|
23028
|
+
"raw": "\"local\" | \"session\" | \"memory\""
|
|
23029
|
+
}
|
|
23030
|
+
},
|
|
20869
23031
|
"className": {
|
|
20870
23032
|
"description": "Often used with CSS to style elements with common properties",
|
|
20871
23033
|
"required": false,
|
|
@@ -26037,6 +28199,66 @@
|
|
|
26037
28199
|
],
|
|
26038
28200
|
"raw": "MantineNumberSize"
|
|
26039
28201
|
}
|
|
28202
|
+
},
|
|
28203
|
+
"persistence": {
|
|
28204
|
+
"description": "Used to allow user interactions in this component to be persisted when\nthe component - or the page - is refreshed. If `persisted` is truthy and\nhasn't changed from its previous value, a `value` that the user has\nchanged while using the app will keep that change, as long as\nthe new `value` also matches what was given originally.\nUsed in conjunction with `persistence_type`.",
|
|
28205
|
+
"required": true,
|
|
28206
|
+
"type": {
|
|
28207
|
+
"name": "union",
|
|
28208
|
+
"value": [
|
|
28209
|
+
{
|
|
28210
|
+
"name": "string",
|
|
28211
|
+
"raw": "string"
|
|
28212
|
+
},
|
|
28213
|
+
{
|
|
28214
|
+
"name": "number",
|
|
28215
|
+
"raw": "number"
|
|
28216
|
+
}
|
|
28217
|
+
],
|
|
28218
|
+
"raw": "string | number | boolean"
|
|
28219
|
+
}
|
|
28220
|
+
},
|
|
28221
|
+
"persisted_props": {
|
|
28222
|
+
"description": "Properties whose user interactions will persist after refreshing the\ncomponent or the page. Since only `value` is allowed this prop can\nnormally be ignored.",
|
|
28223
|
+
"required": false,
|
|
28224
|
+
"defaultValue": {
|
|
28225
|
+
"value": "[\"page\"]",
|
|
28226
|
+
"computed": false
|
|
28227
|
+
},
|
|
28228
|
+
"type": {
|
|
28229
|
+
"name": "arrayOf",
|
|
28230
|
+
"value": {
|
|
28231
|
+
"name": "string",
|
|
28232
|
+
"raw": "string"
|
|
28233
|
+
},
|
|
28234
|
+
"raw": "string[]"
|
|
28235
|
+
}
|
|
28236
|
+
},
|
|
28237
|
+
"persistence_type": {
|
|
28238
|
+
"description": "Where persisted user changes will be stored:\nmemory: only kept in memory, reset on page refresh.\nlocal: window.localStorage, data is kept after the browser quit.\nsession: window.sessionStorage, data is cleared once the browser quit.",
|
|
28239
|
+
"required": false,
|
|
28240
|
+
"defaultValue": {
|
|
28241
|
+
"value": "'local'",
|
|
28242
|
+
"computed": false
|
|
28243
|
+
},
|
|
28244
|
+
"type": {
|
|
28245
|
+
"name": "enum",
|
|
28246
|
+
"value": [
|
|
28247
|
+
{
|
|
28248
|
+
"value": "'local'",
|
|
28249
|
+
"computed": false
|
|
28250
|
+
},
|
|
28251
|
+
{
|
|
28252
|
+
"value": "'session'",
|
|
28253
|
+
"computed": false
|
|
28254
|
+
},
|
|
28255
|
+
{
|
|
28256
|
+
"value": "'memory'",
|
|
28257
|
+
"computed": false
|
|
28258
|
+
}
|
|
28259
|
+
],
|
|
28260
|
+
"raw": "\"local\" | \"session\" | \"memory\""
|
|
28261
|
+
}
|
|
26040
28262
|
}
|
|
26041
28263
|
},
|
|
26042
28264
|
"isContext": false
|
|
@@ -27967,6 +30189,66 @@
|
|
|
27967
30189
|
"raw": "\"horizontal\" | \"vertical\""
|
|
27968
30190
|
}
|
|
27969
30191
|
},
|
|
30192
|
+
"persistence": {
|
|
30193
|
+
"description": "Used to allow user interactions in this component to be persisted when\nthe component - or the page - is refreshed. If `persisted` is truthy and\nhasn't changed from its previous value, a `value` that the user has\nchanged while using the app will keep that change, as long as\nthe new `value` also matches what was given originally.\nUsed in conjunction with `persistence_type`.",
|
|
30194
|
+
"required": true,
|
|
30195
|
+
"type": {
|
|
30196
|
+
"name": "union",
|
|
30197
|
+
"value": [
|
|
30198
|
+
{
|
|
30199
|
+
"name": "string",
|
|
30200
|
+
"raw": "string"
|
|
30201
|
+
},
|
|
30202
|
+
{
|
|
30203
|
+
"name": "number",
|
|
30204
|
+
"raw": "number"
|
|
30205
|
+
}
|
|
30206
|
+
],
|
|
30207
|
+
"raw": "string | number | boolean"
|
|
30208
|
+
}
|
|
30209
|
+
},
|
|
30210
|
+
"persisted_props": {
|
|
30211
|
+
"description": "Properties whose user interactions will persist after refreshing the\ncomponent or the page. Since only `value` is allowed this prop can\nnormally be ignored.",
|
|
30212
|
+
"required": false,
|
|
30213
|
+
"defaultValue": {
|
|
30214
|
+
"value": "[\"value\"]",
|
|
30215
|
+
"computed": false
|
|
30216
|
+
},
|
|
30217
|
+
"type": {
|
|
30218
|
+
"name": "arrayOf",
|
|
30219
|
+
"value": {
|
|
30220
|
+
"name": "string",
|
|
30221
|
+
"raw": "string"
|
|
30222
|
+
},
|
|
30223
|
+
"raw": "string[]"
|
|
30224
|
+
}
|
|
30225
|
+
},
|
|
30226
|
+
"persistence_type": {
|
|
30227
|
+
"description": "Where persisted user changes will be stored:\nmemory: only kept in memory, reset on page refresh.\nlocal: window.localStorage, data is kept after the browser quit.\nsession: window.sessionStorage, data is cleared once the browser quit.",
|
|
30228
|
+
"required": false,
|
|
30229
|
+
"defaultValue": {
|
|
30230
|
+
"value": "'local'",
|
|
30231
|
+
"computed": false
|
|
30232
|
+
},
|
|
30233
|
+
"type": {
|
|
30234
|
+
"name": "enum",
|
|
30235
|
+
"value": [
|
|
30236
|
+
{
|
|
30237
|
+
"value": "'local'",
|
|
30238
|
+
"computed": false
|
|
30239
|
+
},
|
|
30240
|
+
{
|
|
30241
|
+
"value": "'session'",
|
|
30242
|
+
"computed": false
|
|
30243
|
+
},
|
|
30244
|
+
{
|
|
30245
|
+
"value": "'memory'",
|
|
30246
|
+
"computed": false
|
|
30247
|
+
}
|
|
30248
|
+
],
|
|
30249
|
+
"raw": "\"local\" | \"session\" | \"memory\""
|
|
30250
|
+
}
|
|
30251
|
+
},
|
|
27970
30252
|
"className": {
|
|
27971
30253
|
"description": "Often used with CSS to style elements with common properties",
|
|
27972
30254
|
"required": false,
|
|
@@ -30089,6 +32371,66 @@
|
|
|
30089
32371
|
"raw": "boolean"
|
|
30090
32372
|
}
|
|
30091
32373
|
},
|
|
32374
|
+
"persistence": {
|
|
32375
|
+
"description": "Used to allow user interactions in this component to be persisted when\nthe component - or the page - is refreshed. If `persisted` is truthy and\nhasn't changed from its previous value, a `value` that the user has\nchanged while using the app will keep that change, as long as\nthe new `value` also matches what was given originally.\nUsed in conjunction with `persistence_type`.",
|
|
32376
|
+
"required": true,
|
|
32377
|
+
"type": {
|
|
32378
|
+
"name": "union",
|
|
32379
|
+
"value": [
|
|
32380
|
+
{
|
|
32381
|
+
"name": "string",
|
|
32382
|
+
"raw": "string"
|
|
32383
|
+
},
|
|
32384
|
+
{
|
|
32385
|
+
"name": "number",
|
|
32386
|
+
"raw": "number"
|
|
32387
|
+
}
|
|
32388
|
+
],
|
|
32389
|
+
"raw": "string | number | boolean"
|
|
32390
|
+
}
|
|
32391
|
+
},
|
|
32392
|
+
"persisted_props": {
|
|
32393
|
+
"description": "Properties whose user interactions will persist after refreshing the\ncomponent or the page. Since only `value` is allowed this prop can\nnormally be ignored.",
|
|
32394
|
+
"required": false,
|
|
32395
|
+
"defaultValue": {
|
|
32396
|
+
"value": "[\"checked\"]",
|
|
32397
|
+
"computed": false
|
|
32398
|
+
},
|
|
32399
|
+
"type": {
|
|
32400
|
+
"name": "arrayOf",
|
|
32401
|
+
"value": {
|
|
32402
|
+
"name": "string",
|
|
32403
|
+
"raw": "string"
|
|
32404
|
+
},
|
|
32405
|
+
"raw": "string[]"
|
|
32406
|
+
}
|
|
32407
|
+
},
|
|
32408
|
+
"persistence_type": {
|
|
32409
|
+
"description": "Where persisted user changes will be stored:\nmemory: only kept in memory, reset on page refresh.\nlocal: window.localStorage, data is kept after the browser quit.\nsession: window.sessionStorage, data is cleared once the browser quit.",
|
|
32410
|
+
"required": false,
|
|
32411
|
+
"defaultValue": {
|
|
32412
|
+
"value": "'local'",
|
|
32413
|
+
"computed": false
|
|
32414
|
+
},
|
|
32415
|
+
"type": {
|
|
32416
|
+
"name": "enum",
|
|
32417
|
+
"value": [
|
|
32418
|
+
{
|
|
32419
|
+
"value": "'local'",
|
|
32420
|
+
"computed": false
|
|
32421
|
+
},
|
|
32422
|
+
{
|
|
32423
|
+
"value": "'session'",
|
|
32424
|
+
"computed": false
|
|
32425
|
+
},
|
|
32426
|
+
{
|
|
32427
|
+
"value": "'memory'",
|
|
32428
|
+
"computed": false
|
|
32429
|
+
}
|
|
32430
|
+
],
|
|
32431
|
+
"raw": "\"local\" | \"session\" | \"memory\""
|
|
32432
|
+
}
|
|
32433
|
+
},
|
|
30092
32434
|
"className": {
|
|
30093
32435
|
"description": "Often used with CSS to style elements with common properties",
|
|
30094
32436
|
"required": false,
|
|
@@ -32416,6 +34758,66 @@
|
|
|
32416
34758
|
"raw": "MantineNumberSize"
|
|
32417
34759
|
}
|
|
32418
34760
|
},
|
|
34761
|
+
"persistence": {
|
|
34762
|
+
"description": "Used to allow user interactions in this component to be persisted when\nthe component - or the page - is refreshed. If `persisted` is truthy and\nhasn't changed from its previous value, a `value` that the user has\nchanged while using the app will keep that change, as long as\nthe new `value` also matches what was given originally.\nUsed in conjunction with `persistence_type`.",
|
|
34763
|
+
"required": true,
|
|
34764
|
+
"type": {
|
|
34765
|
+
"name": "union",
|
|
34766
|
+
"value": [
|
|
34767
|
+
{
|
|
34768
|
+
"name": "string",
|
|
34769
|
+
"raw": "string"
|
|
34770
|
+
},
|
|
34771
|
+
{
|
|
34772
|
+
"name": "number",
|
|
34773
|
+
"raw": "number"
|
|
34774
|
+
}
|
|
34775
|
+
],
|
|
34776
|
+
"raw": "string | number | boolean"
|
|
34777
|
+
}
|
|
34778
|
+
},
|
|
34779
|
+
"persisted_props": {
|
|
34780
|
+
"description": "Properties whose user interactions will persist after refreshing the\ncomponent or the page. Since only `value` is allowed this prop can\nnormally be ignored.",
|
|
34781
|
+
"required": false,
|
|
34782
|
+
"defaultValue": {
|
|
34783
|
+
"value": "[\"value\"]",
|
|
34784
|
+
"computed": false
|
|
34785
|
+
},
|
|
34786
|
+
"type": {
|
|
34787
|
+
"name": "arrayOf",
|
|
34788
|
+
"value": {
|
|
34789
|
+
"name": "string",
|
|
34790
|
+
"raw": "string"
|
|
34791
|
+
},
|
|
34792
|
+
"raw": "string[]"
|
|
34793
|
+
}
|
|
34794
|
+
},
|
|
34795
|
+
"persistence_type": {
|
|
34796
|
+
"description": "Where persisted user changes will be stored:\nmemory: only kept in memory, reset on page refresh.\nlocal: window.localStorage, data is kept after the browser quit.\nsession: window.sessionStorage, data is cleared once the browser quit.",
|
|
34797
|
+
"required": false,
|
|
34798
|
+
"defaultValue": {
|
|
34799
|
+
"value": "'local'",
|
|
34800
|
+
"computed": false
|
|
34801
|
+
},
|
|
34802
|
+
"type": {
|
|
34803
|
+
"name": "enum",
|
|
34804
|
+
"value": [
|
|
34805
|
+
{
|
|
34806
|
+
"value": "'local'",
|
|
34807
|
+
"computed": false
|
|
34808
|
+
},
|
|
34809
|
+
{
|
|
34810
|
+
"value": "'session'",
|
|
34811
|
+
"computed": false
|
|
34812
|
+
},
|
|
34813
|
+
{
|
|
34814
|
+
"value": "'memory'",
|
|
34815
|
+
"computed": false
|
|
34816
|
+
}
|
|
34817
|
+
],
|
|
34818
|
+
"raw": "\"local\" | \"session\" | \"memory\""
|
|
34819
|
+
}
|
|
34820
|
+
},
|
|
32419
34821
|
"transition": {
|
|
32420
34822
|
"description": "Dropdown appear/disappear transition",
|
|
32421
34823
|
"required": false,
|
|
@@ -32964,6 +35366,22 @@
|
|
|
32964
35366
|
"raw": "string"
|
|
32965
35367
|
}
|
|
32966
35368
|
},
|
|
35369
|
+
"name": {
|
|
35370
|
+
"description": "Name prop",
|
|
35371
|
+
"required": false,
|
|
35372
|
+
"type": {
|
|
35373
|
+
"name": "string",
|
|
35374
|
+
"raw": "string"
|
|
35375
|
+
}
|
|
35376
|
+
},
|
|
35377
|
+
"debounce": {
|
|
35378
|
+
"description": "Debounce time",
|
|
35379
|
+
"required": false,
|
|
35380
|
+
"type": {
|
|
35381
|
+
"name": "number",
|
|
35382
|
+
"raw": "number"
|
|
35383
|
+
}
|
|
35384
|
+
},
|
|
32967
35385
|
"label": {
|
|
32968
35386
|
"description": "Input label, displayed before input",
|
|
32969
35387
|
"required": false,
|
|
@@ -33309,6 +35727,66 @@
|
|
|
33309
35727
|
"raw": "MantineNumberSize"
|
|
33310
35728
|
}
|
|
33311
35729
|
},
|
|
35730
|
+
"persistence": {
|
|
35731
|
+
"description": "Used to allow user interactions in this component to be persisted when\nthe component - or the page - is refreshed. If `persisted` is truthy and\nhasn't changed from its previous value, a `value` that the user has\nchanged while using the app will keep that change, as long as\nthe new `value` also matches what was given originally.\nUsed in conjunction with `persistence_type`.",
|
|
35732
|
+
"required": true,
|
|
35733
|
+
"type": {
|
|
35734
|
+
"name": "union",
|
|
35735
|
+
"value": [
|
|
35736
|
+
{
|
|
35737
|
+
"name": "string",
|
|
35738
|
+
"raw": "string"
|
|
35739
|
+
},
|
|
35740
|
+
{
|
|
35741
|
+
"name": "number",
|
|
35742
|
+
"raw": "number"
|
|
35743
|
+
}
|
|
35744
|
+
],
|
|
35745
|
+
"raw": "string | number | boolean"
|
|
35746
|
+
}
|
|
35747
|
+
},
|
|
35748
|
+
"persisted_props": {
|
|
35749
|
+
"description": "Properties whose user interactions will persist after refreshing the\ncomponent or the page. Since only `value` is allowed this prop can\nnormally be ignored.",
|
|
35750
|
+
"required": false,
|
|
35751
|
+
"defaultValue": {
|
|
35752
|
+
"value": "[\"value\"]",
|
|
35753
|
+
"computed": false
|
|
35754
|
+
},
|
|
35755
|
+
"type": {
|
|
35756
|
+
"name": "arrayOf",
|
|
35757
|
+
"value": {
|
|
35758
|
+
"name": "string",
|
|
35759
|
+
"raw": "string"
|
|
35760
|
+
},
|
|
35761
|
+
"raw": "string[]"
|
|
35762
|
+
}
|
|
35763
|
+
},
|
|
35764
|
+
"persistence_type": {
|
|
35765
|
+
"description": "Where persisted user changes will be stored:\nmemory: only kept in memory, reset on page refresh.\nlocal: window.localStorage, data is kept after the browser quit.\nsession: window.sessionStorage, data is cleared once the browser quit.",
|
|
35766
|
+
"required": false,
|
|
35767
|
+
"defaultValue": {
|
|
35768
|
+
"value": "'local'",
|
|
35769
|
+
"computed": false
|
|
35770
|
+
},
|
|
35771
|
+
"type": {
|
|
35772
|
+
"name": "enum",
|
|
35773
|
+
"value": [
|
|
35774
|
+
{
|
|
35775
|
+
"value": "'local'",
|
|
35776
|
+
"computed": false
|
|
35777
|
+
},
|
|
35778
|
+
{
|
|
35779
|
+
"value": "'session'",
|
|
35780
|
+
"computed": false
|
|
35781
|
+
},
|
|
35782
|
+
{
|
|
35783
|
+
"value": "'memory'",
|
|
35784
|
+
"computed": false
|
|
35785
|
+
}
|
|
35786
|
+
],
|
|
35787
|
+
"raw": "\"local\" | \"session\" | \"memory\""
|
|
35788
|
+
}
|
|
35789
|
+
},
|
|
33312
35790
|
"transition": {
|
|
33313
35791
|
"description": "Dropdown appear/disappear transition",
|
|
33314
35792
|
"required": false,
|
|
@@ -33857,6 +36335,22 @@
|
|
|
33857
36335
|
"raw": "string"
|
|
33858
36336
|
}
|
|
33859
36337
|
},
|
|
36338
|
+
"name": {
|
|
36339
|
+
"description": "Name prop",
|
|
36340
|
+
"required": false,
|
|
36341
|
+
"type": {
|
|
36342
|
+
"name": "string",
|
|
36343
|
+
"raw": "string"
|
|
36344
|
+
}
|
|
36345
|
+
},
|
|
36346
|
+
"debounce": {
|
|
36347
|
+
"description": "Debounce time",
|
|
36348
|
+
"required": false,
|
|
36349
|
+
"type": {
|
|
36350
|
+
"name": "number",
|
|
36351
|
+
"raw": "number"
|
|
36352
|
+
}
|
|
36353
|
+
},
|
|
33860
36354
|
"label": {
|
|
33861
36355
|
"description": "Input label, displayed before input",
|
|
33862
36356
|
"required": false,
|
|
@@ -34114,6 +36608,22 @@
|
|
|
34114
36608
|
"raw": "boolean"
|
|
34115
36609
|
}
|
|
34116
36610
|
},
|
|
36611
|
+
"name": {
|
|
36612
|
+
"description": "Name prop",
|
|
36613
|
+
"required": false,
|
|
36614
|
+
"type": {
|
|
36615
|
+
"name": "string",
|
|
36616
|
+
"raw": "string"
|
|
36617
|
+
}
|
|
36618
|
+
},
|
|
36619
|
+
"debounce": {
|
|
36620
|
+
"description": "Debounce time",
|
|
36621
|
+
"required": false,
|
|
36622
|
+
"type": {
|
|
36623
|
+
"name": "number",
|
|
36624
|
+
"raw": "number"
|
|
36625
|
+
}
|
|
36626
|
+
},
|
|
34117
36627
|
"label": {
|
|
34118
36628
|
"description": "Input label, displayed before input",
|
|
34119
36629
|
"required": false,
|
|
@@ -34176,6 +36686,66 @@
|
|
|
34176
36686
|
"raw": "(\"label\" | \"description\" | \"error\" | \"input\")[]"
|
|
34177
36687
|
}
|
|
34178
36688
|
},
|
|
36689
|
+
"persistence": {
|
|
36690
|
+
"description": "Used to allow user interactions in this component to be persisted when\nthe component - or the page - is refreshed. If `persisted` is truthy and\nhasn't changed from its previous value, a `value` that the user has\nchanged while using the app will keep that change, as long as\nthe new `value` also matches what was given originally.\nUsed in conjunction with `persistence_type`.",
|
|
36691
|
+
"required": true,
|
|
36692
|
+
"type": {
|
|
36693
|
+
"name": "union",
|
|
36694
|
+
"value": [
|
|
36695
|
+
{
|
|
36696
|
+
"name": "string",
|
|
36697
|
+
"raw": "string"
|
|
36698
|
+
},
|
|
36699
|
+
{
|
|
36700
|
+
"name": "number",
|
|
36701
|
+
"raw": "number"
|
|
36702
|
+
}
|
|
36703
|
+
],
|
|
36704
|
+
"raw": "string | number | boolean"
|
|
36705
|
+
}
|
|
36706
|
+
},
|
|
36707
|
+
"persisted_props": {
|
|
36708
|
+
"description": "Properties whose user interactions will persist after refreshing the\ncomponent or the page. Since only `value` is allowed this prop can\nnormally be ignored.",
|
|
36709
|
+
"required": false,
|
|
36710
|
+
"defaultValue": {
|
|
36711
|
+
"value": "[\"value\"]",
|
|
36712
|
+
"computed": false
|
|
36713
|
+
},
|
|
36714
|
+
"type": {
|
|
36715
|
+
"name": "arrayOf",
|
|
36716
|
+
"value": {
|
|
36717
|
+
"name": "string",
|
|
36718
|
+
"raw": "string"
|
|
36719
|
+
},
|
|
36720
|
+
"raw": "string[]"
|
|
36721
|
+
}
|
|
36722
|
+
},
|
|
36723
|
+
"persistence_type": {
|
|
36724
|
+
"description": "Where persisted user changes will be stored:\nmemory: only kept in memory, reset on page refresh.\nlocal: window.localStorage, data is kept after the browser quit.\nsession: window.sessionStorage, data is cleared once the browser quit.",
|
|
36725
|
+
"required": false,
|
|
36726
|
+
"defaultValue": {
|
|
36727
|
+
"value": "'local'",
|
|
36728
|
+
"computed": false
|
|
36729
|
+
},
|
|
36730
|
+
"type": {
|
|
36731
|
+
"name": "enum",
|
|
36732
|
+
"value": [
|
|
36733
|
+
{
|
|
36734
|
+
"value": "'local'",
|
|
36735
|
+
"computed": false
|
|
36736
|
+
},
|
|
36737
|
+
{
|
|
36738
|
+
"value": "'session'",
|
|
36739
|
+
"computed": false
|
|
36740
|
+
},
|
|
36741
|
+
{
|
|
36742
|
+
"value": "'memory'",
|
|
36743
|
+
"computed": false
|
|
36744
|
+
}
|
|
36745
|
+
],
|
|
36746
|
+
"raw": "\"local\" | \"session\" | \"memory\""
|
|
36747
|
+
}
|
|
36748
|
+
},
|
|
34179
36749
|
"className": {
|
|
34180
36750
|
"description": "Often used with CSS to style elements with common properties",
|
|
34181
36751
|
"required": false,
|