@opencode/ui 0.0.0-dev-19407 → 0.0.0-dev-19413
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
|
@@ -94,6 +94,11 @@ declare const source: {
|
|
|
94
94
|
"ui.messagePart.review.title": string;
|
|
95
95
|
"ui.messagePart.questions.dismissed": string;
|
|
96
96
|
"ui.messagePart.compaction": string;
|
|
97
|
+
"ui.messagePart.compaction.started": string;
|
|
98
|
+
"ui.messagePart.compaction.running": string;
|
|
99
|
+
"ui.messagePart.compaction.failed": string;
|
|
100
|
+
"ui.messagePart.compaction.cancelled": string;
|
|
101
|
+
"ui.messagePart.compaction.interrupted": string;
|
|
97
102
|
"ui.messagePart.providerCompaction": string;
|
|
98
103
|
"ui.messagePart.compaction.usage": string;
|
|
99
104
|
"ui.messagePart.context.details": string;
|
package/package.json
CHANGED
|
@@ -260,20 +260,19 @@
|
|
|
260
260
|
--menu-v2-fg-muted: var(--v2-text-text-faint);
|
|
261
261
|
--menu-v2-fg-subtle: var(--v2-text-text-muted);
|
|
262
262
|
--menu-v2-icon: var(--v2-icon-icon-base);
|
|
263
|
-
--menu-v2-accent: var(--v2-text-text-accent);
|
|
264
263
|
--menu-v2-badge-bg: var(--v2-background-bg-layer-02);
|
|
265
264
|
--menu-v2-badge-border: var(--v2-border-border-base);
|
|
266
265
|
--menu-v2-hover: var(--v2-overlay-simple-overlay-hover);
|
|
267
266
|
}
|
|
268
267
|
|
|
269
|
-
/* Listbox uses data-selected; menu item CSS uses data-checked — mirror
|
|
268
|
+
/* Listbox uses data-selected; menu item CSS uses data-checked — mirror selection styling */
|
|
270
269
|
[data-slot="select-v2-listbox"] [data-component="menu-v2-item"][data-selected] [data-slot="menu-v2-item-content"] {
|
|
271
|
-
font-weight:
|
|
272
|
-
color: var(--menu-v2-
|
|
270
|
+
font-weight: 440;
|
|
271
|
+
color: var(--menu-v2-fg);
|
|
273
272
|
}
|
|
274
273
|
|
|
275
274
|
[data-slot="select-v2-listbox"] [data-component="menu-v2-item"][data-selected] [data-slot="menu-v2-item-indicator"] {
|
|
276
|
-
color: var(--menu-v2-
|
|
275
|
+
color: var(--menu-v2-icon);
|
|
277
276
|
}
|
|
278
277
|
|
|
279
278
|
[data-slot="select-v2-listbox"]
|
package/src/i18n/en.ts
CHANGED
|
@@ -104,6 +104,11 @@ const source = {
|
|
|
104
104
|
"ui.messagePart.review.title": "Review your answers",
|
|
105
105
|
"ui.messagePart.questions.dismissed": "Questions dismissed",
|
|
106
106
|
"ui.messagePart.compaction": "Session compacted",
|
|
107
|
+
"ui.messagePart.compaction.started": "Session compaction started",
|
|
108
|
+
"ui.messagePart.compaction.running": "Compacting",
|
|
109
|
+
"ui.messagePart.compaction.failed": "Session compaction failed",
|
|
110
|
+
"ui.messagePart.compaction.cancelled": "Session compaction cancelled",
|
|
111
|
+
"ui.messagePart.compaction.interrupted": "Session compaction interrupted",
|
|
107
112
|
"ui.messagePart.providerCompaction": "Session compacted by provider",
|
|
108
113
|
"ui.messagePart.compaction.usage": "{{input}} in · {{output}} out",
|
|
109
114
|
"ui.messagePart.context.details": "Details",
|
|
@@ -40,7 +40,6 @@
|
|
|
40
40
|
--menu-v2-fg-muted: var(--v2-text-text-faint);
|
|
41
41
|
--menu-v2-fg-subtle: var(--v2-text-text-muted);
|
|
42
42
|
--menu-v2-icon: var(--v2-icon-icon-base);
|
|
43
|
-
--menu-v2-accent: var(--v2-text-text-accent);
|
|
44
43
|
--menu-v2-badge-bg: var(--v2-background-bg-layer-02);
|
|
45
44
|
--menu-v2-badge-border: var(--v2-border-border-base);
|
|
46
45
|
--menu-v2-hover: var(--v2-overlay-simple-overlay-hover);
|
|
@@ -146,12 +145,12 @@
|
|
|
146
145
|
}
|
|
147
146
|
|
|
148
147
|
&[data-checked] [data-slot="menu-v2-item-content"] {
|
|
149
|
-
font-weight:
|
|
150
|
-
color: var(--menu-v2-
|
|
148
|
+
font-weight: 440;
|
|
149
|
+
color: var(--menu-v2-fg);
|
|
151
150
|
}
|
|
152
151
|
|
|
153
152
|
&[data-checked] [data-slot="menu-v2-item-indicator"] {
|
|
154
|
-
color: var(--menu-v2-
|
|
153
|
+
color: var(--menu-v2-icon);
|
|
155
154
|
}
|
|
156
155
|
|
|
157
156
|
&[data-disabled] {
|