@yahoo/uds 3.164.0 → 3.165.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/commands/sync.cjs +8 -0
- package/dist/cli/commands/sync.js +8 -0
- package/dist/components/client/Button/Button.cjs +5 -6
- package/dist/components/client/Button/Button.js +5 -6
- package/dist/components/client/Button/ButtonBase.cjs +4 -0
- package/dist/components/client/Button/ButtonBase.d.cts +2 -1
- package/dist/components/client/Button/ButtonBase.d.ts +2 -1
- package/dist/components/client/Button/ButtonBase.js +4 -0
- package/dist/components/client/Button/UDSButtonConfigProvider.cjs +45 -0
- package/dist/components/client/Button/UDSButtonConfigProvider.d.cts +33 -0
- package/dist/components/client/Button/UDSButtonConfigProvider.d.ts +34 -0
- package/dist/components/client/Button/UDSButtonConfigProvider.js +42 -0
- package/dist/components/client/Button/buttonConstants.cjs +1 -1
- package/dist/components/client/Button/buttonConstants.d.cts +3 -3
- package/dist/components/client/Button/buttonConstants.d.ts +3 -3
- package/dist/components/client/Button/buttonConstants.js +1 -1
- package/dist/components/client/Button/index.cjs +3 -0
- package/dist/components/client/Button/index.d.cts +2 -1
- package/dist/components/client/Button/index.d.ts +2 -1
- package/dist/components/client/Button/index.js +2 -1
- package/dist/components/client/IconButton/IconButton.cjs +3 -4
- package/dist/components/client/IconButton/IconButton.js +3 -4
- package/dist/components/client/IconButton/IconButtonBase.cjs +3 -0
- package/dist/components/client/IconButton/IconButtonBase.d.cts +2 -0
- package/dist/components/client/IconButton/IconButtonBase.d.ts +2 -0
- package/dist/components/client/IconButton/IconButtonBase.js +3 -0
- package/dist/components/client/IconButton/UDSIconButtonConfigProvider.cjs +46 -0
- package/dist/components/client/IconButton/UDSIconButtonConfigProvider.d.cts +34 -0
- package/dist/components/client/IconButton/UDSIconButtonConfigProvider.d.ts +35 -0
- package/dist/components/client/IconButton/UDSIconButtonConfigProvider.js +43 -0
- package/dist/components/client/IconButton/index.cjs +3 -0
- package/dist/components/client/IconButton/index.d.cts +2 -1
- package/dist/components/client/IconButton/index.d.ts +2 -1
- package/dist/components/client/IconButton/index.js +2 -1
- package/dist/components/client/Menu/Menu.ItemCheckbox.d.cts +1 -1
- package/dist/components/client/Menu/Menu.ItemCheckbox.d.ts +1 -1
- package/dist/components/client/index.cjs +6 -0
- package/dist/components/client/index.d.cts +3 -1
- package/dist/components/client/index.d.ts +3 -1
- package/dist/components/client/index.js +3 -1
- package/dist/components/client/providers/UDSConfigProvider.cjs +18 -10
- package/dist/components/client/providers/UDSConfigProvider.d.cts +2 -0
- package/dist/components/client/providers/UDSConfigProvider.d.ts +2 -0
- package/dist/components/client/providers/UDSConfigProvider.js +18 -10
- package/dist/components/index.cjs +6 -0
- package/dist/components/index.d.cts +3 -1
- package/dist/components/index.d.ts +3 -1
- package/dist/components/index.js +3 -1
- package/dist/config/dist/index.cjs +51 -142
- package/dist/config/dist/index.js +51 -142
- package/dist/css/dist/css/utils.cjs +12 -0
- package/dist/css/dist/css/utils.js +12 -0
- package/dist/css/dist/packages/config/dist/index.cjs +51 -142
- package/dist/css/dist/packages/config/dist/index.js +51 -142
- package/dist/css/dist/runtimeConfig/hookMetadata.cjs +67 -0
- package/dist/css/dist/runtimeConfig/hookMetadata.js +67 -0
- package/dist/css-animation/Button/Button.cjs +5 -6
- package/dist/css-animation/Button/Button.js +5 -6
- package/dist/css-animation/IconButton/IconButton.cjs +3 -4
- package/dist/css-animation/IconButton/IconButton.js +3 -4
- package/dist/index.cjs +10 -0
- package/dist/index.d.cts +5 -1
- package/dist/index.d.ts +5 -1
- package/dist/index.js +5 -1
- package/dist/runtime/buttonConfig.cjs +17 -0
- package/dist/runtime/buttonConfig.d.cts +13 -0
- package/dist/runtime/buttonConfig.d.ts +13 -0
- package/dist/runtime/buttonConfig.js +16 -0
- package/dist/runtime/iconButtonConfig.cjs +18 -0
- package/dist/runtime/iconButtonConfig.d.cts +13 -0
- package/dist/runtime/iconButtonConfig.d.ts +13 -0
- package/dist/runtime/iconButtonConfig.js +17 -0
- package/dist/runtime/index.cjs +4 -0
- package/dist/runtime/index.d.cts +3 -1
- package/dist/runtime/index.d.ts +3 -1
- package/dist/runtime/index.js +3 -1
- package/dist/runtime/udsConfig.cjs +4 -0
- package/dist/runtime/udsConfig.d.cts +4 -0
- package/dist/runtime/udsConfig.d.ts +4 -0
- package/dist/runtime/udsConfig.js +4 -0
- package/dist/styles/styler.d.cts +10 -10
- package/dist/styles/styler.d.ts +10 -10
- package/dist/tailwind-internal/dist/packages/config/dist/index.cjs +51 -142
- package/dist/tailwind-internal/dist/packages/config/dist/index.js +51 -142
- package/dist/uds/generated/componentData.cjs +251 -223
- package/dist/uds/generated/componentData.js +251 -223
- package/dist/uds/generated/tailwindPurge.cjs +9 -1
- package/dist/uds/generated/tailwindPurge.js +9 -1
- package/generated/componentData.json +491 -455
- package/generated/tailwindPurge.ts +3 -3
- package/package.json +1 -1
|
@@ -1839,6 +1839,207 @@
|
|
|
1839
1839
|
"runtimeConfigInternalComponentProps": {},
|
|
1840
1840
|
"motionVarPrefixes": []
|
|
1841
1841
|
},
|
|
1842
|
+
"ChipButton": {
|
|
1843
|
+
"name": "ChipButton",
|
|
1844
|
+
"defaultProps": {
|
|
1845
|
+
"variant": "primary"
|
|
1846
|
+
},
|
|
1847
|
+
"getStylesLiterals": {},
|
|
1848
|
+
"cxLiterals": [
|
|
1849
|
+
"uds-ring"
|
|
1850
|
+
],
|
|
1851
|
+
"internalComponents": [
|
|
1852
|
+
"ChipBase"
|
|
1853
|
+
],
|
|
1854
|
+
"internalComponentProps": {
|
|
1855
|
+
"ChipBase": {
|
|
1856
|
+
"as": [
|
|
1857
|
+
"button"
|
|
1858
|
+
]
|
|
1859
|
+
}
|
|
1860
|
+
},
|
|
1861
|
+
"propToVariantKeys": {
|
|
1862
|
+
"variant": [
|
|
1863
|
+
"chipLinkVariantRoot",
|
|
1864
|
+
"chipLinkVariantIcon"
|
|
1865
|
+
]
|
|
1866
|
+
},
|
|
1867
|
+
"runtimeConfigDefaultProps": {},
|
|
1868
|
+
"runtimeConfigGetStyles": {},
|
|
1869
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1870
|
+
"motionVarPrefixes": []
|
|
1871
|
+
},
|
|
1872
|
+
"ChipDismissible": {
|
|
1873
|
+
"name": "ChipDismissible",
|
|
1874
|
+
"defaultProps": {
|
|
1875
|
+
"variant": "primary"
|
|
1876
|
+
},
|
|
1877
|
+
"getStylesLiterals": {},
|
|
1878
|
+
"cxLiterals": [
|
|
1879
|
+
"uds-chip-dismissible-button",
|
|
1880
|
+
"uds-hit-target",
|
|
1881
|
+
"uds-ring",
|
|
1882
|
+
"rounded-full"
|
|
1883
|
+
],
|
|
1884
|
+
"internalComponents": [
|
|
1885
|
+
"ChipBase",
|
|
1886
|
+
"IconSlot",
|
|
1887
|
+
"Pressable"
|
|
1888
|
+
],
|
|
1889
|
+
"internalComponentProps": {},
|
|
1890
|
+
"propToVariantKeys": {
|
|
1891
|
+
"variant": [
|
|
1892
|
+
"chipDismissibleVariantRoot",
|
|
1893
|
+
"chipDismissibleVariantIcon"
|
|
1894
|
+
],
|
|
1895
|
+
"dismissButtonAriaLabel": [
|
|
1896
|
+
"aria-label"
|
|
1897
|
+
]
|
|
1898
|
+
},
|
|
1899
|
+
"runtimeConfigDefaultProps": {},
|
|
1900
|
+
"runtimeConfigGetStyles": {},
|
|
1901
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1902
|
+
"motionVarPrefixes": []
|
|
1903
|
+
},
|
|
1904
|
+
"ChipLink": {
|
|
1905
|
+
"name": "ChipLink",
|
|
1906
|
+
"defaultProps": {
|
|
1907
|
+
"variant": "primary"
|
|
1908
|
+
},
|
|
1909
|
+
"getStylesLiterals": {},
|
|
1910
|
+
"cxLiterals": [
|
|
1911
|
+
"uds-ring"
|
|
1912
|
+
],
|
|
1913
|
+
"internalComponents": [
|
|
1914
|
+
"ChipBase"
|
|
1915
|
+
],
|
|
1916
|
+
"internalComponentProps": {
|
|
1917
|
+
"ChipBase": {
|
|
1918
|
+
"as": [
|
|
1919
|
+
"a"
|
|
1920
|
+
]
|
|
1921
|
+
}
|
|
1922
|
+
},
|
|
1923
|
+
"propToVariantKeys": {
|
|
1924
|
+
"variant": [
|
|
1925
|
+
"chipLinkVariantRoot",
|
|
1926
|
+
"chipLinkVariantIcon"
|
|
1927
|
+
]
|
|
1928
|
+
},
|
|
1929
|
+
"runtimeConfigDefaultProps": {},
|
|
1930
|
+
"runtimeConfigGetStyles": {},
|
|
1931
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1932
|
+
"motionVarPrefixes": []
|
|
1933
|
+
},
|
|
1934
|
+
"Chip": {
|
|
1935
|
+
"name": "Chip",
|
|
1936
|
+
"defaultProps": {},
|
|
1937
|
+
"getStylesLiterals": {},
|
|
1938
|
+
"cxLiterals": [],
|
|
1939
|
+
"internalComponents": [
|
|
1940
|
+
"ChipDismissible",
|
|
1941
|
+
"ChipToggle",
|
|
1942
|
+
"ChipLink",
|
|
1943
|
+
"ChipButton"
|
|
1944
|
+
],
|
|
1945
|
+
"internalComponentProps": {},
|
|
1946
|
+
"propToVariantKeys": {},
|
|
1947
|
+
"runtimeConfigDefaultProps": {},
|
|
1948
|
+
"runtimeConfigGetStyles": {},
|
|
1949
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1950
|
+
"motionVarPrefixes": []
|
|
1951
|
+
},
|
|
1952
|
+
"ChipToggle": {
|
|
1953
|
+
"name": "ChipToggle",
|
|
1954
|
+
"defaultProps": {
|
|
1955
|
+
"variant": "primary",
|
|
1956
|
+
"role": "checkbox"
|
|
1957
|
+
},
|
|
1958
|
+
"getStylesLiterals": {
|
|
1959
|
+
"chipToggleVariantActiveRoot": "on",
|
|
1960
|
+
"chipToggleVariantActiveRoot:1": "off"
|
|
1961
|
+
},
|
|
1962
|
+
"cxLiterals": [
|
|
1963
|
+
"uds-ring"
|
|
1964
|
+
],
|
|
1965
|
+
"internalComponents": [
|
|
1966
|
+
"ChipBase"
|
|
1967
|
+
],
|
|
1968
|
+
"internalComponentProps": {
|
|
1969
|
+
"ChipBase": {
|
|
1970
|
+
"as": [
|
|
1971
|
+
"button"
|
|
1972
|
+
]
|
|
1973
|
+
}
|
|
1974
|
+
},
|
|
1975
|
+
"propToVariantKeys": {
|
|
1976
|
+
"variant": [
|
|
1977
|
+
"chipToggleVariantRoot",
|
|
1978
|
+
"chipToggleVariantIcon"
|
|
1979
|
+
]
|
|
1980
|
+
},
|
|
1981
|
+
"runtimeConfigDefaultProps": {},
|
|
1982
|
+
"runtimeConfigGetStyles": {},
|
|
1983
|
+
"runtimeConfigInternalComponentProps": {},
|
|
1984
|
+
"motionVarPrefixes": []
|
|
1985
|
+
},
|
|
1986
|
+
"ChipBase": {
|
|
1987
|
+
"name": "ChipBase",
|
|
1988
|
+
"defaultProps": {
|
|
1989
|
+
"size": "md",
|
|
1990
|
+
"as": "div"
|
|
1991
|
+
},
|
|
1992
|
+
"getStylesLiterals": {},
|
|
1993
|
+
"cxLiterals": [
|
|
1994
|
+
"pointer-events-none",
|
|
1995
|
+
"cursor-default",
|
|
1996
|
+
"opacity-50",
|
|
1997
|
+
"inline-flex",
|
|
1998
|
+
"items-center",
|
|
1999
|
+
"transition-[background-color,outline-color,box-shadow]",
|
|
2000
|
+
"truncate",
|
|
2001
|
+
"whitespace-nowrap",
|
|
2002
|
+
"text-center",
|
|
2003
|
+
"flex-1",
|
|
2004
|
+
"md",
|
|
2005
|
+
"primary"
|
|
2006
|
+
],
|
|
2007
|
+
"internalComponents": [
|
|
2008
|
+
"IconSlot",
|
|
2009
|
+
"HStack",
|
|
2010
|
+
"As",
|
|
2011
|
+
"Text"
|
|
2012
|
+
],
|
|
2013
|
+
"internalComponentProps": {
|
|
2014
|
+
"Text": {
|
|
2015
|
+
"as": [
|
|
2016
|
+
"span"
|
|
2017
|
+
],
|
|
2018
|
+
"color": [
|
|
2019
|
+
"current"
|
|
2020
|
+
],
|
|
2021
|
+
"variant": [
|
|
2022
|
+
"inherit"
|
|
2023
|
+
]
|
|
2024
|
+
}
|
|
2025
|
+
},
|
|
2026
|
+
"propToVariantKeys": {
|
|
2027
|
+
"size": [
|
|
2028
|
+
"chipSizeRoot",
|
|
2029
|
+
"chipSizeIcon"
|
|
2030
|
+
],
|
|
2031
|
+
"startIcon": [
|
|
2032
|
+
"icon"
|
|
2033
|
+
],
|
|
2034
|
+
"endIcon": [
|
|
2035
|
+
"icon"
|
|
2036
|
+
]
|
|
2037
|
+
},
|
|
2038
|
+
"runtimeConfigDefaultProps": {},
|
|
2039
|
+
"runtimeConfigGetStyles": {},
|
|
2040
|
+
"runtimeConfigInternalComponentProps": {},
|
|
2041
|
+
"motionVarPrefixes": []
|
|
2042
|
+
},
|
|
1842
2043
|
"SwitchBase": {
|
|
1843
2044
|
"name": "SwitchBase",
|
|
1844
2045
|
"defaultProps": {
|
|
@@ -2024,7 +2225,9 @@
|
|
|
2024
2225
|
"buttonVariantIcon"
|
|
2025
2226
|
]
|
|
2026
2227
|
},
|
|
2027
|
-
"runtimeConfigDefaultProps": {
|
|
2228
|
+
"runtimeConfigDefaultProps": {
|
|
2229
|
+
"size": "button.defaultSize"
|
|
2230
|
+
},
|
|
2028
2231
|
"runtimeConfigGetStyles": {},
|
|
2029
2232
|
"runtimeConfigInternalComponentProps": {},
|
|
2030
2233
|
"motionVarPrefixes": []
|
|
@@ -2078,6 +2281,21 @@
|
|
|
2078
2281
|
"--uds-motion-smooth-3-"
|
|
2079
2282
|
]
|
|
2080
2283
|
},
|
|
2284
|
+
"UDSButtonConfigProvider": {
|
|
2285
|
+
"name": "UDSButtonConfigProvider",
|
|
2286
|
+
"defaultProps": {},
|
|
2287
|
+
"getStylesLiterals": {},
|
|
2288
|
+
"cxLiterals": [],
|
|
2289
|
+
"internalComponents": [
|
|
2290
|
+
"ButtonContext.Provider"
|
|
2291
|
+
],
|
|
2292
|
+
"internalComponentProps": {},
|
|
2293
|
+
"propToVariantKeys": {},
|
|
2294
|
+
"runtimeConfigDefaultProps": {},
|
|
2295
|
+
"runtimeConfigGetStyles": {},
|
|
2296
|
+
"runtimeConfigInternalComponentProps": {},
|
|
2297
|
+
"motionVarPrefixes": []
|
|
2298
|
+
},
|
|
2081
2299
|
"PaddleNavContent": {
|
|
2082
2300
|
"name": "PaddleNavContent",
|
|
2083
2301
|
"defaultProps": {},
|
|
@@ -2128,224 +2346,24 @@
|
|
|
2128
2346
|
"Icon"
|
|
2129
2347
|
],
|
|
2130
2348
|
"internalComponentProps": {
|
|
2131
|
-
"Icon": {
|
|
2132
|
-
"size": [
|
|
2133
|
-
"md"
|
|
2134
|
-
],
|
|
2135
|
-
"color": [
|
|
2136
|
-
"current"
|
|
2137
|
-
]
|
|
2138
|
-
}
|
|
2139
|
-
},
|
|
2140
|
-
"propToVariantKeys": {
|
|
2141
|
-
"size": [
|
|
2142
|
-
"paddlenavSizeRoot",
|
|
2143
|
-
"paddlenavSizeIcon"
|
|
2144
|
-
],
|
|
2145
|
-
"variant": [
|
|
2146
|
-
"paddlenavVariantRoot",
|
|
2147
|
-
"paddlenavVariantBackground",
|
|
2148
|
-
"paddlenavVariantIcon"
|
|
2149
|
-
]
|
|
2150
|
-
},
|
|
2151
|
-
"runtimeConfigDefaultProps": {},
|
|
2152
|
-
"runtimeConfigGetStyles": {},
|
|
2153
|
-
"runtimeConfigInternalComponentProps": {},
|
|
2154
|
-
"motionVarPrefixes": []
|
|
2155
|
-
},
|
|
2156
|
-
"PaddleButtonPrevious": {
|
|
2157
|
-
"name": "PaddleButtonPrevious",
|
|
2158
|
-
"defaultProps": {},
|
|
2159
|
-
"getStylesLiterals": {},
|
|
2160
|
-
"cxLiterals": [],
|
|
2161
|
-
"internalComponents": [
|
|
2162
|
-
"PaddleButton"
|
|
2163
|
-
],
|
|
2164
|
-
"internalComponentProps": {
|
|
2165
|
-
"PaddleButton": {
|
|
2166
|
-
"paddleRole": [
|
|
2167
|
-
"previous"
|
|
2168
|
-
]
|
|
2169
|
-
}
|
|
2170
|
-
},
|
|
2171
|
-
"propToVariantKeys": {},
|
|
2172
|
-
"runtimeConfigDefaultProps": {},
|
|
2173
|
-
"runtimeConfigGetStyles": {},
|
|
2174
|
-
"runtimeConfigInternalComponentProps": {},
|
|
2175
|
-
"motionVarPrefixes": []
|
|
2176
|
-
},
|
|
2177
|
-
"PaddleNav": {
|
|
2178
|
-
"name": "PaddleNav",
|
|
2179
|
-
"defaultProps": {
|
|
2180
|
-
"orientation": "horizontal",
|
|
2181
|
-
"variant": "primary",
|
|
2182
|
-
"size": "md"
|
|
2183
|
-
},
|
|
2184
|
-
"getStylesLiterals": {},
|
|
2185
|
-
"cxLiterals": [
|
|
2186
|
-
"pointer-events-none",
|
|
2187
|
-
"inline-flex",
|
|
2188
|
-
"flex-row",
|
|
2189
|
-
"gap-2",
|
|
2190
|
-
"items-center",
|
|
2191
|
-
"pointer-events-auto",
|
|
2192
|
-
"flex-col",
|
|
2193
|
-
"relative",
|
|
2194
|
-
"min-w-0",
|
|
2195
|
-
"min-h-0",
|
|
2196
|
-
"flex-1",
|
|
2197
|
-
"inline-block",
|
|
2198
|
-
"absolute",
|
|
2199
|
-
"z-10",
|
|
2200
|
-
"top-2",
|
|
2201
|
-
"left-1/2",
|
|
2202
|
-
"-translate-x-1/2",
|
|
2203
|
-
"left-2",
|
|
2204
|
-
"top-1/2",
|
|
2205
|
-
"-translate-y-1/2",
|
|
2206
|
-
"bottom-2",
|
|
2207
|
-
"right-2",
|
|
2208
|
-
"-top-12",
|
|
2209
|
-
"left-0",
|
|
2210
|
-
"right-0",
|
|
2211
|
-
"-bottom-12"
|
|
2212
|
-
],
|
|
2213
|
-
"internalComponents": [
|
|
2214
|
-
"PaddleNavContext.Provider",
|
|
2215
|
-
"Box"
|
|
2216
|
-
],
|
|
2217
|
-
"internalComponentProps": {
|
|
2218
|
-
"Box": {
|
|
2219
|
-
"display": [
|
|
2220
|
-
"inline-flex"
|
|
2221
|
-
],
|
|
2222
|
-
"alignItems": [
|
|
2223
|
-
"center"
|
|
2224
|
-
],
|
|
2225
|
-
"justifyContent": [
|
|
2226
|
-
"center"
|
|
2227
|
-
],
|
|
2228
|
-
"data-paddle-nav-outside": [
|
|
2229
|
-
"true"
|
|
2230
|
-
]
|
|
2231
|
-
}
|
|
2232
|
-
},
|
|
2233
|
-
"propToVariantKeys": {
|
|
2234
|
-
"orientation": [
|
|
2235
|
-
"data-paddle-nav-orientation"
|
|
2236
|
-
]
|
|
2237
|
-
},
|
|
2238
|
-
"runtimeConfigDefaultProps": {},
|
|
2239
|
-
"runtimeConfigGetStyles": {},
|
|
2240
|
-
"runtimeConfigInternalComponentProps": {},
|
|
2241
|
-
"motionVarPrefixes": []
|
|
2242
|
-
},
|
|
2243
|
-
"PaddleButtonNext": {
|
|
2244
|
-
"name": "PaddleButtonNext",
|
|
2245
|
-
"defaultProps": {},
|
|
2246
|
-
"getStylesLiterals": {},
|
|
2247
|
-
"cxLiterals": [],
|
|
2248
|
-
"internalComponents": [
|
|
2249
|
-
"PaddleButton"
|
|
2250
|
-
],
|
|
2251
|
-
"internalComponentProps": {
|
|
2252
|
-
"PaddleButton": {
|
|
2253
|
-
"paddleRole": [
|
|
2254
|
-
"next"
|
|
2255
|
-
]
|
|
2256
|
-
}
|
|
2257
|
-
},
|
|
2258
|
-
"propToVariantKeys": {},
|
|
2259
|
-
"runtimeConfigDefaultProps": {},
|
|
2260
|
-
"runtimeConfigGetStyles": {},
|
|
2261
|
-
"runtimeConfigInternalComponentProps": {},
|
|
2262
|
-
"motionVarPrefixes": []
|
|
2263
|
-
},
|
|
2264
|
-
"ChipButton": {
|
|
2265
|
-
"name": "ChipButton",
|
|
2266
|
-
"defaultProps": {
|
|
2267
|
-
"variant": "primary"
|
|
2268
|
-
},
|
|
2269
|
-
"getStylesLiterals": {},
|
|
2270
|
-
"cxLiterals": [
|
|
2271
|
-
"uds-ring"
|
|
2272
|
-
],
|
|
2273
|
-
"internalComponents": [
|
|
2274
|
-
"ChipBase"
|
|
2275
|
-
],
|
|
2276
|
-
"internalComponentProps": {
|
|
2277
|
-
"ChipBase": {
|
|
2278
|
-
"as": [
|
|
2279
|
-
"button"
|
|
2280
|
-
]
|
|
2281
|
-
}
|
|
2282
|
-
},
|
|
2283
|
-
"propToVariantKeys": {
|
|
2284
|
-
"variant": [
|
|
2285
|
-
"chipLinkVariantRoot",
|
|
2286
|
-
"chipLinkVariantIcon"
|
|
2287
|
-
]
|
|
2288
|
-
},
|
|
2289
|
-
"runtimeConfigDefaultProps": {},
|
|
2290
|
-
"runtimeConfigGetStyles": {},
|
|
2291
|
-
"runtimeConfigInternalComponentProps": {},
|
|
2292
|
-
"motionVarPrefixes": []
|
|
2293
|
-
},
|
|
2294
|
-
"ChipDismissible": {
|
|
2295
|
-
"name": "ChipDismissible",
|
|
2296
|
-
"defaultProps": {
|
|
2297
|
-
"variant": "primary"
|
|
2298
|
-
},
|
|
2299
|
-
"getStylesLiterals": {},
|
|
2300
|
-
"cxLiterals": [
|
|
2301
|
-
"uds-chip-dismissible-button",
|
|
2302
|
-
"uds-hit-target",
|
|
2303
|
-
"uds-ring",
|
|
2304
|
-
"rounded-full"
|
|
2305
|
-
],
|
|
2306
|
-
"internalComponents": [
|
|
2307
|
-
"ChipBase",
|
|
2308
|
-
"IconSlot",
|
|
2309
|
-
"Pressable"
|
|
2310
|
-
],
|
|
2311
|
-
"internalComponentProps": {},
|
|
2312
|
-
"propToVariantKeys": {
|
|
2313
|
-
"variant": [
|
|
2314
|
-
"chipDismissibleVariantRoot",
|
|
2315
|
-
"chipDismissibleVariantIcon"
|
|
2316
|
-
],
|
|
2317
|
-
"dismissButtonAriaLabel": [
|
|
2318
|
-
"aria-label"
|
|
2319
|
-
]
|
|
2320
|
-
},
|
|
2321
|
-
"runtimeConfigDefaultProps": {},
|
|
2322
|
-
"runtimeConfigGetStyles": {},
|
|
2323
|
-
"runtimeConfigInternalComponentProps": {},
|
|
2324
|
-
"motionVarPrefixes": []
|
|
2325
|
-
},
|
|
2326
|
-
"ChipLink": {
|
|
2327
|
-
"name": "ChipLink",
|
|
2328
|
-
"defaultProps": {
|
|
2329
|
-
"variant": "primary"
|
|
2330
|
-
},
|
|
2331
|
-
"getStylesLiterals": {},
|
|
2332
|
-
"cxLiterals": [
|
|
2333
|
-
"uds-ring"
|
|
2334
|
-
],
|
|
2335
|
-
"internalComponents": [
|
|
2336
|
-
"ChipBase"
|
|
2337
|
-
],
|
|
2338
|
-
"internalComponentProps": {
|
|
2339
|
-
"ChipBase": {
|
|
2340
|
-
"as": [
|
|
2341
|
-
"a"
|
|
2349
|
+
"Icon": {
|
|
2350
|
+
"size": [
|
|
2351
|
+
"md"
|
|
2352
|
+
],
|
|
2353
|
+
"color": [
|
|
2354
|
+
"current"
|
|
2342
2355
|
]
|
|
2343
2356
|
}
|
|
2344
2357
|
},
|
|
2345
2358
|
"propToVariantKeys": {
|
|
2359
|
+
"size": [
|
|
2360
|
+
"paddlenavSizeRoot",
|
|
2361
|
+
"paddlenavSizeIcon"
|
|
2362
|
+
],
|
|
2346
2363
|
"variant": [
|
|
2347
|
-
"
|
|
2348
|
-
"
|
|
2364
|
+
"paddlenavVariantRoot",
|
|
2365
|
+
"paddlenavVariantBackground",
|
|
2366
|
+
"paddlenavVariantIcon"
|
|
2349
2367
|
]
|
|
2350
2368
|
},
|
|
2351
2369
|
"runtimeConfigDefaultProps": {},
|
|
@@ -2353,51 +2371,86 @@
|
|
|
2353
2371
|
"runtimeConfigInternalComponentProps": {},
|
|
2354
2372
|
"motionVarPrefixes": []
|
|
2355
2373
|
},
|
|
2356
|
-
"
|
|
2357
|
-
"name": "
|
|
2374
|
+
"PaddleButtonPrevious": {
|
|
2375
|
+
"name": "PaddleButtonPrevious",
|
|
2358
2376
|
"defaultProps": {},
|
|
2359
2377
|
"getStylesLiterals": {},
|
|
2360
2378
|
"cxLiterals": [],
|
|
2361
2379
|
"internalComponents": [
|
|
2362
|
-
"
|
|
2363
|
-
"ChipToggle",
|
|
2364
|
-
"ChipLink",
|
|
2365
|
-
"ChipButton"
|
|
2380
|
+
"PaddleButton"
|
|
2366
2381
|
],
|
|
2367
|
-
"internalComponentProps": {
|
|
2382
|
+
"internalComponentProps": {
|
|
2383
|
+
"PaddleButton": {
|
|
2384
|
+
"paddleRole": [
|
|
2385
|
+
"previous"
|
|
2386
|
+
]
|
|
2387
|
+
}
|
|
2388
|
+
},
|
|
2368
2389
|
"propToVariantKeys": {},
|
|
2369
2390
|
"runtimeConfigDefaultProps": {},
|
|
2370
2391
|
"runtimeConfigGetStyles": {},
|
|
2371
2392
|
"runtimeConfigInternalComponentProps": {},
|
|
2372
2393
|
"motionVarPrefixes": []
|
|
2373
2394
|
},
|
|
2374
|
-
"
|
|
2375
|
-
"name": "
|
|
2395
|
+
"PaddleNav": {
|
|
2396
|
+
"name": "PaddleNav",
|
|
2376
2397
|
"defaultProps": {
|
|
2398
|
+
"orientation": "horizontal",
|
|
2377
2399
|
"variant": "primary",
|
|
2378
|
-
"
|
|
2379
|
-
},
|
|
2380
|
-
"getStylesLiterals": {
|
|
2381
|
-
"chipToggleVariantActiveRoot": "on",
|
|
2382
|
-
"chipToggleVariantActiveRoot:1": "off"
|
|
2400
|
+
"size": "md"
|
|
2383
2401
|
},
|
|
2402
|
+
"getStylesLiterals": {},
|
|
2384
2403
|
"cxLiterals": [
|
|
2385
|
-
"
|
|
2404
|
+
"pointer-events-none",
|
|
2405
|
+
"inline-flex",
|
|
2406
|
+
"flex-row",
|
|
2407
|
+
"gap-2",
|
|
2408
|
+
"items-center",
|
|
2409
|
+
"pointer-events-auto",
|
|
2410
|
+
"flex-col",
|
|
2411
|
+
"relative",
|
|
2412
|
+
"min-w-0",
|
|
2413
|
+
"min-h-0",
|
|
2414
|
+
"flex-1",
|
|
2415
|
+
"inline-block",
|
|
2416
|
+
"absolute",
|
|
2417
|
+
"z-10",
|
|
2418
|
+
"top-2",
|
|
2419
|
+
"left-1/2",
|
|
2420
|
+
"-translate-x-1/2",
|
|
2421
|
+
"left-2",
|
|
2422
|
+
"top-1/2",
|
|
2423
|
+
"-translate-y-1/2",
|
|
2424
|
+
"bottom-2",
|
|
2425
|
+
"right-2",
|
|
2426
|
+
"-top-12",
|
|
2427
|
+
"left-0",
|
|
2428
|
+
"right-0",
|
|
2429
|
+
"-bottom-12"
|
|
2386
2430
|
],
|
|
2387
2431
|
"internalComponents": [
|
|
2388
|
-
"
|
|
2432
|
+
"PaddleNavContext.Provider",
|
|
2433
|
+
"Box"
|
|
2389
2434
|
],
|
|
2390
2435
|
"internalComponentProps": {
|
|
2391
|
-
"
|
|
2392
|
-
"
|
|
2393
|
-
"
|
|
2436
|
+
"Box": {
|
|
2437
|
+
"display": [
|
|
2438
|
+
"inline-flex"
|
|
2439
|
+
],
|
|
2440
|
+
"alignItems": [
|
|
2441
|
+
"center"
|
|
2442
|
+
],
|
|
2443
|
+
"justifyContent": [
|
|
2444
|
+
"center"
|
|
2445
|
+
],
|
|
2446
|
+
"data-paddle-nav-outside": [
|
|
2447
|
+
"true"
|
|
2394
2448
|
]
|
|
2395
2449
|
}
|
|
2396
2450
|
},
|
|
2397
2451
|
"propToVariantKeys": {
|
|
2398
|
-
"
|
|
2399
|
-
"
|
|
2400
|
-
"chipToggleVariantIcon"
|
|
2452
|
+
"orientation": [
|
|
2453
|
+
"data-paddle-nav-orientation"
|
|
2401
2454
|
]
|
|
2402
2455
|
},
|
|
2403
2456
|
"runtimeConfigDefaultProps": {},
|
|
@@ -2405,58 +2458,22 @@
|
|
|
2405
2458
|
"runtimeConfigInternalComponentProps": {},
|
|
2406
2459
|
"motionVarPrefixes": []
|
|
2407
2460
|
},
|
|
2408
|
-
"
|
|
2409
|
-
"name": "
|
|
2410
|
-
"defaultProps": {
|
|
2411
|
-
"size": "md",
|
|
2412
|
-
"as": "div"
|
|
2413
|
-
},
|
|
2461
|
+
"PaddleButtonNext": {
|
|
2462
|
+
"name": "PaddleButtonNext",
|
|
2463
|
+
"defaultProps": {},
|
|
2414
2464
|
"getStylesLiterals": {},
|
|
2415
|
-
"cxLiterals": [
|
|
2416
|
-
"pointer-events-none",
|
|
2417
|
-
"cursor-default",
|
|
2418
|
-
"opacity-50",
|
|
2419
|
-
"inline-flex",
|
|
2420
|
-
"items-center",
|
|
2421
|
-
"transition-[background-color,outline-color,box-shadow]",
|
|
2422
|
-
"truncate",
|
|
2423
|
-
"whitespace-nowrap",
|
|
2424
|
-
"text-center",
|
|
2425
|
-
"flex-1",
|
|
2426
|
-
"md",
|
|
2427
|
-
"primary"
|
|
2428
|
-
],
|
|
2465
|
+
"cxLiterals": [],
|
|
2429
2466
|
"internalComponents": [
|
|
2430
|
-
"
|
|
2431
|
-
"HStack",
|
|
2432
|
-
"As",
|
|
2433
|
-
"Text"
|
|
2467
|
+
"PaddleButton"
|
|
2434
2468
|
],
|
|
2435
2469
|
"internalComponentProps": {
|
|
2436
|
-
"
|
|
2437
|
-
"
|
|
2438
|
-
"
|
|
2439
|
-
],
|
|
2440
|
-
"color": [
|
|
2441
|
-
"current"
|
|
2442
|
-
],
|
|
2443
|
-
"variant": [
|
|
2444
|
-
"inherit"
|
|
2470
|
+
"PaddleButton": {
|
|
2471
|
+
"paddleRole": [
|
|
2472
|
+
"next"
|
|
2445
2473
|
]
|
|
2446
2474
|
}
|
|
2447
2475
|
},
|
|
2448
|
-
"propToVariantKeys": {
|
|
2449
|
-
"size": [
|
|
2450
|
-
"chipSizeRoot",
|
|
2451
|
-
"chipSizeIcon"
|
|
2452
|
-
],
|
|
2453
|
-
"startIcon": [
|
|
2454
|
-
"icon"
|
|
2455
|
-
],
|
|
2456
|
-
"endIcon": [
|
|
2457
|
-
"icon"
|
|
2458
|
-
]
|
|
2459
|
-
},
|
|
2476
|
+
"propToVariantKeys": {},
|
|
2460
2477
|
"runtimeConfigDefaultProps": {},
|
|
2461
2478
|
"runtimeConfigGetStyles": {},
|
|
2462
2479
|
"runtimeConfigInternalComponentProps": {},
|
|
@@ -2497,7 +2514,9 @@
|
|
|
2497
2514
|
"buttonVariantIcon"
|
|
2498
2515
|
]
|
|
2499
2516
|
},
|
|
2500
|
-
"runtimeConfigDefaultProps": {
|
|
2517
|
+
"runtimeConfigDefaultProps": {
|
|
2518
|
+
"size": "iconButton.defaultSize"
|
|
2519
|
+
},
|
|
2501
2520
|
"runtimeConfigGetStyles": {},
|
|
2502
2521
|
"runtimeConfigInternalComponentProps": {},
|
|
2503
2522
|
"motionVarPrefixes": []
|
|
@@ -2553,6 +2572,21 @@
|
|
|
2553
2572
|
"--uds-motion-smooth-3-"
|
|
2554
2573
|
]
|
|
2555
2574
|
},
|
|
2575
|
+
"UDSIconButtonConfigProvider": {
|
|
2576
|
+
"name": "UDSIconButtonConfigProvider",
|
|
2577
|
+
"defaultProps": {},
|
|
2578
|
+
"getStylesLiterals": {},
|
|
2579
|
+
"cxLiterals": [],
|
|
2580
|
+
"internalComponents": [
|
|
2581
|
+
"IconButtonContext.Provider"
|
|
2582
|
+
],
|
|
2583
|
+
"internalComponentProps": {},
|
|
2584
|
+
"propToVariantKeys": {},
|
|
2585
|
+
"runtimeConfigDefaultProps": {},
|
|
2586
|
+
"runtimeConfigGetStyles": {},
|
|
2587
|
+
"runtimeConfigInternalComponentProps": {},
|
|
2588
|
+
"motionVarPrefixes": []
|
|
2589
|
+
},
|
|
2556
2590
|
"CheckboxBase": {
|
|
2557
2591
|
"name": "CheckboxBase",
|
|
2558
2592
|
"defaultProps": {
|
|
@@ -3120,33 +3154,116 @@
|
|
|
3120
3154
|
"variant": "default"
|
|
3121
3155
|
},
|
|
3122
3156
|
"getStylesLiterals": {},
|
|
3123
|
-
"cxLiterals": [
|
|
3124
|
-
"z-50",
|
|
3125
|
-
"focus:outline-none"
|
|
3126
|
-
],
|
|
3157
|
+
"cxLiterals": [
|
|
3158
|
+
"z-50",
|
|
3159
|
+
"focus:outline-none"
|
|
3160
|
+
],
|
|
3161
|
+
"internalComponents": [
|
|
3162
|
+
"SelectPopover",
|
|
3163
|
+
"VStack"
|
|
3164
|
+
],
|
|
3165
|
+
"internalComponentProps": {
|
|
3166
|
+
"VStack": {
|
|
3167
|
+
"elevation": [
|
|
3168
|
+
"3"
|
|
3169
|
+
],
|
|
3170
|
+
"overflow": [
|
|
3171
|
+
"auto"
|
|
3172
|
+
],
|
|
3173
|
+
"borderRadius": [
|
|
3174
|
+
"md"
|
|
3175
|
+
]
|
|
3176
|
+
}
|
|
3177
|
+
},
|
|
3178
|
+
"propToVariantKeys": {
|
|
3179
|
+
"size": [
|
|
3180
|
+
"selectcontentSizeRoot"
|
|
3181
|
+
],
|
|
3182
|
+
"variant": [
|
|
3183
|
+
"selectcontentVariantRoot"
|
|
3184
|
+
]
|
|
3185
|
+
},
|
|
3186
|
+
"runtimeConfigDefaultProps": {},
|
|
3187
|
+
"runtimeConfigGetStyles": {},
|
|
3188
|
+
"runtimeConfigInternalComponentProps": {},
|
|
3189
|
+
"motionVarPrefixes": []
|
|
3190
|
+
},
|
|
3191
|
+
"SelectDivider": {
|
|
3192
|
+
"name": "SelectDivider",
|
|
3193
|
+
"defaultProps": {
|
|
3194
|
+
"contentPosition": "start",
|
|
3195
|
+
"gap": "4"
|
|
3196
|
+
},
|
|
3197
|
+
"getStylesLiterals": {
|
|
3198
|
+
"selectitemDividerVariantRoot": "default",
|
|
3199
|
+
"selectitemDividerVariantText": "default",
|
|
3200
|
+
"selectitemDividerVariantLine": "default"
|
|
3201
|
+
},
|
|
3202
|
+
"cxLiterals": [],
|
|
3203
|
+
"internalComponents": [
|
|
3204
|
+
"Divider"
|
|
3205
|
+
],
|
|
3206
|
+
"internalComponentProps": {
|
|
3207
|
+
"Divider": {
|
|
3208
|
+
"variant": [
|
|
3209
|
+
"inherit"
|
|
3210
|
+
]
|
|
3211
|
+
}
|
|
3212
|
+
},
|
|
3213
|
+
"propToVariantKeys": {},
|
|
3214
|
+
"runtimeConfigDefaultProps": {},
|
|
3215
|
+
"runtimeConfigGetStyles": {},
|
|
3216
|
+
"runtimeConfigInternalComponentProps": {},
|
|
3217
|
+
"motionVarPrefixes": []
|
|
3218
|
+
},
|
|
3219
|
+
"SelectValue": {
|
|
3220
|
+
"name": "SelectValue",
|
|
3221
|
+
"defaultProps": {},
|
|
3222
|
+
"getStylesLiterals": {},
|
|
3223
|
+
"cxLiterals": [],
|
|
3224
|
+
"internalComponents": [
|
|
3225
|
+
"AriakitSelectValue"
|
|
3226
|
+
],
|
|
3227
|
+
"internalComponentProps": {},
|
|
3228
|
+
"propToVariantKeys": {},
|
|
3229
|
+
"runtimeConfigDefaultProps": {},
|
|
3230
|
+
"runtimeConfigGetStyles": {},
|
|
3231
|
+
"runtimeConfigInternalComponentProps": {},
|
|
3232
|
+
"motionVarPrefixes": []
|
|
3233
|
+
},
|
|
3234
|
+
"UDSTooltipConfigProvider": {
|
|
3235
|
+
"name": "UDSTooltipConfigProvider",
|
|
3236
|
+
"defaultProps": {},
|
|
3237
|
+
"getStylesLiterals": {},
|
|
3238
|
+
"cxLiterals": [],
|
|
3239
|
+
"internalComponents": [
|
|
3240
|
+
"TooltipContext.Provider"
|
|
3241
|
+
],
|
|
3242
|
+
"internalComponentProps": {},
|
|
3243
|
+
"propToVariantKeys": {},
|
|
3244
|
+
"runtimeConfigDefaultProps": {},
|
|
3245
|
+
"runtimeConfigGetStyles": {},
|
|
3246
|
+
"runtimeConfigInternalComponentProps": {},
|
|
3247
|
+
"motionVarPrefixes": []
|
|
3248
|
+
},
|
|
3249
|
+
"TooltipTrigger": {
|
|
3250
|
+
"name": "TooltipTrigger",
|
|
3251
|
+
"defaultProps": {},
|
|
3252
|
+
"getStylesLiterals": {},
|
|
3253
|
+
"cxLiterals": [],
|
|
3127
3254
|
"internalComponents": [
|
|
3128
|
-
"
|
|
3129
|
-
"VStack"
|
|
3255
|
+
"TooltipAnchor"
|
|
3130
3256
|
],
|
|
3131
3257
|
"internalComponentProps": {
|
|
3132
|
-
"
|
|
3133
|
-
"
|
|
3134
|
-
"
|
|
3135
|
-
],
|
|
3136
|
-
"overflow": [
|
|
3137
|
-
"auto"
|
|
3138
|
-
],
|
|
3139
|
-
"borderRadius": [
|
|
3140
|
-
"md"
|
|
3258
|
+
"TooltipAnchor": {
|
|
3259
|
+
"className": [
|
|
3260
|
+
"inline"
|
|
3141
3261
|
]
|
|
3142
3262
|
}
|
|
3143
3263
|
},
|
|
3144
3264
|
"propToVariantKeys": {
|
|
3145
|
-
"
|
|
3146
|
-
"
|
|
3147
|
-
],
|
|
3148
|
-
"variant": [
|
|
3149
|
-
"selectcontentVariantRoot"
|
|
3265
|
+
"children": [
|
|
3266
|
+
"render"
|
|
3150
3267
|
]
|
|
3151
3268
|
},
|
|
3152
3269
|
"runtimeConfigDefaultProps": {},
|
|
@@ -3154,47 +3271,99 @@
|
|
|
3154
3271
|
"runtimeConfigInternalComponentProps": {},
|
|
3155
3272
|
"motionVarPrefixes": []
|
|
3156
3273
|
},
|
|
3157
|
-
"
|
|
3158
|
-
"name": "
|
|
3159
|
-
"defaultProps": {
|
|
3160
|
-
"contentPosition": "start",
|
|
3161
|
-
"gap": "4"
|
|
3162
|
-
},
|
|
3274
|
+
"TooltipContent": {
|
|
3275
|
+
"name": "TooltipContent",
|
|
3276
|
+
"defaultProps": {},
|
|
3163
3277
|
"getStylesLiterals": {
|
|
3164
|
-
"
|
|
3165
|
-
"
|
|
3166
|
-
"
|
|
3278
|
+
"tooltipSizeRoot": "default",
|
|
3279
|
+
"tooltipVariantRoot": "default",
|
|
3280
|
+
"tooltipSizeSvg": "default",
|
|
3281
|
+
"tooltipVariantSvg": "default",
|
|
3282
|
+
"tooltipVariantBlur": "default",
|
|
3283
|
+
"position": "absolute",
|
|
3284
|
+
"width": "full",
|
|
3285
|
+
"height": "full",
|
|
3286
|
+
"tooltipSizeTitle": "default",
|
|
3287
|
+
"tooltipSizeBody": "default",
|
|
3288
|
+
"tooltipSizeEndContent": "default",
|
|
3289
|
+
"tooltipSizeIcon": "default",
|
|
3290
|
+
"tooltipVariantIcon": "default"
|
|
3167
3291
|
},
|
|
3168
|
-
"cxLiterals": [
|
|
3292
|
+
"cxLiterals": [
|
|
3293
|
+
"max-w-lg",
|
|
3294
|
+
"flex",
|
|
3295
|
+
"z-[9999]",
|
|
3296
|
+
"uds-bgBlurFillFallback",
|
|
3297
|
+
"uds-bgBlurFallback",
|
|
3298
|
+
"top-0",
|
|
3299
|
+
"left-0",
|
|
3300
|
+
"z-[1]"
|
|
3301
|
+
],
|
|
3169
3302
|
"internalComponents": [
|
|
3170
|
-
"
|
|
3303
|
+
"IconSlot",
|
|
3304
|
+
"TooltipArrow",
|
|
3305
|
+
"Tooltip",
|
|
3306
|
+
"SvgFloatingOverlay",
|
|
3307
|
+
"VStack",
|
|
3308
|
+
"Box",
|
|
3309
|
+
"Text"
|
|
3171
3310
|
],
|
|
3172
3311
|
"internalComponentProps": {
|
|
3173
|
-
"
|
|
3174
|
-
"
|
|
3312
|
+
"SvgFloatingOverlay": {
|
|
3313
|
+
"contentOverflow": [
|
|
3314
|
+
"visible"
|
|
3315
|
+
]
|
|
3316
|
+
},
|
|
3317
|
+
"VStack": {
|
|
3318
|
+
"className": [
|
|
3319
|
+
"gap-[inherit]"
|
|
3320
|
+
]
|
|
3321
|
+
},
|
|
3322
|
+
"Box": {
|
|
3323
|
+
"alignItems": [
|
|
3324
|
+
"center"
|
|
3325
|
+
],
|
|
3326
|
+
"columnGap": [
|
|
3327
|
+
"1",
|
|
3328
|
+
"1.5"
|
|
3329
|
+
]
|
|
3330
|
+
},
|
|
3331
|
+
"Text": {
|
|
3332
|
+
"color": [
|
|
3175
3333
|
"inherit"
|
|
3176
3334
|
]
|
|
3177
3335
|
}
|
|
3178
3336
|
},
|
|
3179
|
-
"propToVariantKeys": {
|
|
3337
|
+
"propToVariantKeys": {
|
|
3338
|
+
"startTitleIcon": [
|
|
3339
|
+
"icon"
|
|
3340
|
+
]
|
|
3341
|
+
},
|
|
3180
3342
|
"runtimeConfigDefaultProps": {},
|
|
3181
3343
|
"runtimeConfigGetStyles": {},
|
|
3182
3344
|
"runtimeConfigInternalComponentProps": {},
|
|
3183
3345
|
"motionVarPrefixes": []
|
|
3184
3346
|
},
|
|
3185
|
-
"
|
|
3186
|
-
"name": "
|
|
3347
|
+
"Tooltip": {
|
|
3348
|
+
"name": "Tooltip",
|
|
3187
3349
|
"defaultProps": {},
|
|
3188
3350
|
"getStylesLiterals": {},
|
|
3189
3351
|
"cxLiterals": [],
|
|
3190
3352
|
"internalComponents": [
|
|
3191
|
-
"
|
|
3353
|
+
"TooltipInternalContext.Provider",
|
|
3354
|
+
"TooltipProvider"
|
|
3192
3355
|
],
|
|
3193
3356
|
"internalComponentProps": {},
|
|
3194
3357
|
"propToVariantKeys": {},
|
|
3195
3358
|
"runtimeConfigDefaultProps": {},
|
|
3196
3359
|
"runtimeConfigGetStyles": {},
|
|
3197
|
-
"runtimeConfigInternalComponentProps": {
|
|
3360
|
+
"runtimeConfigInternalComponentProps": {
|
|
3361
|
+
"TooltipProvider": {
|
|
3362
|
+
"animated": [
|
|
3363
|
+
"tooltip.animationDuration"
|
|
3364
|
+
]
|
|
3365
|
+
}
|
|
3366
|
+
},
|
|
3198
3367
|
"motionVarPrefixes": []
|
|
3199
3368
|
},
|
|
3200
3369
|
"PaginationEllipsis": {
|
|
@@ -3657,141 +3826,6 @@
|
|
|
3657
3826
|
"runtimeConfigInternalComponentProps": {},
|
|
3658
3827
|
"motionVarPrefixes": []
|
|
3659
3828
|
},
|
|
3660
|
-
"UDSTooltipConfigProvider": {
|
|
3661
|
-
"name": "UDSTooltipConfigProvider",
|
|
3662
|
-
"defaultProps": {},
|
|
3663
|
-
"getStylesLiterals": {},
|
|
3664
|
-
"cxLiterals": [],
|
|
3665
|
-
"internalComponents": [
|
|
3666
|
-
"TooltipContext.Provider"
|
|
3667
|
-
],
|
|
3668
|
-
"internalComponentProps": {},
|
|
3669
|
-
"propToVariantKeys": {},
|
|
3670
|
-
"runtimeConfigDefaultProps": {},
|
|
3671
|
-
"runtimeConfigGetStyles": {},
|
|
3672
|
-
"runtimeConfigInternalComponentProps": {},
|
|
3673
|
-
"motionVarPrefixes": []
|
|
3674
|
-
},
|
|
3675
|
-
"TooltipTrigger": {
|
|
3676
|
-
"name": "TooltipTrigger",
|
|
3677
|
-
"defaultProps": {},
|
|
3678
|
-
"getStylesLiterals": {},
|
|
3679
|
-
"cxLiterals": [],
|
|
3680
|
-
"internalComponents": [
|
|
3681
|
-
"TooltipAnchor"
|
|
3682
|
-
],
|
|
3683
|
-
"internalComponentProps": {
|
|
3684
|
-
"TooltipAnchor": {
|
|
3685
|
-
"className": [
|
|
3686
|
-
"inline"
|
|
3687
|
-
]
|
|
3688
|
-
}
|
|
3689
|
-
},
|
|
3690
|
-
"propToVariantKeys": {
|
|
3691
|
-
"children": [
|
|
3692
|
-
"render"
|
|
3693
|
-
]
|
|
3694
|
-
},
|
|
3695
|
-
"runtimeConfigDefaultProps": {},
|
|
3696
|
-
"runtimeConfigGetStyles": {},
|
|
3697
|
-
"runtimeConfigInternalComponentProps": {},
|
|
3698
|
-
"motionVarPrefixes": []
|
|
3699
|
-
},
|
|
3700
|
-
"TooltipContent": {
|
|
3701
|
-
"name": "TooltipContent",
|
|
3702
|
-
"defaultProps": {},
|
|
3703
|
-
"getStylesLiterals": {
|
|
3704
|
-
"tooltipSizeRoot": "default",
|
|
3705
|
-
"tooltipVariantRoot": "default",
|
|
3706
|
-
"tooltipSizeSvg": "default",
|
|
3707
|
-
"tooltipVariantSvg": "default",
|
|
3708
|
-
"tooltipVariantBlur": "default",
|
|
3709
|
-
"position": "absolute",
|
|
3710
|
-
"width": "full",
|
|
3711
|
-
"height": "full",
|
|
3712
|
-
"tooltipSizeTitle": "default",
|
|
3713
|
-
"tooltipSizeBody": "default",
|
|
3714
|
-
"tooltipSizeEndContent": "default",
|
|
3715
|
-
"tooltipSizeIcon": "default",
|
|
3716
|
-
"tooltipVariantIcon": "default"
|
|
3717
|
-
},
|
|
3718
|
-
"cxLiterals": [
|
|
3719
|
-
"max-w-lg",
|
|
3720
|
-
"flex",
|
|
3721
|
-
"z-[9999]",
|
|
3722
|
-
"uds-bgBlurFillFallback",
|
|
3723
|
-
"uds-bgBlurFallback",
|
|
3724
|
-
"top-0",
|
|
3725
|
-
"left-0",
|
|
3726
|
-
"z-[1]"
|
|
3727
|
-
],
|
|
3728
|
-
"internalComponents": [
|
|
3729
|
-
"IconSlot",
|
|
3730
|
-
"TooltipArrow",
|
|
3731
|
-
"Tooltip",
|
|
3732
|
-
"SvgFloatingOverlay",
|
|
3733
|
-
"VStack",
|
|
3734
|
-
"Box",
|
|
3735
|
-
"Text"
|
|
3736
|
-
],
|
|
3737
|
-
"internalComponentProps": {
|
|
3738
|
-
"SvgFloatingOverlay": {
|
|
3739
|
-
"contentOverflow": [
|
|
3740
|
-
"visible"
|
|
3741
|
-
]
|
|
3742
|
-
},
|
|
3743
|
-
"VStack": {
|
|
3744
|
-
"className": [
|
|
3745
|
-
"gap-[inherit]"
|
|
3746
|
-
]
|
|
3747
|
-
},
|
|
3748
|
-
"Box": {
|
|
3749
|
-
"alignItems": [
|
|
3750
|
-
"center"
|
|
3751
|
-
],
|
|
3752
|
-
"columnGap": [
|
|
3753
|
-
"1",
|
|
3754
|
-
"1.5"
|
|
3755
|
-
]
|
|
3756
|
-
},
|
|
3757
|
-
"Text": {
|
|
3758
|
-
"color": [
|
|
3759
|
-
"inherit"
|
|
3760
|
-
]
|
|
3761
|
-
}
|
|
3762
|
-
},
|
|
3763
|
-
"propToVariantKeys": {
|
|
3764
|
-
"startTitleIcon": [
|
|
3765
|
-
"icon"
|
|
3766
|
-
]
|
|
3767
|
-
},
|
|
3768
|
-
"runtimeConfigDefaultProps": {},
|
|
3769
|
-
"runtimeConfigGetStyles": {},
|
|
3770
|
-
"runtimeConfigInternalComponentProps": {},
|
|
3771
|
-
"motionVarPrefixes": []
|
|
3772
|
-
},
|
|
3773
|
-
"Tooltip": {
|
|
3774
|
-
"name": "Tooltip",
|
|
3775
|
-
"defaultProps": {},
|
|
3776
|
-
"getStylesLiterals": {},
|
|
3777
|
-
"cxLiterals": [],
|
|
3778
|
-
"internalComponents": [
|
|
3779
|
-
"TooltipInternalContext.Provider",
|
|
3780
|
-
"TooltipProvider"
|
|
3781
|
-
],
|
|
3782
|
-
"internalComponentProps": {},
|
|
3783
|
-
"propToVariantKeys": {},
|
|
3784
|
-
"runtimeConfigDefaultProps": {},
|
|
3785
|
-
"runtimeConfigGetStyles": {},
|
|
3786
|
-
"runtimeConfigInternalComponentProps": {
|
|
3787
|
-
"TooltipProvider": {
|
|
3788
|
-
"animated": [
|
|
3789
|
-
"tooltip.animationDuration"
|
|
3790
|
-
]
|
|
3791
|
-
}
|
|
3792
|
-
},
|
|
3793
|
-
"motionVarPrefixes": []
|
|
3794
|
-
},
|
|
3795
3829
|
"UDSBreakpointsConfigProvider": {
|
|
3796
3830
|
"name": "UDSBreakpointsConfigProvider",
|
|
3797
3831
|
"defaultProps": {},
|
|
@@ -3815,6 +3849,8 @@
|
|
|
3815
3849
|
"internalComponents": [
|
|
3816
3850
|
"UDSBreakpointsConfigProvider",
|
|
3817
3851
|
"UDSBottomSheetConfigProvider",
|
|
3852
|
+
"UDSButtonConfigProvider",
|
|
3853
|
+
"UDSIconButtonConfigProvider",
|
|
3818
3854
|
"UDSToastConfigProvider",
|
|
3819
3855
|
"UDSTooltipConfigProvider",
|
|
3820
3856
|
"UDSPopoverConfigProvider",
|