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