@yahoo/uds-v5-wip 1.60.0 → 1.62.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 (605) hide show
  1. package/dist/config/dist/AssetGroup.d.ts +75 -0
  2. package/dist/config/dist/AssetGroup.js +114 -0
  3. package/dist/config/dist/Component.d.ts +309 -0
  4. package/dist/config/dist/Component.js +897 -0
  5. package/dist/config/dist/ComponentGroup.d.ts +21 -0
  6. package/dist/config/dist/ComponentGroup.js +46 -0
  7. package/dist/config/dist/CompositeStyle.d.ts +28 -0
  8. package/dist/config/dist/CompositeStyle.js +52 -0
  9. package/dist/config/dist/Config.d.ts +422 -0
  10. package/dist/config/dist/Config.js +1426 -0
  11. package/dist/config/dist/Mode.d.ts +42 -0
  12. package/dist/config/dist/Mode.js +81 -0
  13. package/dist/config/dist/Modifier.d.ts +52 -0
  14. package/dist/config/dist/Modifier.js +97 -0
  15. package/dist/config/dist/MotionDef.d.ts +50 -0
  16. package/dist/config/dist/MotionDef.js +97 -0
  17. package/dist/config/dist/Props.d.ts +284 -39
  18. package/dist/config/dist/Provider.d.ts +21 -0
  19. package/dist/config/dist/Provider.js +14 -0
  20. package/dist/config/dist/StyleProp.d.ts +113 -0
  21. package/dist/config/dist/StyleProp.js +197 -0
  22. package/dist/config/dist/Token.d.ts +56 -0
  23. package/dist/config/dist/Token.js +112 -0
  24. package/dist/config/dist/TokenGroup.d.ts +33 -0
  25. package/dist/config/dist/TokenGroup.js +68 -0
  26. package/dist/config/dist/asset-kind.d.ts +56 -0
  27. package/dist/config/dist/asset-kind.js +29 -0
  28. package/dist/config/dist/brands.d.ts +31 -0
  29. package/dist/config/dist/brands.js +20 -0
  30. package/dist/config/dist/captureCallerPath.d.ts +49 -0
  31. package/dist/config/dist/captureCallerPath.js +95 -0
  32. package/dist/config/dist/colorExpressions.d.ts +132 -0
  33. package/dist/config/dist/colorExpressions.js +148 -0
  34. package/dist/config/dist/defineAssetGroup.d.ts +158 -0
  35. package/dist/config/dist/defineAssetGroup.js +263 -0
  36. package/dist/config/dist/defineProvider.d.ts +30 -0
  37. package/dist/config/dist/defineProvider.js +60 -0
  38. package/dist/config/dist/element-marker.d.ts +55 -0
  39. package/dist/config/dist/element-marker.js +113 -0
  40. package/dist/config/dist/entity-utils.d.ts +27 -0
  41. package/dist/config/dist/entity-utils.js +105 -0
  42. package/dist/config/dist/factories.d.ts +707 -0
  43. package/dist/config/dist/factories.js +393 -0
  44. package/dist/config/dist/foreign-component-name.js +42 -0
  45. package/dist/config/dist/index.d.ts +31 -13
  46. package/dist/config/dist/index.js +26 -10
  47. package/dist/config/dist/interpolate.d.ts +21 -0
  48. package/dist/{foundational-presets/dist/motion.js → config/dist/interpolate.js} +1 -1
  49. package/dist/config/dist/markers.d.ts +218 -0
  50. package/dist/config/dist/markers.js +67 -0
  51. package/dist/config/dist/refs.d.ts +159 -0
  52. package/dist/config/dist/refs.js +98 -71
  53. package/dist/config/dist/token-override-rows.d.ts +67 -0
  54. package/dist/config/dist/token-override-rows.js +223 -0
  55. package/dist/config/dist/tokenValueType.js +138 -0
  56. package/dist/config/dist/types/css-properties.d.ts +233 -0
  57. package/dist/config/dist/types/css-property-keywords.d.ts +157 -0
  58. package/dist/config/dist/types/css-property-keywords.js +616 -0
  59. package/dist/config/dist/types/css-values.d.ts +20 -17
  60. package/dist/config/dist/types.d.ts +697 -64
  61. package/dist/config/dist/units.d.ts +15 -0
  62. package/dist/config/dist/units.js +16 -0
  63. package/dist/config.d.ts +32 -1562
  64. package/dist/config.js +28 -21
  65. package/dist/loader/dist/_virtual/_rolldown/runtime.js +1 -2
  66. package/dist/loader/dist/index.d.ts +2 -0
  67. package/dist/loader/dist/index.js +3 -0
  68. package/dist/loader/dist/loader/artifacts.js +26 -9
  69. package/dist/loader/dist/loader/babel-utils.js +1 -29
  70. package/dist/loader/dist/loader.d.ts +17 -1
  71. package/dist/loader/dist/loader.js +56 -339
  72. package/dist/loader/dist/next.d.ts +2 -1
  73. package/dist/loader/dist/next.js +3 -3
  74. package/dist/loader/dist/transform-runner.js +7 -0
  75. package/dist/loader/dist/unplugin.d.ts +27 -0
  76. package/dist/loader/dist/unplugin.js +52 -0
  77. package/dist/plugin.d.ts +2 -2
  78. package/dist/plugin.js +3 -2
  79. package/dist/tsconfig.tsbuildinfo +1 -1
  80. package/dist/utils/dist/index.js +1 -0
  81. package/dist/utils/dist/motion-utils/resolveMotionState.d.ts +35 -0
  82. package/dist/utils/dist/motion-utils/resolveMotionState.js +33 -0
  83. package/dist/utils/dist/string-utils/componentClassName.d.ts +41 -8
  84. package/dist/utils/dist/string-utils/componentClassName.js +48 -11
  85. package/dist/utils.d.ts +3 -2
  86. package/dist/utils.js +3 -2
  87. package/package.json +3 -51
  88. package/dist/components/accordion.config.d.ts +0 -2
  89. package/dist/components/accordion.config.js +0 -2
  90. package/dist/components/accordion.d.ts +0 -2
  91. package/dist/components/accordion.js +0 -2
  92. package/dist/components/alert.config.d.ts +0 -2
  93. package/dist/components/alert.config.js +0 -2
  94. package/dist/components/alert.d.ts +0 -2
  95. package/dist/components/alert.js +0 -2
  96. package/dist/components/anchor.config.d.ts +0 -2
  97. package/dist/components/anchor.config.js +0 -2
  98. package/dist/components/anchor.d.ts +0 -2
  99. package/dist/components/anchor.js +0 -2
  100. package/dist/components/article.d.ts +0 -2
  101. package/dist/components/article.js +0 -2
  102. package/dist/components/aside.d.ts +0 -2
  103. package/dist/components/aside.js +0 -2
  104. package/dist/components/avatar-group.config.d.ts +0 -2
  105. package/dist/components/avatar-group.config.js +0 -2
  106. package/dist/components/avatar-group.d.ts +0 -2
  107. package/dist/components/avatar-group.js +0 -2
  108. package/dist/components/avatar.config.d.ts +0 -2
  109. package/dist/components/avatar.config.js +0 -2
  110. package/dist/components/avatar.d.ts +0 -2
  111. package/dist/components/avatar.js +0 -2
  112. package/dist/components/badge.config.d.ts +0 -2
  113. package/dist/components/badge.config.js +0 -2
  114. package/dist/components/badge.d.ts +0 -2
  115. package/dist/components/badge.js +0 -2
  116. package/dist/components/box.d.ts +0 -2
  117. package/dist/components/box.js +0 -2
  118. package/dist/components/breadcrumb.config.d.ts +0 -2
  119. package/dist/components/breadcrumb.config.js +0 -2
  120. package/dist/components/breadcrumb.d.ts +0 -2
  121. package/dist/components/breadcrumb.js +0 -2
  122. package/dist/components/button.config.d.ts +0 -2
  123. package/dist/components/button.config.js +0 -2
  124. package/dist/components/button.d.ts +0 -2
  125. package/dist/components/button.js +0 -2
  126. package/dist/components/card.config.d.ts +0 -2
  127. package/dist/components/card.config.js +0 -2
  128. package/dist/components/card.d.ts +0 -2
  129. package/dist/components/card.js +0 -2
  130. package/dist/components/collapsible.config.d.ts +0 -2
  131. package/dist/components/collapsible.config.js +0 -2
  132. package/dist/components/collapsible.d.ts +0 -2
  133. package/dist/components/collapsible.js +0 -2
  134. package/dist/components/command.config.d.ts +0 -2
  135. package/dist/components/command.config.js +0 -2
  136. package/dist/components/command.d.ts +0 -2
  137. package/dist/components/command.js +0 -2
  138. package/dist/components/control-color.config.d.ts +0 -2
  139. package/dist/components/control-color.config.js +0 -2
  140. package/dist/components/control-color.d.ts +0 -2
  141. package/dist/components/control-color.js +0 -2
  142. package/dist/components/control-curve.config.d.ts +0 -2
  143. package/dist/components/control-curve.config.js +0 -2
  144. package/dist/components/control-curve.d.ts +0 -2
  145. package/dist/components/control-curve.js +0 -2
  146. package/dist/components/control-folder.config.d.ts +0 -2
  147. package/dist/components/control-folder.config.js +0 -2
  148. package/dist/components/control-folder.d.ts +0 -2
  149. package/dist/components/control-folder.js +0 -2
  150. package/dist/components/control-group.config.d.ts +0 -2
  151. package/dist/components/control-group.config.js +0 -2
  152. package/dist/components/control-group.d.ts +0 -2
  153. package/dist/components/control-group.js +0 -2
  154. package/dist/components/control-knob.config.d.ts +0 -2
  155. package/dist/components/control-knob.config.js +0 -2
  156. package/dist/components/control-knob.d.ts +0 -2
  157. package/dist/components/control-knob.js +0 -2
  158. package/dist/components/control-panel.config.d.ts +0 -2
  159. package/dist/components/control-panel.config.js +0 -2
  160. package/dist/components/control-panel.d.ts +0 -2
  161. package/dist/components/control-panel.js +0 -2
  162. package/dist/components/control-select.config.d.ts +0 -2
  163. package/dist/components/control-select.config.js +0 -2
  164. package/dist/components/control-select.d.ts +0 -2
  165. package/dist/components/control-select.js +0 -2
  166. package/dist/components/control-slider.config.d.ts +0 -2
  167. package/dist/components/control-slider.config.js +0 -2
  168. package/dist/components/control-slider.d.ts +0 -2
  169. package/dist/components/control-slider.js +0 -2
  170. package/dist/components/control-spring.config.d.ts +0 -2
  171. package/dist/components/control-spring.config.js +0 -2
  172. package/dist/components/control-spring.d.ts +0 -2
  173. package/dist/components/control-spring.js +0 -2
  174. package/dist/components/control-stepper.config.d.ts +0 -2
  175. package/dist/components/control-stepper.config.js +0 -2
  176. package/dist/components/control-stepper.d.ts +0 -2
  177. package/dist/components/control-stepper.js +0 -2
  178. package/dist/components/control-toggle.config.d.ts +0 -2
  179. package/dist/components/control-toggle.config.js +0 -2
  180. package/dist/components/control-toggle.d.ts +0 -2
  181. package/dist/components/control-toggle.js +0 -2
  182. package/dist/components/dist/_slots.js +0 -8
  183. package/dist/components/dist/accordion.config.d.ts +0 -431
  184. package/dist/components/dist/accordion.config.js +0 -81
  185. package/dist/components/dist/accordion.d.ts +0 -453
  186. package/dist/components/dist/accordion.js +0 -60
  187. package/dist/components/dist/alert.config.d.ts +0 -219
  188. package/dist/components/dist/alert.config.js +0 -54
  189. package/dist/components/dist/alert.d.ts +0 -230
  190. package/dist/components/dist/alert.js +0 -16
  191. package/dist/components/dist/anchor.config.d.ts +0 -250
  192. package/dist/components/dist/anchor.config.js +0 -22
  193. package/dist/components/dist/anchor.d.ts +0 -261
  194. package/dist/components/dist/anchor.js +0 -9
  195. package/dist/components/dist/article.d.ts +0 -11
  196. package/dist/components/dist/article.js +0 -9
  197. package/dist/components/dist/aside.d.ts +0 -11
  198. package/dist/components/dist/aside.js +0 -9
  199. package/dist/components/dist/avatar-group.config.d.ts +0 -315
  200. package/dist/components/dist/avatar-group.config.js +0 -33
  201. package/dist/components/dist/avatar-group.d.ts +0 -329
  202. package/dist/components/dist/avatar-group.js +0 -39
  203. package/dist/components/dist/avatar.config.d.ts +0 -197
  204. package/dist/components/dist/avatar.config.js +0 -49
  205. package/dist/components/dist/avatar.d.ts +0 -211
  206. package/dist/components/dist/avatar.js +0 -20
  207. package/dist/components/dist/badge.config.d.ts +0 -477
  208. package/dist/components/dist/badge.config.js +0 -99
  209. package/dist/components/dist/badge.d.ts +0 -489
  210. package/dist/components/dist/badge.js +0 -16
  211. package/dist/components/dist/box.d.ts +0 -14
  212. package/dist/components/dist/box.js +0 -9
  213. package/dist/components/dist/breadcrumb.config.d.ts +0 -390
  214. package/dist/components/dist/breadcrumb.config.js +0 -43
  215. package/dist/components/dist/breadcrumb.d.ts +0 -420
  216. package/dist/components/dist/breadcrumb.js +0 -119
  217. package/dist/components/dist/button.config.d.ts +0 -381
  218. package/dist/components/dist/button.config.js +0 -91
  219. package/dist/components/dist/button.d.ts +0 -403
  220. package/dist/components/dist/button.js +0 -35
  221. package/dist/components/dist/card.config.d.ts +0 -336
  222. package/dist/components/dist/card.config.js +0 -33
  223. package/dist/components/dist/card.d.ts +0 -352
  224. package/dist/components/dist/card.js +0 -27
  225. package/dist/components/dist/collapsible.config.d.ts +0 -45
  226. package/dist/components/dist/collapsible.config.js +0 -46
  227. package/dist/components/dist/collapsible.d.ts +0 -61
  228. package/dist/components/dist/collapsible.js +0 -38
  229. package/dist/components/dist/command.config.d.ts +0 -1613
  230. package/dist/components/dist/command.config.js +0 -170
  231. package/dist/components/dist/command.d.ts +0 -1722
  232. package/dist/components/dist/command.js +0 -341
  233. package/dist/components/dist/control-color.config.d.ts +0 -979
  234. package/dist/components/dist/control-color.config.js +0 -81
  235. package/dist/components/dist/control-color.d.ts +0 -995
  236. package/dist/components/dist/control-color.js +0 -64
  237. package/dist/components/dist/control-curve.config.d.ts +0 -18
  238. package/dist/components/dist/control-curve.config.js +0 -14
  239. package/dist/components/dist/control-curve.d.ts +0 -35
  240. package/dist/components/dist/control-curve.js +0 -81
  241. package/dist/components/dist/control-folder.config.d.ts +0 -177
  242. package/dist/components/dist/control-folder.config.js +0 -47
  243. package/dist/components/dist/control-folder.d.ts +0 -194
  244. package/dist/components/dist/control-folder.js +0 -41
  245. package/dist/components/dist/control-group.config.d.ts +0 -859
  246. package/dist/components/dist/control-group.config.js +0 -80
  247. package/dist/components/dist/control-group.d.ts +0 -881
  248. package/dist/components/dist/control-group.js +0 -89
  249. package/dist/components/dist/control-knob.config.d.ts +0 -792
  250. package/dist/components/dist/control-knob.config.js +0 -67
  251. package/dist/components/dist/control-knob.d.ts +0 -819
  252. package/dist/components/dist/control-knob.js +0 -148
  253. package/dist/components/dist/control-panel.config.d.ts +0 -402
  254. package/dist/components/dist/control-panel.config.js +0 -38
  255. package/dist/components/dist/control-panel.d.ts +0 -415
  256. package/dist/components/dist/control-panel.js +0 -22
  257. package/dist/components/dist/control-select.config.d.ts +0 -1176
  258. package/dist/components/dist/control-select.config.js +0 -102
  259. package/dist/components/dist/control-select.d.ts +0 -1200
  260. package/dist/components/dist/control-select.js +0 -63
  261. package/dist/components/dist/control-slider.config.d.ts +0 -104
  262. package/dist/components/dist/control-slider.config.js +0 -98
  263. package/dist/components/dist/control-slider.d.ts +0 -127
  264. package/dist/components/dist/control-slider.js +0 -87
  265. package/dist/components/dist/control-spring.config.d.ts +0 -417
  266. package/dist/components/dist/control-spring.config.js +0 -36
  267. package/dist/components/dist/control-spring.d.ts +0 -439
  268. package/dist/components/dist/control-spring.js +0 -136
  269. package/dist/components/dist/control-stepper.config.d.ts +0 -1084
  270. package/dist/components/dist/control-stepper.config.js +0 -108
  271. package/dist/components/dist/control-stepper.d.ts +0 -1104
  272. package/dist/components/dist/control-stepper.js +0 -109
  273. package/dist/components/dist/control-toggle.config.d.ts +0 -407
  274. package/dist/components/dist/control-toggle.config.js +0 -26
  275. package/dist/components/dist/control-toggle.d.ts +0 -420
  276. package/dist/components/dist/control-toggle.js +0 -36
  277. package/dist/components/dist/createSlot.d.ts +0 -8
  278. package/dist/components/dist/createSlot.js +0 -89
  279. package/dist/components/dist/dropdown.config.d.ts +0 -920
  280. package/dist/components/dist/dropdown.config.js +0 -107
  281. package/dist/components/dist/dropdown.d.ts +0 -950
  282. package/dist/components/dist/dropdown.js +0 -92
  283. package/dist/components/dist/empty-state.config.d.ts +0 -396
  284. package/dist/components/dist/empty-state.config.js +0 -53
  285. package/dist/components/dist/empty-state.d.ts +0 -416
  286. package/dist/components/dist/empty-state.js +0 -33
  287. package/dist/components/dist/footer.d.ts +0 -11
  288. package/dist/components/dist/footer.js +0 -9
  289. package/dist/components/dist/grid.d.ts +0 -41
  290. package/dist/components/dist/grid.js +0 -34
  291. package/dist/components/dist/header.d.ts +0 -11
  292. package/dist/components/dist/header.js +0 -9
  293. package/dist/components/dist/hstack.d.ts +0 -15
  294. package/dist/components/dist/hstack.js +0 -21
  295. package/dist/components/dist/image.d.ts +0 -19
  296. package/dist/components/dist/image.js +0 -9
  297. package/dist/components/dist/input.config.d.ts +0 -58
  298. package/dist/components/dist/input.config.js +0 -42
  299. package/dist/components/dist/input.d.ts +0 -67
  300. package/dist/components/dist/input.js +0 -14
  301. package/dist/components/dist/item.config.d.ts +0 -351
  302. package/dist/components/dist/item.config.js +0 -83
  303. package/dist/components/dist/item.d.ts +0 -374
  304. package/dist/components/dist/item.js +0 -51
  305. package/dist/components/dist/list.d.ts +0 -19
  306. package/dist/components/dist/list.js +0 -21
  307. package/dist/components/dist/main.d.ts +0 -11
  308. package/dist/components/dist/main.js +0 -9
  309. package/dist/components/dist/modal.config.d.ts +0 -397
  310. package/dist/components/dist/modal.config.js +0 -92
  311. package/dist/components/dist/modal.d.ts +0 -433
  312. package/dist/components/dist/modal.js +0 -125
  313. package/dist/components/dist/nav-header.config.d.ts +0 -158
  314. package/dist/components/dist/nav-header.config.js +0 -26
  315. package/dist/components/dist/nav-header.d.ts +0 -173
  316. package/dist/components/dist/nav-header.js +0 -23
  317. package/dist/components/dist/nav.d.ts +0 -11
  318. package/dist/components/dist/nav.js +0 -9
  319. package/dist/components/dist/preset-bar.config.d.ts +0 -192
  320. package/dist/components/dist/preset-bar.config.js +0 -39
  321. package/dist/components/dist/preset-bar.d.ts +0 -215
  322. package/dist/components/dist/preset-bar.js +0 -71
  323. package/dist/components/dist/presets/index.d.ts +0 -17674
  324. package/dist/components/dist/presets/index.js +0 -97
  325. package/dist/components/dist/pressable.d.ts +0 -11
  326. package/dist/components/dist/pressable.js +0 -9
  327. package/dist/components/dist/progress.config.d.ts +0 -296
  328. package/dist/components/dist/progress.config.js +0 -35
  329. package/dist/components/dist/progress.d.ts +0 -311
  330. package/dist/components/dist/progress.js +0 -43
  331. package/dist/components/dist/section.d.ts +0 -11
  332. package/dist/components/dist/section.js +0 -9
  333. package/dist/components/dist/select.config.d.ts +0 -31
  334. package/dist/components/dist/select.config.js +0 -25
  335. package/dist/components/dist/select.d.ts +0 -45
  336. package/dist/components/dist/select.js +0 -13
  337. package/dist/components/dist/sheet.config.d.ts +0 -245
  338. package/dist/components/dist/sheet.config.js +0 -99
  339. package/dist/components/dist/sheet.d.ts +0 -267
  340. package/dist/components/dist/sheet.js +0 -53
  341. package/dist/components/dist/sidebar.config.d.ts +0 -1651
  342. package/dist/components/dist/sidebar.config.js +0 -217
  343. package/dist/components/dist/sidebar.d.ts +0 -1825
  344. package/dist/components/dist/sidebar.js +0 -492
  345. package/dist/components/dist/skeleton.config.d.ts +0 -16
  346. package/dist/components/dist/skeleton.config.js +0 -10
  347. package/dist/components/dist/skeleton.d.ts +0 -27
  348. package/dist/components/dist/skeleton.js +0 -16
  349. package/dist/components/dist/slider.config.d.ts +0 -44
  350. package/dist/components/dist/slider.config.js +0 -40
  351. package/dist/components/dist/slider.d.ts +0 -70
  352. package/dist/components/dist/slider.js +0 -247
  353. package/dist/components/dist/spinner.config.d.ts +0 -34
  354. package/dist/components/dist/spinner.config.js +0 -24
  355. package/dist/components/dist/spinner.d.ts +0 -42
  356. package/dist/components/dist/spinner.js +0 -29
  357. package/dist/components/dist/svg.d.ts +0 -21
  358. package/dist/components/dist/svg.js +0 -17
  359. package/dist/components/dist/switch.config.d.ts +0 -353
  360. package/dist/components/dist/switch.config.js +0 -47
  361. package/dist/components/dist/switch.d.ts +0 -370
  362. package/dist/components/dist/switch.js +0 -32
  363. package/dist/components/dist/table.d.ts +0 -36
  364. package/dist/components/dist/table.js +0 -29
  365. package/dist/components/dist/tabs.config.d.ts +0 -611
  366. package/dist/components/dist/tabs.config.js +0 -56
  367. package/dist/components/dist/tabs.d.ts +0 -632
  368. package/dist/components/dist/tabs.js +0 -77
  369. package/dist/components/dist/text.config.d.ts +0 -306
  370. package/dist/components/dist/text.config.js +0 -149
  371. package/dist/components/dist/text.d.ts +0 -205
  372. package/dist/components/dist/text.js +0 -12
  373. package/dist/components/dist/textarea.config.d.ts +0 -352
  374. package/dist/components/dist/textarea.config.js +0 -57
  375. package/dist/components/dist/textarea.d.ts +0 -362
  376. package/dist/components/dist/textarea.js +0 -9
  377. package/dist/components/dist/toast.config.d.ts +0 -335
  378. package/dist/components/dist/toast.config.js +0 -145
  379. package/dist/components/dist/toast.d.ts +0 -426
  380. package/dist/components/dist/toast.js +0 -159
  381. package/dist/components/dist/tooltip.config.d.ts +0 -193
  382. package/dist/components/dist/tooltip.config.js +0 -40
  383. package/dist/components/dist/tooltip.d.ts +0 -206
  384. package/dist/components/dist/tooltip.js +0 -28
  385. package/dist/components/dist/vstack.d.ts +0 -15
  386. package/dist/components/dist/vstack.js +0 -20
  387. package/dist/components/dropdown.config.d.ts +0 -2
  388. package/dist/components/dropdown.config.js +0 -2
  389. package/dist/components/dropdown.d.ts +0 -2
  390. package/dist/components/dropdown.js +0 -2
  391. package/dist/components/empty-state.config.d.ts +0 -2
  392. package/dist/components/empty-state.config.js +0 -2
  393. package/dist/components/empty-state.d.ts +0 -2
  394. package/dist/components/empty-state.js +0 -2
  395. package/dist/components/footer.d.ts +0 -2
  396. package/dist/components/footer.js +0 -2
  397. package/dist/components/grid.d.ts +0 -2
  398. package/dist/components/grid.js +0 -2
  399. package/dist/components/header.d.ts +0 -2
  400. package/dist/components/header.js +0 -2
  401. package/dist/components/hstack.d.ts +0 -2
  402. package/dist/components/hstack.js +0 -2
  403. package/dist/components/image.d.ts +0 -2
  404. package/dist/components/image.js +0 -2
  405. package/dist/components/input.config.d.ts +0 -2
  406. package/dist/components/input.config.js +0 -2
  407. package/dist/components/input.d.ts +0 -2
  408. package/dist/components/input.js +0 -2
  409. package/dist/components/item.config.d.ts +0 -2
  410. package/dist/components/item.config.js +0 -2
  411. package/dist/components/item.d.ts +0 -2
  412. package/dist/components/item.js +0 -2
  413. package/dist/components/list.d.ts +0 -2
  414. package/dist/components/list.js +0 -2
  415. package/dist/components/main.d.ts +0 -2
  416. package/dist/components/main.js +0 -2
  417. package/dist/components/modal.config.d.ts +0 -2
  418. package/dist/components/modal.config.js +0 -2
  419. package/dist/components/modal.d.ts +0 -2
  420. package/dist/components/modal.js +0 -2
  421. package/dist/components/nav-header.config.d.ts +0 -2
  422. package/dist/components/nav-header.config.js +0 -2
  423. package/dist/components/nav-header.d.ts +0 -2
  424. package/dist/components/nav-header.js +0 -2
  425. package/dist/components/nav.d.ts +0 -2
  426. package/dist/components/nav.js +0 -2
  427. package/dist/components/preset-bar.config.d.ts +0 -2
  428. package/dist/components/preset-bar.config.js +0 -2
  429. package/dist/components/preset-bar.d.ts +0 -2
  430. package/dist/components/preset-bar.js +0 -2
  431. package/dist/components/presets/index.d.ts +0 -44
  432. package/dist/components/presets/index.js +0 -44
  433. package/dist/components/pressable.d.ts +0 -2
  434. package/dist/components/pressable.js +0 -2
  435. package/dist/components/progress.config.d.ts +0 -2
  436. package/dist/components/progress.config.js +0 -2
  437. package/dist/components/progress.d.ts +0 -2
  438. package/dist/components/progress.js +0 -2
  439. package/dist/components/section.d.ts +0 -2
  440. package/dist/components/section.js +0 -2
  441. package/dist/components/select.config.d.ts +0 -2
  442. package/dist/components/select.config.js +0 -2
  443. package/dist/components/select.d.ts +0 -2
  444. package/dist/components/select.js +0 -2
  445. package/dist/components/sheet.config.d.ts +0 -2
  446. package/dist/components/sheet.config.js +0 -2
  447. package/dist/components/sheet.d.ts +0 -2
  448. package/dist/components/sheet.js +0 -2
  449. package/dist/components/sidebar.config.d.ts +0 -2
  450. package/dist/components/sidebar.config.js +0 -2
  451. package/dist/components/sidebar.d.ts +0 -2
  452. package/dist/components/sidebar.js +0 -2
  453. package/dist/components/skeleton.config.d.ts +0 -2
  454. package/dist/components/skeleton.config.js +0 -2
  455. package/dist/components/skeleton.d.ts +0 -2
  456. package/dist/components/skeleton.js +0 -2
  457. package/dist/components/slider.config.d.ts +0 -2
  458. package/dist/components/slider.config.js +0 -2
  459. package/dist/components/slider.d.ts +0 -2
  460. package/dist/components/slider.js +0 -2
  461. package/dist/components/spinner.config.d.ts +0 -2
  462. package/dist/components/spinner.config.js +0 -2
  463. package/dist/components/spinner.d.ts +0 -2
  464. package/dist/components/spinner.js +0 -2
  465. package/dist/components/svg.d.ts +0 -2
  466. package/dist/components/svg.js +0 -2
  467. package/dist/components/switch.config.d.ts +0 -2
  468. package/dist/components/switch.config.js +0 -2
  469. package/dist/components/switch.d.ts +0 -2
  470. package/dist/components/switch.js +0 -2
  471. package/dist/components/table.d.ts +0 -2
  472. package/dist/components/table.js +0 -2
  473. package/dist/components/tabs.config.d.ts +0 -2
  474. package/dist/components/tabs.config.js +0 -2
  475. package/dist/components/tabs.d.ts +0 -2
  476. package/dist/components/tabs.js +0 -2
  477. package/dist/components/text.config.d.ts +0 -2
  478. package/dist/components/text.config.js +0 -2
  479. package/dist/components/text.d.ts +0 -2
  480. package/dist/components/text.js +0 -2
  481. package/dist/components/textarea.config.d.ts +0 -2
  482. package/dist/components/textarea.config.js +0 -2
  483. package/dist/components/textarea.d.ts +0 -2
  484. package/dist/components/textarea.js +0 -2
  485. package/dist/components/toast.config.d.ts +0 -2
  486. package/dist/components/toast.config.js +0 -2
  487. package/dist/components/toast.d.ts +0 -2
  488. package/dist/components/toast.js +0 -2
  489. package/dist/components/tooltip.config.d.ts +0 -2
  490. package/dist/components/tooltip.config.js +0 -2
  491. package/dist/components/tooltip.d.ts +0 -2
  492. package/dist/components/tooltip.js +0 -2
  493. package/dist/components/vstack.d.ts +0 -2
  494. package/dist/components/vstack.js +0 -2
  495. package/dist/config/dist/component-config.d.ts +0 -349
  496. package/dist/config/dist/component-refs.d.ts +0 -98
  497. package/dist/config/dist/component-resolution.js +0 -78
  498. package/dist/config/dist/consts/defaultColors.d.ts +0 -253
  499. package/dist/config/dist/consts/defaultColors.js +0 -252
  500. package/dist/config/dist/createComponent.d.ts +0 -1
  501. package/dist/config/dist/createComponent.js +0 -1
  502. package/dist/config/dist/createConfig.d.ts +0 -375
  503. package/dist/config/dist/createConfig.js +0 -625
  504. package/dist/config/dist/defineComponent.d.ts +0 -24
  505. package/dist/config/dist/defineComponent.js +0 -2
  506. package/dist/config/dist/defineStyleProp.d.ts +0 -93
  507. package/dist/config/dist/defineStyleProp.js +0 -60
  508. package/dist/config/dist/preset-merge.js +0 -192
  509. package/dist/config/dist/propertyAcceptedTypes.js +0 -220
  510. package/dist/config/dist/propertyGroups.d.ts +0 -1
  511. package/dist/config/dist/propertyGroups.js +0 -414
  512. package/dist/config/dist/resolveStyleProp.d.ts +0 -88
  513. package/dist/config/dist/resolveStyleProp.js +0 -235
  514. package/dist/config/dist/resolveTokenTypes.d.ts +0 -1
  515. package/dist/config/dist/resolveTokenTypes.js +0 -149
  516. package/dist/config/dist/runtime-registry.js +0 -9
  517. package/dist/config/dist/serialize.d.ts +0 -73
  518. package/dist/config/dist/serialize.js +0 -172
  519. package/dist/config/dist/style-prop-runtime.d.ts +0 -1
  520. package/dist/config-utils/dist/componentConfig.d.ts +0 -10
  521. package/dist/config-utils/dist/componentConfig.js +0 -11
  522. package/dist/config-utils.d.ts +0 -2
  523. package/dist/config-utils.js +0 -2
  524. package/dist/core/dist/color-opacity-map.js +0 -33
  525. package/dist/core/dist/compositeStyles.d.ts +0 -21
  526. package/dist/core/dist/compositeStyles.js +0 -51
  527. package/dist/core/dist/configurable-prop-helpers.d.ts +0 -31
  528. package/dist/core/dist/configurable-prop-helpers.js +0 -61
  529. package/dist/core/dist/createComponent.boundaries.js +0 -192
  530. package/dist/core/dist/createComponent.d.ts +0 -56
  531. package/dist/core/dist/createComponent.js +0 -67
  532. package/dist/core/dist/createComponentExample.d.ts +0 -41
  533. package/dist/core/dist/createComponentExample.js +0 -27
  534. package/dist/core/dist/createProvider.d.ts +0 -12
  535. package/dist/core/dist/createProvider.js +0 -24
  536. package/dist/core/dist/generated/stylePropsTwMap.d.ts +0 -1700
  537. package/dist/core/dist/generated/stylePropsTwMap.js +0 -570
  538. package/dist/core/dist/getComponentStyles.d.ts +0 -49
  539. package/dist/core/dist/getComponentStyles.js +0 -85
  540. package/dist/core/dist/getStyles.d.ts +0 -42
  541. package/dist/core/dist/getStyles.js +0 -300
  542. package/dist/core/dist/index.d.ts +0 -13
  543. package/dist/core/dist/index.js +0 -13
  544. package/dist/core/dist/modifier-mappings.d.ts +0 -12
  545. package/dist/core/dist/modifier-mappings.js +0 -61
  546. package/dist/core/dist/resolveMotionState.d.ts +0 -4
  547. package/dist/core/dist/resolveMotionState.js +0 -17
  548. package/dist/core/dist/resolveProps.boundaries.js +0 -131
  549. package/dist/core/dist/style-prop-data.d.ts +0 -32
  550. package/dist/core/dist/style-prop-data.js +0 -1257
  551. package/dist/core/dist/transformPreset.d.ts +0 -17
  552. package/dist/core/dist/transformPreset.js +0 -28
  553. package/dist/core/dist/withDefaultStyleProps.d.ts +0 -43
  554. package/dist/core/dist/withDefaultStyleProps.js +0 -18
  555. package/dist/core.d.ts +0 -14
  556. package/dist/core.js +0 -15
  557. package/dist/createSlot.d.ts +0 -2
  558. package/dist/createSlot.js +0 -2
  559. package/dist/fixtures.d.ts +0 -4
  560. package/dist/fixtures.js +0 -5
  561. package/dist/foundational-presets/dist/_virtual/_rolldown/runtime.js +0 -13
  562. package/dist/foundational-presets/dist/defaultPreset.d.ts +0 -1557
  563. package/dist/foundational-presets/dist/defaultPreset.js +0 -615
  564. package/dist/foundational-presets/dist/index.d.ts +0 -1
  565. package/dist/foundational-presets/dist/index.js +0 -1
  566. package/dist/foundational-presets/dist/motion.d.ts +0 -12
  567. package/dist/foundational-presets/dist/style-props.js +0 -1445
  568. package/dist/loader/dist/loader/create-component-data.js +0 -33
  569. package/dist/loader/dist/loader/create-component-lowering.js +0 -454
  570. package/dist/loader/dist/loader/data-attr-transform.js +0 -191
  571. package/dist/loader/dist/loader/dynamic-style-codegen.js +0 -97
  572. package/dist/loader/dist/loader/internal-meta.js +0 -22
  573. package/dist/loader/dist/loader/lower-new-api-primitive.js +0 -90
  574. package/dist/loader/dist/loader/motion-transform.js +0 -717
  575. package/dist/loader/dist/loader/style-transform.js +0 -670
  576. package/dist/loader/dist/node_modules/react/cjs/react-jsx-runtime.development.js +0 -203
  577. package/dist/loader/dist/node_modules/react/cjs/react-jsx-runtime.production.js +0 -25
  578. package/dist/loader/dist/node_modules/react/cjs/react.development.js +0 -762
  579. package/dist/loader/dist/node_modules/react/cjs/react.production.js +0 -351
  580. package/dist/loader/dist/node_modules/react/index.js +0 -10
  581. package/dist/loader/dist/node_modules/react/jsx-runtime.js +0 -10
  582. package/dist/loader/dist/packages/core/dist/color-opacity-map.js +0 -33
  583. package/dist/loader/dist/packages/core/dist/compositeStyles.js +0 -43
  584. package/dist/loader/dist/packages/core/dist/createComponent.js +0 -6
  585. package/dist/loader/dist/packages/core/dist/createProvider.js +0 -7
  586. package/dist/loader/dist/packages/core/dist/generated/stylePropsTwMap.js +0 -570
  587. package/dist/loader/dist/packages/core/dist/getComponentStyles.js +0 -2
  588. package/dist/loader/dist/packages/core/dist/getStyles.js +0 -60
  589. package/dist/loader/dist/packages/core/dist/index.js +0 -6
  590. package/dist/loader/dist/packages/core/dist/modifier-mappings.js +0 -61
  591. package/dist/loader/dist/packages/core/dist/style-prop-data.js +0 -1257
  592. package/dist/loader/dist/packages/core/dist/withDefaultStyleProps.js +0 -1
  593. package/dist/presets/dist/defaultPreset.d.ts +0 -6
  594. package/dist/presets/dist/defaultPreset.js +0 -51
  595. package/dist/presets/dist/index.d.ts +0 -1
  596. package/dist/presets/dist/index.js +0 -1
  597. package/dist/presets/motion.d.ts +0 -2
  598. package/dist/presets/motion.js +0 -2
  599. package/dist/presets.d.ts +0 -2
  600. package/dist/presets.js +0 -3
  601. package/dist/styles.d.ts +0 -4
  602. package/dist/styles.js +0 -5
  603. package/dist/transformPreset.d.ts +0 -2
  604. package/dist/transformPreset.js +0 -3
  605. /package/dist/{config/dist/component-resolution.d.ts → loader/dist/transform-runner.d.ts} +0 -0
@@ -1,1557 +0,0 @@
1
- import { GetModifierFromInput, UdsConfig } from "../../config/dist/createConfig.js";
2
- import * as _$_uds_types0 from "@uds/types";
3
-
4
- //#region ../foundational-presets/dist/defaultPreset.d.ts
5
- declare const defaultFoundationPreset: UdsConfig<_$_uds_types0.ModifierProp | GetModifierFromInput<{
6
- readonly colorMode: {
7
- readonly options: {
8
- readonly dark: {
9
- readonly css: ".dark";
10
- };
11
- };
12
- };
13
- readonly responsive: {
14
- readonly options: {
15
- readonly sm: {
16
- readonly media: "(min-width: 640px)";
17
- };
18
- readonly md: {
19
- readonly media: "(min-width: 768px)";
20
- };
21
- readonly lg: {
22
- readonly media: "(min-width: 1024px)";
23
- };
24
- readonly xl: {
25
- readonly media: "(min-width: 1280px)";
26
- };
27
- readonly '2xl': {
28
- readonly media: "(min-width: 1536px)";
29
- };
30
- };
31
- };
32
- }>, {
33
- color: {
34
- transparent: string;
35
- inherit: string;
36
- current: string;
37
- "always/black": string;
38
- "always/white": string;
39
- brand: string;
40
- "on-brand": string;
41
- accent: string;
42
- "on-accent": string;
43
- alert: string;
44
- "on-alert": string;
45
- positive: string;
46
- "on-positive": string;
47
- warning: string;
48
- "on-warning": string;
49
- primary: string;
50
- "on-primary": string;
51
- secondary: string;
52
- "on-secondary": string;
53
- tertiary: string;
54
- "on-tertiary": string;
55
- inverse: string;
56
- "on-inverse": string;
57
- };
58
- shadow: {
59
- none: string;
60
- sm: string;
61
- md: string;
62
- lg: string;
63
- xl: string;
64
- "2xl": string;
65
- xs: string;
66
- "2xs": string;
67
- inner: string;
68
- };
69
- position: {
70
- auto: string;
71
- full: string;
72
- "1/2": string;
73
- "1/3": string;
74
- "2/3": string;
75
- "1/4": string;
76
- "2/4": string;
77
- "3/4": string;
78
- };
79
- flex: {
80
- 1: string;
81
- initial: string;
82
- auto: string;
83
- none: string;
84
- };
85
- rotate: {
86
- 0: string;
87
- 1: string;
88
- 2: string;
89
- 3: string;
90
- 6: string;
91
- 12: string;
92
- 90: string;
93
- 45: string;
94
- 180: string;
95
- };
96
- scale: {
97
- 0: string;
98
- 50: string;
99
- 75: string;
100
- 90: string;
101
- 95: string;
102
- 100: string;
103
- 105: string;
104
- 110: string;
105
- 125: string;
106
- 150: string;
107
- 200: string;
108
- };
109
- translate: {
110
- 0: string;
111
- 1: string;
112
- 2: string;
113
- full: string;
114
- "1/2": string;
115
- "1/3": string;
116
- "2/3": string;
117
- "1/4": string;
118
- "3/4": string;
119
- 4: string;
120
- 8: string;
121
- 0.5: string;
122
- 1.5: string;
123
- 2.5: string;
124
- 3: string;
125
- 3.5: string;
126
- 5: string;
127
- 6: string;
128
- 7: string;
129
- 9: string;
130
- 10: string;
131
- 11: string;
132
- 12: string;
133
- 14: string;
134
- 16: string;
135
- 20: string;
136
- 24: string;
137
- 28: string;
138
- 32: string;
139
- 36: string;
140
- 40: string;
141
- 44: string;
142
- 48: string;
143
- 52: string;
144
- 56: string;
145
- 60: string;
146
- 64: string;
147
- 72: string;
148
- 80: string;
149
- 96: string;
150
- };
151
- animation: {
152
- none: string;
153
- spin: string;
154
- ping: string;
155
- };
156
- opacity: {
157
- 0: string;
158
- 5: string;
159
- 10: string;
160
- 20: string;
161
- 40: string;
162
- 60: string;
163
- 80: string;
164
- 25: string;
165
- 30: string;
166
- 50: string;
167
- 70: string;
168
- 75: string;
169
- 90: string;
170
- 95: string;
171
- 100: string;
172
- };
173
- size: {
174
- auto: string;
175
- full: string;
176
- "1/2": string;
177
- "1/3": string;
178
- "2/3": string;
179
- "1/4": string;
180
- "2/4": string;
181
- "3/4": string;
182
- min: string;
183
- max: string;
184
- fit: string;
185
- "1/5": string;
186
- "2/5": string;
187
- "3/5": string;
188
- "4/5": string;
189
- "1/6": string;
190
- "2/6": string;
191
- "3/6": string;
192
- "4/6": string;
193
- "5/6": string;
194
- };
195
- bg: {
196
- overlay: string;
197
- brand: string;
198
- accent: string;
199
- alert: string;
200
- positive: string;
201
- warning: string;
202
- primary: string;
203
- secondary: string;
204
- tertiary: string;
205
- inverse: string;
206
- surface: string;
207
- "elevation-1": string;
208
- "elevation-2": string;
209
- "elevation-3": string;
210
- "brand-wash": string;
211
- "accent-wash": string;
212
- "alert-wash": string;
213
- "positive-wash": string;
214
- "warning-wash": string;
215
- };
216
- radius: {
217
- none: string;
218
- sm: string;
219
- md: string;
220
- lg: string;
221
- xl: string;
222
- full: string;
223
- xs: string;
224
- };
225
- borderColor: {
226
- brand: string;
227
- accent: string;
228
- alert: string;
229
- positive: string;
230
- warning: string;
231
- primary: string;
232
- secondary: string;
233
- tertiary: string;
234
- inverse: string;
235
- surface: string;
236
- "brand-wash": string;
237
- "accent-wash": string;
238
- "alert-wash": string;
239
- "positive-wash": string;
240
- "warning-wash": string;
241
- };
242
- borderWidth: {
243
- none: string;
244
- thin: string;
245
- medium: string;
246
- thick: string;
247
- };
248
- divideWidth: {
249
- 0: string;
250
- 2: string;
251
- reverse: string;
252
- 4: string;
253
- 8: string;
254
- };
255
- blur: {
256
- none: string;
257
- sm: string;
258
- md: string;
259
- lg: string;
260
- xl: string;
261
- "2xl": string;
262
- "3xl": string;
263
- };
264
- flexGrow: {
265
- 0: string;
266
- 1: string;
267
- };
268
- flexShrink: {
269
- 0: string;
270
- };
271
- spacing: {
272
- 0: string;
273
- 1: string;
274
- 2: string;
275
- px: string;
276
- 4: string;
277
- 8: string;
278
- 0.5: string;
279
- 1.5: string;
280
- 2.5: string;
281
- 3: string;
282
- 3.5: string;
283
- 5: string;
284
- 6: string;
285
- 7: string;
286
- 9: string;
287
- 10: string;
288
- 11: string;
289
- 12: string;
290
- 14: string;
291
- 16: string;
292
- 20: string;
293
- 24: string;
294
- 28: string;
295
- 32: string;
296
- 36: string;
297
- 40: string;
298
- 44: string;
299
- 48: string;
300
- 52: string;
301
- 56: string;
302
- 60: string;
303
- 64: string;
304
- 72: string;
305
- 80: string;
306
- 96: string;
307
- };
308
- zIndex: {
309
- 0: string;
310
- auto: string;
311
- 10: string;
312
- 20: string;
313
- 40: string;
314
- 30: string;
315
- 50: string;
316
- };
317
- outlineOffset: {
318
- 0: string;
319
- 1: string;
320
- 2: string;
321
- 4: string;
322
- 8: string;
323
- };
324
- ringWidth: {
325
- 0: string;
326
- 1: string;
327
- inset: string;
328
- 2: string;
329
- 4: string;
330
- 8: string;
331
- };
332
- ringOffsetWidth: {
333
- 0: string;
334
- 1: string;
335
- 2: string;
336
- 4: string;
337
- 8: string;
338
- };
339
- h: {
340
- screen: string;
341
- svh: string;
342
- lvh: string;
343
- dvh: string;
344
- };
345
- w: {
346
- screen: string;
347
- svw: string;
348
- lvw: string;
349
- dvw: string;
350
- };
351
- strokeWidth: {
352
- 0: string;
353
- 1: string;
354
- 2: string;
355
- };
356
- skew: {
357
- 0: string;
358
- 1: string;
359
- 2: string;
360
- 3: string;
361
- 6: string;
362
- 12: string;
363
- };
364
- fontFamily: {
365
- sans: string;
366
- serif: string;
367
- mono: string;
368
- };
369
- fontWeight: {
370
- normal: string;
371
- bold: string;
372
- thin: string;
373
- medium: string;
374
- extralight: string;
375
- light: string;
376
- semibold: string;
377
- extrabold: string;
378
- black: string;
379
- };
380
- letterSpacing: {
381
- normal: string;
382
- tight: string;
383
- tighter: string;
384
- wide: string;
385
- wider: string;
386
- widest: string;
387
- };
388
- lineHeight: {
389
- normal: string;
390
- none: string;
391
- tight: string;
392
- relaxed: string;
393
- };
394
- textShadow: {
395
- none: string;
396
- sm: string;
397
- md: string;
398
- lg: string;
399
- xs: string;
400
- "2xs": string;
401
- };
402
- outlineWidth: {
403
- 0: string;
404
- 1: string;
405
- 2: string;
406
- 4: string;
407
- 8: string;
408
- };
409
- aspectRatio: {
410
- square: string;
411
- landscape: string;
412
- portrait: string;
413
- widescreen: string;
414
- ultrawide: string;
415
- golden: string;
416
- };
417
- }, {}, {}, {}, GetModifierFromInput<{
418
- readonly colorMode: {
419
- readonly options: {
420
- readonly dark: {
421
- readonly css: ".dark";
422
- };
423
- };
424
- };
425
- readonly responsive: {
426
- readonly options: {
427
- readonly sm: {
428
- readonly media: "(min-width: 640px)";
429
- };
430
- readonly md: {
431
- readonly media: "(min-width: 768px)";
432
- };
433
- readonly lg: {
434
- readonly media: "(min-width: 1024px)";
435
- };
436
- readonly xl: {
437
- readonly media: "(min-width: 1280px)";
438
- };
439
- readonly '2xl': {
440
- readonly media: "(min-width: 1536px)";
441
- };
442
- };
443
- };
444
- }>, {
445
- readonly color: {
446
- readonly $type: "color";
447
- readonly inherit: {
448
- readonly value: "inherit";
449
- };
450
- readonly current: {
451
- readonly value: "currentColor";
452
- };
453
- readonly transparent: {
454
- readonly value: "transparent";
455
- };
456
- readonly 'always/black': {
457
- readonly value: "#000";
458
- };
459
- readonly 'always/white': {
460
- readonly value: "#fff";
461
- };
462
- readonly brand: {
463
- readonly value: "#1167f4";
464
- readonly _dark: "#88bcfb";
465
- };
466
- readonly 'on-brand': {
467
- readonly value: "#ffffff";
468
- readonly _dark: "#09090b";
469
- };
470
- readonly accent: {
471
- readonly value: "#da1c46";
472
- readonly _dark: "#fc9aa8";
473
- };
474
- readonly 'on-accent': {
475
- readonly value: "#ffffff";
476
- readonly _dark: "#09090b";
477
- };
478
- readonly alert: {
479
- readonly value: "#df1313";
480
- readonly _dark: "#fa9b9b";
481
- };
482
- readonly 'on-alert': {
483
- readonly value: "#ffffff";
484
- readonly _dark: "#09090b";
485
- };
486
- readonly positive: {
487
- readonly value: "#17843f";
488
- readonly _dark: "#4ade80";
489
- };
490
- readonly 'on-positive': {
491
- readonly value: "#ffffff";
492
- readonly _dark: "#09090b";
493
- };
494
- readonly warning: {
495
- readonly value: "#bf5105";
496
- readonly _dark: "#fca156";
497
- };
498
- readonly 'on-warning': {
499
- readonly value: "#ffffff";
500
- readonly _dark: "#09090b";
501
- };
502
- readonly primary: {
503
- readonly value: "#52525b";
504
- readonly _dark: "#09090b";
505
- };
506
- readonly 'on-primary': {
507
- readonly value: "#18181b";
508
- readonly _dark: "#fafafa";
509
- };
510
- readonly secondary: {
511
- readonly value: "#a1a1aa";
512
- readonly _dark: "#a1a1aa";
513
- };
514
- readonly 'on-secondary': {
515
- readonly value: "#6f6f78";
516
- readonly _dark: "#b7b7bd";
517
- };
518
- readonly tertiary: {
519
- readonly value: "#fafafa";
520
- readonly _dark: "#18181b";
521
- };
522
- readonly 'on-tertiary': {
523
- readonly value: "#71717a";
524
- readonly _dark: "#b2b2b9";
525
- };
526
- readonly inverse: {
527
- readonly value: "#18181b";
528
- readonly _dark: "#fafafa";
529
- };
530
- readonly 'on-inverse': {
531
- readonly value: "#fafafa";
532
- readonly _dark: "#09090b";
533
- };
534
- };
535
- readonly bg: {
536
- readonly $type: "color";
537
- readonly brand: {
538
- readonly value: "#1e6ff5";
539
- readonly _dark: "#71affb";
540
- };
541
- readonly surface: {
542
- readonly value: "#fafafa";
543
- readonly _dark: "#09090b";
544
- };
545
- readonly accent: {
546
- readonly value: "#e11d48";
547
- readonly _dark: "#fc8a9a";
548
- };
549
- readonly alert: {
550
- readonly value: "#eb1616";
551
- readonly _dark: "#f98d8d";
552
- };
553
- readonly positive: {
554
- readonly value: "#188841";
555
- readonly _dark: "#4ade80";
556
- };
557
- readonly warning: {
558
- readonly value: "#c55405";
559
- readonly _dark: "#fb923c";
560
- };
561
- readonly primary: {
562
- readonly value: "#fff";
563
- readonly _dark: "#09090b";
564
- };
565
- readonly 'elevation-1': {
566
- readonly value: "#fff";
567
- readonly _dark: "#18181b";
568
- };
569
- readonly 'elevation-2': {
570
- readonly value: "#fff";
571
- readonly _dark: "#27272a";
572
- };
573
- readonly 'elevation-3': {
574
- readonly value: "#fff";
575
- readonly _dark: "#3f3f46";
576
- };
577
- readonly secondary: {
578
- readonly value: "#f4f4f5";
579
- readonly _dark: "#27272a";
580
- };
581
- readonly tertiary: {
582
- readonly value: "#fafafa";
583
- readonly _dark: "#18181b";
584
- };
585
- readonly inverse: {
586
- readonly value: "#18181b";
587
- readonly _dark: "#fafafa";
588
- };
589
- readonly 'brand-wash': {
590
- readonly value: "#eff6ff";
591
- readonly _dark: "#172554";
592
- };
593
- readonly 'accent-wash': {
594
- readonly value: "#fff1f2";
595
- readonly _dark: "#4c0519";
596
- };
597
- readonly 'alert-wash': {
598
- readonly value: "#fef2f2";
599
- readonly _dark: "#450a0a";
600
- };
601
- readonly 'positive-wash': {
602
- readonly value: "#f0fdf4";
603
- readonly _dark: "#052e16";
604
- };
605
- readonly 'warning-wash': {
606
- readonly value: "#fff7ed";
607
- readonly _dark: "#431407";
608
- };
609
- readonly overlay: {
610
- readonly value: "rgba(0,0,0,0.5)";
611
- readonly _dark: "rgba(0,0,0,0.7)";
612
- };
613
- };
614
- readonly borderColor: {
615
- readonly $type: "color";
616
- readonly brand: {
617
- readonly value: "#1e6ff5";
618
- readonly _dark: "#71affb";
619
- };
620
- readonly surface: {
621
- readonly value: "#fafafa";
622
- readonly _dark: "#09090b";
623
- };
624
- readonly accent: {
625
- readonly value: "#e11d48";
626
- readonly _dark: "#fc8a9a";
627
- };
628
- readonly alert: {
629
- readonly value: "#eb1616";
630
- readonly _dark: "#f98d8d";
631
- };
632
- readonly positive: {
633
- readonly value: "#188841";
634
- readonly _dark: "#4ade80";
635
- };
636
- readonly warning: {
637
- readonly value: "#c55405";
638
- readonly _dark: "#fb923c";
639
- };
640
- readonly primary: {
641
- readonly value: "#fff";
642
- readonly _dark: "#09090b";
643
- };
644
- readonly secondary: {
645
- readonly value: "#f4f4f5";
646
- readonly _dark: "#27272a";
647
- };
648
- readonly tertiary: {
649
- readonly value: "#fafafa";
650
- readonly _dark: "#18181b";
651
- };
652
- readonly inverse: {
653
- readonly value: "#18181b";
654
- readonly _dark: "#fafafa";
655
- };
656
- readonly 'brand-wash': {
657
- readonly value: "#eff6ff";
658
- readonly _dark: "#172554";
659
- };
660
- readonly 'accent-wash': {
661
- readonly value: "#fff1f2";
662
- readonly _dark: "#4c0519";
663
- };
664
- readonly 'alert-wash': {
665
- readonly value: "#fef2f2";
666
- readonly _dark: "#450a0a";
667
- };
668
- readonly 'positive-wash': {
669
- readonly value: "#f0fdf4";
670
- readonly _dark: "#052e16";
671
- };
672
- readonly 'warning-wash': {
673
- readonly value: "#fff7ed";
674
- readonly _dark: "#431407";
675
- };
676
- };
677
- readonly borderWidth: {
678
- readonly $type: "dimension";
679
- readonly none: {
680
- readonly value: "0px";
681
- };
682
- readonly thin: {
683
- readonly value: "1px";
684
- };
685
- readonly medium: {
686
- readonly value: "2px";
687
- };
688
- readonly thick: {
689
- readonly value: "4px";
690
- };
691
- };
692
- readonly outlineWidth: {
693
- readonly $type: "dimension";
694
- readonly 0: {
695
- readonly value: "0px";
696
- };
697
- readonly 1: {
698
- readonly value: "1px";
699
- };
700
- readonly 2: {
701
- readonly value: "2px";
702
- };
703
- readonly 4: {
704
- readonly value: "4px";
705
- };
706
- readonly 8: {
707
- readonly value: "8px";
708
- };
709
- };
710
- readonly outlineOffset: {
711
- readonly $type: "dimension";
712
- readonly 0: {
713
- readonly value: "0px";
714
- };
715
- readonly 1: {
716
- readonly value: "1px";
717
- };
718
- readonly 2: {
719
- readonly value: "2px";
720
- };
721
- readonly 4: {
722
- readonly value: "4px";
723
- };
724
- readonly 8: {
725
- readonly value: "8px";
726
- };
727
- };
728
- readonly divideWidth: {
729
- readonly $type: "dimension";
730
- readonly 0: {
731
- readonly value: "0px";
732
- };
733
- readonly 2: {
734
- readonly value: "2px";
735
- };
736
- readonly 4: {
737
- readonly value: "4px";
738
- };
739
- readonly 8: {
740
- readonly value: "8px";
741
- };
742
- readonly reverse: {
743
- readonly value: "reverse";
744
- readonly $type: "string";
745
- };
746
- };
747
- readonly ringWidth: {
748
- readonly $type: "dimension";
749
- readonly 0: {
750
- readonly value: "0px";
751
- };
752
- readonly 1: {
753
- readonly value: "1px";
754
- };
755
- readonly 2: {
756
- readonly value: "2px";
757
- };
758
- readonly 4: {
759
- readonly value: "4px";
760
- };
761
- readonly 8: {
762
- readonly value: "8px";
763
- };
764
- readonly inset: {
765
- readonly value: "inset";
766
- readonly $type: "string";
767
- };
768
- };
769
- readonly ringOffsetWidth: {
770
- readonly $type: "dimension";
771
- readonly 0: {
772
- readonly value: "0px";
773
- };
774
- readonly 1: {
775
- readonly value: "1px";
776
- };
777
- readonly 2: {
778
- readonly value: "2px";
779
- };
780
- readonly 4: {
781
- readonly value: "4px";
782
- };
783
- readonly 8: {
784
- readonly value: "8px";
785
- };
786
- };
787
- readonly fontWeight: {
788
- readonly $type: "fontWeight";
789
- readonly thin: {
790
- readonly value: "100";
791
- };
792
- readonly extralight: {
793
- readonly value: "200";
794
- };
795
- readonly light: {
796
- readonly value: "300";
797
- };
798
- readonly normal: {
799
- readonly value: "400";
800
- };
801
- readonly medium: {
802
- readonly value: "500";
803
- };
804
- readonly semibold: {
805
- readonly value: "600";
806
- };
807
- readonly bold: {
808
- readonly value: "700";
809
- };
810
- readonly extrabold: {
811
- readonly value: "800";
812
- };
813
- readonly black: {
814
- readonly value: "900";
815
- };
816
- };
817
- readonly lineHeight: {
818
- readonly $type: "number";
819
- readonly none: {
820
- readonly value: "1";
821
- };
822
- readonly tight: {
823
- readonly value: "1.25";
824
- };
825
- readonly normal: {
826
- readonly value: "1.5";
827
- };
828
- readonly relaxed: {
829
- readonly value: "1.75";
830
- };
831
- };
832
- readonly letterSpacing: {
833
- readonly $type: "dimension";
834
- readonly tighter: {
835
- readonly value: "-0.05em";
836
- };
837
- readonly tight: {
838
- readonly value: "-0.025em";
839
- };
840
- readonly normal: {
841
- readonly value: "0em";
842
- };
843
- readonly wide: {
844
- readonly value: "0.025em";
845
- };
846
- readonly wider: {
847
- readonly value: "0.05em";
848
- };
849
- readonly widest: {
850
- readonly value: "0.1em";
851
- };
852
- };
853
- readonly spacing: {
854
- readonly $type: "dimension";
855
- readonly px: {
856
- readonly value: "1px";
857
- };
858
- readonly 0: {
859
- readonly value: "0px";
860
- };
861
- readonly 0.5: {
862
- readonly value: "0.125rem";
863
- };
864
- readonly 1: {
865
- readonly value: "0.25rem";
866
- };
867
- readonly 1.5: {
868
- readonly value: "0.375rem";
869
- };
870
- readonly 2: {
871
- readonly value: "0.5rem";
872
- };
873
- readonly 2.5: {
874
- readonly value: "0.625rem";
875
- };
876
- readonly 3: {
877
- readonly value: "0.75rem";
878
- };
879
- readonly 3.5: {
880
- readonly value: "0.875rem";
881
- };
882
- readonly 4: {
883
- readonly value: "1rem";
884
- };
885
- readonly 5: {
886
- readonly value: "1.25rem";
887
- };
888
- readonly 6: {
889
- readonly value: "1.5rem";
890
- };
891
- readonly 7: {
892
- readonly value: "1.75rem";
893
- };
894
- readonly 8: {
895
- readonly value: "2rem";
896
- };
897
- readonly 9: {
898
- readonly value: "2.25rem";
899
- };
900
- readonly 10: {
901
- readonly value: "2.5rem";
902
- };
903
- readonly 11: {
904
- readonly value: "2.75rem";
905
- };
906
- readonly 12: {
907
- readonly value: "3rem";
908
- };
909
- readonly 14: {
910
- readonly value: "3.5rem";
911
- };
912
- readonly 16: {
913
- readonly value: "4rem";
914
- };
915
- readonly 20: {
916
- readonly value: "5rem";
917
- };
918
- readonly 24: {
919
- readonly value: "6rem";
920
- };
921
- readonly 28: {
922
- readonly value: "7rem";
923
- };
924
- readonly 32: {
925
- readonly value: "8rem";
926
- };
927
- readonly 36: {
928
- readonly value: "9rem";
929
- };
930
- readonly 40: {
931
- readonly value: "10rem";
932
- };
933
- readonly 44: {
934
- readonly value: "11rem";
935
- };
936
- readonly 48: {
937
- readonly value: "12rem";
938
- };
939
- readonly 52: {
940
- readonly value: "13rem";
941
- };
942
- readonly 56: {
943
- readonly value: "14rem";
944
- };
945
- readonly 60: {
946
- readonly value: "15rem";
947
- };
948
- readonly 64: {
949
- readonly value: "16rem";
950
- };
951
- readonly 72: {
952
- readonly value: "18rem";
953
- };
954
- readonly 80: {
955
- readonly value: "20rem";
956
- };
957
- readonly 96: {
958
- readonly value: "24rem";
959
- };
960
- };
961
- readonly position: {
962
- readonly $type: "dimension";
963
- readonly auto: {
964
- readonly value: "auto";
965
- readonly $type: "string";
966
- };
967
- readonly full: {
968
- readonly value: "100%";
969
- };
970
- readonly '1/2': {
971
- readonly value: "50%";
972
- };
973
- readonly '1/3': {
974
- readonly value: "33.333333%";
975
- };
976
- readonly '2/3': {
977
- readonly value: "66.666667%";
978
- };
979
- readonly '1/4': {
980
- readonly value: "25%";
981
- };
982
- readonly '2/4': {
983
- readonly value: "50%";
984
- };
985
- readonly '3/4': {
986
- readonly value: "75%";
987
- };
988
- };
989
- readonly aspectRatio: {
990
- readonly $type: "string";
991
- readonly square: {
992
- readonly value: "1 / 1";
993
- };
994
- readonly landscape: {
995
- readonly value: "4 / 3";
996
- };
997
- readonly portrait: {
998
- readonly value: "3 / 4";
999
- };
1000
- readonly widescreen: {
1001
- readonly value: "16 / 9";
1002
- };
1003
- readonly ultrawide: {
1004
- readonly value: "21 / 9";
1005
- };
1006
- readonly golden: {
1007
- readonly value: "1.618 / 1";
1008
- };
1009
- };
1010
- readonly flex: {
1011
- readonly $type: "string";
1012
- readonly 1: {
1013
- readonly value: "1 1 0%";
1014
- };
1015
- readonly auto: {
1016
- readonly value: "1 1 auto";
1017
- };
1018
- readonly initial: {
1019
- readonly value: "0 1 auto";
1020
- };
1021
- readonly none: {
1022
- readonly value: "none";
1023
- };
1024
- };
1025
- readonly flexGrow: {
1026
- readonly $type: "number";
1027
- readonly 0: {
1028
- readonly value: "0";
1029
- };
1030
- readonly 1: {
1031
- readonly value: "1";
1032
- };
1033
- };
1034
- readonly flexShrink: {
1035
- readonly $type: "number";
1036
- readonly 0: {
1037
- readonly value: "0";
1038
- };
1039
- };
1040
- readonly opacity: {
1041
- readonly $type: "number";
1042
- readonly 0: {
1043
- readonly value: "0";
1044
- };
1045
- readonly 5: {
1046
- readonly value: "5";
1047
- };
1048
- readonly 10: {
1049
- readonly value: "10";
1050
- };
1051
- readonly 20: {
1052
- readonly value: "20";
1053
- };
1054
- readonly 25: {
1055
- readonly value: "25";
1056
- };
1057
- readonly 30: {
1058
- readonly value: "30";
1059
- };
1060
- readonly 40: {
1061
- readonly value: "40";
1062
- };
1063
- readonly 50: {
1064
- readonly value: "50";
1065
- };
1066
- readonly 60: {
1067
- readonly value: "60";
1068
- };
1069
- readonly 70: {
1070
- readonly value: "70";
1071
- };
1072
- readonly 75: {
1073
- readonly value: "75";
1074
- };
1075
- readonly 80: {
1076
- readonly value: "80";
1077
- };
1078
- readonly 90: {
1079
- readonly value: "90";
1080
- };
1081
- readonly 95: {
1082
- readonly value: "95";
1083
- };
1084
- readonly 100: {
1085
- readonly value: "100";
1086
- };
1087
- };
1088
- readonly radius: {
1089
- readonly $type: "dimension";
1090
- readonly none: {
1091
- readonly value: "0px";
1092
- };
1093
- readonly xs: {
1094
- readonly value: "2px";
1095
- };
1096
- readonly sm: {
1097
- readonly value: "4px";
1098
- };
1099
- readonly md: {
1100
- readonly value: "6px";
1101
- };
1102
- readonly lg: {
1103
- readonly value: "16px";
1104
- };
1105
- readonly xl: {
1106
- readonly value: "32px";
1107
- };
1108
- readonly full: {
1109
- readonly value: "1e5px";
1110
- };
1111
- };
1112
- readonly animation: {
1113
- readonly $type: "string";
1114
- readonly none: {
1115
- readonly value: "none";
1116
- };
1117
- readonly spin: {
1118
- readonly value: "spin 1s linear infinite";
1119
- };
1120
- readonly ping: {
1121
- readonly value: "ping 1s cubic-bezier(0, 0, 0.2, 1) infinite";
1122
- };
1123
- };
1124
- readonly shadow: {
1125
- readonly $type: "string";
1126
- readonly '2xs': {
1127
- readonly value: "0 1px rgb(0 0 0 / 0.05)";
1128
- };
1129
- readonly xs: {
1130
- readonly value: "0 1px 2px 0 rgb(0 0 0 / 0.05)";
1131
- };
1132
- readonly sm: {
1133
- readonly value: "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)";
1134
- };
1135
- readonly md: {
1136
- readonly value: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)";
1137
- };
1138
- readonly lg: {
1139
- readonly value: "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)";
1140
- };
1141
- readonly xl: {
1142
- readonly value: "0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)";
1143
- };
1144
- readonly '2xl': {
1145
- readonly value: "0 25px 50px -12px rgb(0 0 0 / 0.25)";
1146
- };
1147
- readonly inner: {
1148
- readonly value: "inset 0 2px 4px 0 rgb(0 0 0 / 0.05)";
1149
- };
1150
- readonly none: {
1151
- readonly value: "none";
1152
- };
1153
- };
1154
- readonly blur: {
1155
- readonly $type: "string";
1156
- readonly none: {
1157
- readonly value: "blur(0)";
1158
- };
1159
- readonly sm: {
1160
- readonly value: "blur(4px)";
1161
- };
1162
- readonly md: {
1163
- readonly value: "blur(12px)";
1164
- };
1165
- readonly lg: {
1166
- readonly value: "blur(16px)";
1167
- };
1168
- readonly xl: {
1169
- readonly value: "blur(24px)";
1170
- };
1171
- readonly '2xl': {
1172
- readonly value: "blur(40px)";
1173
- };
1174
- readonly '3xl': {
1175
- readonly value: "blur(64px)";
1176
- };
1177
- };
1178
- readonly textShadow: {
1179
- readonly $type: "string";
1180
- readonly '2xs': {
1181
- readonly value: "0 1px 0 rgb(0 0 0 / 0.15)";
1182
- };
1183
- readonly xs: {
1184
- readonly value: "0 1px 1px rgb(0 0 0 / 0.2)";
1185
- };
1186
- readonly sm: {
1187
- readonly value: "0 1px 2px rgb(0 0 0 / 0.25)";
1188
- };
1189
- readonly md: {
1190
- readonly value: "0 2px 4px rgb(0 0 0 / 0.25)";
1191
- };
1192
- readonly lg: {
1193
- readonly value: "0 4px 8px rgb(0 0 0 / 0.25)";
1194
- };
1195
- readonly none: {
1196
- readonly value: "none";
1197
- };
1198
- };
1199
- readonly zIndex: {
1200
- readonly $type: "number";
1201
- readonly auto: {
1202
- readonly value: "auto";
1203
- readonly $type: "string";
1204
- };
1205
- readonly 0: {
1206
- readonly value: "0";
1207
- };
1208
- readonly 10: {
1209
- readonly value: "10";
1210
- };
1211
- readonly 20: {
1212
- readonly value: "20";
1213
- };
1214
- readonly 30: {
1215
- readonly value: "30";
1216
- };
1217
- readonly 40: {
1218
- readonly value: "40";
1219
- };
1220
- readonly 50: {
1221
- readonly value: "50";
1222
- };
1223
- };
1224
- readonly size: {
1225
- readonly $type: "dimension";
1226
- readonly auto: {
1227
- readonly value: "auto";
1228
- readonly $type: "string";
1229
- };
1230
- readonly full: {
1231
- readonly value: "100%";
1232
- };
1233
- readonly min: {
1234
- readonly value: "min-content";
1235
- readonly $type: "string";
1236
- };
1237
- readonly max: {
1238
- readonly value: "max-content";
1239
- readonly $type: "string";
1240
- };
1241
- readonly fit: {
1242
- readonly value: "fit-content";
1243
- readonly $type: "string";
1244
- };
1245
- readonly '1/2': {
1246
- readonly value: "50%";
1247
- };
1248
- readonly '1/3': {
1249
- readonly value: "33.333333%";
1250
- };
1251
- readonly '2/3': {
1252
- readonly value: "66.666667%";
1253
- };
1254
- readonly '1/4': {
1255
- readonly value: "25%";
1256
- };
1257
- readonly '2/4': {
1258
- readonly value: "50%";
1259
- };
1260
- readonly '3/4': {
1261
- readonly value: "75%";
1262
- };
1263
- readonly '1/5': {
1264
- readonly value: "20%";
1265
- };
1266
- readonly '2/5': {
1267
- readonly value: "40%";
1268
- };
1269
- readonly '3/5': {
1270
- readonly value: "60%";
1271
- };
1272
- readonly '4/5': {
1273
- readonly value: "80%";
1274
- };
1275
- readonly '1/6': {
1276
- readonly value: "16.666667%";
1277
- };
1278
- readonly '2/6': {
1279
- readonly value: "33.333333%";
1280
- };
1281
- readonly '3/6': {
1282
- readonly value: "50%";
1283
- };
1284
- readonly '4/6': {
1285
- readonly value: "66.666667%";
1286
- };
1287
- readonly '5/6': {
1288
- readonly value: "83.333333%";
1289
- };
1290
- };
1291
- readonly w: {
1292
- readonly $type: "dimension";
1293
- readonly screen: {
1294
- readonly value: "100vw";
1295
- };
1296
- readonly svw: {
1297
- readonly value: "100svw";
1298
- };
1299
- readonly lvw: {
1300
- readonly value: "100lvw";
1301
- };
1302
- readonly dvw: {
1303
- readonly value: "100dvw";
1304
- };
1305
- };
1306
- readonly h: {
1307
- readonly $type: "dimension";
1308
- readonly screen: {
1309
- readonly value: "100vh";
1310
- };
1311
- readonly svh: {
1312
- readonly value: "100svh";
1313
- };
1314
- readonly lvh: {
1315
- readonly value: "100lvh";
1316
- };
1317
- readonly dvh: {
1318
- readonly value: "100dvh";
1319
- };
1320
- };
1321
- readonly rotate: {
1322
- readonly $type: "dimension";
1323
- readonly 0: {
1324
- readonly value: "0deg";
1325
- };
1326
- readonly 1: {
1327
- readonly value: "1deg";
1328
- };
1329
- readonly 2: {
1330
- readonly value: "2deg";
1331
- };
1332
- readonly 3: {
1333
- readonly value: "3deg";
1334
- };
1335
- readonly 6: {
1336
- readonly value: "6deg";
1337
- };
1338
- readonly 12: {
1339
- readonly value: "12deg";
1340
- };
1341
- readonly 45: {
1342
- readonly value: "45deg";
1343
- };
1344
- readonly 90: {
1345
- readonly value: "90deg";
1346
- };
1347
- readonly 180: {
1348
- readonly value: "180deg";
1349
- };
1350
- };
1351
- readonly scale: {
1352
- readonly $type: "number";
1353
- readonly 0: {
1354
- readonly value: "0";
1355
- };
1356
- readonly 50: {
1357
- readonly value: ".5";
1358
- };
1359
- readonly 75: {
1360
- readonly value: ".75";
1361
- };
1362
- readonly 90: {
1363
- readonly value: ".9";
1364
- };
1365
- readonly 95: {
1366
- readonly value: ".95";
1367
- };
1368
- readonly 100: {
1369
- readonly value: "1";
1370
- };
1371
- readonly 105: {
1372
- readonly value: "1.05";
1373
- };
1374
- readonly 110: {
1375
- readonly value: "1.1";
1376
- };
1377
- readonly 125: {
1378
- readonly value: "1.25";
1379
- };
1380
- readonly 150: {
1381
- readonly value: "1.5";
1382
- };
1383
- readonly 200: {
1384
- readonly value: "2";
1385
- };
1386
- };
1387
- readonly skew: {
1388
- readonly $type: "dimension";
1389
- readonly 0: {
1390
- readonly value: "0deg";
1391
- };
1392
- readonly 1: {
1393
- readonly value: "1deg";
1394
- };
1395
- readonly 2: {
1396
- readonly value: "2deg";
1397
- };
1398
- readonly 3: {
1399
- readonly value: "3deg";
1400
- };
1401
- readonly 6: {
1402
- readonly value: "6deg";
1403
- };
1404
- readonly 12: {
1405
- readonly value: "12deg";
1406
- };
1407
- };
1408
- readonly translate: {
1409
- readonly $type: "dimension";
1410
- readonly 0: {
1411
- readonly value: "0px";
1412
- };
1413
- readonly 0.5: {
1414
- readonly value: "0.125rem";
1415
- };
1416
- readonly 1: {
1417
- readonly value: "0.25rem";
1418
- };
1419
- readonly 1.5: {
1420
- readonly value: "0.375rem";
1421
- };
1422
- readonly 2: {
1423
- readonly value: "0.5rem";
1424
- };
1425
- readonly 2.5: {
1426
- readonly value: "0.625rem";
1427
- };
1428
- readonly 3: {
1429
- readonly value: "0.75rem";
1430
- };
1431
- readonly 3.5: {
1432
- readonly value: "0.875rem";
1433
- };
1434
- readonly 4: {
1435
- readonly value: "1rem";
1436
- };
1437
- readonly 5: {
1438
- readonly value: "1.25rem";
1439
- };
1440
- readonly 6: {
1441
- readonly value: "1.5rem";
1442
- };
1443
- readonly 7: {
1444
- readonly value: "1.75rem";
1445
- };
1446
- readonly 8: {
1447
- readonly value: "2rem";
1448
- };
1449
- readonly 9: {
1450
- readonly value: "2.25rem";
1451
- };
1452
- readonly 10: {
1453
- readonly value: "2.5rem";
1454
- };
1455
- readonly 11: {
1456
- readonly value: "2.75rem";
1457
- };
1458
- readonly 12: {
1459
- readonly value: "3rem";
1460
- };
1461
- readonly 14: {
1462
- readonly value: "3.5rem";
1463
- };
1464
- readonly 16: {
1465
- readonly value: "4rem";
1466
- };
1467
- readonly 20: {
1468
- readonly value: "5rem";
1469
- };
1470
- readonly 24: {
1471
- readonly value: "6rem";
1472
- };
1473
- readonly 28: {
1474
- readonly value: "7rem";
1475
- };
1476
- readonly 32: {
1477
- readonly value: "8rem";
1478
- };
1479
- readonly 36: {
1480
- readonly value: "9rem";
1481
- };
1482
- readonly 40: {
1483
- readonly value: "10rem";
1484
- };
1485
- readonly 44: {
1486
- readonly value: "11rem";
1487
- };
1488
- readonly 48: {
1489
- readonly value: "12rem";
1490
- };
1491
- readonly 52: {
1492
- readonly value: "13rem";
1493
- };
1494
- readonly 56: {
1495
- readonly value: "14rem";
1496
- };
1497
- readonly 60: {
1498
- readonly value: "15rem";
1499
- };
1500
- readonly 64: {
1501
- readonly value: "16rem";
1502
- };
1503
- readonly 72: {
1504
- readonly value: "18rem";
1505
- };
1506
- readonly 80: {
1507
- readonly value: "20rem";
1508
- };
1509
- readonly 96: {
1510
- readonly value: "24rem";
1511
- };
1512
- readonly '1/2': {
1513
- readonly value: "50%";
1514
- };
1515
- readonly '1/3': {
1516
- readonly value: "33.333333%";
1517
- };
1518
- readonly '2/3': {
1519
- readonly value: "66.666667%";
1520
- };
1521
- readonly '1/4': {
1522
- readonly value: "25%";
1523
- };
1524
- readonly '3/4': {
1525
- readonly value: "75%";
1526
- };
1527
- readonly full: {
1528
- readonly value: "100%";
1529
- };
1530
- };
1531
- readonly strokeWidth: {
1532
- readonly $type: "dimension";
1533
- readonly 0: {
1534
- readonly value: "0px";
1535
- };
1536
- readonly 1: {
1537
- readonly value: "1px";
1538
- };
1539
- readonly 2: {
1540
- readonly value: "2px";
1541
- };
1542
- };
1543
- readonly fontFamily: {
1544
- readonly $type: "fontFamily";
1545
- readonly sans: {
1546
- readonly value: "var(--uds-font-family-geist, ui-sans-serif, system-ui, sans-serif)";
1547
- };
1548
- readonly serif: {
1549
- readonly value: "Georgia, Times, Times New Roman, serif";
1550
- };
1551
- readonly mono: {
1552
- readonly value: "var(--uds-font-family-geist-mono, Menlo, Monaco, Courier New, monospace)";
1553
- };
1554
- };
1555
- }>;
1556
- //#endregion
1557
- export { defaultFoundationPreset };