@base44-preview/cli 0.0.52-pr.516.7a7934c → 0.0.52-pr.516.f96674e

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.
@@ -736,7 +736,7 @@
736
736
  "var baseTrim = require('./_baseTrim'),\n isObject = require('./isObject'),\n isSymbol = require('./isSymbol');\n\n/** Used as references for various `Number` constants. */\nvar NAN = 0 / 0;\n\n/** Used to detect bad signed hexadecimal string values. */\nvar reIsBadHex = /^[-+]0x[0-9a-f]+$/i;\n\n/** Used to detect binary string values. */\nvar reIsBinary = /^0b[01]+$/i;\n\n/** Used to detect octal string values. */\nvar reIsOctal = /^0o[0-7]+$/i;\n\n/** Built-in method references without a dependency on `root`. */\nvar freeParseInt = parseInt;\n\n/**\n * Converts `value` to a number.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to process.\n * @returns {number} Returns the number.\n * @example\n *\n * _.toNumber(3.2);\n * // => 3.2\n *\n * _.toNumber(Number.MIN_VALUE);\n * // => 5e-324\n *\n * _.toNumber(Infinity);\n * // => Infinity\n *\n * _.toNumber('3.2');\n * // => 3.2\n */\nfunction toNumber(value) {\n if (typeof value == 'number') {\n return value;\n }\n if (isSymbol(value)) {\n return NAN;\n }\n if (isObject(value)) {\n var other = typeof value.valueOf == 'function' ? value.valueOf() : value;\n value = isObject(other) ? (other + '') : other;\n }\n if (typeof value != 'string') {\n return value === 0 ? value : +value;\n }\n value = baseTrim(value);\n var isBinary = reIsBinary.test(value);\n return (isBinary || reIsOctal.test(value))\n ? freeParseInt(value.slice(2), isBinary ? 2 : 8)\n : (reIsBadHex.test(value) ? NAN : +value);\n}\n\nmodule.exports = toNumber;\n",
737
737
  "var isObject = require('./isObject'),\n now = require('./now'),\n toNumber = require('./toNumber');\n\n/** Error message constants. */\nvar FUNC_ERROR_TEXT = 'Expected a function';\n\n/* Built-in method references for those with the same name as other `lodash` methods. */\nvar nativeMax = Math.max,\n nativeMin = Math.min;\n\n/**\n * Creates a debounced function that delays invoking `func` until after `wait`\n * milliseconds have elapsed since the last time the debounced function was\n * invoked. The debounced function comes with a `cancel` method to cancel\n * delayed `func` invocations and a `flush` method to immediately invoke them.\n * Provide `options` to indicate whether `func` should be invoked on the\n * leading and/or trailing edge of the `wait` timeout. The `func` is invoked\n * with the last arguments provided to the debounced function. Subsequent\n * calls to the debounced function return the result of the last `func`\n * invocation.\n *\n * **Note:** If `leading` and `trailing` options are `true`, `func` is\n * invoked on the trailing edge of the timeout only if the debounced function\n * is invoked more than once during the `wait` timeout.\n *\n * If `wait` is `0` and `leading` is `false`, `func` invocation is deferred\n * until to the next tick, similar to `setTimeout` with a timeout of `0`.\n *\n * See [David Corbacho's article](https://css-tricks.com/debouncing-throttling-explained-examples/)\n * for details over the differences between `_.debounce` and `_.throttle`.\n *\n * @static\n * @memberOf _\n * @since 0.1.0\n * @category Function\n * @param {Function} func The function to debounce.\n * @param {number} [wait=0] The number of milliseconds to delay.\n * @param {Object} [options={}] The options object.\n * @param {boolean} [options.leading=false]\n * Specify invoking on the leading edge of the timeout.\n * @param {number} [options.maxWait]\n * The maximum time `func` is allowed to be delayed before it's invoked.\n * @param {boolean} [options.trailing=true]\n * Specify invoking on the trailing edge of the timeout.\n * @returns {Function} Returns the new debounced function.\n * @example\n *\n * // Avoid costly calculations while the window size is in flux.\n * jQuery(window).on('resize', _.debounce(calculateLayout, 150));\n *\n * // Invoke `sendMail` when clicked, debouncing subsequent calls.\n * jQuery(element).on('click', _.debounce(sendMail, 300, {\n * 'leading': true,\n * 'trailing': false\n * }));\n *\n * // Ensure `batchLog` is invoked once after 1 second of debounced calls.\n * var debounced = _.debounce(batchLog, 250, { 'maxWait': 1000 });\n * var source = new EventSource('/stream');\n * jQuery(source).on('message', debounced);\n *\n * // Cancel the trailing debounced invocation.\n * jQuery(window).on('popstate', debounced.cancel);\n */\nfunction debounce(func, wait, options) {\n var lastArgs,\n lastThis,\n maxWait,\n result,\n timerId,\n lastCallTime,\n lastInvokeTime = 0,\n leading = false,\n maxing = false,\n trailing = true;\n\n if (typeof func != 'function') {\n throw new TypeError(FUNC_ERROR_TEXT);\n }\n wait = toNumber(wait) || 0;\n if (isObject(options)) {\n leading = !!options.leading;\n maxing = 'maxWait' in options;\n maxWait = maxing ? nativeMax(toNumber(options.maxWait) || 0, wait) : maxWait;\n trailing = 'trailing' in options ? !!options.trailing : trailing;\n }\n\n function invokeFunc(time) {\n var args = lastArgs,\n thisArg = lastThis;\n\n lastArgs = lastThis = undefined;\n lastInvokeTime = time;\n result = func.apply(thisArg, args);\n return result;\n }\n\n function leadingEdge(time) {\n // Reset any `maxWait` timer.\n lastInvokeTime = time;\n // Start the timer for the trailing edge.\n timerId = setTimeout(timerExpired, wait);\n // Invoke the leading edge.\n return leading ? invokeFunc(time) : result;\n }\n\n function remainingWait(time) {\n var timeSinceLastCall = time - lastCallTime,\n timeSinceLastInvoke = time - lastInvokeTime,\n timeWaiting = wait - timeSinceLastCall;\n\n return maxing\n ? nativeMin(timeWaiting, maxWait - timeSinceLastInvoke)\n : timeWaiting;\n }\n\n function shouldInvoke(time) {\n var timeSinceLastCall = time - lastCallTime,\n timeSinceLastInvoke = time - lastInvokeTime;\n\n // Either this is the first call, activity has stopped and we're at the\n // trailing edge, the system time has gone backwards and we're treating\n // it as the trailing edge, or we've hit the `maxWait` limit.\n return (lastCallTime === undefined || (timeSinceLastCall >= wait) ||\n (timeSinceLastCall < 0) || (maxing && timeSinceLastInvoke >= maxWait));\n }\n\n function timerExpired() {\n var time = now();\n if (shouldInvoke(time)) {\n return trailingEdge(time);\n }\n // Restart the timer.\n timerId = setTimeout(timerExpired, remainingWait(time));\n }\n\n function trailingEdge(time) {\n timerId = undefined;\n\n // Only invoke if we have `lastArgs` which means `func` has been\n // debounced at least once.\n if (trailing && lastArgs) {\n return invokeFunc(time);\n }\n lastArgs = lastThis = undefined;\n return result;\n }\n\n function cancel() {\n if (timerId !== undefined) {\n clearTimeout(timerId);\n }\n lastInvokeTime = 0;\n lastArgs = lastCallTime = lastThis = timerId = undefined;\n }\n\n function flush() {\n return timerId === undefined ? result : trailingEdge(now());\n }\n\n function debounced() {\n var time = now(),\n isInvoking = shouldInvoke(time);\n\n lastArgs = arguments;\n lastThis = this;\n lastCallTime = time;\n\n if (isInvoking) {\n if (timerId === undefined) {\n return leadingEdge(lastCallTime);\n }\n if (maxing) {\n // Handle invocations in a tight loop.\n clearTimeout(timerId);\n timerId = setTimeout(timerExpired, wait);\n return invokeFunc(lastCallTime);\n }\n }\n if (timerId === undefined) {\n timerId = setTimeout(timerExpired, wait);\n }\n return result;\n }\n debounced.cancel = cancel;\n debounced.flush = flush;\n return debounced;\n}\n\nmodule.exports = debounce;\n",
738
738
  "\"use strict\";\nvar __defProp = Object.defineProperty;\nvar __getOwnPropDesc = Object.getOwnPropertyDescriptor;\nvar __getOwnPropNames = Object.getOwnPropertyNames;\nvar __hasOwnProp = Object.prototype.hasOwnProperty;\nvar __export = (target, all) => {\n for (var name in all)\n __defProp(target, name, { get: all[name], enumerable: true });\n};\nvar __copyProps = (to, from, except, desc) => {\n if (from && typeof from === \"object\" || typeof from === \"function\") {\n for (let key of __getOwnPropNames(from))\n if (!__hasOwnProp.call(to, key) && key !== except)\n __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });\n }\n return to;\n};\nvar __toCommonJS = (mod) => __copyProps(__defProp({}, \"__esModule\", { value: true }), mod);\nvar src_exports = {};\n__export(src_exports, {\n KNOWN_AGENTS: () => KNOWN_AGENTS,\n determineAgent: () => determineAgent\n});\nmodule.exports = __toCommonJS(src_exports);\nvar import_promises = require(\"node:fs/promises\");\nvar import_node_fs = require(\"node:fs\");\nconst DEVIN_LOCAL_PATH = \"/opt/.devin\";\nconst CURSOR = \"cursor\";\nconst CURSOR_CLI = \"cursor-cli\";\nconst CLAUDE = \"claude\";\nconst DEVIN = \"devin\";\nconst REPLIT = \"replit\";\nconst GEMINI = \"gemini\";\nconst CODEX = \"codex\";\nconst AUGMENT_CLI = \"augment-cli\";\nconst OPENCODE = \"opencode\";\nconst KNOWN_AGENTS = {\n CURSOR,\n CURSOR_CLI,\n CLAUDE,\n DEVIN,\n REPLIT,\n GEMINI,\n CODEX,\n AUGMENT_CLI,\n OPENCODE\n};\nasync function determineAgent() {\n if (process.env.AI_AGENT) {\n const name = process.env.AI_AGENT.trim();\n if (name) {\n return {\n isAgent: true,\n agent: { name }\n };\n }\n }\n if (process.env.CURSOR_TRACE_ID) {\n return { isAgent: true, agent: { name: CURSOR } };\n }\n if (process.env.CURSOR_AGENT) {\n return { isAgent: true, agent: { name: CURSOR_CLI } };\n }\n if (process.env.GEMINI_CLI) {\n return { isAgent: true, agent: { name: GEMINI } };\n }\n if (process.env.CODEX_SANDBOX) {\n return { isAgent: true, agent: { name: CODEX } };\n }\n if (process.env.AUGMENT_AGENT) {\n return { isAgent: true, agent: { name: AUGMENT_CLI } };\n }\n if (process.env.OPENCODE_CLIENT) {\n return { isAgent: true, agent: { name: OPENCODE } };\n }\n if (process.env.CLAUDECODE || process.env.CLAUDE_CODE) {\n return { isAgent: true, agent: { name: CLAUDE } };\n }\n if (process.env.REPL_ID) {\n return { isAgent: true, agent: { name: REPLIT } };\n }\n try {\n await (0, import_promises.access)(DEVIN_LOCAL_PATH, import_node_fs.constants.F_OK);\n return { isAgent: true, agent: { name: DEVIN } };\n } catch (error) {\n }\n return { isAgent: false, agent: void 0 };\n}\n// Annotate the CommonJS export names for ESM import in node:\n0 && (module.exports = {\n KNOWN_AGENTS,\n determineAgent\n});\n",
739
- "import { dirname, join } from \"node:path\";\nimport { fileURLToPath } from \"node:url\";\nimport { ClackLogger, SimpleLogger } from \"@base44-cli/logger\";\nimport { createProgram } from \"@/cli/program.js\";\nimport { ensureNpmAssets } from \"@/core/assets.js\";\nimport { readAuth } from \"@/core/auth/index.js\";\nimport { CLIExitError } from \"./errors.js\";\nimport { ErrorReporter } from \"./telemetry/error-reporter.js\";\nimport { addCommandInfoToErrorReporter } from \"./telemetry/index.js\";\nimport type { CLIContext, Distribution } from \"./types.js\";\nimport {\n createInteractiveRunTask,\n createSimpleRunTask,\n} from \"./utils/runTask.js\";\n\nconst __dirname = dirname(fileURLToPath(import.meta.url));\n\ninterface RunCLIOptions {\n distribution?: Distribution;\n}\n\nasync function runCLI(options?: RunCLIOptions): Promise<void> {\n ensureNpmAssets(join(__dirname, \"../assets\"));\n\n // Create error reporter - single instance for the CLI session\n const errorReporter = new ErrorReporter();\n\n // Register process error handlers FIRST\n errorReporter.registerProcessErrorHandlers();\n\n // Create context for dependency injection\n const isNonInteractive = !process.stdin.isTTY || !process.stdout.isTTY;\n const log = isNonInteractive ? new SimpleLogger() : new ClackLogger();\n const runTask = isNonInteractive\n ? createSimpleRunTask(log)\n : createInteractiveRunTask();\n const context: CLIContext = {\n errorReporter,\n isNonInteractive,\n distribution: options?.distribution ?? \"npm\",\n log,\n runTask,\n };\n\n // Create program with injected context\n const program = createProgram(context);\n\n try {\n const userInfo = await readAuth();\n errorReporter.setContext({\n user: { email: userInfo.email, name: userInfo.name },\n });\n } catch {\n // User info is optional context\n }\n\n addCommandInfoToErrorReporter(program, errorReporter);\n\n try {\n await program.parseAsync();\n } catch (error) {\n // CLIExitError = controlled exit (e.g., user cancellation), don't report\n if (!(error instanceof CLIExitError)) {\n const errorObj =\n error instanceof Error ? error : new Error(String(error));\n errorReporter.captureException(errorObj);\n }\n\n // Use exitCode instead of exit() to let event loop drain\n process.exitCode = error instanceof CLIExitError ? error.code : 1;\n }\n}\n\nexport { runCLI, createProgram, CLIExitError };\n",
739
+ "import { dirname, join } from \"node:path\";\nimport { fileURLToPath } from \"node:url\";\nimport { ClackLogger, SimpleLogger } from \"@base44-cli/logger\";\nimport { createProgram } from \"@/cli/program.js\";\nimport { ensureNpmAssets } from \"@/core/assets.js\";\nimport { readAuth } from \"@/core/auth/index.js\";\nimport { CLIExitError } from \"./errors.js\";\nimport { ErrorReporter } from \"./telemetry/error-reporter.js\";\nimport { addCommandInfoToErrorReporter } from \"./telemetry/index.js\";\nimport type { CLIContext, Distribution } from \"./types.js\";\nimport {\n createInteractiveRunTask,\n createSimpleRunTask,\n} from \"./utils/runTask.js\";\n\nconst __dirname = dirname(fileURLToPath(import.meta.url));\n\ninterface RunCLIOptions {\n distribution?: Distribution;\n}\n\nasync function runCLI(options?: RunCLIOptions): Promise<void> {\n ensureNpmAssets(join(__dirname, \"../assets\"));\n\n // Create error reporter - single instance for the CLI session\n const errorReporter = new ErrorReporter();\n\n // Register process error handlers FIRST\n errorReporter.registerProcessErrorHandlers();\n\n // Create context for dependency injection\n const isNonInteractive = !process.stdin.isTTY || !process.stdout.isTTY;\n const log = isNonInteractive ? new SimpleLogger() : new ClackLogger();\n const runTask = isNonInteractive\n ? createSimpleRunTask(log)\n : createInteractiveRunTask();\n const context: CLIContext = {\n errorReporter,\n isNonInteractive,\n distribution: options?.distribution ?? \"npm\",\n log,\n runTask,\n };\n\n // Create program with injected context\n const program = createProgram(context);\n\n try {\n const userInfo = await readAuth();\n errorReporter.setContext({\n user: { email: userInfo.email, name: userInfo.name },\n });\n } catch {\n // User info is optional context\n }\n\n addCommandInfoToErrorReporter(program, errorReporter);\n\n try {\n await program.parseAsync();\n } catch (error) {\n // CLIExitError = controlled exit (e.g., user cancellation), don't report\n if (!(error instanceof CLIExitError)) {\n const errorObj =\n error instanceof Error ? error : new Error(String(error));\n errorReporter.captureException(errorObj);\n }\n\n // Use exitCode instead of exit() to let event loop drain\n process.exitCode = error instanceof CLIExitError ? error.code : 1;\n }\n}\n\nexport { CLIExitError, createProgram, runCLI };\n",
740
740
  "import D from\"picocolors\";import{stdout as R,stdin as q}from\"node:process\";import*as k from\"node:readline\";import ot from\"node:readline\";import{cursor as I,erase as N}from\"sisteransi\";import{ReadStream as J}from\"node:tty\";function B(t,e,s){if(!s.some(u=>!u.disabled))return t;const i=t+e,r=Math.max(s.length-1,0),n=i<0?r:i>r?0:i;return s[n].disabled?B(n,e<0?-1:1,s):n}const at=t=>t===161||t===164||t===167||t===168||t===170||t===173||t===174||t>=176&&t<=180||t>=182&&t<=186||t>=188&&t<=191||t===198||t===208||t===215||t===216||t>=222&&t<=225||t===230||t>=232&&t<=234||t===236||t===237||t===240||t===242||t===243||t>=247&&t<=250||t===252||t===254||t===257||t===273||t===275||t===283||t===294||t===295||t===299||t>=305&&t<=307||t===312||t>=319&&t<=322||t===324||t>=328&&t<=331||t===333||t===338||t===339||t===358||t===359||t===363||t===462||t===464||t===466||t===468||t===470||t===472||t===474||t===476||t===593||t===609||t===708||t===711||t>=713&&t<=715||t===717||t===720||t>=728&&t<=731||t===733||t===735||t>=768&&t<=879||t>=913&&t<=929||t>=931&&t<=937||t>=945&&t<=961||t>=963&&t<=969||t===1025||t>=1040&&t<=1103||t===1105||t===8208||t>=8211&&t<=8214||t===8216||t===8217||t===8220||t===8221||t>=8224&&t<=8226||t>=8228&&t<=8231||t===8240||t===8242||t===8243||t===8245||t===8251||t===8254||t===8308||t===8319||t>=8321&&t<=8324||t===8364||t===8451||t===8453||t===8457||t===8467||t===8470||t===8481||t===8482||t===8486||t===8491||t===8531||t===8532||t>=8539&&t<=8542||t>=8544&&t<=8555||t>=8560&&t<=8569||t===8585||t>=8592&&t<=8601||t===8632||t===8633||t===8658||t===8660||t===8679||t===8704||t===8706||t===8707||t===8711||t===8712||t===8715||t===8719||t===8721||t===8725||t===8730||t>=8733&&t<=8736||t===8739||t===8741||t>=8743&&t<=8748||t===8750||t>=8756&&t<=8759||t===8764||t===8765||t===8776||t===8780||t===8786||t===8800||t===8801||t>=8804&&t<=8807||t===8810||t===8811||t===8814||t===8815||t===8834||t===8835||t===8838||t===8839||t===8853||t===8857||t===8869||t===8895||t===8978||t>=9312&&t<=9449||t>=9451&&t<=9547||t>=9552&&t<=9587||t>=9600&&t<=9615||t>=9618&&t<=9621||t===9632||t===9633||t>=9635&&t<=9641||t===9650||t===9651||t===9654||t===9655||t===9660||t===9661||t===9664||t===9665||t>=9670&&t<=9672||t===9675||t>=9678&&t<=9681||t>=9698&&t<=9701||t===9711||t===9733||t===9734||t===9737||t===9742||t===9743||t===9756||t===9758||t===9792||t===9794||t===9824||t===9825||t>=9827&&t<=9829||t>=9831&&t<=9834||t===9836||t===9837||t===9839||t===9886||t===9887||t===9919||t>=9926&&t<=9933||t>=9935&&t<=9939||t>=9941&&t<=9953||t===9955||t===9960||t===9961||t>=9963&&t<=9969||t===9972||t>=9974&&t<=9977||t===9979||t===9980||t===9982||t===9983||t===10045||t>=10102&&t<=10111||t>=11094&&t<=11097||t>=12872&&t<=12879||t>=57344&&t<=63743||t>=65024&&t<=65039||t===65533||t>=127232&&t<=127242||t>=127248&&t<=127277||t>=127280&&t<=127337||t>=127344&&t<=127373||t===127375||t===127376||t>=127387&&t<=127404||t>=917760&&t<=917999||t>=983040&&t<=1048573||t>=1048576&&t<=1114109,lt=t=>t===12288||t>=65281&&t<=65376||t>=65504&&t<=65510,ht=t=>t>=4352&&t<=4447||t===8986||t===8987||t===9001||t===9002||t>=9193&&t<=9196||t===9200||t===9203||t===9725||t===9726||t===9748||t===9749||t>=9800&&t<=9811||t===9855||t===9875||t===9889||t===9898||t===9899||t===9917||t===9918||t===9924||t===9925||t===9934||t===9940||t===9962||t===9970||t===9971||t===9973||t===9978||t===9981||t===9989||t===9994||t===9995||t===10024||t===10060||t===10062||t>=10067&&t<=10069||t===10071||t>=10133&&t<=10135||t===10160||t===10175||t===11035||t===11036||t===11088||t===11093||t>=11904&&t<=11929||t>=11931&&t<=12019||t>=12032&&t<=12245||t>=12272&&t<=12287||t>=12289&&t<=12350||t>=12353&&t<=12438||t>=12441&&t<=12543||t>=12549&&t<=12591||t>=12593&&t<=12686||t>=12688&&t<=12771||t>=12783&&t<=12830||t>=12832&&t<=12871||t>=12880&&t<=19903||t>=19968&&t<=42124||t>=42128&&t<=42182||t>=43360&&t<=43388||t>=44032&&t<=55203||t>=63744&&t<=64255||t>=65040&&t<=65049||t>=65072&&t<=65106||t>=65108&&t<=65126||t>=65128&&t<=65131||t>=94176&&t<=94180||t===94192||t===94193||t>=94208&&t<=100343||t>=100352&&t<=101589||t>=101632&&t<=101640||t>=110576&&t<=110579||t>=110581&&t<=110587||t===110589||t===110590||t>=110592&&t<=110882||t===110898||t>=110928&&t<=110930||t===110933||t>=110948&&t<=110951||t>=110960&&t<=111355||t===126980||t===127183||t===127374||t>=127377&&t<=127386||t>=127488&&t<=127490||t>=127504&&t<=127547||t>=127552&&t<=127560||t===127568||t===127569||t>=127584&&t<=127589||t>=127744&&t<=127776||t>=127789&&t<=127797||t>=127799&&t<=127868||t>=127870&&t<=127891||t>=127904&&t<=127946||t>=127951&&t<=127955||t>=127968&&t<=127984||t===127988||t>=127992&&t<=128062||t===128064||t>=128066&&t<=128252||t>=128255&&t<=128317||t>=128331&&t<=128334||t>=128336&&t<=128359||t===128378||t===128405||t===128406||t===128420||t>=128507&&t<=128591||t>=128640&&t<=128709||t===128716||t>=128720&&t<=128722||t>=128725&&t<=128727||t>=128732&&t<=128735||t===128747||t===128748||t>=128756&&t<=128764||t>=128992&&t<=129003||t===129008||t>=129292&&t<=129338||t>=129340&&t<=129349||t>=129351&&t<=129535||t>=129648&&t<=129660||t>=129664&&t<=129672||t>=129680&&t<=129725||t>=129727&&t<=129733||t>=129742&&t<=129755||t>=129760&&t<=129768||t>=129776&&t<=129784||t>=131072&&t<=196605||t>=196608&&t<=262141,O=/[\\u001b\\u009b][[()#;?]*(?:[0-9]{1,4}(?:;[0-9]{0,4})*)?[0-9A-ORZcf-nqry=><]/y,y=/[\\x00-\\x08\\x0A-\\x1F\\x7F-\\x9F]{1,1000}/y,L=/\\t{1,1000}/y,P=/[\\u{1F1E6}-\\u{1F1FF}]{2}|\\u{1F3F4}[\\u{E0061}-\\u{E007A}]{2}[\\u{E0030}-\\u{E0039}\\u{E0061}-\\u{E007A}]{1,3}\\u{E007F}|(?:\\p{Emoji}\\uFE0F\\u20E3?|\\p{Emoji_Modifier_Base}\\p{Emoji_Modifier}?|\\p{Emoji_Presentation})(?:\\u200D(?:\\p{Emoji_Modifier_Base}\\p{Emoji_Modifier}?|\\p{Emoji_Presentation}|\\p{Emoji}\\uFE0F\\u20E3?))*/yu,M=/(?:[\\x20-\\x7E\\xA0-\\xFF](?!\\uFE0F)){1,1000}/y,ct=/\\p{M}+/gu,ft={limit:1/0,ellipsis:\"\"},X=(t,e={},s={})=>{const i=e.limit??1/0,r=e.ellipsis??\"\",n=e?.ellipsisWidth??(r?X(r,ft,s).width:0),u=s.ansiWidth??0,a=s.controlWidth??0,l=s.tabWidth??8,E=s.ambiguousWidth??1,g=s.emojiWidth??2,m=s.fullWidthWidth??2,A=s.regularWidth??1,V=s.wideWidth??2;let h=0,o=0,p=t.length,v=0,F=!1,d=p,b=Math.max(0,i-n),C=0,w=0,c=0,f=0;t:for(;;){if(w>C||o>=p&&o>h){const ut=t.slice(C,w)||t.slice(h,o);v=0;for(const Y of ut.replaceAll(ct,\"\")){const $=Y.codePointAt(0)||0;if(lt($)?f=m:ht($)?f=V:E!==A&&at($)?f=E:f=A,c+f>b&&(d=Math.min(d,Math.max(C,h)+v)),c+f>i){F=!0;break t}v+=Y.length,c+=f}C=w=0}if(o>=p)break;if(M.lastIndex=o,M.test(t)){if(v=M.lastIndex-o,f=v*A,c+f>b&&(d=Math.min(d,o+Math.floor((b-c)/A))),c+f>i){F=!0;break}c+=f,C=h,w=o,o=h=M.lastIndex;continue}if(O.lastIndex=o,O.test(t)){if(c+u>b&&(d=Math.min(d,o)),c+u>i){F=!0;break}c+=u,C=h,w=o,o=h=O.lastIndex;continue}if(y.lastIndex=o,y.test(t)){if(v=y.lastIndex-o,f=v*a,c+f>b&&(d=Math.min(d,o+Math.floor((b-c)/a))),c+f>i){F=!0;break}c+=f,C=h,w=o,o=h=y.lastIndex;continue}if(L.lastIndex=o,L.test(t)){if(v=L.lastIndex-o,f=v*l,c+f>b&&(d=Math.min(d,o+Math.floor((b-c)/l))),c+f>i){F=!0;break}c+=f,C=h,w=o,o=h=L.lastIndex;continue}if(P.lastIndex=o,P.test(t)){if(c+g>b&&(d=Math.min(d,o)),c+g>i){F=!0;break}c+=g,C=h,w=o,o=h=P.lastIndex;continue}o+=1}return{width:F?b:c,index:F?d:p,truncated:F,ellipsed:F&&i>=n}},pt={limit:1/0,ellipsis:\"\",ellipsisWidth:0},S=(t,e={})=>X(t,pt,e).width,W=\"\\x1B\",Z=\"\\x9B\",Ft=39,j=\"\\x07\",Q=\"[\",dt=\"]\",tt=\"m\",U=`${dt}8;;`,et=new RegExp(`(?:\\\\${Q}(?<code>\\\\d+)m|\\\\${U}(?<uri>.*)${j})`,\"y\"),mt=t=>{if(t>=30&&t<=37||t>=90&&t<=97)return 39;if(t>=40&&t<=47||t>=100&&t<=107)return 49;if(t===1||t===2)return 22;if(t===3)return 23;if(t===4)return 24;if(t===7)return 27;if(t===8)return 28;if(t===9)return 29;if(t===0)return 0},st=t=>`${W}${Q}${t}${tt}`,it=t=>`${W}${U}${t}${j}`,gt=t=>t.map(e=>S(e)),G=(t,e,s)=>{const i=e[Symbol.iterator]();let r=!1,n=!1,u=t.at(-1),a=u===void 0?0:S(u),l=i.next(),E=i.next(),g=0;for(;!l.done;){const m=l.value,A=S(m);a+A<=s?t[t.length-1]+=m:(t.push(m),a=0),(m===W||m===Z)&&(r=!0,n=e.startsWith(U,g+1)),r?n?m===j&&(r=!1,n=!1):m===tt&&(r=!1):(a+=A,a===s&&!E.done&&(t.push(\"\"),a=0)),l=E,E=i.next(),g+=m.length}u=t.at(-1),!a&&u!==void 0&&u.length>0&&t.length>1&&(t[t.length-2]+=t.pop())},vt=t=>{const e=t.split(\" \");let s=e.length;for(;s>0&&!(S(e[s-1])>0);)s--;return s===e.length?t:e.slice(0,s).join(\" \")+e.slice(s).join(\"\")},Et=(t,e,s={})=>{if(s.trim!==!1&&t.trim()===\"\")return\"\";let i=\"\",r,n;const u=t.split(\" \"),a=gt(u);let l=[\"\"];for(const[h,o]of u.entries()){s.trim!==!1&&(l[l.length-1]=(l.at(-1)??\"\").trimStart());let p=S(l.at(-1)??\"\");if(h!==0&&(p>=e&&(s.wordWrap===!1||s.trim===!1)&&(l.push(\"\"),p=0),(p>0||s.trim===!1)&&(l[l.length-1]+=\" \",p++)),s.hard&&a[h]>e){const v=e-p,F=1+Math.floor((a[h]-v-1)/e);Math.floor((a[h]-1)/e)<F&&l.push(\"\"),G(l,o,e);continue}if(p+a[h]>e&&p>0&&a[h]>0){if(s.wordWrap===!1&&p<e){G(l,o,e);continue}l.push(\"\")}if(p+a[h]>e&&s.wordWrap===!1){G(l,o,e);continue}l[l.length-1]+=o}s.trim!==!1&&(l=l.map(h=>vt(h)));const E=l.join(`\n`),g=E[Symbol.iterator]();let m=g.next(),A=g.next(),V=0;for(;!m.done;){const h=m.value,o=A.value;if(i+=h,h===W||h===Z){et.lastIndex=V+1;const F=et.exec(E)?.groups;if(F?.code!==void 0){const d=Number.parseFloat(F.code);r=d===Ft?void 0:d}else F?.uri!==void 0&&(n=F.uri.length===0?void 0:F.uri)}const p=r?mt(r):void 0;o===`\n`?(n&&(i+=it(\"\")),r&&p&&(i+=st(p))):h===`\n`&&(r&&p&&(i+=st(r)),n&&(i+=it(n))),V+=h.length,m=A,A=g.next()}return i};function K(t,e,s){return String(t).normalize().replaceAll(`\\r\n`,`\n`).split(`\n`).map(i=>Et(i,e,s)).join(`\n`)}const At=[\"up\",\"down\",\"left\",\"right\",\"space\",\"enter\",\"cancel\"],_={actions:new Set(At),aliases:new Map([[\"k\",\"up\"],[\"j\",\"down\"],[\"h\",\"left\"],[\"l\",\"right\"],[\"\u0003\",\"cancel\"],[\"escape\",\"cancel\"]]),messages:{cancel:\"Canceled\",error:\"Something went wrong\"},withGuide:!0};function It(t){if(t.aliases!==void 0){const e=t.aliases;for(const s in e){if(!Object.hasOwn(e,s))continue;const i=e[s];_.actions.has(i)&&(_.aliases.has(s)||_.aliases.set(s,i))}}if(t.messages!==void 0){const e=t.messages;e.cancel!==void 0&&(_.messages.cancel=e.cancel),e.error!==void 0&&(_.messages.error=e.error)}t.withGuide!==void 0&&(_.withGuide=t.withGuide!==!1)}function H(t,e){if(typeof t==\"string\")return _.aliases.get(t)===e;for(const s of t)if(s!==void 0&&H(s,e))return!0;return!1}function _t(t,e){if(t===e)return;const s=t.split(`\n`),i=e.split(`\n`),r=Math.max(s.length,i.length),n=[];for(let u=0;u<r;u++)s[u]!==i[u]&&n.push(u);return{lines:n,numLinesBefore:s.length,numLinesAfter:i.length,numLines:r}}const bt=globalThis.process.platform.startsWith(\"win\"),z=Symbol(\"clack:cancel\");function Ct(t){return t===z}function T(t,e){const s=t;s.isTTY&&s.setRawMode(e)}function Bt({input:t=q,output:e=R,overwrite:s=!0,hideCursor:i=!0}={}){const r=k.createInterface({input:t,output:e,prompt:\"\",tabSize:1});k.emitKeypressEvents(t,r),t instanceof J&&t.isTTY&&t.setRawMode(!0);const n=(u,{name:a,sequence:l})=>{const E=String(u);if(H([E,a,l],\"cancel\")){i&&e.write(I.show),process.exit(0);return}if(!s)return;const g=a===\"return\"?0:-1,m=a===\"return\"?-1:0;k.moveCursor(e,g,m,()=>{k.clearLine(e,1,()=>{t.once(\"keypress\",n)})})};return i&&e.write(I.hide),t.once(\"keypress\",n),()=>{t.off(\"keypress\",n),i&&e.write(I.show),t instanceof J&&t.isTTY&&!bt&&t.setRawMode(!1),r.terminal=!1,r.close()}}const rt=t=>\"columns\"in t&&typeof t.columns==\"number\"?t.columns:80,nt=t=>\"rows\"in t&&typeof t.rows==\"number\"?t.rows:20;function xt(t,e,s,i=s){const r=rt(t??R);return K(e,r-s.length,{hard:!0,trim:!1}).split(`\n`).map((n,u)=>`${u===0?i:s}${n}`).join(`\n`)}class x{input;output;_abortSignal;rl;opts;_render;_track=!1;_prevFrame=\"\";_subscribers=new Map;_cursor=0;state=\"initial\";error=\"\";value;userInput=\"\";constructor(e,s=!0){const{input:i=q,output:r=R,render:n,signal:u,...a}=e;this.opts=a,this.onKeypress=this.onKeypress.bind(this),this.close=this.close.bind(this),this.render=this.render.bind(this),this._render=n.bind(this),this._track=s,this._abortSignal=u,this.input=i,this.output=r}unsubscribe(){this._subscribers.clear()}setSubscriber(e,s){const i=this._subscribers.get(e)??[];i.push(s),this._subscribers.set(e,i)}on(e,s){this.setSubscriber(e,{cb:s})}once(e,s){this.setSubscriber(e,{cb:s,once:!0})}emit(e,...s){const i=this._subscribers.get(e)??[],r=[];for(const n of i)n.cb(...s),n.once&&r.push(()=>i.splice(i.indexOf(n),1));for(const n of r)n()}prompt(){return new Promise(e=>{if(this._abortSignal){if(this._abortSignal.aborted)return this.state=\"cancel\",this.close(),e(z);this._abortSignal.addEventListener(\"abort\",()=>{this.state=\"cancel\",this.close()},{once:!0})}this.rl=ot.createInterface({input:this.input,tabSize:2,prompt:\"\",escapeCodeTimeout:50,terminal:!0}),this.rl.prompt(),this.opts.initialUserInput!==void 0&&this._setUserInput(this.opts.initialUserInput,!0),this.input.on(\"keypress\",this.onKeypress),T(this.input,!0),this.output.on(\"resize\",this.render),this.render(),this.once(\"submit\",()=>{this.output.write(I.show),this.output.off(\"resize\",this.render),T(this.input,!1),e(this.value)}),this.once(\"cancel\",()=>{this.output.write(I.show),this.output.off(\"resize\",this.render),T(this.input,!1),e(z)})})}_isActionKey(e,s){return e===\"\t\"}_setValue(e){this.value=e,this.emit(\"value\",this.value)}_setUserInput(e,s){this.userInput=e??\"\",this.emit(\"userInput\",this.userInput),s&&this._track&&this.rl&&(this.rl.write(this.userInput),this._cursor=this.rl.cursor)}_clearUserInput(){this.rl?.write(null,{ctrl:!0,name:\"u\"}),this._setUserInput(\"\")}onKeypress(e,s){if(this._track&&s.name!==\"return\"&&(s.name&&this._isActionKey(e,s)&&this.rl?.write(null,{ctrl:!0,name:\"h\"}),this._cursor=this.rl?.cursor??0,this._setUserInput(this.rl?.line)),this.state===\"error\"&&(this.state=\"active\"),s?.name&&(!this._track&&_.aliases.has(s.name)&&this.emit(\"cursor\",_.aliases.get(s.name)),_.actions.has(s.name)&&this.emit(\"cursor\",s.name)),e&&(e.toLowerCase()===\"y\"||e.toLowerCase()===\"n\")&&this.emit(\"confirm\",e.toLowerCase()===\"y\"),this.emit(\"key\",e?.toLowerCase(),s),s?.name===\"return\"){if(this.opts.validate){const i=this.opts.validate(this.value);i&&(this.error=i instanceof Error?i.message:i,this.state=\"error\",this.rl?.write(this.userInput))}this.state!==\"error\"&&(this.state=\"submit\")}H([e,s?.name,s?.sequence],\"cancel\")&&(this.state=\"cancel\"),(this.state===\"submit\"||this.state===\"cancel\")&&this.emit(\"finalize\"),this.render(),(this.state===\"submit\"||this.state===\"cancel\")&&this.close()}close(){this.input.unpipe(),this.input.removeListener(\"keypress\",this.onKeypress),this.output.write(`\n`),T(this.input,!1),this.rl?.close(),this.rl=void 0,this.emit(`${this.state}`,this.value),this.unsubscribe()}restoreCursor(){const e=K(this._prevFrame,process.stdout.columns,{hard:!0,trim:!1}).split(`\n`).length-1;this.output.write(I.move(-999,e*-1))}render(){const e=K(this._render(this)??\"\",process.stdout.columns,{hard:!0,trim:!1});if(e!==this._prevFrame){if(this.state===\"initial\")this.output.write(I.hide);else{const s=_t(this._prevFrame,e),i=nt(this.output);if(this.restoreCursor(),s){const r=Math.max(0,s.numLinesAfter-i),n=Math.max(0,s.numLinesBefore-i);let u=s.lines.find(a=>a>=r);if(u===void 0){this._prevFrame=e;return}if(s.lines.length===1){this.output.write(I.move(0,u-n)),this.output.write(N.lines(1));const a=e.split(`\n`);this.output.write(a[u]),this._prevFrame=e,this.output.write(I.move(0,a.length-u-1));return}else if(s.lines.length>1){if(r<n)u=r;else{const l=u-n;l>0&&this.output.write(I.move(0,l))}this.output.write(N.down());const a=e.split(`\n`).slice(u);this.output.write(a.join(`\n`)),this._prevFrame=e;return}}this.output.write(N.down())}this.output.write(e),this.state===\"initial\"&&(this.state=\"active\"),this._prevFrame=e}}}function wt(t,e){if(t===void 0||e.length===0)return 0;const s=e.findIndex(i=>i.value===t);return s!==-1?s:0}function Dt(t,e){return(e.label??String(e.value)).toLowerCase().includes(t.toLowerCase())}function St(t,e){if(e)return t?e:e[0]}class Vt extends x{filteredOptions;multiple;isNavigating=!1;selectedValues=[];focusedValue;#t=0;#s=\"\";#i;#e;get cursor(){return this.#t}get userInputWithCursor(){if(!this.userInput)return D.inverse(D.hidden(\"_\"));if(this._cursor>=this.userInput.length)return`${this.userInput}\\u2588`;const e=this.userInput.slice(0,this._cursor),[s,...i]=this.userInput.slice(this._cursor);return`${e}${D.inverse(s)}${i.join(\"\")}`}get options(){return typeof this.#e==\"function\"?this.#e():this.#e}constructor(e){super(e),this.#e=e.options;const s=this.options;this.filteredOptions=[...s],this.multiple=e.multiple===!0,this.#i=e.filter??Dt;let i;if(e.initialValue&&Array.isArray(e.initialValue)?this.multiple?i=e.initialValue:i=e.initialValue.slice(0,1):!this.multiple&&this.options.length>0&&(i=[this.options[0].value]),i)for(const r of i){const n=s.findIndex(u=>u.value===r);n!==-1&&(this.toggleSelected(r),this.#t=n)}this.focusedValue=this.options[this.#t]?.value,this.on(\"key\",(r,n)=>this.#r(r,n)),this.on(\"userInput\",r=>this.#n(r))}_isActionKey(e,s){return e===\"\t\"||this.multiple&&this.isNavigating&&s.name===\"space\"&&e!==void 0&&e!==\"\"}#r(e,s){const i=s.name===\"up\",r=s.name===\"down\",n=s.name===\"return\";i||r?(this.#t=B(this.#t,i?-1:1,this.filteredOptions),this.focusedValue=this.filteredOptions[this.#t]?.value,this.multiple||(this.selectedValues=[this.focusedValue]),this.isNavigating=!0):n?this.value=St(this.multiple,this.selectedValues):this.multiple?this.focusedValue!==void 0&&(s.name===\"tab\"||this.isNavigating&&s.name===\"space\")?this.toggleSelected(this.focusedValue):this.isNavigating=!1:(this.focusedValue&&(this.selectedValues=[this.focusedValue]),this.isNavigating=!1)}deselectAll(){this.selectedValues=[]}toggleSelected(e){this.filteredOptions.length!==0&&(this.multiple?this.selectedValues.includes(e)?this.selectedValues=this.selectedValues.filter(s=>s!==e):this.selectedValues=[...this.selectedValues,e]:this.selectedValues=[e])}#n(e){if(e!==this.#s){this.#s=e;const s=this.options;e?this.filteredOptions=s.filter(n=>this.#i(e,n)):this.filteredOptions=[...s];const i=wt(this.focusedValue,this.filteredOptions);this.#t=B(i,0,this.filteredOptions);const r=this.filteredOptions[this.#t];r&&!r.disabled?this.focusedValue=r.value:this.focusedValue=void 0,this.multiple||(this.focusedValue!==void 0?this.toggleSelected(this.focusedValue):this.deselectAll())}}}class kt extends x{get cursor(){return this.value?0:1}get _value(){return this.cursor===0}constructor(e){super(e,!1),this.value=!!e.initialValue,this.on(\"userInput\",()=>{this.value=this._value}),this.on(\"confirm\",s=>{this.output.write(I.move(0,-1)),this.value=s,this.state=\"submit\",this.close()}),this.on(\"cursor\",()=>{this.value=!this.value})}}class yt extends x{options;cursor=0;#t;getGroupItems(e){return this.options.filter(s=>s.group===e)}isGroupSelected(e){const s=this.getGroupItems(e),i=this.value;return i===void 0?!1:s.every(r=>i.includes(r.value))}toggleValue(){const e=this.options[this.cursor];if(this.value===void 0&&(this.value=[]),e.group===!0){const s=e.value,i=this.getGroupItems(s);this.isGroupSelected(s)?this.value=this.value.filter(r=>i.findIndex(n=>n.value===r)===-1):this.value=[...this.value,...i.map(r=>r.value)],this.value=Array.from(new Set(this.value))}else{const s=this.value.includes(e.value);this.value=s?this.value.filter(i=>i!==e.value):[...this.value,e.value]}}constructor(e){super(e,!1);const{options:s}=e;this.#t=e.selectableGroups!==!1,this.options=Object.entries(s).flatMap(([i,r])=>[{value:i,group:!0,label:i},...r.map(n=>({...n,group:i}))]),this.value=[...e.initialValues??[]],this.cursor=Math.max(this.options.findIndex(({value:i})=>i===e.cursorAt),this.#t?0:1),this.on(\"cursor\",i=>{switch(i){case\"left\":case\"up\":{this.cursor=this.cursor===0?this.options.length-1:this.cursor-1;const r=this.options[this.cursor]?.group===!0;!this.#t&&r&&(this.cursor=this.cursor===0?this.options.length-1:this.cursor-1);break}case\"down\":case\"right\":{this.cursor=this.cursor===this.options.length-1?0:this.cursor+1;const r=this.options[this.cursor]?.group===!0;!this.#t&&r&&(this.cursor=this.cursor===this.options.length-1?0:this.cursor+1);break}case\"space\":this.toggleValue();break}})}}class Lt extends x{options;cursor=0;get _value(){return this.options[this.cursor].value}get _enabledOptions(){return this.options.filter(e=>e.disabled!==!0)}toggleAll(){const e=this._enabledOptions,s=this.value!==void 0&&this.value.length===e.length;this.value=s?[]:e.map(i=>i.value)}toggleInvert(){const e=this.value;if(!e)return;const s=this._enabledOptions.filter(i=>!e.includes(i.value));this.value=s.map(i=>i.value)}toggleValue(){this.value===void 0&&(this.value=[]);const e=this.value.includes(this._value);this.value=e?this.value.filter(s=>s!==this._value):[...this.value,this._value]}constructor(e){super(e,!1),this.options=e.options,this.value=[...e.initialValues??[]];const s=Math.max(this.options.findIndex(({value:i})=>i===e.cursorAt),0);this.cursor=this.options[s].disabled?B(s,1,this.options):s,this.on(\"key\",i=>{i===\"a\"&&this.toggleAll(),i===\"i\"&&this.toggleInvert()}),this.on(\"cursor\",i=>{switch(i){case\"left\":case\"up\":this.cursor=B(this.cursor,-1,this.options);break;case\"down\":case\"right\":this.cursor=B(this.cursor,1,this.options);break;case\"space\":this.toggleValue();break}})}}let Mt=class extends x{_mask=\"\\u2022\";get cursor(){return this._cursor}get masked(){return this.userInput.replaceAll(/./g,this._mask)}get userInputWithCursor(){if(this.state===\"submit\"||this.state===\"cancel\")return this.masked;const e=this.userInput;if(this.cursor>=e.length)return`${this.masked}${D.inverse(D.hidden(\"_\"))}`;const s=this.masked,i=s.slice(0,this.cursor),r=s.slice(this.cursor);return`${i}${D.inverse(r[0])}${r.slice(1)}`}clear(){this._clearUserInput()}constructor({mask:e,...s}){super(s),this._mask=e??\"\\u2022\",this.on(\"userInput\",i=>{this._setValue(i)})}};class Wt extends x{options;cursor=0;get _selectedValue(){return this.options[this.cursor]}changeValue(){this.value=this._selectedValue.value}constructor(e){super(e,!1),this.options=e.options;const s=this.options.findIndex(({value:r})=>r===e.initialValue),i=s===-1?0:s;this.cursor=this.options[i].disabled?B(i,1,this.options):i,this.changeValue(),this.on(\"cursor\",r=>{switch(r){case\"left\":case\"up\":this.cursor=B(this.cursor,-1,this.options);break;case\"down\":case\"right\":this.cursor=B(this.cursor,1,this.options);break}this.changeValue()})}}class Tt extends x{options;cursor=0;constructor(e){super(e,!1),this.options=e.options;const s=e.caseSensitive===!0,i=this.options.map(({value:[r]})=>s?r:r?.toLowerCase());this.cursor=Math.max(i.indexOf(e.initialValue),0),this.on(\"key\",(r,n)=>{if(!r)return;const u=s&&n.shift?r.toUpperCase():r;if(!i.includes(u))return;const a=this.options.find(({value:[l]})=>s?l===u:l?.toLowerCase()===r);a&&(this.value=a.value,this.state=\"submit\",this.emit(\"submit\"))})}}class $t extends x{get userInputWithCursor(){if(this.state===\"submit\")return this.userInput;const e=this.userInput;if(this.cursor>=e.length)return`${this.userInput}\\u2588`;const s=e.slice(0,this.cursor),[i,...r]=e.slice(this.cursor);return`${s}${D.inverse(i)}${r.join(\"\")}`}get cursor(){return this._cursor}constructor(e){super({...e,initialUserInput:e.initialUserInput??e.initialValue}),this.on(\"userInput\",s=>{this._setValue(s)}),this.on(\"finalize\",()=>{this.value||(this.value=e.defaultValue),this.value===void 0&&(this.value=\"\")})}}export{Vt as AutocompletePrompt,kt as ConfirmPrompt,yt as GroupMultiSelectPrompt,Lt as MultiSelectPrompt,Mt as PasswordPrompt,x as Prompt,Tt as SelectKeyPrompt,Wt as SelectPrompt,$t as TextPrompt,Bt as block,rt as getColumns,nt as getRows,Ct as isCancel,_ as settings,It as updateSettings,xt as wrapTextWithPrefix};\n//# sourceMappingURL=index.mjs.map\n",
741
741
  "import{getColumns as z,getRows as ee,AutocompletePrompt as Bt,settings as P,ConfirmPrompt as se,isCancel as re,GroupMultiSelectPrompt as ie,MultiSelectPrompt as ne,wrapTextWithPrefix as k,PasswordPrompt as ae,block as oe,SelectPrompt as le,SelectKeyPrompt as ue,TextPrompt as ce}from\"@clack/core\";export{isCancel,settings,updateSettings}from\"@clack/core\";import e from\"picocolors\";import N from\"node:process\";import{readdirSync as de,existsSync as $e,lstatSync as xt}from\"node:fs\";import{dirname as _t,join as he}from\"node:path\";import{cursor as Dt,erase as Tt}from\"sisteransi\";import{stripVTControlCharacters as ut}from\"node:util\";function me(){return N.platform!==\"win32\"?N.env.TERM!==\"linux\":!!N.env.CI||!!N.env.WT_SESSION||!!N.env.TERMINUS_SUBLIME||N.env.ConEmuTask===\"{cmd::Cmder}\"||N.env.TERM_PROGRAM===\"Terminus-Sublime\"||N.env.TERM_PROGRAM===\"vscode\"||N.env.TERM===\"xterm-256color\"||N.env.TERM===\"alacritty\"||N.env.TERMINAL_EMULATOR===\"JetBrains-JediTerm\"}const et=me(),ct=()=>process.env.CI===\"true\",Mt=t=>t.isTTY===!0,C=(t,r)=>et?t:r,Rt=C(\"\\u25C6\",\"*\"),dt=C(\"\\u25A0\",\"x\"),$t=C(\"\\u25B2\",\"x\"),V=C(\"\\u25C7\",\"o\"),ht=C(\"\\u250C\",\"T\"),d=C(\"\\u2502\",\"|\"),x=C(\"\\u2514\",\"\\u2014\"),Ot=C(\"\\u2510\",\"T\"),Pt=C(\"\\u2518\",\"\\u2014\"),Q=C(\"\\u25CF\",\">\"),H=C(\"\\u25CB\",\" \"),st=C(\"\\u25FB\",\"[\\u2022]\"),U=C(\"\\u25FC\",\"[+]\"),q=C(\"\\u25FB\",\"[ ]\"),Nt=C(\"\\u25AA\",\"\\u2022\"),rt=C(\"\\u2500\",\"-\"),mt=C(\"\\u256E\",\"+\"),Wt=C(\"\\u251C\",\"+\"),pt=C(\"\\u256F\",\"+\"),gt=C(\"\\u2570\",\"+\"),Lt=C(\"\\u256D\",\"+\"),ft=C(\"\\u25CF\",\"\\u2022\"),Ft=C(\"\\u25C6\",\"*\"),yt=C(\"\\u25B2\",\"!\"),Et=C(\"\\u25A0\",\"x\"),W=t=>{switch(t){case\"initial\":case\"active\":return e.cyan(Rt);case\"cancel\":return e.red(dt);case\"error\":return e.yellow($t);case\"submit\":return e.green(V)}},vt=t=>{switch(t){case\"initial\":case\"active\":return e.cyan(d);case\"cancel\":return e.red(d);case\"error\":return e.yellow(d);case\"submit\":return e.green(d)}},pe=t=>t===161||t===164||t===167||t===168||t===170||t===173||t===174||t>=176&&t<=180||t>=182&&t<=186||t>=188&&t<=191||t===198||t===208||t===215||t===216||t>=222&&t<=225||t===230||t>=232&&t<=234||t===236||t===237||t===240||t===242||t===243||t>=247&&t<=250||t===252||t===254||t===257||t===273||t===275||t===283||t===294||t===295||t===299||t>=305&&t<=307||t===312||t>=319&&t<=322||t===324||t>=328&&t<=331||t===333||t===338||t===339||t===358||t===359||t===363||t===462||t===464||t===466||t===468||t===470||t===472||t===474||t===476||t===593||t===609||t===708||t===711||t>=713&&t<=715||t===717||t===720||t>=728&&t<=731||t===733||t===735||t>=768&&t<=879||t>=913&&t<=929||t>=931&&t<=937||t>=945&&t<=961||t>=963&&t<=969||t===1025||t>=1040&&t<=1103||t===1105||t===8208||t>=8211&&t<=8214||t===8216||t===8217||t===8220||t===8221||t>=8224&&t<=8226||t>=8228&&t<=8231||t===8240||t===8242||t===8243||t===8245||t===8251||t===8254||t===8308||t===8319||t>=8321&&t<=8324||t===8364||t===8451||t===8453||t===8457||t===8467||t===8470||t===8481||t===8482||t===8486||t===8491||t===8531||t===8532||t>=8539&&t<=8542||t>=8544&&t<=8555||t>=8560&&t<=8569||t===8585||t>=8592&&t<=8601||t===8632||t===8633||t===8658||t===8660||t===8679||t===8704||t===8706||t===8707||t===8711||t===8712||t===8715||t===8719||t===8721||t===8725||t===8730||t>=8733&&t<=8736||t===8739||t===8741||t>=8743&&t<=8748||t===8750||t>=8756&&t<=8759||t===8764||t===8765||t===8776||t===8780||t===8786||t===8800||t===8801||t>=8804&&t<=8807||t===8810||t===8811||t===8814||t===8815||t===8834||t===8835||t===8838||t===8839||t===8853||t===8857||t===8869||t===8895||t===8978||t>=9312&&t<=9449||t>=9451&&t<=9547||t>=9552&&t<=9587||t>=9600&&t<=9615||t>=9618&&t<=9621||t===9632||t===9633||t>=9635&&t<=9641||t===9650||t===9651||t===9654||t===9655||t===9660||t===9661||t===9664||t===9665||t>=9670&&t<=9672||t===9675||t>=9678&&t<=9681||t>=9698&&t<=9701||t===9711||t===9733||t===9734||t===9737||t===9742||t===9743||t===9756||t===9758||t===9792||t===9794||t===9824||t===9825||t>=9827&&t<=9829||t>=9831&&t<=9834||t===9836||t===9837||t===9839||t===9886||t===9887||t===9919||t>=9926&&t<=9933||t>=9935&&t<=9939||t>=9941&&t<=9953||t===9955||t===9960||t===9961||t>=9963&&t<=9969||t===9972||t>=9974&&t<=9977||t===9979||t===9980||t===9982||t===9983||t===10045||t>=10102&&t<=10111||t>=11094&&t<=11097||t>=12872&&t<=12879||t>=57344&&t<=63743||t>=65024&&t<=65039||t===65533||t>=127232&&t<=127242||t>=127248&&t<=127277||t>=127280&&t<=127337||t>=127344&&t<=127373||t===127375||t===127376||t>=127387&&t<=127404||t>=917760&&t<=917999||t>=983040&&t<=1048573||t>=1048576&&t<=1114109,ge=t=>t===12288||t>=65281&&t<=65376||t>=65504&&t<=65510,fe=t=>t>=4352&&t<=4447||t===8986||t===8987||t===9001||t===9002||t>=9193&&t<=9196||t===9200||t===9203||t===9725||t===9726||t===9748||t===9749||t>=9800&&t<=9811||t===9855||t===9875||t===9889||t===9898||t===9899||t===9917||t===9918||t===9924||t===9925||t===9934||t===9940||t===9962||t===9970||t===9971||t===9973||t===9978||t===9981||t===9989||t===9994||t===9995||t===10024||t===10060||t===10062||t>=10067&&t<=10069||t===10071||t>=10133&&t<=10135||t===10160||t===10175||t===11035||t===11036||t===11088||t===11093||t>=11904&&t<=11929||t>=11931&&t<=12019||t>=12032&&t<=12245||t>=12272&&t<=12287||t>=12289&&t<=12350||t>=12353&&t<=12438||t>=12441&&t<=12543||t>=12549&&t<=12591||t>=12593&&t<=12686||t>=12688&&t<=12771||t>=12783&&t<=12830||t>=12832&&t<=12871||t>=12880&&t<=19903||t>=19968&&t<=42124||t>=42128&&t<=42182||t>=43360&&t<=43388||t>=44032&&t<=55203||t>=63744&&t<=64255||t>=65040&&t<=65049||t>=65072&&t<=65106||t>=65108&&t<=65126||t>=65128&&t<=65131||t>=94176&&t<=94180||t===94192||t===94193||t>=94208&&t<=100343||t>=100352&&t<=101589||t>=101632&&t<=101640||t>=110576&&t<=110579||t>=110581&&t<=110587||t===110589||t===110590||t>=110592&&t<=110882||t===110898||t>=110928&&t<=110930||t===110933||t>=110948&&t<=110951||t>=110960&&t<=111355||t===126980||t===127183||t===127374||t>=127377&&t<=127386||t>=127488&&t<=127490||t>=127504&&t<=127547||t>=127552&&t<=127560||t===127568||t===127569||t>=127584&&t<=127589||t>=127744&&t<=127776||t>=127789&&t<=127797||t>=127799&&t<=127868||t>=127870&&t<=127891||t>=127904&&t<=127946||t>=127951&&t<=127955||t>=127968&&t<=127984||t===127988||t>=127992&&t<=128062||t===128064||t>=128066&&t<=128252||t>=128255&&t<=128317||t>=128331&&t<=128334||t>=128336&&t<=128359||t===128378||t===128405||t===128406||t===128420||t>=128507&&t<=128591||t>=128640&&t<=128709||t===128716||t>=128720&&t<=128722||t>=128725&&t<=128727||t>=128732&&t<=128735||t===128747||t===128748||t>=128756&&t<=128764||t>=128992&&t<=129003||t===129008||t>=129292&&t<=129338||t>=129340&&t<=129349||t>=129351&&t<=129535||t>=129648&&t<=129660||t>=129664&&t<=129672||t>=129680&&t<=129725||t>=129727&&t<=129733||t>=129742&&t<=129755||t>=129760&&t<=129768||t>=129776&&t<=129784||t>=131072&&t<=196605||t>=196608&&t<=262141,At=/[\\u001b\\u009b][[()#;?]*(?:[0-9]{1,4}(?:;[0-9]{0,4})*)?[0-9A-ORZcf-nqry=><]/y,it=/[\\x00-\\x08\\x0A-\\x1F\\x7F-\\x9F]{1,1000}/y,nt=/\\t{1,1000}/y,wt=/[\\u{1F1E6}-\\u{1F1FF}]{2}|\\u{1F3F4}[\\u{E0061}-\\u{E007A}]{2}[\\u{E0030}-\\u{E0039}\\u{E0061}-\\u{E007A}]{1,3}\\u{E007F}|(?:\\p{Emoji}\\uFE0F\\u20E3?|\\p{Emoji_Modifier_Base}\\p{Emoji_Modifier}?|\\p{Emoji_Presentation})(?:\\u200D(?:\\p{Emoji_Modifier_Base}\\p{Emoji_Modifier}?|\\p{Emoji_Presentation}|\\p{Emoji}\\uFE0F\\u20E3?))*/yu,at=/(?:[\\x20-\\x7E\\xA0-\\xFF](?!\\uFE0F)){1,1000}/y,Fe=/\\p{M}+/gu,ye={limit:1/0,ellipsis:\"\"},jt=(t,r={},s={})=>{const i=r.limit??1/0,a=r.ellipsis??\"\",o=r?.ellipsisWidth??(a?jt(a,ye,s).width:0),u=s.ansiWidth??0,l=s.controlWidth??0,n=s.tabWidth??8,c=s.ambiguousWidth??1,g=s.emojiWidth??2,F=s.fullWidthWidth??2,p=s.regularWidth??1,E=s.wideWidth??2;let $=0,m=0,h=t.length,y=0,f=!1,v=h,S=Math.max(0,i-o),I=0,B=0,A=0,w=0;t:for(;;){if(B>I||m>=h&&m>$){const _=t.slice(I,B)||t.slice($,m);y=0;for(const D of _.replaceAll(Fe,\"\")){const T=D.codePointAt(0)||0;if(ge(T)?w=F:fe(T)?w=E:c!==p&&pe(T)?w=c:w=p,A+w>S&&(v=Math.min(v,Math.max(I,$)+y)),A+w>i){f=!0;break t}y+=D.length,A+=w}I=B=0}if(m>=h)break;if(at.lastIndex=m,at.test(t)){if(y=at.lastIndex-m,w=y*p,A+w>S&&(v=Math.min(v,m+Math.floor((S-A)/p))),A+w>i){f=!0;break}A+=w,I=$,B=m,m=$=at.lastIndex;continue}if(At.lastIndex=m,At.test(t)){if(A+u>S&&(v=Math.min(v,m)),A+u>i){f=!0;break}A+=u,I=$,B=m,m=$=At.lastIndex;continue}if(it.lastIndex=m,it.test(t)){if(y=it.lastIndex-m,w=y*l,A+w>S&&(v=Math.min(v,m+Math.floor((S-A)/l))),A+w>i){f=!0;break}A+=w,I=$,B=m,m=$=it.lastIndex;continue}if(nt.lastIndex=m,nt.test(t)){if(y=nt.lastIndex-m,w=y*n,A+w>S&&(v=Math.min(v,m+Math.floor((S-A)/n))),A+w>i){f=!0;break}A+=w,I=$,B=m,m=$=nt.lastIndex;continue}if(wt.lastIndex=m,wt.test(t)){if(A+g>S&&(v=Math.min(v,m)),A+g>i){f=!0;break}A+=g,I=$,B=m,m=$=wt.lastIndex;continue}m+=1}return{width:f?S:A,index:f?v:h,truncated:f,ellipsed:f&&i>=o}},Ee={limit:1/0,ellipsis:\"\",ellipsisWidth:0},M=(t,r={})=>jt(t,Ee,r).width,ot=\"\\x1B\",Gt=\"\\x9B\",ve=39,Ct=\"\\x07\",kt=\"[\",Ae=\"]\",Vt=\"m\",St=`${Ae}8;;`,Ht=new RegExp(`(?:\\\\${kt}(?<code>\\\\d+)m|\\\\${St}(?<uri>.*)${Ct})`,\"y\"),we=t=>{if(t>=30&&t<=37||t>=90&&t<=97)return 39;if(t>=40&&t<=47||t>=100&&t<=107)return 49;if(t===1||t===2)return 22;if(t===3)return 23;if(t===4)return 24;if(t===7)return 27;if(t===8)return 28;if(t===9)return 29;if(t===0)return 0},Ut=t=>`${ot}${kt}${t}${Vt}`,Kt=t=>`${ot}${St}${t}${Ct}`,Ce=t=>t.map(r=>M(r)),It=(t,r,s)=>{const i=r[Symbol.iterator]();let a=!1,o=!1,u=t.at(-1),l=u===void 0?0:M(u),n=i.next(),c=i.next(),g=0;for(;!n.done;){const F=n.value,p=M(F);l+p<=s?t[t.length-1]+=F:(t.push(F),l=0),(F===ot||F===Gt)&&(a=!0,o=r.startsWith(St,g+1)),a?o?F===Ct&&(a=!1,o=!1):F===Vt&&(a=!1):(l+=p,l===s&&!c.done&&(t.push(\"\"),l=0)),n=c,c=i.next(),g+=F.length}u=t.at(-1),!l&&u!==void 0&&u.length>0&&t.length>1&&(t[t.length-2]+=t.pop())},Se=t=>{const r=t.split(\" \");let s=r.length;for(;s>0&&!(M(r[s-1])>0);)s--;return s===r.length?t:r.slice(0,s).join(\" \")+r.slice(s).join(\"\")},Ie=(t,r,s={})=>{if(s.trim!==!1&&t.trim()===\"\")return\"\";let i=\"\",a,o;const u=t.split(\" \"),l=Ce(u);let n=[\"\"];for(const[$,m]of u.entries()){s.trim!==!1&&(n[n.length-1]=(n.at(-1)??\"\").trimStart());let h=M(n.at(-1)??\"\");if($!==0&&(h>=r&&(s.wordWrap===!1||s.trim===!1)&&(n.push(\"\"),h=0),(h>0||s.trim===!1)&&(n[n.length-1]+=\" \",h++)),s.hard&&l[$]>r){const y=r-h,f=1+Math.floor((l[$]-y-1)/r);Math.floor((l[$]-1)/r)<f&&n.push(\"\"),It(n,m,r);continue}if(h+l[$]>r&&h>0&&l[$]>0){if(s.wordWrap===!1&&h<r){It(n,m,r);continue}n.push(\"\")}if(h+l[$]>r&&s.wordWrap===!1){It(n,m,r);continue}n[n.length-1]+=m}s.trim!==!1&&(n=n.map($=>Se($)));const c=n.join(`\n`),g=c[Symbol.iterator]();let F=g.next(),p=g.next(),E=0;for(;!F.done;){const $=F.value,m=p.value;if(i+=$,$===ot||$===Gt){Ht.lastIndex=E+1;const f=Ht.exec(c)?.groups;if(f?.code!==void 0){const v=Number.parseFloat(f.code);a=v===ve?void 0:v}else f?.uri!==void 0&&(o=f.uri.length===0?void 0:f.uri)}const h=a?we(a):void 0;m===`\n`?(o&&(i+=Kt(\"\")),a&&h&&(i+=Ut(h))):$===`\n`&&(a&&h&&(i+=Ut(a)),o&&(i+=Kt(o))),E+=$.length,F=p,p=g.next()}return i};function J(t,r,s){return String(t).normalize().replaceAll(`\\r\n`,`\n`).split(`\n`).map(i=>Ie(i,r,s)).join(`\n`)}const be=(t,r,s,i,a)=>{let o=r,u=0;for(let l=s;l<i;l++){const n=t[l];if(o=o-n.length,u++,o<=a)break}return{lineCount:o,removals:u}},X=t=>{const{cursor:r,options:s,style:i}=t,a=t.output??process.stdout,o=z(a),u=t.columnPadding??0,l=t.rowPadding??4,n=o-u,c=ee(a),g=e.dim(\"...\"),F=t.maxItems??Number.POSITIVE_INFINITY,p=Math.max(c-l,0),E=Math.max(Math.min(F,p),5);let $=0;r>=E-3&&($=Math.max(Math.min(r-E+3,s.length-E),0));let m=E<s.length&&$>0,h=E<s.length&&$+E<s.length;const y=Math.min($+E,s.length),f=[];let v=0;m&&v++,h&&v++;const S=$+(m?1:0),I=y-(h?1:0);for(let A=S;A<I;A++){const w=J(i(s[A],A===r),n,{hard:!0,trim:!1}).split(`\n`);f.push(w),v+=w.length}if(v>p){let A=0,w=0,_=v;const D=r-S,T=(Y,L)=>be(f,_,Y,L,p);m?({lineCount:_,removals:A}=T(0,D),_>p&&({lineCount:_,removals:w}=T(D+1,f.length))):({lineCount:_,removals:w}=T(D+1,f.length),_>p&&({lineCount:_,removals:A}=T(0,D))),A>0&&(m=!0,f.splice(0,A)),w>0&&(h=!0,f.splice(f.length-w,w))}const B=[];m&&B.push(g);for(const A of f)for(const w of A)B.push(w);return h&&B.push(g),B};function qt(t){return t.label??String(t.value??\"\")}function Jt(t,r){if(!t)return!0;const s=(r.label??String(r.value??\"\")).toLowerCase(),i=(r.hint??\"\").toLowerCase(),a=String(r.value).toLowerCase(),o=t.toLowerCase();return s.includes(o)||i.includes(o)||a.includes(o)}function Be(t,r){const s=[];for(const i of r)t.includes(i.value)&&s.push(i);return s}const Xt=t=>new Bt({options:t.options,initialValue:t.initialValue?[t.initialValue]:void 0,initialUserInput:t.initialUserInput,filter:t.filter??((r,s)=>Jt(r,s)),signal:t.signal,input:t.input,output:t.output,validate:t.validate,render(){const r=t.withGuide??P.withGuide,s=r?[`${e.gray(d)}`,`${W(this.state)} ${t.message}`]:[`${W(this.state)} ${t.message}`],i=this.userInput,a=this.options,o=t.placeholder,u=i===\"\"&&o!==void 0,l=(n,c)=>{const g=qt(n),F=n.hint&&n.value===this.focusedValue?e.dim(` (${n.hint})`):\"\";switch(c){case\"active\":return`${e.green(Q)} ${g}${F}`;case\"inactive\":return`${e.dim(H)} ${e.dim(g)}`;case\"disabled\":return`${e.gray(H)} ${e.strikethrough(e.gray(g))}`}};switch(this.state){case\"submit\":{const n=Be(this.selectedValues,a),c=n.length>0?` ${e.dim(n.map(qt).join(\", \"))}`:\"\",g=r?e.gray(d):\"\";return`${s.join(`\n`)}\n${g}${c}`}case\"cancel\":{const n=i?` ${e.strikethrough(e.dim(i))}`:\"\",c=r?e.gray(d):\"\";return`${s.join(`\n`)}\n${c}${n}`}default:{const n=this.state===\"error\"?e.yellow:e.cyan,c=r?`${n(d)} `:\"\",g=r?n(x):\"\";let F=\"\";if(this.isNavigating||u){const f=u?o:i;F=f!==\"\"?` ${e.dim(f)}`:\"\"}else F=` ${this.userInputWithCursor}`;const p=this.filteredOptions.length!==a.length?e.dim(` (${this.filteredOptions.length} match${this.filteredOptions.length===1?\"\":\"es\"})`):\"\",E=this.filteredOptions.length===0&&i?[`${c}${e.yellow(\"No matches found\")}`]:[],$=this.state===\"error\"?[`${c}${e.yellow(this.error)}`]:[];r&&s.push(`${c.trimEnd()}`),s.push(`${c}${e.dim(\"Search:\")}${F}${p}`,...E,...$);const m=[`${e.dim(\"\\u2191/\\u2193\")} to select`,`${e.dim(\"Enter:\")} confirm`,`${e.dim(\"Type:\")} to search`],h=[`${c}${m.join(\" \\u2022 \")}`,g],y=this.filteredOptions.length===0?[]:X({cursor:this.cursor,options:this.filteredOptions,columnPadding:r?3:0,rowPadding:s.length+h.length,style:(f,v)=>l(f,f.disabled?\"disabled\":v?\"active\":\"inactive\"),maxItems:t.maxItems,output:t.output});return[...s,...y.map(f=>`${c}${f}`),...h].join(`\n`)}}}}).prompt(),xe=t=>{const r=(i,a,o,u)=>{const l=o.includes(i.value),n=i.label??String(i.value??\"\"),c=i.hint&&u!==void 0&&i.value===u?e.dim(` (${i.hint})`):\"\",g=l?e.green(U):e.dim(q);return i.disabled?`${e.gray(q)} ${e.strikethrough(e.gray(n))}`:a?`${g} ${n}${c}`:`${g} ${e.dim(n)}`},s=new Bt({options:t.options,multiple:!0,filter:t.filter??((i,a)=>Jt(i,a)),validate:()=>{if(t.required&&s.selectedValues.length===0)return\"Please select at least one item\"},initialValue:t.initialValues,signal:t.signal,input:t.input,output:t.output,render(){const i=`${e.gray(d)}\n${W(this.state)} ${t.message}\n`,a=this.userInput,o=t.placeholder,u=a===\"\"&&o!==void 0,l=this.isNavigating||u?e.dim(u?o:a):this.userInputWithCursor,n=this.options,c=this.filteredOptions.length!==n.length?e.dim(` (${this.filteredOptions.length} match${this.filteredOptions.length===1?\"\":\"es\"})`):\"\";switch(this.state){case\"submit\":return`${i}${e.gray(d)} ${e.dim(`${this.selectedValues.length} items selected`)}`;case\"cancel\":return`${i}${e.gray(d)} ${e.strikethrough(e.dim(a))}`;default:{const g=this.state===\"error\"?e.yellow:e.cyan,F=[`${e.dim(\"\\u2191/\\u2193\")} to navigate`,`${e.dim(this.isNavigating?\"Space/Tab:\":\"Tab:\")} select`,`${e.dim(\"Enter:\")} confirm`,`${e.dim(\"Type:\")} to search`],p=this.filteredOptions.length===0&&a?[`${g(d)} ${e.yellow(\"No matches found\")}`]:[],E=this.state===\"error\"?[`${g(d)} ${e.yellow(this.error)}`]:[],$=[...`${i}${g(d)}`.split(`\n`),`${g(d)} ${e.dim(\"Search:\")} ${l}${c}`,...p,...E],m=[`${g(d)} ${F.join(\" \\u2022 \")}`,`${g(x)}`],h=X({cursor:this.cursor,options:this.filteredOptions,style:(y,f)=>r(y,f,this.selectedValues,this.focusedValue),maxItems:t.maxItems,output:t.output,rowPadding:$.length+m.length});return[...$,...h.map(y=>`${g(d)} ${y}`),...m].join(`\n`)}}}});return s.prompt()},_e=[Lt,mt,gt,pt],De=[ht,Ot,x,Pt];function Yt(t,r,s,i){let a=s,o=s;return i===\"center\"?a=Math.floor((r-t)/2):i===\"right\"&&(a=r-t-s),o=r-a-t,[a,o]}const Te=t=>t,Me=(t=\"\",r=\"\",s)=>{const i=s?.output??process.stdout,a=z(i),o=2,u=s?.titlePadding??1,l=s?.contentPadding??2,n=s?.width===void 0||s.width===\"auto\"?1:Math.min(1,s.width),c=s?.withGuide??P.withGuide?`${d} `:\"\",g=s?.formatBorder??Te,F=(s?.rounded?_e:De).map(g),p=g(rt),E=g(d),$=M(c),m=M(r),h=a-$;let y=Math.floor(a*n)-$;if(s?.width===\"auto\"){const _=t.split(`\n`);let D=m+u*2;for(const Y of _){const L=M(Y)+l*2;L>D&&(D=L)}const T=D+o;T<y&&(y=T)}y%2!==0&&(y<h?y++:y--);const f=y-o,v=f-u*2,S=m>v?`${r.slice(0,v-3)}...`:r,[I,B]=Yt(M(S),f,u,s?.titleAlign),A=J(t,f-l*2,{hard:!0,trim:!1});i.write(`${c}${F[0]}${p.repeat(I)}${S}${p.repeat(B)}${F[1]}\n`);const w=A.split(`\n`);for(const _ of w){const[D,T]=Yt(M(_),f,l,s?.contentAlign);i.write(`${c}${E}${\" \".repeat(D)}${_}${\" \".repeat(T)}${E}\n`)}i.write(`${c}${F[2]}${p.repeat(f)}${F[3]}\n`)},Re=t=>{const r=t.active??\"Yes\",s=t.inactive??\"No\";return new se({active:r,inactive:s,signal:t.signal,input:t.input,output:t.output,initialValue:t.initialValue??!0,render(){const i=t.withGuide??P.withGuide,a=`${i?`${e.gray(d)}\n`:\"\"}${W(this.state)} ${t.message}\n`,o=this.value?r:s;switch(this.state){case\"submit\":{const u=i?`${e.gray(d)} `:\"\";return`${a}${u}${e.dim(o)}`}case\"cancel\":{const u=i?`${e.gray(d)} `:\"\";return`${a}${u}${e.strikethrough(e.dim(o))}${i?`\n${e.gray(d)}`:\"\"}`}default:{const u=i?`${e.cyan(d)} `:\"\",l=i?e.cyan(x):\"\";return`${a}${u}${this.value?`${e.green(Q)} ${r}`:`${e.dim(H)} ${e.dim(r)}`}${t.vertical?i?`\n${e.cyan(d)} `:`\n`:` ${e.dim(\"/\")} `}${this.value?`${e.dim(H)} ${e.dim(s)}`:`${e.green(Q)} ${s}`}\n${l}\n`}}}}).prompt()},Oe=async(t,r)=>{const s={},i=Object.keys(t);for(const a of i){const o=t[a],u=await o({results:s})?.catch(l=>{throw l});if(typeof r?.onCancel==\"function\"&&re(u)){s[a]=\"canceled\",r.onCancel({results:s});continue}s[a]=u}return s},Pe=t=>{const{selectableGroups:r=!0,groupSpacing:s=0}=t,i=(o,u,l=[])=>{const n=o.label??String(o.value),c=typeof o.group==\"string\",g=c&&(l[l.indexOf(o)+1]??{group:!0}),F=c&&g&&g.group===!0,p=c?r?`${F?x:d} `:\" \":\"\";let E=\"\";if(s>0&&!c){const m=`\n${e.cyan(d)}`;E=`${m.repeat(s-1)}${m} `}if(u===\"active\")return`${E}${e.dim(p)}${e.cyan(st)} ${n}${o.hint?` ${e.dim(`(${o.hint})`)}`:\"\"}`;if(u===\"group-active\")return`${E}${p}${e.cyan(st)} ${e.dim(n)}`;if(u===\"group-active-selected\")return`${E}${p}${e.green(U)} ${e.dim(n)}`;if(u===\"selected\"){const m=c||r?e.green(U):\"\";return`${E}${e.dim(p)}${m} ${e.dim(n)}${o.hint?` ${e.dim(`(${o.hint})`)}`:\"\"}`}if(u===\"cancelled\")return`${e.strikethrough(e.dim(n))}`;if(u===\"active-selected\")return`${E}${e.dim(p)}${e.green(U)} ${n}${o.hint?` ${e.dim(`(${o.hint})`)}`:\"\"}`;if(u===\"submitted\")return`${e.dim(n)}`;const $=c||r?e.dim(q):\"\";return`${E}${e.dim(p)}${$} ${e.dim(n)}`},a=t.required??!0;return new ie({options:t.options,signal:t.signal,input:t.input,output:t.output,initialValues:t.initialValues,required:a,cursorAt:t.cursorAt,selectableGroups:r,validate(o){if(a&&(o===void 0||o.length===0))return`Please select at least one option.\n${e.reset(e.dim(`Press ${e.gray(e.bgWhite(e.inverse(\" space \")))} to select, ${e.gray(e.bgWhite(e.inverse(\" enter \")))} to submit`))}`},render(){const o=`${e.gray(d)}\n${W(this.state)} ${t.message}\n`,u=this.value??[];switch(this.state){case\"submit\":{const l=this.options.filter(({value:c})=>u.includes(c)).map(c=>i(c,\"submitted\")),n=l.length===0?\"\":` ${l.join(e.dim(\", \"))}`;return`${o}${e.gray(d)}${n}`}case\"cancel\":{const l=this.options.filter(({value:n})=>u.includes(n)).map(n=>i(n,\"cancelled\")).join(e.dim(\", \"));return`${o}${e.gray(d)} ${l.trim()?`${l}\n${e.gray(d)}`:\"\"}`}case\"error\":{const l=this.error.split(`\n`).map((n,c)=>c===0?`${e.yellow(x)} ${e.yellow(n)}`:` ${n}`).join(`\n`);return`${o}${e.yellow(d)} ${this.options.map((n,c,g)=>{const F=u.includes(n.value)||n.group===!0&&this.isGroupSelected(`${n.value}`),p=c===this.cursor;return!p&&typeof n.group==\"string\"&&this.options[this.cursor].value===n.group?i(n,F?\"group-active-selected\":\"group-active\",g):p&&F?i(n,\"active-selected\",g):F?i(n,\"selected\",g):i(n,p?\"active\":\"inactive\",g)}).join(`\n${e.yellow(d)} `)}\n${l}\n`}default:{const l=this.options.map((c,g,F)=>{const p=u.includes(c.value)||c.group===!0&&this.isGroupSelected(`${c.value}`),E=g===this.cursor,$=!E&&typeof c.group==\"string\"&&this.options[this.cursor].value===c.group;let m=\"\";return $?m=i(c,p?\"group-active-selected\":\"group-active\",F):E&&p?m=i(c,\"active-selected\",F):p?m=i(c,\"selected\",F):m=i(c,E?\"active\":\"inactive\",F),`${g!==0&&!m.startsWith(`\n`)?\" \":\"\"}${m}`}).join(`\n${e.cyan(d)}`),n=l.startsWith(`\n`)?\"\":\" \";return`${o}${e.cyan(d)}${n}${l}\n${e.cyan(x)}\n`}}}}).prompt()},R={message:(t=[],{symbol:r=e.gray(d),secondarySymbol:s=e.gray(d),output:i=process.stdout,spacing:a=1,withGuide:o}={})=>{const u=[],l=o??P.withGuide,n=l?s:\"\",c=l?`${r} `:\"\",g=l?`${s} `:\"\";for(let p=0;p<a;p++)u.push(n);const F=Array.isArray(t)?t:t.split(`\n`);if(F.length>0){const[p,...E]=F;p.length>0?u.push(`${c}${p}`):u.push(l?r:\"\");for(const $ of E)$.length>0?u.push(`${g}${$}`):u.push(l?s:\"\")}i.write(`${u.join(`\n`)}\n`)},info:(t,r)=>{R.message(t,{...r,symbol:e.blue(ft)})},success:(t,r)=>{R.message(t,{...r,symbol:e.green(Ft)})},step:(t,r)=>{R.message(t,{...r,symbol:e.green(V)})},warn:(t,r)=>{R.message(t,{...r,symbol:e.yellow(yt)})},warning:(t,r)=>{R.warn(t,r)},error:(t,r)=>{R.message(t,{...r,symbol:e.red(Et)})}},Ne=(t=\"\",r)=>{(r?.output??process.stdout).write(`${e.gray(x)} ${e.red(t)}\n\n`)},We=(t=\"\",r)=>{(r?.output??process.stdout).write(`${e.gray(ht)} ${t}\n`)},Le=(t=\"\",r)=>{(r?.output??process.stdout).write(`${e.gray(d)}\n${e.gray(x)} ${t}\n\n`)},Z=(t,r)=>t.split(`\n`).map(s=>r(s)).join(`\n`),je=t=>{const r=(i,a)=>{const o=i.label??String(i.value);return a===\"disabled\"?`${e.gray(q)} ${Z(o,u=>e.strikethrough(e.gray(u)))}${i.hint?` ${e.dim(`(${i.hint??\"disabled\"})`)}`:\"\"}`:a===\"active\"?`${e.cyan(st)} ${o}${i.hint?` ${e.dim(`(${i.hint})`)}`:\"\"}`:a===\"selected\"?`${e.green(U)} ${Z(o,e.dim)}${i.hint?` ${e.dim(`(${i.hint})`)}`:\"\"}`:a===\"cancelled\"?`${Z(o,u=>e.strikethrough(e.dim(u)))}`:a===\"active-selected\"?`${e.green(U)} ${o}${i.hint?` ${e.dim(`(${i.hint})`)}`:\"\"}`:a===\"submitted\"?`${Z(o,e.dim)}`:`${e.dim(q)} ${Z(o,e.dim)}`},s=t.required??!0;return new ne({options:t.options,signal:t.signal,input:t.input,output:t.output,initialValues:t.initialValues,required:s,cursorAt:t.cursorAt,validate(i){if(s&&(i===void 0||i.length===0))return`Please select at least one option.\n${e.reset(e.dim(`Press ${e.gray(e.bgWhite(e.inverse(\" space \")))} to select, ${e.gray(e.bgWhite(e.inverse(\" enter \")))} to submit`))}`},render(){const i=k(t.output,t.message,`${vt(this.state)} `,`${W(this.state)} `),a=`${e.gray(d)}\n${i}\n`,o=this.value??[],u=(l,n)=>{if(l.disabled)return r(l,\"disabled\");const c=o.includes(l.value);return n&&c?r(l,\"active-selected\"):c?r(l,\"selected\"):r(l,n?\"active\":\"inactive\")};switch(this.state){case\"submit\":{const l=this.options.filter(({value:c})=>o.includes(c)).map(c=>r(c,\"submitted\")).join(e.dim(\", \"))||e.dim(\"none\"),n=k(t.output,l,`${e.gray(d)} `);return`${a}${n}`}case\"cancel\":{const l=this.options.filter(({value:c})=>o.includes(c)).map(c=>r(c,\"cancelled\")).join(e.dim(\", \"));if(l.trim()===\"\")return`${a}${e.gray(d)}`;const n=k(t.output,l,`${e.gray(d)} `);return`${a}${n}\n${e.gray(d)}`}case\"error\":{const l=`${e.yellow(d)} `,n=this.error.split(`\n`).map((F,p)=>p===0?`${e.yellow(x)} ${e.yellow(F)}`:` ${F}`).join(`\n`),c=a.split(`\n`).length,g=n.split(`\n`).length+1;return`${a}${l}${X({output:t.output,options:this.options,cursor:this.cursor,maxItems:t.maxItems,columnPadding:l.length,rowPadding:c+g,style:u}).join(`\n${l}`)}\n${n}\n`}default:{const l=`${e.cyan(d)} `,n=a.split(`\n`).length;return`${a}${l}${X({output:t.output,options:this.options,cursor:this.cursor,maxItems:t.maxItems,columnPadding:l.length,rowPadding:n+2,style:u}).join(`\n${l}`)}\n${e.cyan(x)}\n`}}}}).prompt()},Ge=t=>e.dim(t),ke=(t,r,s)=>{const i={hard:!0,trim:!1},a=J(t,r,i).split(`\n`),o=a.reduce((n,c)=>Math.max(M(c),n),0),u=a.map(s).reduce((n,c)=>Math.max(M(c),n),0),l=r-(u-o);return J(t,l,i)},Ve=(t=\"\",r=\"\",s)=>{const i=s?.output??N.stdout,a=s?.withGuide??P.withGuide,o=s?.format??Ge,u=[\"\",...ke(t,z(i)-6,o).split(`\n`).map(o),\"\"],l=M(r),n=Math.max(u.reduce((p,E)=>{const $=M(E);return $>p?$:p},0),l)+2,c=u.map(p=>`${e.gray(d)} ${p}${\" \".repeat(n-M(p))}${e.gray(d)}`).join(`\n`),g=a?`${e.gray(d)}\n`:\"\",F=a?Wt:gt;i.write(`${g}${e.green(V)} ${e.reset(r)} ${e.gray(rt.repeat(Math.max(n-l-1,1))+mt)}\n${c}\n${e.gray(F+rt.repeat(n+2)+pt)}\n`)},He=t=>new ae({validate:t.validate,mask:t.mask??Nt,signal:t.signal,input:t.input,output:t.output,render(){const r=t.withGuide??P.withGuide,s=`${r?`${e.gray(d)}\n`:\"\"}${W(this.state)} ${t.message}\n`,i=this.userInputWithCursor,a=this.masked;switch(this.state){case\"error\":{const o=r?`${e.yellow(d)} `:\"\",u=r?`${e.yellow(x)} `:\"\",l=a??\"\";return t.clearOnError&&this.clear(),`${s.trim()}\n${o}${l}\n${u}${e.yellow(this.error)}\n`}case\"submit\":{const o=r?`${e.gray(d)} `:\"\",u=a?e.dim(a):\"\";return`${s}${o}${u}`}case\"cancel\":{const o=r?`${e.gray(d)} `:\"\",u=a?e.strikethrough(e.dim(a)):\"\";return`${s}${o}${u}${a&&r?`\n${e.gray(d)}`:\"\"}`}default:{const o=r?`${e.cyan(d)} `:\"\",u=r?e.cyan(x):\"\";return`${s}${o}${i}\n${u}\n`}}}}).prompt(),Ue=t=>{const r=t.validate;return Xt({...t,initialUserInput:t.initialValue??t.root??process.cwd(),maxItems:5,validate(s){if(!Array.isArray(s)){if(!s)return\"Please select a path\";if(r)return r(s)}},options(){const s=this.userInput;if(s===\"\")return[];try{let i;return $e(s)?xt(s).isDirectory()?i=s:i=_t(s):i=_t(s),de(i).map(a=>{const o=he(i,a),u=xt(o);return{name:a,path:o,isDirectory:u.isDirectory()}}).filter(({path:a,isDirectory:o})=>a.startsWith(s)&&(t.directory||!o)).map(a=>({value:a.path}))}catch{return[]}}})},Ke=e.magenta,bt=({indicator:t=\"dots\",onCancel:r,output:s=process.stdout,cancelMessage:i,errorMessage:a,frames:o=et?[\"\\u25D2\",\"\\u25D0\",\"\\u25D3\",\"\\u25D1\"]:[\"\\u2022\",\"o\",\"O\",\"0\"],delay:u=et?80:120,signal:l,...n}={})=>{const c=ct();let g,F,p=!1,E=!1,$=\"\",m,h=performance.now();const y=z(s),f=n?.styleFrame??Ke,v=b=>{const O=b>1?a??P.messages.error:i??P.messages.cancel;E=b===1,p&&(L(O,b),E&&typeof r==\"function\"&&r())},S=()=>v(2),I=()=>v(1),B=()=>{process.on(\"uncaughtExceptionMonitor\",S),process.on(\"unhandledRejection\",S),process.on(\"SIGINT\",I),process.on(\"SIGTERM\",I),process.on(\"exit\",v),l&&l.addEventListener(\"abort\",I)},A=()=>{process.removeListener(\"uncaughtExceptionMonitor\",S),process.removeListener(\"unhandledRejection\",S),process.removeListener(\"SIGINT\",I),process.removeListener(\"SIGTERM\",I),process.removeListener(\"exit\",v),l&&l.removeEventListener(\"abort\",I)},w=()=>{if(m===void 0)return;c&&s.write(`\n`);const b=J(m,y,{hard:!0,trim:!1}).split(`\n`);b.length>1&&s.write(Dt.up(b.length-1)),s.write(Dt.to(0)),s.write(Tt.down())},_=b=>b.replace(/\\.+$/,\"\"),D=b=>{const O=(performance.now()-b)/1e3,j=Math.floor(O/60),G=Math.floor(O%60);return j>0?`[${j}m ${G}s]`:`[${G}s]`},T=n.withGuide??P.withGuide,Y=(b=\"\")=>{p=!0,g=oe({output:s}),$=_(b),h=performance.now(),T&&s.write(`${e.gray(d)}\n`);let O=0,j=0;B(),F=setInterval(()=>{if(c&&$===m)return;w(),m=$;const G=f(o[O]);let tt;if(c)tt=`${G} ${$}...`;else if(t===\"timer\")tt=`${G} ${$} ${D(h)}`;else{const te=\".\".repeat(Math.floor(j)).slice(0,3);tt=`${G} ${$}${te}`}const Zt=J(tt,y,{hard:!0,trim:!1});s.write(Zt),O=O+1<o.length?O+1:0,j=j<4?j+.125:0},u)},L=(b=\"\",O=0,j=!1)=>{if(!p)return;p=!1,clearInterval(F),w();const G=O===0?e.green(V):O===1?e.red(dt):e.red($t);$=b??$,j||(t===\"timer\"?s.write(`${G} ${$} ${D(h)}\n`):s.write(`${G} ${$}\n`)),A(),g()};return{start:Y,stop:(b=\"\")=>L(b,0),message:(b=\"\")=>{$=_(b??$)},cancel:(b=\"\")=>L(b,1),error:(b=\"\")=>L(b,2),clear:()=>L(\"\",0,!0),get isCancelled(){return E}}},zt={light:C(\"\\u2500\",\"-\"),heavy:C(\"\\u2501\",\"=\"),block:C(\"\\u2588\",\"#\")};function qe({style:t=\"heavy\",max:r=100,size:s=40,...i}={}){const a=bt(i);let o=0,u=\"\";const l=Math.max(1,r),n=Math.max(1,s),c=E=>{switch(E){case\"initial\":case\"active\":return e.magenta;case\"error\":case\"cancel\":return e.red;case\"submit\":return e.green;default:return e.magenta}},g=(E,$)=>{const m=Math.floor(o/l*n);return`${c(E)(zt[t].repeat(m))}${e.dim(zt[t].repeat(n-m))} ${$}`},F=(E=\"\")=>{u=E,a.start(g(\"initial\",E))},p=(E=1,$)=>{o=Math.min(l,E+o),a.message(g(\"active\",$??u)),u=$??u};return{start:F,stop:a.stop,cancel:a.cancel,error:a.error,clear:a.clear,advance:p,isCancelled:a.isCancelled,message:E=>p(0,E)}}const lt=(t,r)=>t.includes(`\n`)?t.split(`\n`).map(s=>r(s)).join(`\n`):r(t),Je=t=>{const r=(s,i)=>{const a=s.label??String(s.value);switch(i){case\"disabled\":return`${e.gray(H)} ${lt(a,e.gray)}${s.hint?` ${e.dim(`(${s.hint??\"disabled\"})`)}`:\"\"}`;case\"selected\":return`${lt(a,e.dim)}`;case\"active\":return`${e.green(Q)} ${a}${s.hint?` ${e.dim(`(${s.hint})`)}`:\"\"}`;case\"cancelled\":return`${lt(a,o=>e.strikethrough(e.dim(o)))}`;default:return`${e.dim(H)} ${lt(a,e.dim)}`}};return new le({options:t.options,signal:t.signal,input:t.input,output:t.output,initialValue:t.initialValue,render(){const s=t.withGuide??P.withGuide,i=`${W(this.state)} `,a=`${vt(this.state)} `,o=k(t.output,t.message,a,i),u=`${s?`${e.gray(d)}\n`:\"\"}${o}\n`;switch(this.state){case\"submit\":{const l=s?`${e.gray(d)} `:\"\",n=k(t.output,r(this.options[this.cursor],\"selected\"),l);return`${u}${n}`}case\"cancel\":{const l=s?`${e.gray(d)} `:\"\",n=k(t.output,r(this.options[this.cursor],\"cancelled\"),l);return`${u}${n}${s?`\n${e.gray(d)}`:\"\"}`}default:{const l=s?`${e.cyan(d)} `:\"\",n=s?e.cyan(x):\"\",c=u.split(`\n`).length,g=s?2:1;return`${u}${l}${X({output:t.output,cursor:this.cursor,options:this.options,maxItems:t.maxItems,columnPadding:l.length,rowPadding:c+g,style:(F,p)=>r(F,F.disabled?\"disabled\":p?\"active\":\"inactive\")}).join(`\n${l}`)}\n${n}\n`}}}}).prompt()},Xe=t=>{const r=(s,i=\"inactive\")=>{const a=s.label??String(s.value);return i===\"selected\"?`${e.dim(a)}`:i===\"cancelled\"?`${e.strikethrough(e.dim(a))}`:i===\"active\"?`${e.bgCyan(e.gray(` ${s.value} `))} ${a}${s.hint?` ${e.dim(`(${s.hint})`)}`:\"\"}`:`${e.gray(e.bgWhite(e.inverse(` ${s.value} `)))} ${a}${s.hint?` ${e.dim(`(${s.hint})`)}`:\"\"}`};return new ue({options:t.options,signal:t.signal,input:t.input,output:t.output,initialValue:t.initialValue,caseSensitive:t.caseSensitive,render(){const s=t.withGuide??P.withGuide,i=`${s?`${e.gray(d)}\n`:\"\"}${W(this.state)} ${t.message}\n`;switch(this.state){case\"submit\":{const a=s?`${e.gray(d)} `:\"\",o=this.options.find(l=>l.value===this.value)??t.options[0],u=k(t.output,r(o,\"selected\"),a);return`${i}${u}`}case\"cancel\":{const a=s?`${e.gray(d)} `:\"\",o=k(t.output,r(this.options[0],\"cancelled\"),a);return`${i}${o}${s?`\n${e.gray(d)}`:\"\"}`}default:{const a=s?`${e.cyan(d)} `:\"\",o=s?e.cyan(x):\"\",u=this.options.map((l,n)=>k(t.output,r(l,n===this.cursor?\"active\":\"inactive\"),a)).join(`\n`);return`${i}${u}\n${o}\n`}}}}).prompt()},Qt=`${e.gray(d)} `,K={message:async(t,{symbol:r=e.gray(d)}={})=>{process.stdout.write(`${e.gray(d)}\n${r} `);let s=3;for await(let i of t){i=i.replace(/\\n/g,`\n${Qt}`),i.includes(`\n`)&&(s=3+ut(i.slice(i.lastIndexOf(`\n`))).length);const a=ut(i).length;s+a<process.stdout.columns?(s+=a,process.stdout.write(i)):(process.stdout.write(`\n${Qt}${i.trimStart()}`),s=3+ut(i.trimStart()).length)}process.stdout.write(`\n`)},info:t=>K.message(t,{symbol:e.blue(ft)}),success:t=>K.message(t,{symbol:e.green(Ft)}),step:t=>K.message(t,{symbol:e.green(V)}),warn:t=>K.message(t,{symbol:e.yellow(yt)}),warning:t=>K.warn(t),error:t=>K.message(t,{symbol:e.red(Et)})},Ye=async(t,r)=>{for(const s of t){if(s.enabled===!1)continue;const i=bt(r);i.start(s.title);const a=await s.task(i.message);i.stop(a||s.title)}},ze=t=>t.replace(/\\x1b\\[(?:\\d+;)*\\d*[ABCDEFGHfJKSTsu]|\\x1b\\[(s|u)/g,\"\"),Qe=t=>{const r=t.output??process.stdout,s=z(r),i=e.gray(d),a=t.spacing??1,o=3,u=t.retainLog===!0,l=!ct()&&Mt(r);r.write(`${i}\n`),r.write(`${e.green(V)} ${t.title}\n`);for(let h=0;h<a;h++)r.write(`${i}\n`);const n=[{value:\"\",full:\"\"}];let c=!1;const g=h=>{if(n.length===0)return;let y=0;h&&(y+=a+2);for(const f of n){const{value:v,result:S}=f;let I=S?.message??v;if(I.length===0)continue;S===void 0&&f.header!==void 0&&f.header!==\"\"&&(I+=`\n${f.header}`);const B=I.split(`\n`).reduce((A,w)=>w===\"\"?A+1:A+Math.ceil((w.length+o)/s),0);y+=B}y>0&&(y+=1,r.write(Tt.lines(y)))},F=(h,y,f)=>{const v=f?`${h.full}\n${h.value}`:h.value;h.header!==void 0&&h.header!==\"\"&&R.message(h.header.split(`\n`).map(e.bold),{output:r,secondarySymbol:i,symbol:i,spacing:0}),R.message(v.split(`\n`).map(e.dim),{output:r,secondarySymbol:i,symbol:i,spacing:y??a})},p=()=>{for(const h of n){const{header:y,value:f,full:v}=h;(y===void 0||y.length===0)&&f.length===0||F(h,void 0,u===!0&&v.length>0)}},E=(h,y,f)=>{if(g(!1),(f?.raw!==!0||!c)&&h.value!==\"\"&&(h.value+=`\n`),h.value+=ze(y),c=f?.raw===!0,t.limit!==void 0){const v=h.value.split(`\n`),S=v.length-t.limit;if(S>0){const I=v.splice(0,S);u&&(h.full+=(h.full===\"\"?\"\":`\n`)+I.join(`\n`))}h.value=v.join(`\n`)}l&&$()},$=()=>{for(const h of n)h.result?h.result.status===\"error\"?R.error(h.result.message,{output:r,secondarySymbol:i,spacing:0}):R.success(h.result.message,{output:r,secondarySymbol:i,spacing:0}):h.value!==\"\"&&F(h,0)},m=(h,y)=>{g(!1),h.result=y,l&&$()};return{message(h,y){E(n[0],h,y)},group(h){const y={header:h,value:\"\",full:\"\"};return n.push(y),{message(f,v){E(y,f,v)},error(f){m(y,{status:\"error\",message:f})},success(f){m(y,{status:\"success\",message:f})}}},error(h,y){g(!0),R.error(h,{output:r,secondarySymbol:i,spacing:1}),y?.showLog!==!1&&p(),n.splice(1,n.length-1),n[0].value=\"\",n[0].full=\"\"},success(h,y){g(!0),R.success(h,{output:r,secondarySymbol:i,spacing:1}),y?.showLog===!0&&p(),n.splice(1,n.length-1),n[0].value=\"\",n[0].full=\"\"}}},Ze=t=>new ce({validate:t.validate,placeholder:t.placeholder,defaultValue:t.defaultValue,initialValue:t.initialValue,output:t.output,signal:t.signal,input:t.input,render(){const r=t?.withGuide??P.withGuide,s=`${`${r?`${e.gray(d)}\n`:\"\"}${W(this.state)} `}${t.message}\n`,i=t.placeholder?e.inverse(t.placeholder[0])+e.dim(t.placeholder.slice(1)):e.inverse(e.hidden(\"_\")),a=this.userInput?this.userInputWithCursor:i,o=this.value??\"\";switch(this.state){case\"error\":{const u=this.error?` ${e.yellow(this.error)}`:\"\",l=r?`${e.yellow(d)} `:\"\",n=r?e.yellow(x):\"\";return`${s.trim()}\n${l}${a}\n${n}${u}\n`}case\"submit\":{const u=o?` ${e.dim(o)}`:\"\",l=r?e.gray(d):\"\";return`${s}${l}${u}`}case\"cancel\":{const u=o?` ${e.strikethrough(e.dim(o))}`:\"\",l=r?e.gray(d):\"\";return`${s}${l}${u}${o.trim()?`\n${l}`:\"\"}`}default:{const u=r?`${e.cyan(d)} `:\"\",l=r?e.cyan(x):\"\";return`${s}${u}${a}\n${l}\n`}}}}).prompt();export{d as S_BAR,x as S_BAR_END,Pt as S_BAR_END_RIGHT,rt as S_BAR_H,ht as S_BAR_START,Ot as S_BAR_START_RIGHT,st as S_CHECKBOX_ACTIVE,q as S_CHECKBOX_INACTIVE,U as S_CHECKBOX_SELECTED,Wt as S_CONNECT_LEFT,gt as S_CORNER_BOTTOM_LEFT,pt as S_CORNER_BOTTOM_RIGHT,Lt as S_CORNER_TOP_LEFT,mt as S_CORNER_TOP_RIGHT,Et as S_ERROR,ft as S_INFO,Nt as S_PASSWORD_MASK,Q as S_RADIO_ACTIVE,H as S_RADIO_INACTIVE,Rt as S_STEP_ACTIVE,dt as S_STEP_CANCEL,$t as S_STEP_ERROR,V as S_STEP_SUBMIT,Ft as S_SUCCESS,yt as S_WARN,Xt as autocomplete,xe as autocompleteMultiselect,Me as box,Ne as cancel,Re as confirm,Oe as group,Pe as groupMultiselect,We as intro,ct as isCI,Mt as isTTY,X as limitOptions,R as log,je as multiselect,Ve as note,Le as outro,He as password,Ue as path,qe as progress,Je as select,Xe as selectKey,bt as spinner,K as stream,W as symbol,vt as symbolBar,Qe as taskLog,Ye as tasks,Ze as text,et as unicode,C as unicodeOr};\n//# sourceMappingURL=index.mjs.map\n",
742
742
  "import { log } from \"@clack/prompts\";\nimport type { Logger } from \"./types.js\";\n\n/**\n * Interactive logger that delegates to `@clack/prompts` log methods.\n * Used when the CLI is running in a TTY (interactive terminal).\n */\nexport class ClackLogger implements Logger {\n info(message: string): void {\n log.info(message);\n }\n success(message: string): void {\n log.success(message);\n }\n warn(message: string): void {\n log.warn(message);\n }\n error(message: string): void {\n log.error(message);\n }\n step(message: string): void {\n log.step(message);\n }\n message(message: string): void {\n log.message(message);\n }\n}\n",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@base44-preview/cli",
3
- "version": "0.0.52-pr.516.7a7934c",
3
+ "version": "0.0.52-pr.516.f96674e",
4
4
  "description": "Base44 CLI - Unified interface for managing Base44 applications",
5
5
  "type": "module",
6
6
  "bin": {