@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,1825 +0,0 @@
1
- import { ComponentConfig } from "../../config/dist/createConfig.js";
2
- import * as _$react from "react";
3
- import * as _$react_jsx_runtime0 from "react/jsx-runtime";
4
- import * as _$_uds_types0 from "@uds/types";
5
-
6
- //#region ../components/dist/sidebar.d.ts
7
- interface SidebarContextValue {
8
- state: 'expanded' | 'collapsed';
9
- open: boolean;
10
- setOpen: (open: boolean) => void;
11
- openMobile: boolean;
12
- setOpenMobile: (open: boolean) => void;
13
- isMobile: boolean;
14
- toggleSidebar: () => void;
15
- }
16
- interface SidebarProviderProps {
17
- defaultOpen?: boolean;
18
- open?: boolean;
19
- onOpenChange?: (open: boolean) => void;
20
- }
21
- declare const SidebarProvider: _$react.FC<{
22
- children: React.ReactNode;
23
- } & SidebarProviderProps>, useSidebar: () => SidebarContextValue;
24
- declare function SidebarTrigger({
25
- className,
26
- children
27
- }: {
28
- className?: string;
29
- children?: React.ReactNode;
30
- }): _$react_jsx_runtime0.JSX.Element;
31
- declare function SidebarInset({
32
- className,
33
- children
34
- }: {
35
- className?: string;
36
- children: React.ReactNode;
37
- }): _$react_jsx_runtime0.JSX.Element;
38
- declare function SidebarHeader({
39
- className,
40
- children
41
- }: {
42
- className?: string;
43
- children?: React.ReactNode;
44
- }): _$react_jsx_runtime0.JSX.Element;
45
- declare function SidebarContent({
46
- className,
47
- children
48
- }: {
49
- className?: string;
50
- children?: React.ReactNode;
51
- }): _$react_jsx_runtime0.JSX.Element;
52
- declare function SidebarFooter({
53
- className,
54
- children
55
- }: {
56
- className?: string;
57
- children?: React.ReactNode;
58
- }): _$react_jsx_runtime0.JSX.Element;
59
- declare function SidebarGroup({
60
- className,
61
- children,
62
- label,
63
- action,
64
- collapsible,
65
- defaultOpen
66
- }: {
67
- className?: string;
68
- children?: React.ReactNode;
69
- label?: string;
70
- action?: React.ReactNode;
71
- collapsible?: boolean;
72
- defaultOpen?: boolean;
73
- }): _$react_jsx_runtime0.JSX.Element;
74
- declare function SidebarGroupAction({
75
- className,
76
- children,
77
- onClick,
78
- 'aria-label': ariaLabel
79
- }: {
80
- className?: string;
81
- children: React.ReactNode;
82
- onClick?: () => void;
83
- 'aria-label': string;
84
- }): _$react_jsx_runtime0.JSX.Element;
85
- declare function SidebarMenu({
86
- className,
87
- children
88
- }: {
89
- className?: string;
90
- children?: React.ReactNode;
91
- }): _$react_jsx_runtime0.JSX.Element;
92
- declare function SidebarMenuItem({
93
- className,
94
- children
95
- }: {
96
- className?: string;
97
- children?: React.ReactNode;
98
- }): _$react_jsx_runtime0.JSX.Element;
99
- declare function SidebarMenuButton({
100
- className,
101
- children,
102
- href,
103
- onClick,
104
- isActive
105
- }: {
106
- className?: string;
107
- children?: React.ReactNode;
108
- href?: string;
109
- onClick?: () => void;
110
- isActive?: boolean;
111
- }): _$react_jsx_runtime0.JSX.Element;
112
- declare function SidebarMenuAction({
113
- className,
114
- children,
115
- onClick,
116
- 'aria-label': ariaLabel
117
- }: {
118
- className?: string;
119
- children: React.ReactNode;
120
- onClick?: () => void;
121
- 'aria-label': string;
122
- }): _$react_jsx_runtime0.JSX.Element;
123
- declare function SidebarMenuBadge({
124
- className,
125
- children
126
- }: {
127
- className?: string;
128
- children: React.ReactNode;
129
- }): _$react_jsx_runtime0.JSX.Element;
130
- declare function SidebarMenuSub({
131
- className,
132
- children
133
- }: {
134
- className?: string;
135
- children?: React.ReactNode;
136
- }): _$react_jsx_runtime0.JSX.Element;
137
- declare function SidebarMenuSubItem({
138
- className,
139
- children
140
- }: {
141
- className?: string;
142
- children?: React.ReactNode;
143
- }): _$react_jsx_runtime0.JSX.Element;
144
- declare function SidebarMenuSubButton({
145
- className,
146
- children,
147
- href,
148
- onClick,
149
- isActive
150
- }: {
151
- className?: string;
152
- children?: React.ReactNode;
153
- href?: string;
154
- onClick?: () => void;
155
- isActive?: boolean;
156
- }): _$react_jsx_runtime0.JSX.Element;
157
- declare function SidebarSkeleton({
158
- count
159
- }: {
160
- count?: number;
161
- }): _$react_jsx_runtime0.JSX.Element;
162
- interface SidebarOwnProps {
163
- collapsible?: 'offcanvas' | 'icon' | 'none';
164
- children?: React.ReactNode;
165
- }
166
- interface SidebarElements {
167
- root: 'aside';
168
- header: 'div';
169
- content: 'div';
170
- footer: 'div';
171
- overlay: 'button';
172
- rail: 'button';
173
- }
174
- /**
175
- * @description A collapsible side navigation panel composed from sub-components
176
- */
177
- declare const Sidebar: _$react.FC<_$_uds_types0.CreateComponentProps<ComponentConfig<{
178
- Sidebar: {
179
- readonly base: {
180
- readonly root: {
181
- readonly backgroundColor: string;
182
- readonly borderRightWidth: string;
183
- readonly borderColor: string;
184
- readonly fontFamily: string;
185
- readonly height: "100%";
186
- };
187
- readonly header: {
188
- readonly borderBottomWidth: string;
189
- readonly borderColor: string;
190
- };
191
- readonly content: {
192
- readonly display: "flex";
193
- readonly flexDirection: "column";
194
- readonly gap: string;
195
- readonly padding: string;
196
- };
197
- readonly footer: {
198
- readonly borderTopWidth: string;
199
- readonly borderColor: string;
200
- };
201
- readonly group: {
202
- readonly display: "flex";
203
- readonly flexDirection: "column";
204
- readonly gap: string;
205
- };
206
- readonly groupLabel: {
207
- readonly fontSize: "0.6875rem";
208
- readonly color: string;
209
- readonly padding: `${string} ${string}`;
210
- readonly letterSpacing: string;
211
- readonly textTransform: "uppercase";
212
- readonly fontWeight: string;
213
- readonly lineHeight: "1";
214
- readonly fontFamily: string;
215
- } | {
216
- readonly fontSize: "0.6875rem";
217
- readonly color: string;
218
- readonly padding: `${string} ${string}`;
219
- readonly letterSpacing: string;
220
- readonly textTransform: "uppercase";
221
- readonly fontWeight: string;
222
- readonly lineHeight: string;
223
- readonly fontFamily: string;
224
- } | {
225
- readonly fontSize: "0.6875rem";
226
- readonly color: string;
227
- readonly padding: `${string} ${string}`;
228
- readonly letterSpacing: string;
229
- readonly textTransform: "uppercase";
230
- readonly fontWeight: string;
231
- readonly lineHeight: string;
232
- readonly fontFamily: string;
233
- } | {
234
- readonly fontSize: "0.6875rem";
235
- readonly color: string;
236
- readonly padding: `${string} ${string}`;
237
- readonly letterSpacing: string;
238
- readonly textTransform: "uppercase";
239
- readonly fontWeight: string;
240
- readonly lineHeight: string;
241
- readonly fontFamily: string;
242
- } | {
243
- readonly fontSize: "0.6875rem";
244
- readonly color: string;
245
- readonly padding: `${string} ${string}`;
246
- readonly letterSpacing: string;
247
- readonly textTransform: "uppercase";
248
- readonly fontWeight: string;
249
- readonly lineHeight: string;
250
- readonly fontFamily: string;
251
- } | {
252
- readonly fontSize: "0.6875rem";
253
- readonly color: string;
254
- readonly padding: `${string} ${string}`;
255
- readonly letterSpacing: string;
256
- readonly textTransform: "uppercase";
257
- readonly fontWeight: "450";
258
- readonly lineHeight: string;
259
- readonly fontFamily: string;
260
- } | {
261
- readonly fontSize: "0.6875rem";
262
- readonly color: string;
263
- readonly padding: `${string} ${string}`;
264
- readonly letterSpacing: string;
265
- readonly textTransform: "uppercase";
266
- readonly fontWeight: string;
267
- readonly lineHeight: string;
268
- readonly fontFamily: string;
269
- } | {
270
- readonly fontSize: "0.6875rem";
271
- readonly color: string;
272
- readonly padding: `${string} ${string}`;
273
- readonly letterSpacing: string;
274
- readonly textTransform: "uppercase";
275
- readonly fontWeight: string;
276
- readonly lineHeight: string;
277
- readonly fontFamily: string;
278
- } | {
279
- readonly fontSize: "0.6875rem";
280
- readonly color: string;
281
- readonly padding: `${string} ${string}`;
282
- readonly letterSpacing: string;
283
- readonly textTransform: "uppercase";
284
- readonly fontWeight: "450";
285
- readonly lineHeight: string;
286
- readonly fontFamily: string;
287
- } | {
288
- readonly fontSize: "0.6875rem";
289
- readonly color: string;
290
- readonly padding: `${string} ${string}`;
291
- readonly letterSpacing: string;
292
- readonly textTransform: "uppercase";
293
- readonly fontWeight: string;
294
- readonly lineHeight: string;
295
- readonly fontFamily: string;
296
- } | {
297
- readonly fontSize: "0.6875rem";
298
- readonly color: string;
299
- readonly padding: `${string} ${string}`;
300
- readonly letterSpacing: string;
301
- readonly textTransform: "uppercase";
302
- readonly fontWeight: "450";
303
- readonly lineHeight: string;
304
- readonly fontFamily: string;
305
- } | {
306
- readonly fontSize: "0.6875rem";
307
- readonly color: string;
308
- readonly padding: `${string} ${string}`;
309
- readonly letterSpacing: string;
310
- readonly textTransform: "uppercase";
311
- readonly fontWeight: string;
312
- readonly lineHeight: string;
313
- readonly fontFamily: string;
314
- } | {
315
- readonly fontSize: "0.6875rem";
316
- readonly color: string;
317
- readonly padding: `${string} ${string}`;
318
- readonly letterSpacing: string;
319
- readonly textTransform: "uppercase";
320
- readonly fontWeight: string;
321
- readonly lineHeight: string;
322
- readonly fontFamily: string;
323
- } | {
324
- readonly fontSize: "0.6875rem";
325
- readonly color: string;
326
- readonly padding: `${string} ${string}`;
327
- readonly letterSpacing: string;
328
- readonly textTransform: "uppercase";
329
- readonly fontWeight: string;
330
- readonly lineHeight: string;
331
- readonly fontFamily: string;
332
- } | {
333
- readonly fontSize: "0.6875rem";
334
- readonly color: string;
335
- readonly padding: `${string} ${string}`;
336
- readonly letterSpacing: string;
337
- readonly textTransform: "uppercase";
338
- readonly fontWeight: string;
339
- readonly lineHeight: string;
340
- readonly fontFamily: string;
341
- } | {
342
- readonly fontSize: "0.6875rem";
343
- readonly color: string;
344
- readonly padding: `${string} ${string}`;
345
- readonly letterSpacing: string;
346
- readonly textTransform: "uppercase";
347
- readonly fontWeight: string;
348
- readonly lineHeight: string;
349
- readonly fontFamily: string;
350
- } | {
351
- readonly fontSize: "0.6875rem";
352
- readonly color: string;
353
- readonly padding: `${string} ${string}`;
354
- readonly letterSpacing: string;
355
- readonly textTransform: "uppercase";
356
- readonly fontWeight: string;
357
- readonly lineHeight: string;
358
- readonly fontFamily: string;
359
- } | {
360
- readonly fontSize: "0.6875rem";
361
- readonly color: string;
362
- readonly padding: `${string} ${string}`;
363
- readonly letterSpacing: string;
364
- readonly textTransform: "uppercase";
365
- readonly fontWeight: string;
366
- readonly lineHeight: string;
367
- readonly fontFamily: string;
368
- } | {
369
- readonly fontSize: "0.6875rem";
370
- readonly color: string;
371
- readonly padding: `${string} ${string}`;
372
- readonly letterSpacing: string;
373
- readonly textTransform: "uppercase";
374
- readonly fontWeight: string;
375
- readonly lineHeight: string;
376
- readonly fontFamily: string;
377
- } | {
378
- readonly fontSize: "0.6875rem";
379
- readonly color: string;
380
- readonly padding: `${string} ${string}`;
381
- readonly letterSpacing: string;
382
- readonly textTransform: "uppercase";
383
- readonly fontWeight: string;
384
- readonly lineHeight: string;
385
- readonly fontFamily: string;
386
- } | {
387
- readonly fontSize: "0.6875rem";
388
- readonly color: string;
389
- readonly padding: `${string} ${string}`;
390
- readonly letterSpacing: string;
391
- readonly textTransform: "uppercase";
392
- readonly fontWeight: string;
393
- readonly lineHeight: string;
394
- readonly fontFamily: string;
395
- } | {
396
- readonly fontSize: "0.6875rem";
397
- readonly color: string;
398
- readonly padding: `${string} ${string}`;
399
- readonly letterSpacing: string;
400
- readonly textTransform: "uppercase";
401
- readonly fontWeight: string;
402
- readonly lineHeight: string;
403
- readonly fontFamily: string;
404
- };
405
- readonly groupAction: {
406
- readonly display: "flex";
407
- readonly alignItems: "center";
408
- readonly justifyContent: "center";
409
- readonly width: "1.5rem";
410
- readonly height: "1.5rem";
411
- readonly borderRadius: string;
412
- readonly cursor: "pointer";
413
- readonly color: string;
414
- readonly backgroundColor: "transparent";
415
- readonly borderWidth: "0";
416
- readonly _hover: {
417
- readonly backgroundColor: string;
418
- };
419
- };
420
- readonly menu: {
421
- readonly listStyleType: "none";
422
- readonly padding: "0";
423
- readonly margin: "0";
424
- readonly display: "flex";
425
- readonly flexDirection: "column";
426
- readonly gap: string;
427
- };
428
- readonly menuItem: {
429
- readonly position: "relative";
430
- };
431
- readonly menuButton: {
432
- readonly fontSize: "0.8125rem";
433
- readonly display: "flex";
434
- readonly flexDirection: "row";
435
- readonly flexWrap: "nowrap";
436
- readonly alignItems: "center";
437
- readonly gap: string;
438
- readonly width: "100%";
439
- readonly padding: `${string} ${string}`;
440
- readonly borderRadius: string;
441
- readonly color: string;
442
- readonly backgroundColor: "transparent";
443
- readonly borderWidth: "0";
444
- readonly cursor: "pointer";
445
- readonly transition: "color 180ms ease, background-color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
446
- readonly _hover: {
447
- readonly backgroundColor: string;
448
- readonly color: string;
449
- };
450
- readonly _ariaCurrent: {
451
- readonly backgroundColor: string;
452
- readonly color: string;
453
- readonly fontWeight: string;
454
- };
455
- readonly fontWeight: string;
456
- readonly lineHeight: "1";
457
- readonly fontFamily: string;
458
- } | {
459
- readonly fontSize: "0.8125rem";
460
- readonly display: "flex";
461
- readonly flexDirection: "row";
462
- readonly flexWrap: "nowrap";
463
- readonly alignItems: "center";
464
- readonly gap: string;
465
- readonly width: "100%";
466
- readonly padding: `${string} ${string}`;
467
- readonly borderRadius: string;
468
- readonly color: string;
469
- readonly backgroundColor: "transparent";
470
- readonly borderWidth: "0";
471
- readonly cursor: "pointer";
472
- readonly transition: "color 180ms ease, background-color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
473
- readonly _hover: {
474
- readonly backgroundColor: string;
475
- readonly color: string;
476
- };
477
- readonly _ariaCurrent: {
478
- readonly backgroundColor: string;
479
- readonly color: string;
480
- readonly fontWeight: string;
481
- };
482
- readonly fontWeight: string;
483
- readonly lineHeight: string;
484
- readonly fontFamily: string;
485
- } | {
486
- readonly fontSize: "0.8125rem";
487
- readonly display: "flex";
488
- readonly flexDirection: "row";
489
- readonly flexWrap: "nowrap";
490
- readonly alignItems: "center";
491
- readonly gap: string;
492
- readonly width: "100%";
493
- readonly padding: `${string} ${string}`;
494
- readonly borderRadius: string;
495
- readonly color: string;
496
- readonly backgroundColor: "transparent";
497
- readonly borderWidth: "0";
498
- readonly cursor: "pointer";
499
- readonly transition: "color 180ms ease, background-color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
500
- readonly _hover: {
501
- readonly backgroundColor: string;
502
- readonly color: string;
503
- };
504
- readonly _ariaCurrent: {
505
- readonly backgroundColor: string;
506
- readonly color: string;
507
- readonly fontWeight: string;
508
- };
509
- readonly fontWeight: string;
510
- readonly lineHeight: string;
511
- readonly fontFamily: string;
512
- } | {
513
- readonly fontSize: "0.8125rem";
514
- readonly display: "flex";
515
- readonly flexDirection: "row";
516
- readonly flexWrap: "nowrap";
517
- readonly alignItems: "center";
518
- readonly gap: string;
519
- readonly width: "100%";
520
- readonly padding: `${string} ${string}`;
521
- readonly borderRadius: string;
522
- readonly color: string;
523
- readonly backgroundColor: "transparent";
524
- readonly borderWidth: "0";
525
- readonly cursor: "pointer";
526
- readonly transition: "color 180ms ease, background-color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
527
- readonly _hover: {
528
- readonly backgroundColor: string;
529
- readonly color: string;
530
- };
531
- readonly _ariaCurrent: {
532
- readonly backgroundColor: string;
533
- readonly color: string;
534
- readonly fontWeight: string;
535
- };
536
- readonly fontWeight: string;
537
- readonly lineHeight: string;
538
- readonly fontFamily: string;
539
- } | {
540
- readonly fontSize: "0.8125rem";
541
- readonly display: "flex";
542
- readonly flexDirection: "row";
543
- readonly flexWrap: "nowrap";
544
- readonly alignItems: "center";
545
- readonly gap: string;
546
- readonly width: "100%";
547
- readonly padding: `${string} ${string}`;
548
- readonly borderRadius: string;
549
- readonly color: string;
550
- readonly backgroundColor: "transparent";
551
- readonly borderWidth: "0";
552
- readonly cursor: "pointer";
553
- readonly transition: "color 180ms ease, background-color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
554
- readonly _hover: {
555
- readonly backgroundColor: string;
556
- readonly color: string;
557
- };
558
- readonly _ariaCurrent: {
559
- readonly backgroundColor: string;
560
- readonly color: string;
561
- readonly fontWeight: string;
562
- };
563
- readonly fontWeight: string;
564
- readonly lineHeight: string;
565
- readonly fontFamily: string;
566
- } | {
567
- readonly fontSize: "0.8125rem";
568
- readonly display: "flex";
569
- readonly flexDirection: "row";
570
- readonly flexWrap: "nowrap";
571
- readonly alignItems: "center";
572
- readonly gap: string;
573
- readonly width: "100%";
574
- readonly padding: `${string} ${string}`;
575
- readonly borderRadius: string;
576
- readonly color: string;
577
- readonly backgroundColor: "transparent";
578
- readonly borderWidth: "0";
579
- readonly cursor: "pointer";
580
- readonly transition: "color 180ms ease, background-color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
581
- readonly _hover: {
582
- readonly backgroundColor: string;
583
- readonly color: string;
584
- };
585
- readonly _ariaCurrent: {
586
- readonly backgroundColor: string;
587
- readonly color: string;
588
- readonly fontWeight: string;
589
- };
590
- readonly fontWeight: "450";
591
- readonly lineHeight: string;
592
- readonly fontFamily: string;
593
- } | {
594
- readonly fontSize: "0.8125rem";
595
- readonly display: "flex";
596
- readonly flexDirection: "row";
597
- readonly flexWrap: "nowrap";
598
- readonly alignItems: "center";
599
- readonly gap: string;
600
- readonly width: "100%";
601
- readonly padding: `${string} ${string}`;
602
- readonly borderRadius: string;
603
- readonly color: string;
604
- readonly backgroundColor: "transparent";
605
- readonly borderWidth: "0";
606
- readonly cursor: "pointer";
607
- readonly transition: "color 180ms ease, background-color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
608
- readonly _hover: {
609
- readonly backgroundColor: string;
610
- readonly color: string;
611
- };
612
- readonly _ariaCurrent: {
613
- readonly backgroundColor: string;
614
- readonly color: string;
615
- readonly fontWeight: string;
616
- };
617
- readonly fontWeight: string;
618
- readonly lineHeight: string;
619
- readonly fontFamily: string;
620
- } | {
621
- readonly fontSize: "0.8125rem";
622
- readonly display: "flex";
623
- readonly flexDirection: "row";
624
- readonly flexWrap: "nowrap";
625
- readonly alignItems: "center";
626
- readonly gap: string;
627
- readonly width: "100%";
628
- readonly padding: `${string} ${string}`;
629
- readonly borderRadius: string;
630
- readonly color: string;
631
- readonly backgroundColor: "transparent";
632
- readonly borderWidth: "0";
633
- readonly cursor: "pointer";
634
- readonly transition: "color 180ms ease, background-color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
635
- readonly _hover: {
636
- readonly backgroundColor: string;
637
- readonly color: string;
638
- };
639
- readonly _ariaCurrent: {
640
- readonly backgroundColor: string;
641
- readonly color: string;
642
- readonly fontWeight: string;
643
- };
644
- readonly fontWeight: string;
645
- readonly lineHeight: string;
646
- readonly fontFamily: string;
647
- } | {
648
- readonly fontSize: "0.8125rem";
649
- readonly display: "flex";
650
- readonly flexDirection: "row";
651
- readonly flexWrap: "nowrap";
652
- readonly alignItems: "center";
653
- readonly gap: string;
654
- readonly width: "100%";
655
- readonly padding: `${string} ${string}`;
656
- readonly borderRadius: string;
657
- readonly color: string;
658
- readonly backgroundColor: "transparent";
659
- readonly borderWidth: "0";
660
- readonly cursor: "pointer";
661
- readonly transition: "color 180ms ease, background-color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
662
- readonly _hover: {
663
- readonly backgroundColor: string;
664
- readonly color: string;
665
- };
666
- readonly _ariaCurrent: {
667
- readonly backgroundColor: string;
668
- readonly color: string;
669
- readonly fontWeight: string;
670
- };
671
- readonly fontWeight: "450";
672
- readonly lineHeight: string;
673
- readonly fontFamily: string;
674
- } | {
675
- readonly fontSize: "0.8125rem";
676
- readonly display: "flex";
677
- readonly flexDirection: "row";
678
- readonly flexWrap: "nowrap";
679
- readonly alignItems: "center";
680
- readonly gap: string;
681
- readonly width: "100%";
682
- readonly padding: `${string} ${string}`;
683
- readonly borderRadius: string;
684
- readonly color: string;
685
- readonly backgroundColor: "transparent";
686
- readonly borderWidth: "0";
687
- readonly cursor: "pointer";
688
- readonly transition: "color 180ms ease, background-color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
689
- readonly _hover: {
690
- readonly backgroundColor: string;
691
- readonly color: string;
692
- };
693
- readonly _ariaCurrent: {
694
- readonly backgroundColor: string;
695
- readonly color: string;
696
- readonly fontWeight: string;
697
- };
698
- readonly fontWeight: string;
699
- readonly lineHeight: string;
700
- readonly fontFamily: string;
701
- } | {
702
- readonly fontSize: "0.8125rem";
703
- readonly display: "flex";
704
- readonly flexDirection: "row";
705
- readonly flexWrap: "nowrap";
706
- readonly alignItems: "center";
707
- readonly gap: string;
708
- readonly width: "100%";
709
- readonly padding: `${string} ${string}`;
710
- readonly borderRadius: string;
711
- readonly color: string;
712
- readonly backgroundColor: "transparent";
713
- readonly borderWidth: "0";
714
- readonly cursor: "pointer";
715
- readonly transition: "color 180ms ease, background-color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
716
- readonly _hover: {
717
- readonly backgroundColor: string;
718
- readonly color: string;
719
- };
720
- readonly _ariaCurrent: {
721
- readonly backgroundColor: string;
722
- readonly color: string;
723
- readonly fontWeight: string;
724
- };
725
- readonly fontWeight: "450";
726
- readonly lineHeight: string;
727
- readonly fontFamily: string;
728
- } | {
729
- readonly fontSize: "0.8125rem";
730
- readonly display: "flex";
731
- readonly flexDirection: "row";
732
- readonly flexWrap: "nowrap";
733
- readonly alignItems: "center";
734
- readonly gap: string;
735
- readonly width: "100%";
736
- readonly padding: `${string} ${string}`;
737
- readonly borderRadius: string;
738
- readonly color: string;
739
- readonly backgroundColor: "transparent";
740
- readonly borderWidth: "0";
741
- readonly cursor: "pointer";
742
- readonly transition: "color 180ms ease, background-color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
743
- readonly _hover: {
744
- readonly backgroundColor: string;
745
- readonly color: string;
746
- };
747
- readonly _ariaCurrent: {
748
- readonly backgroundColor: string;
749
- readonly color: string;
750
- readonly fontWeight: string;
751
- };
752
- readonly fontWeight: string;
753
- readonly lineHeight: string;
754
- readonly fontFamily: string;
755
- } | {
756
- readonly fontSize: "0.8125rem";
757
- readonly display: "flex";
758
- readonly flexDirection: "row";
759
- readonly flexWrap: "nowrap";
760
- readonly alignItems: "center";
761
- readonly gap: string;
762
- readonly width: "100%";
763
- readonly padding: `${string} ${string}`;
764
- readonly borderRadius: string;
765
- readonly color: string;
766
- readonly backgroundColor: "transparent";
767
- readonly borderWidth: "0";
768
- readonly cursor: "pointer";
769
- readonly transition: "color 180ms ease, background-color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
770
- readonly _hover: {
771
- readonly backgroundColor: string;
772
- readonly color: string;
773
- };
774
- readonly _ariaCurrent: {
775
- readonly backgroundColor: string;
776
- readonly color: string;
777
- readonly fontWeight: string;
778
- };
779
- readonly fontWeight: string;
780
- readonly lineHeight: string;
781
- readonly fontFamily: string;
782
- } | {
783
- readonly fontSize: "0.8125rem";
784
- readonly display: "flex";
785
- readonly flexDirection: "row";
786
- readonly flexWrap: "nowrap";
787
- readonly alignItems: "center";
788
- readonly gap: string;
789
- readonly width: "100%";
790
- readonly padding: `${string} ${string}`;
791
- readonly borderRadius: string;
792
- readonly color: string;
793
- readonly backgroundColor: "transparent";
794
- readonly borderWidth: "0";
795
- readonly cursor: "pointer";
796
- readonly transition: "color 180ms ease, background-color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
797
- readonly _hover: {
798
- readonly backgroundColor: string;
799
- readonly color: string;
800
- };
801
- readonly _ariaCurrent: {
802
- readonly backgroundColor: string;
803
- readonly color: string;
804
- readonly fontWeight: string;
805
- };
806
- readonly fontWeight: string;
807
- readonly lineHeight: string;
808
- readonly fontFamily: string;
809
- } | {
810
- readonly fontSize: "0.8125rem";
811
- readonly display: "flex";
812
- readonly flexDirection: "row";
813
- readonly flexWrap: "nowrap";
814
- readonly alignItems: "center";
815
- readonly gap: string;
816
- readonly width: "100%";
817
- readonly padding: `${string} ${string}`;
818
- readonly borderRadius: string;
819
- readonly color: string;
820
- readonly backgroundColor: "transparent";
821
- readonly borderWidth: "0";
822
- readonly cursor: "pointer";
823
- readonly transition: "color 180ms ease, background-color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
824
- readonly _hover: {
825
- readonly backgroundColor: string;
826
- readonly color: string;
827
- };
828
- readonly _ariaCurrent: {
829
- readonly backgroundColor: string;
830
- readonly color: string;
831
- readonly fontWeight: string;
832
- };
833
- readonly fontWeight: string;
834
- readonly lineHeight: string;
835
- readonly fontFamily: string;
836
- } | {
837
- readonly fontSize: "0.8125rem";
838
- readonly display: "flex";
839
- readonly flexDirection: "row";
840
- readonly flexWrap: "nowrap";
841
- readonly alignItems: "center";
842
- readonly gap: string;
843
- readonly width: "100%";
844
- readonly padding: `${string} ${string}`;
845
- readonly borderRadius: string;
846
- readonly color: string;
847
- readonly backgroundColor: "transparent";
848
- readonly borderWidth: "0";
849
- readonly cursor: "pointer";
850
- readonly transition: "color 180ms ease, background-color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
851
- readonly _hover: {
852
- readonly backgroundColor: string;
853
- readonly color: string;
854
- };
855
- readonly _ariaCurrent: {
856
- readonly backgroundColor: string;
857
- readonly color: string;
858
- readonly fontWeight: string;
859
- };
860
- readonly fontWeight: string;
861
- readonly lineHeight: string;
862
- readonly fontFamily: string;
863
- } | {
864
- readonly fontSize: "0.8125rem";
865
- readonly display: "flex";
866
- readonly flexDirection: "row";
867
- readonly flexWrap: "nowrap";
868
- readonly alignItems: "center";
869
- readonly gap: string;
870
- readonly width: "100%";
871
- readonly padding: `${string} ${string}`;
872
- readonly borderRadius: string;
873
- readonly color: string;
874
- readonly backgroundColor: "transparent";
875
- readonly borderWidth: "0";
876
- readonly cursor: "pointer";
877
- readonly transition: "color 180ms ease, background-color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
878
- readonly _hover: {
879
- readonly backgroundColor: string;
880
- readonly color: string;
881
- };
882
- readonly _ariaCurrent: {
883
- readonly backgroundColor: string;
884
- readonly color: string;
885
- readonly fontWeight: string;
886
- };
887
- readonly fontWeight: string;
888
- readonly lineHeight: string;
889
- readonly fontFamily: string;
890
- } | {
891
- readonly fontSize: "0.8125rem";
892
- readonly display: "flex";
893
- readonly flexDirection: "row";
894
- readonly flexWrap: "nowrap";
895
- readonly alignItems: "center";
896
- readonly gap: string;
897
- readonly width: "100%";
898
- readonly padding: `${string} ${string}`;
899
- readonly borderRadius: string;
900
- readonly color: string;
901
- readonly backgroundColor: "transparent";
902
- readonly borderWidth: "0";
903
- readonly cursor: "pointer";
904
- readonly transition: "color 180ms ease, background-color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
905
- readonly _hover: {
906
- readonly backgroundColor: string;
907
- readonly color: string;
908
- };
909
- readonly _ariaCurrent: {
910
- readonly backgroundColor: string;
911
- readonly color: string;
912
- readonly fontWeight: string;
913
- };
914
- readonly fontWeight: string;
915
- readonly lineHeight: string;
916
- readonly fontFamily: string;
917
- } | {
918
- readonly fontSize: "0.8125rem";
919
- readonly display: "flex";
920
- readonly flexDirection: "row";
921
- readonly flexWrap: "nowrap";
922
- readonly alignItems: "center";
923
- readonly gap: string;
924
- readonly width: "100%";
925
- readonly padding: `${string} ${string}`;
926
- readonly borderRadius: string;
927
- readonly color: string;
928
- readonly backgroundColor: "transparent";
929
- readonly borderWidth: "0";
930
- readonly cursor: "pointer";
931
- readonly transition: "color 180ms ease, background-color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
932
- readonly _hover: {
933
- readonly backgroundColor: string;
934
- readonly color: string;
935
- };
936
- readonly _ariaCurrent: {
937
- readonly backgroundColor: string;
938
- readonly color: string;
939
- readonly fontWeight: string;
940
- };
941
- readonly fontWeight: string;
942
- readonly lineHeight: string;
943
- readonly fontFamily: string;
944
- } | {
945
- readonly fontSize: "0.8125rem";
946
- readonly display: "flex";
947
- readonly flexDirection: "row";
948
- readonly flexWrap: "nowrap";
949
- readonly alignItems: "center";
950
- readonly gap: string;
951
- readonly width: "100%";
952
- readonly padding: `${string} ${string}`;
953
- readonly borderRadius: string;
954
- readonly color: string;
955
- readonly backgroundColor: "transparent";
956
- readonly borderWidth: "0";
957
- readonly cursor: "pointer";
958
- readonly transition: "color 180ms ease, background-color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
959
- readonly _hover: {
960
- readonly backgroundColor: string;
961
- readonly color: string;
962
- };
963
- readonly _ariaCurrent: {
964
- readonly backgroundColor: string;
965
- readonly color: string;
966
- readonly fontWeight: string;
967
- };
968
- readonly fontWeight: string;
969
- readonly lineHeight: string;
970
- readonly fontFamily: string;
971
- } | {
972
- readonly fontSize: "0.8125rem";
973
- readonly display: "flex";
974
- readonly flexDirection: "row";
975
- readonly flexWrap: "nowrap";
976
- readonly alignItems: "center";
977
- readonly gap: string;
978
- readonly width: "100%";
979
- readonly padding: `${string} ${string}`;
980
- readonly borderRadius: string;
981
- readonly color: string;
982
- readonly backgroundColor: "transparent";
983
- readonly borderWidth: "0";
984
- readonly cursor: "pointer";
985
- readonly transition: "color 180ms ease, background-color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
986
- readonly _hover: {
987
- readonly backgroundColor: string;
988
- readonly color: string;
989
- };
990
- readonly _ariaCurrent: {
991
- readonly backgroundColor: string;
992
- readonly color: string;
993
- readonly fontWeight: string;
994
- };
995
- readonly fontWeight: string;
996
- readonly lineHeight: string;
997
- readonly fontFamily: string;
998
- } | {
999
- readonly fontSize: "0.8125rem";
1000
- readonly display: "flex";
1001
- readonly flexDirection: "row";
1002
- readonly flexWrap: "nowrap";
1003
- readonly alignItems: "center";
1004
- readonly gap: string;
1005
- readonly width: "100%";
1006
- readonly padding: `${string} ${string}`;
1007
- readonly borderRadius: string;
1008
- readonly color: string;
1009
- readonly backgroundColor: "transparent";
1010
- readonly borderWidth: "0";
1011
- readonly cursor: "pointer";
1012
- readonly transition: "color 180ms ease, background-color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
1013
- readonly _hover: {
1014
- readonly backgroundColor: string;
1015
- readonly color: string;
1016
- };
1017
- readonly _ariaCurrent: {
1018
- readonly backgroundColor: string;
1019
- readonly color: string;
1020
- readonly fontWeight: string;
1021
- };
1022
- readonly fontWeight: string;
1023
- readonly lineHeight: string;
1024
- readonly fontFamily: string;
1025
- };
1026
- readonly menuAction: {
1027
- readonly position: "absolute";
1028
- readonly right: string;
1029
- readonly display: "flex";
1030
- readonly alignItems: "center";
1031
- readonly justifyContent: "center";
1032
- readonly width: "1.5rem";
1033
- readonly height: "1.5rem";
1034
- readonly borderRadius: string;
1035
- readonly cursor: "pointer";
1036
- readonly color: string;
1037
- readonly backgroundColor: "transparent";
1038
- readonly borderWidth: "0";
1039
- readonly opacity: "0";
1040
- readonly transition: "all";
1041
- readonly _hover: {
1042
- readonly backgroundColor: string;
1043
- readonly color: string;
1044
- };
1045
- };
1046
- readonly menuBadge: {
1047
- readonly fontSize: "0.6875rem";
1048
- readonly color: string;
1049
- readonly marginLeft: "auto";
1050
- readonly fontWeight: string;
1051
- readonly lineHeight: "1";
1052
- readonly fontFamily: string;
1053
- } | {
1054
- readonly fontSize: "0.6875rem";
1055
- readonly color: string;
1056
- readonly marginLeft: "auto";
1057
- readonly fontWeight: string;
1058
- readonly lineHeight: string;
1059
- readonly fontFamily: string;
1060
- } | {
1061
- readonly fontSize: "0.6875rem";
1062
- readonly color: string;
1063
- readonly marginLeft: "auto";
1064
- readonly fontWeight: string;
1065
- readonly lineHeight: string;
1066
- readonly fontFamily: string;
1067
- } | {
1068
- readonly fontSize: "0.6875rem";
1069
- readonly color: string;
1070
- readonly marginLeft: "auto";
1071
- readonly fontWeight: string;
1072
- readonly lineHeight: string;
1073
- readonly fontFamily: string;
1074
- } | {
1075
- readonly fontSize: "0.6875rem";
1076
- readonly color: string;
1077
- readonly marginLeft: "auto";
1078
- readonly fontWeight: string;
1079
- readonly lineHeight: string;
1080
- readonly fontFamily: string;
1081
- } | {
1082
- readonly fontSize: "0.6875rem";
1083
- readonly color: string;
1084
- readonly marginLeft: "auto";
1085
- readonly fontWeight: "450";
1086
- readonly lineHeight: string;
1087
- readonly fontFamily: string;
1088
- } | {
1089
- readonly fontSize: "0.6875rem";
1090
- readonly color: string;
1091
- readonly marginLeft: "auto";
1092
- readonly fontWeight: string;
1093
- readonly lineHeight: string;
1094
- readonly fontFamily: string;
1095
- } | {
1096
- readonly fontSize: "0.6875rem";
1097
- readonly color: string;
1098
- readonly marginLeft: "auto";
1099
- readonly fontWeight: string;
1100
- readonly lineHeight: string;
1101
- readonly fontFamily: string;
1102
- } | {
1103
- readonly fontSize: "0.6875rem";
1104
- readonly color: string;
1105
- readonly marginLeft: "auto";
1106
- readonly fontWeight: "450";
1107
- readonly lineHeight: string;
1108
- readonly fontFamily: string;
1109
- } | {
1110
- readonly fontSize: "0.6875rem";
1111
- readonly color: string;
1112
- readonly marginLeft: "auto";
1113
- readonly fontWeight: string;
1114
- readonly lineHeight: string;
1115
- readonly fontFamily: string;
1116
- } | {
1117
- readonly fontSize: "0.6875rem";
1118
- readonly color: string;
1119
- readonly marginLeft: "auto";
1120
- readonly fontWeight: "450";
1121
- readonly lineHeight: string;
1122
- readonly fontFamily: string;
1123
- } | {
1124
- readonly fontSize: "0.6875rem";
1125
- readonly color: string;
1126
- readonly marginLeft: "auto";
1127
- readonly fontWeight: string;
1128
- readonly lineHeight: string;
1129
- readonly fontFamily: string;
1130
- } | {
1131
- readonly fontSize: "0.6875rem";
1132
- readonly color: string;
1133
- readonly marginLeft: "auto";
1134
- readonly fontWeight: string;
1135
- readonly lineHeight: string;
1136
- readonly fontFamily: string;
1137
- } | {
1138
- readonly fontSize: "0.6875rem";
1139
- readonly color: string;
1140
- readonly marginLeft: "auto";
1141
- readonly fontWeight: string;
1142
- readonly lineHeight: string;
1143
- readonly fontFamily: string;
1144
- } | {
1145
- readonly fontSize: "0.6875rem";
1146
- readonly color: string;
1147
- readonly marginLeft: "auto";
1148
- readonly fontWeight: string;
1149
- readonly lineHeight: string;
1150
- readonly fontFamily: string;
1151
- } | {
1152
- readonly fontSize: "0.6875rem";
1153
- readonly color: string;
1154
- readonly marginLeft: "auto";
1155
- readonly fontWeight: string;
1156
- readonly lineHeight: string;
1157
- readonly fontFamily: string;
1158
- } | {
1159
- readonly fontSize: "0.6875rem";
1160
- readonly color: string;
1161
- readonly marginLeft: "auto";
1162
- readonly fontWeight: string;
1163
- readonly lineHeight: string;
1164
- readonly fontFamily: string;
1165
- } | {
1166
- readonly fontSize: "0.6875rem";
1167
- readonly color: string;
1168
- readonly marginLeft: "auto";
1169
- readonly fontWeight: string;
1170
- readonly lineHeight: string;
1171
- readonly fontFamily: string;
1172
- } | {
1173
- readonly fontSize: "0.6875rem";
1174
- readonly color: string;
1175
- readonly marginLeft: "auto";
1176
- readonly fontWeight: string;
1177
- readonly lineHeight: string;
1178
- readonly fontFamily: string;
1179
- } | {
1180
- readonly fontSize: "0.6875rem";
1181
- readonly color: string;
1182
- readonly marginLeft: "auto";
1183
- readonly fontWeight: string;
1184
- readonly lineHeight: string;
1185
- readonly fontFamily: string;
1186
- } | {
1187
- readonly fontSize: "0.6875rem";
1188
- readonly color: string;
1189
- readonly marginLeft: "auto";
1190
- readonly fontWeight: string;
1191
- readonly lineHeight: string;
1192
- readonly fontFamily: string;
1193
- } | {
1194
- readonly fontSize: "0.6875rem";
1195
- readonly color: string;
1196
- readonly marginLeft: "auto";
1197
- readonly fontWeight: string;
1198
- readonly lineHeight: string;
1199
- readonly fontFamily: string;
1200
- };
1201
- readonly menuSub: {
1202
- readonly listStyleType: "none";
1203
- readonly padding: "0";
1204
- readonly margin: "0";
1205
- readonly display: "flex";
1206
- readonly flexDirection: "column";
1207
- readonly marginLeft: string;
1208
- readonly paddingLeft: string;
1209
- readonly borderLeftWidth: string;
1210
- readonly borderColor: string;
1211
- };
1212
- readonly menuSubItem: {};
1213
- readonly menuSubButton: {
1214
- readonly fontSize: "0.8125rem";
1215
- readonly display: "flex";
1216
- readonly flexDirection: "row";
1217
- readonly flexWrap: "nowrap";
1218
- readonly alignItems: "center";
1219
- readonly width: "100%";
1220
- readonly padding: `${string} ${string}`;
1221
- readonly borderRadius: string;
1222
- readonly color: string;
1223
- readonly backgroundColor: "transparent";
1224
- readonly borderWidth: "0";
1225
- readonly cursor: "pointer";
1226
- readonly transition: "color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
1227
- readonly _hover: {
1228
- readonly color: string;
1229
- };
1230
- readonly _ariaCurrent: {
1231
- readonly color: string;
1232
- readonly fontWeight: string;
1233
- };
1234
- readonly fontWeight: string;
1235
- readonly lineHeight: "1";
1236
- readonly fontFamily: string;
1237
- } | {
1238
- readonly fontSize: "0.8125rem";
1239
- readonly display: "flex";
1240
- readonly flexDirection: "row";
1241
- readonly flexWrap: "nowrap";
1242
- readonly alignItems: "center";
1243
- readonly width: "100%";
1244
- readonly padding: `${string} ${string}`;
1245
- readonly borderRadius: string;
1246
- readonly color: string;
1247
- readonly backgroundColor: "transparent";
1248
- readonly borderWidth: "0";
1249
- readonly cursor: "pointer";
1250
- readonly transition: "color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
1251
- readonly _hover: {
1252
- readonly color: string;
1253
- };
1254
- readonly _ariaCurrent: {
1255
- readonly color: string;
1256
- readonly fontWeight: string;
1257
- };
1258
- readonly fontWeight: string;
1259
- readonly lineHeight: string;
1260
- readonly fontFamily: string;
1261
- } | {
1262
- readonly fontSize: "0.8125rem";
1263
- readonly display: "flex";
1264
- readonly flexDirection: "row";
1265
- readonly flexWrap: "nowrap";
1266
- readonly alignItems: "center";
1267
- readonly width: "100%";
1268
- readonly padding: `${string} ${string}`;
1269
- readonly borderRadius: string;
1270
- readonly color: string;
1271
- readonly backgroundColor: "transparent";
1272
- readonly borderWidth: "0";
1273
- readonly cursor: "pointer";
1274
- readonly transition: "color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
1275
- readonly _hover: {
1276
- readonly color: string;
1277
- };
1278
- readonly _ariaCurrent: {
1279
- readonly color: string;
1280
- readonly fontWeight: string;
1281
- };
1282
- readonly fontWeight: string;
1283
- readonly lineHeight: string;
1284
- readonly fontFamily: string;
1285
- } | {
1286
- readonly fontSize: "0.8125rem";
1287
- readonly display: "flex";
1288
- readonly flexDirection: "row";
1289
- readonly flexWrap: "nowrap";
1290
- readonly alignItems: "center";
1291
- readonly width: "100%";
1292
- readonly padding: `${string} ${string}`;
1293
- readonly borderRadius: string;
1294
- readonly color: string;
1295
- readonly backgroundColor: "transparent";
1296
- readonly borderWidth: "0";
1297
- readonly cursor: "pointer";
1298
- readonly transition: "color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
1299
- readonly _hover: {
1300
- readonly color: string;
1301
- };
1302
- readonly _ariaCurrent: {
1303
- readonly color: string;
1304
- readonly fontWeight: string;
1305
- };
1306
- readonly fontWeight: string;
1307
- readonly lineHeight: string;
1308
- readonly fontFamily: string;
1309
- } | {
1310
- readonly fontSize: "0.8125rem";
1311
- readonly display: "flex";
1312
- readonly flexDirection: "row";
1313
- readonly flexWrap: "nowrap";
1314
- readonly alignItems: "center";
1315
- readonly width: "100%";
1316
- readonly padding: `${string} ${string}`;
1317
- readonly borderRadius: string;
1318
- readonly color: string;
1319
- readonly backgroundColor: "transparent";
1320
- readonly borderWidth: "0";
1321
- readonly cursor: "pointer";
1322
- readonly transition: "color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
1323
- readonly _hover: {
1324
- readonly color: string;
1325
- };
1326
- readonly _ariaCurrent: {
1327
- readonly color: string;
1328
- readonly fontWeight: string;
1329
- };
1330
- readonly fontWeight: string;
1331
- readonly lineHeight: string;
1332
- readonly fontFamily: string;
1333
- } | {
1334
- readonly fontSize: "0.8125rem";
1335
- readonly display: "flex";
1336
- readonly flexDirection: "row";
1337
- readonly flexWrap: "nowrap";
1338
- readonly alignItems: "center";
1339
- readonly width: "100%";
1340
- readonly padding: `${string} ${string}`;
1341
- readonly borderRadius: string;
1342
- readonly color: string;
1343
- readonly backgroundColor: "transparent";
1344
- readonly borderWidth: "0";
1345
- readonly cursor: "pointer";
1346
- readonly transition: "color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
1347
- readonly _hover: {
1348
- readonly color: string;
1349
- };
1350
- readonly _ariaCurrent: {
1351
- readonly color: string;
1352
- readonly fontWeight: string;
1353
- };
1354
- readonly fontWeight: "450";
1355
- readonly lineHeight: string;
1356
- readonly fontFamily: string;
1357
- } | {
1358
- readonly fontSize: "0.8125rem";
1359
- readonly display: "flex";
1360
- readonly flexDirection: "row";
1361
- readonly flexWrap: "nowrap";
1362
- readonly alignItems: "center";
1363
- readonly width: "100%";
1364
- readonly padding: `${string} ${string}`;
1365
- readonly borderRadius: string;
1366
- readonly color: string;
1367
- readonly backgroundColor: "transparent";
1368
- readonly borderWidth: "0";
1369
- readonly cursor: "pointer";
1370
- readonly transition: "color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
1371
- readonly _hover: {
1372
- readonly color: string;
1373
- };
1374
- readonly _ariaCurrent: {
1375
- readonly color: string;
1376
- readonly fontWeight: string;
1377
- };
1378
- readonly fontWeight: string;
1379
- readonly lineHeight: string;
1380
- readonly fontFamily: string;
1381
- } | {
1382
- readonly fontSize: "0.8125rem";
1383
- readonly display: "flex";
1384
- readonly flexDirection: "row";
1385
- readonly flexWrap: "nowrap";
1386
- readonly alignItems: "center";
1387
- readonly width: "100%";
1388
- readonly padding: `${string} ${string}`;
1389
- readonly borderRadius: string;
1390
- readonly color: string;
1391
- readonly backgroundColor: "transparent";
1392
- readonly borderWidth: "0";
1393
- readonly cursor: "pointer";
1394
- readonly transition: "color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
1395
- readonly _hover: {
1396
- readonly color: string;
1397
- };
1398
- readonly _ariaCurrent: {
1399
- readonly color: string;
1400
- readonly fontWeight: string;
1401
- };
1402
- readonly fontWeight: string;
1403
- readonly lineHeight: string;
1404
- readonly fontFamily: string;
1405
- } | {
1406
- readonly fontSize: "0.8125rem";
1407
- readonly display: "flex";
1408
- readonly flexDirection: "row";
1409
- readonly flexWrap: "nowrap";
1410
- readonly alignItems: "center";
1411
- readonly width: "100%";
1412
- readonly padding: `${string} ${string}`;
1413
- readonly borderRadius: string;
1414
- readonly color: string;
1415
- readonly backgroundColor: "transparent";
1416
- readonly borderWidth: "0";
1417
- readonly cursor: "pointer";
1418
- readonly transition: "color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
1419
- readonly _hover: {
1420
- readonly color: string;
1421
- };
1422
- readonly _ariaCurrent: {
1423
- readonly color: string;
1424
- readonly fontWeight: string;
1425
- };
1426
- readonly fontWeight: "450";
1427
- readonly lineHeight: string;
1428
- readonly fontFamily: string;
1429
- } | {
1430
- readonly fontSize: "0.8125rem";
1431
- readonly display: "flex";
1432
- readonly flexDirection: "row";
1433
- readonly flexWrap: "nowrap";
1434
- readonly alignItems: "center";
1435
- readonly width: "100%";
1436
- readonly padding: `${string} ${string}`;
1437
- readonly borderRadius: string;
1438
- readonly color: string;
1439
- readonly backgroundColor: "transparent";
1440
- readonly borderWidth: "0";
1441
- readonly cursor: "pointer";
1442
- readonly transition: "color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
1443
- readonly _hover: {
1444
- readonly color: string;
1445
- };
1446
- readonly _ariaCurrent: {
1447
- readonly color: string;
1448
- readonly fontWeight: string;
1449
- };
1450
- readonly fontWeight: string;
1451
- readonly lineHeight: string;
1452
- readonly fontFamily: string;
1453
- } | {
1454
- readonly fontSize: "0.8125rem";
1455
- readonly display: "flex";
1456
- readonly flexDirection: "row";
1457
- readonly flexWrap: "nowrap";
1458
- readonly alignItems: "center";
1459
- readonly width: "100%";
1460
- readonly padding: `${string} ${string}`;
1461
- readonly borderRadius: string;
1462
- readonly color: string;
1463
- readonly backgroundColor: "transparent";
1464
- readonly borderWidth: "0";
1465
- readonly cursor: "pointer";
1466
- readonly transition: "color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
1467
- readonly _hover: {
1468
- readonly color: string;
1469
- };
1470
- readonly _ariaCurrent: {
1471
- readonly color: string;
1472
- readonly fontWeight: string;
1473
- };
1474
- readonly fontWeight: "450";
1475
- readonly lineHeight: string;
1476
- readonly fontFamily: string;
1477
- } | {
1478
- readonly fontSize: "0.8125rem";
1479
- readonly display: "flex";
1480
- readonly flexDirection: "row";
1481
- readonly flexWrap: "nowrap";
1482
- readonly alignItems: "center";
1483
- readonly width: "100%";
1484
- readonly padding: `${string} ${string}`;
1485
- readonly borderRadius: string;
1486
- readonly color: string;
1487
- readonly backgroundColor: "transparent";
1488
- readonly borderWidth: "0";
1489
- readonly cursor: "pointer";
1490
- readonly transition: "color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
1491
- readonly _hover: {
1492
- readonly color: string;
1493
- };
1494
- readonly _ariaCurrent: {
1495
- readonly color: string;
1496
- readonly fontWeight: string;
1497
- };
1498
- readonly fontWeight: string;
1499
- readonly lineHeight: string;
1500
- readonly fontFamily: string;
1501
- } | {
1502
- readonly fontSize: "0.8125rem";
1503
- readonly display: "flex";
1504
- readonly flexDirection: "row";
1505
- readonly flexWrap: "nowrap";
1506
- readonly alignItems: "center";
1507
- readonly width: "100%";
1508
- readonly padding: `${string} ${string}`;
1509
- readonly borderRadius: string;
1510
- readonly color: string;
1511
- readonly backgroundColor: "transparent";
1512
- readonly borderWidth: "0";
1513
- readonly cursor: "pointer";
1514
- readonly transition: "color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
1515
- readonly _hover: {
1516
- readonly color: string;
1517
- };
1518
- readonly _ariaCurrent: {
1519
- readonly color: string;
1520
- readonly fontWeight: string;
1521
- };
1522
- readonly fontWeight: string;
1523
- readonly lineHeight: string;
1524
- readonly fontFamily: string;
1525
- } | {
1526
- readonly fontSize: "0.8125rem";
1527
- readonly display: "flex";
1528
- readonly flexDirection: "row";
1529
- readonly flexWrap: "nowrap";
1530
- readonly alignItems: "center";
1531
- readonly width: "100%";
1532
- readonly padding: `${string} ${string}`;
1533
- readonly borderRadius: string;
1534
- readonly color: string;
1535
- readonly backgroundColor: "transparent";
1536
- readonly borderWidth: "0";
1537
- readonly cursor: "pointer";
1538
- readonly transition: "color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
1539
- readonly _hover: {
1540
- readonly color: string;
1541
- };
1542
- readonly _ariaCurrent: {
1543
- readonly color: string;
1544
- readonly fontWeight: string;
1545
- };
1546
- readonly fontWeight: string;
1547
- readonly lineHeight: string;
1548
- readonly fontFamily: string;
1549
- } | {
1550
- readonly fontSize: "0.8125rem";
1551
- readonly display: "flex";
1552
- readonly flexDirection: "row";
1553
- readonly flexWrap: "nowrap";
1554
- readonly alignItems: "center";
1555
- readonly width: "100%";
1556
- readonly padding: `${string} ${string}`;
1557
- readonly borderRadius: string;
1558
- readonly color: string;
1559
- readonly backgroundColor: "transparent";
1560
- readonly borderWidth: "0";
1561
- readonly cursor: "pointer";
1562
- readonly transition: "color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
1563
- readonly _hover: {
1564
- readonly color: string;
1565
- };
1566
- readonly _ariaCurrent: {
1567
- readonly color: string;
1568
- readonly fontWeight: string;
1569
- };
1570
- readonly fontWeight: string;
1571
- readonly lineHeight: string;
1572
- readonly fontFamily: string;
1573
- } | {
1574
- readonly fontSize: "0.8125rem";
1575
- readonly display: "flex";
1576
- readonly flexDirection: "row";
1577
- readonly flexWrap: "nowrap";
1578
- readonly alignItems: "center";
1579
- readonly width: "100%";
1580
- readonly padding: `${string} ${string}`;
1581
- readonly borderRadius: string;
1582
- readonly color: string;
1583
- readonly backgroundColor: "transparent";
1584
- readonly borderWidth: "0";
1585
- readonly cursor: "pointer";
1586
- readonly transition: "color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
1587
- readonly _hover: {
1588
- readonly color: string;
1589
- };
1590
- readonly _ariaCurrent: {
1591
- readonly color: string;
1592
- readonly fontWeight: string;
1593
- };
1594
- readonly fontWeight: string;
1595
- readonly lineHeight: string;
1596
- readonly fontFamily: string;
1597
- } | {
1598
- readonly fontSize: "0.8125rem";
1599
- readonly display: "flex";
1600
- readonly flexDirection: "row";
1601
- readonly flexWrap: "nowrap";
1602
- readonly alignItems: "center";
1603
- readonly width: "100%";
1604
- readonly padding: `${string} ${string}`;
1605
- readonly borderRadius: string;
1606
- readonly color: string;
1607
- readonly backgroundColor: "transparent";
1608
- readonly borderWidth: "0";
1609
- readonly cursor: "pointer";
1610
- readonly transition: "color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
1611
- readonly _hover: {
1612
- readonly color: string;
1613
- };
1614
- readonly _ariaCurrent: {
1615
- readonly color: string;
1616
- readonly fontWeight: string;
1617
- };
1618
- readonly fontWeight: string;
1619
- readonly lineHeight: string;
1620
- readonly fontFamily: string;
1621
- } | {
1622
- readonly fontSize: "0.8125rem";
1623
- readonly display: "flex";
1624
- readonly flexDirection: "row";
1625
- readonly flexWrap: "nowrap";
1626
- readonly alignItems: "center";
1627
- readonly width: "100%";
1628
- readonly padding: `${string} ${string}`;
1629
- readonly borderRadius: string;
1630
- readonly color: string;
1631
- readonly backgroundColor: "transparent";
1632
- readonly borderWidth: "0";
1633
- readonly cursor: "pointer";
1634
- readonly transition: "color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
1635
- readonly _hover: {
1636
- readonly color: string;
1637
- };
1638
- readonly _ariaCurrent: {
1639
- readonly color: string;
1640
- readonly fontWeight: string;
1641
- };
1642
- readonly fontWeight: string;
1643
- readonly lineHeight: string;
1644
- readonly fontFamily: string;
1645
- } | {
1646
- readonly fontSize: "0.8125rem";
1647
- readonly display: "flex";
1648
- readonly flexDirection: "row";
1649
- readonly flexWrap: "nowrap";
1650
- readonly alignItems: "center";
1651
- readonly width: "100%";
1652
- readonly padding: `${string} ${string}`;
1653
- readonly borderRadius: string;
1654
- readonly color: string;
1655
- readonly backgroundColor: "transparent";
1656
- readonly borderWidth: "0";
1657
- readonly cursor: "pointer";
1658
- readonly transition: "color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
1659
- readonly _hover: {
1660
- readonly color: string;
1661
- };
1662
- readonly _ariaCurrent: {
1663
- readonly color: string;
1664
- readonly fontWeight: string;
1665
- };
1666
- readonly fontWeight: string;
1667
- readonly lineHeight: string;
1668
- readonly fontFamily: string;
1669
- } | {
1670
- readonly fontSize: "0.8125rem";
1671
- readonly display: "flex";
1672
- readonly flexDirection: "row";
1673
- readonly flexWrap: "nowrap";
1674
- readonly alignItems: "center";
1675
- readonly width: "100%";
1676
- readonly padding: `${string} ${string}`;
1677
- readonly borderRadius: string;
1678
- readonly color: string;
1679
- readonly backgroundColor: "transparent";
1680
- readonly borderWidth: "0";
1681
- readonly cursor: "pointer";
1682
- readonly transition: "color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
1683
- readonly _hover: {
1684
- readonly color: string;
1685
- };
1686
- readonly _ariaCurrent: {
1687
- readonly color: string;
1688
- readonly fontWeight: string;
1689
- };
1690
- readonly fontWeight: string;
1691
- readonly lineHeight: string;
1692
- readonly fontFamily: string;
1693
- } | {
1694
- readonly fontSize: "0.8125rem";
1695
- readonly display: "flex";
1696
- readonly flexDirection: "row";
1697
- readonly flexWrap: "nowrap";
1698
- readonly alignItems: "center";
1699
- readonly width: "100%";
1700
- readonly padding: `${string} ${string}`;
1701
- readonly borderRadius: string;
1702
- readonly color: string;
1703
- readonly backgroundColor: "transparent";
1704
- readonly borderWidth: "0";
1705
- readonly cursor: "pointer";
1706
- readonly transition: "color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
1707
- readonly _hover: {
1708
- readonly color: string;
1709
- };
1710
- readonly _ariaCurrent: {
1711
- readonly color: string;
1712
- readonly fontWeight: string;
1713
- };
1714
- readonly fontWeight: string;
1715
- readonly lineHeight: string;
1716
- readonly fontFamily: string;
1717
- } | {
1718
- readonly fontSize: "0.8125rem";
1719
- readonly display: "flex";
1720
- readonly flexDirection: "row";
1721
- readonly flexWrap: "nowrap";
1722
- readonly alignItems: "center";
1723
- readonly width: "100%";
1724
- readonly padding: `${string} ${string}`;
1725
- readonly borderRadius: string;
1726
- readonly color: string;
1727
- readonly backgroundColor: "transparent";
1728
- readonly borderWidth: "0";
1729
- readonly cursor: "pointer";
1730
- readonly transition: "color 180ms ease, font-weight 220ms cubic-bezier(0.4, 0, 0.2, 1)";
1731
- readonly _hover: {
1732
- readonly color: string;
1733
- };
1734
- readonly _ariaCurrent: {
1735
- readonly color: string;
1736
- readonly fontWeight: string;
1737
- };
1738
- readonly fontWeight: string;
1739
- readonly lineHeight: string;
1740
- readonly fontFamily: string;
1741
- };
1742
- readonly trigger: {
1743
- readonly display: "flex";
1744
- readonly alignItems: "center";
1745
- readonly justifyContent: "center";
1746
- readonly width: "2rem";
1747
- readonly height: "2rem";
1748
- readonly borderRadius: string;
1749
- readonly cursor: "pointer";
1750
- readonly color: string;
1751
- readonly backgroundColor: "transparent";
1752
- readonly borderWidth: "0";
1753
- readonly position: "relative";
1754
- readonly _hover: {
1755
- readonly backgroundColor: string;
1756
- readonly color: string;
1757
- };
1758
- };
1759
- readonly rail: {
1760
- readonly position: "absolute";
1761
- readonly top: "0";
1762
- readonly bottom: "0";
1763
- readonly right: "0";
1764
- readonly width: "4px";
1765
- readonly cursor: "col-resize";
1766
- readonly backgroundColor: "transparent";
1767
- readonly borderWidth: "0";
1768
- readonly padding: "0";
1769
- readonly transition: "all";
1770
- readonly _hover: {
1771
- readonly backgroundColor: string;
1772
- };
1773
- };
1774
- readonly overlay: {
1775
- readonly backgroundColor: "rgba(0,0,0,0.4)";
1776
- readonly opacity: "0";
1777
- readonly display: "none";
1778
- readonly transition: "opacity 0.2s, display 0.2s allow-discrete";
1779
- readonly _dataStateOpen: {
1780
- readonly opacity: "1";
1781
- readonly display: "block";
1782
- readonly _startingStyle: {
1783
- readonly opacity: "0";
1784
- };
1785
- };
1786
- };
1787
- readonly skeleton: {
1788
- readonly backgroundColor: string;
1789
- readonly borderRadius: string;
1790
- };
1791
- };
1792
- readonly variants: {
1793
- readonly variant: {
1794
- readonly sidebar: {
1795
- readonly root: {};
1796
- };
1797
- readonly floating: {
1798
- readonly root: {
1799
- readonly margin: string;
1800
- readonly borderRadius: string;
1801
- readonly borderWidth: string;
1802
- readonly borderColor: string;
1803
- readonly borderRightWidth: string;
1804
- readonly boxShadow: "0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1)";
1805
- readonly height: "auto";
1806
- };
1807
- };
1808
- readonly inset: {
1809
- readonly root: {
1810
- readonly margin: string;
1811
- readonly borderRadius: string;
1812
- readonly borderWidth: string;
1813
- readonly borderColor: string;
1814
- readonly borderRightWidth: string;
1815
- readonly backgroundColor: string;
1816
- readonly height: "auto";
1817
- };
1818
- };
1819
- };
1820
- };
1821
- };
1822
- }, {}>, SidebarOwnProps, SidebarElements>>;
1823
- type SidebarProps = React.ComponentProps<typeof Sidebar>;
1824
- //#endregion
1825
- export { Sidebar, SidebarContent, SidebarContextValue, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarHeader, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarOwnProps, SidebarProps, SidebarProvider, SidebarSkeleton, SidebarTrigger, useSidebar };