@opencode-ai/ui 0.0.0-dev-18979 → 0.0.0-dev-18980
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 +3 -0
- package/package.json +1 -1
- package/src/forms/select/select.tsx +2 -0
- package/src/i18n/en.ts +3 -0
package/dist/i18n/en.d.ts
CHANGED
|
@@ -98,6 +98,9 @@ declare const source: {
|
|
|
98
98
|
"ui.messagePart.context.search.other": string;
|
|
99
99
|
"ui.messagePart.context.list.one": string;
|
|
100
100
|
"ui.messagePart.context.list.other": string;
|
|
101
|
+
"ui.messagePart.context.notice.one": string;
|
|
102
|
+
"ui.messagePart.context.notice.other": string;
|
|
103
|
+
"ui.messagePart.context.reasoning": string;
|
|
101
104
|
"ui.messagePart.context.match.one": string;
|
|
102
105
|
"ui.messagePart.context.match.other": string;
|
|
103
106
|
"ui.messagePart.tools.used": string;
|
package/package.json
CHANGED
|
@@ -181,6 +181,8 @@ export function Select<T>(props: SelectProps<T>) {
|
|
|
181
181
|
>
|
|
182
182
|
<Trigger
|
|
183
183
|
as="div"
|
|
184
|
+
aria-label={props["aria-label"]}
|
|
185
|
+
aria-labelledby={props["aria-labelledby"]}
|
|
184
186
|
data-component="select-v2"
|
|
185
187
|
data-appearance="inline"
|
|
186
188
|
data-invalid={local.invalid ? "" : undefined}
|
package/src/i18n/en.ts
CHANGED
|
@@ -108,6 +108,9 @@ const source = {
|
|
|
108
108
|
"ui.messagePart.context.search.other": "{{count}} searches",
|
|
109
109
|
"ui.messagePart.context.list.one": "{{count}} list",
|
|
110
110
|
"ui.messagePart.context.list.other": "{{count}} lists",
|
|
111
|
+
"ui.messagePart.context.notice.one": "{{count}} notice",
|
|
112
|
+
"ui.messagePart.context.notice.other": "{{count}} notices",
|
|
113
|
+
"ui.messagePart.context.reasoning": "Reasoning",
|
|
111
114
|
"ui.messagePart.context.match.one": "({{count}} match)",
|
|
112
115
|
"ui.messagePart.context.match.other": "({{count}} matches)",
|
|
113
116
|
"ui.messagePart.tools.used": "Used {{tools}}",
|