@yahoo/uds 3.108.1 → 3.109.0-beta.1

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