mepcli 1.3.2 → 2.0.0-beta.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 (291) hide show
  1. package/README.md +11 -2
  2. package/dist/{ansi.js → src/ansi.js} +17 -9
  3. package/dist/src/ansi.js.map +1 -0
  4. package/dist/{base.js → src/base.js} +82 -70
  5. package/dist/src/base.js.map +1 -0
  6. package/dist/{core.js → src/core.js} +266 -320
  7. package/dist/src/core.js.map +1 -0
  8. package/dist/src/data/countries.js +569 -0
  9. package/dist/src/data/countries.js.map +1 -0
  10. package/dist/src/data/licenses.js +480 -0
  11. package/dist/src/data/licenses.js.map +1 -0
  12. package/dist/{highlight.js → src/highlight.js} +77 -69
  13. package/dist/src/highlight.js.map +1 -0
  14. package/dist/src/index.js +66 -0
  15. package/dist/src/index.js.map +1 -0
  16. package/dist/{input.js → src/input.js} +47 -41
  17. package/dist/src/input.js.map +1 -0
  18. package/dist/src/pipeline.js +273 -0
  19. package/dist/src/pipeline.js.map +1 -0
  20. package/dist/{prompts → src/prompts}/autocomplete.js +58 -57
  21. package/dist/src/prompts/autocomplete.js.map +1 -0
  22. package/dist/{prompts → src/prompts}/box.js +86 -53
  23. package/dist/src/prompts/box.js.map +1 -0
  24. package/dist/{prompts → src/prompts}/breadcrumb-search.js +110 -98
  25. package/dist/src/prompts/breadcrumb-search.js.map +1 -0
  26. package/dist/{prompts → src/prompts}/breadcrumb.js +126 -121
  27. package/dist/src/prompts/breadcrumb.js.map +1 -0
  28. package/dist/{prompts → src/prompts}/byte.js +69 -52
  29. package/dist/src/prompts/byte.js.map +1 -0
  30. package/dist/{prompts → src/prompts}/calculator.js +79 -56
  31. package/dist/src/prompts/calculator.js.map +1 -0
  32. package/dist/{prompts → src/prompts}/calendar.js +167 -127
  33. package/dist/src/prompts/calendar.js.map +1 -0
  34. package/dist/{prompts → src/prompts}/checkbox.js +53 -49
  35. package/dist/src/prompts/checkbox.js.map +1 -0
  36. package/dist/{prompts → src/prompts}/code.js +88 -76
  37. package/dist/src/prompts/code.js.map +1 -0
  38. package/dist/{prompts → src/prompts}/color.js +68 -50
  39. package/dist/src/prompts/color.js.map +1 -0
  40. package/dist/{prompts → src/prompts}/confirm.js +22 -15
  41. package/dist/src/prompts/confirm.js.map +1 -0
  42. package/dist/{prompts → src/prompts}/connection-string.js +59 -36
  43. package/dist/src/prompts/connection-string.js.map +1 -0
  44. package/dist/{prompts → src/prompts}/cron.js +90 -59
  45. package/dist/src/prompts/cron.js.map +1 -0
  46. package/dist/src/prompts/curl-utils.js +71 -0
  47. package/dist/src/prompts/curl-utils.js.map +1 -0
  48. package/dist/{prompts → src/prompts}/curl.js +153 -132
  49. package/dist/src/prompts/curl.js.map +1 -0
  50. package/dist/{prompts → src/prompts}/data-inspector.js +96 -91
  51. package/dist/src/prompts/data-inspector.js.map +1 -0
  52. package/dist/{prompts → src/prompts}/date.js +64 -57
  53. package/dist/src/prompts/date.js.map +1 -0
  54. package/dist/{prompts → src/prompts}/dependency.js +84 -80
  55. package/dist/src/prompts/dependency.js.map +1 -0
  56. package/dist/{prompts → src/prompts}/dial.js +49 -35
  57. package/dist/src/prompts/dial.js.map +1 -0
  58. package/dist/src/prompts/diff.js +118 -0
  59. package/dist/src/prompts/diff.js.map +1 -0
  60. package/dist/{prompts → src/prompts}/draw.js +83 -80
  61. package/dist/src/prompts/draw.js.map +1 -0
  62. package/dist/src/prompts/editor.js +234 -0
  63. package/dist/src/prompts/editor.js.map +1 -0
  64. package/dist/{prompts → src/prompts}/emoji.js +80 -82
  65. package/dist/src/prompts/emoji.js.map +1 -0
  66. package/dist/{prompts → src/prompts}/exec.js +60 -46
  67. package/dist/src/prompts/exec.js.map +1 -0
  68. package/dist/src/prompts/file.js +217 -0
  69. package/dist/src/prompts/file.js.map +1 -0
  70. package/dist/{prompts → src/prompts}/form.js +63 -54
  71. package/dist/src/prompts/form.js.map +1 -0
  72. package/dist/{prompts → src/prompts}/fuzzy-multi-column.js +65 -53
  73. package/dist/src/prompts/fuzzy-multi-column.js.map +1 -0
  74. package/dist/{prompts → src/prompts}/fuzzy.js +66 -55
  75. package/dist/src/prompts/fuzzy.js.map +1 -0
  76. package/dist/src/prompts/gauge.js +137 -0
  77. package/dist/src/prompts/gauge.js.map +1 -0
  78. package/dist/{prompts → src/prompts}/grid.js +70 -57
  79. package/dist/src/prompts/grid.js.map +1 -0
  80. package/dist/{prompts → src/prompts}/heatmap.js +70 -64
  81. package/dist/src/prompts/heatmap.js.map +1 -0
  82. package/dist/{prompts → src/prompts}/ip.js +56 -36
  83. package/dist/src/prompts/ip.js.map +1 -0
  84. package/dist/{prompts → src/prompts}/kanban.js +63 -58
  85. package/dist/src/prompts/kanban.js.map +1 -0
  86. package/dist/src/prompts/keypress.js +54 -0
  87. package/dist/src/prompts/keypress.js.map +1 -0
  88. package/dist/src/prompts/license.js +144 -0
  89. package/dist/src/prompts/license.js.map +1 -0
  90. package/dist/{prompts → src/prompts}/list.js +46 -31
  91. package/dist/src/prompts/list.js.map +1 -0
  92. package/dist/{prompts → src/prompts}/map.js +93 -77
  93. package/dist/src/prompts/map.js.map +1 -0
  94. package/dist/{prompts → src/prompts}/match.js +91 -95
  95. package/dist/src/prompts/match.js.map +1 -0
  96. package/dist/{prompts → src/prompts}/miller.js +74 -67
  97. package/dist/src/prompts/miller.js.map +1 -0
  98. package/dist/{prompts → src/prompts}/multi-column-select.js +54 -44
  99. package/dist/src/prompts/multi-column-select.js.map +1 -0
  100. package/dist/{prompts → src/prompts}/multi-range.js +70 -52
  101. package/dist/src/prompts/multi-range.js.map +1 -0
  102. package/dist/{prompts → src/prompts}/multi-select.js +67 -58
  103. package/dist/src/prompts/multi-select.js.map +1 -0
  104. package/dist/{prompts → src/prompts}/number.js +51 -39
  105. package/dist/src/prompts/number.js.map +1 -0
  106. package/dist/{prompts → src/prompts}/otp.js +43 -27
  107. package/dist/src/prompts/otp.js.map +1 -0
  108. package/dist/{prompts → src/prompts}/pattern.js +74 -71
  109. package/dist/src/prompts/pattern.js.map +1 -0
  110. package/dist/{prompts → src/prompts}/phone.js +107 -118
  111. package/dist/src/prompts/phone.js.map +1 -0
  112. package/dist/src/prompts/quiz-select.js +114 -0
  113. package/dist/src/prompts/quiz-select.js.map +1 -0
  114. package/dist/src/prompts/quiz-text.js +98 -0
  115. package/dist/src/prompts/quiz-text.js.map +1 -0
  116. package/dist/{prompts → src/prompts}/range.js +85 -61
  117. package/dist/src/prompts/range.js.map +1 -0
  118. package/dist/{prompts → src/prompts}/rating.js +29 -24
  119. package/dist/src/prompts/rating.js.map +1 -0
  120. package/dist/{prompts → src/prompts}/regex.js +50 -36
  121. package/dist/src/prompts/regex.js.map +1 -0
  122. package/dist/{prompts → src/prompts}/region.js +62 -56
  123. package/dist/src/prompts/region.js.map +1 -0
  124. package/dist/{prompts → src/prompts}/schedule.js +82 -75
  125. package/dist/src/prompts/schedule.js.map +1 -0
  126. package/dist/{prompts → src/prompts}/scroll.js +61 -58
  127. package/dist/src/prompts/scroll.js.map +1 -0
  128. package/dist/src/prompts/seat.js +164 -0
  129. package/dist/src/prompts/seat.js.map +1 -0
  130. package/dist/{prompts → src/prompts}/select-range.js +58 -46
  131. package/dist/src/prompts/select-range.js.map +1 -0
  132. package/dist/{prompts → src/prompts}/select.js +65 -66
  133. package/dist/src/prompts/select.js.map +1 -0
  134. package/dist/{prompts → src/prompts}/semver.js +24 -13
  135. package/dist/src/prompts/semver.js.map +1 -0
  136. package/dist/src/prompts/shortcut.js +133 -0
  137. package/dist/src/prompts/shortcut.js.map +1 -0
  138. package/dist/{prompts → src/prompts}/slider.js +28 -23
  139. package/dist/src/prompts/slider.js.map +1 -0
  140. package/dist/src/prompts/slot.js +117 -0
  141. package/dist/src/prompts/slot.js.map +1 -0
  142. package/dist/{prompts → src/prompts}/snippet.js +82 -61
  143. package/dist/src/prompts/snippet.js.map +1 -0
  144. package/dist/{prompts → src/prompts}/sort-grid.js +64 -59
  145. package/dist/src/prompts/sort-grid.js.map +1 -0
  146. package/dist/{prompts → src/prompts}/sort.js +59 -49
  147. package/dist/src/prompts/sort.js.map +1 -0
  148. package/dist/src/prompts/spam.js +80 -0
  149. package/dist/src/prompts/spam.js.map +1 -0
  150. package/dist/{prompts → src/prompts}/spreadsheet.js +71 -70
  151. package/dist/src/prompts/spreadsheet.js.map +1 -0
  152. package/dist/{prompts → src/prompts}/table.js +52 -38
  153. package/dist/src/prompts/table.js.map +1 -0
  154. package/dist/{prompts → src/prompts}/text.js +74 -70
  155. package/dist/src/prompts/text.js.map +1 -0
  156. package/dist/{prompts → src/prompts}/time.js +105 -96
  157. package/dist/src/prompts/time.js.map +1 -0
  158. package/dist/src/prompts/toggle.js +53 -0
  159. package/dist/src/prompts/toggle.js.map +1 -0
  160. package/dist/{prompts → src/prompts}/transfer.js +71 -67
  161. package/dist/src/prompts/transfer.js.map +1 -0
  162. package/dist/{prompts → src/prompts}/tree-select.js +83 -86
  163. package/dist/src/prompts/tree-select.js.map +1 -0
  164. package/dist/{prompts → src/prompts}/tree.js +69 -67
  165. package/dist/src/prompts/tree.js.map +1 -0
  166. package/dist/src/prompts/wait.js +79 -0
  167. package/dist/src/prompts/wait.js.map +1 -0
  168. package/dist/src/spinner.js +105 -0
  169. package/dist/src/spinner.js.map +1 -0
  170. package/dist/{symbols.js → src/symbols.js} +32 -7
  171. package/dist/src/symbols.js.map +1 -0
  172. package/dist/{tasks.js → src/tasks.js} +104 -79
  173. package/dist/src/tasks.js.map +1 -0
  174. package/dist/src/theme.js +29 -0
  175. package/dist/src/theme.js.map +1 -0
  176. package/dist/src/types.js +8 -0
  177. package/dist/src/types.js.map +1 -0
  178. package/dist/{utils.js → src/utils.js} +196 -152
  179. package/dist/src/utils.js.map +1 -0
  180. package/package.json +16 -13
  181. package/dist/ansi.d.ts +0 -36
  182. package/dist/base.d.ts +0 -60
  183. package/dist/core.d.ts +0 -1072
  184. package/dist/data/countries.d.ts +0 -2
  185. package/dist/data/countries.js +0 -105
  186. package/dist/data/licenses.d.ts +0 -2
  187. package/dist/data/licenses.js +0 -109
  188. package/dist/highlight.d.ts +0 -7
  189. package/dist/index.d.ts +0 -48
  190. package/dist/index.js +0 -64
  191. package/dist/input.d.ts +0 -14
  192. package/dist/pipeline.d.ts +0 -39
  193. package/dist/pipeline.js +0 -54
  194. package/dist/prompts/autocomplete.d.ts +0 -22
  195. package/dist/prompts/box.d.ts +0 -21
  196. package/dist/prompts/breadcrumb-search.d.ts +0 -14
  197. package/dist/prompts/breadcrumb.d.ts +0 -32
  198. package/dist/prompts/byte.d.ts +0 -13
  199. package/dist/prompts/calculator.d.ts +0 -17
  200. package/dist/prompts/calendar.d.ts +0 -33
  201. package/dist/prompts/checkbox.d.ts +0 -13
  202. package/dist/prompts/code.d.ts +0 -19
  203. package/dist/prompts/color.d.ts +0 -14
  204. package/dist/prompts/confirm.d.ts +0 -8
  205. package/dist/prompts/connection-string.d.ts +0 -18
  206. package/dist/prompts/cron.d.ts +0 -13
  207. package/dist/prompts/curl-utils.d.ts +0 -25
  208. package/dist/prompts/curl-utils.js +0 -41
  209. package/dist/prompts/curl.d.ts +0 -41
  210. package/dist/prompts/data-inspector.d.ts +0 -22
  211. package/dist/prompts/date.d.ts +0 -12
  212. package/dist/prompts/dependency.d.ts +0 -16
  213. package/dist/prompts/dial.d.ts +0 -10
  214. package/dist/prompts/diff.d.ts +0 -10
  215. package/dist/prompts/diff.js +0 -101
  216. package/dist/prompts/draw.d.ts +0 -20
  217. package/dist/prompts/editor.d.ts +0 -14
  218. package/dist/prompts/editor.js +0 -203
  219. package/dist/prompts/emoji.d.ts +0 -18
  220. package/dist/prompts/exec.d.ts +0 -17
  221. package/dist/prompts/file.d.ts +0 -21
  222. package/dist/prompts/file.js +0 -210
  223. package/dist/prompts/form.d.ts +0 -18
  224. package/dist/prompts/fuzzy-multi-column.d.ts +0 -12
  225. package/dist/prompts/fuzzy.d.ts +0 -12
  226. package/dist/prompts/gauge.d.ts +0 -21
  227. package/dist/prompts/gauge.js +0 -130
  228. package/dist/prompts/grid.d.ts +0 -14
  229. package/dist/prompts/heatmap.d.ts +0 -13
  230. package/dist/prompts/ip.d.ts +0 -11
  231. package/dist/prompts/kanban.d.ts +0 -17
  232. package/dist/prompts/keypress.d.ts +0 -7
  233. package/dist/prompts/keypress.js +0 -55
  234. package/dist/prompts/license.d.ts +0 -9
  235. package/dist/prompts/license.js +0 -105
  236. package/dist/prompts/list.d.ts +0 -9
  237. package/dist/prompts/map.d.ts +0 -17
  238. package/dist/prompts/match.d.ts +0 -19
  239. package/dist/prompts/miller.d.ts +0 -15
  240. package/dist/prompts/multi-column-select.d.ts +0 -10
  241. package/dist/prompts/multi-range.d.ts +0 -9
  242. package/dist/prompts/multi-select.d.ts +0 -15
  243. package/dist/prompts/number.d.ts +0 -11
  244. package/dist/prompts/otp.d.ts +0 -10
  245. package/dist/prompts/pattern.d.ts +0 -22
  246. package/dist/prompts/phone.d.ts +0 -41
  247. package/dist/prompts/quiz-select.d.ts +0 -10
  248. package/dist/prompts/quiz-select.js +0 -104
  249. package/dist/prompts/quiz-text.d.ts +0 -11
  250. package/dist/prompts/quiz-text.js +0 -82
  251. package/dist/prompts/range.d.ts +0 -9
  252. package/dist/prompts/rating.d.ts +0 -8
  253. package/dist/prompts/regex.d.ts +0 -13
  254. package/dist/prompts/region.d.ts +0 -11
  255. package/dist/prompts/schedule.d.ts +0 -20
  256. package/dist/prompts/scroll.d.ts +0 -13
  257. package/dist/prompts/seat.d.ts +0 -17
  258. package/dist/prompts/seat.js +0 -165
  259. package/dist/prompts/select-range.d.ts +0 -8
  260. package/dist/prompts/select.d.ts +0 -15
  261. package/dist/prompts/semver.d.ts +0 -6
  262. package/dist/prompts/shortcut.d.ts +0 -9
  263. package/dist/prompts/shortcut.js +0 -135
  264. package/dist/prompts/slider.d.ts +0 -8
  265. package/dist/prompts/slot.d.ts +0 -16
  266. package/dist/prompts/slot.js +0 -107
  267. package/dist/prompts/snippet.d.ts +0 -19
  268. package/dist/prompts/sort-grid.d.ts +0 -16
  269. package/dist/prompts/sort.d.ts +0 -14
  270. package/dist/prompts/spam.d.ts +0 -17
  271. package/dist/prompts/spam.js +0 -62
  272. package/dist/prompts/spreadsheet.d.ts +0 -21
  273. package/dist/prompts/table.d.ts +0 -14
  274. package/dist/prompts/text.d.ts +0 -17
  275. package/dist/prompts/time.d.ts +0 -12
  276. package/dist/prompts/toggle.d.ts +0 -8
  277. package/dist/prompts/toggle.js +0 -47
  278. package/dist/prompts/transfer.d.ts +0 -18
  279. package/dist/prompts/tree-select.d.ts +0 -31
  280. package/dist/prompts/tree.d.ts +0 -20
  281. package/dist/prompts/wait.d.ts +0 -18
  282. package/dist/prompts/wait.js +0 -62
  283. package/dist/spinner.d.ts +0 -33
  284. package/dist/spinner.js +0 -89
  285. package/dist/symbols.d.ts +0 -33
  286. package/dist/tasks.d.ts +0 -57
  287. package/dist/theme.d.ts +0 -2
  288. package/dist/theme.js +0 -20
  289. package/dist/types.d.ts +0 -503
  290. package/dist/types.js +0 -5
  291. package/dist/utils.d.ts +0 -81
@@ -1,87 +1,104 @@
1
1
  "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.MepCLI = void 0;
4
- const theme_1 = require("./theme");
5
- const spinner_1 = require("./spinner");
6
- const text_1 = require("./prompts/text");
7
- const select_1 = require("./prompts/select");
8
- const checkbox_1 = require("./prompts/checkbox");
9
- const confirm_1 = require("./prompts/confirm");
10
- const toggle_1 = require("./prompts/toggle");
11
- const number_1 = require("./prompts/number");
12
- const list_1 = require("./prompts/list");
13
- const slider_1 = require("./prompts/slider");
14
- const range_1 = require("./prompts/range");
15
- const transfer_1 = require("./prompts/transfer");
16
- const cron_1 = require("./prompts/cron");
17
- const date_1 = require("./prompts/date");
18
- const file_1 = require("./prompts/file");
19
- const multi_select_1 = require("./prompts/multi-select");
20
- const rating_1 = require("./prompts/rating");
21
- const autocomplete_1 = require("./prompts/autocomplete");
22
- const sort_1 = require("./prompts/sort");
23
- const table_1 = require("./prompts/table");
24
- const editor_1 = require("./prompts/editor");
25
- const tree_1 = require("./prompts/tree");
26
- const keypress_1 = require("./prompts/keypress");
27
- const form_1 = require("./prompts/form");
28
- const snippet_1 = require("./prompts/snippet");
29
- const spam_1 = require("./prompts/spam");
30
- const wait_1 = require("./prompts/wait");
31
- const code_1 = require("./prompts/code");
32
- const tree_select_1 = require("./prompts/tree-select");
33
- const color_1 = require("./prompts/color");
34
- const grid_1 = require("./prompts/grid");
35
- const calendar_1 = require("./prompts/calendar");
36
- const map_1 = require("./prompts/map");
37
- const semver_1 = require("./prompts/semver");
38
- const ip_1 = require("./prompts/ip");
39
- const otp_1 = require("./prompts/otp");
40
- const quiz_select_1 = require("./prompts/quiz-select");
41
- const quiz_text_1 = require("./prompts/quiz-text");
42
- const kanban_1 = require("./prompts/kanban");
43
- const time_1 = require("./prompts/time");
44
- const heatmap_1 = require("./prompts/heatmap");
45
- const byte_1 = require("./prompts/byte");
46
- const slot_1 = require("./prompts/slot");
47
- const gauge_1 = require("./prompts/gauge");
48
- const calculator_1 = require("./prompts/calculator");
49
- const emoji_1 = require("./prompts/emoji");
50
- const match_1 = require("./prompts/match");
51
- const diff_1 = require("./prompts/diff");
52
- const dial_1 = require("./prompts/dial");
53
- const draw_1 = require("./prompts/draw");
54
- const multi_column_select_1 = require("./prompts/multi-column-select");
55
- const fuzzy_1 = require("./prompts/fuzzy");
56
- const miller_1 = require("./prompts/miller");
57
- const pattern_1 = require("./prompts/pattern");
58
- const region_1 = require("./prompts/region");
59
- const spreadsheet_1 = require("./prompts/spreadsheet");
60
- const scroll_1 = require("./prompts/scroll");
61
- const breadcrumb_1 = require("./prompts/breadcrumb");
62
- const schedule_1 = require("./prompts/schedule");
63
- const data_inspector_1 = require("./prompts/data-inspector");
64
- const exec_1 = require("./prompts/exec");
65
- const shortcut_1 = require("./prompts/shortcut");
66
- const seat_1 = require("./prompts/seat");
67
- const select_range_1 = require("./prompts/select-range");
68
- const sort_grid_1 = require("./prompts/sort-grid");
69
- const dependency_1 = require("./prompts/dependency");
70
- const license_1 = require("./prompts/license");
71
- const regex_1 = require("./prompts/regex");
72
- const box_1 = require("./prompts/box");
73
- const phone_1 = require("./prompts/phone");
74
- const fuzzy_multi_column_1 = require("./prompts/fuzzy-multi-column");
75
- const multi_range_1 = require("./prompts/multi-range");
76
- const breadcrumb_search_1 = require("./prompts/breadcrumb-search");
77
- const connection_string_1 = require("./prompts/connection-string");
78
- const curl_1 = require("./prompts/curl");
79
- const pipeline_1 = require("./pipeline");
80
- const tasks_1 = require("./tasks");
81
- /**
82
- * Public Facade for Mep
83
- */
84
- class MepCLI {
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "MepCLI", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return MepCLI;
9
+ }
10
+ });
11
+ const _theme = require("./theme");
12
+ const _spinner = require("./spinner");
13
+ const _text = require("./prompts/text");
14
+ const _select = require("./prompts/select");
15
+ const _checkbox = require("./prompts/checkbox");
16
+ const _confirm = require("./prompts/confirm");
17
+ const _toggle = require("./prompts/toggle");
18
+ const _number = require("./prompts/number");
19
+ const _list = require("./prompts/list");
20
+ const _slider = require("./prompts/slider");
21
+ const _range = require("./prompts/range");
22
+ const _transfer = require("./prompts/transfer");
23
+ const _cron = require("./prompts/cron");
24
+ const _date = require("./prompts/date");
25
+ const _file = require("./prompts/file");
26
+ const _multiselect = require("./prompts/multi-select");
27
+ const _rating = require("./prompts/rating");
28
+ const _autocomplete = require("./prompts/autocomplete");
29
+ const _sort = require("./prompts/sort");
30
+ const _table = require("./prompts/table");
31
+ const _editor = require("./prompts/editor");
32
+ const _tree = require("./prompts/tree");
33
+ const _keypress = require("./prompts/keypress");
34
+ const _form = require("./prompts/form");
35
+ const _snippet = require("./prompts/snippet");
36
+ const _spam = require("./prompts/spam");
37
+ const _wait = require("./prompts/wait");
38
+ const _code = require("./prompts/code");
39
+ const _treeselect = require("./prompts/tree-select");
40
+ const _color = require("./prompts/color");
41
+ const _grid = require("./prompts/grid");
42
+ const _calendar = require("./prompts/calendar");
43
+ const _map = require("./prompts/map");
44
+ const _semver = require("./prompts/semver");
45
+ const _ip = require("./prompts/ip");
46
+ const _otp = require("./prompts/otp");
47
+ const _quizselect = require("./prompts/quiz-select");
48
+ const _quiztext = require("./prompts/quiz-text");
49
+ const _kanban = require("./prompts/kanban");
50
+ const _time = require("./prompts/time");
51
+ const _heatmap = require("./prompts/heatmap");
52
+ const _byte = require("./prompts/byte");
53
+ const _slot = require("./prompts/slot");
54
+ const _gauge = require("./prompts/gauge");
55
+ const _calculator = require("./prompts/calculator");
56
+ const _emoji = require("./prompts/emoji");
57
+ const _match = require("./prompts/match");
58
+ const _diff = require("./prompts/diff");
59
+ const _dial = require("./prompts/dial");
60
+ const _draw = require("./prompts/draw");
61
+ const _multicolumnselect = require("./prompts/multi-column-select");
62
+ const _fuzzy = require("./prompts/fuzzy");
63
+ const _miller = require("./prompts/miller");
64
+ const _pattern = require("./prompts/pattern");
65
+ const _region = require("./prompts/region");
66
+ const _spreadsheet = require("./prompts/spreadsheet");
67
+ const _scroll = require("./prompts/scroll");
68
+ const _breadcrumb = require("./prompts/breadcrumb");
69
+ const _schedule = require("./prompts/schedule");
70
+ const _datainspector = require("./prompts/data-inspector");
71
+ const _exec = require("./prompts/exec");
72
+ const _shortcut = require("./prompts/shortcut");
73
+ const _seat = require("./prompts/seat");
74
+ const _selectrange = require("./prompts/select-range");
75
+ const _sortgrid = require("./prompts/sort-grid");
76
+ const _dependency = require("./prompts/dependency");
77
+ const _license = require("./prompts/license");
78
+ const _regex = require("./prompts/regex");
79
+ const _box = require("./prompts/box");
80
+ const _phone = require("./prompts/phone");
81
+ const _fuzzymulticolumn = require("./prompts/fuzzy-multi-column");
82
+ const _multirange = require("./prompts/multi-range");
83
+ const _breadcrumbsearch = require("./prompts/breadcrumb-search");
84
+ const _connectionstring = require("./prompts/connection-string");
85
+ const _curl = require("./prompts/curl");
86
+ const _pipeline = require("./pipeline");
87
+ const _tasks = require("./tasks");
88
+ function _define_property(obj, key, value) {
89
+ if (key in obj) {
90
+ Object.defineProperty(obj, key, {
91
+ value: value,
92
+ enumerable: true,
93
+ configurable: true,
94
+ writable: true
95
+ });
96
+ } else {
97
+ obj[key] = value;
98
+ }
99
+ return obj;
100
+ }
101
+ let MepCLI = class MepCLI {
85
102
  /**
86
103
  * Creates a new Spinner instance to indicate background activity.
87
104
  * @example
@@ -92,9 +109,8 @@ class MepCLI {
92
109
  * @param message - The initial text to display next to the spinner.
93
110
  * @returns A Spinner instance to control the animation.
94
111
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/spinner.ts}
95
- */
96
- static spinner(message) {
97
- return new spinner_1.Spinner(message);
112
+ */ static spinner(message) {
113
+ return new _spinner.Spinner(message);
98
114
  }
99
115
  /**
100
116
  * Creates a new TaskRunner for managing multiple concurrent tasks (spinners/progress bars).
@@ -106,9 +122,8 @@ class MepCLI {
106
122
  * @param options - Configuration for concurrency and renderer style.
107
123
  * @returns A TaskRunner instance.
108
124
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/task-runner.ts}
109
- */
110
- static tasks(options) {
111
- return new tasks_1.TaskRunner(options);
125
+ */ static tasks(options) {
126
+ return new _tasks.TaskRunner(options);
112
127
  }
113
128
  /**
114
129
  * Creates a new Pipeline instance for sequential workflow execution.
@@ -121,9 +136,8 @@ class MepCLI {
121
136
  * .run();
122
137
  * @returns A fluent Pipeline builder.
123
138
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/pipeline-demo.ts}
124
- */
125
- static pipeline() {
126
- return new pipeline_1.Pipeline();
139
+ */ static pipeline() {
140
+ return new _pipeline.Pipeline();
127
141
  }
128
142
  /**
129
143
  * Standard text input prompt.
@@ -136,9 +150,8 @@ class MepCLI {
136
150
  * @param options - Configuration options including validation and placeholder.
137
151
  * @returns A promise resolving to the user's input string.
138
152
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/basic-prompts.ts}
139
- */
140
- static text(options) {
141
- return new text_1.TextPrompt(options).run();
153
+ */ static text(options) {
154
+ return new _text.TextPrompt(options).run();
142
155
  }
143
156
  /**
144
157
  * Single selection prompt from a list of choices.
@@ -153,9 +166,8 @@ class MepCLI {
153
166
  * @param options - Choices and configuration.
154
167
  * @returns A promise resolving to the selected value (V).
155
168
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/selection-prompts.ts}
156
- */
157
- static select(options) {
158
- return new select_1.SelectPrompt(options).run();
169
+ */ static select(options) {
170
+ return new _select.SelectPrompt(options).run();
159
171
  }
160
172
  /**
161
173
  * Multiple selection prompt with checkboxes.
@@ -171,9 +183,8 @@ class MepCLI {
171
183
  * @param options - Choices, limits (min/max), and initial state.
172
184
  * @returns A promise resolving to an array of selected values (V[]).
173
185
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/selection-prompts.ts}
174
- */
175
- static checkbox(options) {
176
- return new checkbox_1.CheckboxPrompt(options).run();
186
+ */ static checkbox(options) {
187
+ return new _checkbox.CheckboxPrompt(options).run();
177
188
  }
178
189
  /**
179
190
  * Boolean confirmation prompt (Y/n).
@@ -185,9 +196,8 @@ class MepCLI {
185
196
  * @param options - Message and initial boolean state.
186
197
  * @returns A promise resolving to true or false.
187
198
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/basic-prompts.ts}
188
- */
189
- static confirm(options) {
190
- return new confirm_1.ConfirmPrompt(options).run();
199
+ */ static confirm(options) {
200
+ return new _confirm.ConfirmPrompt(options).run();
191
201
  }
192
202
  /**
193
203
  * Secure password input (masked with *).
@@ -199,9 +209,11 @@ class MepCLI {
199
209
  * @param options - Same as TextOptions but defaults to hidden input.
200
210
  * @returns A promise resolving to the password string.
201
211
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/basic-prompts.ts}
202
- */
203
- static password(options) {
204
- return new text_1.TextPrompt({ ...options, isPassword: true }).run();
212
+ */ static password(options) {
213
+ return new _text.TextPrompt({
214
+ ...options,
215
+ isPassword: true
216
+ }).run();
205
217
  }
206
218
  /**
207
219
  * Secret input prompt (no visual feedback).
@@ -212,9 +224,11 @@ class MepCLI {
212
224
  * @param options - Same as TextOptions, visual output is suppressed.
213
225
  * @returns A promise resolving to the secret string.
214
226
  * @see {@link https://github.com/CodeTease/mep/blob/main/example.ts}
215
- */
216
- static secret(options) {
217
- return new text_1.TextPrompt({ ...options, mask: '' }).run();
227
+ */ static secret(options) {
228
+ return new _text.TextPrompt({
229
+ ...options,
230
+ mask: ''
231
+ }).run();
218
232
  }
219
233
  /**
220
234
  * Numeric input prompt with increments.
@@ -228,9 +242,8 @@ class MepCLI {
228
242
  * @param options - Min, max, step, and initial value.
229
243
  * @returns A promise resolving to the entered number.
230
244
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/basic-prompts.ts}
231
- */
232
- static number(options) {
233
- return new number_1.NumberPrompt(options).run();
245
+ */ static number(options) {
246
+ return new _number.NumberPrompt(options).run();
234
247
  }
235
248
  /**
236
249
  * Binary toggle switch.
@@ -244,9 +257,8 @@ class MepCLI {
244
257
  * @param options - Text labels for states and initial value.
245
258
  * @returns A promise resolving to the boolean state.
246
259
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/basic-prompts.ts}
247
- */
248
- static toggle(options) {
249
- return new toggle_1.TogglePrompt(options).run();
260
+ */ static toggle(options) {
261
+ return new _toggle.TogglePrompt(options).run();
250
262
  }
251
263
  /**
252
264
  * Tag list input (comma separated or enter to add).
@@ -259,9 +271,8 @@ class MepCLI {
259
271
  * @param options - Placeholder and initial list.
260
272
  * @returns A promise resolving to an array of strings.
261
273
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/form-prompts.ts}
262
- */
263
- static list(options) {
264
- return new list_1.ListPrompt(options).run();
274
+ */ static list(options) {
275
+ return new _list.ListPrompt(options).run();
265
276
  }
266
277
  /**
267
278
  * Slider input for selecting a number within a range.
@@ -276,9 +287,8 @@ class MepCLI {
276
287
  * @param options - Min/max range, step, and unit label.
277
288
  * @returns A promise resolving to the selected number.
278
289
  * @see {@link https://github.com/CodeTease/mep/blob/main/example.ts}
279
- */
280
- static slider(options) {
281
- return new slider_1.SliderPrompt(options).run();
290
+ */ static slider(options) {
291
+ return new _slider.SliderPrompt(options).run();
282
292
  }
283
293
  /**
284
294
  * Dual-handle slider for selecting a numeric range.
@@ -292,9 +302,8 @@ class MepCLI {
292
302
  * @param options - Range bounds and initial start/end values.
293
303
  * @returns A promise resolving to a tuple `[start, end]`.
294
304
  * @see {@link https://github.com/CodeTease/mep/blob/main/example.ts}
295
- */
296
- static range(options) {
297
- return new range_1.RangePrompt(options).run();
305
+ */ static range(options) {
306
+ return new _range.RangePrompt(options).run();
298
307
  }
299
308
  /**
300
309
  * Transfer list for moving items between two lists.
@@ -307,9 +316,8 @@ class MepCLI {
307
316
  * @param options - Source and target lists.
308
317
  * @returns A promise resolving to `[sourceItems, targetItems]`.
309
318
  * @see {@link https://github.com/CodeTease/mep/blob/main/example.ts}
310
- */
311
- static transfer(options) {
312
- return new transfer_1.TransferPrompt(options).run();
319
+ */ static transfer(options) {
320
+ return new _transfer.TransferPrompt(options).run();
313
321
  }
314
322
  /**
315
323
  * Cron expression generator/validator.
@@ -321,9 +329,8 @@ class MepCLI {
321
329
  * @param options - Initial cron string and placeholder.
322
330
  * @returns A promise resolving to the valid cron string.
323
331
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/cron-prompt.ts}
324
- */
325
- static cron(options) {
326
- return new cron_1.CronPrompt(options).run();
332
+ */ static cron(options) {
333
+ return new _cron.CronPrompt(options).run();
327
334
  }
328
335
  /**
329
336
  * Interactive date picker.
@@ -336,9 +343,8 @@ class MepCLI {
336
343
  * @param options - Min/max dates and localization.
337
344
  * @returns A promise resolving to the selected Date object.
338
345
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/calendar-prompt.ts}
339
- */
340
- static date(options) {
341
- return new date_1.DatePrompt(options).run();
346
+ */ static date(options) {
347
+ return new _date.DatePrompt(options).run();
342
348
  }
343
349
  /**
344
350
  * File system explorer.
@@ -351,9 +357,8 @@ class MepCLI {
351
357
  * @param options - Root path, allowed extensions, and directory filtering.
352
358
  * @returns A promise resolving to the absolute path of the selected file.
353
359
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/filesystem-prompts.ts}
354
- */
355
- static file(options) {
356
- return new file_1.FilePrompt(options).run();
360
+ */ static file(options) {
361
+ return new _file.FilePrompt(options).run();
357
362
  }
358
363
  /**
359
364
  * Multi-select checkbox with search support (alias for checkbox logic).
@@ -368,9 +373,8 @@ class MepCLI {
368
373
  * @param options - Same as CheckboxOptions.
369
374
  * @returns A promise resolving to an array of selected values.
370
375
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/selection-prompts.ts}
371
- */
372
- static multiSelect(options) {
373
- return new multi_select_1.MultiSelectPrompt(options).run();
376
+ */ static multiSelect(options) {
377
+ return new _multiselect.MultiSelectPrompt(options).run();
374
378
  }
375
379
  /**
376
380
  * Star rating input.
@@ -384,9 +388,8 @@ class MepCLI {
384
388
  * @param options - Min/max stars.
385
389
  * @returns A promise resolving to the numeric rating.
386
390
  * @see {@link https://github.com/CodeTease/mep/blob/main/example.ts}
387
- */
388
- static rating(options) {
389
- return new rating_1.RatingPrompt(options).run();
391
+ */ static rating(options) {
392
+ return new _rating.RatingPrompt(options).run();
390
393
  }
391
394
  /**
392
395
  * Autocomplete search with async data fetching.
@@ -401,9 +404,8 @@ class MepCLI {
401
404
  * @param options - `suggest` callback to filter/fetch choices.
402
405
  * @returns A promise resolving to the selected value.
403
406
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/selection-prompts.ts}
404
- */
405
- static autocomplete(options) {
406
- return new autocomplete_1.AutocompletePrompt(options).run();
407
+ */ static autocomplete(options) {
408
+ return new _autocomplete.AutocompletePrompt(options).run();
407
409
  }
408
410
  /**
409
411
  * List sorting prompt.
@@ -415,9 +417,8 @@ class MepCLI {
415
417
  * @param options - Array of strings to be reordered.
416
418
  * @returns A promise resolving to the reordered array of strings.
417
419
  * @see {@link https://github.com/CodeTease/mep/blob/main/example.ts}
418
- */
419
- static sort(options) {
420
- return new sort_1.SortPrompt(options).run();
420
+ */ static sort(options) {
421
+ return new _sort.SortPrompt(options).run();
421
422
  }
422
423
  /**
423
424
  * Interactive data table with row selection.
@@ -433,9 +434,8 @@ class MepCLI {
433
434
  * @param options - Columns definition and row data.
434
435
  * @returns A promise resolving to the `value` of the selected row.
435
436
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/data-visualization.ts}
436
- */
437
- static table(options) {
438
- return new table_1.TablePrompt(options).run();
437
+ */ static table(options) {
438
+ return new _table.TablePrompt(options).run();
439
439
  }
440
440
  /**
441
441
  * Open external editor (vim/nano/code) for long input.
@@ -447,9 +447,8 @@ class MepCLI {
447
447
  * @param options - File extension for syntax highlighting.
448
448
  * @returns A promise resolving to the saved content.
449
449
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/form-prompts.ts}
450
- */
451
- static editor(options) {
452
- return new editor_1.EditorPrompt(options).run();
450
+ */ static editor(options) {
451
+ return new _editor.EditorPrompt(options).run();
453
452
  }
454
453
  /**
455
454
  * Hierarchical tree selection.
@@ -465,9 +464,8 @@ class MepCLI {
465
464
  * @param options - Tree structure data.
466
465
  * @returns A promise resolving to the selected node's value.
467
466
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/tree-prompt.ts}
468
- */
469
- static tree(options) {
470
- return new tree_1.TreePrompt(options).run();
467
+ */ static tree(options) {
468
+ return new _tree.TreePrompt(options).run();
471
469
  }
472
470
  /**
473
471
  * Detect single keypress event.
@@ -478,9 +476,8 @@ class MepCLI {
478
476
  * @param options - Optional allowed keys filter.
479
477
  * @returns A promise resolving to the pressed key name.
480
478
  * @see {@link https://github.com/CodeTease/mep/blob/main/example.ts}
481
- */
482
- static keypress(options) {
483
- return new keypress_1.KeypressPrompt(options).run();
479
+ */ static keypress(options) {
480
+ return new _keypress.KeypressPrompt(options).run();
484
481
  }
485
482
  /**
486
483
  * Multi-field form input.
@@ -496,9 +493,8 @@ class MepCLI {
496
493
  * @param options - Array of field definitions.
497
494
  * @returns A promise resolving to an object with field names as keys.
498
495
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/form-prompts.ts}
499
- */
500
- static form(options) {
501
- return new form_1.FormPrompt(options).run();
496
+ */ static form(options) {
497
+ return new _form.FormPrompt(options).run();
502
498
  }
503
499
  /**
504
500
  * Templated snippet generator.
@@ -516,9 +512,8 @@ class MepCLI {
516
512
  * @param options - Template string with {{variables}} and field config.
517
513
  * @returns A promise resolving to the compiled string.
518
514
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/snippet-prompt.ts}
519
- */
520
- static snippet(options) {
521
- return new snippet_1.SnippetPrompt(options).run();
515
+ */ static snippet(options) {
516
+ return new _snippet.SnippetPrompt(options).run();
522
517
  }
523
518
  /**
524
519
  * Anti-spam / Bot detection prompt.
@@ -531,9 +526,8 @@ class MepCLI {
531
526
  * @param options - Threshold frequency and key to mash.
532
527
  * @returns A promise resolving to true (pass) or false (fail).
533
528
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/spam-prompt.ts}
534
- */
535
- static spam(options) {
536
- return new spam_1.SpamPrompt(options).run();
529
+ */ static spam(options) {
530
+ return new _spam.SpamPrompt(options).run();
537
531
  }
538
532
  /**
539
533
  * Pause execution for a set time (with progress).
@@ -545,9 +539,8 @@ class MepCLI {
545
539
  * @param options - Duration in seconds.
546
540
  * @returns A promise resolving after the delay.
547
541
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/wait-prompt.ts}
548
- */
549
- static wait(options) {
550
- return new wait_1.WaitPrompt(options).run();
542
+ */ static wait(options) {
543
+ return new _wait.WaitPrompt(options).run();
551
544
  }
552
545
  /**
553
546
  * Source code editor with syntax highlighting.
@@ -560,9 +553,8 @@ class MepCLI {
560
553
  * @param options - Language, initial template, and syntax highlighting.
561
554
  * @returns A promise resolving to the edited code string.
562
555
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/code-prompt.ts}
563
- */
564
- static code(options) {
565
- return new code_1.CodePrompt(options).run();
556
+ */ static code(options) {
557
+ return new _code.CodePrompt(options).run();
566
558
  }
567
559
  /**
568
560
  * Tree Select Prompt (Multi-selection).
@@ -583,9 +575,8 @@ class MepCLI {
583
575
  * When used in a long sequence of prompts, this component may experience
584
576
  * an input delay. If it feels "blocked", simply press 'Enter' once
585
577
  * to refresh the TTY stream.
586
- */
587
- static treeSelect(options) {
588
- return new tree_select_1.TreeSelectPrompt(options).run();
578
+ */ static treeSelect(options) {
579
+ return new _treeselect.TreeSelectPrompt(options).run();
589
580
  }
590
581
  /**
591
582
  * Color picker (Hex, RGB, HSL).
@@ -598,9 +589,8 @@ class MepCLI {
598
589
  * @param options - Format preference and initial value.
599
590
  * @returns A promise resolving to the color string.
600
591
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/color-prompt.ts}
601
- */
602
- static color(options) {
603
- return new color_1.ColorPrompt(options).run();
592
+ */ static color(options) {
593
+ return new _color.ColorPrompt(options).run();
604
594
  }
605
595
  /**
606
596
  * 2D Grid Checkbox (Boolean Matrix).
@@ -613,9 +603,8 @@ class MepCLI {
613
603
  * @param options - Row/Column labels.
614
604
  * @returns A promise resolving to a 2D boolean array.
615
605
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/grid-prompt.ts}
616
- */
617
- static grid(options) {
618
- return new grid_1.GridPrompt(options).run();
606
+ */ static grid(options) {
607
+ return new _grid.GridPrompt(options).run();
619
608
  }
620
609
  /**
621
610
  * Calendar picker for dates or ranges.
@@ -627,9 +616,8 @@ class MepCLI {
627
616
  * @param options - Selection mode (single/range) and bounds.
628
617
  * @returns A promise resolving to a Date or [Date, Date].
629
618
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/calendar-prompt.ts}
630
- */
631
- static calendar(options) {
632
- return new calendar_1.CalendarPrompt(options).run();
619
+ */ static calendar(options) {
620
+ return new _calendar.CalendarPrompt(options).run();
633
621
  }
634
622
  /**
635
623
  * Key-Value Map editor.
@@ -641,9 +629,8 @@ class MepCLI {
641
629
  * @param options - Initial key-value pairs.
642
630
  * @returns A promise resolving to a record of strings.
643
631
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/map-prompt.ts}
644
- */
645
- static map(options) {
646
- return new map_1.MapPrompt(options).run();
632
+ */ static map(options) {
633
+ return new _map.MapPrompt(options).run();
647
634
  }
648
635
  /**
649
636
  * Semantic Versioning incrementer.
@@ -655,9 +642,8 @@ class MepCLI {
655
642
  * @param options - The current version string.
656
643
  * @returns A promise resolving to the new version string.
657
644
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/semver-prompt.ts}
658
- */
659
- static semver(options) {
660
- return new semver_1.SemVerPrompt(options).run();
645
+ */ static semver(options) {
646
+ return new _semver.SemVerPrompt(options).run();
661
647
  }
662
648
  /**
663
649
  * IP Address input validator.
@@ -669,9 +655,8 @@ class MepCLI {
669
655
  * @param options - Initial value.
670
656
  * @returns A promise resolving to the valid IP string.
671
657
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/ip-prompt.ts}
672
- */
673
- static ip(options) {
674
- return new ip_1.IPPrompt(options).run();
658
+ */ static ip(options) {
659
+ return new _ip.IPPrompt(options).run();
675
660
  }
676
661
  /**
677
662
  * One-Time Password / Pin Code input.
@@ -683,9 +668,8 @@ class MepCLI {
683
668
  * @param options - Length and masking options.
684
669
  * @returns A promise resolving to the entered code.
685
670
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/otp-prompt.ts}
686
- */
687
- static otp(options) {
688
- return new otp_1.OTPPrompt(options).run();
671
+ */ static otp(options) {
672
+ return new _otp.OTPPrompt(options).run();
689
673
  }
690
674
  /**
691
675
  * Multiple choice quiz.
@@ -701,9 +685,8 @@ class MepCLI {
701
685
  * @param options - Choices and correct answer logic.
702
686
  * @returns A promise resolving to the selected value.
703
687
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/quiz-select-prompt.ts}
704
- */
705
- static quizSelect(options) {
706
- return new quiz_select_1.QuizSelectPrompt(options).run();
688
+ */ static quizSelect(options) {
689
+ return new _quizselect.QuizSelectPrompt(options).run();
707
690
  }
708
691
  /**
709
692
  * Text-based quiz with verification.
@@ -716,9 +699,8 @@ class MepCLI {
716
699
  * @param options - Correct answer string or validation function.
717
700
  * @returns A promise resolving to the input string.
718
701
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/quiz-text-prompt.ts}
719
- */
720
- static quizText(options) {
721
- return new quiz_text_1.QuizTextPrompt(options).run();
702
+ */ static quizText(options) {
703
+ return new _quiztext.QuizTextPrompt(options).run();
722
704
  }
723
705
  /**
724
706
  * Kanban board for organizing items.
@@ -733,9 +715,8 @@ class MepCLI {
733
715
  * @param options - Columns and their items.
734
716
  * @returns A promise resolving to the final column state.
735
717
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/kanban-prompt.ts}
736
- */
737
- static kanban(options) {
738
- return new kanban_1.KanbanPrompt(options).run();
718
+ */ static kanban(options) {
719
+ return new _kanban.KanbanPrompt(options).run();
739
720
  }
740
721
  /**
741
722
  * Time picker (HH:MM AM/PM).
@@ -747,9 +728,8 @@ class MepCLI {
747
728
  * @param options - 12h/24h format and step intervals.
748
729
  * @returns A promise resolving to the time string.
749
730
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/time-prompt.ts}
750
- */
751
- static time(options) {
752
- return new time_1.TimePrompt(options).run();
731
+ */ static time(options) {
732
+ return new _time.TimePrompt(options).run();
753
733
  }
754
734
  /**
755
735
  * Heatmap/Weekly schedule selector.
@@ -766,9 +746,8 @@ class MepCLI {
766
746
  * @param options - Grid labels and color scale legend.
767
747
  * @returns A promise resolving to a 2D array of values.
768
748
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/heatmap-prompt.ts}
769
- */
770
- static heatmap(options) {
771
- return new heatmap_1.HeatmapPrompt(options).run();
749
+ */ static heatmap(options) {
750
+ return new _heatmap.HeatmapPrompt(options).run();
772
751
  }
773
752
  /**
774
753
  * Byte size input (KB, MB, GB).
@@ -780,9 +759,8 @@ class MepCLI {
780
759
  * @param options - Min/Max bytes.
781
760
  * @returns A promise resolving to the number of bytes.
782
761
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/byte-prompt.ts}
783
- */
784
- static byte(options) {
785
- return new byte_1.BytePrompt(options).run();
762
+ */ static byte(options) {
763
+ return new _byte.BytePrompt(options).run();
786
764
  }
787
765
  /**
788
766
  * Slot machine style spinner.
@@ -795,9 +773,8 @@ class MepCLI {
795
773
  * @param options - Items to cycle through.
796
774
  * @returns A promise resolving to the selected item string.
797
775
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/slot-prompt.ts}
798
- */
799
- static slot(options) {
800
- return new slot_1.SlotPrompt(options).run();
776
+ */ static slot(options) {
777
+ return new _slot.SlotPrompt(options).run();
801
778
  }
802
779
  /**
803
780
  * Rhythm game style gauge input.
@@ -809,9 +786,8 @@ class MepCLI {
809
786
  * @param options - Width and difficulty (safeZone).
810
787
  * @returns A promise resolving to 'success' or 'fail'.
811
788
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/gauge-prompt.ts}
812
- */
813
- static gauge(options) {
814
- return new gauge_1.GaugePrompt(options).run();
789
+ */ static gauge(options) {
790
+ return new _gauge.GaugePrompt(options).run();
815
791
  }
816
792
  /**
817
793
  * Interactive calculator.
@@ -823,9 +799,8 @@ class MepCLI {
823
799
  * @param options - Initial expression.
824
800
  * @returns A promise resolving to the numeric result.
825
801
  * @see {@link https://github.com/CodeTease/mep/blob/main/example.ts}
826
- */
827
- static calculator(options) {
828
- return new calculator_1.CalculatorPrompt(options).run();
802
+ */ static calculator(options) {
803
+ return new _calculator.CalculatorPrompt(options).run();
829
804
  }
830
805
  /**
831
806
  * Emoji picker.
@@ -840,9 +815,8 @@ class MepCLI {
840
815
  * @param options - List of emojis and recent history.
841
816
  * @returns A promise resolving to the selected emoji name/char.
842
817
  * @see {@link https://github.com/CodeTease/mep/blob/main/example.ts}
843
- */
844
- static emoji(options) {
845
- return new emoji_1.EmojiPrompt(options).run();
818
+ */ static emoji(options) {
819
+ return new _emoji.EmojiPrompt(options).run();
846
820
  }
847
821
  /**
848
822
  * Match/Connect items from two lists.
@@ -855,9 +829,8 @@ class MepCLI {
855
829
  * @param options - Source and Target lists.
856
830
  * @returns A promise resolving to linked pairs.
857
831
  * @see {@link https://github.com/CodeTease/mep/blob/main/example.ts}
858
- */
859
- static match(options) {
860
- return new match_1.MatchPrompt(options).run();
832
+ */ static match(options) {
833
+ return new _match.MatchPrompt(options).run();
861
834
  }
862
835
  /**
863
836
  * Git-style diff viewer.
@@ -870,9 +843,8 @@ class MepCLI {
870
843
  * @param options - Original and Modified strings.
871
844
  * @returns A promise resolving to a confirmation string.
872
845
  * @see {@link https://github.com/CodeTease/mep/blob/main/example.ts}
873
- */
874
- static diff(options) {
875
- return new diff_1.DiffPrompt(options).run();
846
+ */ static diff(options) {
847
+ return new _diff.DiffPrompt(options).run();
876
848
  }
877
849
  /**
878
850
  * Rotary dial input.
@@ -885,9 +857,8 @@ class MepCLI {
885
857
  * @param options - Range and radius.
886
858
  * @returns A promise resolving to the number.
887
859
  * @see {@link https://github.com/CodeTease/mep/blob/main/example.ts}
888
- */
889
- static dial(options) {
890
- return new dial_1.DialPrompt(options).run();
860
+ */ static dial(options) {
861
+ return new _dial.DialPrompt(options).run();
891
862
  }
892
863
  /**
893
864
  * Canvas drawing input.
@@ -900,9 +871,8 @@ class MepCLI {
900
871
  * @param options - Canvas dimensions and export type.
901
872
  * @returns A promise resolving to the raw matrix or text.
902
873
  * @see {@link https://github.com/CodeTease/mep/blob/main/example.ts}
903
- */
904
- static draw(options) {
905
- return new draw_1.DrawPrompt(options).run();
874
+ */ static draw(options) {
875
+ return new _draw.DrawPrompt(options).run();
906
876
  }
907
877
  /**
908
878
  * Multi-column selection (Grid layout).
@@ -919,9 +889,8 @@ class MepCLI {
919
889
  * @param options - Choices and column count.
920
890
  * @returns A promise resolving to the selected value.
921
891
  * @see {@link https://github.com/CodeTease/mep/blob/main/example.ts}
922
- */
923
- static multiColumnSelect(options) {
924
- return new multi_column_select_1.MultiColumnSelectPrompt(options).run();
892
+ */ static multiColumnSelect(options) {
893
+ return new _multicolumnselect.MultiColumnSelectPrompt(options).run();
925
894
  }
926
895
  /**
927
896
  * Fuzzy search selection.
@@ -936,9 +905,8 @@ class MepCLI {
936
905
  * @param options - Choices to fuzzy search against.
937
906
  * @returns A promise resolving to the selected value.
938
907
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/selection-prompts.ts}
939
- */
940
- static fuzzySelect(options) {
941
- return new fuzzy_1.FuzzySelectPrompt(options).run();
908
+ */ static fuzzySelect(options) {
909
+ return new _fuzzy.FuzzySelectPrompt(options).run();
942
910
  }
943
911
  /**
944
912
  * Miller Columns (Cascading lists).
@@ -952,9 +920,8 @@ class MepCLI {
952
920
  * @param options - Hierarchical data and separator.
953
921
  * @returns A promise resolving to the selected path array.
954
922
  * @see {@link https://github.com/CodeTease/mep/blob/main/example.ts}
955
- */
956
- static miller(options) {
957
- return new miller_1.MillerPrompt(options).run();
923
+ */ static miller(options) {
924
+ return new _miller.MillerPrompt(options).run();
958
925
  }
959
926
  /**
960
927
  * Pattern Lock (Android style).
@@ -967,9 +934,8 @@ class MepCLI {
967
934
  * @param options - Grid dimensions.
968
935
  * @returns A promise resolving to an array of point indices.
969
936
  * @see {@link https://github.com/CodeTease/mep/blob/main/example.ts}
970
- */
971
- static pattern(options) {
972
- return new pattern_1.PatternPrompt(options).run();
937
+ */ static pattern(options) {
938
+ return new _pattern.PatternPrompt(options).run();
973
939
  }
974
940
  /**
975
941
  * Region/Map Selector (ASCII Art).
@@ -984,9 +950,8 @@ class MepCLI {
984
950
  * @param options - ASCII map string and interactive points.
985
951
  * @returns A promise resolving to the selected region ID.
986
952
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/map-prompt.ts}
987
- */
988
- static region(options) {
989
- return new region_1.RegionPrompt(options).run();
953
+ */ static region(options) {
954
+ return new _region.RegionPrompt(options).run();
990
955
  }
991
956
  /**
992
957
  * Spreadsheet/Grid Editor.
@@ -999,9 +964,8 @@ class MepCLI {
999
964
  * @param options - Column definitions and initial data rows.
1000
965
  * @returns A promise resolving to the modified data array.
1001
966
  * @see {@link https://github.com/CodeTease/mep/blob/main/example.ts}
1002
- */
1003
- static spreadsheet(options) {
1004
- return new spreadsheet_1.SpreadsheetPrompt(options).run();
967
+ */ static spreadsheet(options) {
968
+ return new _spreadsheet.SpreadsheetPrompt(options).run();
1005
969
  }
1006
970
  /**
1007
971
  * Text Scroller (EULA/Terms).
@@ -1014,9 +978,8 @@ class MepCLI {
1014
978
  * @param options - Text content and scroll enforcement.
1015
979
  * @returns A promise resolving to a boolean (accepted).
1016
980
  * @see {@link https://github.com/CodeTease/mep/blob/main/example.ts}
1017
- */
1018
- static scroll(options) {
1019
- return new scroll_1.ScrollPrompt(options).run();
981
+ */ static scroll(options) {
982
+ return new _scroll.ScrollPrompt(options).run();
1020
983
  }
1021
984
  /**
1022
985
  * Breadcrumb navigation.
@@ -1028,9 +991,8 @@ class MepCLI {
1028
991
  * @param options - Initial path and separator.
1029
992
  * @returns A promise resolving to the final path string.
1030
993
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/breadcrumb-search-prompt.ts}
1031
- */
1032
- static breadcrumb(options) {
1033
- return new breadcrumb_1.BreadcrumbPrompt(options).run();
994
+ */ static breadcrumb(options) {
995
+ return new _breadcrumb.BreadcrumbPrompt(options).run();
1034
996
  }
1035
997
  /**
1036
998
  * Schedule Planner (Gantt-like).
@@ -1044,9 +1006,8 @@ class MepCLI {
1044
1006
  * @param options - List of scheduled tasks.
1045
1007
  * @returns A promise resolving to the modified task list.
1046
1008
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/schedule-prompt.ts}
1047
- */
1048
- static schedule(options) {
1049
- return new schedule_1.SchedulePrompt(options).run();
1009
+ */ static schedule(options) {
1010
+ return new _schedule.SchedulePrompt(options).run();
1050
1011
  }
1051
1012
  /**
1052
1013
  * JSON Data Inspector.
@@ -1058,9 +1019,8 @@ class MepCLI {
1058
1019
  * @param options - Data object to explore.
1059
1020
  * @returns A promise resolving to the viewed data.
1060
1021
  * @see {@link https://github.com/CodeTease/mep/blob/main/example.ts}
1061
- */
1062
- static inspector(options) {
1063
- return new data_inspector_1.DataInspectorPrompt(options).run();
1022
+ */ static inspector(options) {
1023
+ return new _datainspector.DataInspectorPrompt(options).run();
1064
1024
  }
1065
1025
  /**
1066
1026
  * Execute shell command with output streaming.
@@ -1073,9 +1033,8 @@ class MepCLI {
1073
1033
  * @param options - Command string and streaming preferences.
1074
1034
  * @returns A promise resolving when execution completes.
1075
1035
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/exec-prompt.ts}
1076
- */
1077
- static exec(options) {
1078
- return new exec_1.ExecPrompt(options).run();
1036
+ */ static exec(options) {
1037
+ return new _exec.ExecPrompt(options).run();
1079
1038
  }
1080
1039
  /**
1081
1040
  * Keyboard Shortcut recorder.
@@ -1087,9 +1046,8 @@ class MepCLI {
1087
1046
  * @param options - Initial value.
1088
1047
  * @returns A promise resolving to the captured key event.
1089
1048
  * @see {@link https://github.com/CodeTease/mep/blob/main/example.ts}
1090
- */
1091
- static shortcut(options) {
1092
- return new shortcut_1.ShortcutPrompt(options).run();
1049
+ */ static shortcut(options) {
1050
+ return new _shortcut.ShortcutPrompt(options).run();
1093
1051
  }
1094
1052
  /**
1095
1053
  * Seat Booking/Reservation selector.
@@ -1106,9 +1064,8 @@ class MepCLI {
1106
1064
  * @param options - Layout string array and labelling.
1107
1065
  * @returns A promise resolving to selected seat IDs.
1108
1066
  * @see {@link https://github.com/CodeTease/mep/blob/main/example.ts}
1109
- */
1110
- static seat(options) {
1111
- return new seat_1.SeatPrompt(options).run();
1067
+ */ static seat(options) {
1068
+ return new _seat.SeatPrompt(options).run();
1112
1069
  }
1113
1070
  /**
1114
1071
  * Range selection within a list (Shift+Click style).
@@ -1124,9 +1081,8 @@ class MepCLI {
1124
1081
  * @param options - Choices list.
1125
1082
  * @returns A promise resolving to the sub-array of values.
1126
1083
  * @see {@link https://github.com/CodeTease/mep/blob/main/example.ts}
1127
- */
1128
- static selectRange(options) {
1129
- return new select_range_1.SelectRangePrompt(options).run();
1084
+ */ static selectRange(options) {
1085
+ return new _selectrange.SelectRangePrompt(options).run();
1130
1086
  }
1131
1087
  /**
1132
1088
  * 2D Grid Sorting.
@@ -1141,9 +1097,8 @@ class MepCLI {
1141
1097
  * @param options - 2D array of strings.
1142
1098
  * @returns A promise resolving to the reordered 2D array.
1143
1099
  * @see {@link https://github.com/CodeTease/mep/blob/main/example.ts}
1144
- */
1145
- static sortGrid(options) {
1146
- return new sort_grid_1.SortGridPrompt(options).run();
1100
+ */ static sortGrid(options) {
1101
+ return new _sortgrid.SortGridPrompt(options).run();
1147
1102
  }
1148
1103
  /**
1149
1104
  * Dependency Management (Resolves conflicts/requirements).
@@ -1158,9 +1113,8 @@ class MepCLI {
1158
1113
  * @param options - Choices with dependency rules.
1159
1114
  * @returns A promise resolving to the valid set of selections.
1160
1115
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/dependency-prompts.ts}
1161
- */
1162
- static dependency(options) {
1163
- return new dependency_1.DependencyPrompt(options).run();
1116
+ */ static dependency(options) {
1117
+ return new _dependency.DependencyPrompt(options).run();
1164
1118
  }
1165
1119
  /**
1166
1120
  * Open Source License selector.
@@ -1171,9 +1125,8 @@ class MepCLI {
1171
1125
  * @param options - Default license.
1172
1126
  * @returns A promise resolving to the SPDX ID.
1173
1127
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/license-prompts.ts}
1174
- */
1175
- static license(options) {
1176
- return new license_1.LicensePrompt(options).run();
1128
+ */ static license(options) {
1129
+ return new _license.LicensePrompt(options).run();
1177
1130
  }
1178
1131
  /**
1179
1132
  * Regex Builder & Tester.
@@ -1185,9 +1138,8 @@ class MepCLI {
1185
1138
  * @param options - Test cases to validate against.
1186
1139
  * @returns A promise resolving to the RegExp object.
1187
1140
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/regex-prompt.ts}
1188
- */
1189
- static regex(options) {
1190
- return new regex_1.RegexPrompt(options).run();
1141
+ */ static regex(options) {
1142
+ return new _regex.RegexPrompt(options).run();
1191
1143
  }
1192
1144
  /**
1193
1145
  * Box Model Editor (CSS style).
@@ -1199,9 +1151,8 @@ class MepCLI {
1199
1151
  * @param options - Initial dimensions.
1200
1152
  * @returns A promise resolving to the box object.
1201
1153
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/box-prompt.ts}
1202
- */
1203
- static box(options) {
1204
- return new box_1.BoxPrompt(options).run();
1154
+ */ static box(options) {
1155
+ return new _box.BoxPrompt(options).run();
1205
1156
  }
1206
1157
  /**
1207
1158
  * Database Connection String Builder.
@@ -1213,9 +1164,8 @@ class MepCLI {
1213
1164
  * @param options - Initial URL.
1214
1165
  * @returns A promise resolving to parsed connection details.
1215
1166
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/connection-string-prompt.ts}
1216
- */
1217
- static connectionString(options) {
1218
- return (0, connection_string_1.connectionString)(options);
1167
+ */ static connectionString(options) {
1168
+ return (0, _connectionstring.connectionString)(options);
1219
1169
  }
1220
1170
  /**
1221
1171
  * cURL Command Builder.
@@ -1227,9 +1177,8 @@ class MepCLI {
1227
1177
  * @param options - Initial command.
1228
1178
  * @returns A promise resolving to the parsed request object.
1229
1179
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/curl-prompt.ts}
1230
- */
1231
- static curl(options) {
1232
- return new curl_1.CurlPrompt(options).run();
1180
+ */ static curl(options) {
1181
+ return new _curl.CurlPrompt(options).run();
1233
1182
  }
1234
1183
  /**
1235
1184
  * Phone Number input (with country codes).
@@ -1241,9 +1190,8 @@ class MepCLI {
1241
1190
  * @param options - Default country ISO code.
1242
1191
  * @returns A promise resolving to the formatted number.
1243
1192
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/phone-prompt.ts}
1244
- */
1245
- static phone(options) {
1246
- return new phone_1.PhonePrompt(options).run();
1193
+ */ static phone(options) {
1194
+ return new _phone.PhonePrompt(options).run();
1247
1195
  }
1248
1196
  /**
1249
1197
  * Fuzzy Multi-Column Selection.
@@ -1259,9 +1207,8 @@ class MepCLI {
1259
1207
  * @param options - Choices and layout columns.
1260
1208
  * @returns A promise resolving to the selected value.
1261
1209
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/fuzzy-multi-column-prompt.ts}
1262
- */
1263
- static fuzzyMultiColumn(options) {
1264
- return new fuzzy_multi_column_1.FuzzyMultiColumnPrompt(options).run();
1210
+ */ static fuzzyMultiColumn(options) {
1211
+ return new _fuzzymulticolumn.FuzzyMultiColumnPrompt(options).run();
1265
1212
  }
1266
1213
  /**
1267
1214
  * Multi-Range Selection (Discontinuous).
@@ -1273,9 +1220,8 @@ class MepCLI {
1273
1220
  * @param options - Choices.
1274
1221
  * @returns A promise resolving to selected values.
1275
1222
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/multi-range-prompt.ts}
1276
- */
1277
- static multiRange(options) {
1278
- return new multi_range_1.MultiRangePrompt(options).run();
1223
+ */ static multiRange(options) {
1224
+ return new _multirange.MultiRangePrompt(options).run();
1279
1225
  }
1280
1226
  /**
1281
1227
  * Breadcrumb Search (Navigator + Fuzzy Search).
@@ -1287,10 +1233,10 @@ class MepCLI {
1287
1233
  * @param options - Root path.
1288
1234
  * @returns A promise resolving to the selected path.
1289
1235
  * @see {@link https://github.com/CodeTease/mep/blob/main/examples/breadcrumb-search-prompt.ts}
1290
- */
1291
- static breadcrumbSearch(options) {
1292
- return new breadcrumb_search_1.BreadcrumbSearchPrompt(options).run();
1236
+ */ static breadcrumbSearch(options) {
1237
+ return new _breadcrumbsearch.BreadcrumbSearchPrompt(options).run();
1293
1238
  }
1294
- }
1295
- exports.MepCLI = MepCLI;
1296
- MepCLI.theme = theme_1.theme;
1239
+ };
1240
+ _define_property(MepCLI, "theme", _theme.theme);
1241
+
1242
+ //# sourceMappingURL=core.js.map