@yahoo/uds 3.116.0 → 3.116.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.
- package/dist/components/client/BottomSheet/BottomSheet.cjs +37 -8
- package/dist/components/client/BottomSheet/BottomSheet.js +38 -9
- package/dist/components/client/BottomSheet/BottomSheetContent.cjs +4 -2
- package/dist/components/client/BottomSheet/BottomSheetContent.js +4 -2
- package/dist/components/client/BottomSheet/BottomSheetInternalContext.cjs +15 -0
- package/dist/components/client/BottomSheet/BottomSheetInternalContext.d.cts +12 -0
- package/dist/components/client/BottomSheet/BottomSheetInternalContext.d.ts +12 -0
- package/dist/components/client/BottomSheet/BottomSheetInternalContext.js +12 -0
- package/dist/styles/styler.d.cts +19 -19
- package/dist/styles/styler.d.ts +19 -19
- package/dist/tailwind/dist/css/generate.cjs +6 -0
- package/dist/tailwind/dist/css/generate.helpers.cjs +5 -1
- package/dist/tailwind/dist/css/generate.helpers.js +5 -1
- package/dist/tailwind/dist/css/generate.js +6 -0
- package/dist/tailwind/dist/css/nodeUtils.cjs +2 -1
- package/dist/tailwind/dist/css/nodeUtils.js +2 -1
- package/dist/tailwind/dist/css/postcss.cjs +1 -1
- package/dist/tailwind/dist/css/postcss.helpers.cjs +8 -6
- package/dist/tailwind/dist/css/postcss.helpers.js +8 -6
- package/dist/tailwind/dist/css/postcss.js +1 -1
- package/dist/tailwind/dist/purger/optimized/ast/expressions.cjs +103 -1
- package/dist/tailwind/dist/purger/optimized/ast/expressions.js +102 -2
- package/dist/tailwind/dist/purger/optimized/ast/jsx.cjs +7 -1
- package/dist/tailwind/dist/purger/optimized/ast/jsx.js +7 -1
- package/dist/tailwind/dist/purger/optimized/purgeFromCode.cjs +18 -13
- package/dist/tailwind/dist/purger/optimized/purgeFromCode.js +18 -13
- package/dist/tailwind/dist/purger/optimized/utils/componentAnalyzer.cjs +2 -1
- package/dist/tailwind/dist/purger/optimized/utils/componentAnalyzer.js +2 -1
- package/dist/uds/generated/componentData.cjs +825 -806
- package/dist/uds/generated/componentData.js +799 -786
- package/dist/uds/generated/tailwindPurge.cjs +7 -7
- package/dist/uds/generated/tailwindPurge.js +7 -7
- package/dist/uds/package.cjs +1 -1
- package/dist/uds/package.js +1 -1
- package/generated/componentData.json +1122 -1107
- package/generated/tailwindPurge.ts +2 -2
- package/package.json +2 -2
|
@@ -1,86 +1,6 @@
|
|
|
1
1
|
/*! © 2026 Yahoo, Inc. UDS v0.0.0-development */
|
|
2
2
|
|
|
3
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": { "elevationAlias": [
|
|
15
|
-
"backgroundColor",
|
|
16
|
-
"borderColor",
|
|
17
|
-
"borderWidth",
|
|
18
|
-
"dropShadow"
|
|
19
|
-
] },
|
|
20
|
-
"motionVarPrefixes": []
|
|
21
|
-
};
|
|
22
|
-
var FormLabel = {
|
|
23
|
-
"name": "FormLabel",
|
|
24
|
-
"defaultProps": {
|
|
25
|
-
"color": "muted",
|
|
26
|
-
"variant": "label3",
|
|
27
|
-
"as": "label"
|
|
28
|
-
},
|
|
29
|
-
"getStylesLiterals": {},
|
|
30
|
-
"cxLiterals": ["cursor-[inherit]"],
|
|
31
|
-
"internalComponents": ["Text"],
|
|
32
|
-
"internalComponentProps": { "Text": {
|
|
33
|
-
"as": ["sup"],
|
|
34
|
-
"variant": ["inherit"],
|
|
35
|
-
"spacingStart": ["0.5"]
|
|
36
|
-
} },
|
|
37
|
-
"propToVariantKeys": {},
|
|
38
|
-
"motionVarPrefixes": []
|
|
39
|
-
};
|
|
40
|
-
var HStack = {
|
|
41
|
-
"name": "HStack",
|
|
42
|
-
"defaultProps": {},
|
|
43
|
-
"getStylesLiterals": {},
|
|
44
|
-
"cxLiterals": [],
|
|
45
|
-
"internalComponents": ["Box"],
|
|
46
|
-
"internalComponentProps": { "Box": { "flexDirection": ["row"] } },
|
|
47
|
-
"propToVariantKeys": { "gap": ["rowGap", "columnGap"] },
|
|
48
|
-
"motionVarPrefixes": []
|
|
49
|
-
};
|
|
50
|
-
var Icon = {
|
|
51
|
-
"name": "Icon",
|
|
52
|
-
"defaultProps": {
|
|
53
|
-
"size": "md",
|
|
54
|
-
"variant": "outline",
|
|
55
|
-
"color": "primary"
|
|
56
|
-
},
|
|
57
|
-
"getStylesLiterals": { "flex": "none" },
|
|
58
|
-
"cxLiterals": ["[&_path]:fill-current"],
|
|
59
|
-
"internalComponents": ["SVGIcon"],
|
|
60
|
-
"internalComponentProps": {},
|
|
61
|
-
"propToVariantKeys": {},
|
|
62
|
-
"motionVarPrefixes": []
|
|
63
|
-
};
|
|
64
|
-
var IconSlot = {
|
|
65
|
-
"name": "IconSlot",
|
|
66
|
-
"defaultProps": {},
|
|
67
|
-
"getStylesLiterals": {},
|
|
68
|
-
"cxLiterals": [],
|
|
69
|
-
"internalComponents": ["Icon"],
|
|
70
|
-
"internalComponentProps": {},
|
|
71
|
-
"propToVariantKeys": {},
|
|
72
|
-
"motionVarPrefixes": []
|
|
73
|
-
};
|
|
74
|
-
var Image = {
|
|
75
|
-
"name": "Image",
|
|
76
|
-
"defaultProps": {},
|
|
77
|
-
"getStylesLiterals": {},
|
|
78
|
-
"cxLiterals": [],
|
|
79
|
-
"internalComponents": [],
|
|
80
|
-
"internalComponentProps": {},
|
|
81
|
-
"propToVariantKeys": {},
|
|
82
|
-
"motionVarPrefixes": []
|
|
83
|
-
};
|
|
84
4
|
var Link = {
|
|
85
5
|
"name": "Link",
|
|
86
6
|
"defaultProps": { "variant": "primary" },
|
|
@@ -116,6 +36,34 @@ var Link = {
|
|
|
116
36
|
},
|
|
117
37
|
"motionVarPrefixes": []
|
|
118
38
|
};
|
|
39
|
+
var VStack = {
|
|
40
|
+
"name": "VStack",
|
|
41
|
+
"defaultProps": {},
|
|
42
|
+
"getStylesLiterals": {},
|
|
43
|
+
"cxLiterals": [],
|
|
44
|
+
"internalComponents": ["Box"],
|
|
45
|
+
"internalComponentProps": { "Box": { "flexDirection": ["column"] } },
|
|
46
|
+
"propToVariantKeys": { "gap": ["columnGap", "rowGap"] },
|
|
47
|
+
"motionVarPrefixes": []
|
|
48
|
+
};
|
|
49
|
+
var Box = {
|
|
50
|
+
"name": "Box",
|
|
51
|
+
"defaultProps": {
|
|
52
|
+
"as": "div",
|
|
53
|
+
"display": "flex"
|
|
54
|
+
},
|
|
55
|
+
"getStylesLiterals": {},
|
|
56
|
+
"cxLiterals": [],
|
|
57
|
+
"internalComponents": ["Comp"],
|
|
58
|
+
"internalComponentProps": {},
|
|
59
|
+
"propToVariantKeys": { "elevationAlias": [
|
|
60
|
+
"backgroundColor",
|
|
61
|
+
"borderColor",
|
|
62
|
+
"borderWidth",
|
|
63
|
+
"dropShadow"
|
|
64
|
+
] },
|
|
65
|
+
"motionVarPrefixes": []
|
|
66
|
+
};
|
|
119
67
|
var Scrim = {
|
|
120
68
|
"name": "Scrim",
|
|
121
69
|
"defaultProps": {
|
|
@@ -140,6 +88,38 @@ var Scrim = {
|
|
|
140
88
|
"propToVariantKeys": { "variant": ["scrimVariantRoot"] },
|
|
141
89
|
"motionVarPrefixes": []
|
|
142
90
|
};
|
|
91
|
+
var Icon = {
|
|
92
|
+
"name": "Icon",
|
|
93
|
+
"defaultProps": {
|
|
94
|
+
"size": "md",
|
|
95
|
+
"variant": "outline",
|
|
96
|
+
"color": "primary"
|
|
97
|
+
},
|
|
98
|
+
"getStylesLiterals": { "flex": "none" },
|
|
99
|
+
"cxLiterals": ["[&_path]:fill-current"],
|
|
100
|
+
"internalComponents": ["SVGIcon"],
|
|
101
|
+
"internalComponentProps": {},
|
|
102
|
+
"propToVariantKeys": {},
|
|
103
|
+
"motionVarPrefixes": []
|
|
104
|
+
};
|
|
105
|
+
var FormLabel = {
|
|
106
|
+
"name": "FormLabel",
|
|
107
|
+
"defaultProps": {
|
|
108
|
+
"color": "muted",
|
|
109
|
+
"variant": "label3",
|
|
110
|
+
"as": "label"
|
|
111
|
+
},
|
|
112
|
+
"getStylesLiterals": {},
|
|
113
|
+
"cxLiterals": ["cursor-[inherit]"],
|
|
114
|
+
"internalComponents": ["Text"],
|
|
115
|
+
"internalComponentProps": { "Text": {
|
|
116
|
+
"as": ["sup"],
|
|
117
|
+
"variant": ["inherit"],
|
|
118
|
+
"spacingStart": ["0.5"]
|
|
119
|
+
} },
|
|
120
|
+
"propToVariantKeys": {},
|
|
121
|
+
"motionVarPrefixes": []
|
|
122
|
+
};
|
|
143
123
|
var Text = {
|
|
144
124
|
"name": "Text",
|
|
145
125
|
"defaultProps": {
|
|
@@ -160,22 +140,32 @@ var Text = {
|
|
|
160
140
|
] },
|
|
161
141
|
"motionVarPrefixes": []
|
|
162
142
|
};
|
|
163
|
-
var
|
|
164
|
-
"name": "
|
|
143
|
+
var IconSlot = {
|
|
144
|
+
"name": "IconSlot",
|
|
145
|
+
"defaultProps": {},
|
|
146
|
+
"getStylesLiterals": {},
|
|
147
|
+
"cxLiterals": [],
|
|
148
|
+
"internalComponents": ["Icon"],
|
|
149
|
+
"internalComponentProps": {},
|
|
150
|
+
"propToVariantKeys": {},
|
|
151
|
+
"motionVarPrefixes": []
|
|
152
|
+
};
|
|
153
|
+
var HStack = {
|
|
154
|
+
"name": "HStack",
|
|
165
155
|
"defaultProps": {},
|
|
166
156
|
"getStylesLiterals": {},
|
|
167
157
|
"cxLiterals": [],
|
|
168
158
|
"internalComponents": ["Box"],
|
|
169
|
-
"internalComponentProps": { "Box": { "flexDirection": ["
|
|
170
|
-
"propToVariantKeys": { "gap": ["
|
|
159
|
+
"internalComponentProps": { "Box": { "flexDirection": ["row"] } },
|
|
160
|
+
"propToVariantKeys": { "gap": ["rowGap", "columnGap"] },
|
|
171
161
|
"motionVarPrefixes": []
|
|
172
162
|
};
|
|
173
|
-
var
|
|
174
|
-
"name": "
|
|
163
|
+
var Image = {
|
|
164
|
+
"name": "Image",
|
|
175
165
|
"defaultProps": {},
|
|
176
166
|
"getStylesLiterals": {},
|
|
177
167
|
"cxLiterals": [],
|
|
178
|
-
"internalComponents": [
|
|
168
|
+
"internalComponents": [],
|
|
179
169
|
"internalComponentProps": {},
|
|
180
170
|
"propToVariantKeys": {},
|
|
181
171
|
"motionVarPrefixes": []
|
|
@@ -223,24 +213,13 @@ var DividerInternal = {
|
|
|
223
213
|
] },
|
|
224
214
|
"motionVarPrefixes": []
|
|
225
215
|
};
|
|
226
|
-
var
|
|
227
|
-
"name": "
|
|
228
|
-
"defaultProps": {
|
|
229
|
-
"color": "primary",
|
|
230
|
-
"size": "lg"
|
|
231
|
-
},
|
|
216
|
+
var Divider = {
|
|
217
|
+
"name": "Divider",
|
|
218
|
+
"defaultProps": {},
|
|
232
219
|
"getStylesLiterals": {},
|
|
233
|
-
"cxLiterals": [
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
"sr-only"
|
|
237
|
-
],
|
|
238
|
-
"internalComponents": ["Icon"],
|
|
239
|
-
"internalComponentProps": { "Icon": {
|
|
240
|
-
"role": ["img"],
|
|
241
|
-
"className": ["animate-spin"],
|
|
242
|
-
"aria-hidden": ["true"]
|
|
243
|
-
} },
|
|
220
|
+
"cxLiterals": [],
|
|
221
|
+
"internalComponents": ["DividerInternal"],
|
|
222
|
+
"internalComponentProps": {},
|
|
244
223
|
"propToVariantKeys": {},
|
|
245
224
|
"motionVarPrefixes": []
|
|
246
225
|
};
|
|
@@ -282,44 +261,25 @@ var Table = {
|
|
|
282
261
|
"propToVariantKeys": {},
|
|
283
262
|
"motionVarPrefixes": []
|
|
284
263
|
};
|
|
285
|
-
var
|
|
286
|
-
"name": "
|
|
287
|
-
"defaultProps": {},
|
|
288
|
-
"getStylesLiterals": {},
|
|
289
|
-
"cxLiterals": ["overflow-hidden"],
|
|
290
|
-
"internalComponents": ["SpringMotionConfig"],
|
|
291
|
-
"internalComponentProps": { "SpringMotionConfig": { "layoutSpeed": ["4"] } },
|
|
292
|
-
"propToVariantKeys": { "reduceMotion": ["reducedMotion"] },
|
|
293
|
-
"motionVarPrefixes": ["--uds-motion-subtle-4-", "--uds-motion-smooth-3-"]
|
|
294
|
-
};
|
|
295
|
-
var Badge = {
|
|
296
|
-
"name": "Badge",
|
|
264
|
+
var Spinner = {
|
|
265
|
+
"name": "Spinner",
|
|
297
266
|
"defaultProps": {
|
|
298
|
-
"
|
|
299
|
-
"size": "
|
|
267
|
+
"color": "primary",
|
|
268
|
+
"size": "lg"
|
|
300
269
|
},
|
|
301
270
|
"getStylesLiterals": {},
|
|
302
271
|
"cxLiterals": [
|
|
303
|
-
"
|
|
304
|
-
"
|
|
305
|
-
"
|
|
306
|
-
"text-center"
|
|
272
|
+
"self-center",
|
|
273
|
+
"relative",
|
|
274
|
+
"sr-only"
|
|
307
275
|
],
|
|
308
|
-
"internalComponents": ["
|
|
309
|
-
"internalComponentProps": {
|
|
310
|
-
"
|
|
311
|
-
"
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
}
|
|
316
|
-
},
|
|
317
|
-
"propToVariantKeys": {
|
|
318
|
-
"size": ["badgeSizeRoot", "badgeSizeIcon"],
|
|
319
|
-
"variant": ["badgeVariantRoot", "badgeVariantIcon"],
|
|
320
|
-
"startIcon": ["icon"],
|
|
321
|
-
"endIcon": ["icon"]
|
|
322
|
-
},
|
|
276
|
+
"internalComponents": ["Icon"],
|
|
277
|
+
"internalComponentProps": { "Icon": {
|
|
278
|
+
"role": ["img"],
|
|
279
|
+
"className": ["animate-spin"],
|
|
280
|
+
"aria-hidden": ["true"]
|
|
281
|
+
} },
|
|
282
|
+
"propToVariantKeys": {},
|
|
323
283
|
"motionVarPrefixes": []
|
|
324
284
|
};
|
|
325
285
|
var Button = {
|
|
@@ -446,6 +406,16 @@ var Checkbox = {
|
|
|
446
406
|
},
|
|
447
407
|
"motionVarPrefixes": ["--uds-motion-subtle-3-", "--uds-motion-smooth-3-"]
|
|
448
408
|
};
|
|
409
|
+
var SpringMotionConfig = {
|
|
410
|
+
"name": "SpringMotionConfig",
|
|
411
|
+
"defaultProps": { "reducedMotion": "user" },
|
|
412
|
+
"getStylesLiterals": {},
|
|
413
|
+
"cxLiterals": [],
|
|
414
|
+
"internalComponents": ["LazyMotion", "MotionConfig"],
|
|
415
|
+
"internalComponentProps": {},
|
|
416
|
+
"propToVariantKeys": { "loadFeatures": ["features"] },
|
|
417
|
+
"motionVarPrefixes": []
|
|
418
|
+
};
|
|
449
419
|
var IconButton = {
|
|
450
420
|
"name": "IconButton",
|
|
451
421
|
"defaultProps": { "type": "button" },
|
|
@@ -485,26 +455,6 @@ var IconButton = {
|
|
|
485
455
|
},
|
|
486
456
|
"motionVarPrefixes": ["--uds-motion-subtle-3-", "--uds-motion-smooth-3-"]
|
|
487
457
|
};
|
|
488
|
-
var Pressable = {
|
|
489
|
-
"name": "Pressable",
|
|
490
|
-
"defaultProps": {},
|
|
491
|
-
"getStylesLiterals": {},
|
|
492
|
-
"cxLiterals": [],
|
|
493
|
-
"internalComponents": ["Comp"],
|
|
494
|
-
"internalComponentProps": {},
|
|
495
|
-
"propToVariantKeys": {},
|
|
496
|
-
"motionVarPrefixes": []
|
|
497
|
-
};
|
|
498
|
-
var SpringMotionConfig = {
|
|
499
|
-
"name": "SpringMotionConfig",
|
|
500
|
-
"defaultProps": { "reducedMotion": "user" },
|
|
501
|
-
"getStylesLiterals": {},
|
|
502
|
-
"cxLiterals": [],
|
|
503
|
-
"internalComponents": ["LazyMotion", "MotionConfig"],
|
|
504
|
-
"internalComponentProps": {},
|
|
505
|
-
"propToVariantKeys": { "loadFeatures": ["features"] },
|
|
506
|
-
"motionVarPrefixes": []
|
|
507
|
-
};
|
|
508
458
|
var Switch = {
|
|
509
459
|
"name": "Switch",
|
|
510
460
|
"defaultProps": {
|
|
@@ -595,134 +545,63 @@ var Switch = {
|
|
|
595
545
|
},
|
|
596
546
|
"motionVarPrefixes": ["--uds-motion-bouncy-4-", "--uds-motion-smooth-3-"]
|
|
597
547
|
};
|
|
598
|
-
var
|
|
599
|
-
"name": "
|
|
548
|
+
var Badge = {
|
|
549
|
+
"name": "Badge",
|
|
600
550
|
"defaultProps": {
|
|
601
|
-
"
|
|
602
|
-
"
|
|
551
|
+
"variant": "primary",
|
|
552
|
+
"size": "md"
|
|
603
553
|
},
|
|
604
554
|
"getStylesLiterals": {},
|
|
605
|
-
"cxLiterals": [
|
|
606
|
-
|
|
607
|
-
"
|
|
608
|
-
"
|
|
609
|
-
"
|
|
610
|
-
"Text",
|
|
611
|
-
"HStack",
|
|
612
|
-
"AnimatePresence",
|
|
613
|
-
"VStack"
|
|
555
|
+
"cxLiterals": [
|
|
556
|
+
"flex-1",
|
|
557
|
+
"truncate",
|
|
558
|
+
"whitespace-nowrap",
|
|
559
|
+
"text-center"
|
|
614
560
|
],
|
|
561
|
+
"internalComponents": ["IconSlot", "HStack"],
|
|
615
562
|
"internalComponentProps": {
|
|
616
|
-
"
|
|
617
|
-
"variant": ["fill"],
|
|
618
|
-
"size": ["sm"],
|
|
619
|
-
"color": ["primary"]
|
|
620
|
-
},
|
|
621
|
-
"SpringMotionConfig": {
|
|
622
|
-
"layoutVariant": ["smooth"],
|
|
623
|
-
"layoutSpeed": ["3"]
|
|
624
|
-
},
|
|
625
|
-
"Pressable": {
|
|
626
|
-
"display": ["flex"],
|
|
627
|
-
"flexDirection": ["row"],
|
|
628
|
-
"alignItems": ["center"],
|
|
629
|
-
"justifyContent": ["space-between"],
|
|
630
|
-
"borderRadius": ["md"]
|
|
631
|
-
},
|
|
632
|
-
"Text": {
|
|
633
|
-
"variant": ["title4"],
|
|
634
|
-
"color": ["primary"]
|
|
635
|
-
},
|
|
563
|
+
"IconSlot": { "data-testid": ["start-icon", "end-icon"] },
|
|
636
564
|
"HStack": {
|
|
637
|
-
"
|
|
638
|
-
"
|
|
639
|
-
"
|
|
640
|
-
"columnGap": ["2.5"]
|
|
565
|
+
"gap": ["2"],
|
|
566
|
+
"display": ["inline-flex"],
|
|
567
|
+
"alignItems": ["center"]
|
|
641
568
|
}
|
|
642
569
|
},
|
|
643
|
-
"propToVariantKeys": {
|
|
644
|
-
|
|
570
|
+
"propToVariantKeys": {
|
|
571
|
+
"size": ["badgeSizeRoot", "badgeSizeIcon"],
|
|
572
|
+
"variant": ["badgeVariantRoot", "badgeVariantIcon"],
|
|
573
|
+
"startIcon": ["icon"],
|
|
574
|
+
"endIcon": ["icon"]
|
|
575
|
+
},
|
|
576
|
+
"motionVarPrefixes": []
|
|
645
577
|
};
|
|
646
|
-
var
|
|
647
|
-
"name": "
|
|
578
|
+
var AnimateHeightChange = {
|
|
579
|
+
"name": "AnimateHeightChange",
|
|
648
580
|
"defaultProps": {},
|
|
649
581
|
"getStylesLiterals": {},
|
|
650
|
-
"cxLiterals": [],
|
|
651
|
-
"internalComponents": [],
|
|
652
|
-
"internalComponentProps": {},
|
|
653
|
-
"propToVariantKeys": {},
|
|
654
|
-
"motionVarPrefixes": []
|
|
582
|
+
"cxLiterals": ["overflow-hidden"],
|
|
583
|
+
"internalComponents": ["SpringMotionConfig"],
|
|
584
|
+
"internalComponentProps": { "SpringMotionConfig": { "layoutSpeed": ["4"] } },
|
|
585
|
+
"propToVariantKeys": { "reduceMotion": ["reducedMotion"] },
|
|
586
|
+
"motionVarPrefixes": ["--uds-motion-subtle-4-", "--uds-motion-smooth-3-"]
|
|
655
587
|
};
|
|
656
|
-
var
|
|
657
|
-
"name": "
|
|
588
|
+
var Pressable = {
|
|
589
|
+
"name": "Pressable",
|
|
658
590
|
"defaultProps": {},
|
|
659
591
|
"getStylesLiterals": {},
|
|
660
|
-
"cxLiterals": [
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
"mx-auto",
|
|
665
|
-
"h-fit",
|
|
666
|
-
"w-[600px]",
|
|
667
|
-
"origin-center",
|
|
668
|
-
"scale-95",
|
|
669
|
-
"opacity-0",
|
|
670
|
-
"transition",
|
|
671
|
-
"duration-150",
|
|
672
|
-
"data-[enter]:scale-100",
|
|
673
|
-
"data-[enter]:opacity-100",
|
|
674
|
-
"data-[enter]:bg-primary",
|
|
675
|
-
"backdrop-blur-0",
|
|
676
|
-
"data-[enter]:opacity-60",
|
|
677
|
-
"data-[enter]:backdrop-blur-sm"
|
|
678
|
-
],
|
|
679
|
-
"internalComponents": [
|
|
680
|
-
"IconButton",
|
|
681
|
-
"Dialog",
|
|
682
|
-
"HStack",
|
|
683
|
-
"Text",
|
|
684
|
-
"VStack"
|
|
685
|
-
],
|
|
686
|
-
"internalComponentProps": {
|
|
687
|
-
"IconButton": {
|
|
688
|
-
"aria-label": ["Close"],
|
|
689
|
-
"size": ["sm"],
|
|
690
|
-
"variant": ["tertiary"]
|
|
691
|
-
},
|
|
692
|
-
"HStack": {
|
|
693
|
-
"alignItems": ["center"],
|
|
694
|
-
"justifyContent": ["space-between"]
|
|
695
|
-
},
|
|
696
|
-
"Text": {
|
|
697
|
-
"variant": ["headline1"],
|
|
698
|
-
"color": ["primary"]
|
|
699
|
-
},
|
|
700
|
-
"VStack": {
|
|
701
|
-
"borderRadius": ["md"],
|
|
702
|
-
"position": ["fixed"],
|
|
703
|
-
"backgroundColor": ["primary"],
|
|
704
|
-
"dropShadow": ["md"],
|
|
705
|
-
"spacing": ["8"],
|
|
706
|
-
"overflow": ["hidden"]
|
|
707
|
-
}
|
|
708
|
-
},
|
|
709
|
-
"propToVariantKeys": { "handleClose": ["onClick"] },
|
|
592
|
+
"cxLiterals": [],
|
|
593
|
+
"internalComponents": ["Comp"],
|
|
594
|
+
"internalComponentProps": {},
|
|
595
|
+
"propToVariantKeys": {},
|
|
710
596
|
"motionVarPrefixes": []
|
|
711
597
|
};
|
|
712
|
-
var
|
|
713
|
-
"name": "
|
|
598
|
+
var AvoidMotionLibraryProvider = {
|
|
599
|
+
"name": "AvoidMotionLibraryProvider",
|
|
714
600
|
"defaultProps": {},
|
|
715
601
|
"getStylesLiterals": {},
|
|
716
602
|
"cxLiterals": [],
|
|
717
|
-
"internalComponents": [
|
|
718
|
-
|
|
719
|
-
"Text",
|
|
720
|
-
"OriginalPopoverHeading"
|
|
721
|
-
],
|
|
722
|
-
"internalComponentProps": { "Text": {
|
|
723
|
-
"variant": ["headline1"],
|
|
724
|
-
"color": ["primary"]
|
|
725
|
-
} },
|
|
603
|
+
"internalComponents": [],
|
|
604
|
+
"internalComponentProps": {},
|
|
726
605
|
"propToVariantKeys": {},
|
|
727
606
|
"motionVarPrefixes": []
|
|
728
607
|
};
|
|
@@ -784,6 +663,23 @@ var SegmentedControl = {
|
|
|
784
663
|
},
|
|
785
664
|
"motionVarPrefixes": []
|
|
786
665
|
};
|
|
666
|
+
var Popover = {
|
|
667
|
+
"name": "Popover",
|
|
668
|
+
"defaultProps": {},
|
|
669
|
+
"getStylesLiterals": {},
|
|
670
|
+
"cxLiterals": [],
|
|
671
|
+
"internalComponents": [
|
|
672
|
+
"HStack",
|
|
673
|
+
"Text",
|
|
674
|
+
"OriginalPopoverHeading"
|
|
675
|
+
],
|
|
676
|
+
"internalComponentProps": { "Text": {
|
|
677
|
+
"variant": ["headline1"],
|
|
678
|
+
"color": ["primary"]
|
|
679
|
+
} },
|
|
680
|
+
"propToVariantKeys": {},
|
|
681
|
+
"motionVarPrefixes": []
|
|
682
|
+
};
|
|
787
683
|
var SwitchV2 = {
|
|
788
684
|
"name": "SwitchV2",
|
|
789
685
|
"defaultProps": {
|
|
@@ -921,43 +817,115 @@ var Tabs = {
|
|
|
921
817
|
"propToVariantKeys": {},
|
|
922
818
|
"motionVarPrefixes": []
|
|
923
819
|
};
|
|
924
|
-
var
|
|
925
|
-
"name": "
|
|
820
|
+
var Modal = {
|
|
821
|
+
"name": "Modal",
|
|
926
822
|
"defaultProps": {},
|
|
927
823
|
"getStylesLiterals": {},
|
|
928
|
-
"cxLiterals": [],
|
|
929
|
-
"internalComponents": ["AvatarImage"],
|
|
930
|
-
"internalComponentProps": {},
|
|
931
|
-
"propToVariantKeys": {},
|
|
932
|
-
"motionVarPrefixes": []
|
|
933
|
-
};
|
|
934
|
-
var AvatarIcon = {
|
|
935
|
-
"name": "AvatarIcon",
|
|
936
|
-
"defaultProps": {
|
|
937
|
-
"size": "md",
|
|
938
|
-
"variant": "primary"
|
|
939
|
-
},
|
|
940
|
-
"getStylesLiterals": {},
|
|
941
824
|
"cxLiterals": [
|
|
942
|
-
"
|
|
943
|
-
"
|
|
944
|
-
"
|
|
945
|
-
"
|
|
946
|
-
"
|
|
947
|
-
"
|
|
948
|
-
"
|
|
949
|
-
"
|
|
825
|
+
"inset-8",
|
|
826
|
+
"top-[250px]",
|
|
827
|
+
"z-50",
|
|
828
|
+
"mx-auto",
|
|
829
|
+
"h-fit",
|
|
830
|
+
"w-[600px]",
|
|
831
|
+
"origin-center",
|
|
832
|
+
"scale-95",
|
|
833
|
+
"opacity-0",
|
|
834
|
+
"transition",
|
|
835
|
+
"duration-150",
|
|
836
|
+
"data-[enter]:scale-100",
|
|
837
|
+
"data-[enter]:opacity-100",
|
|
838
|
+
"data-[enter]:bg-primary",
|
|
839
|
+
"backdrop-blur-0",
|
|
840
|
+
"data-[enter]:opacity-60",
|
|
841
|
+
"data-[enter]:backdrop-blur-sm"
|
|
950
842
|
],
|
|
951
|
-
"internalComponents": [
|
|
952
|
-
|
|
953
|
-
|
|
843
|
+
"internalComponents": [
|
|
844
|
+
"IconButton",
|
|
845
|
+
"Dialog",
|
|
846
|
+
"HStack",
|
|
847
|
+
"Text",
|
|
848
|
+
"VStack"
|
|
849
|
+
],
|
|
850
|
+
"internalComponentProps": {
|
|
851
|
+
"IconButton": {
|
|
852
|
+
"aria-label": ["Close"],
|
|
853
|
+
"size": ["sm"],
|
|
854
|
+
"variant": ["tertiary"]
|
|
855
|
+
},
|
|
856
|
+
"HStack": {
|
|
857
|
+
"alignItems": ["center"],
|
|
858
|
+
"justifyContent": ["space-between"]
|
|
859
|
+
},
|
|
860
|
+
"Text": {
|
|
861
|
+
"variant": ["headline1"],
|
|
862
|
+
"color": ["primary"]
|
|
863
|
+
},
|
|
864
|
+
"VStack": {
|
|
865
|
+
"borderRadius": ["md"],
|
|
866
|
+
"position": ["fixed"],
|
|
867
|
+
"backgroundColor": ["primary"],
|
|
868
|
+
"dropShadow": ["md"],
|
|
869
|
+
"spacing": ["8"],
|
|
870
|
+
"overflow": ["hidden"]
|
|
871
|
+
}
|
|
872
|
+
},
|
|
873
|
+
"propToVariantKeys": { "handleClose": ["onClick"] },
|
|
954
874
|
"motionVarPrefixes": []
|
|
955
875
|
};
|
|
956
|
-
var
|
|
957
|
-
"name": "
|
|
876
|
+
var Accordion = {
|
|
877
|
+
"name": "Accordion",
|
|
958
878
|
"defaultProps": {
|
|
959
|
-
"
|
|
960
|
-
"
|
|
879
|
+
"spacingHorizontal": "4",
|
|
880
|
+
"spacingVertical": "4"
|
|
881
|
+
},
|
|
882
|
+
"getStylesLiterals": {},
|
|
883
|
+
"cxLiterals": ["hover:bg-secondary/80", "w-full"],
|
|
884
|
+
"internalComponents": [
|
|
885
|
+
"Icon",
|
|
886
|
+
"SpringMotionConfig",
|
|
887
|
+
"Pressable",
|
|
888
|
+
"Text",
|
|
889
|
+
"HStack",
|
|
890
|
+
"AnimatePresence",
|
|
891
|
+
"VStack"
|
|
892
|
+
],
|
|
893
|
+
"internalComponentProps": {
|
|
894
|
+
"Icon": {
|
|
895
|
+
"variant": ["fill"],
|
|
896
|
+
"size": ["sm"],
|
|
897
|
+
"color": ["primary"]
|
|
898
|
+
},
|
|
899
|
+
"SpringMotionConfig": {
|
|
900
|
+
"layoutVariant": ["smooth"],
|
|
901
|
+
"layoutSpeed": ["3"]
|
|
902
|
+
},
|
|
903
|
+
"Pressable": {
|
|
904
|
+
"display": ["flex"],
|
|
905
|
+
"flexDirection": ["row"],
|
|
906
|
+
"alignItems": ["center"],
|
|
907
|
+
"justifyContent": ["space-between"],
|
|
908
|
+
"borderRadius": ["md"]
|
|
909
|
+
},
|
|
910
|
+
"Text": {
|
|
911
|
+
"variant": ["title4"],
|
|
912
|
+
"color": ["primary"]
|
|
913
|
+
},
|
|
914
|
+
"HStack": {
|
|
915
|
+
"display": ["flex"],
|
|
916
|
+
"alignItems": ["center"],
|
|
917
|
+
"justifyContent": ["space-between"],
|
|
918
|
+
"columnGap": ["2.5"]
|
|
919
|
+
}
|
|
920
|
+
},
|
|
921
|
+
"propToVariantKeys": {},
|
|
922
|
+
"motionVarPrefixes": ["--uds-motion-smooth-3-"]
|
|
923
|
+
};
|
|
924
|
+
var AvatarImage = {
|
|
925
|
+
"name": "AvatarImage",
|
|
926
|
+
"defaultProps": {
|
|
927
|
+
"size": "md",
|
|
928
|
+
"variant": "primary"
|
|
961
929
|
},
|
|
962
930
|
"getStylesLiterals": {},
|
|
963
931
|
"cxLiterals": [
|
|
@@ -1010,6 +978,64 @@ var AvatarText = {
|
|
|
1010
978
|
"propToVariantKeys": {},
|
|
1011
979
|
"motionVarPrefixes": []
|
|
1012
980
|
};
|
|
981
|
+
var Avatar = {
|
|
982
|
+
"name": "Avatar",
|
|
983
|
+
"defaultProps": {},
|
|
984
|
+
"getStylesLiterals": {},
|
|
985
|
+
"cxLiterals": [],
|
|
986
|
+
"internalComponents": ["AvatarImage"],
|
|
987
|
+
"internalComponentProps": {},
|
|
988
|
+
"propToVariantKeys": {},
|
|
989
|
+
"motionVarPrefixes": []
|
|
990
|
+
};
|
|
991
|
+
var AvatarIcon = {
|
|
992
|
+
"name": "AvatarIcon",
|
|
993
|
+
"defaultProps": {
|
|
994
|
+
"size": "md",
|
|
995
|
+
"variant": "primary"
|
|
996
|
+
},
|
|
997
|
+
"getStylesLiterals": {},
|
|
998
|
+
"cxLiterals": [
|
|
999
|
+
"overflow-hidden",
|
|
1000
|
+
"w-full",
|
|
1001
|
+
"h-full",
|
|
1002
|
+
"shrink-0",
|
|
1003
|
+
"text-center",
|
|
1004
|
+
"inline-flex",
|
|
1005
|
+
"justify-center",
|
|
1006
|
+
"items-center"
|
|
1007
|
+
],
|
|
1008
|
+
"internalComponents": ["IconSlot", "Box"],
|
|
1009
|
+
"internalComponentProps": {},
|
|
1010
|
+
"propToVariantKeys": { "size": ["avatarSizeIcon"] },
|
|
1011
|
+
"motionVarPrefixes": []
|
|
1012
|
+
};
|
|
1013
|
+
var BottomSheetContent = {
|
|
1014
|
+
"name": "BottomSheetContent",
|
|
1015
|
+
"defaultProps": {},
|
|
1016
|
+
"getStylesLiterals": {},
|
|
1017
|
+
"cxLiterals": ["min-h-0", "touch-pan-y"],
|
|
1018
|
+
"internalComponents": ["Box", "VStack"],
|
|
1019
|
+
"internalComponentProps": {
|
|
1020
|
+
"Box": {
|
|
1021
|
+
"display": ["block"],
|
|
1022
|
+
"flex": ["1"]
|
|
1023
|
+
},
|
|
1024
|
+
"VStack": { "className": ["pb-[calc(env(safe-area-inset-bottom))]"] }
|
|
1025
|
+
},
|
|
1026
|
+
"propToVariantKeys": {},
|
|
1027
|
+
"motionVarPrefixes": []
|
|
1028
|
+
};
|
|
1029
|
+
var BottomSheetDismiss = {
|
|
1030
|
+
"name": "BottomSheetDismiss",
|
|
1031
|
+
"defaultProps": {},
|
|
1032
|
+
"getStylesLiterals": {},
|
|
1033
|
+
"cxLiterals": [],
|
|
1034
|
+
"internalComponents": ["AriakitDialogDismiss"],
|
|
1035
|
+
"internalComponentProps": {},
|
|
1036
|
+
"propToVariantKeys": {},
|
|
1037
|
+
"motionVarPrefixes": []
|
|
1038
|
+
};
|
|
1013
1039
|
var BottomSheet = {
|
|
1014
1040
|
"name": "BottomSheet",
|
|
1015
1041
|
"defaultProps": { "variant": "default" },
|
|
@@ -1036,46 +1062,22 @@ var BottomSheet = {
|
|
|
1036
1062
|
"Scrim",
|
|
1037
1063
|
"BottomSheetHandle",
|
|
1038
1064
|
"Dialog",
|
|
1039
|
-
"Box"
|
|
1065
|
+
"Box",
|
|
1066
|
+
"BottomSheetInternalContext.Provider"
|
|
1040
1067
|
],
|
|
1041
1068
|
"internalComponentProps": {
|
|
1042
1069
|
"BottomSheetHandle": { "ariaLabel": ["Resize sheet"] },
|
|
1043
1070
|
"Dialog": { "data-testid": ["bottom-sheet"] },
|
|
1044
1071
|
"Box": {
|
|
1045
|
-
"display": ["block"],
|
|
1046
|
-
"position": ["absolute"]
|
|
1072
|
+
"display": ["block", "flex"],
|
|
1073
|
+
"position": ["absolute"],
|
|
1074
|
+
"flexDirection": ["column"],
|
|
1075
|
+
"className": ["absolute inset-0 min-h-0 p-[inherit]"]
|
|
1047
1076
|
}
|
|
1048
1077
|
},
|
|
1049
1078
|
"propToVariantKeys": { "variant": ["bottomsheetVariantRoot"] },
|
|
1050
1079
|
"motionVarPrefixes": []
|
|
1051
1080
|
};
|
|
1052
|
-
var BottomSheetContent = {
|
|
1053
|
-
"name": "BottomSheetContent",
|
|
1054
|
-
"defaultProps": {},
|
|
1055
|
-
"getStylesLiterals": {},
|
|
1056
|
-
"cxLiterals": ["min-h-0", "touch-pan-y"],
|
|
1057
|
-
"internalComponents": ["Box", "VStack"],
|
|
1058
|
-
"internalComponentProps": {
|
|
1059
|
-
"Box": {
|
|
1060
|
-
"display": ["block"],
|
|
1061
|
-
"overflowY": ["auto"],
|
|
1062
|
-
"flex": ["1"]
|
|
1063
|
-
},
|
|
1064
|
-
"VStack": { "className": ["pb-[calc(env(safe-area-inset-bottom))]"] }
|
|
1065
|
-
},
|
|
1066
|
-
"propToVariantKeys": {},
|
|
1067
|
-
"motionVarPrefixes": []
|
|
1068
|
-
};
|
|
1069
|
-
var BottomSheetDismiss = {
|
|
1070
|
-
"name": "BottomSheetDismiss",
|
|
1071
|
-
"defaultProps": {},
|
|
1072
|
-
"getStylesLiterals": {},
|
|
1073
|
-
"cxLiterals": [],
|
|
1074
|
-
"internalComponents": ["AriakitDialogDismiss"],
|
|
1075
|
-
"internalComponentProps": {},
|
|
1076
|
-
"propToVariantKeys": {},
|
|
1077
|
-
"motionVarPrefixes": []
|
|
1078
|
-
};
|
|
1079
1081
|
var BottomSheetHandle = {
|
|
1080
1082
|
"name": "BottomSheetHandle",
|
|
1081
1083
|
"defaultProps": {},
|
|
@@ -1105,6 +1107,16 @@ var BottomSheetHandle = {
|
|
|
1105
1107
|
"propToVariantKeys": {},
|
|
1106
1108
|
"motionVarPrefixes": []
|
|
1107
1109
|
};
|
|
1110
|
+
var BottomSheetInternalContext = {
|
|
1111
|
+
"name": "BottomSheetInternalContext",
|
|
1112
|
+
"defaultProps": {},
|
|
1113
|
+
"getStylesLiterals": {},
|
|
1114
|
+
"cxLiterals": [],
|
|
1115
|
+
"internalComponents": [],
|
|
1116
|
+
"internalComponentProps": {},
|
|
1117
|
+
"propToVariantKeys": {},
|
|
1118
|
+
"motionVarPrefixes": []
|
|
1119
|
+
};
|
|
1108
1120
|
var BottomSheetHeader = {
|
|
1109
1121
|
"name": "BottomSheetHeader",
|
|
1110
1122
|
"defaultProps": { "variant": "default" },
|
|
@@ -1133,22 +1145,22 @@ var BottomSheetHeader = {
|
|
|
1133
1145
|
"propToVariantKeys": { "variant": ["bottomsheetVariantHeader"] },
|
|
1134
1146
|
"motionVarPrefixes": []
|
|
1135
1147
|
};
|
|
1136
|
-
var
|
|
1137
|
-
"name": "
|
|
1148
|
+
var BottomSheetTrigger = {
|
|
1149
|
+
"name": "BottomSheetTrigger",
|
|
1138
1150
|
"defaultProps": {},
|
|
1139
1151
|
"getStylesLiterals": {},
|
|
1140
1152
|
"cxLiterals": [],
|
|
1141
|
-
"internalComponents": ["
|
|
1153
|
+
"internalComponents": ["AriakitDialogDisclosure"],
|
|
1142
1154
|
"internalComponentProps": {},
|
|
1143
1155
|
"propToVariantKeys": {},
|
|
1144
1156
|
"motionVarPrefixes": []
|
|
1145
1157
|
};
|
|
1146
|
-
var
|
|
1147
|
-
"name": "
|
|
1158
|
+
var BottomSheetProvider = {
|
|
1159
|
+
"name": "BottomSheetProvider",
|
|
1148
1160
|
"defaultProps": {},
|
|
1149
1161
|
"getStylesLiterals": {},
|
|
1150
1162
|
"cxLiterals": [],
|
|
1151
|
-
"internalComponents": ["
|
|
1163
|
+
"internalComponents": ["AriakitDialogProvider"],
|
|
1152
1164
|
"internalComponentProps": {},
|
|
1153
1165
|
"propToVariantKeys": {},
|
|
1154
1166
|
"motionVarPrefixes": []
|
|
@@ -1163,114 +1175,278 @@ var UDSBottomSheetConfigProvider = {
|
|
|
1163
1175
|
"propToVariantKeys": {},
|
|
1164
1176
|
"motionVarPrefixes": []
|
|
1165
1177
|
};
|
|
1166
|
-
var
|
|
1167
|
-
"name": "
|
|
1178
|
+
var UDSToastConfigProvider = {
|
|
1179
|
+
"name": "UDSToastConfigProvider",
|
|
1168
1180
|
"defaultProps": {},
|
|
1169
1181
|
"getStylesLiterals": {},
|
|
1170
1182
|
"cxLiterals": [],
|
|
1171
|
-
"internalComponents": [
|
|
1172
|
-
"ChipDismissible",
|
|
1173
|
-
"ChipToggle",
|
|
1174
|
-
"ChipLink",
|
|
1175
|
-
"ChipButton"
|
|
1176
|
-
],
|
|
1183
|
+
"internalComponents": ["ToastContext.Provider"],
|
|
1177
1184
|
"internalComponentProps": {},
|
|
1178
1185
|
"propToVariantKeys": {},
|
|
1179
1186
|
"motionVarPrefixes": []
|
|
1180
1187
|
};
|
|
1181
|
-
var
|
|
1182
|
-
"name": "
|
|
1183
|
-
"defaultProps": {
|
|
1184
|
-
|
|
1185
|
-
"
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
"cxLiterals": [
|
|
1189
|
-
"pointer-events-none",
|
|
1190
|
-
"cursor-default",
|
|
1191
|
-
"opacity-50",
|
|
1192
|
-
"inline-flex",
|
|
1193
|
-
"items-center",
|
|
1194
|
-
"transition-[background-color,outline-color,box-shadow]",
|
|
1195
|
-
"truncate",
|
|
1196
|
-
"whitespace-nowrap",
|
|
1197
|
-
"text-center",
|
|
1198
|
-
"flex-1"
|
|
1199
|
-
],
|
|
1200
|
-
"internalComponents": [
|
|
1201
|
-
"IconSlot",
|
|
1202
|
-
"HStack",
|
|
1203
|
-
"As",
|
|
1204
|
-
"Text"
|
|
1205
|
-
],
|
|
1206
|
-
"internalComponentProps": { "Text": {
|
|
1207
|
-
"as": ["span"],
|
|
1208
|
-
"color": ["current"],
|
|
1209
|
-
"variant": ["inherit"]
|
|
1210
|
-
} },
|
|
1211
|
-
"propToVariantKeys": {
|
|
1212
|
-
"size": ["chipSizeRoot", "chipSizeIcon"],
|
|
1213
|
-
"startIcon": ["icon"],
|
|
1214
|
-
"endIcon": ["icon"]
|
|
1188
|
+
var Toast = {
|
|
1189
|
+
"name": "Toast",
|
|
1190
|
+
"defaultProps": {},
|
|
1191
|
+
"getStylesLiterals": {
|
|
1192
|
+
"className": "flex-none",
|
|
1193
|
+
"spacing": "2",
|
|
1194
|
+
"borderRadius": "full"
|
|
1215
1195
|
},
|
|
1216
|
-
"motionVarPrefixes": []
|
|
1217
|
-
};
|
|
1218
|
-
var ChipButton = {
|
|
1219
|
-
"name": "ChipButton",
|
|
1220
|
-
"defaultProps": { "variant": "primary" },
|
|
1221
|
-
"getStylesLiterals": {},
|
|
1222
|
-
"cxLiterals": ["uds-ring"],
|
|
1223
|
-
"internalComponents": ["ChipBase"],
|
|
1224
|
-
"internalComponentProps": { "ChipBase": { "as": ["button"] } },
|
|
1225
|
-
"propToVariantKeys": { "variant": ["chipLinkVariantRoot", "chipLinkVariantIcon"] },
|
|
1226
|
-
"motionVarPrefixes": []
|
|
1227
|
-
};
|
|
1228
|
-
var ChipDismissible = {
|
|
1229
|
-
"name": "ChipDismissible",
|
|
1230
|
-
"defaultProps": { "variant": "primary" },
|
|
1231
|
-
"getStylesLiterals": {},
|
|
1232
1196
|
"cxLiterals": [
|
|
1233
|
-
"
|
|
1234
|
-
"
|
|
1235
|
-
"
|
|
1236
|
-
"
|
|
1197
|
+
"transition-[background-color]",
|
|
1198
|
+
"bg-carbon-15/0",
|
|
1199
|
+
"hover:bg-carbon-15/10",
|
|
1200
|
+
"active:bg-carbon-15/15",
|
|
1201
|
+
"uds-ring"
|
|
1237
1202
|
],
|
|
1238
1203
|
"internalComponents": [
|
|
1239
|
-
"ChipBase",
|
|
1240
1204
|
"IconSlot",
|
|
1205
|
+
"ToastContainer",
|
|
1206
|
+
"Text",
|
|
1207
|
+
"Button",
|
|
1241
1208
|
"Pressable"
|
|
1242
1209
|
],
|
|
1243
1210
|
"internalComponentProps": {},
|
|
1244
1211
|
"propToVariantKeys": {
|
|
1245
|
-
"
|
|
1246
|
-
|
|
1212
|
+
"size": [
|
|
1213
|
+
"toastSizeLabel",
|
|
1214
|
+
"toastSizeIcon",
|
|
1215
|
+
"toastSizeActionButton",
|
|
1216
|
+
"toastSizeCloseIcon"
|
|
1217
|
+
],
|
|
1218
|
+
"variant": [
|
|
1219
|
+
"toastVariantIcon",
|
|
1220
|
+
"toastVariantActionButton",
|
|
1221
|
+
"toastVariantCloseIcon"
|
|
1222
|
+
],
|
|
1223
|
+
"closeIcon": ["icon"],
|
|
1224
|
+
"onClickActionButton": ["onClick"]
|
|
1247
1225
|
},
|
|
1248
1226
|
"motionVarPrefixes": []
|
|
1249
1227
|
};
|
|
1250
|
-
var
|
|
1251
|
-
"name": "
|
|
1252
|
-
"defaultProps": {
|
|
1253
|
-
"getStylesLiterals": {
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1228
|
+
var ToastContainer = {
|
|
1229
|
+
"name": "ToastContainer",
|
|
1230
|
+
"defaultProps": {},
|
|
1231
|
+
"getStylesLiterals": {
|
|
1232
|
+
"position": "relative",
|
|
1233
|
+
"alignItems": "center",
|
|
1234
|
+
"display": "flex",
|
|
1235
|
+
"className": "box-border touch-none z-0 w-full break-words mb-2 last:mb-0"
|
|
1236
|
+
},
|
|
1237
|
+
"cxLiterals": ["w-full"],
|
|
1238
|
+
"internalComponents": ["HStack"],
|
|
1239
|
+
"internalComponentProps": { "HStack": {
|
|
1240
|
+
"alignItems": ["center"],
|
|
1241
|
+
"justifyContent": ["space-between"],
|
|
1242
|
+
"overflow": ["hidden"],
|
|
1243
|
+
"position": ["relative"]
|
|
1244
|
+
} },
|
|
1245
|
+
"propToVariantKeys": {
|
|
1246
|
+
"variant": ["toastVariantRoot"],
|
|
1247
|
+
"size": ["toastSizeRoot"]
|
|
1248
|
+
},
|
|
1258
1249
|
"motionVarPrefixes": []
|
|
1259
1250
|
};
|
|
1260
|
-
var
|
|
1261
|
-
"name": "
|
|
1251
|
+
var ToastPortal = {
|
|
1252
|
+
"name": "ToastPortal",
|
|
1253
|
+
"defaultProps": {},
|
|
1254
|
+
"getStylesLiterals": {},
|
|
1255
|
+
"cxLiterals": [],
|
|
1256
|
+
"internalComponents": ["ReactToastifyToastContainer"],
|
|
1257
|
+
"internalComponentProps": {},
|
|
1258
|
+
"propToVariantKeys": {},
|
|
1259
|
+
"motionVarPrefixes": []
|
|
1260
|
+
};
|
|
1261
|
+
var RadioGroupStore = {
|
|
1262
|
+
"name": "RadioGroupStore",
|
|
1263
|
+
"defaultProps": {},
|
|
1264
|
+
"getStylesLiterals": {},
|
|
1265
|
+
"cxLiterals": [],
|
|
1266
|
+
"internalComponents": [],
|
|
1267
|
+
"internalComponentProps": {},
|
|
1268
|
+
"propToVariantKeys": {},
|
|
1269
|
+
"motionVarPrefixes": []
|
|
1270
|
+
};
|
|
1271
|
+
var RadioGroupProvider = {
|
|
1272
|
+
"name": "RadioGroupProvider",
|
|
1273
|
+
"defaultProps": {},
|
|
1274
|
+
"getStylesLiterals": {},
|
|
1275
|
+
"cxLiterals": [],
|
|
1276
|
+
"internalComponents": [
|
|
1277
|
+
"DivProps",
|
|
1278
|
+
"Comp",
|
|
1279
|
+
"RadioGroupContext.Provider"
|
|
1280
|
+
],
|
|
1281
|
+
"internalComponentProps": { "Comp": { "role": ["radiogroup"] } },
|
|
1282
|
+
"propToVariantKeys": {},
|
|
1283
|
+
"motionVarPrefixes": []
|
|
1284
|
+
};
|
|
1285
|
+
var Radio = {
|
|
1286
|
+
"name": "Radio",
|
|
1262
1287
|
"defaultProps": {
|
|
1288
|
+
"labelPosition": "start",
|
|
1263
1289
|
"variant": "primary",
|
|
1264
|
-
"
|
|
1290
|
+
"size": "md",
|
|
1291
|
+
"value": ""
|
|
1265
1292
|
},
|
|
1266
1293
|
"getStylesLiterals": {
|
|
1267
|
-
"
|
|
1268
|
-
"
|
|
1294
|
+
"radioVariantValueRoot": "checked",
|
|
1295
|
+
"radioVariantValueRoot:1": "unchecked",
|
|
1296
|
+
"display": "flex",
|
|
1297
|
+
"flexDirection": "row",
|
|
1298
|
+
"flexDirection:1": "row-reverse",
|
|
1299
|
+
"alignItems": "center",
|
|
1300
|
+
"radioVariantValueRadio": "checked",
|
|
1301
|
+
"radioVariantValueRadio:1": "unchecked",
|
|
1302
|
+
"radioVariantValueRadioCircle": "checked",
|
|
1303
|
+
"radioVariantValueRadioCircle:1": "unchecked"
|
|
1269
1304
|
},
|
|
1270
|
-
"cxLiterals": [
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1305
|
+
"cxLiterals": [
|
|
1306
|
+
"cursor-pointer",
|
|
1307
|
+
"cursor-default",
|
|
1308
|
+
"opacity-50",
|
|
1309
|
+
"border",
|
|
1310
|
+
"uds-ring",
|
|
1311
|
+
"uds-ring-within",
|
|
1312
|
+
"transition-[background-color,border-color]",
|
|
1313
|
+
"transition-shadow",
|
|
1314
|
+
"pointer-events-none",
|
|
1315
|
+
"w-[8px]",
|
|
1316
|
+
"h-[8px]",
|
|
1317
|
+
"transition-opacity",
|
|
1318
|
+
"cursor-[inherit]",
|
|
1319
|
+
"absolute",
|
|
1320
|
+
"opacity-0",
|
|
1321
|
+
"top-1/2",
|
|
1322
|
+
"left-1/2",
|
|
1323
|
+
"w-[calc(100%+2px)]",
|
|
1324
|
+
"h-[calc(100%+2px)]",
|
|
1325
|
+
"transform",
|
|
1326
|
+
"translate-x-[-50%]",
|
|
1327
|
+
"translate-y-[-50%]",
|
|
1328
|
+
"text-start",
|
|
1329
|
+
"text-end"
|
|
1330
|
+
],
|
|
1331
|
+
"internalComponents": [
|
|
1332
|
+
"Box",
|
|
1333
|
+
"FormLabel",
|
|
1334
|
+
"SpringMotionConfig",
|
|
1335
|
+
"RootElement",
|
|
1336
|
+
"MotionBox"
|
|
1337
|
+
],
|
|
1338
|
+
"internalComponentProps": {
|
|
1339
|
+
"Box": { "borderRadius": ["full"] },
|
|
1340
|
+
"FormLabel": {
|
|
1341
|
+
"as": ["div"],
|
|
1342
|
+
"variant": ["inherit"],
|
|
1343
|
+
"color": ["inherit"]
|
|
1344
|
+
},
|
|
1345
|
+
"RootElement": { "data-testid": ["container"] },
|
|
1346
|
+
"MotionBox": {
|
|
1347
|
+
"position": ["relative"],
|
|
1348
|
+
"borderRadius": ["full"],
|
|
1349
|
+
"alignItems": ["center"],
|
|
1350
|
+
"justifyContent": ["center"],
|
|
1351
|
+
"flex": ["none"]
|
|
1352
|
+
}
|
|
1353
|
+
},
|
|
1354
|
+
"propToVariantKeys": {
|
|
1355
|
+
"size": ["radioSizeRoot", "radioSizeRadio"],
|
|
1356
|
+
"variant": [
|
|
1357
|
+
"radioVariantRoot",
|
|
1358
|
+
"radioVariantRadio",
|
|
1359
|
+
"radioVariantRadioCircle"
|
|
1360
|
+
],
|
|
1361
|
+
"reduceMotion": ["reducedMotion"]
|
|
1362
|
+
},
|
|
1363
|
+
"motionVarPrefixes": ["--uds-motion-subtle-3-", "--uds-motion-smooth-3-"]
|
|
1364
|
+
};
|
|
1365
|
+
var UDSTooltipConfigProvider = {
|
|
1366
|
+
"name": "UDSTooltipConfigProvider",
|
|
1367
|
+
"defaultProps": {},
|
|
1368
|
+
"getStylesLiterals": {},
|
|
1369
|
+
"cxLiterals": [],
|
|
1370
|
+
"internalComponents": ["TooltipContext.Provider"],
|
|
1371
|
+
"internalComponentProps": {},
|
|
1372
|
+
"propToVariantKeys": {},
|
|
1373
|
+
"motionVarPrefixes": []
|
|
1374
|
+
};
|
|
1375
|
+
var TooltipTrigger = {
|
|
1376
|
+
"name": "TooltipTrigger",
|
|
1377
|
+
"defaultProps": {},
|
|
1378
|
+
"getStylesLiterals": {},
|
|
1379
|
+
"cxLiterals": [],
|
|
1380
|
+
"internalComponents": ["TooltipAnchor"],
|
|
1381
|
+
"internalComponentProps": { "TooltipAnchor": { "className": ["inline"] } },
|
|
1382
|
+
"propToVariantKeys": { "children": ["render"] },
|
|
1383
|
+
"motionVarPrefixes": []
|
|
1384
|
+
};
|
|
1385
|
+
var TooltipContent = {
|
|
1386
|
+
"name": "TooltipContent",
|
|
1387
|
+
"defaultProps": {},
|
|
1388
|
+
"getStylesLiterals": {
|
|
1389
|
+
"tooltipSizeRoot": "default",
|
|
1390
|
+
"tooltipVariantRoot": "default",
|
|
1391
|
+
"tooltipSizeSvg": "default",
|
|
1392
|
+
"tooltipVariantSvg": "default",
|
|
1393
|
+
"tooltipVariantBlur": "default",
|
|
1394
|
+
"position": "absolute",
|
|
1395
|
+
"width": "full",
|
|
1396
|
+
"height": "full",
|
|
1397
|
+
"tooltipSizeTitle": "default",
|
|
1398
|
+
"tooltipSizeBody": "default",
|
|
1399
|
+
"tooltipSizeEndContent": "default",
|
|
1400
|
+
"tooltipSizeIcon": "default",
|
|
1401
|
+
"tooltipVariantIcon": "default"
|
|
1402
|
+
},
|
|
1403
|
+
"cxLiterals": [
|
|
1404
|
+
"flex",
|
|
1405
|
+
"z-[9999]",
|
|
1406
|
+
"stroke-1",
|
|
1407
|
+
"uds-bgBlurFillFallback",
|
|
1408
|
+
"uds-bgBlurFallback",
|
|
1409
|
+
"top-0",
|
|
1410
|
+
"left-0",
|
|
1411
|
+
"z-[1]",
|
|
1412
|
+
"transition-opacity",
|
|
1413
|
+
"ease-in-out",
|
|
1414
|
+
"absolute",
|
|
1415
|
+
"w-full",
|
|
1416
|
+
"h-full",
|
|
1417
|
+
"overflow-visible",
|
|
1418
|
+
"pointer-events-none",
|
|
1419
|
+
"z-[2]"
|
|
1420
|
+
],
|
|
1421
|
+
"internalComponents": [
|
|
1422
|
+
"Box",
|
|
1423
|
+
"IconSlot",
|
|
1424
|
+
"TooltipArrow",
|
|
1425
|
+
"Tooltip",
|
|
1426
|
+
"Fragment",
|
|
1427
|
+
"Text"
|
|
1428
|
+
],
|
|
1429
|
+
"internalComponentProps": {
|
|
1430
|
+
"Box": {
|
|
1431
|
+
"position": ["relative"],
|
|
1432
|
+
"flexDirection": ["column"],
|
|
1433
|
+
"className": ["z-[3] gap-[inherit]"],
|
|
1434
|
+
"alignItems": ["center"],
|
|
1435
|
+
"columnGap": ["1", "1.5"]
|
|
1436
|
+
},
|
|
1437
|
+
"Text": { "color": ["inherit"] }
|
|
1438
|
+
},
|
|
1439
|
+
"propToVariantKeys": { "startTitleIcon": ["icon"] },
|
|
1440
|
+
"motionVarPrefixes": []
|
|
1441
|
+
};
|
|
1442
|
+
var Tooltip = {
|
|
1443
|
+
"name": "Tooltip",
|
|
1444
|
+
"defaultProps": {},
|
|
1445
|
+
"getStylesLiterals": {},
|
|
1446
|
+
"cxLiterals": [],
|
|
1447
|
+
"internalComponents": ["TooltipInternalContext.Provider", "TooltipProvider"],
|
|
1448
|
+
"internalComponentProps": {},
|
|
1449
|
+
"propToVariantKeys": {},
|
|
1274
1450
|
"motionVarPrefixes": []
|
|
1275
1451
|
};
|
|
1276
1452
|
var Input = {
|
|
@@ -1393,161 +1569,141 @@ var InputHelpTextInternal = {
|
|
|
1393
1569
|
},
|
|
1394
1570
|
"motionVarPrefixes": []
|
|
1395
1571
|
};
|
|
1396
|
-
var
|
|
1397
|
-
"name": "
|
|
1398
|
-
"defaultProps": {
|
|
1399
|
-
"labelPosition": "start",
|
|
1400
|
-
"variant": "primary",
|
|
1401
|
-
"size": "md",
|
|
1402
|
-
"value": ""
|
|
1403
|
-
},
|
|
1404
|
-
"getStylesLiterals": {
|
|
1405
|
-
"radioVariantValueRoot": "checked",
|
|
1406
|
-
"radioVariantValueRoot:1": "unchecked",
|
|
1407
|
-
"display": "flex",
|
|
1408
|
-
"flexDirection": "row",
|
|
1409
|
-
"flexDirection:1": "row-reverse",
|
|
1410
|
-
"alignItems": "center",
|
|
1411
|
-
"radioVariantValueRadio": "checked",
|
|
1412
|
-
"radioVariantValueRadio:1": "unchecked",
|
|
1413
|
-
"radioVariantValueRadioCircle": "checked",
|
|
1414
|
-
"radioVariantValueRadioCircle:1": "unchecked"
|
|
1415
|
-
},
|
|
1416
|
-
"cxLiterals": [
|
|
1417
|
-
"cursor-pointer",
|
|
1418
|
-
"cursor-default",
|
|
1419
|
-
"opacity-50",
|
|
1420
|
-
"border",
|
|
1421
|
-
"uds-ring",
|
|
1422
|
-
"uds-ring-within",
|
|
1423
|
-
"transition-[background-color,border-color]",
|
|
1424
|
-
"transition-shadow",
|
|
1425
|
-
"pointer-events-none",
|
|
1426
|
-
"w-[8px]",
|
|
1427
|
-
"h-[8px]",
|
|
1428
|
-
"transition-opacity",
|
|
1429
|
-
"cursor-[inherit]",
|
|
1430
|
-
"absolute",
|
|
1431
|
-
"opacity-0",
|
|
1432
|
-
"top-1/2",
|
|
1433
|
-
"left-1/2",
|
|
1434
|
-
"w-[calc(100%+2px)]",
|
|
1435
|
-
"h-[calc(100%+2px)]",
|
|
1436
|
-
"transform",
|
|
1437
|
-
"translate-x-[-50%]",
|
|
1438
|
-
"translate-y-[-50%]",
|
|
1439
|
-
"text-start",
|
|
1440
|
-
"text-end"
|
|
1441
|
-
],
|
|
1442
|
-
"internalComponents": [
|
|
1443
|
-
"Box",
|
|
1444
|
-
"FormLabel",
|
|
1445
|
-
"SpringMotionConfig",
|
|
1446
|
-
"RootElement",
|
|
1447
|
-
"MotionBox"
|
|
1448
|
-
],
|
|
1449
|
-
"internalComponentProps": {
|
|
1450
|
-
"Box": { "borderRadius": ["full"] },
|
|
1451
|
-
"FormLabel": {
|
|
1452
|
-
"as": ["div"],
|
|
1453
|
-
"variant": ["inherit"],
|
|
1454
|
-
"color": ["inherit"]
|
|
1455
|
-
},
|
|
1456
|
-
"RootElement": { "data-testid": ["container"] },
|
|
1457
|
-
"MotionBox": {
|
|
1458
|
-
"position": ["relative"],
|
|
1459
|
-
"borderRadius": ["full"],
|
|
1460
|
-
"alignItems": ["center"],
|
|
1461
|
-
"justifyContent": ["center"],
|
|
1462
|
-
"flex": ["none"]
|
|
1463
|
-
}
|
|
1464
|
-
},
|
|
1465
|
-
"propToVariantKeys": {
|
|
1466
|
-
"size": ["radioSizeRoot", "radioSizeRadio"],
|
|
1467
|
-
"variant": [
|
|
1468
|
-
"radioVariantRoot",
|
|
1469
|
-
"radioVariantRadio",
|
|
1470
|
-
"radioVariantRadioCircle"
|
|
1471
|
-
],
|
|
1472
|
-
"reduceMotion": ["reducedMotion"]
|
|
1473
|
-
},
|
|
1474
|
-
"motionVarPrefixes": ["--uds-motion-subtle-3-", "--uds-motion-smooth-3-"]
|
|
1475
|
-
};
|
|
1476
|
-
var RadioGroupProvider = {
|
|
1477
|
-
"name": "RadioGroupProvider",
|
|
1572
|
+
var UDSConfigProvider = {
|
|
1573
|
+
"name": "UDSConfigProvider",
|
|
1478
1574
|
"defaultProps": {},
|
|
1479
1575
|
"getStylesLiterals": {},
|
|
1480
1576
|
"cxLiterals": [],
|
|
1481
1577
|
"internalComponents": [
|
|
1482
|
-
"
|
|
1483
|
-
"
|
|
1484
|
-
"
|
|
1578
|
+
"UDSBreakpointsConfigProvider",
|
|
1579
|
+
"UDSBottomSheetConfigProvider",
|
|
1580
|
+
"UDSToastConfigProvider",
|
|
1581
|
+
"UDSTooltipConfigProvider"
|
|
1485
1582
|
],
|
|
1486
|
-
"internalComponentProps": {
|
|
1583
|
+
"internalComponentProps": {},
|
|
1487
1584
|
"propToVariantKeys": {},
|
|
1488
1585
|
"motionVarPrefixes": []
|
|
1489
1586
|
};
|
|
1490
|
-
var
|
|
1491
|
-
"name": "
|
|
1587
|
+
var UDSBreakpointsConfigProvider = {
|
|
1588
|
+
"name": "UDSBreakpointsConfigProvider",
|
|
1492
1589
|
"defaultProps": {},
|
|
1493
1590
|
"getStylesLiterals": {},
|
|
1494
1591
|
"cxLiterals": [],
|
|
1495
|
-
"internalComponents": [],
|
|
1592
|
+
"internalComponents": ["UDSBreakpointsConfigContext.Provider"],
|
|
1496
1593
|
"internalComponentProps": {},
|
|
1497
1594
|
"propToVariantKeys": {},
|
|
1498
1595
|
"motionVarPrefixes": []
|
|
1499
1596
|
};
|
|
1500
|
-
var
|
|
1501
|
-
"name": "
|
|
1502
|
-
"defaultProps": {
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
},
|
|
1597
|
+
var ChipLink = {
|
|
1598
|
+
"name": "ChipLink",
|
|
1599
|
+
"defaultProps": { "variant": "primary" },
|
|
1600
|
+
"getStylesLiterals": {},
|
|
1601
|
+
"cxLiterals": ["uds-ring"],
|
|
1602
|
+
"internalComponents": ["ChipBase"],
|
|
1603
|
+
"internalComponentProps": { "ChipBase": { "as": ["a"] } },
|
|
1604
|
+
"propToVariantKeys": { "variant": ["chipLinkVariantRoot", "chipLinkVariantIcon"] },
|
|
1605
|
+
"motionVarPrefixes": []
|
|
1606
|
+
};
|
|
1607
|
+
var ChipDismissible = {
|
|
1608
|
+
"name": "ChipDismissible",
|
|
1609
|
+
"defaultProps": { "variant": "primary" },
|
|
1507
1610
|
"getStylesLiterals": {},
|
|
1508
1611
|
"cxLiterals": [
|
|
1509
|
-
"uds-
|
|
1510
|
-
"
|
|
1511
|
-
"duration-200",
|
|
1512
|
-
"ease-in-out",
|
|
1513
|
-
"min-w-60",
|
|
1514
|
-
"max-w-lg",
|
|
1515
|
-
"max-h-96",
|
|
1516
|
-
"overflow-auto",
|
|
1612
|
+
"uds-chip-dismissible-button",
|
|
1613
|
+
"uds-hit-target",
|
|
1517
1614
|
"uds-ring",
|
|
1518
|
-
"
|
|
1519
|
-
"group"
|
|
1615
|
+
"rounded-full"
|
|
1520
1616
|
],
|
|
1521
1617
|
"internalComponents": [
|
|
1522
|
-
"
|
|
1523
|
-
"
|
|
1524
|
-
"
|
|
1618
|
+
"ChipBase",
|
|
1619
|
+
"IconSlot",
|
|
1620
|
+
"Pressable"
|
|
1525
1621
|
],
|
|
1526
1622
|
"internalComponentProps": {},
|
|
1527
1623
|
"propToVariantKeys": {
|
|
1528
|
-
"
|
|
1529
|
-
"
|
|
1624
|
+
"variant": ["chipDismissibleVariantRoot", "chipDismissibleVariantIcon"],
|
|
1625
|
+
"dismissButtonAriaLabel": ["aria-label"]
|
|
1530
1626
|
},
|
|
1531
1627
|
"motionVarPrefixes": []
|
|
1532
1628
|
};
|
|
1533
|
-
var
|
|
1534
|
-
"name": "
|
|
1629
|
+
var ChipToggle = {
|
|
1630
|
+
"name": "ChipToggle",
|
|
1535
1631
|
"defaultProps": {
|
|
1536
|
-
"
|
|
1537
|
-
"
|
|
1538
|
-
"gap": "4"
|
|
1632
|
+
"variant": "primary",
|
|
1633
|
+
"role": "checkbox"
|
|
1539
1634
|
},
|
|
1540
1635
|
"getStylesLiterals": {
|
|
1541
|
-
"
|
|
1542
|
-
"
|
|
1543
|
-
"menuitemDividerVariantLine": "default"
|
|
1636
|
+
"chipToggleVariantActiveRoot": "on",
|
|
1637
|
+
"chipToggleVariantActiveRoot:1": "off"
|
|
1544
1638
|
},
|
|
1639
|
+
"cxLiterals": ["uds-ring"],
|
|
1640
|
+
"internalComponents": ["ChipBase"],
|
|
1641
|
+
"internalComponentProps": { "ChipBase": { "as": ["button"] } },
|
|
1642
|
+
"propToVariantKeys": { "variant": ["chipToggleVariantRoot", "chipToggleVariantIcon"] },
|
|
1643
|
+
"motionVarPrefixes": []
|
|
1644
|
+
};
|
|
1645
|
+
var Chip = {
|
|
1646
|
+
"name": "Chip",
|
|
1647
|
+
"defaultProps": {},
|
|
1648
|
+
"getStylesLiterals": {},
|
|
1545
1649
|
"cxLiterals": [],
|
|
1546
|
-
"internalComponents": [
|
|
1547
|
-
|
|
1650
|
+
"internalComponents": [
|
|
1651
|
+
"ChipDismissible",
|
|
1652
|
+
"ChipToggle",
|
|
1653
|
+
"ChipLink",
|
|
1654
|
+
"ChipButton"
|
|
1655
|
+
],
|
|
1656
|
+
"internalComponentProps": {},
|
|
1548
1657
|
"propToVariantKeys": {},
|
|
1549
1658
|
"motionVarPrefixes": []
|
|
1550
1659
|
};
|
|
1660
|
+
var ChipBase = {
|
|
1661
|
+
"name": "ChipBase",
|
|
1662
|
+
"defaultProps": {
|
|
1663
|
+
"size": "md",
|
|
1664
|
+
"as": "div"
|
|
1665
|
+
},
|
|
1666
|
+
"getStylesLiterals": {},
|
|
1667
|
+
"cxLiterals": [
|
|
1668
|
+
"pointer-events-none",
|
|
1669
|
+
"cursor-default",
|
|
1670
|
+
"opacity-50",
|
|
1671
|
+
"inline-flex",
|
|
1672
|
+
"items-center",
|
|
1673
|
+
"transition-[background-color,outline-color,box-shadow]",
|
|
1674
|
+
"truncate",
|
|
1675
|
+
"whitespace-nowrap",
|
|
1676
|
+
"text-center",
|
|
1677
|
+
"flex-1"
|
|
1678
|
+
],
|
|
1679
|
+
"internalComponents": [
|
|
1680
|
+
"IconSlot",
|
|
1681
|
+
"HStack",
|
|
1682
|
+
"As",
|
|
1683
|
+
"Text"
|
|
1684
|
+
],
|
|
1685
|
+
"internalComponentProps": { "Text": {
|
|
1686
|
+
"as": ["span"],
|
|
1687
|
+
"color": ["current"],
|
|
1688
|
+
"variant": ["inherit"]
|
|
1689
|
+
} },
|
|
1690
|
+
"propToVariantKeys": {
|
|
1691
|
+
"size": ["chipSizeRoot", "chipSizeIcon"],
|
|
1692
|
+
"startIcon": ["icon"],
|
|
1693
|
+
"endIcon": ["icon"]
|
|
1694
|
+
},
|
|
1695
|
+
"motionVarPrefixes": []
|
|
1696
|
+
};
|
|
1697
|
+
var ChipButton = {
|
|
1698
|
+
"name": "ChipButton",
|
|
1699
|
+
"defaultProps": { "variant": "primary" },
|
|
1700
|
+
"getStylesLiterals": {},
|
|
1701
|
+
"cxLiterals": ["uds-ring"],
|
|
1702
|
+
"internalComponents": ["ChipBase"],
|
|
1703
|
+
"internalComponentProps": { "ChipBase": { "as": ["button"] } },
|
|
1704
|
+
"propToVariantKeys": { "variant": ["chipLinkVariantRoot", "chipLinkVariantIcon"] },
|
|
1705
|
+
"motionVarPrefixes": []
|
|
1706
|
+
};
|
|
1551
1707
|
var Menu_Item = {
|
|
1552
1708
|
"name": "Menu.Item",
|
|
1553
1709
|
"defaultProps": {},
|
|
@@ -1568,6 +1724,16 @@ var Menu_Item = {
|
|
|
1568
1724
|
"propToVariantKeys": {},
|
|
1569
1725
|
"motionVarPrefixes": []
|
|
1570
1726
|
};
|
|
1727
|
+
var Menu_Provider = {
|
|
1728
|
+
"name": "Menu.Provider",
|
|
1729
|
+
"defaultProps": {},
|
|
1730
|
+
"getStylesLiterals": {},
|
|
1731
|
+
"cxLiterals": [],
|
|
1732
|
+
"internalComponents": ["AriakitMenuProvider", "SpringMotionConfig"],
|
|
1733
|
+
"internalComponentProps": {},
|
|
1734
|
+
"propToVariantKeys": {},
|
|
1735
|
+
"motionVarPrefixes": ["--uds-motion-subtle-3-", "--uds-motion-smooth-3-"]
|
|
1736
|
+
};
|
|
1571
1737
|
var Menu_ItemBase = {
|
|
1572
1738
|
"name": "Menu.ItemBase",
|
|
1573
1739
|
"defaultProps": {
|
|
@@ -1611,351 +1777,198 @@ var Menu_ItemBase = {
|
|
|
1611
1777
|
],
|
|
1612
1778
|
"internalComponentProps": {
|
|
1613
1779
|
"HStack": {
|
|
1614
|
-
"alignItems": ["center"],
|
|
1615
|
-
"width": ["full"]
|
|
1616
|
-
},
|
|
1617
|
-
"AnimatePresence": { "mode": ["popLayout"] }
|
|
1618
|
-
},
|
|
1619
|
-
"propToVariantKeys": {
|
|
1620
|
-
"startIcon": ["icon"],
|
|
1621
|
-
"endIcon": ["icon"],
|
|
1622
|
-
"columnGap": ["gap"]
|
|
1623
|
-
},
|
|
1624
|
-
"motionVarPrefixes": []
|
|
1625
|
-
};
|
|
1626
|
-
var Menu_ItemCheckbox = {
|
|
1627
|
-
"name": "Menu.ItemCheckbox",
|
|
1628
|
-
"defaultProps": {},
|
|
1629
|
-
"getStylesLiterals": {
|
|
1630
|
-
"menuitemItemCheckboxVariantRoot": "default",
|
|
1631
|
-
"menuitemItemCheckboxVariantActiveRoot": "on",
|
|
1632
|
-
"menuitemItemCheckboxVariantActiveRoot:1": "off",
|
|
1633
|
-
"menuitemItemCheckboxVariantText": "default",
|
|
1634
|
-
"menuitemItemCheckboxVariantActiveText": "on",
|
|
1635
|
-
"menuitemItemCheckboxVariantActiveText:1": "off",
|
|
1636
|
-
"menuitemItemCheckboxVariantStartIcon": "default",
|
|
1637
|
-
"menuitemItemCheckboxVariantActiveStartIcon": "on",
|
|
1638
|
-
"menuitemItemCheckboxVariantActiveStartIcon:1": "off",
|
|
1639
|
-
"menuitemItemCheckboxVariantEndIcon": "default",
|
|
1640
|
-
"menuitemItemCheckboxVariantActiveEndIcon": "on",
|
|
1641
|
-
"menuitemItemCheckboxVariantActiveEndIcon:1": "off"
|
|
1642
|
-
},
|
|
1643
|
-
"cxLiterals": ["uds-menu-item-checkbox"],
|
|
1644
|
-
"internalComponents": ["MenuItemBase"],
|
|
1645
|
-
"internalComponentProps": {},
|
|
1646
|
-
"propToVariantKeys": {},
|
|
1647
|
-
"motionVarPrefixes": []
|
|
1648
|
-
};
|
|
1649
|
-
var Menu_Provider = {
|
|
1650
|
-
"name": "Menu.Provider",
|
|
1651
|
-
"defaultProps": {},
|
|
1652
|
-
"getStylesLiterals": {},
|
|
1653
|
-
"cxLiterals": [],
|
|
1654
|
-
"internalComponents": ["AriakitMenuProvider", "SpringMotionConfig"],
|
|
1655
|
-
"internalComponentProps": {},
|
|
1656
|
-
"propToVariantKeys": {},
|
|
1657
|
-
"motionVarPrefixes": ["--uds-motion-subtle-3-", "--uds-motion-smooth-3-"]
|
|
1658
|
-
};
|
|
1659
|
-
var Menu_Trigger = {
|
|
1660
|
-
"name": "Menu.Trigger",
|
|
1661
|
-
"defaultProps": {},
|
|
1662
|
-
"getStylesLiterals": {},
|
|
1663
|
-
"cxLiterals": ["uds-menu-trigger"],
|
|
1664
|
-
"internalComponents": ["AriakitMenuTrigger", "Box"],
|
|
1665
|
-
"internalComponentProps": { "Box": { "className": ["uds-ring h-fit w-fit"] } },
|
|
1666
|
-
"propToVariantKeys": {},
|
|
1667
|
-
"motionVarPrefixes": []
|
|
1668
|
-
};
|
|
1669
|
-
var Menu_index = {
|
|
1670
|
-
"name": "Menu.index",
|
|
1671
|
-
"defaultProps": {},
|
|
1672
|
-
"getStylesLiterals": {},
|
|
1673
|
-
"cxLiterals": [],
|
|
1674
|
-
"internalComponents": [],
|
|
1675
|
-
"internalComponentProps": {},
|
|
1676
|
-
"propToVariantKeys": {},
|
|
1677
|
-
"motionVarPrefixes": []
|
|
1678
|
-
};
|
|
1679
|
-
var Menu = {
|
|
1680
|
-
"name": "Menu",
|
|
1681
|
-
"defaultProps": {},
|
|
1682
|
-
"getStylesLiterals": {},
|
|
1683
|
-
"cxLiterals": [],
|
|
1684
|
-
"internalComponents": [],
|
|
1685
|
-
"internalComponentProps": {},
|
|
1686
|
-
"propToVariantKeys": {},
|
|
1687
|
-
"motionVarPrefixes": []
|
|
1688
|
-
};
|
|
1689
|
-
var Toast = {
|
|
1690
|
-
"name": "Toast",
|
|
1691
|
-
"defaultProps": {},
|
|
1692
|
-
"getStylesLiterals": {
|
|
1693
|
-
"className": "flex-none",
|
|
1694
|
-
"spacing": "2",
|
|
1695
|
-
"borderRadius": "full"
|
|
1696
|
-
},
|
|
1697
|
-
"cxLiterals": [
|
|
1698
|
-
"transition-[background-color]",
|
|
1699
|
-
"bg-carbon-15/0",
|
|
1700
|
-
"hover:bg-carbon-15/10",
|
|
1701
|
-
"active:bg-carbon-15/15",
|
|
1702
|
-
"uds-ring"
|
|
1703
|
-
],
|
|
1704
|
-
"internalComponents": [
|
|
1705
|
-
"IconSlot",
|
|
1706
|
-
"ToastContainer",
|
|
1707
|
-
"Text",
|
|
1708
|
-
"Button",
|
|
1709
|
-
"Pressable"
|
|
1710
|
-
],
|
|
1711
|
-
"internalComponentProps": {},
|
|
1712
|
-
"propToVariantKeys": {
|
|
1713
|
-
"size": [
|
|
1714
|
-
"toastSizeLabel",
|
|
1715
|
-
"toastSizeIcon",
|
|
1716
|
-
"toastSizeActionButton",
|
|
1717
|
-
"toastSizeCloseIcon"
|
|
1718
|
-
],
|
|
1719
|
-
"variant": [
|
|
1720
|
-
"toastVariantIcon",
|
|
1721
|
-
"toastVariantActionButton",
|
|
1722
|
-
"toastVariantCloseIcon"
|
|
1723
|
-
],
|
|
1724
|
-
"closeIcon": ["icon"],
|
|
1725
|
-
"onClickActionButton": ["onClick"]
|
|
1726
|
-
},
|
|
1727
|
-
"motionVarPrefixes": []
|
|
1728
|
-
};
|
|
1729
|
-
var ToastContainer = {
|
|
1730
|
-
"name": "ToastContainer",
|
|
1731
|
-
"defaultProps": {},
|
|
1732
|
-
"getStylesLiterals": {
|
|
1733
|
-
"position": "relative",
|
|
1734
|
-
"alignItems": "center",
|
|
1735
|
-
"display": "flex",
|
|
1736
|
-
"className": "box-border touch-none z-0 w-full break-words mb-2 last:mb-0"
|
|
1737
|
-
},
|
|
1738
|
-
"cxLiterals": ["w-full"],
|
|
1739
|
-
"internalComponents": ["HStack"],
|
|
1740
|
-
"internalComponentProps": { "HStack": {
|
|
1741
|
-
"alignItems": ["center"],
|
|
1742
|
-
"justifyContent": ["space-between"],
|
|
1743
|
-
"overflow": ["hidden"],
|
|
1744
|
-
"position": ["relative"]
|
|
1745
|
-
} },
|
|
1780
|
+
"alignItems": ["center"],
|
|
1781
|
+
"width": ["full"]
|
|
1782
|
+
},
|
|
1783
|
+
"AnimatePresence": { "mode": ["popLayout"] }
|
|
1784
|
+
},
|
|
1746
1785
|
"propToVariantKeys": {
|
|
1747
|
-
"
|
|
1748
|
-
"
|
|
1786
|
+
"startIcon": ["icon"],
|
|
1787
|
+
"endIcon": ["icon"],
|
|
1788
|
+
"columnGap": ["gap"]
|
|
1749
1789
|
},
|
|
1750
1790
|
"motionVarPrefixes": []
|
|
1751
1791
|
};
|
|
1752
|
-
var
|
|
1753
|
-
"name": "
|
|
1754
|
-
"defaultProps": {},
|
|
1755
|
-
"getStylesLiterals": {},
|
|
1756
|
-
"cxLiterals": [],
|
|
1757
|
-
"internalComponents": ["ReactToastifyToastContainer"],
|
|
1758
|
-
"internalComponentProps": {},
|
|
1759
|
-
"propToVariantKeys": {},
|
|
1760
|
-
"motionVarPrefixes": []
|
|
1761
|
-
};
|
|
1762
|
-
var UDSToastConfigProvider = {
|
|
1763
|
-
"name": "UDSToastConfigProvider",
|
|
1792
|
+
var Menu_Trigger = {
|
|
1793
|
+
"name": "Menu.Trigger",
|
|
1764
1794
|
"defaultProps": {},
|
|
1765
1795
|
"getStylesLiterals": {},
|
|
1766
|
-
"cxLiterals": [],
|
|
1767
|
-
"internalComponents": ["
|
|
1768
|
-
"internalComponentProps": {},
|
|
1796
|
+
"cxLiterals": ["uds-menu-trigger"],
|
|
1797
|
+
"internalComponents": ["AriakitMenuTrigger", "Box"],
|
|
1798
|
+
"internalComponentProps": { "Box": { "className": ["uds-ring h-fit w-fit"] } },
|
|
1769
1799
|
"propToVariantKeys": {},
|
|
1770
1800
|
"motionVarPrefixes": []
|
|
1771
1801
|
};
|
|
1772
|
-
var
|
|
1773
|
-
"name": "
|
|
1802
|
+
var Menu_index = {
|
|
1803
|
+
"name": "Menu.index",
|
|
1774
1804
|
"defaultProps": {},
|
|
1775
1805
|
"getStylesLiterals": {},
|
|
1776
1806
|
"cxLiterals": [],
|
|
1777
|
-
"internalComponents": [
|
|
1807
|
+
"internalComponents": [],
|
|
1778
1808
|
"internalComponentProps": {},
|
|
1779
1809
|
"propToVariantKeys": {},
|
|
1780
1810
|
"motionVarPrefixes": []
|
|
1781
1811
|
};
|
|
1782
|
-
var
|
|
1783
|
-
"name": "
|
|
1784
|
-
"defaultProps": {
|
|
1785
|
-
|
|
1786
|
-
"
|
|
1787
|
-
"
|
|
1788
|
-
"tooltipSizeSvg": "default",
|
|
1789
|
-
"tooltipVariantSvg": "default",
|
|
1790
|
-
"tooltipVariantBlur": "default",
|
|
1791
|
-
"position": "absolute",
|
|
1792
|
-
"width": "full",
|
|
1793
|
-
"height": "full",
|
|
1794
|
-
"tooltipSizeTitle": "default",
|
|
1795
|
-
"tooltipSizeBody": "default",
|
|
1796
|
-
"tooltipSizeEndContent": "default",
|
|
1797
|
-
"tooltipSizeIcon": "default",
|
|
1798
|
-
"tooltipVariantIcon": "default"
|
|
1812
|
+
var Menu_Content = {
|
|
1813
|
+
"name": "Menu.Content",
|
|
1814
|
+
"defaultProps": {
|
|
1815
|
+
"size": "default",
|
|
1816
|
+
"variant": "default",
|
|
1817
|
+
"gutter": "1"
|
|
1799
1818
|
},
|
|
1819
|
+
"getStylesLiterals": {},
|
|
1800
1820
|
"cxLiterals": [
|
|
1801
|
-
"
|
|
1802
|
-
"
|
|
1803
|
-
"
|
|
1804
|
-
"uds-bgBlurFillFallback",
|
|
1805
|
-
"uds-bgBlurFallback",
|
|
1806
|
-
"top-0",
|
|
1807
|
-
"left-0",
|
|
1808
|
-
"z-[1]",
|
|
1809
|
-
"transition-opacity",
|
|
1821
|
+
"uds-menu-content",
|
|
1822
|
+
"transition-shadow",
|
|
1823
|
+
"duration-200",
|
|
1810
1824
|
"ease-in-out",
|
|
1811
|
-
"
|
|
1812
|
-
"w-
|
|
1813
|
-
"h-
|
|
1814
|
-
"overflow-
|
|
1815
|
-
"
|
|
1816
|
-
"z-
|
|
1825
|
+
"min-w-60",
|
|
1826
|
+
"max-w-lg",
|
|
1827
|
+
"max-h-96",
|
|
1828
|
+
"overflow-auto",
|
|
1829
|
+
"uds-ring",
|
|
1830
|
+
"z-10",
|
|
1831
|
+
"group"
|
|
1817
1832
|
],
|
|
1818
1833
|
"internalComponents": [
|
|
1819
|
-
"
|
|
1820
|
-
"
|
|
1821
|
-
"
|
|
1822
|
-
"Tooltip",
|
|
1823
|
-
"Fragment",
|
|
1824
|
-
"Text"
|
|
1834
|
+
"AriakitMenu",
|
|
1835
|
+
"AnimatePresence",
|
|
1836
|
+
"MotionVStack"
|
|
1825
1837
|
],
|
|
1826
|
-
"internalComponentProps": {
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
"className": ["z-[3] gap-[inherit]"],
|
|
1831
|
-
"alignItems": ["center"],
|
|
1832
|
-
"columnGap": ["1", "1.5"]
|
|
1833
|
-
},
|
|
1834
|
-
"Text": { "color": ["inherit"] }
|
|
1838
|
+
"internalComponentProps": {},
|
|
1839
|
+
"propToVariantKeys": {
|
|
1840
|
+
"size": ["menucontentSizeRoot"],
|
|
1841
|
+
"variant": ["menucontentVariantRoot"]
|
|
1835
1842
|
},
|
|
1836
|
-
"propToVariantKeys": { "startTitleIcon": ["icon"] },
|
|
1837
|
-
"motionVarPrefixes": []
|
|
1838
|
-
};
|
|
1839
|
-
var TooltipTrigger = {
|
|
1840
|
-
"name": "TooltipTrigger",
|
|
1841
|
-
"defaultProps": {},
|
|
1842
|
-
"getStylesLiterals": {},
|
|
1843
|
-
"cxLiterals": [],
|
|
1844
|
-
"internalComponents": ["TooltipAnchor"],
|
|
1845
|
-
"internalComponentProps": { "TooltipAnchor": { "className": ["inline"] } },
|
|
1846
|
-
"propToVariantKeys": { "children": ["render"] },
|
|
1847
1843
|
"motionVarPrefixes": []
|
|
1848
1844
|
};
|
|
1849
|
-
var
|
|
1850
|
-
"name": "
|
|
1851
|
-
"defaultProps": {
|
|
1852
|
-
|
|
1845
|
+
var Menu_Divider = {
|
|
1846
|
+
"name": "Menu.Divider",
|
|
1847
|
+
"defaultProps": {
|
|
1848
|
+
"role": "separator",
|
|
1849
|
+
"contentPosition": "start",
|
|
1850
|
+
"gap": "4"
|
|
1851
|
+
},
|
|
1852
|
+
"getStylesLiterals": {
|
|
1853
|
+
"menuitemDividerVariantRoot": "default",
|
|
1854
|
+
"menuitemDividerVariantText": "default",
|
|
1855
|
+
"menuitemDividerVariantLine": "default"
|
|
1856
|
+
},
|
|
1853
1857
|
"cxLiterals": [],
|
|
1854
|
-
"internalComponents": ["
|
|
1855
|
-
"internalComponentProps": {},
|
|
1858
|
+
"internalComponents": ["DividerInternal"],
|
|
1859
|
+
"internalComponentProps": { "DividerInternal": { "variant": ["inherit"] } },
|
|
1856
1860
|
"propToVariantKeys": {},
|
|
1857
1861
|
"motionVarPrefixes": []
|
|
1858
1862
|
};
|
|
1859
|
-
var
|
|
1860
|
-
"name": "
|
|
1863
|
+
var Menu = {
|
|
1864
|
+
"name": "Menu",
|
|
1861
1865
|
"defaultProps": {},
|
|
1862
1866
|
"getStylesLiterals": {},
|
|
1863
1867
|
"cxLiterals": [],
|
|
1864
|
-
"internalComponents": [
|
|
1868
|
+
"internalComponents": [],
|
|
1865
1869
|
"internalComponentProps": {},
|
|
1866
1870
|
"propToVariantKeys": {},
|
|
1867
1871
|
"motionVarPrefixes": []
|
|
1868
1872
|
};
|
|
1869
|
-
var
|
|
1870
|
-
"name": "
|
|
1873
|
+
var Menu_ItemCheckbox = {
|
|
1874
|
+
"name": "Menu.ItemCheckbox",
|
|
1871
1875
|
"defaultProps": {},
|
|
1872
|
-
"getStylesLiterals": {
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
"
|
|
1876
|
-
"
|
|
1877
|
-
"
|
|
1878
|
-
"
|
|
1879
|
-
|
|
1876
|
+
"getStylesLiterals": {
|
|
1877
|
+
"menuitemItemCheckboxVariantRoot": "default",
|
|
1878
|
+
"menuitemItemCheckboxVariantActiveRoot": "on",
|
|
1879
|
+
"menuitemItemCheckboxVariantActiveRoot:1": "off",
|
|
1880
|
+
"menuitemItemCheckboxVariantText": "default",
|
|
1881
|
+
"menuitemItemCheckboxVariantActiveText": "on",
|
|
1882
|
+
"menuitemItemCheckboxVariantActiveText:1": "off",
|
|
1883
|
+
"menuitemItemCheckboxVariantStartIcon": "default",
|
|
1884
|
+
"menuitemItemCheckboxVariantActiveStartIcon": "on",
|
|
1885
|
+
"menuitemItemCheckboxVariantActiveStartIcon:1": "off",
|
|
1886
|
+
"menuitemItemCheckboxVariantEndIcon": "default",
|
|
1887
|
+
"menuitemItemCheckboxVariantActiveEndIcon": "on",
|
|
1888
|
+
"menuitemItemCheckboxVariantActiveEndIcon:1": "off"
|
|
1889
|
+
},
|
|
1890
|
+
"cxLiterals": ["uds-menu-item-checkbox"],
|
|
1891
|
+
"internalComponents": ["MenuItemBase"],
|
|
1880
1892
|
"internalComponentProps": {},
|
|
1881
1893
|
"propToVariantKeys": {},
|
|
1882
1894
|
"motionVarPrefixes": []
|
|
1883
1895
|
};
|
|
1884
1896
|
var componentData_default = {
|
|
1897
|
+
Link,
|
|
1898
|
+
VStack,
|
|
1885
1899
|
Box,
|
|
1886
|
-
|
|
1887
|
-
HStack,
|
|
1900
|
+
Scrim,
|
|
1888
1901
|
Icon,
|
|
1902
|
+
FormLabel,
|
|
1903
|
+
Text,
|
|
1889
1904
|
IconSlot,
|
|
1905
|
+
HStack,
|
|
1890
1906
|
Image,
|
|
1891
|
-
Link,
|
|
1892
|
-
Scrim,
|
|
1893
|
-
Text,
|
|
1894
|
-
VStack,
|
|
1895
|
-
Divider,
|
|
1896
1907
|
DividerCore,
|
|
1897
1908
|
DividerInternal,
|
|
1898
|
-
|
|
1909
|
+
Divider,
|
|
1899
1910
|
"Table.mocks": Table_mocks,
|
|
1900
1911
|
Table,
|
|
1901
|
-
|
|
1902
|
-
Badge,
|
|
1912
|
+
Spinner,
|
|
1903
1913
|
Button,
|
|
1904
1914
|
Checkbox,
|
|
1905
|
-
IconButton,
|
|
1906
|
-
Pressable,
|
|
1907
1915
|
SpringMotionConfig,
|
|
1916
|
+
IconButton,
|
|
1908
1917
|
Switch,
|
|
1909
|
-
|
|
1918
|
+
Badge,
|
|
1919
|
+
AnimateHeightChange,
|
|
1920
|
+
Pressable,
|
|
1910
1921
|
AvoidMotionLibraryProvider,
|
|
1911
|
-
Modal,
|
|
1912
|
-
Popover,
|
|
1913
1922
|
SegmentedControl,
|
|
1923
|
+
Popover,
|
|
1914
1924
|
SwitchV2,
|
|
1915
1925
|
Tabs,
|
|
1916
|
-
|
|
1917
|
-
|
|
1926
|
+
Modal,
|
|
1927
|
+
Accordion,
|
|
1918
1928
|
AvatarImage,
|
|
1919
1929
|
AvatarText,
|
|
1920
|
-
|
|
1930
|
+
Avatar,
|
|
1931
|
+
AvatarIcon,
|
|
1921
1932
|
BottomSheetContent,
|
|
1922
1933
|
BottomSheetDismiss,
|
|
1934
|
+
BottomSheet,
|
|
1923
1935
|
BottomSheetHandle,
|
|
1936
|
+
BottomSheetInternalContext,
|
|
1924
1937
|
BottomSheetHeader,
|
|
1925
|
-
BottomSheetProvider,
|
|
1926
1938
|
BottomSheetTrigger,
|
|
1939
|
+
BottomSheetProvider,
|
|
1927
1940
|
UDSBottomSheetConfigProvider,
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
1941
|
+
UDSToastConfigProvider,
|
|
1942
|
+
Toast,
|
|
1943
|
+
ToastContainer,
|
|
1944
|
+
ToastPortal,
|
|
1945
|
+
RadioGroupStore,
|
|
1946
|
+
RadioGroupProvider,
|
|
1947
|
+
Radio,
|
|
1948
|
+
UDSTooltipConfigProvider,
|
|
1949
|
+
TooltipTrigger,
|
|
1950
|
+
TooltipContent,
|
|
1951
|
+
Tooltip,
|
|
1934
1952
|
Input,
|
|
1935
1953
|
InputHelpText,
|
|
1936
1954
|
InputHelpTextInternal,
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1955
|
+
UDSConfigProvider,
|
|
1956
|
+
UDSBreakpointsConfigProvider,
|
|
1957
|
+
ChipLink,
|
|
1958
|
+
ChipDismissible,
|
|
1959
|
+
ChipToggle,
|
|
1960
|
+
Chip,
|
|
1961
|
+
ChipBase,
|
|
1962
|
+
ChipButton,
|
|
1942
1963
|
"Menu.Item": Menu_Item,
|
|
1943
|
-
"Menu.ItemBase": Menu_ItemBase,
|
|
1944
|
-
"Menu.ItemCheckbox": Menu_ItemCheckbox,
|
|
1945
1964
|
"Menu.Provider": Menu_Provider,
|
|
1965
|
+
"Menu.ItemBase": Menu_ItemBase,
|
|
1946
1966
|
"Menu.Trigger": Menu_Trigger,
|
|
1947
1967
|
"Menu.index": Menu_index,
|
|
1968
|
+
"Menu.Content": Menu_Content,
|
|
1969
|
+
"Menu.Divider": Menu_Divider,
|
|
1948
1970
|
Menu,
|
|
1949
|
-
|
|
1950
|
-
ToastContainer,
|
|
1951
|
-
ToastPortal,
|
|
1952
|
-
UDSToastConfigProvider,
|
|
1953
|
-
Tooltip,
|
|
1954
|
-
TooltipContent,
|
|
1955
|
-
TooltipTrigger,
|
|
1956
|
-
UDSTooltipConfigProvider,
|
|
1957
|
-
UDSBreakpointsConfigProvider,
|
|
1958
|
-
UDSConfigProvider
|
|
1971
|
+
"Menu.ItemCheckbox": Menu_ItemCheckbox
|
|
1959
1972
|
};
|
|
1960
1973
|
|
|
1961
1974
|
//#endregion
|
|
@@ -2037,6 +2050,12 @@ Object.defineProperty(exports, 'BottomSheetHeader', {
|
|
|
2037
2050
|
return BottomSheetHeader;
|
|
2038
2051
|
}
|
|
2039
2052
|
});
|
|
2053
|
+
Object.defineProperty(exports, 'BottomSheetInternalContext', {
|
|
2054
|
+
enumerable: true,
|
|
2055
|
+
get: function () {
|
|
2056
|
+
return BottomSheetInternalContext;
|
|
2057
|
+
}
|
|
2058
|
+
});
|
|
2040
2059
|
Object.defineProperty(exports, 'BottomSheetProvider', {
|
|
2041
2060
|
enumerable: true,
|
|
2042
2061
|
get: function () {
|