@helpscout/ui-kit-react 0.1.4 → 0.1.6
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/dist/lib/components/input/input.d.ts +6 -1
- package/dist/lib/components/input/input.d.ts.map +1 -1
- package/dist/lib/components/menu/menu.d.ts +24 -0
- package/dist/lib/components/menu/menu.d.ts.map +1 -0
- package/dist/lib/components/menu/menu.test.d.ts +2 -0
- package/dist/lib/components/menu/menu.test.d.ts.map +1 -0
- package/dist/lib/components/text/text.d.ts +2 -2
- package/dist/lib/components/text/text.utils.d.ts +2 -2
- package/dist/lib/components/text-field/text-field.d.ts +5 -0
- package/dist/lib/components/text-field/text-field.d.ts.map +1 -1
- package/dist/lib/ui-kit-react.d.ts +4 -3
- package/dist/lib/ui-kit-react.d.ts.map +1 -1
- package/dist/prop-types.json +527 -2
- package/dist/ui-kit-react.css +1 -1
- package/dist/ui-kit-react.js +18981 -14924
- package/dist/ui-kit-react.umd.cjs +66 -66
- package/package.json +3 -3
package/dist/prop-types.json
CHANGED
|
@@ -915,6 +915,46 @@
|
|
|
915
915
|
}
|
|
916
916
|
},
|
|
917
917
|
"Input": {
|
|
918
|
+
"align": {
|
|
919
|
+
"defaultValue": {
|
|
920
|
+
"value": "left"
|
|
921
|
+
},
|
|
922
|
+
"description": "Change the alignment of the input text.",
|
|
923
|
+
"name": "align",
|
|
924
|
+
"parent": {
|
|
925
|
+
"fileName": "ui-kit-react/lib/components/input/input.tsx",
|
|
926
|
+
"name": "InputProps"
|
|
927
|
+
},
|
|
928
|
+
"declarations": [
|
|
929
|
+
{
|
|
930
|
+
"fileName": "ui-kit-react/lib/components/input/input.tsx",
|
|
931
|
+
"name": "InputProps"
|
|
932
|
+
}
|
|
933
|
+
],
|
|
934
|
+
"required": false,
|
|
935
|
+
"type": {
|
|
936
|
+
"name": "\"left\" | \"right\" | null"
|
|
937
|
+
}
|
|
938
|
+
},
|
|
939
|
+
"prefix": {
|
|
940
|
+
"defaultValue": null,
|
|
941
|
+
"description": "Render the input with a prefix.",
|
|
942
|
+
"name": "prefix",
|
|
943
|
+
"parent": {
|
|
944
|
+
"fileName": "ui-kit-react/lib/components/input/input.tsx",
|
|
945
|
+
"name": "InputProps"
|
|
946
|
+
},
|
|
947
|
+
"declarations": [
|
|
948
|
+
{
|
|
949
|
+
"fileName": "ui-kit-react/lib/components/input/input.tsx",
|
|
950
|
+
"name": "InputProps"
|
|
951
|
+
}
|
|
952
|
+
],
|
|
953
|
+
"required": false,
|
|
954
|
+
"type": {
|
|
955
|
+
"name": "string"
|
|
956
|
+
}
|
|
957
|
+
},
|
|
918
958
|
"state": {
|
|
919
959
|
"defaultValue": null,
|
|
920
960
|
"description": "Changes the appearance of the input to indicate an error, success, or warning state.",
|
|
@@ -1646,6 +1686,453 @@
|
|
|
1646
1686
|
}
|
|
1647
1687
|
}
|
|
1648
1688
|
},
|
|
1689
|
+
"Menu": {
|
|
1690
|
+
"className": {
|
|
1691
|
+
"defaultValue": null,
|
|
1692
|
+
"description": "Optional class name to apply to the menu.",
|
|
1693
|
+
"name": "className",
|
|
1694
|
+
"parent": {
|
|
1695
|
+
"fileName": "ui-kit-react/lib/components/menu/menu.tsx",
|
|
1696
|
+
"name": "MenuProps"
|
|
1697
|
+
},
|
|
1698
|
+
"declarations": [
|
|
1699
|
+
{
|
|
1700
|
+
"fileName": "ui-kit-react/lib/components/menu/menu.tsx",
|
|
1701
|
+
"name": "MenuProps"
|
|
1702
|
+
}
|
|
1703
|
+
],
|
|
1704
|
+
"required": false,
|
|
1705
|
+
"type": {
|
|
1706
|
+
"name": "string"
|
|
1707
|
+
}
|
|
1708
|
+
},
|
|
1709
|
+
"children": {
|
|
1710
|
+
"defaultValue": null,
|
|
1711
|
+
"description": "The children to render in the menu.",
|
|
1712
|
+
"name": "children",
|
|
1713
|
+
"parent": {
|
|
1714
|
+
"fileName": "ui-kit-react/lib/components/menu/menu.tsx",
|
|
1715
|
+
"name": "MenuProps"
|
|
1716
|
+
},
|
|
1717
|
+
"declarations": [
|
|
1718
|
+
{
|
|
1719
|
+
"fileName": "ui-kit-react/lib/components/menu/menu.tsx",
|
|
1720
|
+
"name": "MenuProps"
|
|
1721
|
+
}
|
|
1722
|
+
],
|
|
1723
|
+
"required": true,
|
|
1724
|
+
"type": {
|
|
1725
|
+
"name": "ReactNode"
|
|
1726
|
+
}
|
|
1727
|
+
},
|
|
1728
|
+
"disabledKeys": {
|
|
1729
|
+
"defaultValue": null,
|
|
1730
|
+
"description": "Optional array of keys to disable.",
|
|
1731
|
+
"name": "disabledKeys",
|
|
1732
|
+
"parent": {
|
|
1733
|
+
"fileName": "ui-kit-react/lib/components/menu/menu.tsx",
|
|
1734
|
+
"name": "MenuProps"
|
|
1735
|
+
},
|
|
1736
|
+
"declarations": [
|
|
1737
|
+
{
|
|
1738
|
+
"fileName": "ui-kit-react/lib/components/menu/menu.tsx",
|
|
1739
|
+
"name": "MenuProps"
|
|
1740
|
+
}
|
|
1741
|
+
],
|
|
1742
|
+
"required": false,
|
|
1743
|
+
"type": {
|
|
1744
|
+
"name": "(string | number)[]"
|
|
1745
|
+
}
|
|
1746
|
+
},
|
|
1747
|
+
"onAction": {
|
|
1748
|
+
"defaultValue": null,
|
|
1749
|
+
"description": "Handler that is called when an item is selected.",
|
|
1750
|
+
"name": "onAction",
|
|
1751
|
+
"parent": {
|
|
1752
|
+
"fileName": "ui-kit-react/lib/components/menu/menu.tsx",
|
|
1753
|
+
"name": "MenuProps"
|
|
1754
|
+
},
|
|
1755
|
+
"declarations": [
|
|
1756
|
+
{
|
|
1757
|
+
"fileName": "ui-kit-react/lib/components/menu/menu.tsx",
|
|
1758
|
+
"name": "MenuProps"
|
|
1759
|
+
}
|
|
1760
|
+
],
|
|
1761
|
+
"required": true,
|
|
1762
|
+
"type": {
|
|
1763
|
+
"name": "(key: string | number) => void"
|
|
1764
|
+
}
|
|
1765
|
+
}
|
|
1766
|
+
},
|
|
1767
|
+
"MenuItem": {
|
|
1768
|
+
"isDisabled": {
|
|
1769
|
+
"defaultValue": null,
|
|
1770
|
+
"description": "Whether the menu item is disabled.",
|
|
1771
|
+
"name": "isDisabled",
|
|
1772
|
+
"parent": {
|
|
1773
|
+
"fileName": "ui-kit-react/lib/components/menu/menu.tsx",
|
|
1774
|
+
"name": "MenuItemProps"
|
|
1775
|
+
},
|
|
1776
|
+
"declarations": [
|
|
1777
|
+
{
|
|
1778
|
+
"fileName": "ui-kit-react/lib/components/menu/menu.tsx",
|
|
1779
|
+
"name": "MenuItemProps"
|
|
1780
|
+
}
|
|
1781
|
+
],
|
|
1782
|
+
"required": false,
|
|
1783
|
+
"type": {
|
|
1784
|
+
"name": "boolean"
|
|
1785
|
+
}
|
|
1786
|
+
},
|
|
1787
|
+
"title": {
|
|
1788
|
+
"defaultValue": {
|
|
1789
|
+
"value": ""
|
|
1790
|
+
},
|
|
1791
|
+
"description": "Optional title to apply to the menu item.",
|
|
1792
|
+
"name": "title",
|
|
1793
|
+
"parent": {
|
|
1794
|
+
"fileName": "ui-kit-react/lib/components/menu/menu.tsx",
|
|
1795
|
+
"name": "MenuItemProps"
|
|
1796
|
+
},
|
|
1797
|
+
"declarations": [
|
|
1798
|
+
{
|
|
1799
|
+
"fileName": "ui-kit-react/lib/components/menu/menu.tsx",
|
|
1800
|
+
"name": "MenuItemProps"
|
|
1801
|
+
}
|
|
1802
|
+
],
|
|
1803
|
+
"required": false,
|
|
1804
|
+
"type": {
|
|
1805
|
+
"name": "string"
|
|
1806
|
+
}
|
|
1807
|
+
},
|
|
1808
|
+
"children": {
|
|
1809
|
+
"defaultValue": null,
|
|
1810
|
+
"description": "The children to render in the menu item.",
|
|
1811
|
+
"name": "children",
|
|
1812
|
+
"parent": {
|
|
1813
|
+
"fileName": "ui-kit-react/lib/components/menu/menu.tsx",
|
|
1814
|
+
"name": "MenuItemProps"
|
|
1815
|
+
},
|
|
1816
|
+
"declarations": [
|
|
1817
|
+
{
|
|
1818
|
+
"fileName": "ui-kit-react/lib/components/menu/menu.tsx",
|
|
1819
|
+
"name": "MenuItemProps"
|
|
1820
|
+
}
|
|
1821
|
+
],
|
|
1822
|
+
"required": true,
|
|
1823
|
+
"type": {
|
|
1824
|
+
"name": "ReactNode"
|
|
1825
|
+
}
|
|
1826
|
+
},
|
|
1827
|
+
"id": {
|
|
1828
|
+
"defaultValue": null,
|
|
1829
|
+
"description": "The unique id of the item.",
|
|
1830
|
+
"name": "id",
|
|
1831
|
+
"parent": {
|
|
1832
|
+
"fileName": "apps-platform/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts",
|
|
1833
|
+
"name": "MenuItemProps"
|
|
1834
|
+
},
|
|
1835
|
+
"declarations": [
|
|
1836
|
+
{
|
|
1837
|
+
"fileName": "apps-platform/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts",
|
|
1838
|
+
"name": "MenuItemProps"
|
|
1839
|
+
}
|
|
1840
|
+
],
|
|
1841
|
+
"required": false,
|
|
1842
|
+
"type": {
|
|
1843
|
+
"name": "Key"
|
|
1844
|
+
}
|
|
1845
|
+
},
|
|
1846
|
+
"value": {
|
|
1847
|
+
"defaultValue": null,
|
|
1848
|
+
"description": "The object value that this item represents. When using dynamic collections, this is set automatically.",
|
|
1849
|
+
"name": "value",
|
|
1850
|
+
"parent": {
|
|
1851
|
+
"fileName": "apps-platform/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts",
|
|
1852
|
+
"name": "MenuItemProps"
|
|
1853
|
+
},
|
|
1854
|
+
"declarations": [
|
|
1855
|
+
{
|
|
1856
|
+
"fileName": "apps-platform/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts",
|
|
1857
|
+
"name": "MenuItemProps"
|
|
1858
|
+
}
|
|
1859
|
+
],
|
|
1860
|
+
"required": false,
|
|
1861
|
+
"type": {
|
|
1862
|
+
"name": "object"
|
|
1863
|
+
}
|
|
1864
|
+
},
|
|
1865
|
+
"textValue": {
|
|
1866
|
+
"defaultValue": null,
|
|
1867
|
+
"description": "A string representation of the item's contents, used for features like typeahead.",
|
|
1868
|
+
"name": "textValue",
|
|
1869
|
+
"parent": {
|
|
1870
|
+
"fileName": "apps-platform/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts",
|
|
1871
|
+
"name": "MenuItemProps"
|
|
1872
|
+
},
|
|
1873
|
+
"declarations": [
|
|
1874
|
+
{
|
|
1875
|
+
"fileName": "apps-platform/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts",
|
|
1876
|
+
"name": "MenuItemProps"
|
|
1877
|
+
}
|
|
1878
|
+
],
|
|
1879
|
+
"required": false,
|
|
1880
|
+
"type": {
|
|
1881
|
+
"name": "string"
|
|
1882
|
+
}
|
|
1883
|
+
},
|
|
1884
|
+
"aria-label": {
|
|
1885
|
+
"defaultValue": null,
|
|
1886
|
+
"description": "An accessibility label for this item.",
|
|
1887
|
+
"name": "aria-label",
|
|
1888
|
+
"parent": {
|
|
1889
|
+
"fileName": "apps-platform/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts",
|
|
1890
|
+
"name": "MenuItemProps"
|
|
1891
|
+
},
|
|
1892
|
+
"declarations": [
|
|
1893
|
+
{
|
|
1894
|
+
"fileName": "apps-platform/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts",
|
|
1895
|
+
"name": "MenuItemProps"
|
|
1896
|
+
}
|
|
1897
|
+
],
|
|
1898
|
+
"required": false,
|
|
1899
|
+
"type": {
|
|
1900
|
+
"name": "string"
|
|
1901
|
+
}
|
|
1902
|
+
},
|
|
1903
|
+
"className": {
|
|
1904
|
+
"defaultValue": null,
|
|
1905
|
+
"description": "The CSS [className](https://developer.mozilla.org/en-US/docs/Web/API/Element/className) for the element. A function may be provided to compute the class based on component state.",
|
|
1906
|
+
"name": "className",
|
|
1907
|
+
"parent": {
|
|
1908
|
+
"fileName": "apps-platform/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts",
|
|
1909
|
+
"name": "StyleRenderProps"
|
|
1910
|
+
},
|
|
1911
|
+
"declarations": [
|
|
1912
|
+
{
|
|
1913
|
+
"fileName": "apps-platform/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts",
|
|
1914
|
+
"name": "StyleRenderProps"
|
|
1915
|
+
}
|
|
1916
|
+
],
|
|
1917
|
+
"required": false,
|
|
1918
|
+
"type": {
|
|
1919
|
+
"name": "(values: MenuItemRenderProps) => string"
|
|
1920
|
+
}
|
|
1921
|
+
},
|
|
1922
|
+
"style": {
|
|
1923
|
+
"defaultValue": null,
|
|
1924
|
+
"description": "The inline [style](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/style) for the element. A function may be provided to compute the style based on component state.",
|
|
1925
|
+
"name": "style",
|
|
1926
|
+
"parent": {
|
|
1927
|
+
"fileName": "apps-platform/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts",
|
|
1928
|
+
"name": "StyleRenderProps"
|
|
1929
|
+
},
|
|
1930
|
+
"declarations": [
|
|
1931
|
+
{
|
|
1932
|
+
"fileName": "apps-platform/node_modules/.pnpm/react-aria-components@1.1.1_react-dom@18.2.0_react@18.2.0/node_modules/react-aria-components/dist/types.d.ts",
|
|
1933
|
+
"name": "StyleRenderProps"
|
|
1934
|
+
}
|
|
1935
|
+
],
|
|
1936
|
+
"required": false,
|
|
1937
|
+
"type": {
|
|
1938
|
+
"name": "(values: MenuItemRenderProps) => CSSProperties"
|
|
1939
|
+
}
|
|
1940
|
+
},
|
|
1941
|
+
"href": {
|
|
1942
|
+
"defaultValue": null,
|
|
1943
|
+
"description": "A URL to link to. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#href).",
|
|
1944
|
+
"name": "href",
|
|
1945
|
+
"parent": {
|
|
1946
|
+
"fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
|
|
1947
|
+
"name": "LinkDOMProps"
|
|
1948
|
+
},
|
|
1949
|
+
"declarations": [
|
|
1950
|
+
{
|
|
1951
|
+
"fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
|
|
1952
|
+
"name": "LinkDOMProps"
|
|
1953
|
+
}
|
|
1954
|
+
],
|
|
1955
|
+
"required": false,
|
|
1956
|
+
"type": {
|
|
1957
|
+
"name": "string"
|
|
1958
|
+
}
|
|
1959
|
+
},
|
|
1960
|
+
"target": {
|
|
1961
|
+
"defaultValue": null,
|
|
1962
|
+
"description": "The target window for the link. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#target).",
|
|
1963
|
+
"name": "target",
|
|
1964
|
+
"parent": {
|
|
1965
|
+
"fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
|
|
1966
|
+
"name": "LinkDOMProps"
|
|
1967
|
+
},
|
|
1968
|
+
"declarations": [
|
|
1969
|
+
{
|
|
1970
|
+
"fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
|
|
1971
|
+
"name": "LinkDOMProps"
|
|
1972
|
+
}
|
|
1973
|
+
],
|
|
1974
|
+
"required": false,
|
|
1975
|
+
"type": {
|
|
1976
|
+
"name": "HTMLAttributeAnchorTarget"
|
|
1977
|
+
}
|
|
1978
|
+
},
|
|
1979
|
+
"rel": {
|
|
1980
|
+
"defaultValue": null,
|
|
1981
|
+
"description": "The relationship between the linked resource and the current page. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/rel).",
|
|
1982
|
+
"name": "rel",
|
|
1983
|
+
"parent": {
|
|
1984
|
+
"fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
|
|
1985
|
+
"name": "LinkDOMProps"
|
|
1986
|
+
},
|
|
1987
|
+
"declarations": [
|
|
1988
|
+
{
|
|
1989
|
+
"fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
|
|
1990
|
+
"name": "LinkDOMProps"
|
|
1991
|
+
}
|
|
1992
|
+
],
|
|
1993
|
+
"required": false,
|
|
1994
|
+
"type": {
|
|
1995
|
+
"name": "string"
|
|
1996
|
+
}
|
|
1997
|
+
},
|
|
1998
|
+
"download": {
|
|
1999
|
+
"defaultValue": null,
|
|
2000
|
+
"description": "Causes the browser to download the linked URL. A string may be provided to suggest a file name. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#download).",
|
|
2001
|
+
"name": "download",
|
|
2002
|
+
"parent": {
|
|
2003
|
+
"fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
|
|
2004
|
+
"name": "LinkDOMProps"
|
|
2005
|
+
},
|
|
2006
|
+
"declarations": [
|
|
2007
|
+
{
|
|
2008
|
+
"fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
|
|
2009
|
+
"name": "LinkDOMProps"
|
|
2010
|
+
}
|
|
2011
|
+
],
|
|
2012
|
+
"required": false,
|
|
2013
|
+
"type": {
|
|
2014
|
+
"name": "string | boolean"
|
|
2015
|
+
}
|
|
2016
|
+
},
|
|
2017
|
+
"ping": {
|
|
2018
|
+
"defaultValue": null,
|
|
2019
|
+
"description": "A space-separated list of URLs to ping when the link is followed. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#ping).",
|
|
2020
|
+
"name": "ping",
|
|
2021
|
+
"parent": {
|
|
2022
|
+
"fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
|
|
2023
|
+
"name": "LinkDOMProps"
|
|
2024
|
+
},
|
|
2025
|
+
"declarations": [
|
|
2026
|
+
{
|
|
2027
|
+
"fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
|
|
2028
|
+
"name": "LinkDOMProps"
|
|
2029
|
+
}
|
|
2030
|
+
],
|
|
2031
|
+
"required": false,
|
|
2032
|
+
"type": {
|
|
2033
|
+
"name": "string"
|
|
2034
|
+
}
|
|
2035
|
+
},
|
|
2036
|
+
"referrerPolicy": {
|
|
2037
|
+
"defaultValue": null,
|
|
2038
|
+
"description": "How much of the referrer to send when following the link. See [MDN](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#referrerpolicy).",
|
|
2039
|
+
"name": "referrerPolicy",
|
|
2040
|
+
"parent": {
|
|
2041
|
+
"fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
|
|
2042
|
+
"name": "LinkDOMProps"
|
|
2043
|
+
},
|
|
2044
|
+
"declarations": [
|
|
2045
|
+
{
|
|
2046
|
+
"fileName": "apps-platform/node_modules/.pnpm/@react-types+shared@3.22.1_react@18.2.0/node_modules/@react-types/shared/src/dom.d.ts",
|
|
2047
|
+
"name": "LinkDOMProps"
|
|
2048
|
+
}
|
|
2049
|
+
],
|
|
2050
|
+
"required": false,
|
|
2051
|
+
"type": {
|
|
2052
|
+
"name": "HTMLAttributeReferrerPolicy"
|
|
2053
|
+
}
|
|
2054
|
+
}
|
|
2055
|
+
},
|
|
2056
|
+
"MenuTrigger": {
|
|
2057
|
+
"trigger": {
|
|
2058
|
+
"defaultValue": {
|
|
2059
|
+
"value": "'press'"
|
|
2060
|
+
},
|
|
2061
|
+
"description": "How the menu is triggered.",
|
|
2062
|
+
"name": "trigger",
|
|
2063
|
+
"parent": {
|
|
2064
|
+
"fileName": "apps-platform/node_modules/.pnpm/@react-types+menu@3.9.7_react@18.2.0/node_modules/@react-types/menu/src/index.d.ts",
|
|
2065
|
+
"name": "MenuTriggerProps"
|
|
2066
|
+
},
|
|
2067
|
+
"declarations": [
|
|
2068
|
+
{
|
|
2069
|
+
"fileName": "apps-platform/node_modules/.pnpm/@react-types+menu@3.9.7_react@18.2.0/node_modules/@react-types/menu/src/index.d.ts",
|
|
2070
|
+
"name": "MenuTriggerProps"
|
|
2071
|
+
}
|
|
2072
|
+
],
|
|
2073
|
+
"required": false,
|
|
2074
|
+
"type": {
|
|
2075
|
+
"name": "MenuTriggerType"
|
|
2076
|
+
}
|
|
2077
|
+
},
|
|
2078
|
+
"isOpen": {
|
|
2079
|
+
"defaultValue": null,
|
|
2080
|
+
"description": "Whether the overlay is open by default (controlled).",
|
|
2081
|
+
"name": "isOpen",
|
|
2082
|
+
"parent": {
|
|
2083
|
+
"fileName": "apps-platform/node_modules/.pnpm/@react-types+overlays@3.8.5_react@18.2.0/node_modules/@react-types/overlays/src/index.d.ts",
|
|
2084
|
+
"name": "OverlayTriggerProps"
|
|
2085
|
+
},
|
|
2086
|
+
"declarations": [
|
|
2087
|
+
{
|
|
2088
|
+
"fileName": "apps-platform/node_modules/.pnpm/@react-types+overlays@3.8.5_react@18.2.0/node_modules/@react-types/overlays/src/index.d.ts",
|
|
2089
|
+
"name": "OverlayTriggerProps"
|
|
2090
|
+
}
|
|
2091
|
+
],
|
|
2092
|
+
"required": false,
|
|
2093
|
+
"type": {
|
|
2094
|
+
"name": "boolean"
|
|
2095
|
+
}
|
|
2096
|
+
},
|
|
2097
|
+
"defaultOpen": {
|
|
2098
|
+
"defaultValue": null,
|
|
2099
|
+
"description": "Whether the overlay is open by default (uncontrolled).",
|
|
2100
|
+
"name": "defaultOpen",
|
|
2101
|
+
"parent": {
|
|
2102
|
+
"fileName": "apps-platform/node_modules/.pnpm/@react-types+overlays@3.8.5_react@18.2.0/node_modules/@react-types/overlays/src/index.d.ts",
|
|
2103
|
+
"name": "OverlayTriggerProps"
|
|
2104
|
+
},
|
|
2105
|
+
"declarations": [
|
|
2106
|
+
{
|
|
2107
|
+
"fileName": "apps-platform/node_modules/.pnpm/@react-types+overlays@3.8.5_react@18.2.0/node_modules/@react-types/overlays/src/index.d.ts",
|
|
2108
|
+
"name": "OverlayTriggerProps"
|
|
2109
|
+
}
|
|
2110
|
+
],
|
|
2111
|
+
"required": false,
|
|
2112
|
+
"type": {
|
|
2113
|
+
"name": "boolean"
|
|
2114
|
+
}
|
|
2115
|
+
},
|
|
2116
|
+
"onOpenChange": {
|
|
2117
|
+
"defaultValue": null,
|
|
2118
|
+
"description": "Handler that is called when the overlay's open state changes.",
|
|
2119
|
+
"name": "onOpenChange",
|
|
2120
|
+
"parent": {
|
|
2121
|
+
"fileName": "apps-platform/node_modules/.pnpm/@react-types+overlays@3.8.5_react@18.2.0/node_modules/@react-types/overlays/src/index.d.ts",
|
|
2122
|
+
"name": "OverlayTriggerProps"
|
|
2123
|
+
},
|
|
2124
|
+
"declarations": [
|
|
2125
|
+
{
|
|
2126
|
+
"fileName": "apps-platform/node_modules/.pnpm/@react-types+overlays@3.8.5_react@18.2.0/node_modules/@react-types/overlays/src/index.d.ts",
|
|
2127
|
+
"name": "OverlayTriggerProps"
|
|
2128
|
+
}
|
|
2129
|
+
],
|
|
2130
|
+
"required": false,
|
|
2131
|
+
"type": {
|
|
2132
|
+
"name": "(isOpen: boolean) => void"
|
|
2133
|
+
}
|
|
2134
|
+
}
|
|
2135
|
+
},
|
|
1649
2136
|
"NumberField": {
|
|
1650
2137
|
"decrementAriaLabel": {
|
|
1651
2138
|
"defaultValue": null,
|
|
@@ -3603,6 +4090,25 @@
|
|
|
3603
4090
|
}
|
|
3604
4091
|
},
|
|
3605
4092
|
"TextField": {
|
|
4093
|
+
"align": {
|
|
4094
|
+
"defaultValue": null,
|
|
4095
|
+
"description": "Change the alignment of the input text.",
|
|
4096
|
+
"name": "align",
|
|
4097
|
+
"parent": {
|
|
4098
|
+
"fileName": "ui-kit-react/lib/components/text-field/text-field.tsx",
|
|
4099
|
+
"name": "TextFieldProps"
|
|
4100
|
+
},
|
|
4101
|
+
"declarations": [
|
|
4102
|
+
{
|
|
4103
|
+
"fileName": "ui-kit-react/lib/components/text-field/text-field.tsx",
|
|
4104
|
+
"name": "TextFieldProps"
|
|
4105
|
+
}
|
|
4106
|
+
],
|
|
4107
|
+
"required": false,
|
|
4108
|
+
"type": {
|
|
4109
|
+
"name": "\"left\" | \"right\" | null"
|
|
4110
|
+
}
|
|
4111
|
+
},
|
|
3606
4112
|
"label": {
|
|
3607
4113
|
"defaultValue": null,
|
|
3608
4114
|
"description": "The label for the input.",
|
|
@@ -3679,6 +4185,25 @@
|
|
|
3679
4185
|
"name": "string"
|
|
3680
4186
|
}
|
|
3681
4187
|
},
|
|
4188
|
+
"prefix": {
|
|
4189
|
+
"defaultValue": null,
|
|
4190
|
+
"description": "Render the input with a prefix.",
|
|
4191
|
+
"name": "prefix",
|
|
4192
|
+
"parent": {
|
|
4193
|
+
"fileName": "ui-kit-react/lib/components/text-field/text-field.tsx",
|
|
4194
|
+
"name": "TextFieldProps"
|
|
4195
|
+
},
|
|
4196
|
+
"declarations": [
|
|
4197
|
+
{
|
|
4198
|
+
"fileName": "ui-kit-react/lib/components/text-field/text-field.tsx",
|
|
4199
|
+
"name": "TextFieldProps"
|
|
4200
|
+
}
|
|
4201
|
+
],
|
|
4202
|
+
"required": false,
|
|
4203
|
+
"type": {
|
|
4204
|
+
"name": "string"
|
|
4205
|
+
}
|
|
4206
|
+
},
|
|
3682
4207
|
"validationMessage": {
|
|
3683
4208
|
"defaultValue": null,
|
|
3684
4209
|
"description": "Shows a validation message under the input.",
|
|
@@ -3773,7 +4298,7 @@
|
|
|
3773
4298
|
],
|
|
3774
4299
|
"required": false,
|
|
3775
4300
|
"type": {
|
|
3776
|
-
"name": "\"
|
|
4301
|
+
"name": "\"list\" | \"none\" | \"inline\" | \"both\""
|
|
3777
4302
|
}
|
|
3778
4303
|
},
|
|
3779
4304
|
"aria-haspopup": {
|
|
@@ -3792,7 +4317,7 @@
|
|
|
3792
4317
|
],
|
|
3793
4318
|
"required": false,
|
|
3794
4319
|
"type": {
|
|
3795
|
-
"name": "boolean | \"
|
|
4320
|
+
"name": "boolean | \"true\" | \"false\" | \"menu\" | \"listbox\" | \"tree\" | \"grid\" | \"dialog\""
|
|
3796
4321
|
}
|
|
3797
4322
|
},
|
|
3798
4323
|
"isReadOnly": {
|