@maizzle/framework 6.0.0-rc.0 → 6.0.0-rc.10

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 (341) hide show
  1. package/bin/maizzle.mjs +1 -1
  2. package/dist/_virtual/_rolldown/runtime.mjs +32 -0
  3. package/dist/build.mjs +29 -9
  4. package/dist/build.mjs.map +1 -1
  5. package/dist/components/Body.vue +111 -0
  6. package/dist/components/Button.vue +68 -14
  7. package/dist/components/CodeBlock.vue +68 -0
  8. package/dist/components/CodeInline.vue +49 -0
  9. package/dist/components/Column.vue +86 -0
  10. package/dist/components/Container.vue +48 -0
  11. package/dist/components/Divider.vue +28 -0
  12. package/dist/components/Head.vue +30 -0
  13. package/dist/components/Heading.vue +28 -0
  14. package/dist/components/Html.vue +104 -0
  15. package/dist/components/Image.vue +70 -0
  16. package/dist/components/Layout.vue +93 -0
  17. package/dist/components/Link.vue +26 -0
  18. package/dist/components/Markdown.vue +89 -0
  19. package/dist/components/Outlook.vue +36 -0
  20. package/dist/components/Overlap.vue +80 -0
  21. package/dist/components/Preheader.vue +20 -0
  22. package/dist/components/Row.vue +91 -0
  23. package/dist/components/Section.vue +83 -0
  24. package/dist/components/Spacer.vue +50 -7
  25. package/dist/components/Text.vue +29 -0
  26. package/dist/components/Vml.vue +165 -13
  27. package/dist/composables/renderContext.d.mts +5 -0
  28. package/dist/composables/renderContext.d.mts.map +1 -1
  29. package/dist/composables/renderContext.mjs.map +1 -1
  30. package/dist/composables/usePreviewText.d.mts +24 -0
  31. package/dist/composables/usePreviewText.d.mts.map +1 -0
  32. package/dist/composables/usePreviewText.mjs +29 -0
  33. package/dist/composables/usePreviewText.mjs.map +1 -0
  34. package/dist/config/index.mjs +25 -1
  35. package/dist/config/index.mjs.map +1 -1
  36. package/dist/index.d.mts +4 -2
  37. package/dist/index.mjs +3 -1
  38. package/dist/node_modules/picomatch/index.mjs +13 -0
  39. package/dist/node_modules/picomatch/index.mjs.map +1 -0
  40. package/dist/node_modules/picomatch/lib/constants.mjs +174 -0
  41. package/dist/node_modules/picomatch/lib/constants.mjs.map +1 -0
  42. package/dist/node_modules/picomatch/lib/parse.mjs +1067 -0
  43. package/dist/node_modules/picomatch/lib/parse.mjs.map +1 -0
  44. package/dist/node_modules/picomatch/lib/picomatch.mjs +304 -0
  45. package/dist/node_modules/picomatch/lib/picomatch.mjs.map +1 -0
  46. package/dist/node_modules/picomatch/lib/scan.mjs +296 -0
  47. package/dist/node_modules/picomatch/lib/scan.mjs.map +1 -0
  48. package/dist/node_modules/picomatch/lib/utils.mjs +53 -0
  49. package/dist/node_modules/picomatch/lib/utils.mjs.map +1 -0
  50. package/dist/plugin.d.mts.map +1 -1
  51. package/dist/plugin.mjs +24 -7
  52. package/dist/plugin.mjs.map +1 -1
  53. package/dist/plugins/postcss/tailwindCleanup.d.mts.map +1 -1
  54. package/dist/plugins/postcss/tailwindCleanup.mjs +44 -13
  55. package/dist/plugins/postcss/tailwindCleanup.mjs.map +1 -1
  56. package/dist/render/createRenderer.d.mts +10 -3
  57. package/dist/render/createRenderer.d.mts.map +1 -1
  58. package/dist/render/createRenderer.mjs +147 -10
  59. package/dist/render/createRenderer.mjs.map +1 -1
  60. package/dist/render/index.mjs +9 -3
  61. package/dist/render/index.mjs.map +1 -1
  62. package/dist/serve.d.mts.map +1 -1
  63. package/dist/serve.mjs +159 -63
  64. package/dist/serve.mjs.map +1 -1
  65. package/dist/server/compatibility.d.mts +1 -2
  66. package/dist/server/compatibility.d.mts.map +1 -1
  67. package/dist/server/compatibility.mjs +30 -16
  68. package/dist/server/compatibility.mjs.map +1 -1
  69. package/dist/server/email.d.mts +17 -0
  70. package/dist/server/email.d.mts.map +1 -0
  71. package/dist/server/email.mjs +41 -0
  72. package/dist/server/email.mjs.map +1 -0
  73. package/dist/server/linter.d.mts +1 -2
  74. package/dist/server/linter.d.mts.map +1 -1
  75. package/dist/server/linter.mjs +60 -71
  76. package/dist/server/linter.mjs.map +1 -1
  77. package/dist/server/ui/App.vue +205 -69
  78. package/dist/server/ui/components/ui/checkbox/Checkbox.vue +35 -0
  79. package/dist/server/ui/components/ui/checkbox/index.ts +1 -0
  80. package/dist/server/ui/components/ui/command/CommandDialog.vue +1 -1
  81. package/dist/server/ui/components/ui/command/CommandInput.vue +19 -1
  82. package/dist/server/ui/components/ui/command/CommandItem.vue +1 -1
  83. package/dist/server/ui/components/ui/command/CommandList.vue +1 -1
  84. package/dist/server/ui/components/ui/command/CommandShortcut.vue +1 -1
  85. package/dist/server/ui/components/ui/dialog/DialogOverlay.vue +9 -1
  86. package/dist/server/ui/components/ui/dropdown-menu/DropdownMenuItem.vue +1 -1
  87. package/dist/server/ui/components/ui/scroll-area/ScrollBar.vue +1 -1
  88. package/dist/server/ui/components/ui/sheet/SheetContent.vue +1 -1
  89. package/dist/server/ui/components/ui/sheet/SheetOverlay.vue +9 -1
  90. package/dist/server/ui/components/ui/sidebar/Sidebar.vue +8 -1
  91. package/dist/server/ui/components/ui/sidebar/SidebarProvider.vue +1 -1
  92. package/dist/server/ui/components/ui/sidebar/SidebarTrigger.vue +5 -4
  93. package/dist/server/ui/components/ui/tags-input/TagsInput.vue +26 -0
  94. package/dist/server/ui/components/ui/tags-input/TagsInputInput.vue +17 -0
  95. package/dist/server/ui/components/ui/tags-input/TagsInputItem.vue +19 -0
  96. package/dist/server/ui/components/ui/tags-input/TagsInputItemDelete.vue +22 -0
  97. package/dist/server/ui/components/ui/tags-input/TagsInputItemText.vue +17 -0
  98. package/dist/server/ui/components/ui/tags-input/index.ts +5 -0
  99. package/dist/server/ui/components/ui/toggle/index.ts +3 -3
  100. package/dist/server/ui/components/ui/toggle-group/ToggleGroup.vue +1 -1
  101. package/dist/server/ui/components/ui/toggle-group/ToggleGroupItem.vue +2 -2
  102. package/dist/server/ui/main.css +20 -20
  103. package/dist/server/ui/pages/Home.vue +12 -5
  104. package/dist/server/ui/pages/Preview.vue +506 -216
  105. package/dist/transformers/entities.d.mts.map +1 -1
  106. package/dist/transformers/entities.mjs +3 -0
  107. package/dist/transformers/entities.mjs.map +1 -1
  108. package/dist/transformers/filters/defaults.d.mts +6 -0
  109. package/dist/transformers/filters/defaults.d.mts.map +1 -0
  110. package/dist/transformers/filters/defaults.mjs +78 -0
  111. package/dist/transformers/filters/defaults.mjs.map +1 -0
  112. package/dist/transformers/filters/index.d.mts +22 -0
  113. package/dist/transformers/filters/index.d.mts.map +1 -0
  114. package/dist/transformers/filters/index.mjs +67 -0
  115. package/dist/transformers/filters/index.mjs.map +1 -0
  116. package/dist/transformers/index.d.mts +11 -9
  117. package/dist/transformers/index.d.mts.map +1 -1
  118. package/dist/transformers/index.mjs +19 -11
  119. package/dist/transformers/index.mjs.map +1 -1
  120. package/dist/transformers/inlineCSS.d.mts +1 -14
  121. package/dist/transformers/inlineCSS.d.mts.map +1 -1
  122. package/dist/transformers/inlineCSS.mjs +25 -34
  123. package/dist/transformers/inlineCSS.mjs.map +1 -1
  124. package/dist/transformers/purgeCSS.d.mts.map +1 -1
  125. package/dist/transformers/purgeCSS.mjs +67 -1
  126. package/dist/transformers/purgeCSS.mjs.map +1 -1
  127. package/dist/transformers/sixHex.d.mts +16 -0
  128. package/dist/transformers/sixHex.d.mts.map +1 -0
  129. package/dist/transformers/sixHex.mjs +30 -0
  130. package/dist/transformers/sixHex.mjs.map +1 -0
  131. package/dist/transformers/tailwindcss.d.mts +6 -2
  132. package/dist/transformers/tailwindcss.d.mts.map +1 -1
  133. package/dist/transformers/tailwindcss.mjs +52 -28
  134. package/dist/transformers/tailwindcss.mjs.map +1 -1
  135. package/dist/types/config.d.mts +459 -17
  136. package/dist/types/config.d.mts.map +1 -1
  137. package/dist/types/index.d.mts +2 -2
  138. package/dist/utils/ast/serializer.d.mts +3 -2
  139. package/dist/utils/ast/serializer.d.mts.map +1 -1
  140. package/dist/utils/ast/serializer.mjs +24 -0
  141. package/dist/utils/ast/serializer.mjs.map +1 -1
  142. package/dist/utils/detect.d.mts +5 -0
  143. package/dist/utils/detect.d.mts.map +1 -0
  144. package/dist/utils/detect.mjs +11 -0
  145. package/dist/utils/detect.mjs.map +1 -0
  146. package/node_modules/@clack/core/CHANGELOG.md +87 -4
  147. package/node_modules/@clack/core/README.md +1 -1
  148. package/node_modules/@clack/core/dist/index.d.mts +186 -48
  149. package/node_modules/@clack/core/dist/index.mjs +10 -14
  150. package/node_modules/@clack/core/dist/index.mjs.map +1 -1
  151. package/node_modules/@clack/core/package.json +7 -9
  152. package/node_modules/@clack/prompts/CHANGELOG.md +171 -7
  153. package/node_modules/@clack/prompts/README.md +66 -3
  154. package/node_modules/@clack/prompts/dist/index.d.mts +302 -76
  155. package/node_modules/@clack/prompts/dist/index.mjs +134 -84
  156. package/node_modules/@clack/prompts/dist/index.mjs.map +1 -1
  157. package/node_modules/@clack/prompts/package.json +14 -10
  158. package/node_modules/citty/LICENSE +0 -15
  159. package/node_modules/citty/README.md +166 -69
  160. package/node_modules/citty/dist/index.d.mts +88 -56
  161. package/node_modules/citty/dist/index.mjs +399 -437
  162. package/node_modules/citty/package.json +28 -35
  163. package/node_modules/giget/README.md +59 -11
  164. package/node_modules/giget/dist/THIRD-PARTY-LICENSES.md +205 -0
  165. package/node_modules/giget/dist/_chunks/giget.mjs +508 -0
  166. package/node_modules/giget/dist/_chunks/libs/citty.mjs +269 -0
  167. package/node_modules/giget/dist/_chunks/libs/nypm.d.mts +1 -0
  168. package/node_modules/giget/dist/_chunks/libs/nypm.mjs +669 -0
  169. package/node_modules/giget/dist/_chunks/libs/tar.mjs +2931 -0
  170. package/node_modules/giget/dist/_chunks/rolldown-runtime.mjs +14 -0
  171. package/node_modules/giget/dist/cli.d.mts +1 -0
  172. package/node_modules/giget/dist/cli.mjs +89 -111
  173. package/node_modules/giget/dist/index.d.mts +46 -35
  174. package/node_modules/giget/dist/index.mjs +2 -22
  175. package/node_modules/giget/package.json +32 -45
  176. package/node_modules/maizzle/README.md +140 -0
  177. package/node_modules/maizzle/bin/maizzle.mjs +5 -0
  178. package/node_modules/maizzle/dist/commands/new.d.mts +7 -0
  179. package/node_modules/maizzle/dist/commands/new.mjs +278 -0
  180. package/node_modules/{@maizzle/cli → maizzle}/dist/index.d.mts +1 -1
  181. package/node_modules/maizzle/dist/index.mjs +44 -0
  182. package/node_modules/{commander → maizzle/node_modules/commander}/Readme.md +94 -67
  183. package/node_modules/{commander → maizzle/node_modules/commander}/lib/argument.js +5 -4
  184. package/node_modules/{commander → maizzle/node_modules/commander}/lib/command.js +154 -39
  185. package/node_modules/{commander → maizzle/node_modules/commander}/lib/help.js +77 -39
  186. package/node_modules/{commander → maizzle/node_modules/commander}/lib/option.js +16 -3
  187. package/node_modules/{commander → maizzle/node_modules/commander}/package-support.json +4 -1
  188. package/node_modules/{commander → maizzle/node_modules/commander}/package.json +8 -8
  189. package/node_modules/{commander → maizzle/node_modules/commander}/typings/index.d.ts +71 -3
  190. package/node_modules/{@maizzle/cli → maizzle}/package.json +13 -11
  191. package/node_modules/tinyexec/README.md +49 -3
  192. package/node_modules/tinyexec/dist/main.d.mts +25 -14
  193. package/node_modules/tinyexec/dist/main.mjs +148 -100
  194. package/node_modules/tinyexec/package.json +9 -8
  195. package/package.json +9 -4
  196. package/dist/server/ui/components/ui/resizable/ResizableHandle.vue +0 -30
  197. package/dist/server/ui/components/ui/resizable/ResizablePanel.vue +0 -21
  198. package/dist/server/ui/components/ui/resizable/ResizablePanelGroup.vue +0 -25
  199. package/dist/server/ui/components/ui/resizable/index.ts +0 -3
  200. package/node_modules/@clack/core/dist/index.cjs +0 -15
  201. package/node_modules/@clack/core/dist/index.cjs.map +0 -1
  202. package/node_modules/@clack/core/dist/index.d.cts +0 -211
  203. package/node_modules/@clack/core/dist/index.d.ts +0 -211
  204. package/node_modules/@clack/prompts/dist/index.cjs +0 -87
  205. package/node_modules/@clack/prompts/dist/index.cjs.map +0 -1
  206. package/node_modules/@clack/prompts/dist/index.d.cts +0 -165
  207. package/node_modules/@clack/prompts/dist/index.d.ts +0 -165
  208. package/node_modules/@maizzle/cli/README.md +0 -58
  209. package/node_modules/@maizzle/cli/dist/index.mjs +0 -42
  210. package/node_modules/citty/dist/index.cjs +0 -475
  211. package/node_modules/citty/dist/index.d.cts +0 -80
  212. package/node_modules/citty/dist/index.d.ts +0 -80
  213. package/node_modules/consola/LICENSE +0 -47
  214. package/node_modules/consola/README.md +0 -352
  215. package/node_modules/consola/basic.d.ts +0 -1
  216. package/node_modules/consola/browser.d.ts +0 -1
  217. package/node_modules/consola/core.d.ts +0 -1
  218. package/node_modules/consola/dist/basic.cjs +0 -32
  219. package/node_modules/consola/dist/basic.d.cts +0 -23
  220. package/node_modules/consola/dist/basic.d.mts +0 -21
  221. package/node_modules/consola/dist/basic.d.ts +0 -23
  222. package/node_modules/consola/dist/basic.mjs +0 -24
  223. package/node_modules/consola/dist/browser.cjs +0 -84
  224. package/node_modules/consola/dist/browser.d.cts +0 -23
  225. package/node_modules/consola/dist/browser.d.mts +0 -21
  226. package/node_modules/consola/dist/browser.d.ts +0 -23
  227. package/node_modules/consola/dist/browser.mjs +0 -76
  228. package/node_modules/consola/dist/chunks/prompt.cjs +0 -288
  229. package/node_modules/consola/dist/chunks/prompt.mjs +0 -280
  230. package/node_modules/consola/dist/core.cjs +0 -517
  231. package/node_modules/consola/dist/core.d.cts +0 -459
  232. package/node_modules/consola/dist/core.d.mts +0 -459
  233. package/node_modules/consola/dist/core.d.ts +0 -459
  234. package/node_modules/consola/dist/core.mjs +0 -512
  235. package/node_modules/consola/dist/index.cjs +0 -663
  236. package/node_modules/consola/dist/index.d.cts +0 -24
  237. package/node_modules/consola/dist/index.d.mts +0 -22
  238. package/node_modules/consola/dist/index.d.ts +0 -24
  239. package/node_modules/consola/dist/index.mjs +0 -651
  240. package/node_modules/consola/dist/shared/consola.DCGIlDNP.cjs +0 -75
  241. package/node_modules/consola/dist/shared/consola.DRwqZj3T.mjs +0 -72
  242. package/node_modules/consola/dist/shared/consola.DXBYu-KD.mjs +0 -288
  243. package/node_modules/consola/dist/shared/consola.DwRq1yyg.cjs +0 -312
  244. package/node_modules/consola/dist/utils.cjs +0 -64
  245. package/node_modules/consola/dist/utils.d.cts +0 -286
  246. package/node_modules/consola/dist/utils.d.mts +0 -286
  247. package/node_modules/consola/dist/utils.d.ts +0 -286
  248. package/node_modules/consola/dist/utils.mjs +0 -54
  249. package/node_modules/consola/lib/index.cjs +0 -10
  250. package/node_modules/consola/package.json +0 -136
  251. package/node_modules/consola/utils.d.ts +0 -1
  252. package/node_modules/create-maizzle/README.md +0 -86
  253. package/node_modules/create-maizzle/bin/create-maizzle.mjs +0 -4
  254. package/node_modules/create-maizzle/node_modules/@clack/core/CHANGELOG.md +0 -340
  255. package/node_modules/create-maizzle/node_modules/@clack/core/LICENSE +0 -9
  256. package/node_modules/create-maizzle/node_modules/@clack/core/README.md +0 -22
  257. package/node_modules/create-maizzle/node_modules/@clack/core/dist/index.d.mts +0 -349
  258. package/node_modules/create-maizzle/node_modules/@clack/core/dist/index.mjs +0 -11
  259. package/node_modules/create-maizzle/node_modules/@clack/core/dist/index.mjs.map +0 -1
  260. package/node_modules/create-maizzle/node_modules/@clack/core/package.json +0 -60
  261. package/node_modules/create-maizzle/node_modules/@clack/prompts/CHANGELOG.md +0 -576
  262. package/node_modules/create-maizzle/node_modules/@clack/prompts/LICENSE +0 -9
  263. package/node_modules/create-maizzle/node_modules/@clack/prompts/README.md +0 -270
  264. package/node_modules/create-maizzle/node_modules/@clack/prompts/dist/index.d.mts +0 -391
  265. package/node_modules/create-maizzle/node_modules/@clack/prompts/dist/index.mjs +0 -137
  266. package/node_modules/create-maizzle/node_modules/@clack/prompts/dist/index.mjs.map +0 -1
  267. package/node_modules/create-maizzle/node_modules/@clack/prompts/package.json +0 -65
  268. package/node_modules/create-maizzle/package.json +0 -47
  269. package/node_modules/create-maizzle/src/index.js +0 -242
  270. package/node_modules/defu/LICENSE +0 -21
  271. package/node_modules/defu/README.md +0 -171
  272. package/node_modules/defu/dist/defu.cjs +0 -77
  273. package/node_modules/defu/dist/defu.d.cts +0 -31
  274. package/node_modules/defu/dist/defu.d.mts +0 -29
  275. package/node_modules/defu/dist/defu.d.ts +0 -31
  276. package/node_modules/defu/dist/defu.mjs +0 -69
  277. package/node_modules/defu/lib/defu.cjs +0 -10
  278. package/node_modules/defu/lib/defu.d.cts +0 -12
  279. package/node_modules/defu/package.json +0 -48
  280. package/node_modules/giget/dist/shared/giget.OCaTp9b-.mjs +0 -468
  281. package/node_modules/node-fetch-native/LICENSE +0 -114
  282. package/node_modules/node-fetch-native/README.md +0 -225
  283. package/node_modules/node-fetch-native/dist/chunks/multipart-parser.cjs +0 -2
  284. package/node_modules/node-fetch-native/dist/chunks/multipart-parser.mjs +0 -2
  285. package/node_modules/node-fetch-native/dist/index.cjs +0 -1
  286. package/node_modules/node-fetch-native/dist/index.mjs +0 -1
  287. package/node_modules/node-fetch-native/dist/native.cjs +0 -1
  288. package/node_modules/node-fetch-native/dist/native.mjs +0 -1
  289. package/node_modules/node-fetch-native/dist/node.cjs +0 -19
  290. package/node_modules/node-fetch-native/dist/node.mjs +0 -19
  291. package/node_modules/node-fetch-native/dist/polyfill.cjs +0 -1
  292. package/node_modules/node-fetch-native/dist/polyfill.mjs +0 -1
  293. package/node_modules/node-fetch-native/dist/proxy-stub.cjs +0 -1
  294. package/node_modules/node-fetch-native/dist/proxy-stub.mjs +0 -1
  295. package/node_modules/node-fetch-native/dist/proxy.cjs +0 -58
  296. package/node_modules/node-fetch-native/dist/shared/node-fetch-native.DfbY2q-x.mjs +0 -1
  297. package/node_modules/node-fetch-native/dist/shared/node-fetch-native.DhEqb06g.cjs +0 -1
  298. package/node_modules/node-fetch-native/index.d.ts +0 -1
  299. package/node_modules/node-fetch-native/lib/empty.cjs +0 -0
  300. package/node_modules/node-fetch-native/lib/empty.mjs +0 -0
  301. package/node_modules/node-fetch-native/lib/index.cjs +0 -11
  302. package/node_modules/node-fetch-native/lib/index.d.cts +0 -10
  303. package/node_modules/node-fetch-native/lib/index.d.mts +0 -10
  304. package/node_modules/node-fetch-native/lib/index.d.ts +0 -10
  305. package/node_modules/node-fetch-native/lib/native.cjs +0 -11
  306. package/node_modules/node-fetch-native/lib/polyfill.d.cts +0 -1
  307. package/node_modules/node-fetch-native/lib/polyfill.d.mts +0 -1
  308. package/node_modules/node-fetch-native/lib/polyfill.d.ts +0 -1
  309. package/node_modules/node-fetch-native/lib/proxy.d.ts +0 -32
  310. package/node_modules/node-fetch-native/node.d.ts +0 -1
  311. package/node_modules/node-fetch-native/package.json +0 -138
  312. package/node_modules/node-fetch-native/polyfill.d.ts +0 -1
  313. package/node_modules/node-fetch-native/proxy.d.ts +0 -1
  314. package/node_modules/nypm/node_modules/citty/LICENSE +0 -21
  315. package/node_modules/nypm/node_modules/citty/README.md +0 -231
  316. package/node_modules/nypm/node_modules/citty/dist/index.d.mts +0 -112
  317. package/node_modules/nypm/node_modules/citty/dist/index.mjs +0 -425
  318. package/node_modules/nypm/node_modules/citty/package.json +0 -42
  319. /package/node_modules/{nypm/node_modules/citty → citty}/dist/THIRD-PARTY-LICENSES.md +0 -0
  320. /package/node_modules/{nypm/node_modules/citty → citty}/dist/_chunks/libs/scule.mjs +0 -0
  321. /package/node_modules/{@maizzle/cli → maizzle}/LICENSE +0 -0
  322. /package/node_modules/{@maizzle/cli → maizzle}/dist/commands/make/component.d.mts +0 -0
  323. /package/node_modules/{@maizzle/cli → maizzle}/dist/commands/make/component.mjs +0 -0
  324. /package/node_modules/{@maizzle/cli → maizzle}/dist/commands/make/config.d.mts +0 -0
  325. /package/node_modules/{@maizzle/cli → maizzle}/dist/commands/make/config.mjs +0 -0
  326. /package/node_modules/{@maizzle/cli → maizzle}/dist/commands/make/layout.d.mts +0 -0
  327. /package/node_modules/{@maizzle/cli → maizzle}/dist/commands/make/layout.mjs +0 -0
  328. /package/node_modules/{@maizzle/cli → maizzle}/dist/commands/make/scaffold.d.mts +0 -0
  329. /package/node_modules/{@maizzle/cli → maizzle}/dist/commands/make/scaffold.mjs +0 -0
  330. /package/node_modules/{@maizzle/cli → maizzle}/dist/commands/make/stubs/component.vue +0 -0
  331. /package/node_modules/{@maizzle/cli → maizzle}/dist/commands/make/stubs/config.ts +0 -0
  332. /package/node_modules/{@maizzle/cli → maizzle}/dist/commands/make/stubs/layout.vue +0 -0
  333. /package/node_modules/{@maizzle/cli → maizzle}/dist/commands/make/stubs/template.vue +0 -0
  334. /package/node_modules/{@maizzle/cli → maizzle}/dist/commands/make/template.d.mts +0 -0
  335. /package/node_modules/{@maizzle/cli → maizzle}/dist/commands/make/template.mjs +0 -0
  336. /package/node_modules/{commander → maizzle/node_modules/commander}/LICENSE +0 -0
  337. /package/node_modules/{commander → maizzle/node_modules/commander}/esm.mjs +0 -0
  338. /package/node_modules/{commander → maizzle/node_modules/commander}/index.js +0 -0
  339. /package/node_modules/{commander → maizzle/node_modules/commander}/lib/error.js +0 -0
  340. /package/node_modules/{commander → maizzle/node_modules/commander}/lib/suggestSimilar.js +0 -0
  341. /package/node_modules/{commander → maizzle/node_modules/commander}/typings/esm.d.mts +0 -0
@@ -1,26 +1,45 @@
1
- export { ClackSettings, isCancel, updateSettings } from '@clack/core';
1
+ import { State, AutocompletePrompt, DateFormat } from '@clack/core';
2
+ export { ClackSettings, DateFormat, isCancel, settings, updateSettings } from '@clack/core';
3
+ import { Readable, Writable } from 'node:stream';
2
4
 
3
- interface TextOptions {
4
- message: string;
5
- placeholder?: string;
6
- defaultValue?: string;
7
- initialValue?: string;
8
- validate?: (value: string) => string | Error | undefined;
5
+ declare const unicode: boolean;
6
+ declare const isCI: () => boolean;
7
+ declare const isTTY: (output: Writable) => boolean;
8
+ declare const unicodeOr: (c: string, fallback: string) => string;
9
+ declare const S_STEP_ACTIVE: string;
10
+ declare const S_STEP_CANCEL: string;
11
+ declare const S_STEP_ERROR: string;
12
+ declare const S_STEP_SUBMIT: string;
13
+ declare const S_BAR_START: string;
14
+ declare const S_BAR: string;
15
+ declare const S_BAR_END: string;
16
+ declare const S_BAR_START_RIGHT: string;
17
+ declare const S_BAR_END_RIGHT: string;
18
+ declare const S_RADIO_ACTIVE: string;
19
+ declare const S_RADIO_INACTIVE: string;
20
+ declare const S_CHECKBOX_ACTIVE: string;
21
+ declare const S_CHECKBOX_SELECTED: string;
22
+ declare const S_CHECKBOX_INACTIVE: string;
23
+ declare const S_PASSWORD_MASK: string;
24
+ declare const S_BAR_H: string;
25
+ declare const S_CORNER_TOP_RIGHT: string;
26
+ declare const S_CONNECT_LEFT: string;
27
+ declare const S_CORNER_BOTTOM_RIGHT: string;
28
+ declare const S_CORNER_BOTTOM_LEFT: string;
29
+ declare const S_CORNER_TOP_LEFT: string;
30
+ declare const S_INFO: string;
31
+ declare const S_SUCCESS: string;
32
+ declare const S_WARN: string;
33
+ declare const S_ERROR: string;
34
+ declare const symbol: (state: State) => string;
35
+ declare const symbolBar: (state: State) => string;
36
+ interface CommonOptions {
37
+ input?: Readable;
38
+ output?: Writable;
39
+ signal?: AbortSignal;
40
+ withGuide?: boolean;
9
41
  }
10
- declare const text: (opts: TextOptions) => Promise<string | symbol>;
11
- interface PasswordOptions {
12
- message: string;
13
- mask?: string;
14
- validate?: (value: string) => string | Error | undefined;
15
- }
16
- declare const password: (opts: PasswordOptions) => Promise<string | symbol>;
17
- interface ConfirmOptions {
18
- message: string;
19
- active?: string;
20
- inactive?: string;
21
- initialValue?: boolean;
22
- }
23
- declare const confirm: (opts: ConfirmOptions) => Promise<boolean | symbol>;
42
+
24
43
  type Primitive = Readonly<string | boolean | number>;
25
44
  type Option<Value> = Value extends Primitive ? {
26
45
  /**
@@ -40,6 +59,13 @@ type Option<Value> = Value extends Primitive ? {
40
59
  * By default, no `hint` is displayed.
41
60
  */
42
61
  hint?: string;
62
+ /**
63
+ * Whether this option is disabled.
64
+ * Disabled options are visible but cannot be selected.
65
+ *
66
+ * By default, options are not disabled.
67
+ */
68
+ disabled?: boolean;
43
69
  } : {
44
70
  /**
45
71
  * Internal data for this option.
@@ -56,68 +82,111 @@ type Option<Value> = Value extends Primitive ? {
56
82
  * By default, no `hint` is displayed.
57
83
  */
58
84
  hint?: string;
85
+ /**
86
+ * Whether this option is disabled.
87
+ * Disabled options are visible but cannot be selected.
88
+ *
89
+ * By default, options are not disabled.
90
+ */
91
+ disabled?: boolean;
59
92
  };
60
- interface SelectOptions<Value> {
93
+ interface SelectOptions<Value> extends CommonOptions {
61
94
  message: string;
62
95
  options: Option<Value>[];
63
96
  initialValue?: Value;
64
97
  maxItems?: number;
65
98
  }
66
- declare const select: <Value>(opts: SelectOptions<Value>) => Promise<symbol | Value>;
67
- declare const selectKey: <Value extends string>(opts: SelectOptions<Value>) => Promise<symbol | Value>;
68
- interface MultiSelectOptions<Value> {
99
+ declare const select: <Value>(opts: SelectOptions<Value>) => Promise<Value | symbol>;
100
+
101
+ interface AutocompleteSharedOptions<Value> extends CommonOptions {
102
+ /**
103
+ * The message to display to the user.
104
+ */
69
105
  message: string;
70
- options: Option<Value>[];
71
- initialValues?: Value[];
106
+ /**
107
+ * Available options for the autocomplete prompt.
108
+ */
109
+ options: Option<Value>[] | ((this: AutocompletePrompt<Option<Value>>) => Option<Value>[]);
110
+ /**
111
+ * Maximum number of items to display at once.
112
+ */
72
113
  maxItems?: number;
73
- required?: boolean;
74
- cursorAt?: Value;
114
+ /**
115
+ * Placeholder text to display when no input is provided.
116
+ */
117
+ placeholder?: string;
118
+ /**
119
+ * Validates the value
120
+ */
121
+ validate?: (value: Value | Value[] | undefined) => string | Error | undefined;
122
+ /**
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.
125
+ */
126
+ filter?: (search: string, option: Option<Value>) => boolean;
75
127
  }
76
- declare const multiselect: <Value>(opts: MultiSelectOptions<Value>) => Promise<symbol | Value[]>;
77
- interface GroupMultiSelectOptions<Value> {
78
- message: string;
79
- options: Record<string, Option<Value>[]>;
128
+ interface AutocompleteOptions<Value> extends AutocompleteSharedOptions<Value> {
129
+ /**
130
+ * The initial selected value.
131
+ */
132
+ initialValue?: Value;
133
+ /**
134
+ * The initial user input
135
+ */
136
+ initialUserInput?: string;
137
+ }
138
+ declare const autocomplete: <Value>(opts: AutocompleteOptions<Value>) => Promise<Value | symbol>;
139
+ interface AutocompleteMultiSelectOptions<Value> extends AutocompleteSharedOptions<Value> {
140
+ /**
141
+ * The initial selected values
142
+ */
80
143
  initialValues?: Value[];
144
+ /**
145
+ * If true, at least one option must be selected
146
+ */
81
147
  required?: boolean;
82
- cursorAt?: Value;
83
- selectableGroups?: boolean;
84
148
  }
85
- declare const groupMultiselect: <Value>(opts: GroupMultiSelectOptions<Value>) => Promise<symbol | Value[]>;
86
- declare const note: (message?: string, title?: string) => void;
87
- declare const cancel: (message?: string) => void;
88
- declare const intro: (title?: string) => void;
89
- declare const outro: (message?: string) => void;
90
- type LogMessageOptions = {
91
- symbol?: string;
92
- };
93
- declare const log: {
94
- message: (message?: string, { symbol }?: LogMessageOptions) => void;
95
- info: (message: string) => void;
96
- success: (message: string) => void;
97
- step: (message: string) => void;
98
- warn: (message: string) => void;
99
- /** alias for `log.warn()`. */
100
- warning: (message: string) => void;
101
- error: (message: string) => void;
102
- };
103
- declare const stream: {
104
- message: (iterable: Iterable<string> | AsyncIterable<string>, { symbol }?: LogMessageOptions) => Promise<void>;
105
- info: (iterable: Iterable<string> | AsyncIterable<string>) => Promise<void>;
106
- success: (iterable: Iterable<string> | AsyncIterable<string>) => Promise<void>;
107
- step: (iterable: Iterable<string> | AsyncIterable<string>) => Promise<void>;
108
- warn: (iterable: Iterable<string> | AsyncIterable<string>) => Promise<void>;
109
- /** alias for `log.warn()`. */
110
- warning: (iterable: Iterable<string> | AsyncIterable<string>) => Promise<void>;
111
- error: (iterable: Iterable<string> | AsyncIterable<string>) => Promise<void>;
112
- };
113
- interface SpinnerOptions {
114
- indicator?: 'dots' | 'timer';
149
+ /**
150
+ * Integrated autocomplete multiselect - combines type-ahead filtering with multiselect in one UI
151
+ */
152
+ declare const autocompleteMultiselect: <Value>(opts: AutocompleteMultiSelectOptions<Value>) => Promise<Value[] | symbol>;
153
+
154
+ type BoxAlignment = 'left' | 'center' | 'right';
155
+ interface BoxOptions extends CommonOptions {
156
+ contentAlign?: BoxAlignment;
157
+ titleAlign?: BoxAlignment;
158
+ width?: number | 'auto';
159
+ titlePadding?: number;
160
+ contentPadding?: number;
161
+ rounded?: boolean;
162
+ formatBorder?: (text: string) => string;
115
163
  }
116
- declare const spinner: ({ indicator }?: SpinnerOptions) => {
117
- start: (msg?: string) => void;
118
- stop: (msg?: string, code?: number) => void;
119
- message: (msg?: string) => void;
120
- };
164
+ declare const box: (message?: string, title?: string, opts?: BoxOptions) => void;
165
+
166
+ interface ConfirmOptions extends CommonOptions {
167
+ message: string;
168
+ active?: string;
169
+ inactive?: string;
170
+ initialValue?: boolean;
171
+ vertical?: boolean;
172
+ }
173
+ declare const confirm: (opts: ConfirmOptions) => Promise<boolean | symbol>;
174
+
175
+ interface DateOptions extends CommonOptions {
176
+ message: string;
177
+ format?: DateFormat;
178
+ locale?: string;
179
+ defaultValue?: Date;
180
+ initialValue?: Date;
181
+ minDate?: Date;
182
+ maxDate?: Date;
183
+ validate?: (value: Date | undefined) => string | Error | undefined;
184
+ }
185
+ declare const date: (opts: DateOptions) => Promise<Date | symbol>;
186
+
187
+ type Prettify<T> = {
188
+ [P in keyof T]: T[P];
189
+ } & {};
121
190
  type PromptGroupAwaitedReturn<T> = {
122
191
  [P in keyof T]: Exclude<Awaited<T[P]>, symbol>;
123
192
  };
@@ -130,9 +199,6 @@ interface PromptGroupOptions<T> {
130
199
  results: Prettify<Partial<PromptGroupAwaitedReturn<T>>>;
131
200
  }) => void;
132
201
  }
133
- type Prettify<T> = {
134
- [P in keyof T]: T[P];
135
- } & {};
136
202
  type PromptGroup<T> = {
137
203
  [P in keyof T]: (opts: {
138
204
  results: Prettify<Partial<PromptGroupAwaitedReturn<Omit<T, P>>>>;
@@ -142,7 +208,131 @@ type PromptGroup<T> = {
142
208
  * Define a group of prompts to be displayed
143
209
  * and return a results of objects within the group
144
210
  */
145
- declare const group: <T>(prompts: PromptGroup<T>, opts?: PromptGroupOptions<T> | undefined) => Promise<{ [P in keyof PromptGroupAwaitedReturn<T>]: PromptGroupAwaitedReturn<T>[P]; }>;
211
+ declare const group: <T>(prompts: PromptGroup<T>, opts?: PromptGroupOptions<T>) => Promise<Prettify<PromptGroupAwaitedReturn<T>>>;
212
+
213
+ interface GroupMultiSelectOptions<Value> extends CommonOptions {
214
+ message: string;
215
+ options: Record<string, Option<Value>[]>;
216
+ initialValues?: Value[];
217
+ required?: boolean;
218
+ cursorAt?: Value;
219
+ selectableGroups?: boolean;
220
+ groupSpacing?: number;
221
+ }
222
+ declare const groupMultiselect: <Value>(opts: GroupMultiSelectOptions<Value>) => Promise<Value[] | symbol>;
223
+
224
+ interface LimitOptionsParams<TOption> extends CommonOptions {
225
+ options: TOption[];
226
+ cursor: number;
227
+ style: (option: TOption, active: boolean) => string;
228
+ maxItems?: number;
229
+ columnPadding?: number;
230
+ rowPadding?: number;
231
+ }
232
+ declare const limitOptions: <TOption>({ cursor, options, style, output, maxItems, columnPadding, rowPadding, }: LimitOptionsParams<TOption>) => string[];
233
+
234
+ interface LogMessageOptions extends CommonOptions {
235
+ symbol?: string;
236
+ spacing?: number;
237
+ secondarySymbol?: string;
238
+ }
239
+ declare const log: {
240
+ message: (message?: string | string[], { symbol, secondarySymbol, output, spacing, withGuide, }?: LogMessageOptions) => void;
241
+ info: (message: string, opts?: LogMessageOptions) => void;
242
+ success: (message: string, opts?: LogMessageOptions) => void;
243
+ step: (message: string, opts?: LogMessageOptions) => void;
244
+ warn: (message: string, opts?: LogMessageOptions) => void;
245
+ /** alias for `log.warn()`. */
246
+ warning: (message: string, opts?: LogMessageOptions) => void;
247
+ error: (message: string, opts?: LogMessageOptions) => void;
248
+ };
249
+
250
+ declare const cancel: (message?: string, opts?: CommonOptions) => void;
251
+ declare const intro: (title?: string, opts?: CommonOptions) => void;
252
+ declare const outro: (message?: string, opts?: CommonOptions) => void;
253
+
254
+ interface MultiSelectOptions<Value> extends CommonOptions {
255
+ message: string;
256
+ options: Option<Value>[];
257
+ initialValues?: Value[];
258
+ maxItems?: number;
259
+ required?: boolean;
260
+ cursorAt?: Value;
261
+ }
262
+ declare const multiselect: <Value>(opts: MultiSelectOptions<Value>) => Promise<Value[] | symbol>;
263
+
264
+ type FormatFn = (line: string) => string;
265
+ interface NoteOptions extends CommonOptions {
266
+ format?: FormatFn;
267
+ }
268
+ declare const note: (message?: string, title?: string, opts?: NoteOptions) => void;
269
+
270
+ interface PasswordOptions extends CommonOptions {
271
+ message: string;
272
+ mask?: string;
273
+ validate?: (value: string | undefined) => string | Error | undefined;
274
+ clearOnError?: boolean;
275
+ }
276
+ declare const password: (opts: PasswordOptions) => Promise<string | symbol>;
277
+
278
+ interface PathOptions extends CommonOptions {
279
+ root?: string;
280
+ directory?: boolean;
281
+ initialValue?: string;
282
+ message: string;
283
+ validate?: (value: string | undefined) => string | Error | undefined;
284
+ }
285
+ declare const path: (opts: PathOptions) => Promise<string | symbol>;
286
+
287
+ interface SpinnerOptions extends CommonOptions {
288
+ indicator?: 'dots' | 'timer';
289
+ onCancel?: () => void;
290
+ cancelMessage?: string;
291
+ errorMessage?: string;
292
+ frames?: string[];
293
+ delay?: number;
294
+ styleFrame?: (frame: string) => string;
295
+ }
296
+ interface SpinnerResult {
297
+ start(msg?: string): void;
298
+ stop(msg?: string): void;
299
+ cancel(msg?: string): void;
300
+ error(msg?: string): void;
301
+ message(msg?: string): void;
302
+ clear(): void;
303
+ readonly isCancelled: boolean;
304
+ }
305
+ declare const spinner: ({ indicator, onCancel, output, cancelMessage, errorMessage, frames, delay, signal, ...opts }?: SpinnerOptions) => SpinnerResult;
306
+
307
+ interface ProgressOptions extends SpinnerOptions {
308
+ style?: 'light' | 'heavy' | 'block';
309
+ max?: number;
310
+ size?: number;
311
+ }
312
+ interface ProgressResult extends SpinnerResult {
313
+ advance(step?: number, msg?: string): void;
314
+ }
315
+ declare function progress({ style, max: userMax, size: userSize, ...spinnerOptions }?: ProgressOptions): ProgressResult;
316
+
317
+ interface SelectKeyOptions<Value extends string> extends CommonOptions {
318
+ message: string;
319
+ options: Option<Value>[];
320
+ initialValue?: Value;
321
+ caseSensitive?: boolean;
322
+ }
323
+ declare const selectKey: <Value extends string>(opts: SelectKeyOptions<Value>) => Promise<Value | symbol>;
324
+
325
+ declare const stream: {
326
+ message: (iterable: Iterable<string> | AsyncIterable<string>, { symbol }?: LogMessageOptions) => Promise<void>;
327
+ info: (iterable: Iterable<string> | AsyncIterable<string>) => Promise<void>;
328
+ success: (iterable: Iterable<string> | AsyncIterable<string>) => Promise<void>;
329
+ step: (iterable: Iterable<string> | AsyncIterable<string>) => Promise<void>;
330
+ warn: (iterable: Iterable<string> | AsyncIterable<string>) => Promise<void>;
331
+ /** alias for `log.warn()`. */
332
+ warning: (iterable: Iterable<string> | AsyncIterable<string>) => Promise<void>;
333
+ error: (iterable: Iterable<string> | AsyncIterable<string>) => Promise<void>;
334
+ };
335
+
146
336
  type Task = {
147
337
  /**
148
338
  * Task title
@@ -160,6 +350,42 @@ type Task = {
160
350
  /**
161
351
  * Define a group of tasks to be executed
162
352
  */
163
- declare const tasks: (tasks: Task[]) => Promise<void>;
353
+ declare const tasks: (tasks: Task[], opts?: CommonOptions) => Promise<void>;
354
+
355
+ interface TaskLogOptions extends CommonOptions {
356
+ title: string;
357
+ limit?: number;
358
+ spacing?: number;
359
+ retainLog?: boolean;
360
+ }
361
+ interface TaskLogMessageOptions {
362
+ raw?: boolean;
363
+ }
364
+ interface TaskLogCompletionOptions {
365
+ showLog?: boolean;
366
+ }
367
+ /**
368
+ * Renders a log which clears on success and remains on failure
369
+ */
370
+ declare const taskLog: (opts: TaskLogOptions) => {
371
+ message(msg: string, mopts?: TaskLogMessageOptions): void;
372
+ group(name: string): {
373
+ message(msg: string, mopts?: TaskLogMessageOptions): void;
374
+ error(message: string): void;
375
+ success(message: string): void;
376
+ };
377
+ error(message: string, opts?: TaskLogCompletionOptions): void;
378
+ success(message: string, opts?: TaskLogCompletionOptions): void;
379
+ };
380
+
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>;
164
389
 
165
- export { type ConfirmOptions, type GroupMultiSelectOptions, type LogMessageOptions, type MultiSelectOptions, type Option, type PasswordOptions, type PromptGroup, type PromptGroupAwaitedReturn, type PromptGroupOptions, type SelectOptions, type SpinnerOptions, type Task, type TextOptions, cancel, confirm, group, groupMultiselect, intro, log, multiselect, note, outro, password, select, selectKey, spinner, stream, tasks, text };
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 };