@opencode-ai/ui 0.0.0-dev-17900 → 0.0.0-dev-17902

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/i18n/en.d.ts CHANGED
@@ -150,6 +150,7 @@ declare const source: {
150
150
  "ui.tool.questions.numbered": string;
151
151
  "ui.tool.agent": string;
152
152
  "ui.tool.agent.default": string;
153
+ "ui.tool.agent.delegating": string;
153
154
  "ui.tool.skill": string;
154
155
  "ui.basicTool.called": string;
155
156
  "ui.toolErrorCard.failed": string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opencode-ai/ui",
3
- "version": "0.0.0-dev-17900",
3
+ "version": "0.0.0-dev-17902",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "repository": {
package/src/i18n/en.ts CHANGED
@@ -168,6 +168,7 @@ const source = {
168
168
  "ui.tool.questions.numbered": "Questions {{number}}",
169
169
  "ui.tool.agent": "{{type}} Agent",
170
170
  "ui.tool.agent.default": "Agent",
171
+ "ui.tool.agent.delegating": "Delegating agent...",
171
172
  "ui.tool.skill": "Skill",
172
173
 
173
174
  "ui.basicTool.called": "Called `{{tool}}`",
@@ -252,6 +252,7 @@
252
252
  --color-v2-text-text-code-accent: var(--v2-text-text-code-accent);
253
253
  --color-v2-icon-icon-base: var(--v2-icon-icon-base);
254
254
  --color-v2-icon-icon-muted: var(--v2-icon-icon-muted);
255
+ --color-v2-icon-icon-faint: var(--v2-icon-icon-faint);
255
256
  --color-v2-icon-icon-inverse: var(--v2-icon-icon-inverse);
256
257
  --color-v2-icon-icon-contrast: var(--v2-icon-icon-contrast);
257
258
  --color-v2-icon-icon-accent: var(--v2-icon-icon-accent);
@@ -27,6 +27,7 @@
27
27
  /* ── Icon ── */
28
28
  --v2-icon-icon-base: var(--v2-grey-800);
29
29
  --v2-icon-icon-muted: var(--v2-grey-600);
30
+ --v2-icon-icon-faint: var(--v2-grey-500);
30
31
  --v2-icon-icon-inverse: var(--v2-grey-50);
31
32
  --v2-icon-icon-contrast: var(--v2-grey-100);
32
33
  --v2-icon-icon-accent: var(--v2-blue-600);
@@ -158,6 +159,7 @@
158
159
 
159
160
  --v2-icon-icon-base: var(--v2-grey-400);
160
161
  --v2-icon-icon-muted: var(--v2-grey-600);
162
+ --v2-icon-icon-faint: var(--v2-grey-500);
161
163
  --v2-icon-icon-inverse: var(--v2-grey-1000);
162
164
  --v2-icon-icon-contrast: var(--v2-grey-200);
163
165
  --v2-icon-icon-accent: var(--v2-blue-400);
@@ -271,6 +273,7 @@
271
273
 
272
274
  --v2-icon-icon-base: var(--v2-grey-800);
273
275
  --v2-icon-icon-muted: var(--v2-grey-600);
276
+ --v2-icon-icon-faint: var(--v2-grey-500);
274
277
  --v2-icon-icon-inverse: var(--v2-grey-50);
275
278
  --v2-icon-icon-contrast: var(--v2-grey-100);
276
279
  --v2-icon-icon-accent: var(--v2-blue-600);
@@ -393,6 +396,7 @@
393
396
 
394
397
  --v2-icon-icon-base: var(--v2-grey-400);
395
398
  --v2-icon-icon-muted: var(--v2-grey-600);
399
+ --v2-icon-icon-faint: var(--v2-grey-500);
396
400
  --v2-icon-icon-inverse: var(--v2-grey-1100);
397
401
  --v2-icon-icon-contrast: var(--v2-grey-100);
398
402
  --v2-icon-icon-accent: var(--v2-blue-400);
@@ -176,6 +176,7 @@
176
176
  "v2-text-text-code-accent": "var(--v2-blue-900)",
177
177
  "v2-icon-icon-base": "var(--v2-grey-800)",
178
178
  "v2-icon-icon-muted": "var(--v2-grey-600)",
179
+ "v2-icon-icon-faint": "var(--v2-grey-500)",
179
180
  "v2-icon-icon-inverse": "var(--v2-grey-50)",
180
181
  "v2-icon-icon-contrast": "var(--v2-grey-100)",
181
182
  "v2-icon-icon-accent": "var(--v2-blue-600)",
@@ -411,6 +412,7 @@
411
412
  "v2-text-text-code-accent": "var(--v2-blue-400)",
412
413
  "v2-icon-icon-base": "var(--v2-grey-400)",
413
414
  "v2-icon-icon-muted": "var(--v2-grey-600)",
415
+ "v2-icon-icon-faint": "var(--v2-grey-500)",
414
416
  "v2-icon-icon-inverse": "var(--v2-grey-1100)",
415
417
  "v2-icon-icon-contrast": "var(--v2-grey-100)",
416
418
  "v2-icon-icon-accent": "var(--v2-blue-400)",
@@ -52,6 +52,7 @@ export function mapV2Foreground(
52
52
  "v2-text-text-faint": shift(body, { l: isDark ? -0.2 : 0.21, c: isDark ? 0.78 : 0.72 }),
53
53
  "v2-icon-icon-base": greyRef(pickGrey(primitives, bgBase, 7, isDark ? 400 : 800)),
54
54
  "v2-icon-icon-muted": greyRef(pickGrey(primitives, bgBase, 3, 600)),
55
+ "v2-icon-icon-faint": greyRef(pickGrey(primitives, bgBase, 1.5, 500)),
55
56
  "v2-icon-icon-inverse": greyRef(pickGrey(primitives, bgInverse, 7, inverseTarget)),
56
57
  "v2-icon-icon-contrast": greyRef(pickGrey(primitives, bgContrast, 7, 100)),
57
58
  "v2-icon-icon-accent": isDark ? "var(--v2-blue-400)" : "var(--v2-blue-600)",