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