vueless 0.0.534 → 0.0.536
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/composables/useAutoPosition.ts +0 -9
- package/package.json +1 -1
- package/types.ts +31 -0
- package/ui.button/types.ts +3 -22
- package/ui.button-link/types.ts +2 -22
- package/ui.dropdown-badge/UDropdownBadge.vue +16 -9
- package/ui.dropdown-badge/storybook/stories.ts +9 -6
- package/ui.dropdown-badge/types.ts +8 -27
- package/ui.dropdown-badge/useAttrs.ts +5 -5
- package/ui.dropdown-button/UDropdownButton.vue +32 -10
- package/ui.dropdown-button/storybook/stories.ts +15 -10
- package/ui.dropdown-button/types.ts +9 -28
- package/ui.dropdown-button/useAttrs.ts +6 -6
- package/ui.dropdown-link/UDropdownLink.vue +16 -9
- package/ui.dropdown-link/storybook/stories.ts +13 -10
- package/ui.dropdown-link/types.ts +8 -27
- package/ui.dropdown-link/useAttrs.ts +6 -7
- package/ui.dropdown-list/UDropdownList.vue +38 -26
- package/ui.dropdown-list/storybook/stories.ts +12 -10
- package/ui.dropdown-list/types.ts +28 -11
- package/ui.dropdown-list/useAttrs.ts +2 -2
- package/ui.dropdown-list/usePointer.ts +43 -46
- package/ui.form-checkbox/UCheckbox.vue +82 -187
- package/ui.form-checkbox/storybook/Docs.mdx +2 -2
- package/ui.form-checkbox/storybook/{stories.js → stories.ts} +14 -6
- package/ui.form-checkbox/types.ts +106 -0
- package/ui.form-checkbox/useAttrs.ts +35 -0
- package/ui.form-checkbox-group/UCheckboxGroup.vue +63 -137
- package/ui.form-checkbox-group/storybook/Docs.mdx +2 -2
- package/ui.form-checkbox-group/storybook/{stories.js → stories.ts} +19 -6
- package/ui.form-checkbox-group/types.ts +83 -0
- package/ui.form-checkbox-group/useAttrs.ts +18 -0
- package/ui.form-checkbox-multi-state/UCheckboxMultiState.vue +34 -97
- package/ui.form-checkbox-multi-state/storybook/Docs.mdx +2 -2
- package/ui.form-checkbox-multi-state/storybook/{stories.js → stories.ts} +16 -5
- package/ui.form-checkbox-multi-state/types.ts +71 -0
- package/ui.form-checkbox-multi-state/useAttrs.ts +41 -0
- package/ui.form-date-picker-range/useAttrs.ts +3 -3
- package/ui.form-select/storybook/stories.js +1 -0
- package/ui.image-avatar/types.ts +3 -22
- package/ui.image-icon/types.ts +2 -23
- package/ui.loader/types.ts +3 -23
- package/ui.loader-overlay/types.ts +3 -23
- package/ui.loader-progress/types.ts +3 -22
- package/ui.navigation-progress/types.ts +3 -22
- package/ui.other-dot/types.ts +3 -22
- package/ui.text-alert/types.ts +3 -22
- package/ui.text-badge/types.ts +3 -22
- package/ui.text-header/types.ts +3 -22
- package/ui.text-money/types.ts +3 -22
- package/web-types.json +227 -498
- package/ui.form-checkbox/useAttrs.js +0 -23
- package/ui.form-checkbox-group/useAttrs.js +0 -15
- package/ui.form-checkbox-multi-state/useAttrs.js +0 -28
- /package/ui.form-checkbox/{config.js → config.ts} +0 -0
- /package/ui.form-checkbox/{constants.js → constants.ts} +0 -0
- /package/ui.form-checkbox-group/{config.js → config.ts} +0 -0
- /package/ui.form-checkbox-group/{constants.js → constants.ts} +0 -0
- /package/ui.form-checkbox-multi-state/{config.js → config.ts} +0 -0
- /package/ui.form-checkbox-multi-state/{constants.js → constants.ts} +0 -0
package/web-types.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"framework": "vue",
|
|
3
3
|
"name": "vueless",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.536",
|
|
5
5
|
"contributions": {
|
|
6
6
|
"html": {
|
|
7
7
|
"description-markup": "markdown",
|
|
@@ -249,32 +249,9 @@
|
|
|
249
249
|
"name": "color",
|
|
250
250
|
"required": false,
|
|
251
251
|
"description": "Alert color.",
|
|
252
|
-
"enum": [
|
|
253
|
-
"brand",
|
|
254
|
-
"grayscale",
|
|
255
|
-
"gray",
|
|
256
|
-
"red",
|
|
257
|
-
"orange",
|
|
258
|
-
"amber",
|
|
259
|
-
"yellow",
|
|
260
|
-
"lime",
|
|
261
|
-
"green",
|
|
262
|
-
"emerald",
|
|
263
|
-
"teal",
|
|
264
|
-
"cyan",
|
|
265
|
-
"sky",
|
|
266
|
-
"blue",
|
|
267
|
-
"indigo",
|
|
268
|
-
"violet",
|
|
269
|
-
"purple",
|
|
270
|
-
"fuchsia",
|
|
271
|
-
"pink",
|
|
272
|
-
"rose",
|
|
273
|
-
"white"
|
|
274
|
-
],
|
|
275
252
|
"value": {
|
|
276
253
|
"kind": "expression",
|
|
277
|
-
"type": "
|
|
254
|
+
"type": "TSLiteralType"
|
|
278
255
|
},
|
|
279
256
|
"default": "brand"
|
|
280
257
|
},
|
|
@@ -451,32 +428,9 @@
|
|
|
451
428
|
"name": "color",
|
|
452
429
|
"required": false,
|
|
453
430
|
"description": "Avatar color.",
|
|
454
|
-
"enum": [
|
|
455
|
-
"brand",
|
|
456
|
-
"grayscale",
|
|
457
|
-
"gray",
|
|
458
|
-
"red",
|
|
459
|
-
"orange",
|
|
460
|
-
"amber",
|
|
461
|
-
"yellow",
|
|
462
|
-
"lime",
|
|
463
|
-
"green",
|
|
464
|
-
"emerald",
|
|
465
|
-
"teal",
|
|
466
|
-
"cyan",
|
|
467
|
-
"sky",
|
|
468
|
-
"blue",
|
|
469
|
-
"indigo",
|
|
470
|
-
"violet",
|
|
471
|
-
"purple",
|
|
472
|
-
"fuchsia",
|
|
473
|
-
"pink",
|
|
474
|
-
"rose",
|
|
475
|
-
"white"
|
|
476
|
-
],
|
|
477
431
|
"value": {
|
|
478
432
|
"kind": "expression",
|
|
479
|
-
"type": "
|
|
433
|
+
"type": "TSLiteralType"
|
|
480
434
|
},
|
|
481
435
|
"default": "grayscale"
|
|
482
436
|
},
|
|
@@ -620,32 +574,9 @@
|
|
|
620
574
|
"name": "color",
|
|
621
575
|
"required": false,
|
|
622
576
|
"description": "Badge color.",
|
|
623
|
-
"enum": [
|
|
624
|
-
"brand",
|
|
625
|
-
"grayscale",
|
|
626
|
-
"gray",
|
|
627
|
-
"red",
|
|
628
|
-
"orange",
|
|
629
|
-
"amber",
|
|
630
|
-
"yellow",
|
|
631
|
-
"lime",
|
|
632
|
-
"green",
|
|
633
|
-
"emerald",
|
|
634
|
-
"teal",
|
|
635
|
-
"cyan",
|
|
636
|
-
"sky",
|
|
637
|
-
"blue",
|
|
638
|
-
"indigo",
|
|
639
|
-
"violet",
|
|
640
|
-
"purple",
|
|
641
|
-
"fuchsia",
|
|
642
|
-
"pink",
|
|
643
|
-
"rose",
|
|
644
|
-
"white"
|
|
645
|
-
],
|
|
646
577
|
"value": {
|
|
647
578
|
"kind": "expression",
|
|
648
|
-
"type": "
|
|
579
|
+
"type": "TSLiteralType"
|
|
649
580
|
},
|
|
650
581
|
"default": "brand"
|
|
651
582
|
},
|
|
@@ -839,32 +770,9 @@
|
|
|
839
770
|
"name": "color",
|
|
840
771
|
"required": false,
|
|
841
772
|
"description": "Button color.",
|
|
842
|
-
"enum": [
|
|
843
|
-
"brand",
|
|
844
|
-
"grayscale",
|
|
845
|
-
"gray",
|
|
846
|
-
"red",
|
|
847
|
-
"orange",
|
|
848
|
-
"amber",
|
|
849
|
-
"yellow",
|
|
850
|
-
"lime",
|
|
851
|
-
"green",
|
|
852
|
-
"emerald",
|
|
853
|
-
"teal",
|
|
854
|
-
"cyan",
|
|
855
|
-
"sky",
|
|
856
|
-
"blue",
|
|
857
|
-
"indigo",
|
|
858
|
-
"violet",
|
|
859
|
-
"purple",
|
|
860
|
-
"fuchsia",
|
|
861
|
-
"pink",
|
|
862
|
-
"rose",
|
|
863
|
-
"white"
|
|
864
|
-
],
|
|
865
773
|
"value": {
|
|
866
774
|
"kind": "expression",
|
|
867
|
-
"type": "
|
|
775
|
+
"type": "TSLiteralType"
|
|
868
776
|
},
|
|
869
777
|
"default": "brand"
|
|
870
778
|
},
|
|
@@ -1818,42 +1726,74 @@
|
|
|
1818
1726
|
"attributes": [
|
|
1819
1727
|
{
|
|
1820
1728
|
"name": "modelValue",
|
|
1729
|
+
"required": false,
|
|
1821
1730
|
"description": "Checkbox value.",
|
|
1731
|
+
"enum": [
|
|
1732
|
+
"boolean",
|
|
1733
|
+
"string",
|
|
1734
|
+
"number",
|
|
1735
|
+
"UnknownArray",
|
|
1736
|
+
"UnknownObject"
|
|
1737
|
+
],
|
|
1822
1738
|
"value": {
|
|
1823
1739
|
"kind": "expression",
|
|
1824
|
-
"type": "
|
|
1825
|
-
}
|
|
1826
|
-
"default": "false"
|
|
1740
|
+
"type": "union"
|
|
1741
|
+
}
|
|
1827
1742
|
},
|
|
1828
1743
|
{
|
|
1829
1744
|
"name": "value",
|
|
1745
|
+
"required": false,
|
|
1830
1746
|
"description": "Native value attribute.",
|
|
1747
|
+
"enum": [
|
|
1748
|
+
"boolean",
|
|
1749
|
+
"string",
|
|
1750
|
+
"number",
|
|
1751
|
+
"UnknownArray",
|
|
1752
|
+
"UnknownObject"
|
|
1753
|
+
],
|
|
1831
1754
|
"value": {
|
|
1832
1755
|
"kind": "expression",
|
|
1833
|
-
"type": "
|
|
1756
|
+
"type": "union"
|
|
1834
1757
|
},
|
|
1835
1758
|
"default": "\"\""
|
|
1836
1759
|
},
|
|
1837
1760
|
{
|
|
1838
1761
|
"name": "trueValue",
|
|
1762
|
+
"required": false,
|
|
1839
1763
|
"description": "Own value for checkbox checked state.",
|
|
1764
|
+
"enum": [
|
|
1765
|
+
"boolean",
|
|
1766
|
+
"string",
|
|
1767
|
+
"number",
|
|
1768
|
+
"UnknownArray",
|
|
1769
|
+
"UnknownObject"
|
|
1770
|
+
],
|
|
1840
1771
|
"value": {
|
|
1841
1772
|
"kind": "expression",
|
|
1842
|
-
"type": "
|
|
1773
|
+
"type": "union"
|
|
1843
1774
|
},
|
|
1844
1775
|
"default": "true"
|
|
1845
1776
|
},
|
|
1846
1777
|
{
|
|
1847
1778
|
"name": "falseValue",
|
|
1779
|
+
"required": false,
|
|
1848
1780
|
"description": "Own value for checkbox unchecked state.",
|
|
1781
|
+
"enum": [
|
|
1782
|
+
"boolean",
|
|
1783
|
+
"string",
|
|
1784
|
+
"number",
|
|
1785
|
+
"UnknownArray",
|
|
1786
|
+
"UnknownObject"
|
|
1787
|
+
],
|
|
1849
1788
|
"value": {
|
|
1850
1789
|
"kind": "expression",
|
|
1851
|
-
"type": "
|
|
1790
|
+
"type": "union"
|
|
1852
1791
|
},
|
|
1853
1792
|
"default": "false"
|
|
1854
1793
|
},
|
|
1855
1794
|
{
|
|
1856
1795
|
"name": "name",
|
|
1796
|
+
"required": false,
|
|
1857
1797
|
"description": "Checkbox name.",
|
|
1858
1798
|
"value": {
|
|
1859
1799
|
"kind": "expression",
|
|
@@ -1863,33 +1803,34 @@
|
|
|
1863
1803
|
},
|
|
1864
1804
|
{
|
|
1865
1805
|
"name": "label",
|
|
1806
|
+
"required": false,
|
|
1866
1807
|
"description": "Checkbox label.",
|
|
1867
1808
|
"value": {
|
|
1868
1809
|
"kind": "expression",
|
|
1869
1810
|
"type": "string"
|
|
1870
|
-
}
|
|
1871
|
-
"default": "\"\""
|
|
1811
|
+
}
|
|
1872
1812
|
},
|
|
1873
1813
|
{
|
|
1874
1814
|
"name": "description",
|
|
1815
|
+
"required": false,
|
|
1875
1816
|
"description": "Checkbox label description.",
|
|
1876
1817
|
"value": {
|
|
1877
1818
|
"kind": "expression",
|
|
1878
1819
|
"type": "string"
|
|
1879
|
-
}
|
|
1880
|
-
"default": "\"\""
|
|
1820
|
+
}
|
|
1881
1821
|
},
|
|
1882
1822
|
{
|
|
1883
1823
|
"name": "error",
|
|
1824
|
+
"required": false,
|
|
1884
1825
|
"description": "Error message.",
|
|
1885
1826
|
"value": {
|
|
1886
1827
|
"kind": "expression",
|
|
1887
1828
|
"type": "string"
|
|
1888
|
-
}
|
|
1889
|
-
"default": "\"\""
|
|
1829
|
+
}
|
|
1890
1830
|
},
|
|
1891
1831
|
{
|
|
1892
1832
|
"name": "labelAlign",
|
|
1833
|
+
"required": false,
|
|
1893
1834
|
"description": "Label placement.",
|
|
1894
1835
|
"enum": [
|
|
1895
1836
|
"left",
|
|
@@ -1897,12 +1838,13 @@
|
|
|
1897
1838
|
],
|
|
1898
1839
|
"value": {
|
|
1899
1840
|
"kind": "expression",
|
|
1900
|
-
"type": "
|
|
1841
|
+
"type": "union"
|
|
1901
1842
|
},
|
|
1902
1843
|
"default": "right"
|
|
1903
1844
|
},
|
|
1904
1845
|
{
|
|
1905
1846
|
"name": "color",
|
|
1847
|
+
"required": false,
|
|
1906
1848
|
"description": "Checkbox color.",
|
|
1907
1849
|
"enum": [
|
|
1908
1850
|
"brand",
|
|
@@ -1927,12 +1869,13 @@
|
|
|
1927
1869
|
],
|
|
1928
1870
|
"value": {
|
|
1929
1871
|
"kind": "expression",
|
|
1930
|
-
"type": "
|
|
1872
|
+
"type": "union"
|
|
1931
1873
|
},
|
|
1932
1874
|
"default": "brand"
|
|
1933
1875
|
},
|
|
1934
1876
|
{
|
|
1935
1877
|
"name": "size",
|
|
1878
|
+
"required": false,
|
|
1936
1879
|
"description": "Checkbox size.",
|
|
1937
1880
|
"enum": [
|
|
1938
1881
|
"sm",
|
|
@@ -1941,12 +1884,13 @@
|
|
|
1941
1884
|
],
|
|
1942
1885
|
"value": {
|
|
1943
1886
|
"kind": "expression",
|
|
1944
|
-
"type": "
|
|
1887
|
+
"type": "union"
|
|
1945
1888
|
},
|
|
1946
1889
|
"default": "md"
|
|
1947
1890
|
},
|
|
1948
1891
|
{
|
|
1949
1892
|
"name": "disabled",
|
|
1893
|
+
"required": false,
|
|
1950
1894
|
"description": "Make checkbox disabled.",
|
|
1951
1895
|
"value": {
|
|
1952
1896
|
"kind": "expression",
|
|
@@ -1956,6 +1900,7 @@
|
|
|
1956
1900
|
},
|
|
1957
1901
|
{
|
|
1958
1902
|
"name": "partial",
|
|
1903
|
+
"required": false,
|
|
1959
1904
|
"description": "Make checkbox partially checked (change the checked tick to a minus).",
|
|
1960
1905
|
"value": {
|
|
1961
1906
|
"kind": "expression",
|
|
@@ -1965,24 +1910,28 @@
|
|
|
1965
1910
|
},
|
|
1966
1911
|
{
|
|
1967
1912
|
"name": "id",
|
|
1913
|
+
"required": false,
|
|
1968
1914
|
"description": "Unique element id.",
|
|
1969
1915
|
"value": {
|
|
1970
1916
|
"kind": "expression",
|
|
1971
1917
|
"type": "string"
|
|
1972
|
-
}
|
|
1973
|
-
"default": "\"\""
|
|
1918
|
+
}
|
|
1974
1919
|
},
|
|
1975
1920
|
{
|
|
1976
1921
|
"name": "config",
|
|
1922
|
+
"required": false,
|
|
1977
1923
|
"description": "Component config object.",
|
|
1924
|
+
"enum": [
|
|
1925
|
+
"TSTypeQuery"
|
|
1926
|
+
],
|
|
1978
1927
|
"value": {
|
|
1979
1928
|
"kind": "expression",
|
|
1980
|
-
"type": "
|
|
1981
|
-
}
|
|
1982
|
-
"default": "{}"
|
|
1929
|
+
"type": "Partial"
|
|
1930
|
+
}
|
|
1983
1931
|
},
|
|
1984
1932
|
{
|
|
1985
1933
|
"name": "dataTest",
|
|
1934
|
+
"required": false,
|
|
1986
1935
|
"description": "Data-test attribute for automated testing.",
|
|
1987
1936
|
"value": {
|
|
1988
1937
|
"kind": "expression",
|
|
@@ -2034,51 +1983,58 @@
|
|
|
2034
1983
|
"attributes": [
|
|
2035
1984
|
{
|
|
2036
1985
|
"name": "modelValue",
|
|
1986
|
+
"required": false,
|
|
2037
1987
|
"description": "Checkbox group value.",
|
|
1988
|
+
"enum": [
|
|
1989
|
+
"UnknownObject"
|
|
1990
|
+
],
|
|
2038
1991
|
"value": {
|
|
2039
1992
|
"kind": "expression",
|
|
2040
|
-
"type": "
|
|
2041
|
-
}
|
|
2042
|
-
"default": "[]"
|
|
1993
|
+
"type": "Array"
|
|
1994
|
+
}
|
|
2043
1995
|
},
|
|
2044
1996
|
{
|
|
2045
1997
|
"name": "options",
|
|
1998
|
+
"required": false,
|
|
2046
1999
|
"description": "Checkbox group options.",
|
|
2000
|
+
"enum": [
|
|
2001
|
+
"UCheckboxProps"
|
|
2002
|
+
],
|
|
2047
2003
|
"value": {
|
|
2048
2004
|
"kind": "expression",
|
|
2049
|
-
"type": "
|
|
2050
|
-
}
|
|
2051
|
-
"default": "[]"
|
|
2005
|
+
"type": "Array"
|
|
2006
|
+
}
|
|
2052
2007
|
},
|
|
2053
2008
|
{
|
|
2054
2009
|
"name": "label",
|
|
2010
|
+
"required": false,
|
|
2055
2011
|
"description": "Checkbox group label.",
|
|
2056
2012
|
"value": {
|
|
2057
2013
|
"kind": "expression",
|
|
2058
2014
|
"type": "string"
|
|
2059
|
-
}
|
|
2060
|
-
"default": "\"\""
|
|
2015
|
+
}
|
|
2061
2016
|
},
|
|
2062
2017
|
{
|
|
2063
2018
|
"name": "description",
|
|
2019
|
+
"required": false,
|
|
2064
2020
|
"description": "Checkbox group description.",
|
|
2065
2021
|
"value": {
|
|
2066
2022
|
"kind": "expression",
|
|
2067
2023
|
"type": "string"
|
|
2068
|
-
}
|
|
2069
|
-
"default": "\"\""
|
|
2024
|
+
}
|
|
2070
2025
|
},
|
|
2071
2026
|
{
|
|
2072
2027
|
"name": "error",
|
|
2028
|
+
"required": false,
|
|
2073
2029
|
"description": "Checkbox group error message.",
|
|
2074
2030
|
"value": {
|
|
2075
2031
|
"kind": "expression",
|
|
2076
2032
|
"type": "string"
|
|
2077
|
-
}
|
|
2078
|
-
"default": "\"\""
|
|
2033
|
+
}
|
|
2079
2034
|
},
|
|
2080
2035
|
{
|
|
2081
2036
|
"name": "size",
|
|
2037
|
+
"required": false,
|
|
2082
2038
|
"description": "Checkbox group size.",
|
|
2083
2039
|
"enum": [
|
|
2084
2040
|
"sm",
|
|
@@ -2087,12 +2043,13 @@
|
|
|
2087
2043
|
],
|
|
2088
2044
|
"value": {
|
|
2089
2045
|
"kind": "expression",
|
|
2090
|
-
"type": "
|
|
2046
|
+
"type": "union"
|
|
2091
2047
|
},
|
|
2092
2048
|
"default": "md"
|
|
2093
2049
|
},
|
|
2094
2050
|
{
|
|
2095
2051
|
"name": "color",
|
|
2052
|
+
"required": false,
|
|
2096
2053
|
"description": "Checkbox group color.",
|
|
2097
2054
|
"enum": [
|
|
2098
2055
|
"brand",
|
|
@@ -2118,12 +2075,13 @@
|
|
|
2118
2075
|
],
|
|
2119
2076
|
"value": {
|
|
2120
2077
|
"kind": "expression",
|
|
2121
|
-
"type": "
|
|
2078
|
+
"type": "union"
|
|
2122
2079
|
},
|
|
2123
2080
|
"default": "brand"
|
|
2124
2081
|
},
|
|
2125
2082
|
{
|
|
2126
2083
|
"name": "name",
|
|
2084
|
+
"required": false,
|
|
2127
2085
|
"description": "Name for each checkbox.",
|
|
2128
2086
|
"value": {
|
|
2129
2087
|
"kind": "expression",
|
|
@@ -2133,6 +2091,7 @@
|
|
|
2133
2091
|
},
|
|
2134
2092
|
{
|
|
2135
2093
|
"name": "disabled",
|
|
2094
|
+
"required": false,
|
|
2136
2095
|
"description": "Make checkbox disabled.",
|
|
2137
2096
|
"value": {
|
|
2138
2097
|
"kind": "expression",
|
|
@@ -2142,15 +2101,19 @@
|
|
|
2142
2101
|
},
|
|
2143
2102
|
{
|
|
2144
2103
|
"name": "config",
|
|
2104
|
+
"required": false,
|
|
2145
2105
|
"description": "Component config object.",
|
|
2106
|
+
"enum": [
|
|
2107
|
+
"TSTypeQuery"
|
|
2108
|
+
],
|
|
2146
2109
|
"value": {
|
|
2147
2110
|
"kind": "expression",
|
|
2148
|
-
"type": "
|
|
2149
|
-
}
|
|
2150
|
-
"default": "{}"
|
|
2111
|
+
"type": "Partial"
|
|
2112
|
+
}
|
|
2151
2113
|
},
|
|
2152
2114
|
{
|
|
2153
2115
|
"name": "dataTest",
|
|
2116
|
+
"required": false,
|
|
2154
2117
|
"description": "Data-test attribute for automated testing.",
|
|
2155
2118
|
"value": {
|
|
2156
2119
|
"kind": "expression",
|
|
@@ -2190,33 +2153,42 @@
|
|
|
2190
2153
|
"attributes": [
|
|
2191
2154
|
{
|
|
2192
2155
|
"name": "modelValue",
|
|
2156
|
+
"required": false,
|
|
2193
2157
|
"description": "Checkbox value.",
|
|
2158
|
+
"enum": [
|
|
2159
|
+
"boolean",
|
|
2160
|
+
"string",
|
|
2161
|
+
"number"
|
|
2162
|
+
],
|
|
2194
2163
|
"value": {
|
|
2195
2164
|
"kind": "expression",
|
|
2196
|
-
"type": "
|
|
2197
|
-
}
|
|
2198
|
-
"default": "\"\""
|
|
2165
|
+
"type": "union"
|
|
2166
|
+
}
|
|
2199
2167
|
},
|
|
2200
2168
|
{
|
|
2201
2169
|
"name": "options",
|
|
2170
|
+
"required": false,
|
|
2202
2171
|
"description": "Checkbox state options.",
|
|
2172
|
+
"enum": [
|
|
2173
|
+
"UnknownObject"
|
|
2174
|
+
],
|
|
2203
2175
|
"value": {
|
|
2204
2176
|
"kind": "expression",
|
|
2205
|
-
"type": "
|
|
2206
|
-
}
|
|
2207
|
-
"default": "[{ value: \"\", icon: \"\", label: \"\", description: \"\" }]"
|
|
2177
|
+
"type": "Array"
|
|
2178
|
+
}
|
|
2208
2179
|
},
|
|
2209
2180
|
{
|
|
2210
2181
|
"name": "name",
|
|
2182
|
+
"required": false,
|
|
2211
2183
|
"description": "Checkbox name.",
|
|
2212
2184
|
"value": {
|
|
2213
2185
|
"kind": "expression",
|
|
2214
2186
|
"type": "string"
|
|
2215
|
-
}
|
|
2216
|
-
"default": "\"\""
|
|
2187
|
+
}
|
|
2217
2188
|
},
|
|
2218
2189
|
{
|
|
2219
2190
|
"name": "size",
|
|
2191
|
+
"required": false,
|
|
2220
2192
|
"description": "Checkbox size.",
|
|
2221
2193
|
"enum": [
|
|
2222
2194
|
"sm",
|
|
@@ -2225,12 +2197,13 @@
|
|
|
2225
2197
|
],
|
|
2226
2198
|
"value": {
|
|
2227
2199
|
"kind": "expression",
|
|
2228
|
-
"type": "
|
|
2200
|
+
"type": "union"
|
|
2229
2201
|
},
|
|
2230
2202
|
"default": "md"
|
|
2231
2203
|
},
|
|
2232
2204
|
{
|
|
2233
2205
|
"name": "color",
|
|
2206
|
+
"required": false,
|
|
2234
2207
|
"description": "Checkbox color.",
|
|
2235
2208
|
"enum": [
|
|
2236
2209
|
"brand",
|
|
@@ -2255,12 +2228,13 @@
|
|
|
2255
2228
|
],
|
|
2256
2229
|
"value": {
|
|
2257
2230
|
"kind": "expression",
|
|
2258
|
-
"type": "
|
|
2231
|
+
"type": "union"
|
|
2259
2232
|
},
|
|
2260
2233
|
"default": "brand"
|
|
2261
2234
|
},
|
|
2262
2235
|
{
|
|
2263
2236
|
"name": "placement",
|
|
2237
|
+
"required": false,
|
|
2264
2238
|
"description": "Label placement.",
|
|
2265
2239
|
"enum": [
|
|
2266
2240
|
"left",
|
|
@@ -2268,12 +2242,13 @@
|
|
|
2268
2242
|
],
|
|
2269
2243
|
"value": {
|
|
2270
2244
|
"kind": "expression",
|
|
2271
|
-
"type": "
|
|
2245
|
+
"type": "union"
|
|
2272
2246
|
},
|
|
2273
2247
|
"default": "left"
|
|
2274
2248
|
},
|
|
2275
2249
|
{
|
|
2276
2250
|
"name": "disabled",
|
|
2251
|
+
"required": false,
|
|
2277
2252
|
"description": "Make checkbox disabled.",
|
|
2278
2253
|
"value": {
|
|
2279
2254
|
"kind": "expression",
|
|
@@ -2283,15 +2258,19 @@
|
|
|
2283
2258
|
},
|
|
2284
2259
|
{
|
|
2285
2260
|
"name": "config",
|
|
2261
|
+
"required": false,
|
|
2286
2262
|
"description": "Component config object.",
|
|
2263
|
+
"enum": [
|
|
2264
|
+
"TSTypeQuery"
|
|
2265
|
+
],
|
|
2287
2266
|
"value": {
|
|
2288
2267
|
"kind": "expression",
|
|
2289
|
-
"type": "
|
|
2290
|
-
}
|
|
2291
|
-
"default": "{}"
|
|
2268
|
+
"type": "Partial"
|
|
2269
|
+
}
|
|
2292
2270
|
},
|
|
2293
2271
|
{
|
|
2294
2272
|
"name": "dataTest",
|
|
2273
|
+
"required": false,
|
|
2295
2274
|
"description": "Data-test attribute for automated testing.",
|
|
2296
2275
|
"value": {
|
|
2297
2276
|
"kind": "expression",
|
|
@@ -3838,32 +3817,9 @@
|
|
|
3838
3817
|
"name": "color",
|
|
3839
3818
|
"required": false,
|
|
3840
3819
|
"description": "Dot color.",
|
|
3841
|
-
"enum": [
|
|
3842
|
-
"brand",
|
|
3843
|
-
"grayscale",
|
|
3844
|
-
"gray",
|
|
3845
|
-
"red",
|
|
3846
|
-
"orange",
|
|
3847
|
-
"amber",
|
|
3848
|
-
"yellow",
|
|
3849
|
-
"lime",
|
|
3850
|
-
"green",
|
|
3851
|
-
"emerald",
|
|
3852
|
-
"teal",
|
|
3853
|
-
"cyan",
|
|
3854
|
-
"sky",
|
|
3855
|
-
"blue",
|
|
3856
|
-
"indigo",
|
|
3857
|
-
"violet",
|
|
3858
|
-
"purple",
|
|
3859
|
-
"fuchsia",
|
|
3860
|
-
"pink",
|
|
3861
|
-
"rose",
|
|
3862
|
-
"white"
|
|
3863
|
-
],
|
|
3864
3820
|
"value": {
|
|
3865
3821
|
"kind": "expression",
|
|
3866
|
-
"type": "
|
|
3822
|
+
"type": "TSLiteralType"
|
|
3867
3823
|
},
|
|
3868
3824
|
"default": "brand"
|
|
3869
3825
|
},
|
|
@@ -3923,19 +3879,21 @@
|
|
|
3923
3879
|
"value": {
|
|
3924
3880
|
"kind": "expression",
|
|
3925
3881
|
"type": "string"
|
|
3926
|
-
}
|
|
3882
|
+
},
|
|
3883
|
+
"default": "getDefault<UDropdownBadgeProps>(defaultConfig, UDropdownBadge).label"
|
|
3927
3884
|
},
|
|
3928
3885
|
{
|
|
3929
3886
|
"name": "options",
|
|
3930
3887
|
"required": false,
|
|
3931
3888
|
"description": "Options list.",
|
|
3932
3889
|
"enum": [
|
|
3933
|
-
"
|
|
3890
|
+
"Option"
|
|
3934
3891
|
],
|
|
3935
3892
|
"value": {
|
|
3936
3893
|
"kind": "expression",
|
|
3937
3894
|
"type": "Array"
|
|
3938
|
-
}
|
|
3895
|
+
},
|
|
3896
|
+
"default": "() => []"
|
|
3939
3897
|
},
|
|
3940
3898
|
{
|
|
3941
3899
|
"name": "labelKey",
|
|
@@ -3966,32 +3924,9 @@
|
|
|
3966
3924
|
"name": "color",
|
|
3967
3925
|
"required": false,
|
|
3968
3926
|
"description": "Badge color.",
|
|
3969
|
-
"enum": [
|
|
3970
|
-
"brand",
|
|
3971
|
-
"grayscale",
|
|
3972
|
-
"gray",
|
|
3973
|
-
"red",
|
|
3974
|
-
"orange",
|
|
3975
|
-
"amber",
|
|
3976
|
-
"yellow",
|
|
3977
|
-
"lime",
|
|
3978
|
-
"green",
|
|
3979
|
-
"emerald",
|
|
3980
|
-
"teal",
|
|
3981
|
-
"cyan",
|
|
3982
|
-
"sky",
|
|
3983
|
-
"blue",
|
|
3984
|
-
"indigo",
|
|
3985
|
-
"violet",
|
|
3986
|
-
"purple",
|
|
3987
|
-
"fuchsia",
|
|
3988
|
-
"pink",
|
|
3989
|
-
"rose",
|
|
3990
|
-
"white"
|
|
3991
|
-
],
|
|
3992
3927
|
"value": {
|
|
3993
3928
|
"kind": "expression",
|
|
3994
|
-
"type": "
|
|
3929
|
+
"type": "TSLiteralType"
|
|
3995
3930
|
},
|
|
3996
3931
|
"default": "brand"
|
|
3997
3932
|
},
|
|
@@ -4035,8 +3970,8 @@
|
|
|
4035
3970
|
"required": false,
|
|
4036
3971
|
"description": "The position of dropdown list on the y-axis.",
|
|
4037
3972
|
"enum": [
|
|
4038
|
-
"
|
|
4039
|
-
"
|
|
3973
|
+
"TSTypeReference",
|
|
3974
|
+
"TSTypeReference"
|
|
4040
3975
|
],
|
|
4041
3976
|
"value": {
|
|
4042
3977
|
"kind": "expression",
|
|
@@ -4049,8 +3984,8 @@
|
|
|
4049
3984
|
"required": false,
|
|
4050
3985
|
"description": "The position of dropdown list on the x-axis.",
|
|
4051
3986
|
"enum": [
|
|
4052
|
-
"
|
|
4053
|
-
"
|
|
3987
|
+
"TSTypeReference",
|
|
3988
|
+
"TSTypeReference"
|
|
4054
3989
|
],
|
|
4055
3990
|
"value": {
|
|
4056
3991
|
"kind": "expression",
|
|
@@ -4065,19 +4000,18 @@
|
|
|
4065
4000
|
"value": {
|
|
4066
4001
|
"kind": "expression",
|
|
4067
4002
|
"type": "string"
|
|
4068
|
-
}
|
|
4003
|
+
},
|
|
4004
|
+
"default": "\"\""
|
|
4069
4005
|
},
|
|
4070
4006
|
{
|
|
4071
4007
|
"name": "config",
|
|
4072
4008
|
"required": false,
|
|
4073
4009
|
"description": "Component config object.",
|
|
4074
|
-
"enum": [
|
|
4075
|
-
"TSTypeQuery"
|
|
4076
|
-
],
|
|
4077
4010
|
"value": {
|
|
4078
4011
|
"kind": "expression",
|
|
4079
|
-
"type": "
|
|
4080
|
-
}
|
|
4012
|
+
"type": "Config"
|
|
4013
|
+
},
|
|
4014
|
+
"default": "() => ({})"
|
|
4081
4015
|
},
|
|
4082
4016
|
{
|
|
4083
4017
|
"name": "dataTest",
|
|
@@ -4158,19 +4092,21 @@
|
|
|
4158
4092
|
"value": {
|
|
4159
4093
|
"kind": "expression",
|
|
4160
4094
|
"type": "string"
|
|
4161
|
-
}
|
|
4095
|
+
},
|
|
4096
|
+
"default": "getDefault<UDropdownButtonProps>(defaultConfig, UDropdownButton).label"
|
|
4162
4097
|
},
|
|
4163
4098
|
{
|
|
4164
4099
|
"name": "options",
|
|
4165
4100
|
"required": false,
|
|
4166
4101
|
"description": "Options list.",
|
|
4167
4102
|
"enum": [
|
|
4168
|
-
"
|
|
4103
|
+
"Option"
|
|
4169
4104
|
],
|
|
4170
4105
|
"value": {
|
|
4171
4106
|
"kind": "expression",
|
|
4172
4107
|
"type": "Array"
|
|
4173
|
-
}
|
|
4108
|
+
},
|
|
4109
|
+
"default": "() => []"
|
|
4174
4110
|
},
|
|
4175
4111
|
{
|
|
4176
4112
|
"name": "labelKey",
|
|
@@ -4211,32 +4147,9 @@
|
|
|
4211
4147
|
"name": "color",
|
|
4212
4148
|
"required": false,
|
|
4213
4149
|
"description": "Button color.",
|
|
4214
|
-
"enum": [
|
|
4215
|
-
"brand",
|
|
4216
|
-
"grayscale",
|
|
4217
|
-
"gray",
|
|
4218
|
-
"red",
|
|
4219
|
-
"orange",
|
|
4220
|
-
"amber",
|
|
4221
|
-
"yellow",
|
|
4222
|
-
"lime",
|
|
4223
|
-
"green",
|
|
4224
|
-
"emerald",
|
|
4225
|
-
"teal",
|
|
4226
|
-
"cyan",
|
|
4227
|
-
"sky",
|
|
4228
|
-
"blue",
|
|
4229
|
-
"indigo",
|
|
4230
|
-
"violet",
|
|
4231
|
-
"purple",
|
|
4232
|
-
"fuchsia",
|
|
4233
|
-
"pink",
|
|
4234
|
-
"rose",
|
|
4235
|
-
"white"
|
|
4236
|
-
],
|
|
4237
4150
|
"value": {
|
|
4238
4151
|
"kind": "expression",
|
|
4239
|
-
"type": "
|
|
4152
|
+
"type": "TSLiteralType"
|
|
4240
4153
|
},
|
|
4241
4154
|
"default": "brand"
|
|
4242
4155
|
},
|
|
@@ -4281,7 +4194,7 @@
|
|
|
4281
4194
|
{
|
|
4282
4195
|
"name": "disabled",
|
|
4283
4196
|
"required": false,
|
|
4284
|
-
"description": "Disable the
|
|
4197
|
+
"description": "Disable the button.",
|
|
4285
4198
|
"value": {
|
|
4286
4199
|
"kind": "expression",
|
|
4287
4200
|
"type": "boolean"
|
|
@@ -4303,8 +4216,8 @@
|
|
|
4303
4216
|
"required": false,
|
|
4304
4217
|
"description": "The position of dropdown list on the y-axis.",
|
|
4305
4218
|
"enum": [
|
|
4306
|
-
"
|
|
4307
|
-
"
|
|
4219
|
+
"TSTypeReference",
|
|
4220
|
+
"TSTypeReference"
|
|
4308
4221
|
],
|
|
4309
4222
|
"value": {
|
|
4310
4223
|
"kind": "expression",
|
|
@@ -4317,8 +4230,8 @@
|
|
|
4317
4230
|
"required": false,
|
|
4318
4231
|
"description": "The position of dropdown list on the x-axis.",
|
|
4319
4232
|
"enum": [
|
|
4320
|
-
"
|
|
4321
|
-
"
|
|
4233
|
+
"TSTypeReference",
|
|
4234
|
+
"TSTypeReference"
|
|
4322
4235
|
],
|
|
4323
4236
|
"value": {
|
|
4324
4237
|
"kind": "expression",
|
|
@@ -4333,19 +4246,18 @@
|
|
|
4333
4246
|
"value": {
|
|
4334
4247
|
"kind": "expression",
|
|
4335
4248
|
"type": "string"
|
|
4336
|
-
}
|
|
4249
|
+
},
|
|
4250
|
+
"default": "\"\""
|
|
4337
4251
|
},
|
|
4338
4252
|
{
|
|
4339
4253
|
"name": "config",
|
|
4340
4254
|
"required": false,
|
|
4341
4255
|
"description": "Component config object.",
|
|
4342
|
-
"enum": [
|
|
4343
|
-
"TSTypeQuery"
|
|
4344
|
-
],
|
|
4345
4256
|
"value": {
|
|
4346
4257
|
"kind": "expression",
|
|
4347
|
-
"type": "
|
|
4348
|
-
}
|
|
4258
|
+
"type": "Config"
|
|
4259
|
+
},
|
|
4260
|
+
"default": "() => ({})"
|
|
4349
4261
|
},
|
|
4350
4262
|
{
|
|
4351
4263
|
"name": "dataTest",
|
|
@@ -4427,19 +4339,21 @@
|
|
|
4427
4339
|
"value": {
|
|
4428
4340
|
"kind": "expression",
|
|
4429
4341
|
"type": "string"
|
|
4430
|
-
}
|
|
4342
|
+
},
|
|
4343
|
+
"default": "getDefault<UDropdownLinkProps>(defaultConfig, UDropdownLink).label"
|
|
4431
4344
|
},
|
|
4432
4345
|
{
|
|
4433
4346
|
"name": "options",
|
|
4434
4347
|
"required": false,
|
|
4435
4348
|
"description": "Options list.",
|
|
4436
4349
|
"enum": [
|
|
4437
|
-
"
|
|
4350
|
+
"Option"
|
|
4438
4351
|
],
|
|
4439
4352
|
"value": {
|
|
4440
4353
|
"kind": "expression",
|
|
4441
4354
|
"type": "Array"
|
|
4442
|
-
}
|
|
4355
|
+
},
|
|
4356
|
+
"default": "() => []"
|
|
4443
4357
|
},
|
|
4444
4358
|
{
|
|
4445
4359
|
"name": "labelKey",
|
|
@@ -4447,40 +4361,17 @@
|
|
|
4447
4361
|
"description": "Label key in the item object of options.",
|
|
4448
4362
|
"value": {
|
|
4449
4363
|
"kind": "expression",
|
|
4450
|
-
"type": "string"
|
|
4451
|
-
},
|
|
4452
|
-
"default": "label"
|
|
4453
|
-
},
|
|
4454
|
-
{
|
|
4455
|
-
"name": "color",
|
|
4456
|
-
"required": false,
|
|
4457
|
-
"description": "Link color.",
|
|
4458
|
-
"enum": [
|
|
4459
|
-
"brand",
|
|
4460
|
-
"grayscale",
|
|
4461
|
-
"gray",
|
|
4462
|
-
"red",
|
|
4463
|
-
"orange",
|
|
4464
|
-
"amber",
|
|
4465
|
-
"yellow",
|
|
4466
|
-
"lime",
|
|
4467
|
-
"green",
|
|
4468
|
-
"emerald",
|
|
4469
|
-
"teal",
|
|
4470
|
-
"cyan",
|
|
4471
|
-
"sky",
|
|
4472
|
-
"blue",
|
|
4473
|
-
"indigo",
|
|
4474
|
-
"violet",
|
|
4475
|
-
"purple",
|
|
4476
|
-
"fuchsia",
|
|
4477
|
-
"pink",
|
|
4478
|
-
"rose",
|
|
4479
|
-
"white"
|
|
4480
|
-
],
|
|
4364
|
+
"type": "string"
|
|
4365
|
+
},
|
|
4366
|
+
"default": "label"
|
|
4367
|
+
},
|
|
4368
|
+
{
|
|
4369
|
+
"name": "color",
|
|
4370
|
+
"required": false,
|
|
4371
|
+
"description": "Link color.",
|
|
4481
4372
|
"value": {
|
|
4482
4373
|
"kind": "expression",
|
|
4483
|
-
"type": "
|
|
4374
|
+
"type": "TSLiteralType"
|
|
4484
4375
|
},
|
|
4485
4376
|
"default": "brand"
|
|
4486
4377
|
},
|
|
@@ -4553,8 +4444,8 @@
|
|
|
4553
4444
|
"required": false,
|
|
4554
4445
|
"description": "The position of dropdown list on the y-axis.",
|
|
4555
4446
|
"enum": [
|
|
4556
|
-
"
|
|
4557
|
-
"
|
|
4447
|
+
"TSTypeReference",
|
|
4448
|
+
"TSTypeReference"
|
|
4558
4449
|
],
|
|
4559
4450
|
"value": {
|
|
4560
4451
|
"kind": "expression",
|
|
@@ -4567,8 +4458,8 @@
|
|
|
4567
4458
|
"required": false,
|
|
4568
4459
|
"description": "The position of dropdown list on the x-axis.",
|
|
4569
4460
|
"enum": [
|
|
4570
|
-
"
|
|
4571
|
-
"
|
|
4461
|
+
"TSTypeReference",
|
|
4462
|
+
"TSTypeReference"
|
|
4572
4463
|
],
|
|
4573
4464
|
"value": {
|
|
4574
4465
|
"kind": "expression",
|
|
@@ -4583,19 +4474,18 @@
|
|
|
4583
4474
|
"value": {
|
|
4584
4475
|
"kind": "expression",
|
|
4585
4476
|
"type": "string"
|
|
4586
|
-
}
|
|
4477
|
+
},
|
|
4478
|
+
"default": "\"\""
|
|
4587
4479
|
},
|
|
4588
4480
|
{
|
|
4589
4481
|
"name": "config",
|
|
4590
4482
|
"required": false,
|
|
4591
4483
|
"description": "Component config object.",
|
|
4592
|
-
"enum": [
|
|
4593
|
-
"TSTypeQuery"
|
|
4594
|
-
],
|
|
4595
4484
|
"value": {
|
|
4596
4485
|
"kind": "expression",
|
|
4597
|
-
"type": "
|
|
4598
|
-
}
|
|
4486
|
+
"type": "Config"
|
|
4487
|
+
},
|
|
4488
|
+
"default": "() => ({})"
|
|
4599
4489
|
},
|
|
4600
4490
|
{
|
|
4601
4491
|
"name": "dataTest",
|
|
@@ -4673,14 +4563,15 @@
|
|
|
4673
4563
|
{
|
|
4674
4564
|
"name": "options",
|
|
4675
4565
|
"required": false,
|
|
4676
|
-
"description": "List
|
|
4566
|
+
"description": "List options.",
|
|
4677
4567
|
"enum": [
|
|
4678
|
-
"
|
|
4568
|
+
"Option"
|
|
4679
4569
|
],
|
|
4680
4570
|
"value": {
|
|
4681
4571
|
"kind": "expression",
|
|
4682
4572
|
"type": "Array"
|
|
4683
|
-
}
|
|
4573
|
+
},
|
|
4574
|
+
"default": "() => []"
|
|
4684
4575
|
},
|
|
4685
4576
|
{
|
|
4686
4577
|
"name": "labelKey",
|
|
@@ -4712,16 +4603,6 @@
|
|
|
4712
4603
|
},
|
|
4713
4604
|
"default": "false"
|
|
4714
4605
|
},
|
|
4715
|
-
{
|
|
4716
|
-
"name": "disabled",
|
|
4717
|
-
"required": false,
|
|
4718
|
-
"description": "Disable the list.",
|
|
4719
|
-
"value": {
|
|
4720
|
-
"kind": "expression",
|
|
4721
|
-
"type": "boolean"
|
|
4722
|
-
},
|
|
4723
|
-
"default": "false"
|
|
4724
|
-
},
|
|
4725
4606
|
{
|
|
4726
4607
|
"name": "size",
|
|
4727
4608
|
"required": false,
|
|
@@ -4741,11 +4622,25 @@
|
|
|
4741
4622
|
"name": "visibleOptions",
|
|
4742
4623
|
"required": false,
|
|
4743
4624
|
"description": "Number of options to show without a scroll.",
|
|
4625
|
+
"enum": [
|
|
4626
|
+
"undefined",
|
|
4627
|
+
"number"
|
|
4628
|
+
],
|
|
4744
4629
|
"value": {
|
|
4745
4630
|
"kind": "expression",
|
|
4746
|
-
"type": "
|
|
4631
|
+
"type": "union"
|
|
4747
4632
|
}
|
|
4748
4633
|
},
|
|
4634
|
+
{
|
|
4635
|
+
"name": "disabled",
|
|
4636
|
+
"required": false,
|
|
4637
|
+
"description": "Disable the list.",
|
|
4638
|
+
"value": {
|
|
4639
|
+
"kind": "expression",
|
|
4640
|
+
"type": "boolean"
|
|
4641
|
+
},
|
|
4642
|
+
"default": "false"
|
|
4643
|
+
},
|
|
4749
4644
|
{
|
|
4750
4645
|
"name": "id",
|
|
4751
4646
|
"required": false,
|
|
@@ -4753,19 +4648,28 @@
|
|
|
4753
4648
|
"value": {
|
|
4754
4649
|
"kind": "expression",
|
|
4755
4650
|
"type": "string"
|
|
4756
|
-
}
|
|
4651
|
+
},
|
|
4652
|
+
"default": "\"\""
|
|
4757
4653
|
},
|
|
4758
4654
|
{
|
|
4759
4655
|
"name": "config",
|
|
4760
4656
|
"required": false,
|
|
4761
4657
|
"description": "Component config object.",
|
|
4762
|
-
"enum": [
|
|
4763
|
-
"TSTypeQuery"
|
|
4764
|
-
],
|
|
4765
4658
|
"value": {
|
|
4766
4659
|
"kind": "expression",
|
|
4767
|
-
"type": "
|
|
4768
|
-
}
|
|
4660
|
+
"type": "Config"
|
|
4661
|
+
},
|
|
4662
|
+
"default": "() => ({})"
|
|
4663
|
+
},
|
|
4664
|
+
{
|
|
4665
|
+
"name": "dataTest",
|
|
4666
|
+
"required": false,
|
|
4667
|
+
"description": "Data-test attribute for automated testing.",
|
|
4668
|
+
"value": {
|
|
4669
|
+
"kind": "expression",
|
|
4670
|
+
"type": "string"
|
|
4671
|
+
},
|
|
4672
|
+
"default": "\"\""
|
|
4769
4673
|
}
|
|
4770
4674
|
],
|
|
4771
4675
|
"events": [
|
|
@@ -5399,32 +5303,9 @@
|
|
|
5399
5303
|
"name": "color",
|
|
5400
5304
|
"required": false,
|
|
5401
5305
|
"description": "Header color.",
|
|
5402
|
-
"enum": [
|
|
5403
|
-
"brand",
|
|
5404
|
-
"grayscale",
|
|
5405
|
-
"gray",
|
|
5406
|
-
"red",
|
|
5407
|
-
"orange",
|
|
5408
|
-
"amber",
|
|
5409
|
-
"yellow",
|
|
5410
|
-
"lime",
|
|
5411
|
-
"green",
|
|
5412
|
-
"emerald",
|
|
5413
|
-
"teal",
|
|
5414
|
-
"cyan",
|
|
5415
|
-
"sky",
|
|
5416
|
-
"blue",
|
|
5417
|
-
"indigo",
|
|
5418
|
-
"violet",
|
|
5419
|
-
"purple",
|
|
5420
|
-
"fuchsia",
|
|
5421
|
-
"pink",
|
|
5422
|
-
"rose",
|
|
5423
|
-
"white"
|
|
5424
|
-
],
|
|
5425
5306
|
"value": {
|
|
5426
5307
|
"kind": "expression",
|
|
5427
|
-
"type": "
|
|
5308
|
+
"type": "TSLiteralType"
|
|
5428
5309
|
},
|
|
5429
5310
|
"default": "grayscale"
|
|
5430
5311
|
},
|
|
@@ -5518,28 +5399,8 @@
|
|
|
5518
5399
|
"required": false,
|
|
5519
5400
|
"description": "Icon color.",
|
|
5520
5401
|
"enum": [
|
|
5521
|
-
"
|
|
5522
|
-
"
|
|
5523
|
-
"gray",
|
|
5524
|
-
"red",
|
|
5525
|
-
"orange",
|
|
5526
|
-
"amber",
|
|
5527
|
-
"yellow",
|
|
5528
|
-
"lime",
|
|
5529
|
-
"green",
|
|
5530
|
-
"emerald",
|
|
5531
|
-
"teal",
|
|
5532
|
-
"cyan",
|
|
5533
|
-
"sky",
|
|
5534
|
-
"blue",
|
|
5535
|
-
"indigo",
|
|
5536
|
-
"violet",
|
|
5537
|
-
"purple",
|
|
5538
|
-
"fuchsia",
|
|
5539
|
-
"pink",
|
|
5540
|
-
"rose",
|
|
5541
|
-
"black",
|
|
5542
|
-
"white"
|
|
5402
|
+
"TSLiteralType",
|
|
5403
|
+
"black"
|
|
5543
5404
|
],
|
|
5544
5405
|
"value": {
|
|
5545
5406
|
"kind": "expression",
|
|
@@ -7205,32 +7066,9 @@
|
|
|
7205
7066
|
"name": "color",
|
|
7206
7067
|
"required": false,
|
|
7207
7068
|
"description": "Link color.",
|
|
7208
|
-
"enum": [
|
|
7209
|
-
"brand",
|
|
7210
|
-
"grayscale",
|
|
7211
|
-
"gray",
|
|
7212
|
-
"red",
|
|
7213
|
-
"orange",
|
|
7214
|
-
"amber",
|
|
7215
|
-
"yellow",
|
|
7216
|
-
"lime",
|
|
7217
|
-
"green",
|
|
7218
|
-
"emerald",
|
|
7219
|
-
"teal",
|
|
7220
|
-
"cyan",
|
|
7221
|
-
"sky",
|
|
7222
|
-
"blue",
|
|
7223
|
-
"indigo",
|
|
7224
|
-
"violet",
|
|
7225
|
-
"purple",
|
|
7226
|
-
"fuchsia",
|
|
7227
|
-
"pink",
|
|
7228
|
-
"rose",
|
|
7229
|
-
"white"
|
|
7230
|
-
],
|
|
7231
7069
|
"value": {
|
|
7232
7070
|
"kind": "expression",
|
|
7233
|
-
"type": "
|
|
7071
|
+
"type": "TSLiteralType"
|
|
7234
7072
|
},
|
|
7235
7073
|
"default": "brand"
|
|
7236
7074
|
},
|
|
@@ -7472,28 +7310,8 @@
|
|
|
7472
7310
|
"required": false,
|
|
7473
7311
|
"description": "Loader color.",
|
|
7474
7312
|
"enum": [
|
|
7475
|
-
"
|
|
7476
|
-
"
|
|
7477
|
-
"gray",
|
|
7478
|
-
"red",
|
|
7479
|
-
"orange",
|
|
7480
|
-
"amber",
|
|
7481
|
-
"yellow",
|
|
7482
|
-
"lime",
|
|
7483
|
-
"green",
|
|
7484
|
-
"emerald",
|
|
7485
|
-
"teal",
|
|
7486
|
-
"cyan",
|
|
7487
|
-
"sky",
|
|
7488
|
-
"blue",
|
|
7489
|
-
"indigo",
|
|
7490
|
-
"violet",
|
|
7491
|
-
"purple",
|
|
7492
|
-
"fuchsia",
|
|
7493
|
-
"pink",
|
|
7494
|
-
"rose",
|
|
7495
|
-
"black",
|
|
7496
|
-
"white"
|
|
7313
|
+
"TSLiteralType",
|
|
7314
|
+
"black"
|
|
7497
7315
|
],
|
|
7498
7316
|
"value": {
|
|
7499
7317
|
"kind": "expression",
|
|
@@ -7558,28 +7376,8 @@
|
|
|
7558
7376
|
"required": false,
|
|
7559
7377
|
"description": "Loader color.",
|
|
7560
7378
|
"enum": [
|
|
7561
|
-
"
|
|
7562
|
-
"
|
|
7563
|
-
"gray",
|
|
7564
|
-
"red",
|
|
7565
|
-
"orange",
|
|
7566
|
-
"amber",
|
|
7567
|
-
"yellow",
|
|
7568
|
-
"lime",
|
|
7569
|
-
"green",
|
|
7570
|
-
"emerald",
|
|
7571
|
-
"teal",
|
|
7572
|
-
"cyan",
|
|
7573
|
-
"sky",
|
|
7574
|
-
"blue",
|
|
7575
|
-
"indigo",
|
|
7576
|
-
"violet",
|
|
7577
|
-
"purple",
|
|
7578
|
-
"fuchsia",
|
|
7579
|
-
"pink",
|
|
7580
|
-
"rose",
|
|
7581
|
-
"black",
|
|
7582
|
-
"white"
|
|
7379
|
+
"TSLiteralType",
|
|
7380
|
+
"black"
|
|
7583
7381
|
],
|
|
7584
7382
|
"value": {
|
|
7585
7383
|
"kind": "expression",
|
|
@@ -7619,32 +7417,9 @@
|
|
|
7619
7417
|
"name": "color",
|
|
7620
7418
|
"required": false,
|
|
7621
7419
|
"description": "Loader stripe color.",
|
|
7622
|
-
"enum": [
|
|
7623
|
-
"brand",
|
|
7624
|
-
"grayscale",
|
|
7625
|
-
"gray",
|
|
7626
|
-
"red",
|
|
7627
|
-
"orange",
|
|
7628
|
-
"amber",
|
|
7629
|
-
"yellow",
|
|
7630
|
-
"lime",
|
|
7631
|
-
"green",
|
|
7632
|
-
"emerald",
|
|
7633
|
-
"teal",
|
|
7634
|
-
"cyan",
|
|
7635
|
-
"sky",
|
|
7636
|
-
"blue",
|
|
7637
|
-
"indigo",
|
|
7638
|
-
"violet",
|
|
7639
|
-
"purple",
|
|
7640
|
-
"fuchsia",
|
|
7641
|
-
"pink",
|
|
7642
|
-
"rose",
|
|
7643
|
-
"white"
|
|
7644
|
-
],
|
|
7645
7420
|
"value": {
|
|
7646
7421
|
"kind": "expression",
|
|
7647
|
-
"type": "
|
|
7422
|
+
"type": "TSLiteralType"
|
|
7648
7423
|
},
|
|
7649
7424
|
"default": "brand"
|
|
7650
7425
|
},
|
|
@@ -8216,32 +7991,9 @@
|
|
|
8216
7991
|
"name": "color",
|
|
8217
7992
|
"required": false,
|
|
8218
7993
|
"description": "Money color.",
|
|
8219
|
-
"enum": [
|
|
8220
|
-
"brand",
|
|
8221
|
-
"grayscale",
|
|
8222
|
-
"gray",
|
|
8223
|
-
"red",
|
|
8224
|
-
"orange",
|
|
8225
|
-
"amber",
|
|
8226
|
-
"yellow",
|
|
8227
|
-
"lime",
|
|
8228
|
-
"green",
|
|
8229
|
-
"emerald",
|
|
8230
|
-
"teal",
|
|
8231
|
-
"cyan",
|
|
8232
|
-
"sky",
|
|
8233
|
-
"blue",
|
|
8234
|
-
"indigo",
|
|
8235
|
-
"violet",
|
|
8236
|
-
"purple",
|
|
8237
|
-
"fuchsia",
|
|
8238
|
-
"pink",
|
|
8239
|
-
"rose",
|
|
8240
|
-
"white"
|
|
8241
|
-
],
|
|
8242
7994
|
"value": {
|
|
8243
7995
|
"kind": "expression",
|
|
8244
|
-
"type": "
|
|
7996
|
+
"type": "TSLiteralType"
|
|
8245
7997
|
},
|
|
8246
7998
|
"default": "grayscale"
|
|
8247
7999
|
},
|
|
@@ -8913,32 +8665,9 @@
|
|
|
8913
8665
|
"name": "color",
|
|
8914
8666
|
"required": false,
|
|
8915
8667
|
"description": "Progress color.",
|
|
8916
|
-
"enum": [
|
|
8917
|
-
"brand",
|
|
8918
|
-
"grayscale",
|
|
8919
|
-
"gray",
|
|
8920
|
-
"red",
|
|
8921
|
-
"orange",
|
|
8922
|
-
"amber",
|
|
8923
|
-
"yellow",
|
|
8924
|
-
"lime",
|
|
8925
|
-
"green",
|
|
8926
|
-
"emerald",
|
|
8927
|
-
"teal",
|
|
8928
|
-
"cyan",
|
|
8929
|
-
"sky",
|
|
8930
|
-
"blue",
|
|
8931
|
-
"indigo",
|
|
8932
|
-
"violet",
|
|
8933
|
-
"purple",
|
|
8934
|
-
"fuchsia",
|
|
8935
|
-
"pink",
|
|
8936
|
-
"rose",
|
|
8937
|
-
"white"
|
|
8938
|
-
],
|
|
8939
8668
|
"value": {
|
|
8940
8669
|
"kind": "expression",
|
|
8941
|
-
"type": "
|
|
8670
|
+
"type": "TSLiteralType"
|
|
8942
8671
|
},
|
|
8943
8672
|
"default": "brand"
|
|
8944
8673
|
},
|