@maizzle/framework 6.0.0-rc.9 → 6.0.1

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 (624) hide show
  1. package/README.md +3 -3
  2. package/bin/maizzle.mjs +1 -1
  3. package/dist/build.d.ts +38 -0
  4. package/dist/build.d.ts.map +1 -0
  5. package/dist/build.js +234 -0
  6. package/dist/build.js.map +1 -0
  7. package/dist/components/Body.vue +32 -3
  8. package/dist/components/Button.vue +91 -62
  9. package/dist/components/CodeBlock.vue +6 -4
  10. package/dist/components/CodeInline.vue +77 -6
  11. package/dist/components/Column.vue +67 -31
  12. package/dist/components/Container.vue +73 -12
  13. package/dist/components/Font.vue +96 -0
  14. package/dist/components/Head.vue +1 -1
  15. package/dist/components/Heading.vue +1 -1
  16. package/dist/components/Hr.vue +33 -0
  17. package/dist/components/Html.vue +36 -3
  18. package/dist/components/Img.vue +332 -0
  19. package/dist/components/Layout.vue +73 -21
  20. package/dist/components/Link.vue +1 -1
  21. package/dist/components/Markdown.vue +51 -24
  22. package/dist/components/MarkdownLayout.vue +39 -0
  23. package/dist/components/NotPlaintext.vue +14 -0
  24. package/dist/components/Outlook.vue +38 -11
  25. package/dist/components/OutlookBg.vue +241 -0
  26. package/dist/components/Plaintext.vue +14 -0
  27. package/dist/components/Preheader.vue +35 -10
  28. package/dist/components/QrCode.vue +157 -0
  29. package/dist/components/Raw.vue +28 -0
  30. package/dist/components/Row.vue +115 -22
  31. package/dist/components/Section.vue +65 -26
  32. package/dist/components/Spacer.vue +35 -29
  33. package/dist/components/Tailwind.vue +45 -0
  34. package/dist/components/Text.vue +3 -3
  35. package/dist/components/Vml.vue +207 -94
  36. package/dist/components/utils.d.ts +53 -0
  37. package/dist/components/utils.d.ts.map +1 -0
  38. package/dist/components/utils.js +80 -0
  39. package/dist/components/utils.js.map +1 -0
  40. package/dist/components/utils.ts +102 -0
  41. package/dist/composables/defineConfig.d.ts +13 -0
  42. package/dist/composables/defineConfig.d.ts.map +1 -0
  43. package/dist/composables/{defineConfig.mjs → defineConfig.js} +7 -9
  44. package/dist/composables/defineConfig.js.map +1 -0
  45. package/dist/composables/renderContext.d.ts +37 -0
  46. package/dist/composables/renderContext.d.ts.map +1 -0
  47. package/dist/composables/renderContext.js +6 -0
  48. package/dist/composables/renderContext.js.map +1 -0
  49. package/dist/composables/useBaseUrl.d.ts +19 -0
  50. package/dist/composables/useBaseUrl.d.ts.map +1 -0
  51. package/dist/composables/useBaseUrl.js +26 -0
  52. package/dist/composables/useBaseUrl.js.map +1 -0
  53. package/dist/composables/useConfig.d.ts +16 -0
  54. package/dist/composables/useConfig.d.ts.map +1 -0
  55. package/dist/composables/useConfig.js +19 -0
  56. package/dist/composables/useConfig.js.map +1 -0
  57. package/dist/composables/useCurrentTemplate.d.ts +31 -0
  58. package/dist/composables/useCurrentTemplate.d.ts.map +1 -0
  59. package/dist/composables/useCurrentTemplate.js +42 -0
  60. package/dist/composables/useCurrentTemplate.js.map +1 -0
  61. package/dist/composables/{useDoctype.d.mts → useDoctype.d.ts} +1 -1
  62. package/dist/composables/useDoctype.d.ts.map +1 -0
  63. package/dist/composables/{useDoctype.mjs → useDoctype.js} +3 -4
  64. package/dist/composables/useDoctype.js.map +1 -0
  65. package/dist/composables/{useEvent.d.mts → useEvent.d.ts} +3 -3
  66. package/dist/composables/useEvent.d.ts.map +1 -0
  67. package/dist/composables/{useEvent.mjs → useEvent.js} +4 -5
  68. package/dist/composables/useEvent.js.map +1 -0
  69. package/dist/composables/useFont.d.ts +50 -0
  70. package/dist/composables/useFont.d.ts.map +1 -0
  71. package/dist/composables/useFont.js +92 -0
  72. package/dist/composables/useFont.js.map +1 -0
  73. package/dist/composables/useOutlookFallback.d.ts +21 -0
  74. package/dist/composables/useOutlookFallback.d.ts.map +1 -0
  75. package/dist/composables/useOutlookFallback.js +29 -0
  76. package/dist/composables/useOutlookFallback.js.map +1 -0
  77. package/dist/composables/useOutputPath.d.ts +17 -0
  78. package/dist/composables/useOutputPath.d.ts.map +1 -0
  79. package/dist/composables/useOutputPath.js +23 -0
  80. package/dist/composables/useOutputPath.js.map +1 -0
  81. package/dist/composables/{usePlaintext.d.mts → usePlaintext.d.ts} +3 -1
  82. package/dist/composables/usePlaintext.d.ts.map +1 -0
  83. package/dist/composables/{usePlaintext.mjs → usePlaintext.js} +4 -4
  84. package/dist/composables/usePlaintext.js.map +1 -0
  85. package/dist/composables/usePreheader.d.ts +25 -0
  86. package/dist/composables/usePreheader.d.ts.map +1 -0
  87. package/dist/composables/usePreheader.js +28 -0
  88. package/dist/composables/usePreheader.js.map +1 -0
  89. package/dist/composables/useTransformers.d.ts +34 -0
  90. package/dist/composables/useTransformers.d.ts.map +1 -0
  91. package/dist/composables/useTransformers.js +48 -0
  92. package/dist/composables/useTransformers.js.map +1 -0
  93. package/dist/composables/useUrlQuery.d.ts +19 -0
  94. package/dist/composables/useUrlQuery.d.ts.map +1 -0
  95. package/dist/composables/useUrlQuery.js +26 -0
  96. package/dist/composables/useUrlQuery.js.map +1 -0
  97. package/dist/config/{defaults.d.mts → defaults.d.ts} +2 -2
  98. package/dist/config/defaults.d.ts.map +1 -0
  99. package/dist/config/{defaults.mjs → defaults.js} +10 -6
  100. package/dist/config/defaults.js.map +1 -0
  101. package/dist/config/index.d.ts +33 -0
  102. package/dist/config/index.d.ts.map +1 -0
  103. package/dist/config/index.js +136 -0
  104. package/dist/config/index.js.map +1 -0
  105. package/dist/events/{index.d.mts → index.d.ts} +35 -12
  106. package/dist/events/index.d.ts.map +1 -0
  107. package/dist/events/{index.mjs → index.js} +31 -13
  108. package/dist/events/index.js.map +1 -0
  109. package/dist/index.d.ts +41 -0
  110. package/dist/index.js +40 -0
  111. package/dist/{plaintext.d.mts → plaintext.d.ts} +1 -1
  112. package/dist/plaintext.d.ts.map +1 -0
  113. package/dist/{plaintext.mjs → plaintext.js} +4 -5
  114. package/dist/plaintext.js.map +1 -0
  115. package/dist/{plugin.d.mts → plugin.d.ts} +2 -2
  116. package/dist/plugin.d.ts.map +1 -0
  117. package/dist/{plugin.mjs → plugin.js} +8 -9
  118. package/dist/plugin.js.map +1 -0
  119. package/dist/plugins/postcss/{mergeMediaQueries.d.mts → mergeMediaQueries.d.ts} +2 -2
  120. package/dist/plugins/postcss/mergeMediaQueries.d.ts.map +1 -0
  121. package/dist/plugins/postcss/{mergeMediaQueries.mjs → mergeMediaQueries.js} +2 -3
  122. package/dist/plugins/postcss/mergeMediaQueries.js.map +1 -0
  123. package/dist/plugins/postcss/{pruneVars.d.mts → pruneVars.d.ts} +1 -1
  124. package/dist/plugins/postcss/pruneVars.d.ts.map +1 -0
  125. package/dist/plugins/postcss/{pruneVars.mjs → pruneVars.js} +2 -2
  126. package/dist/plugins/postcss/pruneVars.js.map +1 -0
  127. package/dist/plugins/postcss/quoteFontFamilies.d.ts +13 -0
  128. package/dist/plugins/postcss/quoteFontFamilies.d.ts.map +1 -0
  129. package/dist/plugins/postcss/quoteFontFamilies.js +84 -0
  130. package/dist/plugins/postcss/quoteFontFamilies.js.map +1 -0
  131. package/dist/plugins/postcss/{removeDeclarations.d.mts → removeDeclarations.d.ts} +1 -1
  132. package/dist/plugins/postcss/removeDeclarations.d.ts.map +1 -0
  133. package/dist/plugins/postcss/{removeDeclarations.mjs → removeDeclarations.js} +2 -2
  134. package/dist/plugins/postcss/removeDeclarations.js.map +1 -0
  135. package/dist/plugins/postcss/resolveMaizzleImports.d.ts +16 -0
  136. package/dist/plugins/postcss/resolveMaizzleImports.d.ts.map +1 -0
  137. package/dist/plugins/postcss/resolveMaizzleImports.js +39 -0
  138. package/dist/plugins/postcss/resolveMaizzleImports.js.map +1 -0
  139. package/dist/plugins/postcss/resolveProps.d.ts +8 -0
  140. package/dist/plugins/postcss/resolveProps.d.ts.map +1 -0
  141. package/dist/plugins/postcss/resolveProps.js +155 -0
  142. package/dist/plugins/postcss/resolveProps.js.map +1 -0
  143. package/dist/plugins/postcss/{tailwindCleanup.d.mts → tailwindCleanup.d.ts} +2 -2
  144. package/dist/plugins/postcss/tailwindCleanup.d.ts.map +1 -0
  145. package/dist/plugins/postcss/{tailwindCleanup.mjs → tailwindCleanup.js} +5 -3
  146. package/dist/plugins/postcss/tailwindCleanup.js.map +1 -0
  147. package/dist/prepare.d.ts +17 -0
  148. package/dist/prepare.d.ts.map +1 -0
  149. package/dist/prepare.js +44 -0
  150. package/dist/prepare.js.map +1 -0
  151. package/dist/render/active.d.ts +8 -0
  152. package/dist/render/active.d.ts.map +1 -0
  153. package/dist/render/active.js +12 -0
  154. package/dist/render/active.js.map +1 -0
  155. package/dist/render/buildTemplate.d.ts +49 -0
  156. package/dist/render/buildTemplate.d.ts.map +1 -0
  157. package/dist/render/buildTemplate.js +141 -0
  158. package/dist/render/buildTemplate.js.map +1 -0
  159. package/dist/render/{createRenderer.d.mts → createRenderer.d.ts} +14 -6
  160. package/dist/render/createRenderer.d.ts.map +1 -0
  161. package/dist/render/createRenderer.js +468 -0
  162. package/dist/render/createRenderer.js.map +1 -0
  163. package/dist/render/index.d.ts +18 -0
  164. package/dist/render/index.d.ts.map +1 -0
  165. package/dist/render/index.js +59 -0
  166. package/dist/render/index.js.map +1 -0
  167. package/dist/render/injectFonts.d.ts +15 -0
  168. package/dist/render/injectFonts.d.ts.map +1 -0
  169. package/dist/render/injectFonts.js +45 -0
  170. package/dist/render/injectFonts.js.map +1 -0
  171. package/dist/render/parallel/buildWorker.d.ts +31 -0
  172. package/dist/render/parallel/buildWorker.d.ts.map +1 -0
  173. package/dist/render/parallel/buildWorker.js +66 -0
  174. package/dist/render/parallel/buildWorker.js.map +1 -0
  175. package/dist/render/parallel/worker.mjs +28 -0
  176. package/dist/render/plugins/codeBlockExtract.d.ts +14 -0
  177. package/dist/render/plugins/codeBlockExtract.d.ts.map +1 -0
  178. package/dist/render/plugins/codeBlockExtract.js +38 -0
  179. package/dist/render/plugins/codeBlockExtract.js.map +1 -0
  180. package/dist/render/plugins/markdownExtract.d.ts +12 -0
  181. package/dist/render/plugins/markdownExtract.d.ts.map +1 -0
  182. package/dist/render/plugins/markdownExtract.js +49 -0
  183. package/dist/render/plugins/markdownExtract.js.map +1 -0
  184. package/dist/render/plugins/rawExtract.d.ts +14 -0
  185. package/dist/render/plugins/rawExtract.d.ts.map +1 -0
  186. package/dist/render/plugins/rawExtract.js +34 -0
  187. package/dist/render/plugins/rawExtract.js.map +1 -0
  188. package/dist/render/plugins/rowSourceLocation.d.ts +18 -0
  189. package/dist/render/plugins/rowSourceLocation.d.ts.map +1 -0
  190. package/dist/render/plugins/rowSourceLocation.js +45 -0
  191. package/dist/render/plugins/rowSourceLocation.js.map +1 -0
  192. package/dist/{serve.d.mts → serve.d.ts} +5 -3
  193. package/dist/serve.d.ts.map +1 -0
  194. package/dist/{serve.mjs → serve.js} +248 -119
  195. package/dist/serve.js.map +1 -0
  196. package/dist/server/compatibility.d.ts +59 -0
  197. package/dist/server/compatibility.d.ts.map +1 -0
  198. package/dist/server/compatibility.js +959 -0
  199. package/dist/server/compatibility.js.map +1 -0
  200. package/dist/server/{email.d.mts → email.d.ts} +2 -2
  201. package/dist/server/email.d.ts.map +1 -0
  202. package/dist/server/{email.mjs → email.js} +2 -3
  203. package/dist/server/email.js.map +1 -0
  204. package/dist/server/linter.d.ts +20 -0
  205. package/dist/server/linter.d.ts.map +1 -0
  206. package/dist/server/linter.js +345 -0
  207. package/dist/server/linter.js.map +1 -0
  208. package/dist/server/sfc-utils.d.ts +21 -0
  209. package/dist/server/sfc-utils.d.ts.map +1 -0
  210. package/dist/server/sfc-utils.js +198 -0
  211. package/dist/server/sfc-utils.js.map +1 -0
  212. package/dist/server/ui/.vite/deps/@lucide_vue.js +44967 -0
  213. package/dist/server/ui/.vite/deps/@lucide_vue.js.map +1 -0
  214. package/dist/server/ui/.vite/deps/@vueuse_core.js +8155 -0
  215. package/dist/server/ui/.vite/deps/@vueuse_core.js.map +1 -0
  216. package/dist/server/ui/.vite/deps/@vueuse_shared.js +1859 -0
  217. package/dist/server/ui/.vite/deps/@vueuse_shared.js.map +1 -0
  218. package/dist/server/ui/.vite/deps/_metadata.json +78 -0
  219. package/dist/server/ui/.vite/deps/chunk-EAsCxrDo.js +14 -0
  220. package/dist/server/ui/.vite/deps/class-variance-authority.js +57 -0
  221. package/dist/server/ui/.vite/deps/class-variance-authority.js.map +1 -0
  222. package/dist/server/ui/.vite/deps/clsx.js +18 -0
  223. package/dist/server/ui/.vite/deps/clsx.js.map +1 -0
  224. package/dist/server/ui/.vite/deps/culori.js +4312 -0
  225. package/dist/server/ui/.vite/deps/culori.js.map +1 -0
  226. package/dist/server/ui/.vite/deps/package.json +3 -0
  227. package/dist/server/ui/.vite/deps/reka-ui.js +44464 -0
  228. package/dist/server/ui/.vite/deps/reka-ui.js.map +1 -0
  229. package/dist/server/ui/.vite/deps/tailwind-merge.js +3458 -0
  230. package/dist/server/ui/.vite/deps/tailwind-merge.js.map +1 -0
  231. package/dist/server/ui/.vite/deps/vue-router.js +6383 -0
  232. package/dist/server/ui/.vite/deps/vue-router.js.map +1 -0
  233. package/dist/server/ui/.vite/deps/vue.js +2 -0
  234. package/dist/server/ui/.vite/deps/vue.runtime.esm-bundler-N1X0OxKs.js +8800 -0
  235. package/dist/server/ui/.vite/deps/vue.runtime.esm-bundler-N1X0OxKs.js.map +1 -0
  236. package/dist/server/ui/App.vue +106 -66
  237. package/dist/server/ui/components/SidebarClose.vue +12 -0
  238. package/dist/server/ui/components/ui/checkbox/Checkbox.vue +1 -1
  239. package/dist/server/ui/components/ui/command/Command.vue +5 -1
  240. package/dist/server/ui/components/ui/command/CommandInput.vue +2 -2
  241. package/dist/server/ui/components/ui/dialog/DialogContent.vue +1 -1
  242. package/dist/server/ui/components/ui/dialog/DialogScrollContent.vue +1 -1
  243. package/dist/server/ui/components/ui/dropdown-menu/DropdownMenuCheckboxItem.vue +1 -1
  244. package/dist/server/ui/components/ui/dropdown-menu/DropdownMenuRadioItem.vue +1 -1
  245. package/dist/server/ui/components/ui/dropdown-menu/DropdownMenuSubTrigger.vue +1 -1
  246. package/dist/server/ui/components/ui/input/Input.vue +1 -1
  247. package/dist/server/ui/components/ui/sheet/SheetContent.vue +1 -1
  248. package/dist/server/ui/components/ui/sidebar/SidebarTrigger.vue +2 -2
  249. package/dist/server/ui/components/ui/tags-input/TagsInputInput.vue +1 -1
  250. package/dist/server/ui/components/ui/tags-input/TagsInputItemDelete.vue +1 -1
  251. package/dist/server/ui/lib/emulated-dark-mode.ts +146 -0
  252. package/dist/server/ui/main.css +25 -0
  253. package/dist/server/ui/pages/Home.vue +1 -1
  254. package/dist/server/ui/pages/Preview.vue +377 -186
  255. package/dist/server/ui/vite-env.d.ts +1 -0
  256. package/dist/tests/render/_helpers.d.ts +6 -0
  257. package/dist/tests/render/_helpers.d.ts.map +1 -0
  258. package/dist/tests/render/_helpers.js +16 -0
  259. package/dist/tests/render/_helpers.js.map +1 -0
  260. package/dist/transformers/addAttributes.d.ts +42 -0
  261. package/dist/transformers/addAttributes.d.ts.map +1 -0
  262. package/dist/transformers/{addAttributes.mjs → addAttributes.js} +40 -24
  263. package/dist/transformers/addAttributes.js.map +1 -0
  264. package/dist/transformers/attributeToStyle.d.ts +38 -0
  265. package/dist/transformers/attributeToStyle.d.ts.map +1 -0
  266. package/dist/transformers/attributeToStyle.js +94 -0
  267. package/dist/transformers/attributeToStyle.js.map +1 -0
  268. package/dist/transformers/base.d.ts +71 -0
  269. package/dist/transformers/base.d.ts.map +1 -0
  270. package/dist/transformers/{base.mjs → base.js} +65 -40
  271. package/dist/transformers/base.js.map +1 -0
  272. package/dist/transformers/columnWidth.d.ts +31 -0
  273. package/dist/transformers/columnWidth.d.ts.map +1 -0
  274. package/dist/transformers/columnWidth.js +527 -0
  275. package/dist/transformers/columnWidth.js.map +1 -0
  276. package/dist/transformers/entities.d.ts +37 -0
  277. package/dist/transformers/entities.d.ts.map +1 -0
  278. package/dist/transformers/entities.js +74 -0
  279. package/dist/transformers/entities.js.map +1 -0
  280. package/dist/transformers/filters/{defaults.d.mts → defaults.d.ts} +1 -1
  281. package/dist/transformers/filters/defaults.d.ts.map +1 -0
  282. package/dist/transformers/filters/{defaults.mjs → defaults.js} +2 -2
  283. package/dist/transformers/filters/defaults.js.map +1 -0
  284. package/dist/transformers/filters/index.d.ts +43 -0
  285. package/dist/transformers/filters/index.d.ts.map +1 -0
  286. package/dist/transformers/filters/index.js +89 -0
  287. package/dist/transformers/filters/index.js.map +1 -0
  288. package/dist/transformers/format.d.ts +22 -0
  289. package/dist/transformers/format.d.ts.map +1 -0
  290. package/dist/transformers/format.js +30 -0
  291. package/dist/transformers/format.js.map +1 -0
  292. package/dist/transformers/imgWidth.d.ts +20 -0
  293. package/dist/transformers/imgWidth.d.ts.map +1 -0
  294. package/dist/transformers/imgWidth.js +76 -0
  295. package/dist/transformers/imgWidth.js.map +1 -0
  296. package/dist/transformers/{index.d.mts → index.d.ts} +4 -3
  297. package/dist/transformers/index.d.ts.map +1 -0
  298. package/dist/transformers/index.js +163 -0
  299. package/dist/transformers/index.js.map +1 -0
  300. package/dist/transformers/inlineCss.d.ts +85 -0
  301. package/dist/transformers/inlineCss.d.ts.map +1 -0
  302. package/dist/transformers/inlineCss.js +112 -0
  303. package/dist/transformers/inlineCss.js.map +1 -0
  304. package/dist/transformers/inlineLink.d.ts +35 -0
  305. package/dist/transformers/inlineLink.d.ts.map +1 -0
  306. package/dist/transformers/{inlineLink.mjs → inlineLink.js} +35 -11
  307. package/dist/transformers/inlineLink.js.map +1 -0
  308. package/dist/transformers/minify.d.ts +21 -0
  309. package/dist/transformers/minify.d.ts.map +1 -0
  310. package/dist/transformers/minify.js +25 -0
  311. package/dist/transformers/minify.js.map +1 -0
  312. package/dist/transformers/minifyCodeInline.d.ts +29 -0
  313. package/dist/transformers/minifyCodeInline.d.ts.map +1 -0
  314. package/dist/transformers/minifyCodeInline.js +36 -0
  315. package/dist/transformers/minifyCodeInline.js.map +1 -0
  316. package/dist/transformers/msoPlaceholders.d.ts +33 -0
  317. package/dist/transformers/msoPlaceholders.d.ts.map +1 -0
  318. package/dist/transformers/msoPlaceholders.js +114 -0
  319. package/dist/transformers/msoPlaceholders.js.map +1 -0
  320. package/dist/transformers/purgeCss.d.ts +43 -0
  321. package/dist/transformers/purgeCss.d.ts.map +1 -0
  322. package/dist/transformers/purgeCss.js +207 -0
  323. package/dist/transformers/purgeCss.js.map +1 -0
  324. package/dist/transformers/removeAttributes.d.ts +54 -0
  325. package/dist/transformers/removeAttributes.d.ts.map +1 -0
  326. package/dist/transformers/removeAttributes.js +72 -0
  327. package/dist/transformers/removeAttributes.js.map +1 -0
  328. package/dist/transformers/{replaceStrings.d.mts → replaceStrings.d.ts} +2 -2
  329. package/dist/transformers/replaceStrings.d.ts.map +1 -0
  330. package/dist/transformers/{replaceStrings.mjs → replaceStrings.js} +2 -2
  331. package/dist/transformers/replaceStrings.js.map +1 -0
  332. package/dist/transformers/safeSelectors.d.ts +37 -0
  333. package/dist/transformers/safeSelectors.d.ts.map +1 -0
  334. package/dist/transformers/{safeClassNames.mjs → safeSelectors.js} +40 -10
  335. package/dist/transformers/safeSelectors.js.map +1 -0
  336. package/dist/transformers/shorthandCss.d.ts +47 -0
  337. package/dist/transformers/shorthandCss.d.ts.map +1 -0
  338. package/dist/transformers/shorthandCss.js +92 -0
  339. package/dist/transformers/shorthandCss.js.map +1 -0
  340. package/dist/transformers/sixHex.d.ts +25 -0
  341. package/dist/transformers/sixHex.d.ts.map +1 -0
  342. package/dist/transformers/sixHex.js +42 -0
  343. package/dist/transformers/sixHex.js.map +1 -0
  344. package/dist/transformers/tailwindComponent.d.ts +16 -0
  345. package/dist/transformers/tailwindComponent.d.ts.map +1 -0
  346. package/dist/transformers/tailwindComponent.js +101 -0
  347. package/dist/transformers/tailwindComponent.js.map +1 -0
  348. package/dist/transformers/{tailwindcss.d.mts → tailwindcss.d.ts} +2 -2
  349. package/dist/transformers/tailwindcss.d.ts.map +1 -0
  350. package/dist/transformers/{tailwindcss.mjs → tailwindcss.js} +33 -74
  351. package/dist/transformers/tailwindcss.js.map +1 -0
  352. package/dist/transformers/urlQuery.d.ts +36 -0
  353. package/dist/transformers/urlQuery.d.ts.map +1 -0
  354. package/dist/transformers/urlQuery.js +77 -0
  355. package/dist/transformers/urlQuery.js.map +1 -0
  356. package/dist/types/{config.d.mts → config.d.ts} +231 -46
  357. package/dist/types/config.d.ts.map +1 -0
  358. package/dist/types/config.js +1 -0
  359. package/dist/types/index.d.ts +2 -0
  360. package/dist/types/index.js +1 -0
  361. package/dist/utils/ast/index.d.ts +4 -0
  362. package/dist/utils/ast/index.js +4 -0
  363. package/dist/utils/ast/{parser.d.mts → parser.d.ts} +1 -1
  364. package/dist/utils/ast/parser.d.ts.map +1 -0
  365. package/dist/utils/ast/{parser.mjs → parser.js} +2 -3
  366. package/dist/utils/ast/parser.js.map +1 -0
  367. package/dist/utils/ast/{serializer.d.mts → serializer.d.ts} +1 -1
  368. package/dist/utils/ast/serializer.d.ts.map +1 -0
  369. package/dist/utils/ast/serializer.js +46 -0
  370. package/dist/utils/ast/serializer.js.map +1 -0
  371. package/dist/utils/ast/{walker.d.mts → walker.d.ts} +1 -1
  372. package/dist/utils/ast/walker.d.ts.map +1 -0
  373. package/dist/utils/ast/{walker.mjs → walker.js} +2 -2
  374. package/dist/utils/ast/walker.js.map +1 -0
  375. package/dist/utils/cloneConfig.d.ts +13 -0
  376. package/dist/utils/cloneConfig.d.ts.map +1 -0
  377. package/dist/utils/cloneConfig.js +21 -0
  378. package/dist/utils/cloneConfig.js.map +1 -0
  379. package/dist/utils/compileTailwindCss.d.ts +16 -0
  380. package/dist/utils/compileTailwindCss.d.ts.map +1 -0
  381. package/dist/utils/compileTailwindCss.js +55 -0
  382. package/dist/utils/compileTailwindCss.js.map +1 -0
  383. package/dist/utils/componentSources.d.ts +50 -0
  384. package/dist/utils/componentSources.d.ts.map +1 -0
  385. package/dist/utils/componentSources.js +50 -0
  386. package/dist/utils/componentSources.js.map +1 -0
  387. package/dist/utils/cssBox.d.ts +42 -0
  388. package/dist/utils/cssBox.d.ts.map +1 -0
  389. package/dist/utils/cssBox.js +151 -0
  390. package/dist/utils/cssBox.js.map +1 -0
  391. package/dist/utils/decodeStyleEntities.d.ts +15 -0
  392. package/dist/utils/decodeStyleEntities.d.ts.map +1 -0
  393. package/dist/utils/decodeStyleEntities.js +18 -0
  394. package/dist/utils/decodeStyleEntities.js.map +1 -0
  395. package/dist/utils/{detect.d.mts → detect.d.ts} +1 -1
  396. package/dist/utils/detect.d.ts.map +1 -0
  397. package/dist/utils/{detect.mjs → detect.js} +2 -3
  398. package/dist/utils/detect.js.map +1 -0
  399. package/dist/utils/output-markers.d.ts +29 -0
  400. package/dist/utils/output-markers.d.ts.map +1 -0
  401. package/dist/utils/output-markers.js +68 -0
  402. package/dist/utils/output-markers.js.map +1 -0
  403. package/dist/utils/{url.d.mts → url.d.ts} +1 -1
  404. package/dist/utils/url.d.ts.map +1 -0
  405. package/dist/utils/{url.mjs → url.js} +2 -3
  406. package/dist/utils/url.js.map +1 -0
  407. package/dist/utils/watchPaths.d.ts +11 -0
  408. package/dist/utils/watchPaths.d.ts.map +1 -0
  409. package/dist/utils/watchPaths.js +19 -0
  410. package/dist/utils/watchPaths.js.map +1 -0
  411. package/node_modules/@clack/core/CHANGELOG.md +44 -0
  412. package/node_modules/@clack/core/dist/index.d.mts +125 -5
  413. package/node_modules/@clack/core/dist/index.mjs +972 -11
  414. package/node_modules/@clack/core/package.json +6 -2
  415. package/node_modules/@clack/prompts/CHANGELOG.md +70 -0
  416. package/node_modules/@clack/prompts/README.md +129 -3
  417. package/node_modules/@clack/prompts/dist/index.d.mts +567 -33
  418. package/node_modules/@clack/prompts/dist/index.mjs +1378 -133
  419. package/node_modules/@clack/prompts/package.json +7 -4
  420. package/node_modules/fast-string-truncated-width/dist/index.js +36 -96
  421. package/node_modules/fast-string-truncated-width/dist/types.d.ts +0 -3
  422. package/node_modules/fast-string-truncated-width/dist/utils.d.ts +3 -3
  423. package/node_modules/fast-string-truncated-width/dist/utils.js +14 -9
  424. package/node_modules/fast-string-truncated-width/package.json +1 -1
  425. package/node_modules/fast-string-truncated-width/readme.md +2 -3
  426. package/node_modules/fast-string-width/package.json +2 -2
  427. package/node_modules/fast-string-width/readme.md +0 -3
  428. package/node_modules/fast-wrap-ansi/lib/main.js +4 -2
  429. package/node_modules/fast-wrap-ansi/package.json +11 -11
  430. package/node_modules/maizzle/README.md +24 -0
  431. package/node_modules/maizzle/dist/commands/make/component.mjs +1 -1
  432. package/node_modules/maizzle/dist/commands/make/config.mjs +8 -7
  433. package/node_modules/maizzle/dist/commands/make/layout.mjs +3 -3
  434. package/node_modules/maizzle/dist/commands/make/scaffold.mjs +1 -1
  435. package/node_modules/maizzle/dist/commands/make/stubs/Layout.vue +146 -0
  436. package/node_modules/maizzle/dist/commands/make/stubs/component.vue +2 -4
  437. package/node_modules/maizzle/dist/commands/make/stubs/config.ts +1 -5
  438. package/node_modules/maizzle/dist/commands/make/template.mjs +1 -1
  439. package/node_modules/maizzle/dist/commands/new.mjs +46 -135
  440. package/node_modules/maizzle/dist/index.d.mts +1 -0
  441. package/node_modules/maizzle/dist/index.mjs +30 -7
  442. package/node_modules/maizzle/package.json +5 -4
  443. package/node_modules/nypm/dist/cli.mjs +28 -5
  444. package/node_modules/nypm/dist/index.d.mts +0 -8
  445. package/node_modules/nypm/dist/index.mjs +27 -4
  446. package/node_modules/nypm/package.json +12 -12
  447. package/node_modules/tinyexec/README.md +9 -1
  448. package/node_modules/tinyexec/dist/main.d.mts +22 -7
  449. package/node_modules/tinyexec/dist/main.mjs +189 -491
  450. package/node_modules/tinyexec/package.json +14 -16
  451. package/package.json +38 -31
  452. package/dist/_virtual/_rolldown/runtime.mjs +0 -32
  453. package/dist/build.d.mts +0 -19
  454. package/dist/build.d.mts.map +0 -1
  455. package/dist/build.mjs +0 -141
  456. package/dist/build.mjs.map +0 -1
  457. package/dist/components/Divider.vue +0 -133
  458. package/dist/components/Image.vue +0 -70
  459. package/dist/components/Overlap.vue +0 -80
  460. package/dist/components/utils.d.mts +0 -5
  461. package/dist/components/utils.d.mts.map +0 -1
  462. package/dist/components/utils.mjs +0 -9
  463. package/dist/components/utils.mjs.map +0 -1
  464. package/dist/composables/defineConfig.d.mts +0 -14
  465. package/dist/composables/defineConfig.d.mts.map +0 -1
  466. package/dist/composables/defineConfig.mjs.map +0 -1
  467. package/dist/composables/renderContext.d.mts +0 -24
  468. package/dist/composables/renderContext.d.mts.map +0 -1
  469. package/dist/composables/renderContext.mjs +0 -6
  470. package/dist/composables/renderContext.mjs.map +0 -1
  471. package/dist/composables/useConfig.d.mts +0 -9
  472. package/dist/composables/useConfig.d.mts.map +0 -1
  473. package/dist/composables/useConfig.mjs +0 -13
  474. package/dist/composables/useConfig.mjs.map +0 -1
  475. package/dist/composables/useDoctype.d.mts.map +0 -1
  476. package/dist/composables/useDoctype.mjs.map +0 -1
  477. package/dist/composables/useEvent.d.mts.map +0 -1
  478. package/dist/composables/useEvent.mjs.map +0 -1
  479. package/dist/composables/usePlaintext.d.mts.map +0 -1
  480. package/dist/composables/usePlaintext.mjs.map +0 -1
  481. package/dist/composables/usePreviewText.d.mts +0 -24
  482. package/dist/composables/usePreviewText.d.mts.map +0 -1
  483. package/dist/composables/usePreviewText.mjs +0 -29
  484. package/dist/composables/usePreviewText.mjs.map +0 -1
  485. package/dist/config/defaults.d.mts.map +0 -1
  486. package/dist/config/defaults.mjs.map +0 -1
  487. package/dist/config/index.d.mts +0 -15
  488. package/dist/config/index.d.mts.map +0 -1
  489. package/dist/config/index.mjs +0 -71
  490. package/dist/config/index.mjs.map +0 -1
  491. package/dist/events/index.d.mts.map +0 -1
  492. package/dist/events/index.mjs.map +0 -1
  493. package/dist/index.d.mts +0 -31
  494. package/dist/index.mjs +0 -31
  495. package/dist/node_modules/picomatch/index.mjs +0 -13
  496. package/dist/node_modules/picomatch/index.mjs.map +0 -1
  497. package/dist/node_modules/picomatch/lib/constants.mjs +0 -174
  498. package/dist/node_modules/picomatch/lib/constants.mjs.map +0 -1
  499. package/dist/node_modules/picomatch/lib/parse.mjs +0 -1067
  500. package/dist/node_modules/picomatch/lib/parse.mjs.map +0 -1
  501. package/dist/node_modules/picomatch/lib/picomatch.mjs +0 -304
  502. package/dist/node_modules/picomatch/lib/picomatch.mjs.map +0 -1
  503. package/dist/node_modules/picomatch/lib/scan.mjs +0 -296
  504. package/dist/node_modules/picomatch/lib/scan.mjs.map +0 -1
  505. package/dist/node_modules/picomatch/lib/utils.mjs +0 -53
  506. package/dist/node_modules/picomatch/lib/utils.mjs.map +0 -1
  507. package/dist/plaintext.d.mts.map +0 -1
  508. package/dist/plaintext.mjs.map +0 -1
  509. package/dist/plugin.d.mts.map +0 -1
  510. package/dist/plugin.mjs.map +0 -1
  511. package/dist/plugins/postcss/mergeMediaQueries.d.mts.map +0 -1
  512. package/dist/plugins/postcss/mergeMediaQueries.mjs.map +0 -1
  513. package/dist/plugins/postcss/pruneVars.d.mts.map +0 -1
  514. package/dist/plugins/postcss/pruneVars.mjs.map +0 -1
  515. package/dist/plugins/postcss/removeDeclarations.d.mts.map +0 -1
  516. package/dist/plugins/postcss/removeDeclarations.mjs.map +0 -1
  517. package/dist/plugins/postcss/tailwindCleanup.d.mts.map +0 -1
  518. package/dist/plugins/postcss/tailwindCleanup.mjs.map +0 -1
  519. package/dist/render/createRenderer.d.mts.map +0 -1
  520. package/dist/render/createRenderer.mjs +0 -286
  521. package/dist/render/createRenderer.mjs.map +0 -1
  522. package/dist/render/index.d.mts +0 -26
  523. package/dist/render/index.d.mts.map +0 -1
  524. package/dist/render/index.mjs +0 -46
  525. package/dist/render/index.mjs.map +0 -1
  526. package/dist/serve.d.mts.map +0 -1
  527. package/dist/serve.mjs.map +0 -1
  528. package/dist/server/compatibility.d.mts +0 -5
  529. package/dist/server/compatibility.d.mts.map +0 -1
  530. package/dist/server/compatibility.mjs +0 -97
  531. package/dist/server/compatibility.mjs.map +0 -1
  532. package/dist/server/email.d.mts.map +0 -1
  533. package/dist/server/email.mjs.map +0 -1
  534. package/dist/server/linter.d.mts +0 -5
  535. package/dist/server/linter.d.mts.map +0 -1
  536. package/dist/server/linter.mjs +0 -189
  537. package/dist/server/linter.mjs.map +0 -1
  538. package/dist/transformers/addAttributes.d.mts +0 -32
  539. package/dist/transformers/addAttributes.d.mts.map +0 -1
  540. package/dist/transformers/addAttributes.mjs.map +0 -1
  541. package/dist/transformers/attributeToStyle.d.mts +0 -25
  542. package/dist/transformers/attributeToStyle.d.mts.map +0 -1
  543. package/dist/transformers/attributeToStyle.mjs +0 -80
  544. package/dist/transformers/attributeToStyle.mjs.map +0 -1
  545. package/dist/transformers/base.d.mts +0 -8
  546. package/dist/transformers/base.d.mts.map +0 -1
  547. package/dist/transformers/base.mjs.map +0 -1
  548. package/dist/transformers/entities.d.mts +0 -8
  549. package/dist/transformers/entities.d.mts.map +0 -1
  550. package/dist/transformers/entities.mjs +0 -41
  551. package/dist/transformers/entities.mjs.map +0 -1
  552. package/dist/transformers/filters/defaults.d.mts.map +0 -1
  553. package/dist/transformers/filters/defaults.mjs.map +0 -1
  554. package/dist/transformers/filters/index.d.mts +0 -22
  555. package/dist/transformers/filters/index.d.mts.map +0 -1
  556. package/dist/transformers/filters/index.mjs +0 -67
  557. package/dist/transformers/filters/index.mjs.map +0 -1
  558. package/dist/transformers/format.d.mts +0 -15
  559. package/dist/transformers/format.d.mts.map +0 -1
  560. package/dist/transformers/format.mjs +0 -26
  561. package/dist/transformers/format.mjs.map +0 -1
  562. package/dist/transformers/index.d.mts.map +0 -1
  563. package/dist/transformers/index.mjs +0 -81
  564. package/dist/transformers/index.mjs.map +0 -1
  565. package/dist/transformers/inlineCSS.d.mts +0 -17
  566. package/dist/transformers/inlineCSS.d.mts.map +0 -1
  567. package/dist/transformers/inlineCSS.mjs +0 -70
  568. package/dist/transformers/inlineCSS.mjs.map +0 -1
  569. package/dist/transformers/inlineLink.d.mts +0 -14
  570. package/dist/transformers/inlineLink.d.mts.map +0 -1
  571. package/dist/transformers/inlineLink.mjs.map +0 -1
  572. package/dist/transformers/minify.d.mts +0 -17
  573. package/dist/transformers/minify.d.mts.map +0 -1
  574. package/dist/transformers/minify.mjs +0 -24
  575. package/dist/transformers/minify.mjs.map +0 -1
  576. package/dist/transformers/purgeCSS.d.mts +0 -23
  577. package/dist/transformers/purgeCSS.d.mts.map +0 -1
  578. package/dist/transformers/purgeCSS.mjs +0 -132
  579. package/dist/transformers/purgeCSS.mjs.map +0 -1
  580. package/dist/transformers/removeAttributes.d.mts +0 -31
  581. package/dist/transformers/removeAttributes.d.mts.map +0 -1
  582. package/dist/transformers/removeAttributes.mjs +0 -63
  583. package/dist/transformers/removeAttributes.mjs.map +0 -1
  584. package/dist/transformers/replaceStrings.d.mts.map +0 -1
  585. package/dist/transformers/replaceStrings.mjs.map +0 -1
  586. package/dist/transformers/safeClassNames.d.mts +0 -22
  587. package/dist/transformers/safeClassNames.d.mts.map +0 -1
  588. package/dist/transformers/safeClassNames.mjs.map +0 -1
  589. package/dist/transformers/shorthandCSS.d.mts +0 -24
  590. package/dist/transformers/shorthandCSS.d.mts.map +0 -1
  591. package/dist/transformers/shorthandCSS.mjs +0 -48
  592. package/dist/transformers/shorthandCSS.mjs.map +0 -1
  593. package/dist/transformers/sixHex.d.mts +0 -16
  594. package/dist/transformers/sixHex.d.mts.map +0 -1
  595. package/dist/transformers/sixHex.mjs +0 -30
  596. package/dist/transformers/sixHex.mjs.map +0 -1
  597. package/dist/transformers/tailwindcss.d.mts.map +0 -1
  598. package/dist/transformers/tailwindcss.mjs.map +0 -1
  599. package/dist/transformers/urlQuery.d.mts +0 -24
  600. package/dist/transformers/urlQuery.d.mts.map +0 -1
  601. package/dist/transformers/urlQuery.mjs +0 -65
  602. package/dist/transformers/urlQuery.mjs.map +0 -1
  603. package/dist/types/config.d.mts.map +0 -1
  604. package/dist/types/config.mjs +0 -1
  605. package/dist/types/index.d.mts +0 -2
  606. package/dist/types/index.mjs +0 -1
  607. package/dist/utils/ast/index.d.mts +0 -4
  608. package/dist/utils/ast/index.mjs +0 -5
  609. package/dist/utils/ast/parser.d.mts.map +0 -1
  610. package/dist/utils/ast/parser.mjs.map +0 -1
  611. package/dist/utils/ast/serializer.d.mts.map +0 -1
  612. package/dist/utils/ast/serializer.mjs +0 -37
  613. package/dist/utils/ast/serializer.mjs.map +0 -1
  614. package/dist/utils/ast/walker.d.mts.map +0 -1
  615. package/dist/utils/ast/walker.mjs.map +0 -1
  616. package/dist/utils/detect.d.mts.map +0 -1
  617. package/dist/utils/detect.mjs.map +0 -1
  618. package/dist/utils/url.d.mts.map +0 -1
  619. package/dist/utils/url.mjs.map +0 -1
  620. package/node_modules/@clack/core/dist/index.mjs.map +0 -1
  621. package/node_modules/@clack/prompts/dist/index.mjs.map +0 -1
  622. package/node_modules/fast-wrap-ansi/lib/main.js.map +0 -1
  623. package/node_modules/maizzle/dist/commands/make/stubs/layout.vue +0 -39
  624. package/node_modules/tinyexec/dist/LICENSES.txt +0 -83
@@ -1,4 +1,4 @@
1
- import { State, AutocompletePrompt, DateFormat } from '@clack/core';
1
+ import { State, AutocompletePrompt, Validate, DateFormat } from '@clack/core';
2
2
  export { ClackSettings, DateFormat, isCancel, settings, updateSettings } from '@clack/core';
3
3
  import { Readable, Writable } from 'node:stream';
4
4
 
@@ -98,137 +98,478 @@ interface SelectOptions<Value> extends CommonOptions {
98
98
  }
99
99
  declare const select: <Value>(opts: SelectOptions<Value>) => Promise<Value | symbol>;
100
100
 
101
+ /**
102
+ * Options for the {@link autocomplete} prompt.
103
+ */
101
104
  interface AutocompleteSharedOptions<Value> extends CommonOptions {
102
105
  /**
103
- * The message to display to the user.
106
+ * The message or question shown to the user above the input.
104
107
  */
105
108
  message: string;
106
109
  /**
107
- * Available options for the autocomplete prompt.
110
+ * The options to present, or a function that returns the options to present
111
+ * allowing for custom search/filtering.
112
+ *
113
+ * @see https://bomb.sh/docs/clack/packages/prompts/#dynamic-options-getter
108
114
  */
109
115
  options: Option<Value>[] | ((this: AutocompletePrompt<Option<Value>>) => Option<Value>[]);
110
116
  /**
111
- * Maximum number of items to display at once.
117
+ * The maximum number of items/options to display in the autocomplete list at once.
112
118
  */
113
119
  maxItems?: number;
114
120
  /**
115
- * Placeholder text to display when no input is provided.
121
+ * Placeholder text displayed when the search field is empty. When set, pressing
122
+ * tab copies the placeholder into the input.
116
123
  */
117
124
  placeholder?: string;
118
125
  /**
119
- * Validates the value
126
+ * A function or a [Standard Schema](https://github.com/standard-schema/standard-schema)
127
+ * that validates user input. If a custom function is given, you should return a `string` or `Error`
128
+ * to show as a validation error, or `undefined` to accept the result.
120
129
  */
121
- validate?: (value: Value | Value[] | undefined) => string | Error | undefined;
130
+ validate?: Validate<Value | Value[]>;
122
131
  /**
123
- * Custom filter function to match options against search input.
124
- * If not provided, a default filter that matches label, hint, and value is used.
132
+ * Custom filter function to match options against the search input.
125
133
  */
126
134
  filter?: (search: string, option: Option<Value>) => boolean;
127
135
  }
128
136
  interface AutocompleteOptions<Value> extends AutocompleteSharedOptions<Value> {
129
137
  /**
130
- * The initial selected value.
138
+ * The initially selected option from the list.
131
139
  */
132
140
  initialValue?: Value;
133
141
  /**
134
- * The initial user input
142
+ * The starting value shown in the users input box.
135
143
  */
136
144
  initialUserInput?: string;
137
145
  }
146
+ /**
147
+ * The `autocomplete` prompt combines a text input with a searchable list of options.
148
+ * It's perfect for when you have a large list of options and want to help users
149
+ * find what they're looking for quickly.
150
+ *
151
+ * @see https://bomb.sh/docs/clack/packages/prompts/#autocomplete
152
+ *
153
+ * @example
154
+ * ```ts
155
+ * import { autocomplete } from '@clack/prompts';
156
+ *
157
+ * const framework = await autocomplete({
158
+ * message: 'Search for a framework',
159
+ * options: [
160
+ * { value: 'next', label: 'Next.js', hint: 'React framework' },
161
+ * { value: 'astro', label: 'Astro', hint: 'Content-focused' },
162
+ * { value: 'svelte', label: 'SvelteKit', hint: 'Compile-time framework' },
163
+ * { value: 'remix', label: 'Remix', hint: 'Full stack framework' },
164
+ * { value: 'nuxt', label: 'Nuxt', hint: 'Vue framework' },
165
+ * ],
166
+ * placeholder: 'Type to search...',
167
+ * maxItems: 5,
168
+ * });
169
+ * ```
170
+ */
138
171
  declare const autocomplete: <Value>(opts: AutocompleteOptions<Value>) => Promise<Value | symbol>;
172
+ /**
173
+ * Options for the {@link autocompleteMultiselect} prompt
174
+ */
139
175
  interface AutocompleteMultiSelectOptions<Value> extends AutocompleteSharedOptions<Value> {
140
176
  /**
141
- * The initial selected values
177
+ * The initially selected option(s) from the list.
142
178
  */
143
179
  initialValues?: Value[];
144
180
  /**
145
- * If true, at least one option must be selected
181
+ * When `true` at least one option must be selected.
182
+ * @default false
146
183
  */
147
184
  required?: boolean;
148
185
  }
149
186
  /**
150
- * Integrated autocomplete multiselect - combines type-ahead filtering with multiselect in one UI
187
+ * The `autocompleteMultiselect` prompt combines the search functionality of autocomplete
188
+ * with the ability to select multiple options.
189
+ *
190
+ * @see https://bomb.sh/docs/clack/packages/prompts/#autocomplete-multiselect
191
+ *
192
+ * @example
193
+ * ```ts
194
+ * import { autocompleteMultiselect } from '@clack/prompts';
195
+ *
196
+ * const frameworks = await autocompleteMultiselect({
197
+ * message: 'Select frameworks',
198
+ * options: [
199
+ * { value: 'next', label: 'Next.js', hint: 'React framework' },
200
+ * { value: 'astro', label: 'Astro', hint: 'Content-focused' },
201
+ * { value: 'svelte', label: 'SvelteKit', hint: 'Compile-time framework' },
202
+ * { value: 'remix', label: 'Remix', hint: 'Full stack framework' },
203
+ * { value: 'nuxt', label: 'Nuxt', hint: 'Vue framework' },
204
+ * ],
205
+ * placeholder: 'Type to search...',
206
+ * maxItems: 5,
207
+ * });
208
+ * ```
151
209
  */
152
210
  declare const autocompleteMultiselect: <Value>(opts: AutocompleteMultiSelectOptions<Value>) => Promise<Value[] | symbol>;
153
211
 
212
+ /**
213
+ * Alignment for content or titles within the box.
214
+ */
154
215
  type BoxAlignment = 'left' | 'center' | 'right';
216
+ /**
217
+ * Options for the {@link box} prompt.
218
+ */
155
219
  interface BoxOptions extends CommonOptions {
220
+ /**
221
+ * Alignment of the content (`'left'`, `'center'`, or `'right'`).
222
+ * @default 'left'
223
+ */
156
224
  contentAlign?: BoxAlignment;
225
+ /**
226
+ * Alignment of the title (`'left'`, `'center'`, or `'right'`).
227
+ * @default 'left'
228
+ */
157
229
  titleAlign?: BoxAlignment;
230
+ /**
231
+ * The width of the box, either `'auto'` to fit the content or a number for a fixed width.
232
+ * @default 'auto'
233
+ */
158
234
  width?: number | 'auto';
235
+ /**
236
+ * Padding around the title.
237
+ * @default 1
238
+ */
159
239
  titlePadding?: number;
240
+ /**
241
+ * Padding around the content.
242
+ * @default 2
243
+ */
160
244
  contentPadding?: number;
245
+ /**
246
+ * Use rounded corners when `true`, square corners when `false`.
247
+ * @default true
248
+ */
161
249
  rounded?: boolean;
250
+ /**
251
+ * Custom function to style the border characters.
252
+ */
162
253
  formatBorder?: (text: string) => string;
163
254
  }
255
+ /**
256
+ * Renders a customizable box around text content. It's similar to {@link note} but offers
257
+ * more styling options.
258
+ *
259
+ * @see https://bomb.sh/docs/clack/packages/prompts/#box
260
+ *
261
+ * @param message - The content to display inside the box.
262
+ * @param title - The title to display in the top border of the box.
263
+ * @param opts - Optional configuration for the box styling and behavior.
264
+ *
265
+ * @example
266
+ * ```ts
267
+ * import { box } from '@clack/prompts';
268
+ *
269
+ * box('This is the content of the box', 'Box Title', {
270
+ * contentAlign: 'center',
271
+ * titleAlign: 'center',
272
+ * width: 'auto',
273
+ * rounded: true,
274
+ * });
275
+ * ```
276
+ */
164
277
  declare const box: (message?: string, title?: string, opts?: BoxOptions) => void;
165
278
 
279
+ /**
280
+ * Options for the {@link confirm} prompt.
281
+ */
166
282
  interface ConfirmOptions extends CommonOptions {
283
+ /**
284
+ * The message or question shown to the user above the input.
285
+ */
167
286
  message: string;
287
+ /**
288
+ * The label to use for the active (true) option.
289
+ * @default 'Yes'
290
+ */
168
291
  active?: string;
292
+ /**
293
+ * The label to use for the inactive (false) option.
294
+ * @default 'No'
295
+ */
169
296
  inactive?: string;
297
+ /**
298
+ * The initial selected value (true or false).
299
+ * @default true
300
+ */
170
301
  initialValue?: boolean;
302
+ /**
303
+ * Whether to render the options vertically instead of horizontally.
304
+ * @default false
305
+ */
171
306
  vertical?: boolean;
172
307
  }
308
+ /**
309
+ * The `confirm` prompt accepts a yes or no choice, returning a boolean value
310
+ * corresponding to the user's selection.
311
+ *
312
+ * @see https://bomb.sh/docs/clack/packages/prompts/#confirmation
313
+ *
314
+ * @example
315
+ * ```ts
316
+ * import { confirm } from '@clack/prompts';
317
+ *
318
+ * const shouldProceed = await confirm({
319
+ * message: 'Do you want to continue?',
320
+ * });
321
+ * ```
322
+ */
173
323
  declare const confirm: (opts: ConfirmOptions) => Promise<boolean | symbol>;
174
324
 
325
+ /**
326
+ * Options for the {@link date} prompt.
327
+ */
175
328
  interface DateOptions extends CommonOptions {
329
+ /**
330
+ * The message or question shown to the user above the input.
331
+ */
176
332
  message: string;
333
+ /**
334
+ * The date format for the input segments.
335
+ * @deafult based on locale
336
+ */
177
337
  format?: DateFormat;
338
+ /**
339
+ * The BCP 47 language tag to use for formatting
340
+ * @see https://developer.mozilla.org/en-US/docs/Glossary/BCP_47_language_tag
341
+ * @example "en-GB"
342
+ */
178
343
  locale?: string;
344
+ /**
345
+ * The default value returned when the user doesn't select a date.
346
+ */
179
347
  defaultValue?: Date;
348
+ /**
349
+ * The starting date shown when the prompt first renders.
350
+ * Users can edit this value before submitting.
351
+ */
180
352
  initialValue?: Date;
353
+ /**
354
+ * The minimum allowed date for validation.
355
+ */
181
356
  minDate?: Date;
357
+ /**
358
+ * The maximum allowed date for validation.
359
+ */
182
360
  maxDate?: Date;
183
- validate?: (value: Date | undefined) => string | Error | undefined;
361
+ /**
362
+ * A function or a [Standard Schema](https://github.com/standard-schema/standard-schema)
363
+ * that validates user input. If a custom function is given, you should return a `string` or `Error`
364
+ * to show as a validation error, or `undefined` to accept the result.
365
+ */
366
+ validate?: Validate<Date>;
184
367
  }
368
+ /**
369
+ * The `date` prompt provides an interactive date picker, allowing users
370
+ * to navigate between year, month, and day segments and
371
+ * increment/decrement values using keyboard controls.
372
+ *
373
+ * @see https://bomb.sh/docs/clack/packages/prompts/#date-input
374
+ *
375
+ * @example
376
+ * ```ts
377
+ * import { date } from '@clack/prompts';
378
+ *
379
+ * const birthday = await date({
380
+ * message: 'Pick your birthday',
381
+ * minDate: new Date('1900-01-01'),
382
+ * initialValue: new Date(),
383
+ * maxDate: new Date(),
384
+ * });
385
+ * ```
386
+ */
185
387
  declare const date: (opts: DateOptions) => Promise<Date | symbol>;
186
388
 
187
389
  type Prettify<T> = {
188
390
  [P in keyof T]: T[P];
189
391
  } & {};
392
+ /**
393
+ * The return type of a {@link PromptGroup}.
394
+ * Resolves all prompt results, excluding the cancel symbol.
395
+ */
190
396
  type PromptGroupAwaitedReturn<T> = {
191
397
  [P in keyof T]: Exclude<Awaited<T[P]>, symbol>;
192
398
  };
399
+ /**
400
+ * Options for the {@link group} utility.
401
+ */
193
402
  interface PromptGroupOptions<T> {
194
403
  /**
195
- * Control how the group can be canceled
196
- * if one of the prompts is canceled.
404
+ * Called when any one of the prompts is canceled.
197
405
  */
198
406
  onCancel?: (opts: {
199
407
  results: Prettify<Partial<PromptGroupAwaitedReturn<T>>>;
200
408
  }) => void;
201
409
  }
410
+ /**
411
+ * A group of prompts to be displayed sequentially, with each prompt receiving
412
+ * the results of all previous prompts in the group.
413
+ */
202
414
  type PromptGroup<T> = {
203
415
  [P in keyof T]: (opts: {
204
416
  results: Prettify<Partial<PromptGroupAwaitedReturn<Omit<T, P>>>>;
205
417
  }) => undefined | Promise<T[P] | undefined>;
206
418
  };
207
419
  /**
208
- * Define a group of prompts to be displayed
209
- * and return a results of objects within the group
420
+ * The `group` utility provides a consistent way to combine a series of prompts,
421
+ * combining each answer into one object. Each prompt receives the results of
422
+ * all previously completed prompts, and are displayed sequentially.
423
+ *
424
+ * @see https://bomb.sh/docs/clack/packages/prompts/#group
425
+ *
426
+ * @example
427
+ * ```ts
428
+ * import { group, text, password } from '@clack/prompts';
429
+ *
430
+ * const account = await group({
431
+ * email: () => text({
432
+ * message: 'What is your email address?',
433
+ * }),
434
+ * username: ({ results }) => text({
435
+ * message: 'What is your username?',
436
+ * placeholder: results.email?.replace(/@.+$/, '').toLowerCase() ?? '',
437
+ * }),
438
+ * password: () => password({
439
+ * message: 'Define your password',
440
+ * }),
441
+ * });
442
+ * ```
210
443
  */
211
444
  declare const group: <T>(prompts: PromptGroup<T>, opts?: PromptGroupOptions<T>) => Promise<Prettify<PromptGroupAwaitedReturn<T>>>;
212
445
 
446
+ /**
447
+ * Options for the {@link groupMultiselect} prompt.
448
+ */
213
449
  interface GroupMultiSelectOptions<Value> extends CommonOptions {
450
+ /**
451
+ * The message or question shown to the user above the input.
452
+ */
214
453
  message: string;
454
+ /**
455
+ * Grouped options to display. Each key is a group label, and each value is an array of options.
456
+ */
215
457
  options: Record<string, Option<Value>[]>;
458
+ /**
459
+ * The initially selected option(s).
460
+ */
216
461
  initialValues?: Value[];
462
+ /**
463
+ * The maximum number of items/options to display at once.
464
+ */
465
+ maxItems?: number;
466
+ /**
467
+ * When `true` at least one option must be selected.
468
+ * @default true
469
+ */
217
470
  required?: boolean;
471
+ /**
472
+ * The value the cursor should be positioned at initially.
473
+ */
218
474
  cursorAt?: Value;
475
+ /**
476
+ * Whether entire groups can be selected at once.
477
+ * @default true
478
+ */
219
479
  selectableGroups?: boolean;
480
+ /**
481
+ * Number of blank lines between groups.
482
+ * @default 0
483
+ */
220
484
  groupSpacing?: number;
221
485
  }
486
+ /**
487
+ * The `groupMultiselect` prompt extends the {@link multiselect} prompt to allow
488
+ * arranging distinct Multi-Selects, whilst keeping all of them interactive.
489
+ *
490
+ * @see https://bomb.sh/docs/clack/packages/prompts/#group-multiselect
491
+ *
492
+ * @example
493
+ * ```ts
494
+ * import { groupMultiselect } from '@clack/prompts';
495
+ *
496
+ * const result = await groupMultiselect({
497
+ * message: 'Define your project',
498
+ * options: {
499
+ * 'Testing': [
500
+ * { value: 'Jest', hint: 'JavaScript testing framework' },
501
+ * { value: 'Playwright', hint: 'End-to-end testing' },
502
+ * ],
503
+ * 'Language': [
504
+ * { value: 'js', label: 'JavaScript', hint: 'Dynamic typing' },
505
+ * { value: 'ts', label: 'TypeScript', hint: 'Static typing' },
506
+ * ],
507
+ * },
508
+ * });
509
+ * ```
510
+ *
511
+ * @param opts The options for the group multiselect prompt
512
+ */
222
513
  declare const groupMultiselect: <Value>(opts: GroupMultiSelectOptions<Value>) => Promise<Value[] | symbol>;
223
514
 
515
+ /**
516
+ * Options for the {@link limitOptions} function.
517
+ */
224
518
  interface LimitOptionsParams<TOption> extends CommonOptions {
519
+ /**
520
+ * The list of options to display.
521
+ */
225
522
  options: TOption[];
523
+ /**
524
+ * The index of the currently active/selected option.
525
+ */
226
526
  cursor: number;
527
+ /**
528
+ * A function that styles the given option string.
529
+ *
530
+ * @param option - The option string to style.
531
+ * @param active - Whether the option is currently selected.
532
+ */
227
533
  style: (option: TOption, active: boolean) => string;
534
+ /**
535
+ * Maximum number of options to display at once.
536
+ * @default Infinity
537
+ */
228
538
  maxItems?: number;
539
+ /**
540
+ * Number of columns to reserve for padding.
541
+ * @default 0
542
+ */
229
543
  columnPadding?: number;
544
+ /**
545
+ * Number of rows to reserve for padding.
546
+ * @default 4
547
+ */
230
548
  rowPadding?: number;
231
549
  }
550
+ /**
551
+ * Trims an option list to what fits the terminal, while keeping the active
552
+ * option (cursor) visible using a Clack style sliding window.
553
+ *
554
+ * @returns The lines to render.
555
+ *
556
+ * @see https://bomb.sh/docs/clack/packages/prompts/#limitoptions
557
+ *
558
+ * @example
559
+ * ```ts
560
+ * import { limitOptions } from '@clack/prompts';
561
+ * import { styleText } from 'node:util';
562
+ *
563
+ * const options = ['apple', 'banana', 'cherry', 'date'];
564
+ * const lines = limitOptions({
565
+ * options,
566
+ * cursor: 2,
567
+ * maxItems: 8,
568
+ * style: (opt, active) =>
569
+ * active ? styleText('cyan', opt) : styleText('dim', opt),
570
+ * });
571
+ * ```
572
+ */
232
573
  declare const limitOptions: <TOption>({ cursor, options, style, output, maxItems, columnPadding, rowPadding, }: LimitOptionsParams<TOption>) => string[];
233
574
 
234
575
  interface LogMessageOptions extends CommonOptions {
@@ -247,10 +588,138 @@ declare const log: {
247
588
  error: (message: string, opts?: LogMessageOptions) => void;
248
589
  };
249
590
 
591
+ /**
592
+ * The `cancel` function defines an interruption of an interaction
593
+ * and therefore its end.
594
+ *
595
+ * @param title Optional closing message to be displayed.
596
+ * @param opts Additional configuration options.
597
+ *
598
+ * @see https://bomb.sh/docs/clack/packages/prompts/#cancel
599
+ *
600
+ * @example
601
+ * ```ts
602
+ * import { cancel } from '@clack/prompts';
603
+ * import process from 'node:process';
604
+ *
605
+ * cancel('Installation canceled');
606
+ * process.exit(1);
607
+ * ```
608
+ */
250
609
  declare const cancel: (message?: string, opts?: CommonOptions) => void;
610
+ /**
611
+ * The `intro` function defines the beginning of an interaction.
612
+ *
613
+ * @param title Optional title to be displayed.
614
+ * @param opts Additional configuration options.
615
+ *
616
+ * @see https://bomb.sh/docs/clack/packages/prompts/#intro
617
+ *
618
+ * @example
619
+ * ```ts
620
+ * import { intro } from '@clack/prompts';
621
+ *
622
+ * intro('Welcome to clack');
623
+ * ```
624
+ */
251
625
  declare const intro: (title?: string, opts?: CommonOptions) => void;
626
+ /**
627
+ * The `outro` function defines the end of an interaction.
628
+ *
629
+ * @param title Optional closing message to be displayed.
630
+ * @param opts Additional configuration options.
631
+ *
632
+ * @see https://bomb.sh/docs/clack/packages/prompts/#outro
633
+ *
634
+ * @example
635
+ * ```ts
636
+ * import { outro } from '@clack/prompts';
637
+ *
638
+ * outro('All operations are finished');
639
+ * ```
640
+ */
252
641
  declare const outro: (message?: string, opts?: CommonOptions) => void;
253
642
 
643
+ /**
644
+ * Options for the {@link text} prompt
645
+ */
646
+ interface TextOptions extends CommonOptions {
647
+ /**
648
+ * The prompt message or question shown to the user above the input.
649
+ */
650
+ message: string;
651
+ /**
652
+ * A visual hint shown when the field has no content.
653
+ */
654
+ placeholder?: string;
655
+ /**
656
+ * A fallback value returned when the user provides nothing (empty input).
657
+ */
658
+ defaultValue?: string;
659
+ /**
660
+ * The starting value shown when the prompt first renders.
661
+ * Users can edit this value before submitting.
662
+ */
663
+ initialValue?: string;
664
+ /**
665
+ * A function or a [Standard Schema](https://github.com/standard-schema/standard-schema)
666
+ * that validates user input. If a custom function is given, you should return a `string` or `Error`
667
+ * to show as a validation error, or `undefined` to accept the result.
668
+ */
669
+ validate?: Validate<string>;
670
+ }
671
+ /**
672
+ * The text prompt accepts a single line of text.
673
+ *
674
+ * @see https://bomb.sh/docs/clack/packages/prompts/#text-input
675
+ *
676
+ * @example
677
+ * ```ts
678
+ * import { text } from '@clack/prompts';
679
+ *
680
+ * const name = await text({
681
+ * message: 'What is your name?',
682
+ * placeholder: 'John Doe',
683
+ * validate: (value) => {
684
+ * if (!value || value.length < 2) return 'Name must be at least 2 characters';
685
+ * return undefined;
686
+ * },
687
+ * });
688
+ * ```
689
+ */
690
+ declare const text: (opts: TextOptions) => Promise<string | symbol>;
691
+
692
+ /**
693
+ * Options for the {@link multiline} prompt
694
+ */
695
+ interface MultiLineOptions extends TextOptions {
696
+ /**
697
+ * When enabled it shows a `[ submit ]` button that can be focused with tab.
698
+ * By default, pressing `Enter` twice submits the input
699
+ *
700
+ * @default false
701
+ */
702
+ showSubmit?: boolean;
703
+ }
704
+ /**
705
+ * The multi-line prompt accepts multiple lines of text input.
706
+ * By default, pressing `Enter` twice submits the input.
707
+ *
708
+ * @see https://bomb.sh/docs/clack/packages/prompts/#multi-line-text
709
+ *
710
+ * @example
711
+ * ```ts
712
+ * import { multiline } from '@clack/prompts';
713
+ *
714
+ * const bio = await multiline({
715
+ * message: 'Enter your bio',
716
+ * placeholder: 'Tell us about yourself...',
717
+ * showSubmit: true,
718
+ * });
719
+ * ```
720
+ */
721
+ declare const multiline: (opts: MultiLineOptions) => Promise<string | symbol>;
722
+
254
723
  interface MultiSelectOptions<Value> extends CommonOptions {
255
724
  message: string;
256
725
  options: Option<Value>[];
@@ -267,21 +736,95 @@ interface NoteOptions extends CommonOptions {
267
736
  }
268
737
  declare const note: (message?: string, title?: string, opts?: NoteOptions) => void;
269
738
 
739
+ /**
740
+ * Options for the {@link password} prompt
741
+ */
270
742
  interface PasswordOptions extends CommonOptions {
743
+ /**
744
+ * The prompt message or question shown to the user above the input.
745
+ */
271
746
  message: string;
747
+ /**
748
+ * Character to use for masking input.
749
+ * @default ▪/•
750
+ */
272
751
  mask?: string;
273
- validate?: (value: string | undefined) => string | Error | undefined;
752
+ /**
753
+ * A function or a [Standard Schema](https://github.com/standard-schema/standard-schema)
754
+ * that validates user input. If a custom function is given, you should return a `string` or `Error`
755
+ * to show as a validation error, or `undefined` to accept the result.
756
+ */
757
+ validate?: Validate<string>;
758
+ /**
759
+ * When enabled it causes the input to be cleared if/when validation fails.
760
+ * @default false
761
+ */
274
762
  clearOnError?: boolean;
275
763
  }
764
+ /**
765
+ * The password prompt behaves like the {@link text} prompt, but the input is masked.
766
+ *
767
+ * @see https://bomb.sh/docs/clack/packages/prompts/#password-input
768
+ *
769
+ * @example
770
+ * ```ts
771
+ * import { password } from '@clack/prompts';
772
+ *
773
+ * const result = await password({
774
+ * message: 'Enter your password',
775
+ * });
776
+ * ```
777
+ */
276
778
  declare const password: (opts: PasswordOptions) => Promise<string | symbol>;
277
779
 
780
+ /**
781
+ * Options for the {@link path} prompt.
782
+ */
278
783
  interface PathOptions extends CommonOptions {
784
+ /**
785
+ * The message or question shown to the user above the input.
786
+ */
787
+ message: string;
788
+ /**
789
+ * The starting directory for path suggestions (defaults to current working directory).
790
+ */
279
791
  root?: string;
792
+ /**
793
+ * When `true` only **directories** appear in suggestions while you navigate.
794
+ */
280
795
  directory?: boolean;
796
+ /**
797
+ * The starting path shown when the prompt first renders, which users can edit
798
+ * before submitting. If not provided it will fall back to the given `root`,
799
+ * or the current working directory.
800
+ *
801
+ * In `directory` mode, if the initial value points to a directory that exists,
802
+ * pressing enter will submit the input instead of jumping to the first child.
803
+ */
281
804
  initialValue?: string;
282
- message: string;
283
- validate?: (value: string | undefined) => string | Error | undefined;
805
+ /**
806
+ * A function or a [Standard Schema](https://github.com/standard-schema/standard-schema)
807
+ * that validates user input. If a custom function is given, you should return a `string` or `Error`
808
+ * to show as a validation error, or `undefined` to accept the result.
809
+ */
810
+ validate?: Validate<string>;
284
811
  }
812
+ /**
813
+ * The `path` prompt extends `autocomplete` to provide file and directory suggestions.
814
+ *
815
+ * @see https://bomb.sh/docs/clack/packages/prompts/#path-selection
816
+ *
817
+ * @example
818
+ * ```ts
819
+ * import { path } from '@clack/prompts';
820
+ *
821
+ * const result = await path({
822
+ * message: 'Select a file:',
823
+ * root: process.cwd(),
824
+ * directory: false,
825
+ * });
826
+ * ```
827
+ */
285
828
  declare const path: (opts: PathOptions) => Promise<string | symbol>;
286
829
 
287
830
  interface SpinnerOptions extends CommonOptions {
@@ -378,14 +921,5 @@ declare const taskLog: (opts: TaskLogOptions) => {
378
921
  success(message: string, opts?: TaskLogCompletionOptions): void;
379
922
  };
380
923
 
381
- interface TextOptions extends CommonOptions {
382
- message: string;
383
- placeholder?: string;
384
- defaultValue?: string;
385
- initialValue?: string;
386
- validate?: (value: string | undefined) => string | Error | undefined;
387
- }
388
- declare const text: (opts: TextOptions) => Promise<string | symbol>;
389
-
390
- export { S_BAR, S_BAR_END, S_BAR_END_RIGHT, S_BAR_H, S_BAR_START, S_BAR_START_RIGHT, S_CHECKBOX_ACTIVE, S_CHECKBOX_INACTIVE, S_CHECKBOX_SELECTED, S_CONNECT_LEFT, S_CORNER_BOTTOM_LEFT, S_CORNER_BOTTOM_RIGHT, S_CORNER_TOP_LEFT, S_CORNER_TOP_RIGHT, S_ERROR, S_INFO, S_PASSWORD_MASK, S_RADIO_ACTIVE, S_RADIO_INACTIVE, S_STEP_ACTIVE, S_STEP_CANCEL, S_STEP_ERROR, S_STEP_SUBMIT, S_SUCCESS, S_WARN, autocomplete, autocompleteMultiselect, box, cancel, confirm, date, group, groupMultiselect, intro, isCI, isTTY, limitOptions, log, multiselect, note, outro, password, path, progress, select, selectKey, spinner, stream, symbol, symbolBar, taskLog, tasks, text, unicode, unicodeOr };
391
- export type { AutocompleteMultiSelectOptions, AutocompleteOptions, BoxAlignment, BoxOptions, CommonOptions, ConfirmOptions, DateOptions, GroupMultiSelectOptions, LimitOptionsParams, LogMessageOptions, MultiSelectOptions, NoteOptions, Option, PasswordOptions, PathOptions, ProgressOptions, ProgressResult, PromptGroup, PromptGroupAwaitedReturn, PromptGroupOptions, SelectKeyOptions, SelectOptions, SpinnerOptions, SpinnerResult, Task, TaskLogCompletionOptions, TaskLogMessageOptions, TaskLogOptions, TextOptions };
924
+ export { S_BAR, S_BAR_END, S_BAR_END_RIGHT, S_BAR_H, S_BAR_START, S_BAR_START_RIGHT, S_CHECKBOX_ACTIVE, S_CHECKBOX_INACTIVE, S_CHECKBOX_SELECTED, S_CONNECT_LEFT, S_CORNER_BOTTOM_LEFT, S_CORNER_BOTTOM_RIGHT, S_CORNER_TOP_LEFT, S_CORNER_TOP_RIGHT, S_ERROR, S_INFO, S_PASSWORD_MASK, S_RADIO_ACTIVE, S_RADIO_INACTIVE, S_STEP_ACTIVE, S_STEP_CANCEL, S_STEP_ERROR, S_STEP_SUBMIT, S_SUCCESS, S_WARN, autocomplete, autocompleteMultiselect, box, cancel, confirm, date, group, groupMultiselect, intro, isCI, isTTY, limitOptions, log, multiline, multiselect, note, outro, password, path, progress, select, selectKey, spinner, stream, symbol, symbolBar, taskLog, tasks, text, unicode, unicodeOr };
925
+ export type { AutocompleteMultiSelectOptions, AutocompleteOptions, BoxAlignment, BoxOptions, CommonOptions, ConfirmOptions, DateOptions, GroupMultiSelectOptions, LimitOptionsParams, LogMessageOptions, MultiLineOptions, MultiSelectOptions, NoteOptions, Option, PasswordOptions, PathOptions, ProgressOptions, ProgressResult, PromptGroup, PromptGroupAwaitedReturn, PromptGroupOptions, SelectKeyOptions, SelectOptions, SpinnerOptions, SpinnerResult, Task, TaskLogCompletionOptions, TaskLogMessageOptions, TaskLogOptions, TextOptions };