@yahoo/uds 3.113.0 → 3.114.0-beta.2

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