@yahoo/uds 3.114.0-beta.3 → 3.114.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.
Files changed (249) hide show
  1. package/dist/automated-config/dist/generated/autoVariants.cjs +3 -0
  2. package/dist/automated-config/dist/generated/autoVariants.d.cts +3 -0
  3. package/dist/automated-config/dist/generated/autoVariants.d.ts +3 -0
  4. package/dist/automated-config/dist/generated/autoVariants.js +3 -0
  5. package/dist/automated-config/dist/generated/generatedConfigs.cjs +1883 -0
  6. package/dist/automated-config/dist/generated/generatedConfigs.d.cts +175 -1
  7. package/dist/automated-config/dist/generated/generatedConfigs.d.ts +175 -1
  8. package/dist/automated-config/dist/generated/generatedConfigs.js +1882 -1
  9. package/dist/automated-config/dist/generated/universalTokensConfigAuto.cjs +84 -0
  10. package/dist/automated-config/dist/generated/universalTokensConfigAuto.d.cts +3 -1
  11. package/dist/automated-config/dist/generated/universalTokensConfigAuto.d.ts +3 -1
  12. package/dist/automated-config/dist/generated/universalTokensConfigAuto.js +84 -0
  13. package/dist/automated-config/dist/mapTextVariantFixtureToValue.cjs +1 -12
  14. package/dist/automated-config/dist/mapTextVariantFixtureToValue.js +1 -12
  15. package/dist/automated-config/dist/properties.cjs +58 -12
  16. package/dist/automated-config/dist/properties.d.cts +8 -0
  17. package/dist/automated-config/dist/properties.d.ts +8 -0
  18. package/dist/automated-config/dist/properties.js +58 -12
  19. package/dist/automated-config/dist/utils/getConfigVariantProperties.d.cts +2 -2
  20. package/dist/automated-config/dist/utils/getConfigVariantProperties.d.ts +2 -2
  21. package/dist/cli/commands/sync.cjs +7 -1
  22. package/dist/cli/commands/sync.d.cts +1 -1
  23. package/dist/cli/commands/sync.d.ts +1 -1
  24. package/dist/cli/commands/sync.js +7 -1
  25. package/dist/cli/commands/version.cjs +2 -0
  26. package/dist/cli/commands/version.d.cts +1 -1
  27. package/dist/cli/commands/version.d.ts +1 -1
  28. package/dist/cli/commands/version.js +2 -0
  29. package/dist/cli/dist/cli.cjs +1 -1
  30. package/dist/cli/dist/cli.js +1 -1
  31. package/dist/cli/dist/commands/editor-rules.cjs +2 -2
  32. package/dist/cli/dist/commands/editor-rules.js +2 -2
  33. package/dist/cli/dist/utils/rules/config.cjs +1 -1
  34. package/dist/cli/dist/utils/rules/config.js +1 -1
  35. package/dist/cli/runner.cjs +2 -11
  36. package/dist/cli/runner.js +2 -11
  37. package/dist/components/Scrim.cjs +28 -0
  38. package/dist/components/Scrim.d.cts +14 -0
  39. package/dist/components/Scrim.d.ts +14 -0
  40. package/dist/components/Scrim.js +26 -0
  41. package/dist/components/client/BottomSheet/BottomSheet.cjs +209 -0
  42. package/dist/components/client/BottomSheet/BottomSheet.d.cts +77 -0
  43. package/dist/components/client/BottomSheet/BottomSheet.d.ts +77 -0
  44. package/dist/components/client/BottomSheet/BottomSheet.js +207 -0
  45. package/dist/components/client/BottomSheet/BottomSheetContent.cjs +26 -0
  46. package/dist/components/client/BottomSheet/BottomSheetContent.d.cts +15 -0
  47. package/dist/components/client/BottomSheet/BottomSheetContent.d.ts +15 -0
  48. package/dist/components/client/BottomSheet/BottomSheetContent.js +24 -0
  49. package/dist/components/client/BottomSheet/BottomSheetDismiss.cjs +15 -0
  50. package/dist/components/client/BottomSheet/BottomSheetDismiss.d.cts +12 -0
  51. package/dist/components/client/BottomSheet/BottomSheetDismiss.d.ts +12 -0
  52. package/dist/components/client/BottomSheet/BottomSheetDismiss.js +13 -0
  53. package/dist/components/client/BottomSheet/BottomSheetHandle.cjs +30 -0
  54. package/dist/components/client/BottomSheet/BottomSheetHandle.d.cts +19 -0
  55. package/dist/components/client/BottomSheet/BottomSheetHandle.d.ts +19 -0
  56. package/dist/components/client/BottomSheet/BottomSheetHandle.js +28 -0
  57. package/dist/components/client/BottomSheet/BottomSheetHeader.cjs +42 -0
  58. package/dist/components/client/BottomSheet/BottomSheetHeader.d.cts +18 -0
  59. package/dist/components/client/BottomSheet/BottomSheetHeader.d.ts +18 -0
  60. package/dist/components/client/BottomSheet/BottomSheetHeader.js +40 -0
  61. package/dist/components/client/BottomSheet/BottomSheetProvider.cjs +21 -0
  62. package/dist/components/client/BottomSheet/BottomSheetProvider.d.cts +19 -0
  63. package/dist/components/client/BottomSheet/BottomSheetProvider.d.ts +19 -0
  64. package/dist/components/client/BottomSheet/BottomSheetProvider.js +19 -0
  65. package/dist/components/client/BottomSheet/BottomSheetTrigger.cjs +15 -0
  66. package/dist/components/client/BottomSheet/BottomSheetTrigger.d.cts +12 -0
  67. package/dist/components/client/BottomSheet/BottomSheetTrigger.d.ts +12 -0
  68. package/dist/components/client/BottomSheet/BottomSheetTrigger.js +13 -0
  69. package/dist/components/client/BottomSheet/UDSBottomSheetConfigProvider.cjs +32 -0
  70. package/dist/components/client/BottomSheet/UDSBottomSheetConfigProvider.d.cts +22 -0
  71. package/dist/components/client/BottomSheet/UDSBottomSheetConfigProvider.d.ts +22 -0
  72. package/dist/components/client/BottomSheet/UDSBottomSheetConfigProvider.js +29 -0
  73. package/dist/components/client/BottomSheet/index.cjs +22 -0
  74. package/dist/components/client/BottomSheet/index.d.cts +10 -0
  75. package/dist/components/client/BottomSheet/index.d.ts +10 -0
  76. package/dist/components/client/BottomSheet/index.js +12 -0
  77. package/dist/components/client/BottomSheet/useBottomSheetDrag.cjs +188 -0
  78. package/dist/components/client/BottomSheet/useBottomSheetDrag.d.cts +44 -0
  79. package/dist/components/client/BottomSheet/useBottomSheetDrag.d.ts +44 -0
  80. package/dist/components/client/BottomSheet/useBottomSheetDrag.js +185 -0
  81. package/dist/components/client/BottomSheet/useBottomSheetSnapModel.cjs +138 -0
  82. package/dist/components/client/BottomSheet/useBottomSheetSnapModel.d.cts +46 -0
  83. package/dist/components/client/BottomSheet/useBottomSheetSnapModel.d.ts +46 -0
  84. package/dist/components/client/BottomSheet/useBottomSheetSnapModel.js +135 -0
  85. package/dist/components/client/BottomSheet/useBottomSheetStore.cjs +34 -0
  86. package/dist/components/client/BottomSheet/useBottomSheetStore.d.cts +38 -0
  87. package/dist/components/client/BottomSheet/useBottomSheetStore.d.ts +38 -0
  88. package/dist/components/client/BottomSheet/useBottomSheetStore.js +31 -0
  89. package/dist/components/client/BottomSheet/useBottomSheetStoreInternal.cjs +17 -0
  90. package/dist/components/client/BottomSheet/useBottomSheetStoreInternal.d.cts +13 -0
  91. package/dist/components/client/BottomSheet/useBottomSheetStoreInternal.d.ts +13 -0
  92. package/dist/components/client/BottomSheet/useBottomSheetStoreInternal.js +15 -0
  93. package/dist/components/client/BottomSheet/useExpansionMargins.cjs +89 -0
  94. package/dist/components/client/BottomSheet/useExpansionMargins.d.cts +34 -0
  95. package/dist/components/client/BottomSheet/useExpansionMargins.d.ts +34 -0
  96. package/dist/components/client/BottomSheet/useExpansionMargins.js +87 -0
  97. package/dist/components/client/BottomSheet/useViewportHeight.cjs +32 -0
  98. package/dist/components/client/BottomSheet/useViewportHeight.d.cts +9 -0
  99. package/dist/components/client/BottomSheet/useViewportHeight.d.ts +9 -0
  100. package/dist/components/client/BottomSheet/useViewportHeight.js +30 -0
  101. package/dist/components/client/BottomSheet/useVirtualKeyboard.cjs +48 -0
  102. package/dist/components/client/BottomSheet/useVirtualKeyboard.d.cts +10 -0
  103. package/dist/components/client/BottomSheet/useVirtualKeyboard.d.ts +10 -0
  104. package/dist/components/client/BottomSheet/useVirtualKeyboard.js +46 -0
  105. package/dist/components/client/BottomSheet/utils.cjs +128 -0
  106. package/dist/components/client/BottomSheet/utils.d.cts +61 -0
  107. package/dist/components/client/BottomSheet/utils.d.ts +61 -0
  108. package/dist/components/client/BottomSheet/utils.js +118 -0
  109. package/dist/components/client/Menu/Menu.Content.cjs +1 -1
  110. package/dist/components/client/Menu/Menu.Content.js +1 -1
  111. package/dist/components/client/Menu/Menu.index.d.cts +1 -1
  112. package/dist/components/client/index.cjs +16 -0
  113. package/dist/components/client/index.d.cts +10 -1
  114. package/dist/components/client/index.d.ts +10 -1
  115. package/dist/components/client/index.js +9 -1
  116. package/dist/components/client/providers/UDSConfigProvider.cjs +10 -6
  117. package/dist/components/client/providers/UDSConfigProvider.d.cts +1 -0
  118. package/dist/components/client/providers/UDSConfigProvider.d.ts +1 -0
  119. package/dist/components/client/providers/UDSConfigProvider.js +10 -6
  120. package/dist/components/index.cjs +24 -0
  121. package/dist/components/index.d.cts +9 -1
  122. package/dist/components/index.d.ts +9 -1
  123. package/dist/components/index.js +17 -1
  124. package/dist/config/dist/index.cjs +110 -2
  125. package/dist/config/dist/index.js +110 -2
  126. package/dist/fixtures/dist/index.cjs +103 -0
  127. package/dist/fixtures/dist/index.d.cts +3 -2
  128. package/dist/fixtures/dist/index.d.ts +3 -2
  129. package/dist/fixtures/dist/index.js +103 -1
  130. package/dist/fixtures/index.cjs +1 -0
  131. package/dist/fixtures/index.d.cts +2 -2
  132. package/dist/fixtures/index.d.ts +2 -2
  133. package/dist/fixtures/index.js +2 -2
  134. package/dist/index.cjs +20 -2
  135. package/dist/index.d.cts +12 -5
  136. package/dist/index.d.ts +12 -5
  137. package/dist/index.js +11 -3
  138. package/dist/runtime/bottomSheetConfig.cjs +11 -0
  139. package/dist/runtime/bottomSheetConfig.d.cts +15 -0
  140. package/dist/runtime/bottomSheetConfig.d.ts +15 -0
  141. package/dist/runtime/bottomSheetConfig.js +9 -0
  142. package/dist/runtime/index.cjs +2 -0
  143. package/dist/runtime/index.d.cts +2 -1
  144. package/dist/runtime/index.d.ts +2 -1
  145. package/dist/runtime/index.js +2 -1
  146. package/dist/runtime/udsConfig.cjs +2 -0
  147. package/dist/runtime/udsConfig.d.cts +2 -0
  148. package/dist/runtime/udsConfig.d.ts +2 -0
  149. package/dist/runtime/udsConfig.js +2 -0
  150. package/dist/styles/styler.d.cts +20 -17
  151. package/dist/styles/styler.d.ts +24 -21
  152. package/dist/styles/variants.cjs +278 -278
  153. package/dist/styles/variants.d.cts +9 -0
  154. package/dist/styles/variants.d.ts +9 -0
  155. package/dist/styles/variants.js +278 -278
  156. package/dist/tailwind/dist/commands/generateComponentData.cjs +31 -33
  157. package/dist/tailwind/dist/commands/generateComponentData.d.ts +1 -1
  158. package/dist/tailwind/dist/commands/generateComponentData.js +31 -33
  159. package/dist/tailwind/dist/commands/generatePurgeCSSData.d.ts +1 -1
  160. package/dist/tailwind/dist/commands/purge.cjs +4 -3
  161. package/dist/tailwind/dist/commands/purge.d.ts +1 -1
  162. package/dist/tailwind/dist/commands/purge.js +4 -3
  163. package/dist/tailwind/dist/index.d.cts +0 -1
  164. package/dist/tailwind/dist/index.d.ts +3 -5
  165. package/dist/tailwind/dist/purger/legacy/purgeCSS.cjs +3 -4
  166. package/dist/tailwind/dist/purger/legacy/purgeCSS.js +3 -4
  167. package/dist/tailwind/dist/purger/optimized/ast/expressions.cjs +125 -122
  168. package/dist/tailwind/dist/purger/optimized/ast/expressions.js +125 -122
  169. package/dist/tailwind/dist/purger/optimized/ast/jsx.cjs +8 -1
  170. package/dist/tailwind/dist/purger/optimized/ast/jsx.js +8 -1
  171. package/dist/tailwind/dist/purger/optimized/purge.cjs +10 -11
  172. package/dist/tailwind/dist/purger/optimized/purge.js +9 -10
  173. package/dist/tailwind/dist/purger/optimized/purgeFromCode.cjs +127 -238
  174. package/dist/tailwind/dist/purger/optimized/purgeFromCode.js +127 -238
  175. package/dist/tailwind/dist/purger/optimized/utils/componentAnalyzer.cjs +261 -353
  176. package/dist/tailwind/dist/purger/optimized/utils/componentAnalyzer.js +261 -352
  177. package/dist/tailwind/dist/purger/optimized/utils/files.cjs +3 -4
  178. package/dist/tailwind/dist/purger/optimized/utils/files.js +3 -4
  179. package/dist/tailwind/dist/purger/optimized/utils/safelist.cjs +21 -13
  180. package/dist/tailwind/dist/purger/optimized/utils/safelist.js +21 -13
  181. package/dist/tailwind/dist/tailwind/plugins/components.cjs +2 -0
  182. package/dist/tailwind/dist/tailwind/plugins/components.js +3 -1
  183. package/dist/tailwind/dist/tailwind/plugins/typography.cjs +13 -41
  184. package/dist/tailwind/dist/tailwind/plugins/typography.js +13 -41
  185. package/dist/tailwind/dist/tailwind/utils/composeTailwindPlugins.cjs +2 -4
  186. package/dist/tailwind/dist/tailwind/utils/composeTailwindPlugins.d.cts +1 -10
  187. package/dist/tailwind/dist/tailwind/utils/composeTailwindPlugins.d.ts +1 -10
  188. package/dist/tailwind/dist/tailwind/utils/composeTailwindPlugins.js +2 -4
  189. package/dist/tailwind/dist/tailwind/utils/getFontStyles.d.cts +1 -1
  190. package/dist/tailwind/dist/tailwind/utils/getFontStyles.d.ts +1 -1
  191. package/dist/tailwind/dist/tailwind/utils/getShadowStyles.d.cts +4 -4
  192. package/dist/tailwind/dist/tailwind/utils/getShadowStyles.d.ts +4 -4
  193. package/dist/tailwind/dist/utils/tsMorph.cjs +1 -1
  194. package/dist/tokens/automation/configs/index.cjs +2 -0
  195. package/dist/tokens/automation/configs/index.d.cts +2 -2
  196. package/dist/tokens/automation/configs/index.d.ts +2 -2
  197. package/dist/tokens/automation/configs/index.js +2 -2
  198. package/dist/tokens/automation/index.cjs +2 -0
  199. package/dist/tokens/automation/index.d.cts +2 -2
  200. package/dist/tokens/automation/index.d.ts +2 -2
  201. package/dist/tokens/automation/index.js +2 -2
  202. package/dist/tokens/index.cjs +2 -0
  203. package/dist/tokens/index.d.cts +3 -3
  204. package/dist/tokens/index.d.ts +3 -3
  205. package/dist/tokens/index.js +2 -2
  206. package/dist/tokens/types.d.cts +2 -2
  207. package/dist/tokens/types.d.ts +2 -2
  208. package/dist/types/dist/index.d.cts +76 -1
  209. package/dist/types/dist/index.d.ts +76 -1
  210. package/dist/uds/generated/componentData.cjs +1195 -990
  211. package/dist/uds/generated/componentData.js +1130 -979
  212. package/dist/uds/generated/tailwindPurge.cjs +57 -29
  213. package/dist/uds/generated/tailwindPurge.js +57 -29
  214. package/dist/uds/package.cjs +4 -10
  215. package/dist/uds/package.js +4 -10
  216. package/package.json +4 -7
  217. package/dist/cli/dist/lib/logger.cjs +0 -66
  218. package/dist/cli/dist/lib/logger.js +0 -66
  219. package/dist/tailwind/dist/commands/css.cjs +0 -79
  220. package/dist/tailwind/dist/commands/css.d.ts +0 -3
  221. package/dist/tailwind/dist/commands/css.helpers.cjs +0 -32
  222. package/dist/tailwind/dist/commands/css.helpers.js +0 -28
  223. package/dist/tailwind/dist/commands/css.js +0 -79
  224. package/dist/tailwind/dist/css/generate.cjs +0 -120
  225. package/dist/tailwind/dist/css/generate.d.cts +0 -30
  226. package/dist/tailwind/dist/css/generate.d.ts +0 -31
  227. package/dist/tailwind/dist/css/generate.helpers.cjs +0 -112
  228. package/dist/tailwind/dist/css/generate.helpers.js +0 -100
  229. package/dist/tailwind/dist/css/generate.js +0 -115
  230. package/dist/tailwind/dist/css/postcss.cjs +0 -35
  231. package/dist/tailwind/dist/css/postcss.helpers.cjs +0 -27
  232. package/dist/tailwind/dist/css/postcss.helpers.js +0 -26
  233. package/dist/tailwind/dist/css/postcss.js +0 -35
  234. package/dist/tailwind/dist/css/runner.cjs +0 -278
  235. package/dist/tailwind/dist/css/runner.helpers.cjs +0 -26
  236. package/dist/tailwind/dist/css/runner.helpers.js +0 -23
  237. package/dist/tailwind/dist/css/runner.js +0 -275
  238. package/dist/tailwind/dist/css/theme.cjs +0 -12
  239. package/dist/tailwind/dist/css/theme.d.cts +0 -66
  240. package/dist/tailwind/dist/css/theme.d.ts +0 -66
  241. package/dist/tailwind/dist/css/theme.js +0 -11
  242. package/dist/tailwind/dist/css/utils.cjs +0 -234
  243. package/dist/tailwind/dist/css/utils.js +0 -223
  244. package/dist/tailwind/dist/utils/optimizeCSS.cjs +0 -405
  245. package/dist/tailwind/dist/utils/optimizeCSS.js +0 -403
  246. package/dist/tailwind/dist/utils/postcssPreserveVars.cjs +0 -67
  247. package/dist/tailwind/dist/utils/postcssPreserveVars.js +0 -65
  248. package/generated/componentData.json +0 -2417
  249. package/generated/tailwindPurge.ts +0 -4560
@@ -1,2417 +0,0 @@
1
- {
2
- "Link": {
3
- "name": "Link",
4
- "defaultProps": {
5
- "variant": "primary"
6
- },
7
- "getStylesLiterals": {
8
- "display": "inline-flex",
9
- "alignItems": "center"
10
- },
11
- "cxLiterals": [
12
- "uds-ring",
13
- "underline",
14
- "w-[0.7em]",
15
- "h-[0.7em]"
16
- ],
17
- "internalComponents": [
18
- "IconSlot"
19
- ],
20
- "internalComponentProps": {
21
- "IconSlot": {
22
- "data-testid": [
23
- "start-icon",
24
- "end-icon"
25
- ]
26
- }
27
- },
28
- "propToVariantKeys": {
29
- "textVariant": [
30
- "linkTextStyleRoot",
31
- "fontSize",
32
- "fontFamily",
33
- "fontWeight",
34
- "lineHeight",
35
- "textTransform",
36
- "linkTextStyleIcon"
37
- ],
38
- "variant": [
39
- "linkVariantRoot",
40
- "linkVariantIconStart",
41
- "linkVariantIconEnd"
42
- ],
43
- "startIcon": [
44
- "icon"
45
- ],
46
- "endIcon": [
47
- "icon"
48
- ]
49
- },
50
- "motionVarPrefixes": []
51
- },
52
- "VStack": {
53
- "name": "VStack",
54
- "defaultProps": {},
55
- "getStylesLiterals": {},
56
- "cxLiterals": [],
57
- "internalComponents": [
58
- "Box"
59
- ],
60
- "internalComponentProps": {
61
- "Box": {
62
- "flexDirection": [
63
- "column"
64
- ]
65
- }
66
- },
67
- "propToVariantKeys": {
68
- "gap": [
69
- "columnGap",
70
- "rowGap"
71
- ]
72
- },
73
- "motionVarPrefixes": []
74
- },
75
- "Box": {
76
- "name": "Box",
77
- "defaultProps": {
78
- "as": "div",
79
- "display": "flex"
80
- },
81
- "getStylesLiterals": {},
82
- "cxLiterals": [],
83
- "internalComponents": [
84
- "Comp"
85
- ],
86
- "internalComponentProps": {},
87
- "propToVariantKeys": {
88
- "elevationAlias": [
89
- "backgroundColor",
90
- "borderColor",
91
- "borderWidth",
92
- "dropShadow"
93
- ]
94
- },
95
- "motionVarPrefixes": []
96
- },
97
- "Icon": {
98
- "name": "Icon",
99
- "defaultProps": {
100
- "size": "md",
101
- "variant": "outline",
102
- "color": "primary"
103
- },
104
- "getStylesLiterals": {
105
- "flex": "none"
106
- },
107
- "cxLiterals": [
108
- "[&_path]:fill-current"
109
- ],
110
- "internalComponents": [
111
- "SVGIcon"
112
- ],
113
- "internalComponentProps": {},
114
- "propToVariantKeys": {},
115
- "motionVarPrefixes": []
116
- },
117
- "FormLabel": {
118
- "name": "FormLabel",
119
- "defaultProps": {
120
- "color": "muted",
121
- "variant": "label3",
122
- "as": "label"
123
- },
124
- "getStylesLiterals": {},
125
- "cxLiterals": [
126
- "cursor-[inherit]"
127
- ],
128
- "internalComponents": [
129
- "Text"
130
- ],
131
- "internalComponentProps": {
132
- "Text": {
133
- "as": [
134
- "sup"
135
- ],
136
- "variant": [
137
- "inherit"
138
- ],
139
- "spacingStart": [
140
- "0.5"
141
- ]
142
- }
143
- },
144
- "propToVariantKeys": {},
145
- "motionVarPrefixes": []
146
- },
147
- "Text": {
148
- "name": "Text",
149
- "defaultProps": {
150
- "color": "primary",
151
- "variant": "body1"
152
- },
153
- "getStylesLiterals": {},
154
- "cxLiterals": [],
155
- "internalComponents": [
156
- "Comp"
157
- ],
158
- "internalComponentProps": {},
159
- "propToVariantKeys": {
160
- "variant": [
161
- "fontFamily",
162
- "fontSize",
163
- "fontWeight",
164
- "lineHeight",
165
- "textTransform",
166
- "letterSpacing"
167
- ]
168
- },
169
- "motionVarPrefixes": []
170
- },
171
- "IconSlot": {
172
- "name": "IconSlot",
173
- "defaultProps": {},
174
- "getStylesLiterals": {},
175
- "cxLiterals": [],
176
- "internalComponents": [
177
- "Icon"
178
- ],
179
- "internalComponentProps": {},
180
- "propToVariantKeys": {},
181
- "motionVarPrefixes": []
182
- },
183
- "HStack": {
184
- "name": "HStack",
185
- "defaultProps": {},
186
- "getStylesLiterals": {},
187
- "cxLiterals": [],
188
- "internalComponents": [
189
- "Box"
190
- ],
191
- "internalComponentProps": {
192
- "Box": {
193
- "flexDirection": [
194
- "row"
195
- ]
196
- }
197
- },
198
- "propToVariantKeys": {
199
- "gap": [
200
- "rowGap",
201
- "columnGap"
202
- ]
203
- },
204
- "motionVarPrefixes": []
205
- },
206
- "Image": {
207
- "name": "Image",
208
- "defaultProps": {},
209
- "getStylesLiterals": {},
210
- "cxLiterals": [],
211
- "internalComponents": [],
212
- "internalComponentProps": {},
213
- "propToVariantKeys": {},
214
- "motionVarPrefixes": []
215
- },
216
- "Table.mocks": {
217
- "name": "Table.mocks",
218
- "defaultProps": {},
219
- "getStylesLiterals": {},
220
- "cxLiterals": [],
221
- "internalComponents": [],
222
- "internalComponentProps": {},
223
- "propToVariantKeys": {},
224
- "motionVarPrefixes": []
225
- },
226
- "Table": {
227
- "name": "Table",
228
- "defaultProps": {
229
- "display": "table-cell",
230
- "overflow": "hidden",
231
- "borderColor": "muted",
232
- "borderRadius": "md",
233
- "spacing": "3",
234
- "borderBottomColor": "muted",
235
- "borderBottomWidth": "thin",
236
- "color": "primary"
237
- },
238
- "getStylesLiterals": {
239
- "textAlign": "start"
240
- },
241
- "cxLiterals": [],
242
- "internalComponents": [
243
- "CellComponent",
244
- "Box",
245
- "Text",
246
- "Table.Root",
247
- "Table.Header",
248
- "Table.Row",
249
- "Table.Cell",
250
- "Table.Body"
251
- ],
252
- "internalComponentProps": {
253
- "Table.Cell": {
254
- "asHeaderCell": [
255
- "column"
256
- ]
257
- }
258
- },
259
- "propToVariantKeys": {},
260
- "motionVarPrefixes": []
261
- },
262
- "Spinner": {
263
- "name": "Spinner",
264
- "defaultProps": {
265
- "color": "primary",
266
- "size": "lg"
267
- },
268
- "getStylesLiterals": {},
269
- "cxLiterals": [
270
- "self-center",
271
- "relative",
272
- "sr-only"
273
- ],
274
- "internalComponents": [
275
- "Icon"
276
- ],
277
- "internalComponentProps": {
278
- "Icon": {
279
- "role": [
280
- "img"
281
- ],
282
- "className": [
283
- "animate-spin"
284
- ],
285
- "aria-hidden": [
286
- "true"
287
- ]
288
- }
289
- },
290
- "propToVariantKeys": {},
291
- "motionVarPrefixes": []
292
- },
293
- "DividerCore": {
294
- "name": "DividerCore",
295
- "defaultProps": {
296
- "contentPosition": "center"
297
- },
298
- "getStylesLiterals": {},
299
- "cxLiterals": [],
300
- "internalComponents": [
301
- "Box",
302
- "Line",
303
- "InternalComponent",
304
- "Text"
305
- ],
306
- "internalComponentProps": {
307
- "Box": {
308
- "flex": [
309
- "1",
310
- "none"
311
- ],
312
- "display": [
313
- "flex"
314
- ]
315
- },
316
- "InternalComponent": {
317
- "flex": [
318
- "1"
319
- ],
320
- "alignItems": [
321
- "center"
322
- ]
323
- },
324
- "Text": {
325
- "as": [
326
- "span"
327
- ],
328
- "color": [
329
- "inherit"
330
- ],
331
- "variant": [
332
- "inherit"
333
- ]
334
- }
335
- },
336
- "propToVariantKeys": {},
337
- "motionVarPrefixes": []
338
- },
339
- "DividerInternal": {
340
- "name": "DividerInternal",
341
- "defaultProps": {
342
- "variant": "primary"
343
- },
344
- "getStylesLiterals": {},
345
- "cxLiterals": [
346
- "inherit"
347
- ],
348
- "internalComponents": [
349
- "DividerCore"
350
- ],
351
- "internalComponentProps": {},
352
- "propToVariantKeys": {
353
- "variant": [
354
- "dividerVariantRoot",
355
- "dividerVariantLabel",
356
- "dividerVariantLine"
357
- ]
358
- },
359
- "motionVarPrefixes": []
360
- },
361
- "Divider": {
362
- "name": "Divider",
363
- "defaultProps": {},
364
- "getStylesLiterals": {},
365
- "cxLiterals": [],
366
- "internalComponents": [
367
- "DividerInternal"
368
- ],
369
- "internalComponentProps": {},
370
- "propToVariantKeys": {},
371
- "motionVarPrefixes": []
372
- },
373
- "Button": {
374
- "name": "Button",
375
- "defaultProps": {
376
- "type": "button"
377
- },
378
- "getStylesLiterals": {},
379
- "cxLiterals": [
380
- "uds-ring",
381
- "uds-hit-target",
382
- "inline-flex",
383
- "overflow-hidden",
384
- "justify-center",
385
- "items-center",
386
- "whitespace-nowrap",
387
- "select-none",
388
- "[transform-origin:center]",
389
- "[backface-visibility:hidden]",
390
- "[transition-property:color,background-color,border-color,box-shadow,text-decoration-color,fill,stroke]",
391
- "[transition-timing-function:cubic-bezier(0,0,0.2,1)]",
392
- "[transition-duration:220ms]",
393
- "cursor-not-allowed",
394
- "uds-button-loading",
395
- "uds-button-without-effects",
396
- "withIcon",
397
- "uds-button-with-gap",
398
- "animate-spin",
399
- "truncate"
400
- ],
401
- "internalComponents": [
402
- "Icon",
403
- "IconSlot",
404
- "AnimatePresence",
405
- "SpringMotionConfig",
406
- "MotionSlot"
407
- ],
408
- "internalComponentProps": {
409
- "Icon": {
410
- "color": [
411
- "current"
412
- ]
413
- },
414
- "AnimatePresence": {
415
- "mode": [
416
- "popLayout"
417
- ]
418
- },
419
- "SpringMotionConfig": {
420
- "layoutSpeed": [
421
- "3"
422
- ]
423
- },
424
- "MotionSlot": {
425
- "whileHover": [
426
- "hover"
427
- ],
428
- "whileTap": [
429
- "pressed"
430
- ]
431
- }
432
- },
433
- "propToVariantKeys": {
434
- "size": [
435
- "buttonSizeRoot",
436
- "buttonSizeIcon"
437
- ],
438
- "variant": [
439
- "buttonVariantRoot",
440
- "buttonVariantIcon"
441
- ],
442
- "iconVariant": [
443
- "variant"
444
- ],
445
- "startIcon": [
446
- "icon"
447
- ],
448
- "endIcon": [
449
- "icon"
450
- ]
451
- },
452
- "motionVarPrefixes": [
453
- "--uds-motion-subtle-3-",
454
- "--uds-motion-smooth-3-"
455
- ]
456
- },
457
- "Checkbox": {
458
- "name": "Checkbox",
459
- "defaultProps": {
460
- "labelPosition": "start",
461
- "variant": "primary",
462
- "size": "md"
463
- },
464
- "getStylesLiterals": {
465
- "display": "flex",
466
- "flexDirection": "row",
467
- "flexDirection:1": "row-reverse",
468
- "alignItems": "center"
469
- },
470
- "cxLiterals": [
471
- "cursor-pointer",
472
- "cursor-default",
473
- "opacity-50",
474
- "uds-ring",
475
- "uds-ring-within",
476
- "transition-[background-color,border-color,box-shadow]",
477
- "pointer-events-none",
478
- "transition-opacity",
479
- "cursor-[inherit]",
480
- "absolute",
481
- "opacity-0",
482
- "top-1/2",
483
- "left-1/2",
484
- "w-[calc(100%+2px)]",
485
- "h-[calc(100%+2px)]",
486
- "transform",
487
- "translate-x-[-50%]",
488
- "translate-y-[-50%]",
489
- "text-start",
490
- "text-end"
491
- ],
492
- "internalComponents": [
493
- "Icon",
494
- "FormLabel",
495
- "SpringMotionConfig",
496
- "RootElement",
497
- "MotionBox"
498
- ],
499
- "internalComponentProps": {
500
- "Icon": {
501
- "size": [
502
- "sm"
503
- ]
504
- },
505
- "FormLabel": {
506
- "as": [
507
- "div"
508
- ],
509
- "variant": [
510
- "inherit"
511
- ],
512
- "color": [
513
- "inherit"
514
- ]
515
- },
516
- "RootElement": {
517
- "data-testid": [
518
- "container"
519
- ]
520
- },
521
- "MotionBox": {
522
- "position": [
523
- "relative"
524
- ],
525
- "alignItems": [
526
- "center"
527
- ],
528
- "justifyContent": [
529
- "center"
530
- ],
531
- "flex": [
532
- "none"
533
- ]
534
- }
535
- },
536
- "propToVariantKeys": {
537
- "size": [
538
- "checkboxSizeRoot",
539
- "checkboxSizeCheckbox"
540
- ],
541
- "variant": [
542
- "checkboxVariantRoot",
543
- "checkboxVariantCheckbox",
544
- "checkboxVariantCheckboxIcon"
545
- ],
546
- "valueState": [
547
- "checkboxVariantValueRoot",
548
- "checkboxVariantValueCheckbox",
549
- "checkboxVariantValueCheckboxIcon"
550
- ],
551
- "reduceMotion": [
552
- "reducedMotion"
553
- ]
554
- },
555
- "motionVarPrefixes": [
556
- "--uds-motion-subtle-3-",
557
- "--uds-motion-smooth-3-"
558
- ]
559
- },
560
- "SpringMotionConfig": {
561
- "name": "SpringMotionConfig",
562
- "defaultProps": {
563
- "reducedMotion": "user"
564
- },
565
- "getStylesLiterals": {},
566
- "cxLiterals": [],
567
- "internalComponents": [
568
- "LazyMotion",
569
- "MotionConfig"
570
- ],
571
- "internalComponentProps": {},
572
- "propToVariantKeys": {
573
- "loadFeatures": [
574
- "features"
575
- ]
576
- },
577
- "motionVarPrefixes": []
578
- },
579
- "IconButton": {
580
- "name": "IconButton",
581
- "defaultProps": {
582
- "type": "button"
583
- },
584
- "getStylesLiterals": {},
585
- "cxLiterals": [
586
- "uds-ring",
587
- "uds-hit-target",
588
- "inline-flex",
589
- "overflow-hidden",
590
- "justify-center",
591
- "items-center",
592
- "[transform-origin:center]",
593
- "[backface-visibility:hidden]",
594
- "[transition-property:color,background-color,border-color,",
595
- "box-shadow,text-decoration-color,fill,stroke]",
596
- "[transition-timing-function:cubic-bezier(0,0,0.2,1)]",
597
- "[transition-duration:220ms]",
598
- "cursor-not-allowed",
599
- "uds-button-loading",
600
- "uds-button-without-effects",
601
- "animate-spin"
602
- ],
603
- "internalComponents": [
604
- "Icon",
605
- "SpringMotionConfig",
606
- "AnimatePresence"
607
- ],
608
- "internalComponentProps": {
609
- "Icon": {
610
- "color": [
611
- "current"
612
- ]
613
- },
614
- "SpringMotionConfig": {
615
- "layoutSpeed": [
616
- "3"
617
- ]
618
- },
619
- "AnimatePresence": {
620
- "mode": [
621
- "popLayout"
622
- ]
623
- }
624
- },
625
- "propToVariantKeys": {
626
- "size": [
627
- "iconbuttonSizeRoot",
628
- "iconbuttonSizeIcon"
629
- ],
630
- "variant": [
631
- "buttonVariantRoot",
632
- "buttonVariantIcon"
633
- ],
634
- "iconVariant": [
635
- "variant"
636
- ]
637
- },
638
- "motionVarPrefixes": [
639
- "--uds-motion-subtle-3-",
640
- "--uds-motion-smooth-3-"
641
- ]
642
- },
643
- "Switch": {
644
- "name": "Switch",
645
- "defaultProps": {
646
- "labelPosition": "start",
647
- "size": "md"
648
- },
649
- "getStylesLiterals": {
650
- "switchVariantRoot": "default",
651
- "switchVariantActiveRoot": "on",
652
- "switchVariantActiveRoot:1": "off",
653
- "display": "flex",
654
- "flexDirection": "row",
655
- "flexDirection:1": "row-reverse",
656
- "alignItems": "center",
657
- "switchVariantSwitch": "default",
658
- "switchVariantActiveSwitch": "on",
659
- "switchVariantActiveSwitch:1": "off",
660
- "borderRadius": "full",
661
- "position": "relative",
662
- "switchVariantActiveHandle": "on",
663
- "switchVariantActiveHandle:1": "off",
664
- "switchVariantHandle": "default",
665
- "switchVariantHandleIcon": "default",
666
- "switchVariantActiveHandleIcon": "on",
667
- "switchVariantActiveHandleIcon:1": "off"
668
- },
669
- "cxLiterals": [
670
- "group",
671
- "cursor-pointer",
672
- "cursor-default",
673
- "opacity-50",
674
- "uds-ring",
675
- "uds-ring-within",
676
- "transition-[background-color,box-shadow]",
677
- "relative",
678
- "pointer-events-none",
679
- "uds-border-radius-full",
680
- "overflow-hidden",
681
- "absolute",
682
- "top-0",
683
- "left-0",
684
- "right-0",
685
- "bottom-0",
686
- "opacity-95",
687
- "group-hover:opacity-100",
688
- "transition-[background-color,box-shadow,opacity]",
689
- "opacity-0",
690
- "top-1/2",
691
- "left-1/2",
692
- "transform",
693
- "translate-x-[-50%]",
694
- "translate-y-[-50%]",
695
- "transition-opacity",
696
- "cursor-[inherit]",
697
- "w-[calc(100%+2px)]",
698
- "h-[calc(100%+2px)]",
699
- "text-start",
700
- "text-end",
701
- "opacity-100"
702
- ],
703
- "internalComponents": [
704
- "IconSlot",
705
- "Box",
706
- "FormLabel",
707
- "SpringMotionConfig",
708
- "RootElement",
709
- "MotionBox"
710
- ],
711
- "internalComponentProps": {
712
- "IconSlot": {
713
- "data-testid": [
714
- "on-icon",
715
- "off-icon"
716
- ]
717
- },
718
- "FormLabel": {
719
- "as": [
720
- "div"
721
- ],
722
- "variant": [
723
- "inherit"
724
- ],
725
- "color": [
726
- "inherit"
727
- ]
728
- },
729
- "RootElement": {
730
- "data-testid": [
731
- "container"
732
- ]
733
- }
734
- },
735
- "propToVariantKeys": {
736
- "size": [
737
- "switchSizeRoot",
738
- "switchSizeSwitch",
739
- "switchSizeHandle",
740
- "switchSizeHandleIcon"
741
- ],
742
- "onIcon": [
743
- "icon"
744
- ],
745
- "offIcon": [
746
- "icon"
747
- ],
748
- "reduceMotion": [
749
- "reducedMotion"
750
- ]
751
- },
752
- "motionVarPrefixes": [
753
- "--uds-motion-bouncy-4-",
754
- "--uds-motion-smooth-3-"
755
- ]
756
- },
757
- "Badge": {
758
- "name": "Badge",
759
- "defaultProps": {
760
- "variant": "primary",
761
- "size": "md"
762
- },
763
- "getStylesLiterals": {},
764
- "cxLiterals": [
765
- "flex-1",
766
- "truncate",
767
- "whitespace-nowrap",
768
- "text-center"
769
- ],
770
- "internalComponents": [
771
- "IconSlot",
772
- "HStack"
773
- ],
774
- "internalComponentProps": {
775
- "IconSlot": {
776
- "data-testid": [
777
- "start-icon",
778
- "end-icon"
779
- ]
780
- },
781
- "HStack": {
782
- "gap": [
783
- "2"
784
- ],
785
- "display": [
786
- "inline-flex"
787
- ],
788
- "alignItems": [
789
- "center"
790
- ]
791
- }
792
- },
793
- "propToVariantKeys": {
794
- "size": [
795
- "badgeSizeRoot",
796
- "badgeSizeIcon"
797
- ],
798
- "variant": [
799
- "badgeVariantRoot",
800
- "badgeVariantIcon"
801
- ],
802
- "startIcon": [
803
- "icon"
804
- ],
805
- "endIcon": [
806
- "icon"
807
- ]
808
- },
809
- "motionVarPrefixes": []
810
- },
811
- "AnimateHeightChange": {
812
- "name": "AnimateHeightChange",
813
- "defaultProps": {},
814
- "getStylesLiterals": {},
815
- "cxLiterals": [
816
- "overflow-hidden"
817
- ],
818
- "internalComponents": [
819
- "SpringMotionConfig"
820
- ],
821
- "internalComponentProps": {
822
- "SpringMotionConfig": {
823
- "layoutSpeed": [
824
- "4"
825
- ]
826
- }
827
- },
828
- "propToVariantKeys": {
829
- "reduceMotion": [
830
- "reducedMotion"
831
- ]
832
- },
833
- "motionVarPrefixes": [
834
- "--uds-motion-subtle-4-",
835
- "--uds-motion-smooth-3-"
836
- ]
837
- },
838
- "Pressable": {
839
- "name": "Pressable",
840
- "defaultProps": {},
841
- "getStylesLiterals": {},
842
- "cxLiterals": [],
843
- "internalComponents": [
844
- "Comp"
845
- ],
846
- "internalComponentProps": {},
847
- "propToVariantKeys": {},
848
- "motionVarPrefixes": []
849
- },
850
- "AvoidMotionLibraryProvider": {
851
- "name": "AvoidMotionLibraryProvider",
852
- "defaultProps": {},
853
- "getStylesLiterals": {},
854
- "cxLiterals": [],
855
- "internalComponents": [],
856
- "internalComponentProps": {},
857
- "propToVariantKeys": {},
858
- "motionVarPrefixes": []
859
- },
860
- "SegmentedControl": {
861
- "name": "SegmentedControl",
862
- "defaultProps": {},
863
- "getStylesLiterals": {
864
- "display": "flex",
865
- "alignItems": "center",
866
- "backgroundColor": "primary",
867
- "spacingVertical": "1",
868
- "spacingHorizontal": "3",
869
- "columnGap": "1.5",
870
- "borderWidth": "thin",
871
- "borderRadius": "full",
872
- "borderColor": "muted",
873
- "borderColor:1": "transparent",
874
- "color": "primary",
875
- "color:1": "tertiary",
876
- "color:2": "muted"
877
- },
878
- "cxLiterals": [
879
- "uds-ring",
880
- "cursor-not-allowed",
881
- "opacity-50",
882
- "pointer-events-none",
883
- "hover:bg-primary"
884
- ],
885
- "internalComponents": [
886
- "Radio",
887
- "Icon",
888
- "RadioProvider",
889
- "HStack",
890
- "RadioGroup",
891
- "Pressable",
892
- "Text"
893
- ],
894
- "internalComponentProps": {
895
- "Icon": {
896
- "size": [
897
- "sm"
898
- ],
899
- "color": [
900
- "current"
901
- ],
902
- "aria-hidden": [
903
- "true"
904
- ]
905
- },
906
- "HStack": {
907
- "spacing": [
908
- "1"
909
- ],
910
- "gap": [
911
- "1"
912
- ],
913
- "backgroundColor": [
914
- "secondary"
915
- ],
916
- "borderRadius": [
917
- "full"
918
- ],
919
- "display": [
920
- "inline-flex"
921
- ]
922
- },
923
- "Text": {
924
- "variant": [
925
- "label2"
926
- ],
927
- "color": [
928
- "current"
929
- ]
930
- }
931
- },
932
- "propToVariantKeys": {
933
- "value": [
934
- "key"
935
- ],
936
- "label": [
937
- "aria-label"
938
- ]
939
- },
940
- "motionVarPrefixes": []
941
- },
942
- "Popover": {
943
- "name": "Popover",
944
- "defaultProps": {},
945
- "getStylesLiterals": {},
946
- "cxLiterals": [],
947
- "internalComponents": [
948
- "HStack",
949
- "Text",
950
- "OriginalPopoverHeading"
951
- ],
952
- "internalComponentProps": {
953
- "Text": {
954
- "variant": [
955
- "headline1"
956
- ],
957
- "color": [
958
- "primary"
959
- ]
960
- }
961
- },
962
- "propToVariantKeys": {},
963
- "motionVarPrefixes": []
964
- },
965
- "SwitchV2": {
966
- "name": "SwitchV2",
967
- "defaultProps": {
968
- "labelPosition": "start",
969
- "size": "md"
970
- },
971
- "getStylesLiterals": {
972
- "switchVariantRoot": "default",
973
- "switchVariantActiveRoot": "on",
974
- "switchVariantActiveRoot:1": "off",
975
- "switchVariantSwitch": "default",
976
- "switchVariantActiveSwitch": "on",
977
- "switchVariantActiveSwitch:1": "off",
978
- "switchVariantActiveHandle": "on",
979
- "switchVariantActiveHandle:1": "off",
980
- "switchVariantHandle": "default",
981
- "switchVariantHandleIcon": "default",
982
- "switchVariantActiveHandleIcon": "on",
983
- "switchVariantActiveHandleIcon:1": "off"
984
- },
985
- "cxLiterals": [
986
- "group",
987
- "flex",
988
- "items-center",
989
- "flex-row",
990
- "flex-row-reverse",
991
- "uds-ring",
992
- "uds-ring-within",
993
- "relative",
994
- "uds-border-radius-full",
995
- "transition-[background-color,box-shadow]",
996
- "pointer-events-none",
997
- "w-full",
998
- "h-full",
999
- "absolute",
1000
- "top-0",
1001
- "bottom-0",
1002
- "right-0",
1003
- "left-0",
1004
- "overflow-hidden",
1005
- "group-hover:scale-105",
1006
- "opacity-95",
1007
- "group-hover:opacity-100",
1008
- "transition-[transform,opacity]",
1009
- "opacity-0",
1010
- "top-1/2",
1011
- "left-1/2",
1012
- "transform",
1013
- "translate-x-[-50%]",
1014
- "translate-y-[-50%]",
1015
- "transition-opacity",
1016
- "cursor-[inherit]",
1017
- "w-[calc(100%+2px)]",
1018
- "h-[calc(100%+2px)]",
1019
- "text-start",
1020
- "text-end",
1021
- "opacity-100"
1022
- ],
1023
- "internalComponents": [
1024
- "IconSlot",
1025
- "Box",
1026
- "FormLabel",
1027
- "SpringMotionConfig",
1028
- "RootElement",
1029
- "MotionBox"
1030
- ],
1031
- "internalComponentProps": {
1032
- "IconSlot": {
1033
- "data-testid": [
1034
- "on-icon",
1035
- "off-icon"
1036
- ]
1037
- },
1038
- "FormLabel": {
1039
- "as": [
1040
- "div"
1041
- ],
1042
- "variant": [
1043
- "inherit"
1044
- ],
1045
- "color": [
1046
- "inherit"
1047
- ]
1048
- },
1049
- "SpringMotionConfig": {
1050
- "layoutVariant": [
1051
- "bouncy"
1052
- ],
1053
- "layoutSpeed": [
1054
- "4"
1055
- ]
1056
- },
1057
- "RootElement": {
1058
- "data-testid": [
1059
- "switch-root"
1060
- ]
1061
- },
1062
- "MotionBox": {
1063
- "layout": [
1064
- "position"
1065
- ]
1066
- }
1067
- },
1068
- "propToVariantKeys": {
1069
- "size": [
1070
- "switchSizeRoot",
1071
- "switchSizeSwitch",
1072
- "switchSizeHandle",
1073
- "switchSizeHandleIcon"
1074
- ],
1075
- "onIcon": [
1076
- "icon"
1077
- ],
1078
- "offIcon": [
1079
- "icon"
1080
- ],
1081
- "reduceMotion": [
1082
- "reducedMotion"
1083
- ],
1084
- "isOn": [
1085
- "layoutDependency"
1086
- ]
1087
- },
1088
- "motionVarPrefixes": [
1089
- "--uds-motion-bouncy-4-",
1090
- "--uds-motion-smooth-3-"
1091
- ]
1092
- },
1093
- "Tabs": {
1094
- "name": "Tabs",
1095
- "defaultProps": {},
1096
- "getStylesLiterals": {
1097
- "display": "flex",
1098
- "flexDirection": "row",
1099
- "columnGap": "6"
1100
- },
1101
- "cxLiterals": [
1102
- "text-tertiary",
1103
- "border-b-transparent",
1104
- "aria-selected:border-b-brand",
1105
- "aria-selected:text-secondary"
1106
- ],
1107
- "internalComponents": [
1108
- "TabProvider",
1109
- "OriginalTabList",
1110
- "OriginalTab",
1111
- "Icon",
1112
- "OriginalTabPanel",
1113
- "Pressable",
1114
- "Comp",
1115
- "Text"
1116
- ],
1117
- "internalComponentProps": {
1118
- "Icon": {
1119
- "className": [
1120
- "text-current"
1121
- ],
1122
- "size": [
1123
- "md"
1124
- ]
1125
- },
1126
- "Pressable": {
1127
- "borderBottomWidth": [
1128
- "medium"
1129
- ],
1130
- "spacingBottom": [
1131
- "1"
1132
- ],
1133
- "spacingTop": [
1134
- "4"
1135
- ]
1136
- },
1137
- "Text": {
1138
- "className": [
1139
- "text-current"
1140
- ],
1141
- "variant": [
1142
- "headline1"
1143
- ],
1144
- "as": [
1145
- "span"
1146
- ]
1147
- }
1148
- },
1149
- "propToVariantKeys": {},
1150
- "motionVarPrefixes": []
1151
- },
1152
- "Modal": {
1153
- "name": "Modal",
1154
- "defaultProps": {},
1155
- "getStylesLiterals": {},
1156
- "cxLiterals": [
1157
- "inset-8",
1158
- "top-[250px]",
1159
- "z-50",
1160
- "mx-auto",
1161
- "h-fit",
1162
- "w-[600px]",
1163
- "origin-center",
1164
- "scale-95",
1165
- "opacity-0",
1166
- "transition",
1167
- "duration-150",
1168
- "data-[enter]:scale-100",
1169
- "data-[enter]:opacity-100",
1170
- "data-[enter]:bg-primary",
1171
- "backdrop-blur-0",
1172
- "data-[enter]:opacity-60",
1173
- "data-[enter]:backdrop-blur-sm"
1174
- ],
1175
- "internalComponents": [
1176
- "IconButton",
1177
- "Dialog",
1178
- "HStack",
1179
- "Text",
1180
- "VStack"
1181
- ],
1182
- "internalComponentProps": {
1183
- "IconButton": {
1184
- "aria-label": [
1185
- "Close"
1186
- ],
1187
- "size": [
1188
- "sm"
1189
- ],
1190
- "variant": [
1191
- "tertiary"
1192
- ]
1193
- },
1194
- "HStack": {
1195
- "alignItems": [
1196
- "center"
1197
- ],
1198
- "justifyContent": [
1199
- "space-between"
1200
- ]
1201
- },
1202
- "Text": {
1203
- "variant": [
1204
- "headline1"
1205
- ],
1206
- "color": [
1207
- "primary"
1208
- ]
1209
- },
1210
- "VStack": {
1211
- "borderRadius": [
1212
- "md"
1213
- ],
1214
- "position": [
1215
- "fixed"
1216
- ],
1217
- "backgroundColor": [
1218
- "primary"
1219
- ],
1220
- "dropShadow": [
1221
- "md"
1222
- ],
1223
- "spacing": [
1224
- "8"
1225
- ],
1226
- "overflow": [
1227
- "hidden"
1228
- ]
1229
- }
1230
- },
1231
- "propToVariantKeys": {
1232
- "handleClose": [
1233
- "onClick"
1234
- ]
1235
- },
1236
- "motionVarPrefixes": []
1237
- },
1238
- "Accordion": {
1239
- "name": "Accordion",
1240
- "defaultProps": {
1241
- "spacingHorizontal": "4",
1242
- "spacingVertical": "4"
1243
- },
1244
- "getStylesLiterals": {},
1245
- "cxLiterals": [
1246
- "hover:bg-secondary/80",
1247
- "w-full"
1248
- ],
1249
- "internalComponents": [
1250
- "Icon",
1251
- "SpringMotionConfig",
1252
- "Pressable",
1253
- "Text",
1254
- "HStack",
1255
- "AnimatePresence",
1256
- "VStack"
1257
- ],
1258
- "internalComponentProps": {
1259
- "Icon": {
1260
- "variant": [
1261
- "fill"
1262
- ],
1263
- "size": [
1264
- "sm"
1265
- ],
1266
- "color": [
1267
- "primary"
1268
- ]
1269
- },
1270
- "SpringMotionConfig": {
1271
- "layoutVariant": [
1272
- "smooth"
1273
- ],
1274
- "layoutSpeed": [
1275
- "3"
1276
- ]
1277
- },
1278
- "Pressable": {
1279
- "display": [
1280
- "flex"
1281
- ],
1282
- "flexDirection": [
1283
- "row"
1284
- ],
1285
- "alignItems": [
1286
- "center"
1287
- ],
1288
- "justifyContent": [
1289
- "space-between"
1290
- ],
1291
- "borderRadius": [
1292
- "md"
1293
- ]
1294
- },
1295
- "Text": {
1296
- "variant": [
1297
- "title4"
1298
- ],
1299
- "color": [
1300
- "primary"
1301
- ]
1302
- },
1303
- "HStack": {
1304
- "display": [
1305
- "flex"
1306
- ],
1307
- "alignItems": [
1308
- "center"
1309
- ],
1310
- "justifyContent": [
1311
- "space-between"
1312
- ],
1313
- "columnGap": [
1314
- "2.5"
1315
- ]
1316
- }
1317
- },
1318
- "propToVariantKeys": {},
1319
- "motionVarPrefixes": [
1320
- "--uds-motion-smooth-3-"
1321
- ]
1322
- },
1323
- "AvatarImage": {
1324
- "name": "AvatarImage",
1325
- "defaultProps": {
1326
- "size": "md",
1327
- "variant": "primary"
1328
- },
1329
- "getStylesLiterals": {},
1330
- "cxLiterals": [
1331
- "overflow-hidden",
1332
- "w-full",
1333
- "h-full",
1334
- "shrink-0",
1335
- "text-center",
1336
- "inline-flex",
1337
- "justify-center",
1338
- "items-center",
1339
- "object-cover"
1340
- ],
1341
- "internalComponents": [
1342
- "UDSImage",
1343
- "AvatarText",
1344
- "AvatarIcon",
1345
- "Box"
1346
- ],
1347
- "internalComponentProps": {},
1348
- "propToVariantKeys": {
1349
- "alt": [
1350
- "name"
1351
- ],
1352
- "fallback": [
1353
- "initials"
1354
- ]
1355
- },
1356
- "motionVarPrefixes": []
1357
- },
1358
- "AvatarText": {
1359
- "name": "AvatarText",
1360
- "defaultProps": {
1361
- "size": "md",
1362
- "variant": "primary"
1363
- },
1364
- "getStylesLiterals": {},
1365
- "cxLiterals": [
1366
- "overflow-hidden",
1367
- "truncate",
1368
- "w-full",
1369
- "h-full",
1370
- "shrink-0",
1371
- "text-center",
1372
- "inline-flex",
1373
- "justify-center",
1374
- "items-center"
1375
- ],
1376
- "internalComponents": [
1377
- "Box",
1378
- "Text"
1379
- ],
1380
- "internalComponentProps": {
1381
- "Text": {
1382
- "color": [
1383
- "inherit"
1384
- ],
1385
- "variant": [
1386
- "inherit"
1387
- ]
1388
- }
1389
- },
1390
- "propToVariantKeys": {},
1391
- "motionVarPrefixes": []
1392
- },
1393
- "Avatar": {
1394
- "name": "Avatar",
1395
- "defaultProps": {},
1396
- "getStylesLiterals": {},
1397
- "cxLiterals": [],
1398
- "internalComponents": [
1399
- "AvatarImage"
1400
- ],
1401
- "internalComponentProps": {},
1402
- "propToVariantKeys": {},
1403
- "motionVarPrefixes": []
1404
- },
1405
- "AvatarIcon": {
1406
- "name": "AvatarIcon",
1407
- "defaultProps": {
1408
- "size": "md",
1409
- "variant": "primary"
1410
- },
1411
- "getStylesLiterals": {},
1412
- "cxLiterals": [
1413
- "overflow-hidden",
1414
- "w-full",
1415
- "h-full",
1416
- "shrink-0",
1417
- "text-center",
1418
- "inline-flex",
1419
- "justify-center",
1420
- "items-center"
1421
- ],
1422
- "internalComponents": [
1423
- "IconSlot",
1424
- "Box"
1425
- ],
1426
- "internalComponentProps": {},
1427
- "propToVariantKeys": {
1428
- "size": [
1429
- "avatarSizeIcon"
1430
- ]
1431
- },
1432
- "motionVarPrefixes": []
1433
- },
1434
- "UDSToastConfigProvider": {
1435
- "name": "UDSToastConfigProvider",
1436
- "defaultProps": {},
1437
- "getStylesLiterals": {},
1438
- "cxLiterals": [],
1439
- "internalComponents": [
1440
- "ToastContext.Provider"
1441
- ],
1442
- "internalComponentProps": {},
1443
- "propToVariantKeys": {},
1444
- "motionVarPrefixes": []
1445
- },
1446
- "Toast": {
1447
- "name": "Toast",
1448
- "defaultProps": {},
1449
- "getStylesLiterals": {
1450
- "className": "flex-none",
1451
- "spacing": "2",
1452
- "borderRadius": "full"
1453
- },
1454
- "cxLiterals": [
1455
- "transition-[background-color]",
1456
- "bg-carbon-15/0",
1457
- "hover:bg-carbon-15/10",
1458
- "active:bg-carbon-15/15",
1459
- "uds-ring"
1460
- ],
1461
- "internalComponents": [
1462
- "IconSlot",
1463
- "ToastContainer",
1464
- "Text",
1465
- "Button",
1466
- "Pressable"
1467
- ],
1468
- "internalComponentProps": {},
1469
- "propToVariantKeys": {
1470
- "size": [
1471
- "toastSizeLabel",
1472
- "toastSizeIcon",
1473
- "toastSizeActionButton",
1474
- "toastSizeCloseIcon"
1475
- ],
1476
- "variant": [
1477
- "toastVariantIcon",
1478
- "toastVariantActionButton",
1479
- "toastVariantCloseIcon"
1480
- ],
1481
- "closeIcon": [
1482
- "icon"
1483
- ],
1484
- "onClickActionButton": [
1485
- "onClick"
1486
- ]
1487
- },
1488
- "motionVarPrefixes": []
1489
- },
1490
- "ToastContainer": {
1491
- "name": "ToastContainer",
1492
- "defaultProps": {},
1493
- "getStylesLiterals": {
1494
- "position": "relative",
1495
- "alignItems": "center",
1496
- "display": "flex",
1497
- "className": "box-border touch-none z-0 w-full break-words mb-2 last:mb-0"
1498
- },
1499
- "cxLiterals": [
1500
- "w-full"
1501
- ],
1502
- "internalComponents": [
1503
- "HStack"
1504
- ],
1505
- "internalComponentProps": {
1506
- "HStack": {
1507
- "alignItems": [
1508
- "center"
1509
- ],
1510
- "justifyContent": [
1511
- "space-between"
1512
- ],
1513
- "overflow": [
1514
- "hidden"
1515
- ],
1516
- "position": [
1517
- "relative"
1518
- ]
1519
- }
1520
- },
1521
- "propToVariantKeys": {
1522
- "variant": [
1523
- "toastVariantRoot"
1524
- ],
1525
- "size": [
1526
- "toastSizeRoot"
1527
- ]
1528
- },
1529
- "motionVarPrefixes": []
1530
- },
1531
- "ToastPortal": {
1532
- "name": "ToastPortal",
1533
- "defaultProps": {},
1534
- "getStylesLiterals": {},
1535
- "cxLiterals": [],
1536
- "internalComponents": [
1537
- "ReactToastifyToastContainer"
1538
- ],
1539
- "internalComponentProps": {},
1540
- "propToVariantKeys": {},
1541
- "motionVarPrefixes": []
1542
- },
1543
- "RadioGroupStore": {
1544
- "name": "RadioGroupStore",
1545
- "defaultProps": {},
1546
- "getStylesLiterals": {},
1547
- "cxLiterals": [],
1548
- "internalComponents": [],
1549
- "internalComponentProps": {},
1550
- "propToVariantKeys": {},
1551
- "motionVarPrefixes": []
1552
- },
1553
- "RadioGroupProvider": {
1554
- "name": "RadioGroupProvider",
1555
- "defaultProps": {},
1556
- "getStylesLiterals": {},
1557
- "cxLiterals": [],
1558
- "internalComponents": [
1559
- "DivProps",
1560
- "Comp",
1561
- "RadioGroupContext.Provider"
1562
- ],
1563
- "internalComponentProps": {
1564
- "Comp": {
1565
- "role": [
1566
- "radiogroup"
1567
- ]
1568
- }
1569
- },
1570
- "propToVariantKeys": {},
1571
- "motionVarPrefixes": []
1572
- },
1573
- "Radio": {
1574
- "name": "Radio",
1575
- "defaultProps": {
1576
- "labelPosition": "start",
1577
- "variant": "primary",
1578
- "size": "md",
1579
- "value": ""
1580
- },
1581
- "getStylesLiterals": {
1582
- "radioVariantValueRoot": "checked",
1583
- "radioVariantValueRoot:1": "unchecked",
1584
- "display": "flex",
1585
- "flexDirection": "row",
1586
- "flexDirection:1": "row-reverse",
1587
- "alignItems": "center",
1588
- "radioVariantValueRadio": "checked",
1589
- "radioVariantValueRadio:1": "unchecked",
1590
- "radioVariantValueRadioCircle": "checked",
1591
- "radioVariantValueRadioCircle:1": "unchecked"
1592
- },
1593
- "cxLiterals": [
1594
- "cursor-pointer",
1595
- "cursor-default",
1596
- "opacity-50",
1597
- "border",
1598
- "uds-ring",
1599
- "uds-ring-within",
1600
- "transition-[background-color,border-color]",
1601
- "transition-shadow",
1602
- "pointer-events-none",
1603
- "w-[8px]",
1604
- "h-[8px]",
1605
- "transition-opacity",
1606
- "cursor-[inherit]",
1607
- "absolute",
1608
- "opacity-0",
1609
- "top-1/2",
1610
- "left-1/2",
1611
- "w-[calc(100%+2px)]",
1612
- "h-[calc(100%+2px)]",
1613
- "transform",
1614
- "translate-x-[-50%]",
1615
- "translate-y-[-50%]",
1616
- "text-start",
1617
- "text-end"
1618
- ],
1619
- "internalComponents": [
1620
- "Box",
1621
- "FormLabel",
1622
- "SpringMotionConfig",
1623
- "RootElement",
1624
- "MotionBox"
1625
- ],
1626
- "internalComponentProps": {
1627
- "Box": {
1628
- "borderRadius": [
1629
- "full"
1630
- ]
1631
- },
1632
- "FormLabel": {
1633
- "as": [
1634
- "div"
1635
- ],
1636
- "variant": [
1637
- "inherit"
1638
- ],
1639
- "color": [
1640
- "inherit"
1641
- ]
1642
- },
1643
- "RootElement": {
1644
- "data-testid": [
1645
- "container"
1646
- ]
1647
- },
1648
- "MotionBox": {
1649
- "position": [
1650
- "relative"
1651
- ],
1652
- "borderRadius": [
1653
- "full"
1654
- ],
1655
- "alignItems": [
1656
- "center"
1657
- ],
1658
- "justifyContent": [
1659
- "center"
1660
- ],
1661
- "flex": [
1662
- "none"
1663
- ]
1664
- }
1665
- },
1666
- "propToVariantKeys": {
1667
- "size": [
1668
- "radioSizeRoot",
1669
- "radioSizeRadio"
1670
- ],
1671
- "variant": [
1672
- "radioVariantRoot",
1673
- "radioVariantRadio",
1674
- "radioVariantRadioCircle"
1675
- ],
1676
- "reduceMotion": [
1677
- "reducedMotion"
1678
- ]
1679
- },
1680
- "motionVarPrefixes": [
1681
- "--uds-motion-subtle-3-",
1682
- "--uds-motion-smooth-3-"
1683
- ]
1684
- },
1685
- "UDSTooltipConfigProvider": {
1686
- "name": "UDSTooltipConfigProvider",
1687
- "defaultProps": {},
1688
- "getStylesLiterals": {},
1689
- "cxLiterals": [],
1690
- "internalComponents": [
1691
- "TooltipContext.Provider"
1692
- ],
1693
- "internalComponentProps": {},
1694
- "propToVariantKeys": {},
1695
- "motionVarPrefixes": []
1696
- },
1697
- "TooltipTrigger": {
1698
- "name": "TooltipTrigger",
1699
- "defaultProps": {},
1700
- "getStylesLiterals": {},
1701
- "cxLiterals": [],
1702
- "internalComponents": [
1703
- "TooltipAnchor"
1704
- ],
1705
- "internalComponentProps": {
1706
- "TooltipAnchor": {
1707
- "className": [
1708
- "inline"
1709
- ]
1710
- }
1711
- },
1712
- "propToVariantKeys": {
1713
- "children": [
1714
- "render"
1715
- ]
1716
- },
1717
- "motionVarPrefixes": []
1718
- },
1719
- "TooltipContent": {
1720
- "name": "TooltipContent",
1721
- "defaultProps": {},
1722
- "getStylesLiterals": {
1723
- "tooltipSizeRoot": "default",
1724
- "tooltipVariantRoot": "default",
1725
- "tooltipSizeSvg": "default",
1726
- "tooltipVariantSvg": "default",
1727
- "tooltipVariantBlur": "default",
1728
- "position": "absolute",
1729
- "width": "full",
1730
- "height": "full",
1731
- "tooltipSizeTitle": "default",
1732
- "tooltipSizeBody": "default",
1733
- "tooltipSizeEndContent": "default",
1734
- "tooltipSizeIcon": "default",
1735
- "tooltipVariantIcon": "default"
1736
- },
1737
- "cxLiterals": [
1738
- "flex",
1739
- "z-[9999]",
1740
- "stroke-1",
1741
- "uds-bgBlurFillFallback",
1742
- "uds-bgBlurFallback",
1743
- "top-0",
1744
- "left-0",
1745
- "z-[1]",
1746
- "transition-opacity",
1747
- "ease-in-out",
1748
- "absolute",
1749
- "w-full",
1750
- "h-full",
1751
- "overflow-visible",
1752
- "pointer-events-none",
1753
- "z-[2]"
1754
- ],
1755
- "internalComponents": [
1756
- "Box",
1757
- "IconSlot",
1758
- "TooltipArrow",
1759
- "Tooltip",
1760
- "Fragment",
1761
- "Text"
1762
- ],
1763
- "internalComponentProps": {
1764
- "Box": {
1765
- "position": [
1766
- "relative"
1767
- ],
1768
- "flexDirection": [
1769
- "column"
1770
- ],
1771
- "className": [
1772
- "z-[3] gap-[inherit]"
1773
- ],
1774
- "alignItems": [
1775
- "center"
1776
- ],
1777
- "columnGap": [
1778
- "1",
1779
- "1.5"
1780
- ]
1781
- },
1782
- "Text": {
1783
- "color": [
1784
- "inherit"
1785
- ]
1786
- }
1787
- },
1788
- "propToVariantKeys": {
1789
- "startTitleIcon": [
1790
- "icon"
1791
- ]
1792
- },
1793
- "motionVarPrefixes": []
1794
- },
1795
- "Tooltip": {
1796
- "name": "Tooltip",
1797
- "defaultProps": {},
1798
- "getStylesLiterals": {},
1799
- "cxLiterals": [],
1800
- "internalComponents": [
1801
- "TooltipInternalContext.Provider",
1802
- "TooltipProvider"
1803
- ],
1804
- "internalComponentProps": {},
1805
- "propToVariantKeys": {},
1806
- "motionVarPrefixes": []
1807
- },
1808
- "Input": {
1809
- "name": "Input",
1810
- "defaultProps": {
1811
- "type": "text",
1812
- "size": "md",
1813
- "width": "full"
1814
- },
1815
- "getStylesLiterals": {
1816
- "inputVariantRoot": "default",
1817
- "inputVariantValueRoot": "empty",
1818
- "inputVariantValueRoot:1": "filled",
1819
- "inputVariantInputWrapper": "default",
1820
- "inputVariantValueInputWrapper": "empty",
1821
- "inputVariantValueInputWrapper:1": "filled",
1822
- "inputVariantInput": "default",
1823
- "inputVariantValueInput": "empty",
1824
- "inputVariantValueInput:1": "filled",
1825
- "inputVariantInputPlaceholder": "default",
1826
- "inputVariantValueInputPlaceholder": "empty",
1827
- "inputVariantValueInputPlaceholder:1": "filled",
1828
- "inputVariantLabel": "default",
1829
- "inputVariantValueLabel": "empty",
1830
- "inputVariantValueLabel:1": "filled",
1831
- "inputVariantLabelRequired": "default",
1832
- "inputVariantValueLabelRequired": "empty",
1833
- "inputVariantValueLabelRequired:1": "filled",
1834
- "inputVariantStartIcon": "default",
1835
- "inputVariantValueStartIcon": "empty",
1836
- "inputVariantValueStartIcon:1": "filled",
1837
- "inputVariantEndIcon": "default",
1838
- "inputVariantValueEndIcon": "empty",
1839
- "inputVariantValueEndIcon:1": "filled"
1840
- },
1841
- "cxLiterals": [
1842
- "opacity-50",
1843
- "min-w-[200px]",
1844
- "grow",
1845
- "uds-hit-target",
1846
- "bg-clip-text",
1847
- "focus:outline-none",
1848
- "cursor-text",
1849
- "cursor-not-allowed"
1850
- ],
1851
- "internalComponents": [
1852
- "IconSlot",
1853
- "StartIcon",
1854
- "EndIcon",
1855
- "HelpTextContent",
1856
- "Box",
1857
- "InputHelpTextInternal",
1858
- "VStack",
1859
- "HStack",
1860
- "AnimateHeightChange"
1861
- ],
1862
- "internalComponentProps": {
1863
- "HelpTextContent": {
1864
- "spacingTop": [
1865
- "2"
1866
- ]
1867
- },
1868
- "Box": {
1869
- "spacingBottom": [
1870
- "2"
1871
- ],
1872
- "columnGap": [
1873
- "0.5"
1874
- ],
1875
- "alignItems": [
1876
- "flex-end",
1877
- "center"
1878
- ],
1879
- "position": [
1880
- "relative"
1881
- ]
1882
- },
1883
- "HStack": {
1884
- "alignItems": [
1885
- "center"
1886
- ],
1887
- "gap": [
1888
- "1"
1889
- ]
1890
- }
1891
- },
1892
- "propToVariantKeys": {
1893
- "size": [
1894
- "inputSizeRoot",
1895
- "inputSizeInputWrapper",
1896
- "inputSizeInput",
1897
- "inputSizeLabel",
1898
- "inputSizeStartIcon",
1899
- "inputSizeEndIcon"
1900
- ],
1901
- "startIcon": [
1902
- "icon"
1903
- ],
1904
- "endIcon": [
1905
- "icon"
1906
- ],
1907
- "helperTextIcon": [
1908
- "startIcon"
1909
- ]
1910
- },
1911
- "motionVarPrefixes": []
1912
- },
1913
- "InputHelpText": {
1914
- "name": "InputHelpText",
1915
- "defaultProps": {
1916
- "size": "md"
1917
- },
1918
- "getStylesLiterals": {
1919
- "inputVariantRoot": "default",
1920
- "inputVariantValueRoot": "empty",
1921
- "inputVariantValueRoot:1": "filled"
1922
- },
1923
- "cxLiterals": [],
1924
- "internalComponents": [
1925
- "InputHelpTextInternal",
1926
- "Box"
1927
- ],
1928
- "internalComponentProps": {
1929
- "Box": {
1930
- "spacingTop": [
1931
- "2"
1932
- ]
1933
- }
1934
- },
1935
- "propToVariantKeys": {
1936
- "size": [
1937
- "inputSizeRoot"
1938
- ]
1939
- },
1940
- "motionVarPrefixes": []
1941
- },
1942
- "InputHelpTextInternal": {
1943
- "name": "InputHelpTextInternal",
1944
- "defaultProps": {},
1945
- "getStylesLiterals": {
1946
- "inputVariantHelperText": "default",
1947
- "inputVariantValueHelperText": "empty",
1948
- "inputVariantValueHelperText:1": "filled",
1949
- "inputVariantHelperIcon": "default",
1950
- "inputVariantValueHelperIcon": "empty",
1951
- "inputVariantValueHelperIcon:1": "filled"
1952
- },
1953
- "cxLiterals": [],
1954
- "internalComponents": [
1955
- "IconSlot",
1956
- "HStack"
1957
- ],
1958
- "internalComponentProps": {
1959
- "HStack": {
1960
- "gap": [
1961
- "1"
1962
- ],
1963
- "alignItems": [
1964
- "center"
1965
- ]
1966
- }
1967
- },
1968
- "propToVariantKeys": {
1969
- "size": [
1970
- "inputSizeHelperText",
1971
- "inputSizeHelperIcon"
1972
- ],
1973
- "startIcon": [
1974
- "icon"
1975
- ],
1976
- "endIcon": [
1977
- "icon"
1978
- ]
1979
- },
1980
- "motionVarPrefixes": []
1981
- },
1982
- "UDSConfigProvider": {
1983
- "name": "UDSConfigProvider",
1984
- "defaultProps": {},
1985
- "getStylesLiterals": {},
1986
- "cxLiterals": [],
1987
- "internalComponents": [
1988
- "UDSBreakpointsConfigProvider",
1989
- "UDSToastConfigProvider",
1990
- "UDSTooltipConfigProvider"
1991
- ],
1992
- "internalComponentProps": {},
1993
- "propToVariantKeys": {},
1994
- "motionVarPrefixes": []
1995
- },
1996
- "UDSBreakpointsConfigProvider": {
1997
- "name": "UDSBreakpointsConfigProvider",
1998
- "defaultProps": {},
1999
- "getStylesLiterals": {},
2000
- "cxLiterals": [],
2001
- "internalComponents": [
2002
- "UDSBreakpointsConfigContext.Provider"
2003
- ],
2004
- "internalComponentProps": {},
2005
- "propToVariantKeys": {},
2006
- "motionVarPrefixes": []
2007
- },
2008
- "Menu.Item": {
2009
- "name": "Menu.Item",
2010
- "defaultProps": {},
2011
- "getStylesLiterals": {
2012
- "menuitemItemVariantRoot": "default",
2013
- "menuitemItemVariantActiveRoot": "on",
2014
- "menuitemItemVariantActiveRoot:1": "off",
2015
- "menuitemItemVariantText": "default",
2016
- "menuitemItemVariantActiveText": "on",
2017
- "menuitemItemVariantActiveText:1": "off",
2018
- "menuitemItemVariantIcon": "default",
2019
- "menuitemItemVariantActiveIcon": "on",
2020
- "menuitemItemVariantActiveIcon:1": "off"
2021
- },
2022
- "cxLiterals": [],
2023
- "internalComponents": [
2024
- "MenuItemBase"
2025
- ],
2026
- "internalComponentProps": {},
2027
- "propToVariantKeys": {},
2028
- "motionVarPrefixes": []
2029
- },
2030
- "Menu.Provider": {
2031
- "name": "Menu.Provider",
2032
- "defaultProps": {},
2033
- "getStylesLiterals": {},
2034
- "cxLiterals": [],
2035
- "internalComponents": [
2036
- "AriakitMenuProvider",
2037
- "SpringMotionConfig"
2038
- ],
2039
- "internalComponentProps": {},
2040
- "propToVariantKeys": {},
2041
- "motionVarPrefixes": [
2042
- "--uds-motion-subtle-3-",
2043
- "--uds-motion-smooth-3-"
2044
- ]
2045
- },
2046
- "Menu.ItemBase": {
2047
- "name": "Menu.ItemBase",
2048
- "defaultProps": {
2049
- "spacing": "0",
2050
- "spacingHorizontal": "4",
2051
- "spacingVertical": "3.5",
2052
- "columnGap": "2",
2053
- "alignItems": "center",
2054
- "justifyContent": "space-between"
2055
- },
2056
- "getStylesLiterals": {
2057
- "textAlign": "start",
2058
- "menuitemSizeRoot": "default",
2059
- "flexDirection": "row",
2060
- "menuitemSizeStartIcon": "default",
2061
- "menuitemSizeEndIcon": "default"
2062
- },
2063
- "cxLiterals": [
2064
- "flex",
2065
- "focus-visible:text-brand",
2066
- "focus-visible:bg-brand-secondary",
2067
- "focus-visible:z-10",
2068
- "uds-ring",
2069
- "!-outline-offset-2",
2070
- "[&:not([aria-checked])]:cursor-default",
2071
- "opacity-25",
2072
- "cursor-not-allowed",
2073
- "duration-20",
2074
- "transition-[font-variation-settings]",
2075
- "ease-in-out",
2076
- "z-0",
2077
- "uds-start-icon",
2078
- "uds-end-icon"
2079
- ],
2080
- "internalComponents": [
2081
- "Pressable",
2082
- "IconSlot",
2083
- "RootComponent",
2084
- "HStack",
2085
- "AnimatePresence"
2086
- ],
2087
- "internalComponentProps": {
2088
- "HStack": {
2089
- "alignItems": [
2090
- "center"
2091
- ],
2092
- "width": [
2093
- "full"
2094
- ]
2095
- },
2096
- "AnimatePresence": {
2097
- "mode": [
2098
- "popLayout"
2099
- ]
2100
- }
2101
- },
2102
- "propToVariantKeys": {
2103
- "startIcon": [
2104
- "icon"
2105
- ],
2106
- "endIcon": [
2107
- "icon"
2108
- ],
2109
- "columnGap": [
2110
- "gap"
2111
- ]
2112
- },
2113
- "motionVarPrefixes": []
2114
- },
2115
- "Menu.Trigger": {
2116
- "name": "Menu.Trigger",
2117
- "defaultProps": {},
2118
- "getStylesLiterals": {},
2119
- "cxLiterals": [
2120
- "uds-menu-trigger"
2121
- ],
2122
- "internalComponents": [
2123
- "AriakitMenuTrigger",
2124
- "Box"
2125
- ],
2126
- "internalComponentProps": {
2127
- "Box": {
2128
- "className": [
2129
- "uds-ring h-fit w-fit"
2130
- ]
2131
- }
2132
- },
2133
- "propToVariantKeys": {},
2134
- "motionVarPrefixes": []
2135
- },
2136
- "Menu.Content": {
2137
- "name": "Menu.Content",
2138
- "defaultProps": {
2139
- "size": "default",
2140
- "variant": "default",
2141
- "gutter": "1"
2142
- },
2143
- "getStylesLiterals": {},
2144
- "cxLiterals": [
2145
- "uds-menu-content",
2146
- "transition-shadow",
2147
- "duration-200",
2148
- "ease-in-out",
2149
- "min-w-60",
2150
- "max-w-lg",
2151
- "max-h-96",
2152
- "overflow-auto",
2153
- "uds-ring",
2154
- "z-10",
2155
- "group"
2156
- ],
2157
- "internalComponents": [
2158
- "AriakitMenu",
2159
- "AnimatePresence",
2160
- "MotionVStack"
2161
- ],
2162
- "internalComponentProps": {},
2163
- "propToVariantKeys": {
2164
- "size": [
2165
- "menucontentSizeRoot"
2166
- ],
2167
- "variant": [
2168
- "menucontentVariantRoot"
2169
- ]
2170
- },
2171
- "motionVarPrefixes": []
2172
- },
2173
- "Menu.Divider": {
2174
- "name": "Menu.Divider",
2175
- "defaultProps": {
2176
- "role": "separator",
2177
- "contentPosition": "start",
2178
- "gap": "4"
2179
- },
2180
- "getStylesLiterals": {
2181
- "menuitemDividerVariantRoot": "default",
2182
- "menuitemDividerVariantText": "default",
2183
- "menuitemDividerVariantLine": "default"
2184
- },
2185
- "cxLiterals": [],
2186
- "internalComponents": [
2187
- "DividerInternal"
2188
- ],
2189
- "internalComponentProps": {
2190
- "DividerInternal": {
2191
- "variant": [
2192
- "inherit"
2193
- ]
2194
- }
2195
- },
2196
- "propToVariantKeys": {},
2197
- "motionVarPrefixes": []
2198
- },
2199
- "Menu": {
2200
- "name": "Menu",
2201
- "defaultProps": {},
2202
- "getStylesLiterals": {},
2203
- "cxLiterals": [],
2204
- "internalComponents": [],
2205
- "internalComponentProps": {},
2206
- "propToVariantKeys": {},
2207
- "motionVarPrefixes": []
2208
- },
2209
- "Menu.ItemCheckbox": {
2210
- "name": "Menu.ItemCheckbox",
2211
- "defaultProps": {},
2212
- "getStylesLiterals": {
2213
- "menuitemItemCheckboxVariantRoot": "default",
2214
- "menuitemItemCheckboxVariantActiveRoot": "on",
2215
- "menuitemItemCheckboxVariantActiveRoot:1": "off",
2216
- "menuitemItemCheckboxVariantText": "default",
2217
- "menuitemItemCheckboxVariantActiveText": "on",
2218
- "menuitemItemCheckboxVariantActiveText:1": "off",
2219
- "menuitemItemCheckboxVariantStartIcon": "default",
2220
- "menuitemItemCheckboxVariantActiveStartIcon": "on",
2221
- "menuitemItemCheckboxVariantActiveStartIcon:1": "off",
2222
- "menuitemItemCheckboxVariantEndIcon": "default",
2223
- "menuitemItemCheckboxVariantActiveEndIcon": "on",
2224
- "menuitemItemCheckboxVariantActiveEndIcon:1": "off"
2225
- },
2226
- "cxLiterals": [
2227
- "uds-menu-item-checkbox"
2228
- ],
2229
- "internalComponents": [
2230
- "MenuItemBase"
2231
- ],
2232
- "internalComponentProps": {},
2233
- "propToVariantKeys": {},
2234
- "motionVarPrefixes": []
2235
- },
2236
- "ChipLink": {
2237
- "name": "ChipLink",
2238
- "defaultProps": {
2239
- "variant": "primary"
2240
- },
2241
- "getStylesLiterals": {},
2242
- "cxLiterals": [
2243
- "uds-ring"
2244
- ],
2245
- "internalComponents": [
2246
- "ChipBase"
2247
- ],
2248
- "internalComponentProps": {
2249
- "ChipBase": {
2250
- "as": [
2251
- "a"
2252
- ]
2253
- }
2254
- },
2255
- "propToVariantKeys": {
2256
- "variant": [
2257
- "chipLinkVariantRoot",
2258
- "chipLinkVariantIcon"
2259
- ]
2260
- },
2261
- "motionVarPrefixes": []
2262
- },
2263
- "ChipDismissible": {
2264
- "name": "ChipDismissible",
2265
- "defaultProps": {
2266
- "variant": "primary"
2267
- },
2268
- "getStylesLiterals": {},
2269
- "cxLiterals": [
2270
- "uds-chip-dismissible-button",
2271
- "uds-hit-target",
2272
- "uds-ring",
2273
- "rounded-full"
2274
- ],
2275
- "internalComponents": [
2276
- "ChipBase",
2277
- "IconSlot",
2278
- "Pressable"
2279
- ],
2280
- "internalComponentProps": {},
2281
- "propToVariantKeys": {
2282
- "variant": [
2283
- "chipDismissibleVariantRoot",
2284
- "chipDismissibleVariantIcon"
2285
- ],
2286
- "dismissButtonAriaLabel": [
2287
- "aria-label"
2288
- ]
2289
- },
2290
- "motionVarPrefixes": []
2291
- },
2292
- "ChipToggle": {
2293
- "name": "ChipToggle",
2294
- "defaultProps": {
2295
- "variant": "primary",
2296
- "role": "checkbox"
2297
- },
2298
- "getStylesLiterals": {
2299
- "chipToggleVariantActiveRoot": "on",
2300
- "chipToggleVariantActiveRoot:1": "off"
2301
- },
2302
- "cxLiterals": [
2303
- "uds-ring"
2304
- ],
2305
- "internalComponents": [
2306
- "ChipBase"
2307
- ],
2308
- "internalComponentProps": {
2309
- "ChipBase": {
2310
- "as": [
2311
- "button"
2312
- ]
2313
- }
2314
- },
2315
- "propToVariantKeys": {
2316
- "variant": [
2317
- "chipToggleVariantRoot",
2318
- "chipToggleVariantIcon"
2319
- ]
2320
- },
2321
- "motionVarPrefixes": []
2322
- },
2323
- "Chip": {
2324
- "name": "Chip",
2325
- "defaultProps": {},
2326
- "getStylesLiterals": {},
2327
- "cxLiterals": [],
2328
- "internalComponents": [
2329
- "ChipDismissible",
2330
- "ChipToggle",
2331
- "ChipLink",
2332
- "ChipButton"
2333
- ],
2334
- "internalComponentProps": {},
2335
- "propToVariantKeys": {},
2336
- "motionVarPrefixes": []
2337
- },
2338
- "ChipBase": {
2339
- "name": "ChipBase",
2340
- "defaultProps": {
2341
- "size": "md",
2342
- "as": "div"
2343
- },
2344
- "getStylesLiterals": {},
2345
- "cxLiterals": [
2346
- "pointer-events-none",
2347
- "cursor-default",
2348
- "opacity-50",
2349
- "inline-flex",
2350
- "items-center",
2351
- "transition-[background-color,outline-color,box-shadow]",
2352
- "truncate",
2353
- "whitespace-nowrap",
2354
- "text-center",
2355
- "flex-1"
2356
- ],
2357
- "internalComponents": [
2358
- "IconSlot",
2359
- "HStack",
2360
- "As",
2361
- "Text"
2362
- ],
2363
- "internalComponentProps": {
2364
- "Text": {
2365
- "as": [
2366
- "span"
2367
- ],
2368
- "color": [
2369
- "current"
2370
- ],
2371
- "variant": [
2372
- "inherit"
2373
- ]
2374
- }
2375
- },
2376
- "propToVariantKeys": {
2377
- "size": [
2378
- "chipSizeRoot",
2379
- "chipSizeIcon"
2380
- ],
2381
- "startIcon": [
2382
- "icon"
2383
- ],
2384
- "endIcon": [
2385
- "icon"
2386
- ]
2387
- },
2388
- "motionVarPrefixes": []
2389
- },
2390
- "ChipButton": {
2391
- "name": "ChipButton",
2392
- "defaultProps": {
2393
- "variant": "primary"
2394
- },
2395
- "getStylesLiterals": {},
2396
- "cxLiterals": [
2397
- "uds-ring"
2398
- ],
2399
- "internalComponents": [
2400
- "ChipBase"
2401
- ],
2402
- "internalComponentProps": {
2403
- "ChipBase": {
2404
- "as": [
2405
- "button"
2406
- ]
2407
- }
2408
- },
2409
- "propToVariantKeys": {
2410
- "variant": [
2411
- "chipLinkVariantRoot",
2412
- "chipLinkVariantIcon"
2413
- ]
2414
- },
2415
- "motionVarPrefixes": []
2416
- }
2417
- }