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