@yahoo/uds 3.104.0 → 3.105.0

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