From ee04f5598f63ebde5f2a999b407712ac46aebd15 Mon Sep 17 00:00:00 2001 From: Bryan Morgan Date: Sun, 15 Mar 2026 13:43:19 -0400 Subject: [PATCH] fix(automation): resolve yamllint errors and update snapshots for subtle color changes --- .../gemini-scheduled-stale-pr-closer.yml | 14 +- package-lock.json | 26 +- .../src/ui/__snapshots__/App.test.tsx.snap | 24 +- ...ternateBufferQuittingDisplay.test.tsx.snap | 36 +- .../__snapshots__/AppHeader.test.tsx.snap | 24 +- ...efault-icon-in-standard-terminals.snap.svg | 26 +- ...-symmetric-icon-in-Apple-Terminal.snap.svg | 28 +- .../ConfigInitDisplay.test.tsx.snap | 12 - ...ts-the-active-item-in-the-preview.snap.svg | 242 +++---- ...s-correctly-with-default-settings.snap.svg | 236 +++---- ...Show-footer-labels-is-toggled-off.snap.svg | 228 +++---- ...g-messages-sequentially-correctly.snap.svg | 48 +- ...tings-list-with-visual-indicators.snap.svg | 230 +++---- ...bility-settings-enabled-correctly.snap.svg | 230 +++---- ...olean-settings-disabled-correctly.snap.svg | 228 +++---- ...ld-render-default-state-correctly.snap.svg | 230 +++---- ...ing-settings-configured-correctly.snap.svg | 230 +++---- ...cused-on-scope-selector-correctly.snap.svg | 228 +++---- ...ean-and-number-settings-correctly.snap.svg | 228 +++---- ...s-and-security-settings-correctly.snap.svg | 230 +++---- ...oolean-settings-enabled-correctly.snap.svg | 228 +++---- ...render-headers-and-data-correctly.snap.svg | 2 +- ...uld-support-custom-cell-rendering.snap.svg | 2 +- ...ld-support-inverse-text-rendering.snap.svg | 2 +- ...out-progress-dots-and-empty-lines.snap.svg | 8 +- ...normalizes-escaped-newline-tokens.snap.svg | 8 +- ...ader-when-isFirstThinking-is-true.snap.svg | 8 +- ...de-with-left-border-and-full-text.snap.svg | 8 +- ...g-messages-sequentially-correctly.snap.svg | 36 +- ...vertical-rule-and-Thinking-header.snap.svg | 8 +- ...description-when-subject-is-empty.snap.svg | 4 +- ...syntax-highlighting-SVG-snapshot-.snap.svg | 12 +- ...pe-codes-leak-into-colorized-code.snap.svg | 2 +- ...lates-column-widths-based-on-ren-.snap.svg | 44 +- ...lates-width-correctly-for-conten-.snap.svg | 50 +- ...not-parse-markdown-inside-code-s-.snap.svg | 44 +- ...es-nested-markdown-styles-recurs-.snap.svg | 44 +- ...dles-non-ASCII-characters-emojis-.snap.svg | 36 +- ...d-headers-without-showing-markers.snap.svg | 70 +- ...rer-renders-a-3x3-table-correctly.snap.svg | 44 +- ...h-mixed-content-lengths-correctly.snap.svg | 610 +++++++++--------- ...g-headers-and-4-columns-correctly.snap.svg | 86 +-- ...ers-a-table-with-mixed-emojis-As-.snap.svg | 36 +- ...rs-a-table-with-only-Asian-chara-.snap.svg | 36 +- ...ers-a-table-with-only-emojis-and-.snap.svg | 36 +- ...ers-complex-markdown-in-rows-and-.snap.svg | 60 +- ...rs-correctly-when-headers-are-em-.snap.svg | 18 +- ...rs-correctly-when-there-are-more-.snap.svg | 28 +- ...eaders-and-renders-them-correctly.snap.svg | 28 +- ...-wraps-all-long-columns-correctly.snap.svg | 60 +- ...olumns-with-punctuation-correctly.snap.svg | 60 +- ...wraps-long-cell-content-correctly.snap.svg | 44 +- ...-long-and-short-columns-correctly.snap.svg | 44 +- ...-search-dialog-google_web_search-.snap.svg | 27 +- ...der-SVG-snapshot-for-a-shell-tool.snap.svg | 45 +- ...pty-slice-following-a-search-tool.snap.svg | 27 +- .../__snapshots__/borderStyles.test.tsx.snap | 18 +- 57 files changed, 2334 insertions(+), 2367 deletions(-) diff --git a/.github/workflows/gemini-scheduled-stale-pr-closer.yml b/.github/workflows/gemini-scheduled-stale-pr-closer.yml index 7f3c157b63..87c60b11f8 100644 --- a/.github/workflows/gemini-scheduled-stale-pr-closer.yml +++ b/.github/workflows/gemini-scheduled-stale-pr-closer.yml @@ -68,7 +68,7 @@ jobs: // and organization membership (if available). const isTeamMember = maintainerLogins.has(login.toLowerCase()); const isRepoMaintainer = ['OWNER', 'MEMBER', 'COLLABORATOR'].includes(assoc); - + if (isTeamMember || isRepoMaintainer) return true; // Fallback: Check if user belongs to the 'google' or 'googlers' orgs (requires permission) @@ -156,10 +156,10 @@ jobs: // 3. Enforcement Logic const prLabels = pr.labels.map(l => l.name.toLowerCase()); - const hasHelpWanted = prLabels.includes('help wanted') || + const hasHelpWanted = prLabels.includes('help wanted') || linkedIssues.some(issue => issue.labels.nodes.some(l => l.name.toLowerCase() === 'help wanted')); - - const hasMaintainerOnly = prLabels.includes('๐Ÿ”’ maintainer only') || + + const hasMaintainerOnly = prLabels.includes('๐Ÿ”’ maintainer only') || linkedIssues.some(issue => issue.labels.nodes.some(l => l.name.toLowerCase() === '๐Ÿ”’ maintainer only')); const hasLinkedIssue = linkedIssues.length > 0; @@ -167,7 +167,7 @@ jobs: // Closure Policy: No help-wanted label = Close after 14 days if (pr.state === 'open' && !hasHelpWanted && !hasMaintainerOnly) { const prCreatedAt = new Date(pr.created_at); - + // We give a 14-day grace period for non-help-wanted PRs to be manually reviewed/labeled by an EM if (prCreatedAt > fourteenDaysAgo) { core.info(`PR #${pr.number} is new and lacks 'help wanted'. Giving 14-day grace period for EM review.`); @@ -200,9 +200,9 @@ jobs: // 4. Staleness Check (Scheduled only) if (pr.state === 'open' && context.eventName !== 'pull_request') { - // PRs with help wanted/maintainer only labels are still checked for staleness + // PRs with help wanted/maintainer only labels are still checked for staleness // but usually given more leeway. Here we stick to 30 days of no maintainer activity. - + const prCreatedAt = new Date(pr.created_at); if (prCreatedAt > thirtyDaysAgo) continue; diff --git a/package-lock.json b/package-lock.json index ad4c9971db..bf21f81b8f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2195,7 +2195,6 @@ "integrity": "sha512-t54CUOsFMappY1Jbzb7fetWeO0n6K0k/4+/ZpkS+3Joz8I4VcvY9OiEBFRYISqaI2fq5sCiPtAjRDOzVYG8m+Q==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "@octokit/auth-token": "^6.0.0", "@octokit/graphql": "^9.0.2", @@ -2376,7 +2375,6 @@ "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.9.0.tgz", "integrity": "sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==", "license": "Apache-2.0", - "peer": true, "engines": { "node": ">=8.0.0" } @@ -2426,7 +2424,6 @@ "resolved": "https://registry.npmjs.org/@opentelemetry/core/-/core-2.5.0.tgz", "integrity": "sha512-ka4H8OM6+DlUhSAZpONu0cPBtPPTQKxbxVzC4CzVx5+K4JnroJVBtDzLAMx4/3CDTJXRvVFhpFjtl4SaiTNoyQ==", "license": "Apache-2.0", - "peer": true, "dependencies": { "@opentelemetry/semantic-conventions": "^1.29.0" }, @@ -2801,7 +2798,6 @@ "resolved": "https://registry.npmjs.org/@opentelemetry/resources/-/resources-2.5.0.tgz", "integrity": "sha512-F8W52ApePshpoSrfsSk1H2yJn9aKjCrbpQF1M9Qii0GHzbfVeFUB+rc3X4aggyZD8x9Gu3Slua+s6krmq6Dt8g==", "license": "Apache-2.0", - "peer": true, "dependencies": { "@opentelemetry/core": "2.5.0", "@opentelemetry/semantic-conventions": "^1.29.0" @@ -2835,7 +2831,6 @@ "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-metrics/-/sdk-metrics-2.5.0.tgz", "integrity": "sha512-BeJLtU+f5Gf905cJX9vXFQorAr6TAfK3SPvTFqP+scfIpDQEJfRaGJWta7sJgP+m4dNtBf9y3yvBKVAZZtJQVA==", "license": "Apache-2.0", - "peer": true, "dependencies": { "@opentelemetry/core": "2.5.0", "@opentelemetry/resources": "2.5.0" @@ -2890,7 +2885,6 @@ "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-trace-base/-/sdk-trace-base-2.5.0.tgz", "integrity": "sha512-VzRf8LzotASEyNDUxTdaJ9IRJ1/h692WyArDBInf5puLCjxbICD6XkHgpuudis56EndyS7LYFmtTMny6UABNdQ==", "license": "Apache-2.0", - "peer": true, "dependencies": { "@opentelemetry/core": "2.5.0", "@opentelemetry/resources": "2.5.0", @@ -4093,7 +4087,6 @@ "integrity": "sha512-6mDvHUFSjyT2B2yeNx2nUgMxh9LtOWvkhIU3uePn2I2oyNymUAX1NIsdgviM4CH+JSrp2D2hsMvJOkxY+0wNRA==", "devOptional": true, "license": "MIT", - "peer": true, "dependencies": { "csstype": "^3.0.2" } @@ -4368,7 +4361,6 @@ "integrity": "sha512-6sMvZePQrnZH2/cJkwRpkT7DxoAWh+g6+GFRK6bV3YQo7ogi3SX5rgF6099r5Q53Ma5qeT7LGmOmuIutF4t3lA==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "@typescript-eslint/scope-manager": "8.35.0", "@typescript-eslint/types": "8.35.0", @@ -5242,7 +5234,6 @@ "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", "license": "MIT", - "peer": true, "bin": { "acorn": "bin/acorn" }, @@ -7774,7 +7765,6 @@ "integrity": "sha512-GsGizj2Y1rCWDu6XoEekL3RLilp0voSePurjZIkxL3wlm5o5EC9VpgaP7lrCvjnkuLvzFBQWB3vWB3K5KQTveQ==", "dev": true, "license": "MIT", - "peer": true, "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.12.1", @@ -8285,7 +8275,6 @@ "resolved": "https://registry.npmjs.org/express/-/express-5.2.1.tgz", "integrity": "sha512-hIS4idWWai69NezIdRt2xFVofaF4j+6INOpJlVOLDO8zXGpUVEVzIYk12UUi2JzjEzWL3IOAxcTubgz9Po0yXw==", "license": "MIT", - "peer": true, "dependencies": { "accepts": "^2.0.0", "body-parser": "^2.2.1", @@ -9570,7 +9559,6 @@ "resolved": "https://registry.npmjs.org/hono/-/hono-4.12.7.tgz", "integrity": "sha512-jq9l1DM0zVIvsm3lv9Nw9nlJnMNPOcAtsbsgiUhWcFzPE99Gvo6yRTlszSLLYacMeQ6quHD6hMfId8crVHvexw==", "license": "MIT", - "peer": true, "engines": { "node": ">=16.9.0" } @@ -9850,7 +9838,6 @@ "resolved": "https://registry.npmjs.org/@jrichman/ink/-/ink-6.4.11.tgz", "integrity": "sha512-93LQlzT7vvZ1XJcmOMwN4s+6W334QegendeHOMnEJBlhnpIzr8bws6/aOEHG8ZCuVD/vNeeea5m1msHIdAY6ig==", "license": "MIT", - "peer": true, "dependencies": { "@alcalzone/ansi-tokenize": "^0.2.1", "ansi-escapes": "^7.0.0", @@ -13453,7 +13440,6 @@ "resolved": "https://registry.npmjs.org/react/-/react-19.2.4.tgz", "integrity": "sha512-9nfp2hYpCwOjAN+8TZFGhtWEwgvWHXqESH8qT89AT/lWklpLON22Lc8pEtnpsZz7VmawabSU0gCjnj8aC0euHQ==", "license": "MIT", - "peer": true, "engines": { "node": ">=0.10.0" } @@ -13464,7 +13450,6 @@ "integrity": "sha512-ePrwPfxAnB+7hgnEr8vpKxL9cmnp7F322t8oqcPshbIQQhDKgFDW4tjhF2wjVbdXF9O/nyuy3sQWd9JGpiLPvA==", "devOptional": true, "license": "MIT", - "peer": true, "dependencies": { "shell-quote": "^1.6.1", "ws": "^7" @@ -15512,7 +15497,6 @@ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", "license": "MIT", - "peer": true, "engines": { "node": ">=12" }, @@ -15736,8 +15720,7 @@ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", "dev": true, - "license": "0BSD", - "peer": true + "license": "0BSD" }, "node_modules/tsx": { "version": "4.20.3", @@ -15745,7 +15728,6 @@ "integrity": "sha512-qjbnuR9Tr+FJOMBqJCW5ehvIo/buZq7vH7qD7JziU98h6l3qGy0a/yPFjwO+y0/T7GFpNgNAvEcPPVfyT8rrPQ==", "devOptional": true, "license": "MIT", - "peer": true, "dependencies": { "esbuild": "~0.25.0", "get-tsconfig": "^4.7.5" @@ -15905,7 +15887,6 @@ "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", "devOptional": true, "license": "Apache-2.0", - "peer": true, "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" @@ -16128,7 +16109,6 @@ "resolved": "https://registry.npmjs.org/vite/-/vite-7.2.2.tgz", "integrity": "sha512-BxAKBWmIbrDgrokdGZH1IgkIk/5mMHDreLDmCJ0qpyJaAteP8NvMhkwr/ZCQNqNH97bw/dANTE9PDzqwJghfMQ==", "license": "MIT", - "peer": true, "dependencies": { "esbuild": "^0.25.0", "fdir": "^6.5.0", @@ -16242,7 +16222,6 @@ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", "license": "MIT", - "peer": true, "engines": { "node": ">=12" }, @@ -16255,7 +16234,6 @@ "resolved": "https://registry.npmjs.org/vitest/-/vitest-3.2.4.tgz", "integrity": "sha512-LUCP5ev3GURDysTWiP47wRRUpLKMOfPh+yKTx3kVIEiu5KOMeqzpnYNsKyOoVrULivR8tLcks4+lga33Whn90A==", "license": "MIT", - "peer": true, "dependencies": { "@types/chai": "^5.2.2", "@vitest/expect": "3.2.4", @@ -16897,7 +16875,6 @@ "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz", "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==", "license": "MIT", - "peer": true, "funding": { "url": "https://github.com/sponsors/colinhacks" } @@ -17440,7 +17417,6 @@ "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", "license": "MIT", - "peer": true, "engines": { "node": ">=12" }, diff --git a/packages/cli/src/ui/__snapshots__/App.test.tsx.snap b/packages/cli/src/ui/__snapshots__/App.test.tsx.snap index 9e1d66df01..c43d1cf2cd 100644 --- a/packages/cli/src/ui/__snapshots__/App.test.tsx.snap +++ b/packages/cli/src/ui/__snapshots__/App.test.tsx.snap @@ -2,10 +2,10 @@ exports[`App > Snapshots > renders default layout correctly 1`] = ` " - โ–โ–œโ–„ Gemini CLI v1.2.3 + โ–โ–œโ–„ Gemini CLI v1.2.3 โ–โ–œโ–„ - โ–—โ–Ÿโ–€ - โ–โ–€ + โ–—โ–Ÿโ–€ + โ–—โ–Ÿโ–€ Tips for getting started: @@ -47,10 +47,10 @@ exports[`App > Snapshots > renders screen reader layout correctly 1`] = ` "Notifications Footer - โ–โ–œโ–„ Gemini CLI v1.2.3 + โ–โ–œโ–„ Gemini CLI v1.2.3 โ–โ–œโ–„ - โ–—โ–Ÿโ–€ - โ–โ–€ + โ–—โ–Ÿโ–€ + โ–—โ–Ÿโ–€ Tips for getting started: @@ -64,10 +64,10 @@ Composer exports[`App > Snapshots > renders with dialogs visible 1`] = ` " - โ–โ–œโ–„ Gemini CLI v1.2.3 + โ–โ–œโ–„ Gemini CLI v1.2.3 โ–โ–œโ–„ - โ–—โ–Ÿโ–€ - โ–โ–€ + โ–—โ–Ÿโ–€ + โ–—โ–Ÿโ–€ @@ -107,10 +107,10 @@ DialogManager exports[`App > should render ToolConfirmationQueue along with Composer when tool is confirming and experiment is on 1`] = ` " - โ–โ–œโ–„ Gemini CLI v1.2.3 + โ–โ–œโ–„ Gemini CLI v1.2.3 โ–โ–œโ–„ - โ–—โ–Ÿโ–€ - โ–โ–€ + โ–—โ–Ÿโ–€ + โ–—โ–Ÿโ–€ Tips for getting started: diff --git a/packages/cli/src/ui/components/__snapshots__/AlternateBufferQuittingDisplay.test.tsx.snap b/packages/cli/src/ui/components/__snapshots__/AlternateBufferQuittingDisplay.test.tsx.snap index b4f2bc919c..50f8a4e2bd 100644 --- a/packages/cli/src/ui/components/__snapshots__/AlternateBufferQuittingDisplay.test.tsx.snap +++ b/packages/cli/src/ui/components/__snapshots__/AlternateBufferQuittingDisplay.test.tsx.snap @@ -2,10 +2,10 @@ exports[`AlternateBufferQuittingDisplay > renders with a tool awaiting confirmation > with_confirming_tool 1`] = ` " - โ–โ–œโ–„ Gemini CLI v0.10.0 + โ–โ–œโ–„ Gemini CLI v0.10.0 โ–โ–œโ–„ - โ–—โ–Ÿโ–€ - โ–โ–€ + โ–—โ–Ÿโ–€ + โ–—โ–Ÿโ–€ Tips for getting started: @@ -26,10 +26,10 @@ Action Required (was prompted): exports[`AlternateBufferQuittingDisplay > renders with active and pending tool messages > with_history_and_pending 1`] = ` " - โ–โ–œโ–„ Gemini CLI v0.10.0 + โ–โ–œโ–„ Gemini CLI v0.10.0 โ–โ–œโ–„ - โ–—โ–Ÿโ–€ - โ–โ–€ + โ–—โ–Ÿโ–€ + โ–—โ–Ÿโ–€ Tips for getting started: @@ -54,10 +54,10 @@ Tips for getting started: exports[`AlternateBufferQuittingDisplay > renders with empty history and no pending items > empty 1`] = ` " - โ–โ–œโ–„ Gemini CLI v0.10.0 + โ–โ–œโ–„ Gemini CLI v0.10.0 โ–โ–œโ–„ - โ–—โ–Ÿโ–€ - โ–โ–€ + โ–—โ–Ÿโ–€ + โ–—โ–Ÿโ–€ Tips for getting started: @@ -70,10 +70,10 @@ Tips for getting started: exports[`AlternateBufferQuittingDisplay > renders with history but no pending items > with_history_no_pending 1`] = ` " - โ–โ–œโ–„ Gemini CLI v0.10.0 + โ–โ–œโ–„ Gemini CLI v0.10.0 โ–โ–œโ–„ - โ–—โ–Ÿโ–€ - โ–โ–€ + โ–—โ–Ÿโ–€ + โ–—โ–Ÿโ–€ Tips for getting started: @@ -94,10 +94,10 @@ Tips for getting started: exports[`AlternateBufferQuittingDisplay > renders with pending items but no history > with_pending_no_history 1`] = ` " - โ–โ–œโ–„ Gemini CLI v0.10.0 + โ–โ–œโ–„ Gemini CLI v0.10.0 โ–โ–œโ–„ - โ–—โ–Ÿโ–€ - โ–โ–€ + โ–—โ–Ÿโ–€ + โ–—โ–Ÿโ–€ Tips for getting started: @@ -114,10 +114,10 @@ Tips for getting started: exports[`AlternateBufferQuittingDisplay > renders with user and gemini messages > with_user_gemini_messages 1`] = ` " - โ–โ–œโ–„ Gemini CLI v0.10.0 + โ–โ–œโ–„ Gemini CLI v0.10.0 โ–โ–œโ–„ - โ–—โ–Ÿโ–€ - โ–โ–€ + โ–—โ–Ÿโ–€ + โ–—โ–Ÿโ–€ Tips for getting started: diff --git a/packages/cli/src/ui/components/__snapshots__/AppHeader.test.tsx.snap b/packages/cli/src/ui/components/__snapshots__/AppHeader.test.tsx.snap index 4411f766de..c6094e75bb 100644 --- a/packages/cli/src/ui/components/__snapshots__/AppHeader.test.tsx.snap +++ b/packages/cli/src/ui/components/__snapshots__/AppHeader.test.tsx.snap @@ -2,10 +2,10 @@ exports[` > should not render the banner when no flags are set 1`] = ` " - โ–โ–œโ–„ Gemini CLI v1.0.0 + โ–โ–œโ–„ Gemini CLI v1.0.0 โ–โ–œโ–„ - โ–—โ–Ÿโ–€ - โ–โ–€ + โ–—โ–Ÿโ–€ + โ–—โ–Ÿโ–€ Tips for getting started: @@ -18,10 +18,10 @@ Tips for getting started: exports[` > should not render the default banner if shown count is 5 or more 1`] = ` " - โ–โ–œโ–„ Gemini CLI v1.0.0 + โ–โ–œโ–„ Gemini CLI v1.0.0 โ–โ–œโ–„ - โ–—โ–Ÿโ–€ - โ–โ–€ + โ–—โ–Ÿโ–€ + โ–—โ–Ÿโ–€ Tips for getting started: @@ -34,10 +34,10 @@ Tips for getting started: exports[` > should render the banner with default text 1`] = ` " - โ–โ–œโ–„ Gemini CLI v1.0.0 + โ–โ–œโ–„ Gemini CLI v1.0.0 โ–โ–œโ–„ - โ–—โ–Ÿโ–€ - โ–โ–€ + โ–—โ–Ÿโ–€ + โ–—โ–Ÿโ–€ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ โ”‚ This is the default banner โ”‚ @@ -53,10 +53,10 @@ Tips for getting started: exports[` > should render the banner with warning text 1`] = ` " - โ–โ–œโ–„ Gemini CLI v1.0.0 + โ–โ–œโ–„ Gemini CLI v1.0.0 โ–โ–œโ–„ - โ–—โ–Ÿโ–€ - โ–โ–€ + โ–—โ–Ÿโ–€ + โ–—โ–Ÿโ–€ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ โ”‚ There are capacity issues โ”‚ diff --git a/packages/cli/src/ui/components/__snapshots__/AppHeaderIcon-AppHeader-Icon-Rendering-renders-the-default-icon-in-standard-terminals.snap.svg b/packages/cli/src/ui/components/__snapshots__/AppHeaderIcon-AppHeader-Icon-Rendering-renders-the-default-icon-in-standard-terminals.snap.svg index 4e9d0e67a5..ea63342fe9 100644 --- a/packages/cli/src/ui/components/__snapshots__/AppHeaderIcon-AppHeader-Icon-Rendering-renders-the-default-icon-in-standard-terminals.snap.svg +++ b/packages/cli/src/ui/components/__snapshots__/AppHeaderIcon-AppHeader-Icon-Rendering-renders-the-default-icon-in-standard-terminals.snap.svg @@ -4,25 +4,25 @@ - โ– - โ–œ - โ–„ + โ– + โ–œ + โ–„ Gemini CLI - v1.0.0 - โ– - โ–œ - โ–„ - โ–— - โ–Ÿ - โ–€ - โ– - โ–€ + v1.0.0 + โ– + โ–œ + โ–„ + โ–— + โ–Ÿ + โ–€ + โ– + โ–€ Tips for getting started: 1. Create GEMINI.md files to customize your interactions 2. - /help + /help for more information 3. Ask coding questions, edit code or run commands 4. Be specific for the best results diff --git a/packages/cli/src/ui/components/__snapshots__/AppHeaderIcon-AppHeader-Icon-Rendering-renders-the-symmetric-icon-in-Apple-Terminal.snap.svg b/packages/cli/src/ui/components/__snapshots__/AppHeaderIcon-AppHeader-Icon-Rendering-renders-the-symmetric-icon-in-Apple-Terminal.snap.svg index fa8373acc7..b4f0ccf7a7 100644 --- a/packages/cli/src/ui/components/__snapshots__/AppHeaderIcon-AppHeader-Icon-Rendering-renders-the-symmetric-icon-in-Apple-Terminal.snap.svg +++ b/packages/cli/src/ui/components/__snapshots__/AppHeaderIcon-AppHeader-Icon-Rendering-renders-the-symmetric-icon-in-Apple-Terminal.snap.svg @@ -4,26 +4,26 @@ - โ– - โ–œ - โ–„ + โ– + โ–œ + โ–„ Gemini CLI - v1.0.0 - โ– - โ–œ - โ–„ - โ–— - โ–Ÿ - โ–€ - โ–— - โ–Ÿ - โ–€ + v1.0.0 + โ– + โ–œ + โ–„ + โ–— + โ–Ÿ + โ–€ + โ–— + โ–Ÿ + โ–€ Tips for getting started: 1. Create GEMINI.md files to customize your interactions 2. - /help + /help for more information 3. Ask coding questions, edit code or run commands 4. Be specific for the best results diff --git a/packages/cli/src/ui/components/__snapshots__/ConfigInitDisplay.test.tsx.snap b/packages/cli/src/ui/components/__snapshots__/ConfigInitDisplay.test.tsx.snap index 28929deee5..8d03baaa49 100644 --- a/packages/cli/src/ui/components/__snapshots__/ConfigInitDisplay.test.tsx.snap +++ b/packages/cli/src/ui/components/__snapshots__/ConfigInitDisplay.test.tsx.snap @@ -18,20 +18,8 @@ Spinner Connecting to MCP servers... (0/5) - Waiting for: s1, s2, s3, +2 more " `; -exports[`ConfigInitDisplay > truncates list of waiting servers if too many 2`] = ` -" -Spinner Connecting to MCP servers... (0/5) - Waiting for: s1, s2, s3, +2 more -" -`; - exports[`ConfigInitDisplay > updates message on McpClientUpdate event 1`] = ` " Spinner Connecting to MCP servers... (1/2) - Waiting for: server2 " `; - -exports[`ConfigInitDisplay > updates message on McpClientUpdate event 2`] = ` -" -Spinner Connecting to MCP servers... (1/2) - Waiting for: server2 -" -`; diff --git a/packages/cli/src/ui/components/__snapshots__/FooterConfigDialog--FooterConfigDialog-highlights-the-active-item-in-the-preview.snap.svg b/packages/cli/src/ui/components/__snapshots__/FooterConfigDialog--FooterConfigDialog-highlights-the-active-item-in-the-preview.snap.svg index d4da9c5fa0..6e5245543f 100644 --- a/packages/cli/src/ui/components/__snapshots__/FooterConfigDialog--FooterConfigDialog-highlights-the-active-item-in-the-preview.snap.svg +++ b/packages/cli/src/ui/components/__snapshots__/FooterConfigDialog--FooterConfigDialog-highlights-the-active-item-in-the-preview.snap.svg @@ -4,155 +4,155 @@ - โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ - โ”‚ - โ”‚ - โ”‚ + โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ + โ”‚ + โ”‚ + โ”‚ Configure Footer - โ”‚ - โ”‚ - โ”‚ - โ”‚ - Select which items to display in the footer. - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + Select which items to display in the footer. + โ”‚ + โ”‚ + โ”‚ + โ”‚ [โœ“] workspace - โ”‚ - โ”‚ - Current working directory - โ”‚ - โ”‚ + โ”‚ + โ”‚ + Current working directory + โ”‚ + โ”‚ [โœ“] git-branch - โ”‚ - โ”‚ - Current git branch name (not shown when unavailable) - โ”‚ - โ”‚ + โ”‚ + โ”‚ + Current git branch name (not shown when unavailable) + โ”‚ + โ”‚ [โœ“] sandbox - โ”‚ - โ”‚ - Sandbox type and trust indicator - โ”‚ - โ”‚ + โ”‚ + โ”‚ + Sandbox type and trust indicator + โ”‚ + โ”‚ [โœ“] model-name - โ”‚ - โ”‚ - Current model identifier - โ”‚ - โ”‚ + โ”‚ + โ”‚ + Current model identifier + โ”‚ + โ”‚ [โœ“] quota - โ”‚ - โ”‚ - Remaining usage on daily limit (not shown when unavailable) - โ”‚ - โ”‚ - [ ] + โ”‚ + โ”‚ + Remaining usage on daily limit (not shown when unavailable) + โ”‚ + โ”‚ + [ ] context-used - โ”‚ - โ”‚ - Percentage of context window used - โ”‚ - โ”‚ - [ ] + โ”‚ + โ”‚ + Percentage of context window used + โ”‚ + โ”‚ + [ ] memory-usage - โ”‚ - โ”‚ - Memory used by the application - โ”‚ - โ”‚ - [ ] + โ”‚ + โ”‚ + Memory used by the application + โ”‚ + โ”‚ + [ ] session-id - โ”‚ - โ”‚ - Unique identifier for the current session - โ”‚ - โ”‚ - + โ”‚ + โ”‚ + Unique identifier for the current session + โ”‚ + โ”‚ + > - - + + [โœ“] - + code-changes - - โ”‚ - โ”‚ - - - Lines added/removed in the session (not shown when zero) - - โ”‚ - โ”‚ - [ ] + + โ”‚ + โ”‚ + + + Lines added/removed in the session (not shown when zero) + + โ”‚ + โ”‚ + [ ] token-count - โ”‚ - โ”‚ - Total tokens used in the session (not shown when zero) - โ”‚ - โ”‚ + โ”‚ + โ”‚ + Total tokens used in the session (not shown when zero) + โ”‚ + โ”‚ [โœ“] Show footer labels - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Reset to default footer - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - Enter to select ยท โ†‘/โ†“ to navigate ยท โ†/โ†’ to reorder ยท Esc to close - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + Enter to select ยท โ†‘/โ†“ to navigate ยท โ†/โ†’ to reorder ยท Esc to close + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” + โ”‚ + โ”‚ + โ”‚ Preview: - โ”‚ - โ”‚ - โ”‚ - โ”‚ - workspace (/directory) - branch - sandbox - /model - /stats - + โ”‚ + โ”‚ + โ”‚ + โ”‚ + workspace (/directory) + branch + sandbox + /model + /stats + diff - - โ”‚ - โ”‚ - โ”‚ - โ”‚ + + โ”‚ + โ”‚ + โ”‚ + โ”‚ ~/project/path main docker gemini-2.5-pro 97% - + +12 - - - -4 - โ”‚ - โ”‚ - โ”‚ - โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - โ”‚ - โ”‚ - โ”‚ - โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ + + + -4 + โ”‚ + โ”‚ + โ”‚ + โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ + โ”‚ + โ”‚ + โ”‚ + โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ \ No newline at end of file diff --git a/packages/cli/src/ui/components/__snapshots__/FooterConfigDialog--FooterConfigDialog-renders-correctly-with-default-settings.snap.svg b/packages/cli/src/ui/components/__snapshots__/FooterConfigDialog--FooterConfigDialog-renders-correctly-with-default-settings.snap.svg index 41b13e401b..d724380d85 100644 --- a/packages/cli/src/ui/components/__snapshots__/FooterConfigDialog--FooterConfigDialog-renders-correctly-with-default-settings.snap.svg +++ b/packages/cli/src/ui/components/__snapshots__/FooterConfigDialog--FooterConfigDialog-renders-correctly-with-default-settings.snap.svg @@ -4,150 +4,150 @@ - โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ - โ”‚ - โ”‚ - โ”‚ + โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ + โ”‚ + โ”‚ + โ”‚ Configure Footer - โ”‚ - โ”‚ - โ”‚ - โ”‚ - Select which items to display in the footer. - โ”‚ - โ”‚ - โ”‚ - โ”‚ - + โ”‚ + โ”‚ + โ”‚ + โ”‚ + Select which items to display in the footer. + โ”‚ + โ”‚ + โ”‚ + โ”‚ + > - - + + [โœ“] - + workspace - - โ”‚ - โ”‚ - - - Current working directory - - โ”‚ - โ”‚ + + โ”‚ + โ”‚ + + + Current working directory + + โ”‚ + โ”‚ [โœ“] git-branch - โ”‚ - โ”‚ - Current git branch name (not shown when unavailable) - โ”‚ - โ”‚ + โ”‚ + โ”‚ + Current git branch name (not shown when unavailable) + โ”‚ + โ”‚ [โœ“] sandbox - โ”‚ - โ”‚ - Sandbox type and trust indicator - โ”‚ - โ”‚ + โ”‚ + โ”‚ + Sandbox type and trust indicator + โ”‚ + โ”‚ [โœ“] model-name - โ”‚ - โ”‚ - Current model identifier - โ”‚ - โ”‚ + โ”‚ + โ”‚ + Current model identifier + โ”‚ + โ”‚ [โœ“] quota - โ”‚ - โ”‚ - Remaining usage on daily limit (not shown when unavailable) - โ”‚ - โ”‚ - [ ] + โ”‚ + โ”‚ + Remaining usage on daily limit (not shown when unavailable) + โ”‚ + โ”‚ + [ ] context-used - โ”‚ - โ”‚ - Percentage of context window used - โ”‚ - โ”‚ - [ ] + โ”‚ + โ”‚ + Percentage of context window used + โ”‚ + โ”‚ + [ ] memory-usage - โ”‚ - โ”‚ - Memory used by the application - โ”‚ - โ”‚ - [ ] + โ”‚ + โ”‚ + Memory used by the application + โ”‚ + โ”‚ + [ ] session-id - โ”‚ - โ”‚ - Unique identifier for the current session - โ”‚ - โ”‚ - [ ] + โ”‚ + โ”‚ + Unique identifier for the current session + โ”‚ + โ”‚ + [ ] code-changes - โ”‚ - โ”‚ - Lines added/removed in the session (not shown when zero) - โ”‚ - โ”‚ - [ ] + โ”‚ + โ”‚ + Lines added/removed in the session (not shown when zero) + โ”‚ + โ”‚ + [ ] token-count - โ”‚ - โ”‚ - Total tokens used in the session (not shown when zero) - โ”‚ - โ”‚ + โ”‚ + โ”‚ + Total tokens used in the session (not shown when zero) + โ”‚ + โ”‚ [โœ“] Show footer labels - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Reset to default footer - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - Enter to select ยท โ†‘/โ†“ to navigate ยท โ†/โ†’ to reorder ยท Esc to close - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + Enter to select ยท โ†‘/โ†“ to navigate ยท โ†/โ†’ to reorder ยท Esc to close + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” + โ”‚ + โ”‚ + โ”‚ Preview: - โ”‚ - โ”‚ - โ”‚ - โ”‚ - + โ”‚ + โ”‚ + โ”‚ + โ”‚ + workspace (/directory) - branch - sandbox - /model - /stats - โ”‚ - โ”‚ - โ”‚ - โ”‚ - + branch + sandbox + /model + /stats + โ”‚ + โ”‚ + โ”‚ + โ”‚ + ~/project/path - + main docker gemini-2.5-pro 97% - โ”‚ - โ”‚ - โ”‚ - โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - โ”‚ - โ”‚ - โ”‚ - โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ + โ”‚ + โ”‚ + โ”‚ + โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ + โ”‚ + โ”‚ + โ”‚ + โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ \ No newline at end of file diff --git a/packages/cli/src/ui/components/__snapshots__/FooterConfigDialog--FooterConfigDialog-updates-the-preview-when-Show-footer-labels-is-toggled-off.snap.svg b/packages/cli/src/ui/components/__snapshots__/FooterConfigDialog--FooterConfigDialog-updates-the-preview-when-Show-footer-labels-is-toggled-off.snap.svg index 08340ca8ac..dd7e33dfe3 100644 --- a/packages/cli/src/ui/components/__snapshots__/FooterConfigDialog--FooterConfigDialog-updates-the-preview-when-Show-footer-labels-is-toggled-off.snap.svg +++ b/packages/cli/src/ui/components/__snapshots__/FooterConfigDialog--FooterConfigDialog-updates-the-preview-when-Show-footer-labels-is-toggled-off.snap.svg @@ -4,140 +4,140 @@ - โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ - โ”‚ - โ”‚ - โ”‚ + โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ + โ”‚ + โ”‚ + โ”‚ Configure Footer - โ”‚ - โ”‚ - โ”‚ - โ”‚ - Select which items to display in the footer. - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + Select which items to display in the footer. + โ”‚ + โ”‚ + โ”‚ + โ”‚ [โœ“] workspace - โ”‚ - โ”‚ - Current working directory - โ”‚ - โ”‚ + โ”‚ + โ”‚ + Current working directory + โ”‚ + โ”‚ [โœ“] git-branch - โ”‚ - โ”‚ - Current git branch name (not shown when unavailable) - โ”‚ - โ”‚ + โ”‚ + โ”‚ + Current git branch name (not shown when unavailable) + โ”‚ + โ”‚ [โœ“] sandbox - โ”‚ - โ”‚ - Sandbox type and trust indicator - โ”‚ - โ”‚ + โ”‚ + โ”‚ + Sandbox type and trust indicator + โ”‚ + โ”‚ [โœ“] model-name - โ”‚ - โ”‚ - Current model identifier - โ”‚ - โ”‚ + โ”‚ + โ”‚ + Current model identifier + โ”‚ + โ”‚ [โœ“] quota - โ”‚ - โ”‚ - Remaining usage on daily limit (not shown when unavailable) - โ”‚ - โ”‚ - [ ] + โ”‚ + โ”‚ + Remaining usage on daily limit (not shown when unavailable) + โ”‚ + โ”‚ + [ ] context-used - โ”‚ - โ”‚ - Percentage of context window used - โ”‚ - โ”‚ - [ ] + โ”‚ + โ”‚ + Percentage of context window used + โ”‚ + โ”‚ + [ ] memory-usage - โ”‚ - โ”‚ - Memory used by the application - โ”‚ - โ”‚ - [ ] + โ”‚ + โ”‚ + Memory used by the application + โ”‚ + โ”‚ + [ ] session-id - โ”‚ - โ”‚ - Unique identifier for the current session - โ”‚ - โ”‚ - [ ] + โ”‚ + โ”‚ + Unique identifier for the current session + โ”‚ + โ”‚ + [ ] code-changes - โ”‚ - โ”‚ - Lines added/removed in the session (not shown when zero) - โ”‚ - โ”‚ - [ ] + โ”‚ + โ”‚ + Lines added/removed in the session (not shown when zero) + โ”‚ + โ”‚ + [ ] token-count - โ”‚ - โ”‚ - Total tokens used in the session (not shown when zero) - โ”‚ - โ”‚ - + โ”‚ + โ”‚ + Total tokens used in the session (not shown when zero) + โ”‚ + โ”‚ + > - - - [ ] - + + + [ ] + Show footer labels - - โ”‚ - โ”‚ - - โ”‚ - โ”‚ + + โ”‚ + โ”‚ + + โ”‚ + โ”‚ Reset to default footer - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - Enter to select ยท โ†‘/โ†“ to navigate ยท โ†/โ†’ to reorder ยท Esc to close - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + Enter to select ยท โ†‘/โ†“ to navigate ยท โ†/โ†’ to reorder ยท Esc to close + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” + โ”‚ + โ”‚ + โ”‚ Preview: - โ”‚ - โ”‚ - โ”‚ - โ”‚ - ~/project/path - ยท - main - ยท + โ”‚ + โ”‚ + โ”‚ + โ”‚ + ~/project/path + ยท + main + ยท docker - ยท - gemini-2.5-pro - ยท - 97% - โ”‚ - โ”‚ - โ”‚ - โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ - โ”‚ - โ”‚ - โ”‚ - โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ + ยท + gemini-2.5-pro + ยท + 97% + โ”‚ + โ”‚ + โ”‚ + โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ + โ”‚ + โ”‚ + โ”‚ + โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ \ No newline at end of file diff --git a/packages/cli/src/ui/components/__snapshots__/MainContent-MainContent-renders-multiple-thinking-messages-sequentially-correctly.snap.svg b/packages/cli/src/ui/components/__snapshots__/MainContent-MainContent-renders-multiple-thinking-messages-sequentially-correctly.snap.svg index 558118cdfb..3ec2d271b3 100644 --- a/packages/cli/src/ui/components/__snapshots__/MainContent-MainContent-renders-multiple-thinking-messages-sequentially-correctly.snap.svg +++ b/packages/cli/src/ui/components/__snapshots__/MainContent-MainContent-renders-multiple-thinking-messages-sequentially-correctly.snap.svg @@ -6,37 +6,37 @@ ScrollableList AppHeader(full) - + โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€โ–€ - - + + > - + Plan a solution - - + + โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„โ–„ Thinking... - โ”‚ - โ”‚ + โ”‚ + โ”‚ Initial analysis - โ”‚ - This is a multiple line paragraph for the first thinking message of how the model analyzes the - โ”‚ - problem. - โ”‚ - โ”‚ + โ”‚ + This is a multiple line paragraph for the first thinking message of how the model analyzes the + โ”‚ + problem. + โ”‚ + โ”‚ Planning execution - โ”‚ - This a second multiple line paragraph for the second thinking message explaining the plan in - โ”‚ - detail so that it wraps around the terminal display. - โ”‚ - โ”‚ + โ”‚ + This a second multiple line paragraph for the second thinking message explaining the plan in + โ”‚ + detail so that it wraps around the terminal display. + โ”‚ + โ”‚ Refining approach - โ”‚ - And finally a third multiple line paragraph for the third thinking message to refine the - โ”‚ - solution. + โ”‚ + And finally a third multiple line paragraph for the third thinking message to refine the + โ”‚ + solution. \ No newline at end of file diff --git a/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Initial-Rendering-should-render-settings-list-with-visual-indicators.snap.svg b/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Initial-Rendering-should-render-settings-list-with-visual-indicators.snap.svg index fc567671b8..511178138d 100644 --- a/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Initial-Rendering-should-render-settings-list-with-visual-indicators.snap.svg +++ b/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Initial-Rendering-should-render-settings-list-with-visual-indicators.snap.svg @@ -4,142 +4,142 @@ - โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ - โ”‚ - โ”‚ - โ”‚ + โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ + โ”‚ + โ”‚ + โ”‚ > Settings - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ - โ”‚ - โ”‚ + โ”‚ + โ”‚ โ”‚ S - earch to filter + earch to filter โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ–ฒ - โ”‚ - โ”‚ - + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ–ฒ + โ”‚ + โ”‚ + โ— - - + + Vim Mode - - + + false - โ”‚ - โ”‚ - - - Enable Vim keybindings - - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + + + Enable Vim keybindings + + โ”‚ + โ”‚ + โ”‚ + โ”‚ Default Approval Mode - Default - โ”‚ - โ”‚ - The default approval mode for tool execution. 'default' prompts for approval, 'auโ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + Default + โ”‚ + โ”‚ + The default approval mode for tool execution. 'default' prompts for approval, 'auโ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Enable Auto Update - true - โ”‚ - โ”‚ - Enable automatic updates. - โ”‚ - โ”‚ - โ”‚ - โ”‚ + true + โ”‚ + โ”‚ + Enable automatic updates. + โ”‚ + โ”‚ + โ”‚ + โ”‚ Enable Notifications - false - โ”‚ - โ”‚ - Enable run-event notifications for action-required prompts and session completion. โ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + false + โ”‚ + โ”‚ + Enable run-event notifications for action-required prompts and session completion. โ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Plan Directory - undefined - โ”‚ - โ”‚ - The directory where planning artifacts are stored. If not specified, defaults tโ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + undefined + โ”‚ + โ”‚ + The directory where planning artifacts are stored. If not specified, defaults tโ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Plan Model Routing - true - โ”‚ - โ”‚ - Automatically switch between Pro and Flash models based on Plan Mode status. Uses Prโ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + true + โ”‚ + โ”‚ + Automatically switch between Pro and Flash models based on Plan Mode status. Uses Prโ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Retry Fetch Errors - true - โ”‚ - โ”‚ - Retry on "exception TypeError: fetch failed sending request" errors. - โ”‚ - โ”‚ - โ”‚ - โ”‚ + true + โ”‚ + โ”‚ + Retry on "exception TypeError: fetch failed sending request" errors. + โ”‚ + โ”‚ + โ”‚ + โ”‚ Max Chat Model Attempts - 10 - โ”‚ - โ”‚ - Maximum number of attempts for requests to the main chat model. Cannot exceed 10. - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ–ผ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + 10 + โ”‚ + โ”‚ + Maximum number of attempts for requests to the main chat model. Cannot exceed 10. + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ–ผ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Apply To - โ”‚ - โ”‚ - + โ”‚ + โ”‚ + โ— - - + + User Settings - - โ”‚ - โ”‚ + + โ”‚ + โ”‚ Workspace Settings - โ”‚ - โ”‚ + โ”‚ + โ”‚ System Settings - โ”‚ - โ”‚ - โ”‚ - โ”‚ - (Use Enter to select, Ctrl+L to reset, Tab to change focus, Esc to close) - โ”‚ - โ”‚ - โ”‚ - โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + (Use Enter to select, Ctrl+L to reset, Tab to change focus, Esc to close) + โ”‚ + โ”‚ + โ”‚ + โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ \ No newline at end of file diff --git a/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Snapshot-Tests-should-render-accessibility-settings-enabled-correctly.snap.svg b/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Snapshot-Tests-should-render-accessibility-settings-enabled-correctly.snap.svg index a01eae091d..f3ec5cb6ab 100644 --- a/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Snapshot-Tests-should-render-accessibility-settings-enabled-correctly.snap.svg +++ b/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Snapshot-Tests-should-render-accessibility-settings-enabled-correctly.snap.svg @@ -4,142 +4,142 @@ - โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ - โ”‚ - โ”‚ - โ”‚ + โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ + โ”‚ + โ”‚ + โ”‚ > Settings - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ - โ”‚ - โ”‚ + โ”‚ + โ”‚ โ”‚ S - earch to filter + earch to filter โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ–ฒ - โ”‚ - โ”‚ - + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ–ฒ + โ”‚ + โ”‚ + โ— - - + + Vim Mode - - + + true* - โ”‚ - โ”‚ - - - Enable Vim keybindings - - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + + + Enable Vim keybindings + + โ”‚ + โ”‚ + โ”‚ + โ”‚ Default Approval Mode - Default - โ”‚ - โ”‚ - The default approval mode for tool execution. 'default' prompts for approval, 'auโ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + Default + โ”‚ + โ”‚ + The default approval mode for tool execution. 'default' prompts for approval, 'auโ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Enable Auto Update - true - โ”‚ - โ”‚ - Enable automatic updates. - โ”‚ - โ”‚ - โ”‚ - โ”‚ + true + โ”‚ + โ”‚ + Enable automatic updates. + โ”‚ + โ”‚ + โ”‚ + โ”‚ Enable Notifications - false - โ”‚ - โ”‚ - Enable run-event notifications for action-required prompts and session completion. โ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + false + โ”‚ + โ”‚ + Enable run-event notifications for action-required prompts and session completion. โ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Plan Directory - undefined - โ”‚ - โ”‚ - The directory where planning artifacts are stored. If not specified, defaults tโ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + undefined + โ”‚ + โ”‚ + The directory where planning artifacts are stored. If not specified, defaults tโ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Plan Model Routing - true - โ”‚ - โ”‚ - Automatically switch between Pro and Flash models based on Plan Mode status. Uses Prโ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + true + โ”‚ + โ”‚ + Automatically switch between Pro and Flash models based on Plan Mode status. Uses Prโ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Retry Fetch Errors - true - โ”‚ - โ”‚ - Retry on "exception TypeError: fetch failed sending request" errors. - โ”‚ - โ”‚ - โ”‚ - โ”‚ + true + โ”‚ + โ”‚ + Retry on "exception TypeError: fetch failed sending request" errors. + โ”‚ + โ”‚ + โ”‚ + โ”‚ Max Chat Model Attempts - 10 - โ”‚ - โ”‚ - Maximum number of attempts for requests to the main chat model. Cannot exceed 10. - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ–ผ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + 10 + โ”‚ + โ”‚ + Maximum number of attempts for requests to the main chat model. Cannot exceed 10. + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ–ผ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Apply To - โ”‚ - โ”‚ - + โ”‚ + โ”‚ + โ— - - + + User Settings - - โ”‚ - โ”‚ + + โ”‚ + โ”‚ Workspace Settings - โ”‚ - โ”‚ + โ”‚ + โ”‚ System Settings - โ”‚ - โ”‚ - โ”‚ - โ”‚ - (Use Enter to select, Ctrl+L to reset, Tab to change focus, Esc to close) - โ”‚ - โ”‚ - โ”‚ - โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + (Use Enter to select, Ctrl+L to reset, Tab to change focus, Esc to close) + โ”‚ + โ”‚ + โ”‚ + โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ \ No newline at end of file diff --git a/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Snapshot-Tests-should-render-all-boolean-settings-disabled-correctly.snap.svg b/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Snapshot-Tests-should-render-all-boolean-settings-disabled-correctly.snap.svg index d777591e70..cb77ce14f8 100644 --- a/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Snapshot-Tests-should-render-all-boolean-settings-disabled-correctly.snap.svg +++ b/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Snapshot-Tests-should-render-all-boolean-settings-disabled-correctly.snap.svg @@ -4,142 +4,142 @@ - โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ - โ”‚ - โ”‚ - โ”‚ + โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ + โ”‚ + โ”‚ + โ”‚ > Settings - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ - โ”‚ - โ”‚ + โ”‚ + โ”‚ โ”‚ S - earch to filter + earch to filter โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ–ฒ - โ”‚ - โ”‚ - + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ–ฒ + โ”‚ + โ”‚ + โ— - - + + Vim Mode - - + + false* - โ”‚ - โ”‚ - - - Enable Vim keybindings - - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + + + Enable Vim keybindings + + โ”‚ + โ”‚ + โ”‚ + โ”‚ Default Approval Mode - Default - โ”‚ - โ”‚ - The default approval mode for tool execution. 'default' prompts for approval, 'auโ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + Default + โ”‚ + โ”‚ + The default approval mode for tool execution. 'default' prompts for approval, 'auโ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Enable Auto Update true* - โ”‚ - โ”‚ - Enable automatic updates. - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + Enable automatic updates. + โ”‚ + โ”‚ + โ”‚ + โ”‚ Enable Notifications - false - โ”‚ - โ”‚ - Enable run-event notifications for action-required prompts and session completion. โ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + false + โ”‚ + โ”‚ + Enable run-event notifications for action-required prompts and session completion. โ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Plan Directory - undefined - โ”‚ - โ”‚ - The directory where planning artifacts are stored. If not specified, defaults tโ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + undefined + โ”‚ + โ”‚ + The directory where planning artifacts are stored. If not specified, defaults tโ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Plan Model Routing - true - โ”‚ - โ”‚ - Automatically switch between Pro and Flash models based on Plan Mode status. Uses Prโ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + true + โ”‚ + โ”‚ + Automatically switch between Pro and Flash models based on Plan Mode status. Uses Prโ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Retry Fetch Errors - true - โ”‚ - โ”‚ - Retry on "exception TypeError: fetch failed sending request" errors. - โ”‚ - โ”‚ - โ”‚ - โ”‚ + true + โ”‚ + โ”‚ + Retry on "exception TypeError: fetch failed sending request" errors. + โ”‚ + โ”‚ + โ”‚ + โ”‚ Max Chat Model Attempts - 10 - โ”‚ - โ”‚ - Maximum number of attempts for requests to the main chat model. Cannot exceed 10. - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ–ผ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + 10 + โ”‚ + โ”‚ + Maximum number of attempts for requests to the main chat model. Cannot exceed 10. + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ–ผ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Apply To - โ”‚ - โ”‚ - + โ”‚ + โ”‚ + โ— - - + + User Settings - - โ”‚ - โ”‚ + + โ”‚ + โ”‚ Workspace Settings - โ”‚ - โ”‚ + โ”‚ + โ”‚ System Settings - โ”‚ - โ”‚ - โ”‚ - โ”‚ - (Use Enter to select, Ctrl+L to reset, Tab to change focus, Esc to close) - โ”‚ - โ”‚ - โ”‚ - โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + (Use Enter to select, Ctrl+L to reset, Tab to change focus, Esc to close) + โ”‚ + โ”‚ + โ”‚ + โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ \ No newline at end of file diff --git a/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Snapshot-Tests-should-render-default-state-correctly.snap.svg b/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Snapshot-Tests-should-render-default-state-correctly.snap.svg index fc567671b8..511178138d 100644 --- a/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Snapshot-Tests-should-render-default-state-correctly.snap.svg +++ b/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Snapshot-Tests-should-render-default-state-correctly.snap.svg @@ -4,142 +4,142 @@ - โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ - โ”‚ - โ”‚ - โ”‚ + โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ + โ”‚ + โ”‚ + โ”‚ > Settings - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ - โ”‚ - โ”‚ + โ”‚ + โ”‚ โ”‚ S - earch to filter + earch to filter โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ–ฒ - โ”‚ - โ”‚ - + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ–ฒ + โ”‚ + โ”‚ + โ— - - + + Vim Mode - - + + false - โ”‚ - โ”‚ - - - Enable Vim keybindings - - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + + + Enable Vim keybindings + + โ”‚ + โ”‚ + โ”‚ + โ”‚ Default Approval Mode - Default - โ”‚ - โ”‚ - The default approval mode for tool execution. 'default' prompts for approval, 'auโ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + Default + โ”‚ + โ”‚ + The default approval mode for tool execution. 'default' prompts for approval, 'auโ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Enable Auto Update - true - โ”‚ - โ”‚ - Enable automatic updates. - โ”‚ - โ”‚ - โ”‚ - โ”‚ + true + โ”‚ + โ”‚ + Enable automatic updates. + โ”‚ + โ”‚ + โ”‚ + โ”‚ Enable Notifications - false - โ”‚ - โ”‚ - Enable run-event notifications for action-required prompts and session completion. โ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + false + โ”‚ + โ”‚ + Enable run-event notifications for action-required prompts and session completion. โ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Plan Directory - undefined - โ”‚ - โ”‚ - The directory where planning artifacts are stored. If not specified, defaults tโ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + undefined + โ”‚ + โ”‚ + The directory where planning artifacts are stored. If not specified, defaults tโ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Plan Model Routing - true - โ”‚ - โ”‚ - Automatically switch between Pro and Flash models based on Plan Mode status. Uses Prโ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + true + โ”‚ + โ”‚ + Automatically switch between Pro and Flash models based on Plan Mode status. Uses Prโ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Retry Fetch Errors - true - โ”‚ - โ”‚ - Retry on "exception TypeError: fetch failed sending request" errors. - โ”‚ - โ”‚ - โ”‚ - โ”‚ + true + โ”‚ + โ”‚ + Retry on "exception TypeError: fetch failed sending request" errors. + โ”‚ + โ”‚ + โ”‚ + โ”‚ Max Chat Model Attempts - 10 - โ”‚ - โ”‚ - Maximum number of attempts for requests to the main chat model. Cannot exceed 10. - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ–ผ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + 10 + โ”‚ + โ”‚ + Maximum number of attempts for requests to the main chat model. Cannot exceed 10. + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ–ผ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Apply To - โ”‚ - โ”‚ - + โ”‚ + โ”‚ + โ— - - + + User Settings - - โ”‚ - โ”‚ + + โ”‚ + โ”‚ Workspace Settings - โ”‚ - โ”‚ + โ”‚ + โ”‚ System Settings - โ”‚ - โ”‚ - โ”‚ - โ”‚ - (Use Enter to select, Ctrl+L to reset, Tab to change focus, Esc to close) - โ”‚ - โ”‚ - โ”‚ - โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + (Use Enter to select, Ctrl+L to reset, Tab to change focus, Esc to close) + โ”‚ + โ”‚ + โ”‚ + โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ \ No newline at end of file diff --git a/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Snapshot-Tests-should-render-file-filtering-settings-configured-correctly.snap.svg b/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Snapshot-Tests-should-render-file-filtering-settings-configured-correctly.snap.svg index fc567671b8..511178138d 100644 --- a/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Snapshot-Tests-should-render-file-filtering-settings-configured-correctly.snap.svg +++ b/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Snapshot-Tests-should-render-file-filtering-settings-configured-correctly.snap.svg @@ -4,142 +4,142 @@ - โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ - โ”‚ - โ”‚ - โ”‚ + โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ + โ”‚ + โ”‚ + โ”‚ > Settings - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ - โ”‚ - โ”‚ + โ”‚ + โ”‚ โ”‚ S - earch to filter + earch to filter โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ–ฒ - โ”‚ - โ”‚ - + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ–ฒ + โ”‚ + โ”‚ + โ— - - + + Vim Mode - - + + false - โ”‚ - โ”‚ - - - Enable Vim keybindings - - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + + + Enable Vim keybindings + + โ”‚ + โ”‚ + โ”‚ + โ”‚ Default Approval Mode - Default - โ”‚ - โ”‚ - The default approval mode for tool execution. 'default' prompts for approval, 'auโ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + Default + โ”‚ + โ”‚ + The default approval mode for tool execution. 'default' prompts for approval, 'auโ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Enable Auto Update - true - โ”‚ - โ”‚ - Enable automatic updates. - โ”‚ - โ”‚ - โ”‚ - โ”‚ + true + โ”‚ + โ”‚ + Enable automatic updates. + โ”‚ + โ”‚ + โ”‚ + โ”‚ Enable Notifications - false - โ”‚ - โ”‚ - Enable run-event notifications for action-required prompts and session completion. โ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + false + โ”‚ + โ”‚ + Enable run-event notifications for action-required prompts and session completion. โ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Plan Directory - undefined - โ”‚ - โ”‚ - The directory where planning artifacts are stored. If not specified, defaults tโ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + undefined + โ”‚ + โ”‚ + The directory where planning artifacts are stored. If not specified, defaults tโ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Plan Model Routing - true - โ”‚ - โ”‚ - Automatically switch between Pro and Flash models based on Plan Mode status. Uses Prโ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + true + โ”‚ + โ”‚ + Automatically switch between Pro and Flash models based on Plan Mode status. Uses Prโ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Retry Fetch Errors - true - โ”‚ - โ”‚ - Retry on "exception TypeError: fetch failed sending request" errors. - โ”‚ - โ”‚ - โ”‚ - โ”‚ + true + โ”‚ + โ”‚ + Retry on "exception TypeError: fetch failed sending request" errors. + โ”‚ + โ”‚ + โ”‚ + โ”‚ Max Chat Model Attempts - 10 - โ”‚ - โ”‚ - Maximum number of attempts for requests to the main chat model. Cannot exceed 10. - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ–ผ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + 10 + โ”‚ + โ”‚ + Maximum number of attempts for requests to the main chat model. Cannot exceed 10. + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ–ผ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Apply To - โ”‚ - โ”‚ - + โ”‚ + โ”‚ + โ— - - + + User Settings - - โ”‚ - โ”‚ + + โ”‚ + โ”‚ Workspace Settings - โ”‚ - โ”‚ + โ”‚ + โ”‚ System Settings - โ”‚ - โ”‚ - โ”‚ - โ”‚ - (Use Enter to select, Ctrl+L to reset, Tab to change focus, Esc to close) - โ”‚ - โ”‚ - โ”‚ - โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + (Use Enter to select, Ctrl+L to reset, Tab to change focus, Esc to close) + โ”‚ + โ”‚ + โ”‚ + โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ \ No newline at end of file diff --git a/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Snapshot-Tests-should-render-focused-on-scope-selector-correctly.snap.svg b/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Snapshot-Tests-should-render-focused-on-scope-selector-correctly.snap.svg index 3d11268eff..2943d6b87f 100644 --- a/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Snapshot-Tests-should-render-focused-on-scope-selector-correctly.snap.svg +++ b/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Snapshot-Tests-should-render-focused-on-scope-selector-correctly.snap.svg @@ -4,136 +4,136 @@ - โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ - โ”‚ - โ”‚ - โ”‚ + โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ + โ”‚ + โ”‚ + โ”‚ Settings - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ - โ”‚ - โ”‚ - โ”‚ - Search to filter - โ”‚ - โ”‚ - โ”‚ - โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ–ฒ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ + โ”‚ + โ”‚ + โ”‚ + Search to filter + โ”‚ + โ”‚ + โ”‚ + โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ–ฒ + โ”‚ + โ”‚ Vim Mode - false - โ”‚ - โ”‚ - Enable Vim keybindings - โ”‚ - โ”‚ - โ”‚ - โ”‚ + false + โ”‚ + โ”‚ + Enable Vim keybindings + โ”‚ + โ”‚ + โ”‚ + โ”‚ Default Approval Mode - Default - โ”‚ - โ”‚ - The default approval mode for tool execution. 'default' prompts for approval, 'auโ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + Default + โ”‚ + โ”‚ + The default approval mode for tool execution. 'default' prompts for approval, 'auโ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Enable Auto Update - true - โ”‚ - โ”‚ - Enable automatic updates. - โ”‚ - โ”‚ - โ”‚ - โ”‚ + true + โ”‚ + โ”‚ + Enable automatic updates. + โ”‚ + โ”‚ + โ”‚ + โ”‚ Enable Notifications - false - โ”‚ - โ”‚ - Enable run-event notifications for action-required prompts and session completion. โ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + false + โ”‚ + โ”‚ + Enable run-event notifications for action-required prompts and session completion. โ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Plan Directory - undefined - โ”‚ - โ”‚ - The directory where planning artifacts are stored. If not specified, defaults tโ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + undefined + โ”‚ + โ”‚ + The directory where planning artifacts are stored. If not specified, defaults tโ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Plan Model Routing - true - โ”‚ - โ”‚ - Automatically switch between Pro and Flash models based on Plan Mode status. Uses Prโ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + true + โ”‚ + โ”‚ + Automatically switch between Pro and Flash models based on Plan Mode status. Uses Prโ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Retry Fetch Errors - true - โ”‚ - โ”‚ - Retry on "exception TypeError: fetch failed sending request" errors. - โ”‚ - โ”‚ - โ”‚ - โ”‚ + true + โ”‚ + โ”‚ + Retry on "exception TypeError: fetch failed sending request" errors. + โ”‚ + โ”‚ + โ”‚ + โ”‚ Max Chat Model Attempts - 10 - โ”‚ - โ”‚ - Maximum number of attempts for requests to the main chat model. Cannot exceed 10. - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ–ผ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + 10 + โ”‚ + โ”‚ + Maximum number of attempts for requests to the main chat model. Cannot exceed 10. + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ–ผ + โ”‚ + โ”‚ + โ”‚ + โ”‚ > Apply To - โ”‚ - โ”‚ - + โ”‚ + โ”‚ + โ— - - + + 1. - - + + User Settings - - โ”‚ - โ”‚ + + โ”‚ + โ”‚ 2. Workspace Settings - โ”‚ - โ”‚ + โ”‚ + โ”‚ 3. System Settings - โ”‚ - โ”‚ - โ”‚ - โ”‚ - (Use Enter to select, Ctrl+L to reset, Tab to change focus, Esc to close) - โ”‚ - โ”‚ - โ”‚ - โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + (Use Enter to select, Ctrl+L to reset, Tab to change focus, Esc to close) + โ”‚ + โ”‚ + โ”‚ + โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ \ No newline at end of file diff --git a/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Snapshot-Tests-should-render-mixed-boolean-and-number-settings-correctly.snap.svg b/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Snapshot-Tests-should-render-mixed-boolean-and-number-settings-correctly.snap.svg index 0f619971c1..bbf906e5d2 100644 --- a/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Snapshot-Tests-should-render-mixed-boolean-and-number-settings-correctly.snap.svg +++ b/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Snapshot-Tests-should-render-mixed-boolean-and-number-settings-correctly.snap.svg @@ -4,142 +4,142 @@ - โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ - โ”‚ - โ”‚ - โ”‚ + โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ + โ”‚ + โ”‚ + โ”‚ > Settings - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ - โ”‚ - โ”‚ + โ”‚ + โ”‚ โ”‚ S - earch to filter + earch to filter โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ–ฒ - โ”‚ - โ”‚ - + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ–ฒ + โ”‚ + โ”‚ + โ— - - + + Vim Mode - - + + false* - โ”‚ - โ”‚ - - - Enable Vim keybindings - - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + + + Enable Vim keybindings + + โ”‚ + โ”‚ + โ”‚ + โ”‚ Default Approval Mode - Default - โ”‚ - โ”‚ - The default approval mode for tool execution. 'default' prompts for approval, 'auโ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + Default + โ”‚ + โ”‚ + The default approval mode for tool execution. 'default' prompts for approval, 'auโ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Enable Auto Update false* - โ”‚ - โ”‚ - Enable automatic updates. - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + Enable automatic updates. + โ”‚ + โ”‚ + โ”‚ + โ”‚ Enable Notifications - false - โ”‚ - โ”‚ - Enable run-event notifications for action-required prompts and session completion. โ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + false + โ”‚ + โ”‚ + Enable run-event notifications for action-required prompts and session completion. โ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Plan Directory - undefined - โ”‚ - โ”‚ - The directory where planning artifacts are stored. If not specified, defaults tโ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + undefined + โ”‚ + โ”‚ + The directory where planning artifacts are stored. If not specified, defaults tโ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Plan Model Routing - true - โ”‚ - โ”‚ - Automatically switch between Pro and Flash models based on Plan Mode status. Uses Prโ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + true + โ”‚ + โ”‚ + Automatically switch between Pro and Flash models based on Plan Mode status. Uses Prโ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Retry Fetch Errors - true - โ”‚ - โ”‚ - Retry on "exception TypeError: fetch failed sending request" errors. - โ”‚ - โ”‚ - โ”‚ - โ”‚ + true + โ”‚ + โ”‚ + Retry on "exception TypeError: fetch failed sending request" errors. + โ”‚ + โ”‚ + โ”‚ + โ”‚ Max Chat Model Attempts - 10 - โ”‚ - โ”‚ - Maximum number of attempts for requests to the main chat model. Cannot exceed 10. - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ–ผ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + 10 + โ”‚ + โ”‚ + Maximum number of attempts for requests to the main chat model. Cannot exceed 10. + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ–ผ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Apply To - โ”‚ - โ”‚ - + โ”‚ + โ”‚ + โ— - - + + User Settings - - โ”‚ - โ”‚ + + โ”‚ + โ”‚ Workspace Settings - โ”‚ - โ”‚ + โ”‚ + โ”‚ System Settings - โ”‚ - โ”‚ - โ”‚ - โ”‚ - (Use Enter to select, Ctrl+L to reset, Tab to change focus, Esc to close) - โ”‚ - โ”‚ - โ”‚ - โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + (Use Enter to select, Ctrl+L to reset, Tab to change focus, Esc to close) + โ”‚ + โ”‚ + โ”‚ + โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ \ No newline at end of file diff --git a/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Snapshot-Tests-should-render-tools-and-security-settings-correctly.snap.svg b/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Snapshot-Tests-should-render-tools-and-security-settings-correctly.snap.svg index fc567671b8..511178138d 100644 --- a/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Snapshot-Tests-should-render-tools-and-security-settings-correctly.snap.svg +++ b/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Snapshot-Tests-should-render-tools-and-security-settings-correctly.snap.svg @@ -4,142 +4,142 @@ - โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ - โ”‚ - โ”‚ - โ”‚ + โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ + โ”‚ + โ”‚ + โ”‚ > Settings - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ - โ”‚ - โ”‚ + โ”‚ + โ”‚ โ”‚ S - earch to filter + earch to filter โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ–ฒ - โ”‚ - โ”‚ - + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ–ฒ + โ”‚ + โ”‚ + โ— - - + + Vim Mode - - + + false - โ”‚ - โ”‚ - - - Enable Vim keybindings - - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + + + Enable Vim keybindings + + โ”‚ + โ”‚ + โ”‚ + โ”‚ Default Approval Mode - Default - โ”‚ - โ”‚ - The default approval mode for tool execution. 'default' prompts for approval, 'auโ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + Default + โ”‚ + โ”‚ + The default approval mode for tool execution. 'default' prompts for approval, 'auโ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Enable Auto Update - true - โ”‚ - โ”‚ - Enable automatic updates. - โ”‚ - โ”‚ - โ”‚ - โ”‚ + true + โ”‚ + โ”‚ + Enable automatic updates. + โ”‚ + โ”‚ + โ”‚ + โ”‚ Enable Notifications - false - โ”‚ - โ”‚ - Enable run-event notifications for action-required prompts and session completion. โ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + false + โ”‚ + โ”‚ + Enable run-event notifications for action-required prompts and session completion. โ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Plan Directory - undefined - โ”‚ - โ”‚ - The directory where planning artifacts are stored. If not specified, defaults tโ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + undefined + โ”‚ + โ”‚ + The directory where planning artifacts are stored. If not specified, defaults tโ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Plan Model Routing - true - โ”‚ - โ”‚ - Automatically switch between Pro and Flash models based on Plan Mode status. Uses Prโ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + true + โ”‚ + โ”‚ + Automatically switch between Pro and Flash models based on Plan Mode status. Uses Prโ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Retry Fetch Errors - true - โ”‚ - โ”‚ - Retry on "exception TypeError: fetch failed sending request" errors. - โ”‚ - โ”‚ - โ”‚ - โ”‚ + true + โ”‚ + โ”‚ + Retry on "exception TypeError: fetch failed sending request" errors. + โ”‚ + โ”‚ + โ”‚ + โ”‚ Max Chat Model Attempts - 10 - โ”‚ - โ”‚ - Maximum number of attempts for requests to the main chat model. Cannot exceed 10. - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ–ผ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + 10 + โ”‚ + โ”‚ + Maximum number of attempts for requests to the main chat model. Cannot exceed 10. + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ–ผ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Apply To - โ”‚ - โ”‚ - + โ”‚ + โ”‚ + โ— - - + + User Settings - - โ”‚ - โ”‚ + + โ”‚ + โ”‚ Workspace Settings - โ”‚ - โ”‚ + โ”‚ + โ”‚ System Settings - โ”‚ - โ”‚ - โ”‚ - โ”‚ - (Use Enter to select, Ctrl+L to reset, Tab to change focus, Esc to close) - โ”‚ - โ”‚ - โ”‚ - โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + (Use Enter to select, Ctrl+L to reset, Tab to change focus, Esc to close) + โ”‚ + โ”‚ + โ”‚ + โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ \ No newline at end of file diff --git a/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Snapshot-Tests-should-render-various-boolean-settings-enabled-correctly.snap.svg b/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Snapshot-Tests-should-render-various-boolean-settings-enabled-correctly.snap.svg index 3a7a0580ff..f312c569a9 100644 --- a/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Snapshot-Tests-should-render-various-boolean-settings-enabled-correctly.snap.svg +++ b/packages/cli/src/ui/components/__snapshots__/SettingsDialog-SettingsDialog-Snapshot-Tests-should-render-various-boolean-settings-enabled-correctly.snap.svg @@ -4,142 +4,142 @@ - โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ - โ”‚ - โ”‚ - โ”‚ + โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ + โ”‚ + โ”‚ + โ”‚ > Settings - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ - โ”‚ - โ”‚ + โ”‚ + โ”‚ โ”‚ S - earch to filter + earch to filter โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ–ฒ - โ”‚ - โ”‚ - + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ–ฒ + โ”‚ + โ”‚ + โ— - - + + Vim Mode - - + + true* - โ”‚ - โ”‚ - - - Enable Vim keybindings - - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + + + Enable Vim keybindings + + โ”‚ + โ”‚ + โ”‚ + โ”‚ Default Approval Mode - Default - โ”‚ - โ”‚ - The default approval mode for tool execution. 'default' prompts for approval, 'auโ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + Default + โ”‚ + โ”‚ + The default approval mode for tool execution. 'default' prompts for approval, 'auโ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Enable Auto Update false* - โ”‚ - โ”‚ - Enable automatic updates. - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + Enable automatic updates. + โ”‚ + โ”‚ + โ”‚ + โ”‚ Enable Notifications - false - โ”‚ - โ”‚ - Enable run-event notifications for action-required prompts and session completion. โ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + false + โ”‚ + โ”‚ + Enable run-event notifications for action-required prompts and session completion. โ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Plan Directory - undefined - โ”‚ - โ”‚ - The directory where planning artifacts are stored. If not specified, defaults tโ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + undefined + โ”‚ + โ”‚ + The directory where planning artifacts are stored. If not specified, defaults tโ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Plan Model Routing - true - โ”‚ - โ”‚ - Automatically switch between Pro and Flash models based on Plan Mode status. Uses Prโ€ฆ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + true + โ”‚ + โ”‚ + Automatically switch between Pro and Flash models based on Plan Mode status. Uses Prโ€ฆ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Retry Fetch Errors - true - โ”‚ - โ”‚ - Retry on "exception TypeError: fetch failed sending request" errors. - โ”‚ - โ”‚ - โ”‚ - โ”‚ + true + โ”‚ + โ”‚ + Retry on "exception TypeError: fetch failed sending request" errors. + โ”‚ + โ”‚ + โ”‚ + โ”‚ Max Chat Model Attempts - 10 - โ”‚ - โ”‚ - Maximum number of attempts for requests to the main chat model. Cannot exceed 10. - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ–ผ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + 10 + โ”‚ + โ”‚ + Maximum number of attempts for requests to the main chat model. Cannot exceed 10. + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ–ผ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Apply To - โ”‚ - โ”‚ - + โ”‚ + โ”‚ + โ— - - + + User Settings - - โ”‚ - โ”‚ + + โ”‚ + โ”‚ Workspace Settings - โ”‚ - โ”‚ + โ”‚ + โ”‚ System Settings - โ”‚ - โ”‚ - โ”‚ - โ”‚ - (Use Enter to select, Ctrl+L to reset, Tab to change focus, Esc to close) - โ”‚ - โ”‚ - โ”‚ - โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + (Use Enter to select, Ctrl+L to reset, Tab to change focus, Esc to close) + โ”‚ + โ”‚ + โ”‚ + โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ \ No newline at end of file diff --git a/packages/cli/src/ui/components/__snapshots__/Table-Table-should-render-headers-and-data-correctly.snap.svg b/packages/cli/src/ui/components/__snapshots__/Table-Table-should-render-headers-and-data-correctly.snap.svg index fca715c952..0311088a52 100644 --- a/packages/cli/src/ui/components/__snapshots__/Table-Table-should-render-headers-and-data-correctly.snap.svg +++ b/packages/cli/src/ui/components/__snapshots__/Table-Table-should-render-headers-and-data-correctly.snap.svg @@ -6,7 +6,7 @@ ID Name - โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ + โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ 1 Alice 2 diff --git a/packages/cli/src/ui/components/__snapshots__/Table-Table-should-support-custom-cell-rendering.snap.svg b/packages/cli/src/ui/components/__snapshots__/Table-Table-should-support-custom-cell-rendering.snap.svg index 870e292d66..1779bece56 100644 --- a/packages/cli/src/ui/components/__snapshots__/Table-Table-should-support-custom-cell-rendering.snap.svg +++ b/packages/cli/src/ui/components/__snapshots__/Table-Table-should-support-custom-cell-rendering.snap.svg @@ -5,7 +5,7 @@ Value - โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ + โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ 20 \ No newline at end of file diff --git a/packages/cli/src/ui/components/__snapshots__/Table-Table-should-support-inverse-text-rendering.snap.svg b/packages/cli/src/ui/components/__snapshots__/Table-Table-should-support-inverse-text-rendering.snap.svg index 508eca9a5b..bf5b8f2165 100644 --- a/packages/cli/src/ui/components/__snapshots__/Table-Table-should-support-inverse-text-rendering.snap.svg +++ b/packages/cli/src/ui/components/__snapshots__/Table-Table-should-support-inverse-text-rendering.snap.svg @@ -5,7 +5,7 @@ Status - โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ + โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€ Active diff --git a/packages/cli/src/ui/components/messages/__snapshots__/ThinkingMessage-ThinkingMessage-filters-out-progress-dots-and-empty-lines.snap.svg b/packages/cli/src/ui/components/messages/__snapshots__/ThinkingMessage-ThinkingMessage-filters-out-progress-dots-and-empty-lines.snap.svg index e7cdbd5960..a8d5bdabb8 100644 --- a/packages/cli/src/ui/components/messages/__snapshots__/ThinkingMessage-ThinkingMessage-filters-out-progress-dots-and-empty-lines.snap.svg +++ b/packages/cli/src/ui/components/messages/__snapshots__/ThinkingMessage-ThinkingMessage-filters-out-progress-dots-and-empty-lines.snap.svg @@ -5,10 +5,10 @@ Thinking... - โ”‚ - โ”‚ + โ”‚ + โ”‚ Thinking - โ”‚ - Done + โ”‚ + Done \ No newline at end of file diff --git a/packages/cli/src/ui/components/messages/__snapshots__/ThinkingMessage-ThinkingMessage-normalizes-escaped-newline-tokens.snap.svg b/packages/cli/src/ui/components/messages/__snapshots__/ThinkingMessage-ThinkingMessage-normalizes-escaped-newline-tokens.snap.svg index 660d8b4fa1..df5a83213e 100644 --- a/packages/cli/src/ui/components/messages/__snapshots__/ThinkingMessage-ThinkingMessage-normalizes-escaped-newline-tokens.snap.svg +++ b/packages/cli/src/ui/components/messages/__snapshots__/ThinkingMessage-ThinkingMessage-normalizes-escaped-newline-tokens.snap.svg @@ -5,10 +5,10 @@ Thinking... - โ”‚ - โ”‚ + โ”‚ + โ”‚ Matching the Blocks - โ”‚ - Some more text + โ”‚ + Some more text \ No newline at end of file diff --git a/packages/cli/src/ui/components/messages/__snapshots__/ThinkingMessage-ThinkingMessage-renders-Thinking-header-when-isFirstThinking-is-true.snap.svg b/packages/cli/src/ui/components/messages/__snapshots__/ThinkingMessage-ThinkingMessage-renders-Thinking-header-when-isFirstThinking-is-true.snap.svg index 38647281df..44486ee432 100644 --- a/packages/cli/src/ui/components/messages/__snapshots__/ThinkingMessage-ThinkingMessage-renders-Thinking-header-when-isFirstThinking-is-true.snap.svg +++ b/packages/cli/src/ui/components/messages/__snapshots__/ThinkingMessage-ThinkingMessage-renders-Thinking-header-when-isFirstThinking-is-true.snap.svg @@ -5,10 +5,10 @@ Thinking... - โ”‚ - โ”‚ + โ”‚ + โ”‚ Summary line - โ”‚ - First body line + โ”‚ + First body line \ No newline at end of file diff --git a/packages/cli/src/ui/components/messages/__snapshots__/ThinkingMessage-ThinkingMessage-renders-full-mode-with-left-border-and-full-text.snap.svg b/packages/cli/src/ui/components/messages/__snapshots__/ThinkingMessage-ThinkingMessage-renders-full-mode-with-left-border-and-full-text.snap.svg index 0294b63f30..7a08cb4936 100644 --- a/packages/cli/src/ui/components/messages/__snapshots__/ThinkingMessage-ThinkingMessage-renders-full-mode-with-left-border-and-full-text.snap.svg +++ b/packages/cli/src/ui/components/messages/__snapshots__/ThinkingMessage-ThinkingMessage-renders-full-mode-with-left-border-and-full-text.snap.svg @@ -5,10 +5,10 @@ Thinking... - โ”‚ - โ”‚ + โ”‚ + โ”‚ Planning - โ”‚ - I am planning the solution. + โ”‚ + I am planning the solution. \ No newline at end of file diff --git a/packages/cli/src/ui/components/messages/__snapshots__/ThinkingMessage-ThinkingMessage-renders-multiple-thinking-messages-sequentially-correctly.snap.svg b/packages/cli/src/ui/components/messages/__snapshots__/ThinkingMessage-ThinkingMessage-renders-multiple-thinking-messages-sequentially-correctly.snap.svg index b7f8a52358..e2ac895f80 100644 --- a/packages/cli/src/ui/components/messages/__snapshots__/ThinkingMessage-ThinkingMessage-renders-multiple-thinking-messages-sequentially-correctly.snap.svg +++ b/packages/cli/src/ui/components/messages/__snapshots__/ThinkingMessage-ThinkingMessage-renders-multiple-thinking-messages-sequentially-correctly.snap.svg @@ -5,26 +5,26 @@ Thinking... - โ”‚ - โ”‚ + โ”‚ + โ”‚ Initial analysis - โ”‚ - This is a multiple line paragraph for the first thinking message of how the - โ”‚ - model analyzes the problem. - โ”‚ - โ”‚ + โ”‚ + This is a multiple line paragraph for the first thinking message of how the + โ”‚ + model analyzes the problem. + โ”‚ + โ”‚ Planning execution - โ”‚ - This a second multiple line paragraph for the second thinking message - โ”‚ - explaining the plan in detail so that it wraps around the terminal display. - โ”‚ - โ”‚ + โ”‚ + This a second multiple line paragraph for the second thinking message + โ”‚ + explaining the plan in detail so that it wraps around the terminal display. + โ”‚ + โ”‚ Refining approach - โ”‚ - And finally a third multiple line paragraph for the third thinking message to - โ”‚ - refine the solution. + โ”‚ + And finally a third multiple line paragraph for the third thinking message to + โ”‚ + refine the solution. \ No newline at end of file diff --git a/packages/cli/src/ui/components/messages/__snapshots__/ThinkingMessage-ThinkingMessage-renders-subject-line-with-vertical-rule-and-Thinking-header.snap.svg b/packages/cli/src/ui/components/messages/__snapshots__/ThinkingMessage-ThinkingMessage-renders-subject-line-with-vertical-rule-and-Thinking-header.snap.svg index 350a0cc61f..ae80c38984 100644 --- a/packages/cli/src/ui/components/messages/__snapshots__/ThinkingMessage-ThinkingMessage-renders-subject-line-with-vertical-rule-and-Thinking-header.snap.svg +++ b/packages/cli/src/ui/components/messages/__snapshots__/ThinkingMessage-ThinkingMessage-renders-subject-line-with-vertical-rule-and-Thinking-header.snap.svg @@ -5,10 +5,10 @@ Thinking... - โ”‚ - โ”‚ + โ”‚ + โ”‚ Planning - โ”‚ - test + โ”‚ + test \ No newline at end of file diff --git a/packages/cli/src/ui/components/messages/__snapshots__/ThinkingMessage-ThinkingMessage-uses-description-when-subject-is-empty.snap.svg b/packages/cli/src/ui/components/messages/__snapshots__/ThinkingMessage-ThinkingMessage-uses-description-when-subject-is-empty.snap.svg index ce2b2a4686..bade5ecd87 100644 --- a/packages/cli/src/ui/components/messages/__snapshots__/ThinkingMessage-ThinkingMessage-uses-description-when-subject-is-empty.snap.svg +++ b/packages/cli/src/ui/components/messages/__snapshots__/ThinkingMessage-ThinkingMessage-uses-description-when-subject-is-empty.snap.svg @@ -5,8 +5,8 @@ Thinking... - โ”‚ - โ”‚ + โ”‚ + โ”‚ Processing details \ No newline at end of file diff --git a/packages/cli/src/ui/components/messages/__snapshots__/ToolConfirmationMessage-ToolConfirmationMessage-should-render-multiline-shell-scripts-with-correct-newlines-and-syntax-highlighting-SVG-snapshot-.snap.svg b/packages/cli/src/ui/components/messages/__snapshots__/ToolConfirmationMessage-ToolConfirmationMessage-should-render-multiline-shell-scripts-with-correct-newlines-and-syntax-highlighting-SVG-snapshot-.snap.svg index d1396e2335..f1a062ccbd 100644 --- a/packages/cli/src/ui/components/messages/__snapshots__/ToolConfirmationMessage-ToolConfirmationMessage-should-render-multiline-shell-scripts-with-correct-newlines-and-syntax-highlighting-SVG-snapshot-.snap.svg +++ b/packages/cli/src/ui/components/messages/__snapshots__/ToolConfirmationMessage-ToolConfirmationMessage-should-render-multiline-shell-scripts-with-correct-newlines-and-syntax-highlighting-SVG-snapshot-.snap.svg @@ -15,15 +15,15 @@ $i done Allow execution of: 'echo'? - + โ— - - + + 1. - - + + Allow once - + 2. Allow for this session 3. diff --git a/packages/cli/src/ui/utils/__snapshots__/CodeColorizer-colorizeCode-does-not-let-colors-from-ansi-escape-codes-leak-into-colorized-code.snap.svg b/packages/cli/src/ui/utils/__snapshots__/CodeColorizer-colorizeCode-does-not-let-colors-from-ansi-escape-codes-leak-into-colorized-code.snap.svg index 89450d03e0..3ea7fc41d8 100644 --- a/packages/cli/src/ui/utils/__snapshots__/CodeColorizer-colorizeCode-does-not-let-colors-from-ansi-escape-codes-leak-into-colorized-code.snap.svg +++ b/packages/cli/src/ui/utils/__snapshots__/CodeColorizer-colorizeCode-does-not-let-colors-from-ansi-escape-codes-leak-into-colorized-code.snap.svg @@ -8,7 +8,7 @@ 1 line 2 - with + with red background line 3 diff --git a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-calculates-column-widths-based-on-ren-.snap.svg b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-calculates-column-widths-based-on-ren-.snap.svg index b2704f56ba..4b119debd8 100644 --- a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-calculates-column-widths-based-on-ren-.snap.svg +++ b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-calculates-column-widths-based-on-ren-.snap.svg @@ -4,36 +4,36 @@ - โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” - โ”‚ - Col 1 - โ”‚ - Col 2 - โ”‚ - Col 3 - โ”‚ - โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค - โ”‚ + โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” + โ”‚ + Col 1 + โ”‚ + Col 2 + โ”‚ + Col 3 + โ”‚ + โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค + โ”‚ 123456 - โ”‚ + โ”‚ Normal - โ”‚ + โ”‚ Short - โ”‚ - โ”‚ + โ”‚ + โ”‚ Short - โ”‚ + โ”‚ 123456 - โ”‚ + โ”‚ Normal - โ”‚ - โ”‚ + โ”‚ + โ”‚ Normal - โ”‚ + โ”‚ Short - โ”‚ + โ”‚ 123456 - โ”‚ - โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ + โ”‚ + โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ \ No newline at end of file diff --git a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-calculates-width-correctly-for-conten-.snap.svg b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-calculates-width-correctly-for-conten-.snap.svg index f631406225..5be04c22e7 100644 --- a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-calculates-width-correctly-for-conten-.snap.svg +++ b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-calculates-width-correctly-for-conten-.snap.svg @@ -4,42 +4,42 @@ - โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” - โ”‚ - Col 1 - โ”‚ - Col 2 - โ”‚ - Col 3 - โ”‚ - โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค - โ”‚ + โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” + โ”‚ + Col 1 + โ”‚ + Col 2 + โ”‚ + Col 3 + โ”‚ + โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค + โ”‚ Visit Google ( - https://google.com + https://google.com ) - โ”‚ + โ”‚ Plain Text - โ”‚ + โ”‚ More Info - โ”‚ - โ”‚ + โ”‚ + โ”‚ Info Here - โ”‚ + โ”‚ Visit Bing ( - https://bing.com + https://bing.com ) - โ”‚ + โ”‚ Links - โ”‚ - โ”‚ + โ”‚ + โ”‚ Check This - โ”‚ + โ”‚ Search - โ”‚ + โ”‚ Visit Yahoo ( - https://yahoo.com + https://yahoo.com ) - โ”‚ - โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ + โ”‚ + โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ \ No newline at end of file diff --git a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-does-not-parse-markdown-inside-code-s-.snap.svg b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-does-not-parse-markdown-inside-code-s-.snap.svg index 08eab7e946..18385b6def 100644 --- a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-does-not-parse-markdown-inside-code-s-.snap.svg +++ b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-does-not-parse-markdown-inside-code-s-.snap.svg @@ -4,37 +4,37 @@ - โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” - โ”‚ - Col 1 - โ”‚ - Col 2 - โ”‚ - Col 3 - โ”‚ - โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค - โ”‚ + โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” + โ”‚ + Col 1 + โ”‚ + Col 2 + โ”‚ + Col 3 + โ”‚ + โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค + โ”‚ **not bold** - โ”‚ + โ”‚ _not italic_ - โ”‚ + โ”‚ ~~not strike~~ - โ”‚ - โ”‚ + โ”‚ + โ”‚ [not link](url) - โ”‚ + โ”‚ <u>not underline</u> - โ”‚ + โ”‚ https://not.link - โ”‚ - โ”‚ + โ”‚ + โ”‚ Normal Text - โ”‚ + โ”‚ More Code: *test* - โ”‚ + โ”‚ ***nested*** - โ”‚ - โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ + โ”‚ + โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ \ No newline at end of file diff --git a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-handles-nested-markdown-styles-recurs-.snap.svg b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-handles-nested-markdown-styles-recurs-.snap.svg index b15120756b..09a9f2d8cf 100644 --- a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-handles-nested-markdown-styles-recurs-.snap.svg +++ b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-handles-nested-markdown-styles-recurs-.snap.svg @@ -4,42 +4,42 @@ - โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” - โ”‚ - Header 1 - โ”‚ - Header 2 - โ”‚ - Header 3 - โ”‚ - โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค - โ”‚ + โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” + โ”‚ + Header 1 + โ”‚ + Header 2 + โ”‚ + Header 3 + โ”‚ + โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค + โ”‚ Bold with Italic and Strike - โ”‚ + โ”‚ Normal - โ”‚ + โ”‚ Short - โ”‚ - โ”‚ + โ”‚ + โ”‚ Short - โ”‚ + โ”‚ Bold with Italic and Strike - โ”‚ + โ”‚ Normal - โ”‚ - โ”‚ + โ”‚ + โ”‚ Normal - โ”‚ + โ”‚ Short - โ”‚ + โ”‚ Bold with Italic and Strike - โ”‚ - โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ + โ”‚ + โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ \ No newline at end of file diff --git a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-handles-non-ASCII-characters-emojis-.snap.svg b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-handles-non-ASCII-characters-emojis-.snap.svg index a4410812dd..245c83836c 100644 --- a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-handles-non-ASCII-characters-emojis-.snap.svg +++ b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-handles-non-ASCII-characters-emojis-.snap.svg @@ -4,29 +4,29 @@ - โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” - โ”‚ - Emoji ๐Ÿ˜ƒ - โ”‚ - Asian ๆฑ‰ๅญ— - โ”‚ - Mixed ๐Ÿš€ Text - โ”‚ - โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค - โ”‚ + โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” + โ”‚ + Emoji ๐Ÿ˜ƒ + โ”‚ + Asian ๆฑ‰ๅญ— + โ”‚ + Mixed ๐Ÿš€ Text + โ”‚ + โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค + โ”‚ Start ๐ŸŒŸ End - โ”‚ + โ”‚ ไฝ ๅฅฝไธ–็•Œ - โ”‚ + โ”‚ Rocket ๐Ÿš€ Man - โ”‚ - โ”‚ + โ”‚ + โ”‚ Thumbs ๐Ÿ‘ Up - โ”‚ + โ”‚ ใ“ใ‚“ใซใกใฏ - โ”‚ + โ”‚ Fire ๐Ÿ”ฅ - โ”‚ - โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ + โ”‚ + โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ \ No newline at end of file diff --git a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-handles-wrapped-bold-headers-without-showing-markers.snap.svg b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-handles-wrapped-bold-headers-without-showing-markers.snap.svg index 99ba8aff43..fce1dd85a1 100644 --- a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-handles-wrapped-bold-headers-without-showing-markers.snap.svg +++ b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-handles-wrapped-bold-headers-without-showing-markers.snap.svg @@ -4,44 +4,44 @@ - โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” - โ”‚ - Very Long - โ”‚ - Short - โ”‚ - Another - โ”‚ - โ”‚ - Bold Header - โ”‚ - โ”‚ - Long - โ”‚ - โ”‚ - That Will - โ”‚ - โ”‚ - Header - โ”‚ - โ”‚ - Wrap - โ”‚ - โ”‚ - โ”‚ - โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค - โ”‚ + โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” + โ”‚ + Very Long + โ”‚ + Short + โ”‚ + Another + โ”‚ + โ”‚ + Bold Header + โ”‚ + โ”‚ + Long + โ”‚ + โ”‚ + That Will + โ”‚ + โ”‚ + Header + โ”‚ + โ”‚ + Wrap + โ”‚ + โ”‚ + โ”‚ + โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค + โ”‚ Data 1 - โ”‚ + โ”‚ Data - โ”‚ + โ”‚ Data 3 - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ 2 - โ”‚ - โ”‚ - โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ + โ”‚ + โ”‚ + โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ \ No newline at end of file diff --git a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-a-3x3-table-correctly.snap.svg b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-a-3x3-table-correctly.snap.svg index ef39407726..658756930e 100644 --- a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-a-3x3-table-correctly.snap.svg +++ b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-a-3x3-table-correctly.snap.svg @@ -4,36 +4,36 @@ - โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” - โ”‚ - Header 1 - โ”‚ - Header 2 - โ”‚ - Header 3 - โ”‚ - โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค - โ”‚ + โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” + โ”‚ + Header 1 + โ”‚ + Header 2 + โ”‚ + Header 3 + โ”‚ + โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค + โ”‚ Row 1, Col 1 - โ”‚ + โ”‚ Row 1, Col 2 - โ”‚ + โ”‚ Row 1, Col 3 - โ”‚ - โ”‚ + โ”‚ + โ”‚ Row 2, Col 1 - โ”‚ + โ”‚ Row 2, Col 2 - โ”‚ + โ”‚ Row 2, Col 3 - โ”‚ - โ”‚ + โ”‚ + โ”‚ Row 3, Col 1 - โ”‚ + โ”‚ Row 3, Col 2 - โ”‚ + โ”‚ Row 3, Col 3 - โ”‚ - โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ + โ”‚ + โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ \ No newline at end of file diff --git a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-a-complex-table-with-mixed-content-lengths-correctly.snap.svg b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-a-complex-table-with-mixed-content-lengths-correctly.snap.svg index 251476d9e1..50230293e7 100644 --- a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-a-complex-table-with-mixed-content-lengths-correctly.snap.svg +++ b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-a-complex-table-with-mixed-content-lengths-correctly.snap.svg @@ -4,398 +4,398 @@ - โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” - โ”‚ - Comprehensive Architectural - โ”‚ - Implementation Details for - โ”‚ - Longitudinal Performance - โ”‚ - Strategic Security Framework - โ”‚ - Key - โ”‚ - Status - โ”‚ - Version - โ”‚ - Owner - โ”‚ - โ”‚ - Specification for the - โ”‚ - the High-Throughput - โ”‚ - Analysis Across - โ”‚ - for Mitigating Sophisticated - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - Distributed Infrastructure - โ”‚ - Asynchronous Message - โ”‚ - Multi-Regional Cloud - โ”‚ - Cross-Site Scripting - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - Layer - โ”‚ - Processing Pipeline with - โ”‚ - Deployment Clusters - โ”‚ - Vulnerabilities - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - Extended Scalability - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - Features and Redundancy - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - Protocols - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค - โ”‚ + โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” + โ”‚ + Comprehensive Architectural + โ”‚ + Implementation Details for + โ”‚ + Longitudinal Performance + โ”‚ + Strategic Security Framework + โ”‚ + Key + โ”‚ + Status + โ”‚ + Version + โ”‚ + Owner + โ”‚ + โ”‚ + Specification for the + โ”‚ + the High-Throughput + โ”‚ + Analysis Across + โ”‚ + for Mitigating Sophisticated + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + Distributed Infrastructure + โ”‚ + Asynchronous Message + โ”‚ + Multi-Regional Cloud + โ”‚ + Cross-Site Scripting + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + Layer + โ”‚ + Processing Pipeline with + โ”‚ + Deployment Clusters + โ”‚ + Vulnerabilities + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + Extended Scalability + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + Features and Redundancy + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + Protocols + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค + โ”‚ The primary architecture - โ”‚ + โ”‚ Each message is processed - โ”‚ + โ”‚ Historical data indicates a - โ”‚ + โ”‚ A multi-layered defense - โ”‚ + โ”‚ INF - โ”‚ + โ”‚ Active - โ”‚ + โ”‚ v2.4 - โ”‚ + โ”‚ J. - โ”‚ - โ”‚ + โ”‚ + โ”‚ utilizes a decoupled - โ”‚ + โ”‚ through a series of - โ”‚ + โ”‚ significant reduction in - โ”‚ + โ”‚ strategy incorporates - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Doe - โ”‚ - โ”‚ + โ”‚ + โ”‚ microservices approach, - โ”‚ + โ”‚ specialized workers that - โ”‚ + โ”‚ tail latency when utilizing - โ”‚ + โ”‚ content security policies, - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ leveraging container - โ”‚ + โ”‚ handle data transformation, - โ”‚ + โ”‚ edge computing nodes closer - โ”‚ + โ”‚ input sanitization - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ orchestration for - โ”‚ + โ”‚ validation, and persistent - โ”‚ + โ”‚ to the geographic location - โ”‚ + โ”‚ libraries, and regular - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ scalability and fault - โ”‚ + โ”‚ storage using a persistent - โ”‚ + โ”‚ of the end-user base. - โ”‚ + โ”‚ automated penetration - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ tolerance in high-load - โ”‚ + โ”‚ queue. - โ”‚ - โ”‚ + โ”‚ + โ”‚ testing routines. - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ scenarios. - โ”‚ - โ”‚ + โ”‚ + โ”‚ Monitoring tools have - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ The pipeline features - โ”‚ + โ”‚ captured a steady increase - โ”‚ + โ”‚ Developers are required to - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ This layer provides the - โ”‚ + โ”‚ built-in retry mechanisms - โ”‚ + โ”‚ in throughput efficiency - โ”‚ + โ”‚ undergo mandatory security - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ fundamental building blocks - โ”‚ + โ”‚ with exponential backoff to - โ”‚ + โ”‚ since the introduction of - โ”‚ + โ”‚ training focusing on the - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ for service discovery, load - โ”‚ + โ”‚ ensure message delivery - โ”‚ + โ”‚ the vectorized query engine - โ”‚ + โ”‚ OWASP Top Ten to ensure that - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ balancing, and - โ”‚ + โ”‚ integrity even during - โ”‚ + โ”‚ in the primary data - โ”‚ + โ”‚ security is integrated into - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ inter-service communication - โ”‚ + โ”‚ transient network or service - โ”‚ + โ”‚ warehouse. - โ”‚ + โ”‚ the initial design phase. - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ via highly efficient - โ”‚ + โ”‚ failures. - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ protocol buffers. - โ”‚ - โ”‚ + โ”‚ + โ”‚ Resource utilization - โ”‚ + โ”‚ The implementation of a - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Horizontal autoscaling is - โ”‚ + โ”‚ metrics demonstrate that - โ”‚ + โ”‚ robust Identity and Access - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Advanced telemetry and - โ”‚ + โ”‚ triggered automatically - โ”‚ + โ”‚ the transition to - โ”‚ + โ”‚ Management system ensures - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ logging integrations allow - โ”‚ + โ”‚ based on the depth of the - โ”‚ + โ”‚ serverless compute for - โ”‚ + โ”‚ that the principle of least - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ for real-time monitoring of - โ”‚ + โ”‚ processing queue, ensuring - โ”‚ + โ”‚ intermittent tasks has - โ”‚ + โ”‚ privilege is strictly - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ system health and rapid - โ”‚ + โ”‚ consistent performance - โ”‚ + โ”‚ resulted in a thirty - โ”‚ + โ”‚ enforced across all - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ identification of - โ”‚ + โ”‚ during unexpected traffic - โ”‚ + โ”‚ percent cost optimization. - โ”‚ + โ”‚ environments. - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ bottlenecks within the - โ”‚ + โ”‚ spikes. - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ service mesh. - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ”‚ - โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ \ No newline at end of file diff --git a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-a-table-with-long-headers-and-4-columns-correctly.snap.svg b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-a-table-with-long-headers-and-4-columns-correctly.snap.svg index 828c7fd9fa..d74bedaefa 100644 --- a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-a-table-with-long-headers-and-4-columns-correctly.snap.svg +++ b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-a-table-with-long-headers-and-4-columns-correctly.snap.svg @@ -4,60 +4,60 @@ - โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” - โ”‚ - Very Long - โ”‚ - Very Long - โ”‚ - Very Long Column - โ”‚ - Very Long Column - โ”‚ - โ”‚ - Column Header - โ”‚ - Column Header - โ”‚ - Header Three - โ”‚ - Header Four - โ”‚ - โ”‚ - One - โ”‚ - Two - โ”‚ - โ”‚ - โ”‚ - โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค - โ”‚ + โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” + โ”‚ + Very Long + โ”‚ + Very Long + โ”‚ + Very Long Column + โ”‚ + Very Long Column + โ”‚ + โ”‚ + Column Header + โ”‚ + Column Header + โ”‚ + Header Three + โ”‚ + Header Four + โ”‚ + โ”‚ + One + โ”‚ + Two + โ”‚ + โ”‚ + โ”‚ + โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค + โ”‚ Data 1.1 - โ”‚ + โ”‚ Data 1.2 - โ”‚ + โ”‚ Data 1.3 - โ”‚ + โ”‚ Data 1.4 - โ”‚ - โ”‚ + โ”‚ + โ”‚ Data 2.1 - โ”‚ + โ”‚ Data 2.2 - โ”‚ + โ”‚ Data 2.3 - โ”‚ + โ”‚ Data 2.4 - โ”‚ - โ”‚ + โ”‚ + โ”‚ Data 3.1 - โ”‚ + โ”‚ Data 3.2 - โ”‚ + โ”‚ Data 3.3 - โ”‚ + โ”‚ Data 3.4 - โ”‚ - โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ + โ”‚ + โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ \ No newline at end of file diff --git a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-a-table-with-mixed-emojis-As-.snap.svg b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-a-table-with-mixed-emojis-As-.snap.svg index 3e76bc05e3..06e999425d 100644 --- a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-a-table-with-mixed-emojis-As-.snap.svg +++ b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-a-table-with-mixed-emojis-As-.snap.svg @@ -4,29 +4,29 @@ - โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” - โ”‚ - Mixed ๐Ÿ˜ƒ ไธญๆ–‡ - โ”‚ - Complex ๐Ÿš€ ๆ—ฅๆœฌ่ชž - โ”‚ - Text ๐Ÿ“ ํ•œ๊ตญ์–ด - โ”‚ - โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค - โ”‚ + โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” + โ”‚ + Mixed ๐Ÿ˜ƒ ไธญๆ–‡ + โ”‚ + Complex ๐Ÿš€ ๆ—ฅๆœฌ่ชž + โ”‚ + Text ๐Ÿ“ ํ•œ๊ตญ์–ด + โ”‚ + โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค + โ”‚ ไฝ ๅฅฝ ๐Ÿ˜ƒ - โ”‚ + โ”‚ ใ“ใ‚“ใซใกใฏ ๐Ÿš€ - โ”‚ + โ”‚ ์•ˆ๋…•ํ•˜์„ธ์š” ๐Ÿ“ - โ”‚ - โ”‚ + โ”‚ + โ”‚ World ๐ŸŒ - โ”‚ + โ”‚ Code ๐Ÿ’ป - โ”‚ + โ”‚ Pizza ๐Ÿ• - โ”‚ - โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ + โ”‚ + โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ \ No newline at end of file diff --git a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-a-table-with-only-Asian-chara-.snap.svg b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-a-table-with-only-Asian-chara-.snap.svg index 7f31b51548..6ecfab5756 100644 --- a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-a-table-with-only-Asian-chara-.snap.svg +++ b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-a-table-with-only-Asian-chara-.snap.svg @@ -4,29 +4,29 @@ - โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” - โ”‚ - Chinese ไธญๆ–‡ - โ”‚ - Japanese ๆ—ฅๆœฌ่ชž - โ”‚ - Korean ํ•œ๊ตญ์–ด - โ”‚ - โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค - โ”‚ + โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” + โ”‚ + Chinese ไธญๆ–‡ + โ”‚ + Japanese ๆ—ฅๆœฌ่ชž + โ”‚ + Korean ํ•œ๊ตญ์–ด + โ”‚ + โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค + โ”‚ ไฝ ๅฅฝ - โ”‚ + โ”‚ ใ“ใ‚“ใซใกใฏ - โ”‚ + โ”‚ ์•ˆ๋…•ํ•˜์„ธ์š” - โ”‚ - โ”‚ + โ”‚ + โ”‚ ไธ–็•Œ - โ”‚ + โ”‚ ไธ–็•Œ - โ”‚ + โ”‚ ์„ธ๊ณ„ - โ”‚ - โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ + โ”‚ + โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ \ No newline at end of file diff --git a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-a-table-with-only-emojis-and-.snap.svg b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-a-table-with-only-emojis-and-.snap.svg index a3abd45c53..80066df9ee 100644 --- a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-a-table-with-only-emojis-and-.snap.svg +++ b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-a-table-with-only-emojis-and-.snap.svg @@ -4,29 +4,29 @@ - โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” - โ”‚ - Happy ๐Ÿ˜€ - โ”‚ - Rocket ๐Ÿš€ - โ”‚ - Heart โค๏ธ - โ”‚ - โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค - โ”‚ + โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” + โ”‚ + Happy ๐Ÿ˜€ + โ”‚ + Rocket ๐Ÿš€ + โ”‚ + Heart โค๏ธ + โ”‚ + โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค + โ”‚ Smile ๐Ÿ˜ƒ - โ”‚ + โ”‚ Fire ๐Ÿ”ฅ - โ”‚ + โ”‚ Love ๐Ÿ’– - โ”‚ - โ”‚ + โ”‚ + โ”‚ Cool ๐Ÿ˜Ž - โ”‚ + โ”‚ Star โญ - โ”‚ + โ”‚ Blue ๐Ÿ’™ - โ”‚ - โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ + โ”‚ + โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ \ No newline at end of file diff --git a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-complex-markdown-in-rows-and-.snap.svg b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-complex-markdown-in-rows-and-.snap.svg index b48572438b..c061cb3efc 100644 --- a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-complex-markdown-in-rows-and-.snap.svg +++ b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-complex-markdown-in-rows-and-.snap.svg @@ -4,50 +4,50 @@ - โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” - โ”‚ - Feature - โ”‚ - Markdown - โ”‚ - โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค - โ”‚ + โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” + โ”‚ + Feature + โ”‚ + Markdown + โ”‚ + โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค + โ”‚ Bold - โ”‚ + โ”‚ Bold Text - โ”‚ - โ”‚ + โ”‚ + โ”‚ Italic - โ”‚ + โ”‚ Italic Text - โ”‚ - โ”‚ + โ”‚ + โ”‚ Combined - โ”‚ + โ”‚ Bold and Italic - โ”‚ - โ”‚ + โ”‚ + โ”‚ Link - โ”‚ + โ”‚ Google ( - https://google.com + https://google.com ) - โ”‚ - โ”‚ + โ”‚ + โ”‚ Code - โ”‚ + โ”‚ const x = 1 - โ”‚ - โ”‚ + โ”‚ + โ”‚ Strikethrough - โ”‚ + โ”‚ Strike - โ”‚ - โ”‚ + โ”‚ + โ”‚ Underline - โ”‚ + โ”‚ Underline - โ”‚ - โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ + โ”‚ + โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ \ No newline at end of file diff --git a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-correctly-when-headers-are-em-.snap.svg b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-correctly-when-headers-are-em-.snap.svg index 180c7aeb56..06b6e78c83 100644 --- a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-correctly-when-headers-are-em-.snap.svg +++ b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-correctly-when-headers-are-em-.snap.svg @@ -4,16 +4,16 @@ - โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” - โ”‚ - โ”‚ - โ”‚ - โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค - โ”‚ + โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” + โ”‚ + โ”‚ + โ”‚ + โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค + โ”‚ Data 1 - โ”‚ + โ”‚ Data 2 - โ”‚ - โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ + โ”‚ + โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ \ No newline at end of file diff --git a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-correctly-when-there-are-more-.snap.svg b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-correctly-when-there-are-more-.snap.svg index 685260b84d..5a088e5252 100644 --- a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-correctly-when-there-are-more-.snap.svg +++ b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-renders-correctly-when-there-are-more-.snap.svg @@ -4,21 +4,21 @@ - โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” - โ”‚ - Header 1 - โ”‚ - Header 2 - โ”‚ - Header 3 - โ”‚ - โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค - โ”‚ + โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” + โ”‚ + Header 1 + โ”‚ + Header 2 + โ”‚ + Header 3 + โ”‚ + โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค + โ”‚ Data 1 - โ”‚ + โ”‚ Data 2 - โ”‚ - โ”‚ - โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ + โ”‚ + โ”‚ + โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ \ No newline at end of file diff --git a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-strips-bold-markers-from-headers-and-renders-them-correctly.snap.svg b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-strips-bold-markers-from-headers-and-renders-them-correctly.snap.svg index bc33d9e78a..b8812b1318 100644 --- a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-strips-bold-markers-from-headers-and-renders-them-correctly.snap.svg +++ b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-strips-bold-markers-from-headers-and-renders-them-correctly.snap.svg @@ -4,22 +4,22 @@ - โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” - โ”‚ - Bold Header - โ”‚ - Normal Header - โ”‚ - Another Bold - โ”‚ - โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค - โ”‚ + โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” + โ”‚ + Bold Header + โ”‚ + Normal Header + โ”‚ + Another Bold + โ”‚ + โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค + โ”‚ Data 1 - โ”‚ + โ”‚ Data 2 - โ”‚ + โ”‚ Data 3 - โ”‚ - โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ + โ”‚ + โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ \ No newline at end of file diff --git a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-wraps-all-long-columns-correctly.snap.svg b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-wraps-all-long-columns-correctly.snap.svg index d69f29ece4..843d0cb30f 100644 --- a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-wraps-all-long-columns-correctly.snap.svg +++ b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-wraps-all-long-columns-correctly.snap.svg @@ -4,49 +4,49 @@ - โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” - โ”‚ - Col 1 - โ”‚ - Col 2 - โ”‚ - Col 3 - โ”‚ - โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค - โ”‚ + โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” + โ”‚ + Col 1 + โ”‚ + Col 2 + โ”‚ + Col 3 + โ”‚ + โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค + โ”‚ This is a very - โ”‚ + โ”‚ This is also a - โ”‚ + โ”‚ And this is the - โ”‚ - โ”‚ + โ”‚ + โ”‚ long text that - โ”‚ + โ”‚ very long text - โ”‚ + โ”‚ third long text - โ”‚ - โ”‚ + โ”‚ + โ”‚ needs wrapping - โ”‚ + โ”‚ that needs - โ”‚ + โ”‚ that needs - โ”‚ - โ”‚ + โ”‚ + โ”‚ in column 1 - โ”‚ + โ”‚ wrapping in - โ”‚ + โ”‚ wrapping in - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ column 2 - โ”‚ + โ”‚ column 3 - โ”‚ - โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ + โ”‚ + โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ \ No newline at end of file diff --git a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-wraps-columns-with-punctuation-correctly.snap.svg b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-wraps-columns-with-punctuation-correctly.snap.svg index f16cdd29ae..6da29803e4 100644 --- a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-wraps-columns-with-punctuation-correctly.snap.svg +++ b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-wraps-columns-with-punctuation-correctly.snap.svg @@ -4,48 +4,48 @@ - โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” - โ”‚ - Punctuation 1 - โ”‚ - Punctuation 2 - โ”‚ - Punctuation 3 - โ”‚ - โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค - โ”‚ + โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” + โ”‚ + Punctuation 1 + โ”‚ + Punctuation 2 + โ”‚ + Punctuation 3 + โ”‚ + โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค + โ”‚ Start. Stop. - โ”‚ + โ”‚ Semi; colon: - โ”‚ + โ”‚ At@ Hash# - โ”‚ - โ”‚ + โ”‚ + โ”‚ Comma, separated. - โ”‚ + โ”‚ Pipe| Slash/ - โ”‚ + โ”‚ Dollar$ - โ”‚ - โ”‚ + โ”‚ + โ”‚ Exclamation! - โ”‚ + โ”‚ Backslash\ - โ”‚ + โ”‚ Percent% Caret^ - โ”‚ - โ”‚ + โ”‚ + โ”‚ Question? - โ”‚ - โ”‚ + โ”‚ + โ”‚ Ampersand& - โ”‚ - โ”‚ + โ”‚ + โ”‚ hyphen-ated - โ”‚ - โ”‚ + โ”‚ + โ”‚ Asterisk* - โ”‚ - โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ + โ”‚ + โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ \ No newline at end of file diff --git a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-wraps-long-cell-content-correctly.snap.svg b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-wraps-long-cell-content-correctly.snap.svg index f46137df13..7cd2e73d1a 100644 --- a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-wraps-long-cell-content-correctly.snap.svg +++ b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-wraps-long-cell-content-correctly.snap.svg @@ -4,32 +4,32 @@ - โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” - โ”‚ - Col 1 - โ”‚ - Col 2 - โ”‚ - Col 3 - โ”‚ - โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค - โ”‚ + โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” + โ”‚ + Col 1 + โ”‚ + Col 2 + โ”‚ + Col 3 + โ”‚ + โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค + โ”‚ Short - โ”‚ + โ”‚ This is a very long cell - โ”‚ + โ”‚ Short - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ content that should wrap to - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ multiple lines - โ”‚ - โ”‚ - โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ + โ”‚ + โ”‚ + โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ \ No newline at end of file diff --git a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-wraps-mixed-long-and-short-columns-correctly.snap.svg b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-wraps-mixed-long-and-short-columns-correctly.snap.svg index f517dc3632..20886ddde0 100644 --- a/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-wraps-mixed-long-and-short-columns-correctly.snap.svg +++ b/packages/cli/src/ui/utils/__snapshots__/TableRenderer-TableRenderer-wraps-mixed-long-and-short-columns-correctly.snap.svg @@ -4,33 +4,33 @@ - โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” - โ”‚ - Short - โ”‚ - Long - โ”‚ - Medium - โ”‚ - โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค - โ”‚ + โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ฌโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ” + โ”‚ + Short + โ”‚ + Long + โ”‚ + Medium + โ”‚ + โ”œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ผโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ค + โ”‚ Tiny - โ”‚ + โ”‚ This is a very long text - โ”‚ + โ”‚ Not so - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ that definitely needs to - โ”‚ + โ”‚ long - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ wrap to the next line - โ”‚ - โ”‚ - โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ + โ”‚ + โ”‚ + โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”ดโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜ \ No newline at end of file diff --git a/packages/cli/src/ui/utils/__snapshots__/borderStyles-MainContent-tool-group-border-SVG-snapshots-should-render-SVG-snapshot-for-a-pending-search-dialog-google_web_search-.snap.svg b/packages/cli/src/ui/utils/__snapshots__/borderStyles-MainContent-tool-group-border-SVG-snapshots-should-render-SVG-snapshot-for-a-pending-search-dialog-google_web_search-.snap.svg index 6a693d318b..eb10cd4da3 100644 --- a/packages/cli/src/ui/utils/__snapshots__/borderStyles-MainContent-tool-group-border-SVG-snapshots-should-render-SVG-snapshot-for-a-pending-search-dialog-google_web_search-.snap.svg +++ b/packages/cli/src/ui/utils/__snapshots__/borderStyles-MainContent-tool-group-border-SVG-snapshots-should-render-SVG-snapshot-for-a-pending-search-dialog-google_web_search-.snap.svg @@ -4,19 +4,20 @@ - โ– - โ–œ - โ–„ - Gemini CLI - v1.2.3 - โ– - โ–œ - โ–„ - โ–— - โ–Ÿ - โ–€ - โ– - โ–€ + โ– + โ–œ + โ–„ + Gemini CLI + v1.2.3 + โ– + โ–œ + โ–„ + โ–— + โ–Ÿ + โ–€ + โ–— + โ–Ÿ + โ–€ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ โ”‚ โŠถ diff --git a/packages/cli/src/ui/utils/__snapshots__/borderStyles-MainContent-tool-group-border-SVG-snapshots-should-render-SVG-snapshot-for-a-shell-tool.snap.svg b/packages/cli/src/ui/utils/__snapshots__/borderStyles-MainContent-tool-group-border-SVG-snapshots-should-render-SVG-snapshot-for-a-shell-tool.snap.svg index 1c0ff4b121..51e316986f 100644 --- a/packages/cli/src/ui/utils/__snapshots__/borderStyles-MainContent-tool-group-border-SVG-snapshots-should-render-SVG-snapshot-for-a-shell-tool.snap.svg +++ b/packages/cli/src/ui/utils/__snapshots__/borderStyles-MainContent-tool-group-border-SVG-snapshots-should-render-SVG-snapshot-for-a-shell-tool.snap.svg @@ -4,29 +4,30 @@ - โ– - โ–œ - โ–„ - Gemini CLI - v1.2.3 - โ– - โ–œ - โ–„ - โ–— - โ–Ÿ - โ–€ - โ– - โ–€ - โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ - โ”‚ - โŠถ + โ– + โ–œ + โ–„ + Gemini CLI + v1.2.3 + โ– + โ–œ + โ–„ + โ–— + โ–Ÿ + โ–€ + โ–— + โ–Ÿ + โ–€ + โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ + โ”‚ + โŠถ run_shell_command - โ”‚ - โ”‚ - โ”‚ - โ”‚ + โ”‚ + โ”‚ + โ”‚ + โ”‚ Running command... - โ”‚ - โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ + โ”‚ + โ•ฐโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฏ \ No newline at end of file diff --git a/packages/cli/src/ui/utils/__snapshots__/borderStyles-MainContent-tool-group-border-SVG-snapshots-should-render-SVG-snapshot-for-an-empty-slice-following-a-search-tool.snap.svg b/packages/cli/src/ui/utils/__snapshots__/borderStyles-MainContent-tool-group-border-SVG-snapshots-should-render-SVG-snapshot-for-an-empty-slice-following-a-search-tool.snap.svg index 6a693d318b..eb10cd4da3 100644 --- a/packages/cli/src/ui/utils/__snapshots__/borderStyles-MainContent-tool-group-border-SVG-snapshots-should-render-SVG-snapshot-for-an-empty-slice-following-a-search-tool.snap.svg +++ b/packages/cli/src/ui/utils/__snapshots__/borderStyles-MainContent-tool-group-border-SVG-snapshots-should-render-SVG-snapshot-for-an-empty-slice-following-a-search-tool.snap.svg @@ -4,19 +4,20 @@ - โ– - โ–œ - โ–„ - Gemini CLI - v1.2.3 - โ– - โ–œ - โ–„ - โ–— - โ–Ÿ - โ–€ - โ– - โ–€ + โ– + โ–œ + โ–„ + Gemini CLI + v1.2.3 + โ– + โ–œ + โ–„ + โ–— + โ–Ÿ + โ–€ + โ–— + โ–Ÿ + โ–€ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ โ”‚ โŠถ diff --git a/packages/cli/src/ui/utils/__snapshots__/borderStyles.test.tsx.snap b/packages/cli/src/ui/utils/__snapshots__/borderStyles.test.tsx.snap index bdf1e95332..f096fe4986 100644 --- a/packages/cli/src/ui/utils/__snapshots__/borderStyles.test.tsx.snap +++ b/packages/cli/src/ui/utils/__snapshots__/borderStyles.test.tsx.snap @@ -2,10 +2,10 @@ exports[`MainContent tool group border SVG snapshots > should render SVG snapshot for a pending search dialog (google_web_search) 1`] = ` " - โ–โ–œโ–„ Gemini CLI v1.2.3 + โ–โ–œโ–„ Gemini CLI v1.2.3 โ–โ–œโ–„ - โ–—โ–Ÿโ–€ - โ–โ–€ + โ–—โ–Ÿโ–€ + โ–—โ–Ÿโ–€ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ โ”‚ โŠถ google_web_search โ”‚ @@ -16,10 +16,10 @@ exports[`MainContent tool group border SVG snapshots > should render SVG snapsho exports[`MainContent tool group border SVG snapshots > should render SVG snapshot for a shell tool 1`] = ` " - โ–โ–œโ–„ Gemini CLI v1.2.3 + โ–โ–œโ–„ Gemini CLI v1.2.3 โ–โ–œโ–„ - โ–—โ–Ÿโ–€ - โ–โ–€ + โ–—โ–Ÿโ–€ + โ–—โ–Ÿโ–€ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ โ”‚ โŠถ run_shell_command โ”‚ @@ -30,10 +30,10 @@ exports[`MainContent tool group border SVG snapshots > should render SVG snapsho exports[`MainContent tool group border SVG snapshots > should render SVG snapshot for an empty slice following a search tool 1`] = ` " - โ–โ–œโ–„ Gemini CLI v1.2.3 + โ–โ–œโ–„ Gemini CLI v1.2.3 โ–โ–œโ–„ - โ–—โ–Ÿโ–€ - โ–โ–€ + โ–—โ–Ÿโ–€ + โ–—โ–Ÿโ–€ โ•ญโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ•ฎ โ”‚ โŠถ google_web_search โ”‚