@quantiya/codevibe-codex-plugin 2.0.4 → 2.0.6
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.
- package/node_modules/@quantiya/codevibe-core/dist/index.js +198 -196
- package/node_modules/@quantiya/codevibe-core/dist/local-model/manager.d.ts +18 -6
- package/node_modules/@quantiya/codevibe-core/dist/local-model/ollama.d.ts +38 -1
- package/node_modules/@quantiya/codevibe-core/dist/orchestration/setup-types.d.ts +9 -4
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/mobile-user-prompt-return.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/__tests__/runOrchestrationShell-session-retire.test.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.d.ts +10 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/cli.js +1155 -824
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/components/InputBar.d.ts +67 -0
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/emit-shell-event.d.ts +1 -1
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/index.d.ts +119 -2
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/ink-runtime.d.ts +11 -1
- package/node_modules/@quantiya/codevibe-core/dist/orchestration-shell/mode-selection.d.ts +5 -9
- package/node_modules/@quantiya/codevibe-core/dist/types/session.d.ts +2 -1
- package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/LICENSE +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/README.md +278 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/ansiCodes.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/ansiCodes.js +57 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/ansiCodes.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/consts.d.ts +17 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/consts.js +28 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/consts.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/diff.js +26 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/diff.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/reduce.js +37 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/reduce.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/tokenize.d.ts +16 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/tokenize.js +194 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/build/tokenize.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/@alcalzone/ansi-tokenize/package.json +55 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/cli-boxes/index.d.ts +122 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/cli-boxes/index.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/cli-boxes/package.json +49 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/cli-boxes/readme.md +103 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/cli-truncate/index.d.ts +118 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/cli-truncate/index.js +194 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/cli-truncate/package.json +52 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/cli-truncate/readme.md +153 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/ansi-tokenizer.d.ts +38 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/ansi-tokenizer.js +316 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/ansi-tokenizer.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/AccessibilityContext.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/AccessibilityContext.js +5 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/AccessibilityContext.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/AnimationContext.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/AnimationContext.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/AnimationContext.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/App.d.ts +24 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/App.js +554 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/App.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/AppContext.d.ts +80 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/AppContext.js +25 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/AppContext.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/BackgroundContext.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/BackgroundContext.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/BackgroundContext.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Box.d.ts +130 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Box.js +34 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Box.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/CursorContext.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/CursorContext.js +8 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/CursorContext.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/ErrorBoundary.d.ts +18 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/ErrorBoundary.js +23 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/ErrorBoundary.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/ErrorOverview.js +90 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/ErrorOverview.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Newline.d.ts +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Newline.js +8 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Newline.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Spacer.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Spacer.js +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Spacer.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Static.d.ts +24 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Static.js +28 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Static.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/StderrContext.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/StderrContext.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/StderrContext.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/StdinContext.d.ts +28 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/StdinContext.js +20 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/StdinContext.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/StdoutContext.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/StdoutContext.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/StdoutContext.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Text.d.ts +55 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Text.js +50 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Text.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Transform.d.ts +16 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Transform.js +15 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/Transform.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/cursor-helpers.d.ts +38 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/cursor-helpers.js +56 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/cursor-helpers.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/devtools-window-polyfill.d.ts +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/devtools-window-polyfill.js +68 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/devtools-window-polyfill.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/devtools.js +36 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/devtools.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/dom.d.ts +62 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/dom.js +143 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/dom.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-animation.d.ts +49 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-animation.js +87 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-animation.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-app.d.ts +5 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-app.js +8 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-app.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-box-metrics.d.ts +59 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-box-metrics.js +81 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-box-metrics.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-cursor.d.ts +12 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-cursor.js +29 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-cursor.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-focus-manager.d.ts +43 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-focus-manager.js +18 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-focus-manager.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-focus.d.ts +30 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-focus.js +43 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-focus.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-input.d.ts +132 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-input.js +126 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-input.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-is-screen-reader-enabled.d.ts +6 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-is-screen-reader-enabled.js +12 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-is-screen-reader-enabled.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-paste.d.ts +35 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-paste.js +62 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-paste.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-stderr.d.ts +5 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-stderr.js +8 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-stderr.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-stdin.d.ts +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-stdin.js +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-stdin.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-stdout.d.ts +5 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-stdout.js +8 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-stdout.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-window-size.d.ts +18 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-window-size.js +22 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/hooks/use-window-size.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/index.d.ts +42 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/index.js +24 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/index.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/ink.d.ts +146 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/ink.js +950 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/ink.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/input-parser.d.ts +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/input-parser.js +194 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/input-parser.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/kitty-keyboard.d.ts +23 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/kitty-keyboard.js +32 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/kitty-keyboard.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/log-update.d.ts +20 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/log-update.js +254 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/log-update.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/measure-element.d.ts +20 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/measure-element.js +13 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/measure-element.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/measure-text.js +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/measure-text.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/output.d.ts +35 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/output.js +208 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/output.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/parse-keypress.d.ts +20 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/parse-keypress.js +495 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/parse-keypress.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/reconciler.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/reconciler.js +306 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/reconciler.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render-background.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render-background.js +25 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render-background.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render-border.js +84 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render-border.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render-node-to-output.d.ts +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render-node-to-output.js +147 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render-node-to-output.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render-to-string.d.ts +38 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render-to-string.js +116 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render-to-string.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render.d.ts +176 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render.js +62 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/render.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/renderer.d.ts +8 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/renderer.js +55 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/renderer.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/sanitize-ansi.d.ts +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/sanitize-ansi.js +27 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/sanitize-ansi.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/squash-text-nodes.js +36 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/squash-text-nodes.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/styles.d.ts +302 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/styles.js +303 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/styles.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/utils.d.ts +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/utils.js +19 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/utils.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/wrap-text.js +38 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/wrap-text.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/write-synchronized.d.ts +4 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/write-synchronized.js +9 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/write-synchronized.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/license +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/package.json +137 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ink/readme.md +3192 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/is-in-ci/index.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/is-in-ci/package.json +49 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/is-in-ci/readme.md +44 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/LICENSE +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/README.md +37 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-compiler-runtime.development.js +24 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-compiler-runtime.production.js +16 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-compiler-runtime.profiling.js +16 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-jsx-dev-runtime.development.js +338 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-jsx-dev-runtime.production.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-jsx-dev-runtime.profiling.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-jsx-dev-runtime.react-server.development.js +370 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-jsx-dev-runtime.react-server.production.js +40 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-jsx-runtime.development.js +352 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-jsx-runtime.production.js +34 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-jsx-runtime.profiling.js +34 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-jsx-runtime.react-server.development.js +370 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react-jsx-runtime.react-server.production.js +40 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react.development.js +1284 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react.production.js +542 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react.react-server.development.js +848 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/cjs/react.react-server.production.js +423 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/compiler-runtime.js +14 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/index.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/jsx-dev-runtime.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/jsx-dev-runtime.react-server.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/jsx-runtime.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/jsx-runtime.react-server.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/package.json +51 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react/react.react-server.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/README.md +152 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/backend.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/dist/backend.js +18302 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/dist/backend.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/dist/importFile.worker.worker.js +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/dist/importFile.worker.worker.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/dist/parseHookNames.chunk.js +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/dist/parseHookNames.chunk.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/dist/parseSourceAndMetadata.worker.worker.js +2 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/dist/parseSourceAndMetadata.worker.worker.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/dist/standalone.js +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/dist/standalone.js.LICENSE.txt +41 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/dist/standalone.js.map +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/LICENSE +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/README.md +495 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/browser.js +8 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/index.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/buffer-util.js +129 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/constants.js +10 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/event-target.js +184 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/extension.js +223 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/limiter.js +55 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/permessage-deflate.js +518 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/receiver.js +664 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/sender.js +409 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/stream.js +180 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/validation.js +104 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/websocket-server.js +461 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/lib/websocket.js +1215 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/node_modules/ws/package.json +56 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/package.json +38 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-devtools-core/standalone.js +1 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/LICENSE +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/README.md +353 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/cjs/react-reconciler-constants.development.js +19 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/cjs/react-reconciler-constants.production.js +18 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/cjs/react-reconciler-reflection.development.js +394 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/cjs/react-reconciler-reflection.production.js +382 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/cjs/react-reconciler.development.js +19736 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/cjs/react-reconciler.production.js +11594 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/cjs/react-reconciler.profiling.js +13427 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/constants.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/index.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/package.json +34 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/react-reconciler/reflection.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/LICENSE +21 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/cjs/scheduler-unstable_mock.development.js +414 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/cjs/scheduler-unstable_mock.production.js +406 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/cjs/scheduler-unstable_post_task.development.js +150 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/cjs/scheduler-unstable_post_task.production.js +140 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/cjs/scheduler.development.js +364 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/cjs/scheduler.native.development.js +350 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/cjs/scheduler.native.production.js +330 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/cjs/scheduler.production.js +340 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/index.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/index.native.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/package.json +27 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/unstable_mock.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/scheduler/unstable_post_task.js +7 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/slice-ansi/index.d.ts +19 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/slice-ansi/index.js +317 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/slice-ansi/package.json +59 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/slice-ansi/readme.md +55 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/slice-ansi/tokenize-ansi.js +752 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/string-width/index.js +203 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/string-width/package.json +65 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/string-width/readme.md +66 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/index.d.ts +227 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/package.json +75 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/readme.md +1085 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/absolute.d.ts +52 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/all-extend.d.ts +121 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/all-union-fields.d.ts +91 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/and-all.d.ts +76 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/and.d.ts +82 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/array-element.d.ts +46 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/array-indices.d.ts +25 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/array-length.d.ts +36 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/array-reverse.d.ts +85 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/array-slice.d.ts +132 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/array-splice.d.ts +104 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/array-tail.d.ts +70 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/array-values.d.ts +24 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/arrayable.d.ts +31 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/async-return-type.d.ts +28 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/asyncify.d.ts +25 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/basic.d.ts +38 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/camel-case.d.ts +125 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/camel-cased-properties-deep.d.ts +106 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/camel-cased-properties.d.ts +49 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/characters.d.ts +67 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/conditional-except.d.ts +47 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/conditional-keys.d.ts +63 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/conditional-pick-deep.d.ts +122 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/conditional-pick.d.ts +48 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/conditional-simplify-deep.d.ts +73 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/conditional-simplify.d.ts +50 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/delimiter-case.d.ts +79 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/delimiter-cased-properties-deep.d.ts +115 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/delimiter-cased-properties.d.ts +52 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/distributed-omit.d.ts +96 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/distributed-pick.d.ts +92 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/empty-object.d.ts +51 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/entries.d.ts +64 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/entry.d.ts +67 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/exact.d.ts +73 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/except.d.ts +112 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/exclude-exactly.d.ts +57 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/exclude-rest-element.d.ts +40 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/exclude-strict.d.ts +51 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/exclusify-union.d.ts +147 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/extends-strict.d.ts +151 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/extract-exactly.d.ts +56 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/extract-rest-element.d.ts +30 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/extract-strict.d.ts +51 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/find-global-type.d.ts +68 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/fixed-length-array.d.ts +97 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/get.d.ts +227 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/global-this.d.ts +24 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/globals/index.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/globals/observable-like.d.ts +78 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/greater-than-or-equal.d.ts +63 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/greater-than.d.ts +92 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/has-optional-keys.d.ts +23 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/has-readonly-keys.d.ts +23 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/has-required-keys.d.ts +61 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/has-writable-keys.d.ts +23 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/if-any.d.ts +28 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/if-empty-object.d.ts +30 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/if-never.d.ts +28 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/if-null.d.ts +28 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/if-unknown.d.ts +28 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/if.d.ts +102 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/includes.d.ts +24 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/int-closed-range.d.ts +45 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/int-range.d.ts +67 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/internal/array.d.ts +144 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/internal/characters.d.ts +65 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/internal/enforce-optional.d.ts +49 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/internal/index.d.ts +11 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/internal/keys.d.ts +100 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/internal/numeric.d.ts +143 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/internal/object.d.ts +301 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/internal/string.d.ts +127 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/internal/tuple.d.ts +79 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/internal/type.d.ts +171 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/invariant-of.d.ts +85 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-any.d.ts +31 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-equal.d.ts +41 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-float.d.ts +43 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-integer.d.ts +60 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-literal.d.ts +317 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-lowercase.d.ts +38 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-never.d.ts +56 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-null.d.ts +22 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-nullable.d.ts +30 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-optional-key-of.d.ts +51 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-optional.d.ts +28 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-readonly-key-of.d.ts +55 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-required-key-of.d.ts +51 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-tuple.d.ts +92 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-undefined.d.ts +22 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-union.d.ts +40 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-unknown.d.ts +43 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-uppercase.d.ts +38 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/is-writable-key-of.d.ts +51 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/iterable-element.d.ts +66 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/join.d.ts +79 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/json-value.d.ts +33 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/jsonifiable.d.ts +37 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/jsonify.d.ts +127 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/kebab-case.d.ts +47 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/kebab-cased-properties-deep.d.ts +72 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/kebab-cased-properties.d.ts +46 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/key-as-string.d.ts +27 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/keys-of-union.d.ts +44 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/last-array-element.d.ts +89 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/less-than-or-equal.d.ts +60 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/less-than.d.ts +60 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/literal-to-primitive-deep.d.ts +71 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/literal-to-primitive.d.ts +38 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/literal-union.d.ts +39 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/merge-deep.d.ts +495 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/merge-exclusive.d.ts +45 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/merge.d.ts +87 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/multidimensional-array.d.ts +38 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/multidimensional-readonly-array.d.ts +38 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/non-empty-object.d.ts +38 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/non-empty-string.d.ts +32 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/non-empty-tuple.d.ts +24 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/non-nullable-deep.d.ts +102 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/numeric.d.ts +226 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/object-merge.d.ts +199 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/omit-deep.d.ts +153 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/omit-index-signature.d.ts +98 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/opaque.d.ts +3 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/optional-keys-of.d.ts +46 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/optional.d.ts +31 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/or-all.d.ts +73 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/or.d.ts +82 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/override-properties.d.ts +43 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/package-json.d.ts +710 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/partial-deep.d.ts +157 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/partial-on-undefined-deep.d.ts +81 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/pascal-case.d.ts +52 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/pascal-cased-properties-deep.d.ts +79 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/pascal-cased-properties.d.ts +46 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/paths.d.ts +241 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/pick-deep.d.ts +139 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/pick-index-signature.d.ts +52 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/primitive.d.ts +15 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/promisable.d.ts +27 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/readonly-deep.d.ts +118 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/readonly-keys-of.d.ts +38 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/readonly-tuple.d.ts +34 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/remove-prefix.d.ts +114 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/remove-suffix.d.ts +114 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/replace.d.ts +87 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/require-all-or-none.d.ts +54 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/require-at-least-one.d.ts +48 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/require-exactly-one.d.ts +48 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/require-one-or-none.d.ts +49 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/required-deep.d.ts +78 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/required-keys-of.d.ts +38 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/schema.d.ts +127 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/screaming-snake-case.d.ts +31 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/set-field-type.d.ts +67 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/set-non-nullable-deep.d.ts +89 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/set-non-nullable.d.ts +34 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/set-optional.d.ts +42 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/set-parameter-type.d.ts +125 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/set-readonly.d.ts +40 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/set-required-deep.d.ts +65 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/set-required.d.ts +75 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/set-return-type.d.ts +31 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/shared-union-fields-deep.d.ts +180 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/shared-union-fields.d.ts +79 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/simplify-deep.d.ts +117 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/simplify.d.ts +61 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/single-key-object.d.ts +28 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/snake-case.d.ts +48 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/snake-cased-properties-deep.d.ts +72 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/snake-cased-properties.d.ts +46 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/some-extend.d.ts +115 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/split-on-rest-element.d.ts +108 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/split.d.ts +90 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/spread.d.ts +78 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/string-length.d.ts +38 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/string-repeat.d.ts +76 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/string-slice.d.ts +39 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/string-to-array.d.ts +97 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/string-to-number.d.ts +67 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/stringified.d.ts +25 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/structured-cloneable.d.ts +89 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/subtract.d.ts +87 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/sum.d.ts +82 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/tagged-union.d.ts +53 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/tagged.d.ts +261 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/trim.d.ts +29 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/tsconfig-json.d.ts +1356 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/tuple-of.d.ts +114 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/tuple-to-object.d.ts +47 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/tuple-to-union.d.ts +54 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/typed-array.d.ts +19 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/undefined-on-partial-deep.d.ts +83 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/union-length.d.ts +27 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/union-member.d.ts +65 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/union-to-intersection.d.ts +35 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/union-to-tuple.d.ts +49 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/unknown-array.d.ts +27 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/unknown-map.d.ts +26 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/unknown-record.d.ts +33 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/unknown-set.d.ts +26 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/unwrap-partial.d.ts +33 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/unwrap-required.d.ts +37 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/value-of.d.ts +24 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/words.d.ts +148 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/writable-deep.d.ts +84 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/writable-keys-of.d.ts +34 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/writable.d.ts +68 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/type-fest/source/xor.d.ts +83 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/widest-line/package.json +60 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/wrap-ansi/index.d.ts +41 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/wrap-ansi/index.js +468 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/wrap-ansi/package.json +69 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/wrap-ansi/readme.md +77 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/LICENSE +20 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/README.md +548 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/browser.js +8 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/index.js +22 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/buffer-util.js +131 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/constants.js +19 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/event-target.js +292 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/extension.js +203 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/limiter.js +55 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/permessage-deflate.js +528 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/receiver.js +760 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/sender.js +607 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/stream.js +161 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/subprotocol.js +62 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/validation.js +152 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/websocket-server.js +562 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/lib/websocket.js +1407 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/package.json +70 -0
- package/node_modules/@quantiya/codevibe-core/node_modules/ws/wrapper.mjs +21 -0
- package/node_modules/@quantiya/codevibe-core/package.json +6 -5
- package/node_modules/shell-quote/.github/FUNDING.yml +12 -0
- package/node_modules/shell-quote/.nycrc +14 -0
- package/node_modules/shell-quote/LICENSE +24 -0
- package/node_modules/shell-quote/README.md +168 -0
- package/node_modules/shell-quote/eslint.config.mjs +29 -0
- package/node_modules/shell-quote/index.d.ts +28 -0
- package/node_modules/shell-quote/index.js +4 -0
- package/node_modules/shell-quote/package.json +76 -0
- package/node_modules/shell-quote/parse.d.ts +46 -0
- package/node_modules/shell-quote/parse.js +261 -0
- package/node_modules/shell-quote/quote.d.ts +15 -0
- package/node_modules/shell-quote/quote.js +65 -0
- package/node_modules/shell-quote/security.md +11 -0
- package/node_modules/shell-quote/test/comment.js +16 -0
- package/node_modules/shell-quote/test/env.js +52 -0
- package/node_modules/shell-quote/test/env_fn.js +21 -0
- package/node_modules/shell-quote/test/op.js +102 -0
- package/node_modules/shell-quote/test/parse.js +67 -0
- package/node_modules/shell-quote/test/quote.js +128 -0
- package/node_modules/shell-quote/test/set.js +31 -0
- package/node_modules/shell-quote/tsconfig.json +10 -0
- package/node_modules/tagged-tag/index.d.ts +3 -0
- package/node_modules/tagged-tag/package.json +36 -0
- package/node_modules/tagged-tag/readme.md +5 -0
- package/node_modules/terminal-size/index.d.ts +17 -0
- package/node_modules/terminal-size/index.js +139 -0
- package/node_modules/terminal-size/package.json +49 -0
- package/node_modules/terminal-size/readme.md +32 -0
- package/package.json +14 -4
- package/node_modules/@alcalzone/ansi-tokenize/README.md +0 -248
- package/node_modules/@alcalzone/ansi-tokenize/build/ansiCodes.d.ts +0 -11
- package/node_modules/@alcalzone/ansi-tokenize/build/ansiCodes.js +0 -41
- package/node_modules/@alcalzone/ansi-tokenize/build/ansiCodes.js.map +0 -1
- package/node_modules/@alcalzone/ansi-tokenize/build/diff.js +0 -17
- package/node_modules/@alcalzone/ansi-tokenize/build/diff.js.map +0 -1
- package/node_modules/@alcalzone/ansi-tokenize/build/reduce.js +0 -27
- package/node_modules/@alcalzone/ansi-tokenize/build/reduce.js.map +0 -1
- package/node_modules/@alcalzone/ansi-tokenize/build/tokenize.d.ts +0 -12
- package/node_modules/@alcalzone/ansi-tokenize/build/tokenize.js +0 -70
- package/node_modules/@alcalzone/ansi-tokenize/build/tokenize.js.map +0 -1
- package/node_modules/@alcalzone/ansi-tokenize/node_modules/is-fullwidth-code-point/index.js +0 -40
- package/node_modules/@alcalzone/ansi-tokenize/node_modules/is-fullwidth-code-point/package.json +0 -45
- package/node_modules/@alcalzone/ansi-tokenize/node_modules/is-fullwidth-code-point/readme.md +0 -43
- package/node_modules/@alcalzone/ansi-tokenize/package.json +0 -63
- package/node_modules/cli-boxes/index.d.ts +0 -127
- package/node_modules/cli-boxes/index.js +0 -6
- package/node_modules/cli-boxes/package.json +0 -42
- package/node_modules/cli-boxes/readme.md +0 -115
- package/node_modules/cli-truncate/index.d.ts +0 -116
- package/node_modules/cli-truncate/index.js +0 -99
- package/node_modules/cli-truncate/node_modules/ansi-styles/index.d.ts +0 -236
- package/node_modules/cli-truncate/node_modules/ansi-styles/package.json +0 -54
- package/node_modules/cli-truncate/node_modules/ansi-styles/readme.md +0 -173
- package/node_modules/cli-truncate/node_modules/emoji-regex/LICENSE-MIT.txt +0 -20
- package/node_modules/cli-truncate/node_modules/emoji-regex/README.md +0 -107
- package/node_modules/cli-truncate/node_modules/emoji-regex/index.d.ts +0 -3
- package/node_modules/cli-truncate/node_modules/emoji-regex/index.js +0 -4
- package/node_modules/cli-truncate/node_modules/emoji-regex/index.mjs +0 -4
- package/node_modules/cli-truncate/node_modules/emoji-regex/package.json +0 -45
- package/node_modules/cli-truncate/node_modules/is-fullwidth-code-point/index.d.ts +0 -17
- package/node_modules/cli-truncate/node_modules/is-fullwidth-code-point/index.js +0 -40
- package/node_modules/cli-truncate/node_modules/is-fullwidth-code-point/package.json +0 -45
- package/node_modules/cli-truncate/node_modules/is-fullwidth-code-point/readme.md +0 -43
- package/node_modules/cli-truncate/node_modules/slice-ansi/index.js +0 -105
- package/node_modules/cli-truncate/node_modules/slice-ansi/package.json +0 -53
- package/node_modules/cli-truncate/node_modules/slice-ansi/readme.md +0 -66
- package/node_modules/cli-truncate/node_modules/string-width/index.js +0 -82
- package/node_modules/cli-truncate/node_modules/string-width/package.json +0 -64
- package/node_modules/cli-truncate/node_modules/string-width/readme.md +0 -66
- package/node_modules/cli-truncate/package.json +0 -51
- package/node_modules/cli-truncate/readme.md +0 -150
- package/node_modules/ink/build/apply-styles.js +0 -175
- package/node_modules/ink/build/build-layout.js +0 -77
- package/node_modules/ink/build/calculate-wrapped-text.js +0 -53
- package/node_modules/ink/build/components/App.d.ts +0 -59
- package/node_modules/ink/build/components/App.js +0 -286
- package/node_modules/ink/build/components/App.js.map +0 -1
- package/node_modules/ink/build/components/AppContext.d.ts +0 -11
- package/node_modules/ink/build/components/AppContext.js +0 -11
- package/node_modules/ink/build/components/AppContext.js.map +0 -1
- package/node_modules/ink/build/components/Box.d.ts +0 -62
- package/node_modules/ink/build/components/Box.js +0 -20
- package/node_modules/ink/build/components/Box.js.map +0 -1
- package/node_modules/ink/build/components/Color.js +0 -62
- package/node_modules/ink/build/components/ErrorOverview.js +0 -79
- package/node_modules/ink/build/components/ErrorOverview.js.map +0 -1
- package/node_modules/ink/build/components/Newline.d.ts +0 -13
- package/node_modules/ink/build/components/Newline.js +0 -8
- package/node_modules/ink/build/components/Newline.js.map +0 -1
- package/node_modules/ink/build/components/Spacer.d.ts +0 -6
- package/node_modules/ink/build/components/Spacer.js +0 -10
- package/node_modules/ink/build/components/Spacer.js.map +0 -1
- package/node_modules/ink/build/components/Static.d.ts +0 -31
- package/node_modules/ink/build/components/Static.js +0 -33
- package/node_modules/ink/build/components/Static.js.map +0 -1
- package/node_modules/ink/build/components/StderrContext.d.ts +0 -17
- package/node_modules/ink/build/components/StderrContext.js +0 -13
- package/node_modules/ink/build/components/StderrContext.js.map +0 -1
- package/node_modules/ink/build/components/StdinContext.d.ts +0 -23
- package/node_modules/ink/build/components/StdinContext.js +0 -19
- package/node_modules/ink/build/components/StdinContext.js.map +0 -1
- package/node_modules/ink/build/components/StdoutContext.d.ts +0 -17
- package/node_modules/ink/build/components/StdoutContext.js +0 -13
- package/node_modules/ink/build/components/StdoutContext.js.map +0 -1
- package/node_modules/ink/build/components/Text.d.ts +0 -49
- package/node_modules/ink/build/components/Text.js +0 -40
- package/node_modules/ink/build/components/Text.js.map +0 -1
- package/node_modules/ink/build/components/Transform.d.ts +0 -15
- package/node_modules/ink/build/components/Transform.js +0 -14
- package/node_modules/ink/build/components/Transform.js.map +0 -1
- package/node_modules/ink/build/devtools-window-polyfill.js +0 -64
- package/node_modules/ink/build/devtools-window-polyfill.js.map +0 -1
- package/node_modules/ink/build/devtools.js +0 -9
- package/node_modules/ink/build/devtools.js.map +0 -1
- package/node_modules/ink/build/dom.d.ts +0 -42
- package/node_modules/ink/build/dom.js +0 -117
- package/node_modules/ink/build/dom.js.map +0 -1
- package/node_modules/ink/build/experimental/apply-style.js +0 -140
- package/node_modules/ink/build/experimental/dom.js +0 -123
- package/node_modules/ink/build/experimental/output.js +0 -91
- package/node_modules/ink/build/experimental/reconciler.js +0 -141
- package/node_modules/ink/build/experimental/renderer.js +0 -81
- package/node_modules/ink/build/hooks/use-app.d.ts +0 -5
- package/node_modules/ink/build/hooks/use-app.js +0 -8
- package/node_modules/ink/build/hooks/use-app.js.map +0 -1
- package/node_modules/ink/build/hooks/use-focus-manager.d.ts +0 -34
- package/node_modules/ink/build/hooks/use-focus-manager.js +0 -18
- package/node_modules/ink/build/hooks/use-focus-manager.js.map +0 -1
- package/node_modules/ink/build/hooks/use-focus.d.ts +0 -34
- package/node_modules/ink/build/hooks/use-focus.js +0 -47
- package/node_modules/ink/build/hooks/use-focus.js.map +0 -1
- package/node_modules/ink/build/hooks/use-input.d.ts +0 -97
- package/node_modules/ink/build/hooks/use-input.js +0 -96
- package/node_modules/ink/build/hooks/use-input.js.map +0 -1
- package/node_modules/ink/build/hooks/use-stderr.d.ts +0 -5
- package/node_modules/ink/build/hooks/use-stderr.js +0 -8
- package/node_modules/ink/build/hooks/use-stderr.js.map +0 -1
- package/node_modules/ink/build/hooks/use-stdin.d.ts +0 -5
- package/node_modules/ink/build/hooks/use-stdin.js +0 -8
- package/node_modules/ink/build/hooks/use-stdin.js.map +0 -1
- package/node_modules/ink/build/hooks/use-stdout.d.ts +0 -5
- package/node_modules/ink/build/hooks/use-stdout.js +0 -8
- package/node_modules/ink/build/hooks/use-stdout.js.map +0 -1
- package/node_modules/ink/build/hooks/useInput.js +0 -38
- package/node_modules/ink/build/index.d.ts +0 -27
- package/node_modules/ink/build/index.js +0 -16
- package/node_modules/ink/build/index.js.map +0 -1
- package/node_modules/ink/build/ink.d.ts +0 -37
- package/node_modules/ink/build/ink.js +0 -235
- package/node_modules/ink/build/ink.js.map +0 -1
- package/node_modules/ink/build/instance.js +0 -205
- package/node_modules/ink/build/log-update.d.ts +0 -12
- package/node_modules/ink/build/log-update.js +0 -37
- package/node_modules/ink/build/log-update.js.map +0 -1
- package/node_modules/ink/build/measure-element.d.ts +0 -16
- package/node_modules/ink/build/measure-element.js +0 -9
- package/node_modules/ink/build/measure-element.js.map +0 -1
- package/node_modules/ink/build/measure-text.js +0 -20
- package/node_modules/ink/build/measure-text.js.map +0 -1
- package/node_modules/ink/build/output.d.ts +0 -35
- package/node_modules/ink/build/output.js +0 -148
- package/node_modules/ink/build/output.js.map +0 -1
- package/node_modules/ink/build/parse-keypress.d.ts +0 -14
- package/node_modules/ink/build/parse-keypress.js +0 -225
- package/node_modules/ink/build/parse-keypress.js.map +0 -1
- package/node_modules/ink/build/reconciler.d.ts +0 -4
- package/node_modules/ink/build/reconciler.js +0 -219
- package/node_modules/ink/build/reconciler.js.map +0 -1
- package/node_modules/ink/build/render-border.js +0 -73
- package/node_modules/ink/build/render-border.js.map +0 -1
- package/node_modules/ink/build/render-node-to-output.d.ts +0 -10
- package/node_modules/ink/build/render-node-to-output.js +0 -99
- package/node_modules/ink/build/render-node-to-output.js.map +0 -1
- package/node_modules/ink/build/render.d.ts +0 -63
- package/node_modules/ink/build/render.js +0 -48
- package/node_modules/ink/build/render.js.map +0 -1
- package/node_modules/ink/build/renderer.d.ts +0 -8
- package/node_modules/ink/build/renderer.js +0 -36
- package/node_modules/ink/build/renderer.js.map +0 -1
- package/node_modules/ink/build/squash-text-nodes.js +0 -35
- package/node_modules/ink/build/squash-text-nodes.js.map +0 -1
- package/node_modules/ink/build/styles.d.ts +0 -243
- package/node_modules/ink/build/styles.js +0 -232
- package/node_modules/ink/build/styles.js.map +0 -1
- package/node_modules/ink/build/wrap-text.js +0 -31
- package/node_modules/ink/build/wrap-text.js.map +0 -1
- package/node_modules/ink/license +0 -9
- package/node_modules/ink/node_modules/ansi-styles/index.d.ts +0 -236
- package/node_modules/ink/node_modules/ansi-styles/index.js +0 -223
- package/node_modules/ink/node_modules/ansi-styles/package.json +0 -54
- package/node_modules/ink/node_modules/ansi-styles/readme.md +0 -173
- package/node_modules/ink/node_modules/chalk/source/vendor/ansi-styles/index.js +0 -223
- package/node_modules/ink/node_modules/emoji-regex/LICENSE-MIT.txt +0 -20
- package/node_modules/ink/node_modules/emoji-regex/README.md +0 -107
- package/node_modules/ink/node_modules/emoji-regex/index.d.ts +0 -3
- package/node_modules/ink/node_modules/emoji-regex/index.js +0 -4
- package/node_modules/ink/node_modules/emoji-regex/index.mjs +0 -4
- package/node_modules/ink/node_modules/emoji-regex/package.json +0 -45
- package/node_modules/ink/node_modules/string-width/index.d.ts +0 -39
- package/node_modules/ink/node_modules/string-width/index.js +0 -82
- package/node_modules/ink/node_modules/string-width/package.json +0 -64
- package/node_modules/ink/node_modules/string-width/readme.md +0 -66
- package/node_modules/ink/node_modules/type-fest/index.d.ts +0 -178
- package/node_modules/ink/node_modules/type-fest/package.json +0 -91
- package/node_modules/ink/node_modules/type-fest/readme.md +0 -1060
- package/node_modules/ink/node_modules/type-fest/source/all-union-fields.d.ts +0 -88
- package/node_modules/ink/node_modules/type-fest/source/and.d.ts +0 -25
- package/node_modules/ink/node_modules/type-fest/source/array-indices.d.ts +0 -23
- package/node_modules/ink/node_modules/type-fest/source/array-slice.d.ts +0 -109
- package/node_modules/ink/node_modules/type-fest/source/array-splice.d.ts +0 -99
- package/node_modules/ink/node_modules/type-fest/source/array-tail.d.ts +0 -76
- package/node_modules/ink/node_modules/type-fest/source/array-values.d.ts +0 -22
- package/node_modules/ink/node_modules/type-fest/source/arrayable.d.ts +0 -29
- package/node_modules/ink/node_modules/type-fest/source/async-return-type.d.ts +0 -23
- package/node_modules/ink/node_modules/type-fest/source/asyncify.d.ts +0 -32
- package/node_modules/ink/node_modules/type-fest/source/basic.d.ts +0 -68
- package/node_modules/ink/node_modules/type-fest/source/camel-case.d.ts +0 -89
- package/node_modules/ink/node_modules/type-fest/source/camel-cased-properties-deep.d.ts +0 -97
- package/node_modules/ink/node_modules/type-fest/source/camel-cased-properties.d.ts +0 -43
- package/node_modules/ink/node_modules/type-fest/source/conditional-except.d.ts +0 -45
- package/node_modules/ink/node_modules/type-fest/source/conditional-keys.d.ts +0 -47
- package/node_modules/ink/node_modules/type-fest/source/conditional-pick-deep.d.ts +0 -118
- package/node_modules/ink/node_modules/type-fest/source/conditional-pick.d.ts +0 -44
- package/node_modules/ink/node_modules/type-fest/source/conditional-simplify.d.ts +0 -32
- package/node_modules/ink/node_modules/type-fest/source/delimiter-case.d.ts +0 -78
- package/node_modules/ink/node_modules/type-fest/source/delimiter-cased-properties-deep.d.ts +0 -106
- package/node_modules/ink/node_modules/type-fest/source/delimiter-cased-properties.d.ts +0 -46
- package/node_modules/ink/node_modules/type-fest/source/distributed-omit.d.ts +0 -89
- package/node_modules/ink/node_modules/type-fest/source/distributed-pick.d.ts +0 -85
- package/node_modules/ink/node_modules/type-fest/source/empty-object.d.ts +0 -46
- package/node_modules/ink/node_modules/type-fest/source/enforce-optional.d.ts +0 -47
- package/node_modules/ink/node_modules/type-fest/source/entries.d.ts +0 -62
- package/node_modules/ink/node_modules/type-fest/source/entry.d.ts +0 -65
- package/node_modules/ink/node_modules/type-fest/source/exact.d.ts +0 -68
- package/node_modules/ink/node_modules/type-fest/source/except.d.ts +0 -108
- package/node_modules/ink/node_modules/type-fest/source/find-global-type.d.ts +0 -64
- package/node_modules/ink/node_modules/type-fest/source/fixed-length-array.d.ts +0 -43
- package/node_modules/ink/node_modules/type-fest/source/get.d.ts +0 -219
- package/node_modules/ink/node_modules/type-fest/source/global-this.d.ts +0 -21
- package/node_modules/ink/node_modules/type-fest/source/greater-than-or-equal.d.ts +0 -22
- package/node_modules/ink/node_modules/type-fest/source/greater-than.d.ts +0 -56
- package/node_modules/ink/node_modules/type-fest/source/has-optional-keys.d.ts +0 -21
- package/node_modules/ink/node_modules/type-fest/source/has-readonly-keys.d.ts +0 -21
- package/node_modules/ink/node_modules/type-fest/source/has-required-keys.d.ts +0 -59
- package/node_modules/ink/node_modules/type-fest/source/has-writable-keys.d.ts +0 -21
- package/node_modules/ink/node_modules/type-fest/source/if-any.d.ts +0 -24
- package/node_modules/ink/node_modules/type-fest/source/if-empty-object.d.ts +0 -26
- package/node_modules/ink/node_modules/type-fest/source/if-never.d.ts +0 -24
- package/node_modules/ink/node_modules/type-fest/source/if-null.d.ts +0 -24
- package/node_modules/ink/node_modules/type-fest/source/if-unknown.d.ts +0 -24
- package/node_modules/ink/node_modules/type-fest/source/includes.d.ts +0 -22
- package/node_modules/ink/node_modules/type-fest/source/int-closed-range.d.ts +0 -35
- package/node_modules/ink/node_modules/type-fest/source/int-range.d.ts +0 -55
- package/node_modules/ink/node_modules/type-fest/source/internal/array.d.ts +0 -126
- package/node_modules/ink/node_modules/type-fest/source/internal/characters.d.ts +0 -67
- package/node_modules/ink/node_modules/type-fest/source/internal/index.d.ts +0 -8
- package/node_modules/ink/node_modules/type-fest/source/internal/keys.d.ts +0 -97
- package/node_modules/ink/node_modules/type-fest/source/internal/numeric.d.ts +0 -118
- package/node_modules/ink/node_modules/type-fest/source/internal/object.d.ts +0 -236
- package/node_modules/ink/node_modules/type-fest/source/internal/string.d.ts +0 -210
- package/node_modules/ink/node_modules/type-fest/source/internal/tuple.d.ts +0 -90
- package/node_modules/ink/node_modules/type-fest/source/internal/type.d.ts +0 -139
- package/node_modules/ink/node_modules/type-fest/source/invariant-of.d.ts +0 -76
- package/node_modules/ink/node_modules/type-fest/source/is-any.d.ts +0 -33
- package/node_modules/ink/node_modules/type-fest/source/is-equal.d.ts +0 -31
- package/node_modules/ink/node_modules/type-fest/source/is-float.d.ts +0 -41
- package/node_modules/ink/node_modules/type-fest/source/is-integer.d.ts +0 -58
- package/node_modules/ink/node_modules/type-fest/source/is-literal.d.ts +0 -296
- package/node_modules/ink/node_modules/type-fest/source/is-never.d.ts +0 -42
- package/node_modules/ink/node_modules/type-fest/source/is-null.d.ts +0 -20
- package/node_modules/ink/node_modules/type-fest/source/is-tuple.d.ts +0 -89
- package/node_modules/ink/node_modules/type-fest/source/is-unknown.d.ts +0 -52
- package/node_modules/ink/node_modules/type-fest/source/iterable-element.d.ts +0 -64
- package/node_modules/ink/node_modules/type-fest/source/join.d.ts +0 -68
- package/node_modules/ink/node_modules/type-fest/source/jsonifiable.d.ts +0 -37
- package/node_modules/ink/node_modules/type-fest/source/jsonify.d.ts +0 -122
- package/node_modules/ink/node_modules/type-fest/source/kebab-case.d.ts +0 -44
- package/node_modules/ink/node_modules/type-fest/source/kebab-cased-properties-deep.d.ts +0 -63
- package/node_modules/ink/node_modules/type-fest/source/kebab-cased-properties.d.ts +0 -40
- package/node_modules/ink/node_modules/type-fest/source/keys-of-union.d.ts +0 -42
- package/node_modules/ink/node_modules/type-fest/source/last-array-element.d.ts +0 -38
- package/node_modules/ink/node_modules/type-fest/source/less-than-or-equal.d.ts +0 -22
- package/node_modules/ink/node_modules/type-fest/source/less-than.d.ts +0 -26
- package/node_modules/ink/node_modules/type-fest/source/literal-to-primitive-deep.d.ts +0 -36
- package/node_modules/ink/node_modules/type-fest/source/literal-to-primitive.d.ts +0 -36
- package/node_modules/ink/node_modules/type-fest/source/literal-union.d.ts +0 -37
- package/node_modules/ink/node_modules/type-fest/source/merge-deep.d.ts +0 -486
- package/node_modules/ink/node_modules/type-fest/source/merge-exclusive.d.ts +0 -41
- package/node_modules/ink/node_modules/type-fest/source/merge.d.ts +0 -48
- package/node_modules/ink/node_modules/type-fest/source/multidimensional-array.d.ts +0 -44
- package/node_modules/ink/node_modules/type-fest/source/multidimensional-readonly-array.d.ts +0 -48
- package/node_modules/ink/node_modules/type-fest/source/non-empty-object.d.ts +0 -35
- package/node_modules/ink/node_modules/type-fest/source/non-empty-string.d.ts +0 -28
- package/node_modules/ink/node_modules/type-fest/source/non-empty-tuple.d.ts +0 -21
- package/node_modules/ink/node_modules/type-fest/source/numeric.d.ts +0 -222
- package/node_modules/ink/node_modules/type-fest/source/observable-like.d.ts +0 -63
- package/node_modules/ink/node_modules/type-fest/source/omit-deep.d.ts +0 -167
- package/node_modules/ink/node_modules/type-fest/source/omit-index-signature.d.ts +0 -95
- package/node_modules/ink/node_modules/type-fest/source/opaque.d.ts +0 -1
- package/node_modules/ink/node_modules/type-fest/source/optional-keys-of.d.ts +0 -39
- package/node_modules/ink/node_modules/type-fest/source/or.d.ts +0 -25
- package/node_modules/ink/node_modules/type-fest/source/override-properties.d.ts +0 -36
- package/node_modules/ink/node_modules/type-fest/source/package-json.d.ts +0 -676
- package/node_modules/ink/node_modules/type-fest/source/partial-deep.d.ts +0 -151
- package/node_modules/ink/node_modules/type-fest/source/partial-on-undefined-deep.d.ts +0 -78
- package/node_modules/ink/node_modules/type-fest/source/pascal-case.d.ts +0 -42
- package/node_modules/ink/node_modules/type-fest/source/pascal-cased-properties-deep.d.ts +0 -62
- package/node_modules/ink/node_modules/type-fest/source/pascal-cased-properties.d.ts +0 -36
- package/node_modules/ink/node_modules/type-fest/source/paths.d.ts +0 -262
- package/node_modules/ink/node_modules/type-fest/source/pick-deep.d.ts +0 -149
- package/node_modules/ink/node_modules/type-fest/source/pick-index-signature.d.ts +0 -50
- package/node_modules/ink/node_modules/type-fest/source/primitive.d.ts +0 -13
- package/node_modules/ink/node_modules/type-fest/source/promisable.d.ts +0 -25
- package/node_modules/ink/node_modules/type-fest/source/readonly-deep.d.ts +0 -81
- package/node_modules/ink/node_modules/type-fest/source/readonly-keys-of.d.ts +0 -30
- package/node_modules/ink/node_modules/type-fest/source/readonly-tuple.d.ts +0 -41
- package/node_modules/ink/node_modules/type-fest/source/replace.d.ts +0 -85
- package/node_modules/ink/node_modules/type-fest/source/require-all-or-none.d.ts +0 -51
- package/node_modules/ink/node_modules/type-fest/source/require-at-least-one.d.ts +0 -47
- package/node_modules/ink/node_modules/type-fest/source/require-exactly-one.d.ts +0 -45
- package/node_modules/ink/node_modules/type-fest/source/require-one-or-none.d.ts +0 -46
- package/node_modules/ink/node_modules/type-fest/source/required-deep.d.ts +0 -78
- package/node_modules/ink/node_modules/type-fest/source/required-keys-of.d.ts +0 -30
- package/node_modules/ink/node_modules/type-fest/source/schema.d.ts +0 -114
- package/node_modules/ink/node_modules/type-fest/source/screaming-snake-case.d.ts +0 -28
- package/node_modules/ink/node_modules/type-fest/source/set-field-type.d.ts +0 -65
- package/node_modules/ink/node_modules/type-fest/source/set-non-nullable-deep.d.ts +0 -83
- package/node_modules/ink/node_modules/type-fest/source/set-non-nullable.d.ts +0 -39
- package/node_modules/ink/node_modules/type-fest/source/set-optional.d.ts +0 -38
- package/node_modules/ink/node_modules/type-fest/source/set-parameter-type.d.ts +0 -117
- package/node_modules/ink/node_modules/type-fest/source/set-readonly.d.ts +0 -39
- package/node_modules/ink/node_modules/type-fest/source/set-required-deep.d.ts +0 -68
- package/node_modules/ink/node_modules/type-fest/source/set-required.d.ts +0 -70
- package/node_modules/ink/node_modules/type-fest/source/set-return-type.d.ts +0 -29
- package/node_modules/ink/node_modules/type-fest/source/shared-union-fields-deep.d.ts +0 -178
- package/node_modules/ink/node_modules/type-fest/source/shared-union-fields.d.ts +0 -76
- package/node_modules/ink/node_modules/type-fest/source/simplify-deep.d.ts +0 -115
- package/node_modules/ink/node_modules/type-fest/source/simplify.d.ts +0 -58
- package/node_modules/ink/node_modules/type-fest/source/single-key-object.d.ts +0 -29
- package/node_modules/ink/node_modules/type-fest/source/snake-case.d.ts +0 -45
- package/node_modules/ink/node_modules/type-fest/source/snake-cased-properties-deep.d.ts +0 -63
- package/node_modules/ink/node_modules/type-fest/source/snake-cased-properties.d.ts +0 -40
- package/node_modules/ink/node_modules/type-fest/source/split.d.ts +0 -88
- package/node_modules/ink/node_modules/type-fest/source/spread.d.ts +0 -84
- package/node_modules/ink/node_modules/type-fest/source/string-key-of.d.ts +0 -25
- package/node_modules/ink/node_modules/type-fest/source/string-repeat.d.ts +0 -47
- package/node_modules/ink/node_modules/type-fest/source/string-slice.d.ts +0 -37
- package/node_modules/ink/node_modules/type-fest/source/stringified.d.ts +0 -23
- package/node_modules/ink/node_modules/type-fest/source/structured-cloneable.d.ts +0 -92
- package/node_modules/ink/node_modules/type-fest/source/subtract.d.ts +0 -83
- package/node_modules/ink/node_modules/type-fest/source/sum.d.ts +0 -78
- package/node_modules/ink/node_modules/type-fest/source/tagged-union.d.ts +0 -51
- package/node_modules/ink/node_modules/type-fest/source/tagged.d.ts +0 -256
- package/node_modules/ink/node_modules/type-fest/source/trim.d.ts +0 -27
- package/node_modules/ink/node_modules/type-fest/source/tsconfig-json.d.ts +0 -1294
- package/node_modules/ink/node_modules/type-fest/source/tuple-to-object.d.ts +0 -42
- package/node_modules/ink/node_modules/type-fest/source/tuple-to-union.d.ts +0 -51
- package/node_modules/ink/node_modules/type-fest/source/typed-array.d.ts +0 -17
- package/node_modules/ink/node_modules/type-fest/source/undefined-on-partial-deep.d.ts +0 -80
- package/node_modules/ink/node_modules/type-fest/source/union-to-intersection.d.ts +0 -61
- package/node_modules/ink/node_modules/type-fest/source/union-to-tuple.d.ts +0 -56
- package/node_modules/ink/node_modules/type-fest/source/unknown-array.d.ts +0 -25
- package/node_modules/ink/node_modules/type-fest/source/unknown-map.d.ts +0 -24
- package/node_modules/ink/node_modules/type-fest/source/unknown-record.d.ts +0 -31
- package/node_modules/ink/node_modules/type-fest/source/unknown-set.d.ts +0 -24
- package/node_modules/ink/node_modules/type-fest/source/value-of.d.ts +0 -42
- package/node_modules/ink/node_modules/type-fest/source/words.d.ts +0 -118
- package/node_modules/ink/node_modules/type-fest/source/writable-deep.d.ts +0 -83
- package/node_modules/ink/node_modules/type-fest/source/writable-keys-of.d.ts +0 -33
- package/node_modules/ink/node_modules/type-fest/source/writable.d.ts +0 -68
- package/node_modules/ink/node_modules/wrap-ansi/index.d.ts +0 -41
- package/node_modules/ink/node_modules/wrap-ansi/index.js +0 -222
- package/node_modules/ink/node_modules/wrap-ansi/package.json +0 -69
- package/node_modules/ink/node_modules/wrap-ansi/readme.md +0 -75
- package/node_modules/ink/package.json +0 -196
- package/node_modules/ink/readme.md +0 -2162
- package/node_modules/is-in-ci/index.js +0 -11
- package/node_modules/is-in-ci/license +0 -9
- package/node_modules/is-in-ci/package.json +0 -49
- package/node_modules/is-in-ci/readme.md +0 -44
- package/node_modules/js-tokens/CHANGELOG.md +0 -151
- package/node_modules/js-tokens/LICENSE +0 -21
- package/node_modules/js-tokens/README.md +0 -240
- package/node_modules/js-tokens/index.js +0 -23
- package/node_modules/js-tokens/package.json +0 -30
- package/node_modules/loose-envify/LICENSE +0 -21
- package/node_modules/loose-envify/README.md +0 -45
- package/node_modules/loose-envify/cli.js +0 -16
- package/node_modules/loose-envify/custom.js +0 -4
- package/node_modules/loose-envify/index.js +0 -3
- package/node_modules/loose-envify/loose-envify.js +0 -36
- package/node_modules/loose-envify/package.json +0 -36
- package/node_modules/loose-envify/replace.js +0 -65
- package/node_modules/react/LICENSE +0 -21
- package/node_modules/react/README.md +0 -37
- package/node_modules/react/cjs/react-jsx-dev-runtime.development.js +0 -1315
- package/node_modules/react/cjs/react-jsx-dev-runtime.production.min.js +0 -10
- package/node_modules/react/cjs/react-jsx-dev-runtime.profiling.min.js +0 -10
- package/node_modules/react/cjs/react-jsx-runtime.development.js +0 -1333
- package/node_modules/react/cjs/react-jsx-runtime.production.min.js +0 -11
- package/node_modules/react/cjs/react-jsx-runtime.profiling.min.js +0 -11
- package/node_modules/react/cjs/react.development.js +0 -2740
- package/node_modules/react/cjs/react.production.min.js +0 -26
- package/node_modules/react/cjs/react.shared-subset.development.js +0 -20
- package/node_modules/react/cjs/react.shared-subset.production.min.js +0 -10
- package/node_modules/react/index.js +0 -7
- package/node_modules/react/jsx-dev-runtime.js +0 -7
- package/node_modules/react/jsx-runtime.js +0 -7
- package/node_modules/react/package.json +0 -47
- package/node_modules/react/react.shared-subset.js +0 -7
- package/node_modules/react/umd/react.development.js +0 -3343
- package/node_modules/react/umd/react.production.min.js +0 -31
- package/node_modules/react/umd/react.profiling.min.js +0 -31
- package/node_modules/react-reconciler/LICENSE +0 -21
- package/node_modules/react-reconciler/README.md +0 -337
- package/node_modules/react-reconciler/cjs/react-reconciler-constants.development.js +0 -45
- package/node_modules/react-reconciler/cjs/react-reconciler-constants.production.min.js +0 -10
- package/node_modules/react-reconciler/cjs/react-reconciler-reflection.development.js +0 -660
- package/node_modules/react-reconciler/cjs/react-reconciler-reflection.production.min.js +0 -15
- package/node_modules/react-reconciler/cjs/react-reconciler.development.js +0 -21531
- package/node_modules/react-reconciler/cjs/react-reconciler.production.min.js +0 -234
- package/node_modules/react-reconciler/cjs/react-reconciler.profiling.min.js +0 -255
- package/node_modules/react-reconciler/constants.js +0 -7
- package/node_modules/react-reconciler/index.js +0 -7
- package/node_modules/react-reconciler/package.json +0 -40
- package/node_modules/react-reconciler/reflection.js +0 -7
- package/node_modules/scheduler/LICENSE +0 -21
- package/node_modules/scheduler/cjs/scheduler-unstable_mock.development.js +0 -700
- package/node_modules/scheduler/cjs/scheduler-unstable_mock.production.min.js +0 -20
- package/node_modules/scheduler/cjs/scheduler-unstable_post_task.development.js +0 -207
- package/node_modules/scheduler/cjs/scheduler-unstable_post_task.production.min.js +0 -14
- package/node_modules/scheduler/cjs/scheduler.development.js +0 -634
- package/node_modules/scheduler/cjs/scheduler.production.min.js +0 -19
- package/node_modules/scheduler/index.js +0 -7
- package/node_modules/scheduler/package.json +0 -36
- package/node_modules/scheduler/umd/scheduler-unstable_mock.development.js +0 -699
- package/node_modules/scheduler/umd/scheduler-unstable_mock.production.min.js +0 -19
- package/node_modules/scheduler/umd/scheduler.development.js +0 -152
- package/node_modules/scheduler/umd/scheduler.production.min.js +0 -146
- package/node_modules/scheduler/umd/scheduler.profiling.min.js +0 -146
- package/node_modules/scheduler/unstable_mock.js +0 -7
- package/node_modules/scheduler/unstable_post_task.js +0 -7
- package/node_modules/slice-ansi/index.d.ts +0 -19
- package/node_modules/slice-ansi/index.js +0 -169
- package/node_modules/slice-ansi/license +0 -10
- package/node_modules/slice-ansi/node_modules/ansi-styles/index.d.ts +0 -236
- package/node_modules/slice-ansi/node_modules/ansi-styles/index.js +0 -223
- package/node_modules/slice-ansi/node_modules/ansi-styles/license +0 -9
- package/node_modules/slice-ansi/node_modules/ansi-styles/package.json +0 -54
- package/node_modules/slice-ansi/node_modules/ansi-styles/readme.md +0 -173
- package/node_modules/slice-ansi/node_modules/is-fullwidth-code-point/index.d.ts +0 -17
- package/node_modules/slice-ansi/node_modules/is-fullwidth-code-point/license +0 -9
- package/node_modules/slice-ansi/package.json +0 -58
- package/node_modules/slice-ansi/readme.md +0 -54
- package/node_modules/widest-line/license +0 -9
- package/node_modules/widest-line/node_modules/emoji-regex/LICENSE-MIT.txt +0 -20
- package/node_modules/widest-line/node_modules/emoji-regex/README.md +0 -107
- package/node_modules/widest-line/node_modules/emoji-regex/index.d.ts +0 -3
- package/node_modules/widest-line/node_modules/emoji-regex/index.js +0 -4
- package/node_modules/widest-line/node_modules/emoji-regex/index.mjs +0 -4
- package/node_modules/widest-line/node_modules/emoji-regex/package.json +0 -45
- package/node_modules/widest-line/node_modules/string-width/index.d.ts +0 -39
- package/node_modules/widest-line/node_modules/string-width/index.js +0 -82
- package/node_modules/widest-line/node_modules/string-width/license +0 -9
- package/node_modules/widest-line/node_modules/string-width/package.json +0 -64
- package/node_modules/widest-line/node_modules/string-width/readme.md +0 -66
- package/node_modules/widest-line/package.json +0 -60
- /package/node_modules/{ink/build/devtools-window-polyfill.d.ts → @quantiya/codevibe-core/dist/orchestration-shell/__tests__/companion-turn-mirror.test.d.ts} +0 -0
- /package/node_modules/{@alcalzone → @quantiya/codevibe-core/node_modules/@alcalzone}/ansi-tokenize/build/diff.d.ts +0 -0
- /package/node_modules/{@alcalzone → @quantiya/codevibe-core/node_modules/@alcalzone}/ansi-tokenize/build/index.d.ts +0 -0
- /package/node_modules/{@alcalzone → @quantiya/codevibe-core/node_modules/@alcalzone}/ansi-tokenize/build/index.js +0 -0
- /package/node_modules/{@alcalzone → @quantiya/codevibe-core/node_modules/@alcalzone}/ansi-tokenize/build/index.js.map +0 -0
- /package/node_modules/{@alcalzone → @quantiya/codevibe-core/node_modules/@alcalzone}/ansi-tokenize/build/reduce.d.ts +0 -0
- /package/node_modules/{@alcalzone → @quantiya/codevibe-core/node_modules/@alcalzone}/ansi-tokenize/build/styledChars.d.ts +0 -0
- /package/node_modules/{@alcalzone → @quantiya/codevibe-core/node_modules/@alcalzone}/ansi-tokenize/build/styledChars.js +0 -0
- /package/node_modules/{@alcalzone → @quantiya/codevibe-core/node_modules/@alcalzone}/ansi-tokenize/build/styledChars.js.map +0 -0
- /package/node_modules/{@alcalzone → @quantiya/codevibe-core/node_modules/@alcalzone}/ansi-tokenize/build/undo.d.ts +0 -0
- /package/node_modules/{@alcalzone → @quantiya/codevibe-core/node_modules/@alcalzone}/ansi-tokenize/build/undo.js +0 -0
- /package/node_modules/{@alcalzone → @quantiya/codevibe-core/node_modules/@alcalzone}/ansi-tokenize/build/undo.js.map +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/ansi-escapes/base.d.ts +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/ansi-escapes/base.js +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/ansi-escapes/index.d.ts +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/ansi-escapes/index.js +0 -0
- /package/node_modules/{@alcalzone/ansi-tokenize/node_modules/ansi-styles → @quantiya/codevibe-core/node_modules/ansi-escapes}/license +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/ansi-escapes/package.json +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/ansi-escapes/readme.md +0 -0
- /package/node_modules/{@alcalzone/ansi-tokenize → @quantiya/codevibe-core}/node_modules/ansi-styles/index.d.ts +0 -0
- /package/node_modules/{@alcalzone/ansi-tokenize → @quantiya/codevibe-core}/node_modules/ansi-styles/index.js +0 -0
- /package/node_modules/{@alcalzone/ansi-tokenize/node_modules/is-fullwidth-code-point → @quantiya/codevibe-core/node_modules/ansi-styles}/license +0 -0
- /package/node_modules/{@alcalzone/ansi-tokenize → @quantiya/codevibe-core}/node_modules/ansi-styles/package.json +0 -0
- /package/node_modules/{@alcalzone/ansi-tokenize → @quantiya/codevibe-core}/node_modules/ansi-styles/readme.md +0 -0
- /package/node_modules/{cli-boxes → @quantiya/codevibe-core/node_modules/chalk}/license +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/chalk/package.json +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/chalk/readme.md +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/chalk/source/index.d.ts +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/chalk/source/index.js +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/chalk/source/utilities.js +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/chalk/source/vendor/ansi-styles/index.d.ts +0 -0
- /package/node_modules/{cli-truncate/node_modules → @quantiya/codevibe-core/node_modules/chalk/source/vendor}/ansi-styles/index.js +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/chalk/source/vendor/supports-color/browser.d.ts +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/chalk/source/vendor/supports-color/browser.js +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/chalk/source/vendor/supports-color/index.d.ts +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/chalk/source/vendor/supports-color/index.js +0 -0
- /package/node_modules/{cli-boxes → @quantiya/codevibe-core/node_modules/cli-boxes}/boxes.json +0 -0
- /package/node_modules/{cli-truncate → @quantiya/codevibe-core/node_modules/cli-boxes}/license +0 -0
- /package/node_modules/{cli-truncate/node_modules/ansi-styles → @quantiya/codevibe-core/node_modules/cli-truncate}/license +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/colorize.d.ts +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/colorize.js +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/colorize.js.map +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/components/ErrorOverview.d.ts +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/components/FocusContext.d.ts +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/components/FocusContext.js +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/components/FocusContext.js.map +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/devtools.d.ts +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/get-max-width.d.ts +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/get-max-width.js +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/get-max-width.js.map +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/instances.d.ts +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/instances.js +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/instances.js.map +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/measure-text.d.ts +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/render-border.d.ts +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/squash-text-nodes.d.ts +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core/node_modules/ink}/build/wrap-text.d.ts +0 -0
- /package/node_modules/{@alcalzone/ansi-tokenize → @quantiya/codevibe-core}/node_modules/is-fullwidth-code-point/index.d.ts +0 -0
- /package/node_modules/{slice-ansi → @quantiya/codevibe-core}/node_modules/is-fullwidth-code-point/index.js +0 -0
- /package/node_modules/{cli-truncate → @quantiya/codevibe-core}/node_modules/is-fullwidth-code-point/license +0 -0
- /package/node_modules/{slice-ansi → @quantiya/codevibe-core}/node_modules/is-fullwidth-code-point/package.json +0 -0
- /package/node_modules/{slice-ansi → @quantiya/codevibe-core}/node_modules/is-fullwidth-code-point/readme.md +0 -0
- /package/node_modules/{is-in-ci → @quantiya/codevibe-core/node_modules/is-in-ci}/cli.js +0 -0
- /package/node_modules/{is-in-ci → @quantiya/codevibe-core/node_modules/is-in-ci}/index.d.ts +0 -0
- /package/node_modules/{cli-truncate/node_modules/string-width → @quantiya/codevibe-core/node_modules/is-in-ci}/license +0 -0
- /package/node_modules/{scheduler → @quantiya/codevibe-core/node_modules/scheduler}/README.md +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/signal-exit/LICENSE.txt +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/signal-exit/README.md +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/signal-exit/index.js +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/signal-exit/package.json +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/signal-exit/signals.js +0 -0
- /package/node_modules/{cli-truncate → @quantiya/codevibe-core}/node_modules/slice-ansi/license +0 -0
- /package/node_modules/{cli-truncate → @quantiya/codevibe-core}/node_modules/string-width/index.d.ts +0 -0
- /package/node_modules/{ink/node_modules/ansi-escapes → @quantiya/codevibe-core/node_modules/string-width}/license +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/type-fest/license-cc0 +0 -0
- /package/node_modules/{ink → @quantiya/codevibe-core}/node_modules/type-fest/license-mit +0 -0
- /package/node_modules/{widest-line → @quantiya/codevibe-core/node_modules/widest-line}/index.d.ts +0 -0
- /package/node_modules/{widest-line → @quantiya/codevibe-core/node_modules/widest-line}/index.js +0 -0
- /package/node_modules/{ink/node_modules/ansi-styles → @quantiya/codevibe-core/node_modules/widest-line}/license +0 -0
- /package/node_modules/{widest-line → @quantiya/codevibe-core/node_modules/widest-line}/readme.md +0 -0
- /package/node_modules/{ink/node_modules/chalk → @quantiya/codevibe-core/node_modules/wrap-ansi}/license +0 -0
- /package/node_modules/{ink/node_modules/string-width → tagged-tag}/license +0 -0
- /package/node_modules/{ink/node_modules/wrap-ansi → terminal-size}/license +0 -0
|
@@ -0,0 +1,554 @@
|
|
|
1
|
+
import { EventEmitter } from 'node:events';
|
|
2
|
+
import process from 'node:process';
|
|
3
|
+
import React, { useState, useRef, useCallback, useMemo, useEffect, useInsertionEffect, } from 'react';
|
|
4
|
+
import cliCursor from 'cli-cursor';
|
|
5
|
+
import { createInputParser } from '../input-parser.js';
|
|
6
|
+
import AppContext from './AppContext.js';
|
|
7
|
+
import StdinContext from './StdinContext.js';
|
|
8
|
+
import StdoutContext from './StdoutContext.js';
|
|
9
|
+
import StderrContext from './StderrContext.js';
|
|
10
|
+
import FocusContext from './FocusContext.js';
|
|
11
|
+
import AnimationContext from './AnimationContext.js';
|
|
12
|
+
import CursorContext from './CursorContext.js';
|
|
13
|
+
import ErrorBoundary from './ErrorBoundary.js';
|
|
14
|
+
const tab = '\t';
|
|
15
|
+
const shiftTab = '\u001B[Z';
|
|
16
|
+
const escape = '\u001B';
|
|
17
|
+
// Root component for all Ink apps
|
|
18
|
+
// It renders stdin and stdout contexts, so that children can access them if needed
|
|
19
|
+
// It also handles Ctrl+C exiting and cursor visibility
|
|
20
|
+
function App({ children, stdin, stdout, stderr, writeToStdout, writeToStderr, exitOnCtrlC, onExit, onWaitUntilRenderFlush, onSuspendTerminal, onRegisterInputControl, setCursorPosition, interactive, renderThrottleMs, }) {
|
|
21
|
+
const [isFocusEnabled, setIsFocusEnabled] = useState(true);
|
|
22
|
+
const [activeFocusId, setActiveFocusId] = useState(undefined);
|
|
23
|
+
// Focusables array is managed internally via setFocusables callback pattern
|
|
24
|
+
// eslint-disable-next-line react/hook-use-state
|
|
25
|
+
const [, setFocusables] = useState([]);
|
|
26
|
+
// Track focusables count for tab navigation check (avoids stale closure)
|
|
27
|
+
const focusablesCountRef = useRef(0);
|
|
28
|
+
const animationSubscribersRef = useRef(new Map());
|
|
29
|
+
const animationTimerRef = useRef(undefined);
|
|
30
|
+
// Count how many components enabled raw mode to avoid disabling
|
|
31
|
+
// raw mode until all components don't need it anymore
|
|
32
|
+
const rawModeEnabledCount = useRef(0);
|
|
33
|
+
const pendingDisableRawModeRef = useRef(false);
|
|
34
|
+
// Count how many components enabled bracketed paste mode
|
|
35
|
+
const bracketedPasteModeEnabledCount = useRef(0);
|
|
36
|
+
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
37
|
+
const internal_eventEmitter = useRef(new EventEmitter());
|
|
38
|
+
// Each useInput hook adds a listener, so the count can legitimately exceed the default limit of 10.
|
|
39
|
+
internal_eventEmitter.current.setMaxListeners(Infinity);
|
|
40
|
+
// Store the currently attached readable listener to avoid stale closure issues
|
|
41
|
+
const readableListenerRef = useRef(undefined);
|
|
42
|
+
const inputParserRef = useRef(createInputParser());
|
|
43
|
+
const pendingInputFlushRef = useRef(undefined);
|
|
44
|
+
// Small delay to let chunked escape sequences complete before flushing as literal input.
|
|
45
|
+
const pendingInputFlushDelayMilliseconds = 20;
|
|
46
|
+
const clearPendingInputFlush = useCallback(() => {
|
|
47
|
+
if (!pendingInputFlushRef.current) {
|
|
48
|
+
return;
|
|
49
|
+
}
|
|
50
|
+
clearTimeout(pendingInputFlushRef.current);
|
|
51
|
+
pendingInputFlushRef.current = undefined;
|
|
52
|
+
}, []);
|
|
53
|
+
const clearAnimationTimer = useCallback(() => {
|
|
54
|
+
if (!animationTimerRef.current) {
|
|
55
|
+
return;
|
|
56
|
+
}
|
|
57
|
+
clearTimeout(animationTimerRef.current);
|
|
58
|
+
animationTimerRef.current = undefined;
|
|
59
|
+
}, []);
|
|
60
|
+
const scheduleAnimationTick = useCallback(() => {
|
|
61
|
+
clearAnimationTimer();
|
|
62
|
+
if (animationSubscribersRef.current.size === 0) {
|
|
63
|
+
return;
|
|
64
|
+
}
|
|
65
|
+
let nextDueTime = Number.POSITIVE_INFINITY;
|
|
66
|
+
for (const subscriber of animationSubscribersRef.current.values()) {
|
|
67
|
+
// One shared timer is enough as long as it wakes at the earliest
|
|
68
|
+
// subscriber deadline and lets slower animations skip that tick.
|
|
69
|
+
nextDueTime = Math.min(nextDueTime, subscriber.nextDueTime);
|
|
70
|
+
}
|
|
71
|
+
const delay = Math.max(0, nextDueTime - performance.now());
|
|
72
|
+
animationTimerRef.current = setTimeout(() => {
|
|
73
|
+
animationTimerRef.current = undefined;
|
|
74
|
+
const currentTime = performance.now();
|
|
75
|
+
for (const subscriber of animationSubscribersRef.current.values()) {
|
|
76
|
+
if (currentTime < subscriber.nextDueTime) {
|
|
77
|
+
continue;
|
|
78
|
+
}
|
|
79
|
+
subscriber.callback(currentTime);
|
|
80
|
+
const elapsedTime = currentTime - subscriber.startTime;
|
|
81
|
+
const elapsedFrames = Math.floor(elapsedTime / subscriber.interval) + 1;
|
|
82
|
+
// Advance from elapsed time rather than callback count so delayed
|
|
83
|
+
// ticks catch up instead of stretching the animation timeline.
|
|
84
|
+
subscriber.nextDueTime =
|
|
85
|
+
subscriber.startTime + elapsedFrames * subscriber.interval;
|
|
86
|
+
}
|
|
87
|
+
scheduleAnimationTick();
|
|
88
|
+
}, delay);
|
|
89
|
+
// Keep the timer ref'd while animations are active so `useAnimation()`
|
|
90
|
+
// can drive process lifetime in both interactive and non-interactive apps.
|
|
91
|
+
}, [clearAnimationTimer]);
|
|
92
|
+
const animationSubscribe = useCallback((callback, interval) => {
|
|
93
|
+
const startTime = performance.now();
|
|
94
|
+
// The scheduler owns the start timestamp so hooks can derive frames from
|
|
95
|
+
// the exact same origin that determines each subscriber's due time.
|
|
96
|
+
animationSubscribersRef.current.set(callback, {
|
|
97
|
+
callback,
|
|
98
|
+
interval,
|
|
99
|
+
startTime,
|
|
100
|
+
nextDueTime: startTime + interval,
|
|
101
|
+
});
|
|
102
|
+
scheduleAnimationTick();
|
|
103
|
+
return {
|
|
104
|
+
startTime,
|
|
105
|
+
unsubscribe() {
|
|
106
|
+
animationSubscribersRef.current.delete(callback);
|
|
107
|
+
if (animationSubscribersRef.current.size === 0) {
|
|
108
|
+
clearAnimationTimer();
|
|
109
|
+
return;
|
|
110
|
+
}
|
|
111
|
+
scheduleAnimationTick();
|
|
112
|
+
},
|
|
113
|
+
};
|
|
114
|
+
}, [clearAnimationTimer, scheduleAnimationTick]);
|
|
115
|
+
useEffect(() => {
|
|
116
|
+
return () => {
|
|
117
|
+
clearAnimationTimer();
|
|
118
|
+
};
|
|
119
|
+
}, [clearAnimationTimer]);
|
|
120
|
+
// Determines if TTY is supported on the provided stdin
|
|
121
|
+
const isRawModeSupported = stdin.isTTY;
|
|
122
|
+
const detachReadableListener = useCallback(() => {
|
|
123
|
+
if (!readableListenerRef.current) {
|
|
124
|
+
return;
|
|
125
|
+
}
|
|
126
|
+
stdin.removeListener('readable', readableListenerRef.current);
|
|
127
|
+
readableListenerRef.current = undefined;
|
|
128
|
+
}, [stdin]);
|
|
129
|
+
const clearInputState = useCallback(() => {
|
|
130
|
+
inputParserRef.current.reset();
|
|
131
|
+
clearPendingInputFlush();
|
|
132
|
+
detachReadableListener();
|
|
133
|
+
}, [clearPendingInputFlush, detachReadableListener]);
|
|
134
|
+
const disableRawMode = useCallback(() => {
|
|
135
|
+
pendingDisableRawModeRef.current = false;
|
|
136
|
+
stdin.setRawMode(false);
|
|
137
|
+
stdin.unref();
|
|
138
|
+
rawModeEnabledCount.current = 0;
|
|
139
|
+
clearInputState();
|
|
140
|
+
}, [stdin, clearInputState]);
|
|
141
|
+
const handleExit = useCallback((errorOrResult) => {
|
|
142
|
+
if (isRawModeSupported &&
|
|
143
|
+
(rawModeEnabledCount.current > 0 || pendingDisableRawModeRef.current)) {
|
|
144
|
+
disableRawMode();
|
|
145
|
+
}
|
|
146
|
+
onExit(errorOrResult);
|
|
147
|
+
}, [isRawModeSupported, disableRawMode, onExit]);
|
|
148
|
+
const handleInput = useCallback((input) => {
|
|
149
|
+
// Exit on Ctrl+C
|
|
150
|
+
// eslint-disable-next-line unicorn/no-hex-escape
|
|
151
|
+
if (input === '\x03' && exitOnCtrlC) {
|
|
152
|
+
handleExit();
|
|
153
|
+
return;
|
|
154
|
+
}
|
|
155
|
+
// Reset focus when there's an active focused component on Esc
|
|
156
|
+
if (input === escape && isFocusEnabled) {
|
|
157
|
+
setActiveFocusId(undefined);
|
|
158
|
+
}
|
|
159
|
+
}, [exitOnCtrlC, handleExit, isFocusEnabled]);
|
|
160
|
+
const emitInput = useCallback((input) => {
|
|
161
|
+
handleInput(input);
|
|
162
|
+
internal_eventEmitter.current.emit('input', input);
|
|
163
|
+
}, [handleInput]);
|
|
164
|
+
const schedulePendingInputFlush = useCallback(() => {
|
|
165
|
+
clearPendingInputFlush();
|
|
166
|
+
pendingInputFlushRef.current = setTimeout(() => {
|
|
167
|
+
pendingInputFlushRef.current = undefined;
|
|
168
|
+
const pendingEscape = inputParserRef.current.flushPendingEscape();
|
|
169
|
+
if (!pendingEscape) {
|
|
170
|
+
return;
|
|
171
|
+
}
|
|
172
|
+
emitInput(pendingEscape);
|
|
173
|
+
}, pendingInputFlushDelayMilliseconds);
|
|
174
|
+
}, [clearPendingInputFlush, emitInput]);
|
|
175
|
+
const handleReadable = useCallback(() => {
|
|
176
|
+
clearPendingInputFlush();
|
|
177
|
+
let chunk;
|
|
178
|
+
// eslint-disable-next-line @typescript-eslint/no-restricted-types
|
|
179
|
+
while ((chunk = stdin.read()) !== null) {
|
|
180
|
+
const inputEvents = inputParserRef.current.push(chunk);
|
|
181
|
+
for (const event of inputEvents) {
|
|
182
|
+
if (typeof event === 'string') {
|
|
183
|
+
emitInput(event);
|
|
184
|
+
}
|
|
185
|
+
else {
|
|
186
|
+
// Keep paste on a separate channel from `useInput` so key handlers
|
|
187
|
+
// don't need to branch on mixed key-vs-paste event shapes.
|
|
188
|
+
if (internal_eventEmitter.current.listenerCount('paste') === 0) {
|
|
189
|
+
emitInput(event.paste);
|
|
190
|
+
continue;
|
|
191
|
+
}
|
|
192
|
+
internal_eventEmitter.current.emit('paste', event.paste);
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
if (inputParserRef.current.hasPendingEscape()) {
|
|
197
|
+
schedulePendingInputFlush();
|
|
198
|
+
}
|
|
199
|
+
}, [stdin, emitInput, clearPendingInputFlush, schedulePendingInputFlush]);
|
|
200
|
+
const attachReadableListener = useCallback(() => {
|
|
201
|
+
if (readableListenerRef.current) {
|
|
202
|
+
return;
|
|
203
|
+
}
|
|
204
|
+
// Store the listener reference to avoid stale closure when removing
|
|
205
|
+
readableListenerRef.current = handleReadable;
|
|
206
|
+
stdin.addListener('readable', handleReadable);
|
|
207
|
+
}, [stdin, handleReadable]);
|
|
208
|
+
const handleSetRawMode = useCallback((isEnabled) => {
|
|
209
|
+
if (!isRawModeSupported) {
|
|
210
|
+
if (stdin === process.stdin) {
|
|
211
|
+
throw new Error('Raw mode is not supported on the current process.stdin, which Ink uses as input stream by default.\nRead about how to prevent this error on https://github.com/vadimdemedes/ink/#israwmodesupported');
|
|
212
|
+
}
|
|
213
|
+
else {
|
|
214
|
+
throw new Error('Raw mode is not supported on the stdin provided to Ink.\nRead about how to prevent this error on https://github.com/vadimdemedes/ink/#israwmodesupported');
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
stdin.setEncoding('utf8');
|
|
218
|
+
if (isEnabled) {
|
|
219
|
+
if (rawModeEnabledCount.current === 0) {
|
|
220
|
+
// A same-render component swap may have detached input handling while
|
|
221
|
+
// leaving terminal raw mode enabled until the queued disable runs.
|
|
222
|
+
const isRawModeAlreadyEnabled = pendingDisableRawModeRef.current;
|
|
223
|
+
pendingDisableRawModeRef.current = false;
|
|
224
|
+
if (!isRawModeAlreadyEnabled) {
|
|
225
|
+
stdin.ref();
|
|
226
|
+
stdin.setRawMode(true);
|
|
227
|
+
}
|
|
228
|
+
attachReadableListener();
|
|
229
|
+
}
|
|
230
|
+
rawModeEnabledCount.current++;
|
|
231
|
+
return;
|
|
232
|
+
}
|
|
233
|
+
if (rawModeEnabledCount.current === 0) {
|
|
234
|
+
return;
|
|
235
|
+
}
|
|
236
|
+
if (--rawModeEnabledCount.current === 0) {
|
|
237
|
+
// Stop owning input immediately so pending parser state cannot leak into
|
|
238
|
+
// a replacement `useInput` component mounted in the same React update.
|
|
239
|
+
clearInputState();
|
|
240
|
+
// Defer only the terminal raw-mode teardown so a same-render replacement
|
|
241
|
+
// can keep the process ref and raw mode active without a disable/enable cycle.
|
|
242
|
+
pendingDisableRawModeRef.current = true;
|
|
243
|
+
queueMicrotask(() => {
|
|
244
|
+
if (!pendingDisableRawModeRef.current) {
|
|
245
|
+
return;
|
|
246
|
+
}
|
|
247
|
+
disableRawMode();
|
|
248
|
+
});
|
|
249
|
+
}
|
|
250
|
+
}, [
|
|
251
|
+
isRawModeSupported,
|
|
252
|
+
stdin,
|
|
253
|
+
attachReadableListener,
|
|
254
|
+
clearInputState,
|
|
255
|
+
disableRawMode,
|
|
256
|
+
]);
|
|
257
|
+
const handleSetBracketedPasteMode = useCallback((isEnabled) => {
|
|
258
|
+
if (!stdout.isTTY) {
|
|
259
|
+
return;
|
|
260
|
+
}
|
|
261
|
+
if (isEnabled) {
|
|
262
|
+
if (bracketedPasteModeEnabledCount.current === 0) {
|
|
263
|
+
stdout.write('\u001B[?2004h');
|
|
264
|
+
}
|
|
265
|
+
bracketedPasteModeEnabledCount.current++;
|
|
266
|
+
return;
|
|
267
|
+
}
|
|
268
|
+
if (bracketedPasteModeEnabledCount.current === 0) {
|
|
269
|
+
return;
|
|
270
|
+
}
|
|
271
|
+
if (--bracketedPasteModeEnabledCount.current === 0) {
|
|
272
|
+
stdout.write('\u001B[?2004l');
|
|
273
|
+
}
|
|
274
|
+
}, [stdout]);
|
|
275
|
+
// Remembers which input modes were active so resumeInput can reinstate exactly
|
|
276
|
+
// those after a terminal suspension, without touching the ref counts (the React
|
|
277
|
+
// components still "own" raw mode/bracketed paste across the suspension).
|
|
278
|
+
const suspendedInputStateRef = useRef({
|
|
279
|
+
rawMode: false,
|
|
280
|
+
bracketedPaste: false,
|
|
281
|
+
});
|
|
282
|
+
const pauseInput = useCallback(() => {
|
|
283
|
+
const wasRawMode = isRawModeSupported && rawModeEnabledCount.current > 0;
|
|
284
|
+
const wasBracketedPaste = bracketedPasteModeEnabledCount.current > 0;
|
|
285
|
+
suspendedInputStateRef.current = {
|
|
286
|
+
rawMode: wasRawMode,
|
|
287
|
+
bracketedPaste: wasBracketedPaste,
|
|
288
|
+
};
|
|
289
|
+
if (wasBracketedPaste && stdout.isTTY) {
|
|
290
|
+
try {
|
|
291
|
+
stdout.write('\u001B[?2004l');
|
|
292
|
+
}
|
|
293
|
+
catch { }
|
|
294
|
+
}
|
|
295
|
+
if (wasRawMode) {
|
|
296
|
+
stdin.setRawMode(false);
|
|
297
|
+
stdin.unref();
|
|
298
|
+
clearInputState();
|
|
299
|
+
}
|
|
300
|
+
}, [isRawModeSupported, stdin, stdout, clearInputState]);
|
|
301
|
+
const resumeInput = useCallback(() => {
|
|
302
|
+
const { rawMode, bracketedPaste } = suspendedInputStateRef.current;
|
|
303
|
+
if (rawMode) {
|
|
304
|
+
stdin.setEncoding('utf8');
|
|
305
|
+
stdin.ref();
|
|
306
|
+
stdin.setRawMode(true);
|
|
307
|
+
attachReadableListener();
|
|
308
|
+
}
|
|
309
|
+
if (bracketedPaste && stdout.isTTY) {
|
|
310
|
+
try {
|
|
311
|
+
stdout.write('\u001B[?2004h');
|
|
312
|
+
}
|
|
313
|
+
catch { }
|
|
314
|
+
}
|
|
315
|
+
}, [stdin, stdout, attachReadableListener]);
|
|
316
|
+
// Register input pause/resume in an insertion effect: it runs before every
|
|
317
|
+
// passive effect (parent and child), so a child that calls suspendTerminal()
|
|
318
|
+
// from its own effect always finds the input control already registered. A
|
|
319
|
+
// normal effect would run too late (child effects fire before the parent's).
|
|
320
|
+
useInsertionEffect(() => {
|
|
321
|
+
onRegisterInputControl(pauseInput, resumeInput);
|
|
322
|
+
}, [onRegisterInputControl, pauseInput, resumeInput]);
|
|
323
|
+
// Focus navigation helpers
|
|
324
|
+
const findNextFocusable = useCallback((currentFocusables, currentActiveFocusId) => {
|
|
325
|
+
const activeIndex = currentFocusables.findIndex(focusable => {
|
|
326
|
+
return focusable.id === currentActiveFocusId;
|
|
327
|
+
});
|
|
328
|
+
for (let index = activeIndex + 1; index < currentFocusables.length; index++) {
|
|
329
|
+
const focusable = currentFocusables[index];
|
|
330
|
+
if (focusable?.isActive) {
|
|
331
|
+
return focusable.id;
|
|
332
|
+
}
|
|
333
|
+
}
|
|
334
|
+
return undefined;
|
|
335
|
+
}, []);
|
|
336
|
+
const findPreviousFocusable = useCallback((currentFocusables, currentActiveFocusId) => {
|
|
337
|
+
const activeIndex = currentFocusables.findIndex(focusable => {
|
|
338
|
+
return focusable.id === currentActiveFocusId;
|
|
339
|
+
});
|
|
340
|
+
for (let index = activeIndex - 1; index >= 0; index--) {
|
|
341
|
+
const focusable = currentFocusables[index];
|
|
342
|
+
if (focusable?.isActive) {
|
|
343
|
+
return focusable.id;
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
return undefined;
|
|
347
|
+
}, []);
|
|
348
|
+
const focusNext = useCallback(() => {
|
|
349
|
+
setFocusables(currentFocusables => {
|
|
350
|
+
setActiveFocusId(currentActiveFocusId => {
|
|
351
|
+
const firstFocusableId = currentFocusables.find(focusable => focusable.isActive)?.id;
|
|
352
|
+
const nextFocusableId = findNextFocusable(currentFocusables, currentActiveFocusId);
|
|
353
|
+
return nextFocusableId ?? firstFocusableId;
|
|
354
|
+
});
|
|
355
|
+
return currentFocusables;
|
|
356
|
+
});
|
|
357
|
+
}, [findNextFocusable]);
|
|
358
|
+
const focusPrevious = useCallback(() => {
|
|
359
|
+
setFocusables(currentFocusables => {
|
|
360
|
+
setActiveFocusId(currentActiveFocusId => {
|
|
361
|
+
const lastFocusableId = currentFocusables.findLast(focusable => focusable.isActive)?.id;
|
|
362
|
+
const previousFocusableId = findPreviousFocusable(currentFocusables, currentActiveFocusId);
|
|
363
|
+
return previousFocusableId ?? lastFocusableId;
|
|
364
|
+
});
|
|
365
|
+
return currentFocusables;
|
|
366
|
+
});
|
|
367
|
+
}, [findPreviousFocusable]);
|
|
368
|
+
// Handle tab navigation via effect that subscribes to input events
|
|
369
|
+
useEffect(() => {
|
|
370
|
+
const handleTabNavigation = (input) => {
|
|
371
|
+
if (!isFocusEnabled || focusablesCountRef.current === 0)
|
|
372
|
+
return;
|
|
373
|
+
if (input === tab) {
|
|
374
|
+
focusNext();
|
|
375
|
+
}
|
|
376
|
+
if (input === shiftTab) {
|
|
377
|
+
focusPrevious();
|
|
378
|
+
}
|
|
379
|
+
};
|
|
380
|
+
internal_eventEmitter.current.on('input', handleTabNavigation);
|
|
381
|
+
const emitter = internal_eventEmitter.current;
|
|
382
|
+
return () => {
|
|
383
|
+
emitter.off('input', handleTabNavigation);
|
|
384
|
+
};
|
|
385
|
+
}, [isFocusEnabled, focusNext, focusPrevious]);
|
|
386
|
+
const enableFocus = useCallback(() => {
|
|
387
|
+
setIsFocusEnabled(true);
|
|
388
|
+
}, []);
|
|
389
|
+
const disableFocus = useCallback(() => {
|
|
390
|
+
setIsFocusEnabled(false);
|
|
391
|
+
}, []);
|
|
392
|
+
const focus = useCallback((id) => {
|
|
393
|
+
setFocusables(currentFocusables => {
|
|
394
|
+
const hasFocusableId = currentFocusables.some(focusable => focusable?.id === id);
|
|
395
|
+
if (hasFocusableId) {
|
|
396
|
+
setActiveFocusId(id);
|
|
397
|
+
}
|
|
398
|
+
return currentFocusables;
|
|
399
|
+
});
|
|
400
|
+
}, []);
|
|
401
|
+
const addFocusable = useCallback((id, { autoFocus }) => {
|
|
402
|
+
setFocusables(currentFocusables => {
|
|
403
|
+
focusablesCountRef.current = currentFocusables.length + 1;
|
|
404
|
+
return [
|
|
405
|
+
...currentFocusables,
|
|
406
|
+
{
|
|
407
|
+
id,
|
|
408
|
+
isActive: true,
|
|
409
|
+
},
|
|
410
|
+
];
|
|
411
|
+
});
|
|
412
|
+
if (autoFocus) {
|
|
413
|
+
setActiveFocusId(currentActiveFocusId => {
|
|
414
|
+
if (!currentActiveFocusId) {
|
|
415
|
+
return id;
|
|
416
|
+
}
|
|
417
|
+
return currentActiveFocusId;
|
|
418
|
+
});
|
|
419
|
+
}
|
|
420
|
+
}, []);
|
|
421
|
+
const removeFocusable = useCallback((id) => {
|
|
422
|
+
setActiveFocusId(currentActiveFocusId => {
|
|
423
|
+
if (currentActiveFocusId === id) {
|
|
424
|
+
return undefined;
|
|
425
|
+
}
|
|
426
|
+
return currentActiveFocusId;
|
|
427
|
+
});
|
|
428
|
+
setFocusables(currentFocusables => {
|
|
429
|
+
const filtered = currentFocusables.filter(focusable => {
|
|
430
|
+
return focusable.id !== id;
|
|
431
|
+
});
|
|
432
|
+
focusablesCountRef.current = filtered.length;
|
|
433
|
+
return filtered;
|
|
434
|
+
});
|
|
435
|
+
}, []);
|
|
436
|
+
const activateFocusable = useCallback((id) => {
|
|
437
|
+
setFocusables(currentFocusables => currentFocusables.map(focusable => {
|
|
438
|
+
if (focusable.id !== id) {
|
|
439
|
+
return focusable;
|
|
440
|
+
}
|
|
441
|
+
return {
|
|
442
|
+
id,
|
|
443
|
+
isActive: true,
|
|
444
|
+
};
|
|
445
|
+
}));
|
|
446
|
+
}, []);
|
|
447
|
+
const deactivateFocusable = useCallback((id) => {
|
|
448
|
+
setActiveFocusId(currentActiveFocusId => {
|
|
449
|
+
if (currentActiveFocusId === id) {
|
|
450
|
+
return undefined;
|
|
451
|
+
}
|
|
452
|
+
return currentActiveFocusId;
|
|
453
|
+
});
|
|
454
|
+
setFocusables(currentFocusables => currentFocusables.map(focusable => {
|
|
455
|
+
if (focusable.id !== id) {
|
|
456
|
+
return focusable;
|
|
457
|
+
}
|
|
458
|
+
return {
|
|
459
|
+
id,
|
|
460
|
+
isActive: false,
|
|
461
|
+
};
|
|
462
|
+
}));
|
|
463
|
+
}, []);
|
|
464
|
+
// Handle cursor visibility, raw mode, and bracketed paste mode cleanup on unmount
|
|
465
|
+
useEffect(() => {
|
|
466
|
+
return () => {
|
|
467
|
+
const canWriteToStdout = !stdout.destroyed && !stdout.writableEnded;
|
|
468
|
+
if (interactive && canWriteToStdout) {
|
|
469
|
+
cliCursor.show(stdout);
|
|
470
|
+
}
|
|
471
|
+
if (isRawModeSupported &&
|
|
472
|
+
(rawModeEnabledCount.current > 0 || pendingDisableRawModeRef.current)) {
|
|
473
|
+
disableRawMode();
|
|
474
|
+
}
|
|
475
|
+
if (bracketedPasteModeEnabledCount.current > 0) {
|
|
476
|
+
if (stdout.isTTY && canWriteToStdout) {
|
|
477
|
+
stdout.write('\u001B[?2004l');
|
|
478
|
+
}
|
|
479
|
+
bracketedPasteModeEnabledCount.current = 0;
|
|
480
|
+
}
|
|
481
|
+
};
|
|
482
|
+
}, [stdout, isRawModeSupported, disableRawMode, interactive]);
|
|
483
|
+
// Memoize context values to prevent unnecessary re-renders
|
|
484
|
+
const appContextValue = useMemo(() => ({
|
|
485
|
+
exit: handleExit,
|
|
486
|
+
waitUntilRenderFlush: onWaitUntilRenderFlush,
|
|
487
|
+
suspendTerminal: onSuspendTerminal,
|
|
488
|
+
}), [handleExit, onWaitUntilRenderFlush, onSuspendTerminal]);
|
|
489
|
+
const stdinContextValue = useMemo(() => ({
|
|
490
|
+
stdin,
|
|
491
|
+
setRawMode: handleSetRawMode,
|
|
492
|
+
setBracketedPasteMode: handleSetBracketedPasteMode,
|
|
493
|
+
isRawModeSupported,
|
|
494
|
+
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
495
|
+
internal_exitOnCtrlC: exitOnCtrlC,
|
|
496
|
+
// eslint-disable-next-line @typescript-eslint/naming-convention
|
|
497
|
+
internal_eventEmitter: internal_eventEmitter.current,
|
|
498
|
+
}), [
|
|
499
|
+
stdin,
|
|
500
|
+
handleSetRawMode,
|
|
501
|
+
handleSetBracketedPasteMode,
|
|
502
|
+
isRawModeSupported,
|
|
503
|
+
exitOnCtrlC,
|
|
504
|
+
]);
|
|
505
|
+
const stdoutContextValue = useMemo(() => ({
|
|
506
|
+
stdout,
|
|
507
|
+
write: writeToStdout,
|
|
508
|
+
}), [stdout, writeToStdout]);
|
|
509
|
+
const stderrContextValue = useMemo(() => ({
|
|
510
|
+
stderr,
|
|
511
|
+
write: writeToStderr,
|
|
512
|
+
}), [stderr, writeToStderr]);
|
|
513
|
+
const cursorContextValue = useMemo(() => ({
|
|
514
|
+
setCursorPosition,
|
|
515
|
+
}), [setCursorPosition]);
|
|
516
|
+
const focusContextValue = useMemo(() => ({
|
|
517
|
+
activeId: activeFocusId,
|
|
518
|
+
add: addFocusable,
|
|
519
|
+
remove: removeFocusable,
|
|
520
|
+
activate: activateFocusable,
|
|
521
|
+
deactivate: deactivateFocusable,
|
|
522
|
+
enableFocus,
|
|
523
|
+
disableFocus,
|
|
524
|
+
focusNext,
|
|
525
|
+
focusPrevious,
|
|
526
|
+
focus,
|
|
527
|
+
}), [
|
|
528
|
+
activeFocusId,
|
|
529
|
+
addFocusable,
|
|
530
|
+
removeFocusable,
|
|
531
|
+
activateFocusable,
|
|
532
|
+
deactivateFocusable,
|
|
533
|
+
enableFocus,
|
|
534
|
+
disableFocus,
|
|
535
|
+
focusNext,
|
|
536
|
+
focusPrevious,
|
|
537
|
+
focus,
|
|
538
|
+
]);
|
|
539
|
+
const animationContextValue = useMemo(() => ({
|
|
540
|
+
renderThrottleMs,
|
|
541
|
+
subscribe: animationSubscribe,
|
|
542
|
+
}), [animationSubscribe, renderThrottleMs]);
|
|
543
|
+
return (React.createElement(AppContext.Provider, { value: appContextValue },
|
|
544
|
+
React.createElement(StdinContext.Provider, { value: stdinContextValue },
|
|
545
|
+
React.createElement(StdoutContext.Provider, { value: stdoutContextValue },
|
|
546
|
+
React.createElement(StderrContext.Provider, { value: stderrContextValue },
|
|
547
|
+
React.createElement(FocusContext.Provider, { value: focusContextValue },
|
|
548
|
+
React.createElement(AnimationContext.Provider, { value: animationContextValue },
|
|
549
|
+
React.createElement(CursorContext.Provider, { value: cursorContextValue },
|
|
550
|
+
React.createElement(ErrorBoundary, { onError: handleExit }, children)))))))));
|
|
551
|
+
}
|
|
552
|
+
App.displayName = 'InternalApp';
|
|
553
|
+
export default App;
|
|
554
|
+
//# sourceMappingURL=App.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"App.js","sourceRoot":"","sources":["../../src/components/App.tsx"],"names":[],"mappings":"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"}
|
package/node_modules/@quantiya/codevibe-core/node_modules/ink/build/components/AppContext.d.ts
ADDED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
/**
|
|
2
|
+
A handle returned by `suspendTerminal()` when called without a callback.
|
|
3
|
+
|
|
4
|
+
Call `resume()` to give terminal ownership back to Ink, or use `await using`
|
|
5
|
+
so the suspension is resumed automatically when it leaves scope.
|
|
6
|
+
*/
|
|
7
|
+
export type TerminalSuspension = {
|
|
8
|
+
readonly resume: () => Promise<void>;
|
|
9
|
+
readonly [Symbol.asyncDispose]: () => Promise<void>;
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
Temporarily hand the terminal over to a child process (e.g. `$EDITOR`, `less`,
|
|
13
|
+
`fzf`), then restore Ink's terminal state and force a full redraw.
|
|
14
|
+
*/
|
|
15
|
+
export type SuspendTerminal = {
|
|
16
|
+
(callback: () => void | Promise<void>): Promise<void>;
|
|
17
|
+
(): Promise<TerminalSuspension>;
|
|
18
|
+
};
|
|
19
|
+
export type Props = {
|
|
20
|
+
/**
|
|
21
|
+
Exit (unmount) the whole Ink app.
|
|
22
|
+
|
|
23
|
+
- `exit()` — resolves `waitUntilExit()` with `undefined`.
|
|
24
|
+
- `exit(new Error('…'))` — rejects `waitUntilExit()` with the error.
|
|
25
|
+
- `exit(value)` — resolves `waitUntilExit()` with `value`.
|
|
26
|
+
*/
|
|
27
|
+
readonly exit: (errorOrResult?: Error | unknown) => void;
|
|
28
|
+
/**
|
|
29
|
+
Returns a promise that settles after pending render output is flushed to stdout.
|
|
30
|
+
|
|
31
|
+
@example
|
|
32
|
+
```jsx
|
|
33
|
+
import {useEffect} from 'react';
|
|
34
|
+
import {useApp} from 'ink';
|
|
35
|
+
|
|
36
|
+
const Example = () => {
|
|
37
|
+
const {waitUntilRenderFlush} = useApp();
|
|
38
|
+
|
|
39
|
+
useEffect(() => {
|
|
40
|
+
void (async () => {
|
|
41
|
+
await waitUntilRenderFlush();
|
|
42
|
+
runNextCommand();
|
|
43
|
+
})();
|
|
44
|
+
}, [waitUntilRenderFlush]);
|
|
45
|
+
|
|
46
|
+
return …;
|
|
47
|
+
};
|
|
48
|
+
```
|
|
49
|
+
*/
|
|
50
|
+
readonly waitUntilRenderFlush: () => Promise<void>;
|
|
51
|
+
/**
|
|
52
|
+
Temporarily release the terminal so a child process can take it over, then
|
|
53
|
+
restore Ink's terminal state and force a full redraw.
|
|
54
|
+
|
|
55
|
+
Use the callback form for the common case — Ink restores the terminal even
|
|
56
|
+
if the callback throws:
|
|
57
|
+
|
|
58
|
+
@example
|
|
59
|
+
```jsx
|
|
60
|
+
import {useApp} from 'ink';
|
|
61
|
+
|
|
62
|
+
const {suspendTerminal} = useApp();
|
|
63
|
+
|
|
64
|
+
await suspendTerminal(async () => {
|
|
65
|
+
await runEditor();
|
|
66
|
+
});
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
Or hold a suspension and resume it yourself:
|
|
70
|
+
|
|
71
|
+
@example
|
|
72
|
+
```jsx
|
|
73
|
+
await using suspension = await suspendTerminal();
|
|
74
|
+
await runEditor();
|
|
75
|
+
```
|
|
76
|
+
*/
|
|
77
|
+
readonly suspendTerminal: SuspendTerminal;
|
|
78
|
+
};
|
|
79
|
+
declare const AppContext: import("react").Context<Props>;
|
|
80
|
+
export default AppContext;
|