@opencode-ai/ui 0.0.0-dev-202609050337 → 0.0.0-dev-19144
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/actions/button/button.d.ts +10 -0
- package/dist/actions/icon-button/icon-button.d.ts +11 -0
- package/dist/actions/split-button/split-button.d.ts +5 -0
- package/dist/components/card.d.ts +1 -1
- package/dist/components/list.d.ts +1 -1
- package/dist/components/scroll-view.d.ts +3 -3
- package/dist/context/i18n.d.ts +10 -7
- package/dist/context/marked-base.d.ts +3 -0
- package/dist/context/marked-parser.d.ts +1 -2
- package/dist/{components → data-display/accordion}/accordion.d.ts +6 -6
- package/dist/{v2/components/avatar-v2.d.ts → data-display/avatar/avatar.d.ts} +1 -1
- package/dist/data-display/badge/badge.d.ts +7 -0
- package/dist/{components → data-display/diff-changes}/diff-changes.d.ts +2 -1
- package/dist/data-display/keybind/keybind.d.ts +7 -0
- package/dist/{v2/components/line-comment-v2.d.ts → data-display/line-comment/line-comment.d.ts} +9 -9
- package/dist/{v2/components/project-avatar-v2.d.ts → data-display/project-avatar/project-avatar.d.ts} +1 -1
- package/dist/feedback/loader/loader.d.ts +3 -0
- package/dist/{components → feedback/progress-circle}/progress-circle.d.ts +2 -0
- package/dist/feedback/toast/toast.d.ts +57 -0
- package/dist/{components → forms/checkbox}/checkbox.d.ts +2 -2
- package/dist/{v2/components/field-v2.d.ts → forms/field/field.d.ts} +4 -10
- package/dist/forms/radio/radio.d.ts +16 -0
- package/dist/{v2/components/select-v2.d.ts → forms/select/select.d.ts} +4 -6
- package/dist/{components → forms/switch}/switch.d.ts +4 -2
- package/dist/{v2/components/text-input-v2.d.ts → forms/text-input/text-input.d.ts} +3 -3
- package/dist/forms/textarea/textarea.d.ts +7 -0
- package/dist/hooks/use-filtered-list.d.ts +9 -0
- package/dist/i18n/ar.d.ts +0 -2
- package/dist/i18n/bg.d.ts +0 -2
- package/dist/i18n/br.d.ts +0 -2
- package/dist/i18n/bs.d.ts +0 -2
- package/dist/i18n/da.d.ts +0 -2
- package/dist/i18n/de.d.ts +0 -2
- package/dist/i18n/en.d.ts +242 -1
- package/dist/i18n/es.d.ts +0 -2
- package/dist/i18n/fr.d.ts +0 -2
- package/dist/i18n/he.d.ts +197 -0
- package/dist/i18n/ja.d.ts +0 -2
- package/dist/i18n/km.d.ts +0 -2
- package/dist/i18n/ko.d.ts +0 -2
- package/dist/i18n/lo.d.ts +0 -2
- package/dist/i18n/mk.d.ts +0 -2
- package/dist/i18n/mn.d.ts +0 -2
- package/dist/i18n/my.d.ts +0 -2
- package/dist/i18n/pl.d.ts +0 -2
- package/dist/i18n/ru.d.ts +0 -2
- package/dist/i18n/sr.d.ts +0 -2
- package/dist/i18n/tg.d.ts +0 -2
- package/dist/i18n/th.d.ts +0 -2
- package/dist/i18n/tr.d.ts +0 -2
- package/dist/i18n/zh.d.ts +0 -2
- package/dist/i18n/zht.d.ts +0 -2
- package/dist/{components/icon.d.ts → icons/icon/additional-icons.d.ts} +8 -8
- package/dist/{v2/components → icons/icon}/icon.d.ts +44 -1
- package/dist/layout/divider/divider.d.ts +5 -0
- package/dist/navigation/menu/menu.d.ts +59 -0
- package/dist/{v2/components/segmented-control-v2.d.ts → navigation/segmented-control/segmented-control.d.ts} +5 -5
- package/dist/{components → navigation/tabs}/tabs.d.ts +15 -8
- package/dist/{v2/components/dialog-v2.d.ts → overlays/dialog/dialog.d.ts} +1 -2
- package/dist/overlays/tooltip/tooltip.d.ts +15 -0
- package/dist/{components → typography/text-shimmer}/text-shimmer.d.ts +1 -0
- package/dist/typography/wordmark/wordmark.d.ts +2 -0
- package/package.json +141 -35
- package/src/{v2/components/button-v2.css → actions/button/button.css} +29 -0
- package/src/{components → actions/button}/button.tsx +19 -11
- package/src/actions/icon-button/icon-button.tsx +32 -0
- package/src/{v2/components/split-button-v2.css → actions/split-button/split-button.css} +2 -6
- package/src/{v2/components/split-button-v2.tsx → actions/split-button/split-button.tsx} +4 -4
- package/src/components/animated-number.css +29 -11
- package/src/components/animated-number.tsx +2 -2
- package/src/components/card.css +2 -23
- package/src/components/card.tsx +4 -4
- package/src/components/collapsible.tsx +2 -2
- package/src/components/dock-surface.css +2 -9
- package/src/components/image-preview.tsx +3 -2
- package/src/components/list.css +5 -5
- package/src/components/list.tsx +7 -5
- package/src/components/popover.tsx +3 -2
- package/src/components/scroll-view.tsx +5 -20
- package/src/components/sticky-accordion-header.tsx +1 -1
- package/src/components/text-field.tsx +12 -4
- package/src/context/dialog.tsx +1 -0
- package/src/context/i18n.tsx +17 -14
- package/src/context/marked-base.tsx +27 -0
- package/src/context/marked-parser.tsx +3 -13
- package/src/{components → data-display/accordion}/accordion.css +5 -31
- package/src/{components → data-display/accordion}/accordion.tsx +14 -14
- package/src/{v2/components/avatar-v2.tsx → data-display/avatar/avatar.tsx} +1 -1
- package/src/{v2/components/badge-v2.css → data-display/badge/badge.css} +19 -0
- package/src/{v2/components/badge-v2.tsx → data-display/badge/badge.tsx} +6 -4
- package/src/{components → data-display/diff-changes}/diff-changes.css +22 -19
- package/src/{v2/components/diff-changes-v2.tsx → data-display/diff-changes/diff-changes.tsx} +7 -2
- package/src/{v2/components/keybind-v2.css → data-display/keybind/keybind.css} +1 -1
- package/src/{v2/components/keybind-v2.tsx → data-display/keybind/keybind.tsx} +3 -3
- package/src/{v2/components/line-comment-v2.css → data-display/line-comment/line-comment.css} +4 -4
- package/src/{v2/components/line-comment-v2.tsx → data-display/line-comment/line-comment.tsx} +17 -15
- package/src/{v2/components/project-avatar-v2.tsx → data-display/project-avatar/project-avatar.tsx} +1 -1
- package/src/{v2/components/loader-v2.tsx → feedback/loader/loader.tsx} +2 -2
- package/src/feedback/progress-circle/progress-circle.css +28 -0
- package/src/feedback/progress-circle/progress-circle.tsx +64 -0
- package/src/{v2/components/toast-v2.tsx → feedback/toast/toast.tsx} +60 -58
- package/src/{components → forms/checkbox}/checkbox.css +1 -7
- package/src/{components → forms/checkbox}/checkbox.tsx +13 -13
- package/src/{v2/components/field-v2.css → forms/field/field.css} +1 -1
- package/src/{v2/components/field-v2.tsx → forms/field/field.tsx} +9 -11
- package/src/{v2/components/radio-v2.tsx → forms/radio/radio.tsx} +30 -20
- package/src/{v2/components/select-v2.css → forms/select/select.css} +2 -8
- package/src/{v2/components/select-v2.tsx → forms/select/select.tsx} +40 -32
- package/src/{v2/components/switch-v2.css → forms/switch/switch.css} +110 -0
- package/src/forms/switch/switch.tsx +34 -0
- package/src/{v2/components/text-input-v2.css → forms/text-input/text-input.css} +3 -3
- package/src/{v2/components/text-input-v2.tsx → forms/text-input/text-input.tsx} +4 -4
- package/src/{v2/components/textarea-v2.tsx → forms/textarea/textarea.tsx} +3 -3
- package/src/hooks/create-auto-scroll.tsx +20 -0
- package/src/i18n/am.ts +7 -9
- package/src/i18n/ar.ts +7 -9
- package/src/i18n/az.ts +7 -9
- package/src/i18n/bg.ts +7 -9
- package/src/i18n/bn.ts +7 -9
- package/src/i18n/br.ts +7 -9
- package/src/i18n/bs.ts +7 -9
- package/src/i18n/ca.ts +7 -9
- package/src/i18n/cs.ts +7 -9
- package/src/i18n/da.ts +7 -9
- package/src/i18n/de.ts +1 -3
- package/src/i18n/dv.ts +7 -9
- package/src/i18n/dz.ts +5 -7
- package/src/i18n/el.ts +7 -9
- package/src/i18n/en.ts +59 -12
- package/src/i18n/es.ts +6 -8
- package/src/i18n/et.ts +7 -9
- package/src/i18n/fa.ts +7 -9
- package/src/i18n/fi.ts +7 -9
- package/src/i18n/fo.ts +7 -9
- package/src/i18n/fr.ts +6 -8
- package/src/i18n/he.ts +199 -0
- package/src/i18n/hi.ts +7 -9
- package/src/i18n/hr.ts +7 -9
- package/src/i18n/hu.ts +7 -9
- package/src/i18n/hy.ts +7 -9
- package/src/i18n/id.ts +7 -9
- package/src/i18n/is.ts +7 -9
- package/src/i18n/it.ts +7 -9
- package/src/i18n/ja.ts +7 -9
- package/src/i18n/ka.ts +7 -9
- package/src/i18n/km.ts +7 -9
- package/src/i18n/ko.ts +7 -9
- package/src/i18n/lo.ts +7 -9
- package/src/i18n/lt.ts +7 -9
- package/src/i18n/lv.ts +7 -9
- package/src/i18n/mk.ts +7 -9
- package/src/i18n/mn.ts +7 -9
- package/src/i18n/ms.ts +7 -9
- package/src/i18n/my.ts +7 -9
- package/src/i18n/ne.ts +7 -9
- package/src/i18n/nl.ts +7 -9
- package/src/i18n/no.ts +7 -9
- package/src/i18n/pa.ts +7 -9
- package/src/i18n/pl.ts +7 -9
- package/src/i18n/ro.ts +7 -9
- package/src/i18n/ru.ts +7 -9
- package/src/i18n/si.ts +7 -9
- package/src/i18n/sk.ts +7 -9
- package/src/i18n/sl.ts +7 -9
- package/src/i18n/sq.ts +7 -9
- package/src/i18n/sr.ts +7 -9
- package/src/i18n/sv.ts +7 -9
- package/src/i18n/tg.ts +7 -9
- package/src/i18n/th.ts +7 -9
- package/src/i18n/tk.ts +7 -9
- package/src/i18n/tr.ts +7 -9
- package/src/i18n/uk.ts +7 -9
- package/src/i18n/ur.ts +7 -9
- package/src/i18n/uz.ts +7 -9
- package/src/i18n/vi.ts +7 -9
- package/src/i18n/zh.ts +7 -9
- package/src/i18n/zht.ts +7 -9
- package/src/{components/icon.tsx → icons/icon/additional-icons.ts} +8 -74
- package/src/icons/icon/icon.css +3 -0
- package/src/{v2/components → icons/icon}/icon.tsx +80 -12
- package/src/{v2/components/divider-v2.tsx → layout/divider/divider.tsx} +3 -3
- package/src/{v2/components/menu-v2.css → navigation/menu/menu.css} +124 -2
- package/src/{v2/components/menu-v2.tsx → navigation/menu/menu.tsx} +96 -32
- package/src/{v2/components/segmented-control-v2.css → navigation/segmented-control/segmented-control.css} +1 -1
- package/src/{v2/components/segmented-control-v2.tsx → navigation/segmented-control/segmented-control.tsx} +9 -8
- package/src/{v2/components/tabs-v2.css → navigation/tabs/tabs-current.css} +25 -10
- package/src/{components → navigation/tabs}/tabs.css +53 -232
- package/src/navigation/tabs/tabs.tsx +194 -0
- package/src/{v2/components/dialog-v2.css → overlays/dialog/dialog.css} +3 -0
- package/src/{v2/components/dialog-v2.tsx → overlays/dialog/dialog.tsx} +11 -13
- package/src/{v2/components/tooltip-v2.css → overlays/tooltip/tooltip.css} +26 -0
- package/src/{v2/components/tooltip-v2.tsx → overlays/tooltip/tooltip.tsx} +24 -17
- package/src/styles/base.css +5 -0
- package/src/styles/index.css +4 -20
- package/src/styles/tailwind/colors.css +1 -0
- package/src/styles/tailwind/index.css +18 -1
- package/src/styles/theme.css +2 -2
- package/src/{v2/styles → styles/tokens}/colors.css +8 -8
- package/src/{v2/styles → styles/tokens}/theme.css +20 -16
- package/src/theme/context.tsx +19 -11
- package/src/theme/themes/oc-2.json +48 -19
- package/src/theme/v2/default-primitives.ts +8 -8
- package/src/theme/v2/foreground.ts +1 -0
- package/src/theme/v2/mapping.ts +5 -1
- package/src/{components → typography/text-shimmer}/text-shimmer.css +2 -1
- package/src/{components → typography/text-shimmer}/text-shimmer.tsx +1 -0
- package/src/{v2/components/wordmark-v2.tsx → typography/wordmark/wordmark.tsx} +2 -2
- package/dist/components/avatar.d.ts +0 -9
- package/dist/components/button.d.ts +0 -9
- package/dist/components/dialog.d.ts +0 -12
- package/dist/components/dropdown-menu.d.ts +0 -80
- package/dist/components/icon-button.d.ts +0 -10
- package/dist/components/keybind.d.ts +0 -6
- package/dist/components/radio-group.d.ts +0 -16
- package/dist/components/select.d.ts +0 -21
- package/dist/components/tag.d.ts +0 -5
- package/dist/components/toast.d.ts +0 -56
- package/dist/components/tooltip.d.ts +0 -17
- package/dist/v2/components/accordion-v2.d.ts +0 -26
- package/dist/v2/components/badge-v2.d.ts +0 -6
- package/dist/v2/components/button-v2.d.ts +0 -10
- package/dist/v2/components/checkbox-v2.d.ts +0 -10
- package/dist/v2/components/diff-changes-v2.d.ts +0 -11
- package/dist/v2/components/divider-v2.d.ts +0 -5
- package/dist/v2/components/icon-button-v2.d.ts +0 -11
- package/dist/v2/components/inline-input-v2.d.ts +0 -21
- package/dist/v2/components/keybind-v2.d.ts +0 -7
- package/dist/v2/components/loader-v2.d.ts +0 -3
- package/dist/v2/components/menu-v2.d.ts +0 -52
- package/dist/v2/components/progress-circle-v2.d.ts +0 -8
- package/dist/v2/components/radio-v2.d.ts +0 -16
- package/dist/v2/components/split-button-v2.d.ts +0 -5
- package/dist/v2/components/switch-v2.d.ts +0 -7
- package/dist/v2/components/tabs-v2.d.ts +0 -34
- package/dist/v2/components/text-shimmer-v2.d.ts +0 -9
- package/dist/v2/components/textarea-v2.d.ts +0 -7
- package/dist/v2/components/toast-v2.d.ts +0 -57
- package/dist/v2/components/tooltip-v2.d.ts +0 -13
- package/dist/v2/components/wordmark-v2.d.ts +0 -2
- package/src/components/avatar.css +0 -49
- package/src/components/avatar.tsx +0 -55
- package/src/components/button.css +0 -194
- package/src/components/dialog.css +0 -181
- package/src/components/dialog.tsx +0 -72
- package/src/components/diff-changes.tsx +0 -115
- package/src/components/dropdown-menu.css +0 -135
- package/src/components/dropdown-menu.tsx +0 -308
- package/src/components/icon-button.css +0 -181
- package/src/components/icon-button.tsx +0 -29
- package/src/components/icon.css +0 -39
- package/src/components/keybind.css +0 -18
- package/src/components/keybind.tsx +0 -20
- package/src/components/progress-circle.css +0 -16
- package/src/components/progress-circle.tsx +0 -64
- package/src/components/radio-group.css +0 -187
- package/src/components/radio-group.tsx +0 -83
- package/src/components/select.css +0 -201
- package/src/components/select.tsx +0 -174
- package/src/components/switch.css +0 -136
- package/src/components/switch.tsx +0 -29
- package/src/components/tabs.tsx +0 -126
- package/src/components/tag.css +0 -37
- package/src/components/tag.tsx +0 -22
- package/src/components/toast.css +0 -236
- package/src/components/toast.tsx +0 -185
- package/src/components/tooltip.css +0 -74
- package/src/components/tooltip.tsx +0 -163
- package/src/v2/components/accordion-v2.css +0 -139
- package/src/v2/components/accordion-v2.tsx +0 -86
- package/src/v2/components/button-v2.tsx +0 -35
- package/src/v2/components/checkbox-v2.css +0 -184
- package/src/v2/components/checkbox-v2.tsx +0 -65
- package/src/v2/components/diff-changes-v2.css +0 -26
- package/src/v2/components/icon-button-v2.tsx +0 -37
- package/src/v2/components/inline-input-v2.css +0 -225
- package/src/v2/components/inline-input-v2.tsx +0 -107
- package/src/v2/components/progress-circle-v2.css +0 -13
- package/src/v2/components/progress-circle-v2.tsx +0 -52
- package/src/v2/components/switch-v2.tsx +0 -28
- package/src/v2/components/tabs-v2.tsx +0 -149
- package/src/v2/components/text-shimmer-v2.css +0 -125
- package/src/v2/components/text-shimmer-v2.tsx +0 -63
- /package/dist/{components → forms/inline-input}/inline-input.d.ts +0 -0
- /package/dist/{v2/components → navigation}/tab-state-indicator.d.ts +0 -0
- /package/src/{v2/components/icon-button-v2.css → actions/icon-button/icon-button.css} +0 -0
- /package/src/{v2/components/avatar-v2.css → data-display/avatar/avatar.css} +0 -0
- /package/src/{v2/components/project-avatar-v2.css → data-display/project-avatar/project-avatar.css} +0 -0
- /package/src/{v2/components/loader-v2.css → feedback/loader/loader.css} +0 -0
- /package/src/{v2/components/toast-v2.css → feedback/toast/toast.css} +0 -0
- /package/src/{components → forms/inline-input}/inline-input.css +0 -0
- /package/src/{components → forms/inline-input}/inline-input.tsx +0 -0
- /package/src/{v2/components/radio-v2.css → forms/radio/radio.css} +0 -0
- /package/src/{v2/components/textarea-v2.css → forms/textarea/textarea.css} +0 -0
- /package/src/{v2/components/divider-v2.css → layout/divider/divider.css} +0 -0
- /package/src/{v2/components → navigation}/tab-state-indicator.tsx +0 -0
- /package/src/{v2/components/file-tree-v2.css → styles/file-tree.css} +0 -0
- /package/src/{v2/styles/tailwind.css → styles/tokens/index.css} +0 -0
package/dist/i18n/en.d.ts
CHANGED
|
@@ -1 +1,242 @@
|
|
|
1
|
-
|
|
1
|
+
declare const source: {
|
|
2
|
+
"ui.sessionReview.title": string;
|
|
3
|
+
"ui.sessionReview.title.git": string;
|
|
4
|
+
"ui.sessionReview.title.branch": string;
|
|
5
|
+
"ui.sessionReview.title.lastTurn": string;
|
|
6
|
+
"ui.sessionReview.diffStyle.unified": string;
|
|
7
|
+
"ui.sessionReview.diffStyle.split": string;
|
|
8
|
+
"ui.sessionReview.expandAll": string;
|
|
9
|
+
"ui.sessionReview.collapseAll": string;
|
|
10
|
+
"ui.sessionReview.change.added": string;
|
|
11
|
+
"ui.sessionReview.change.removed": string;
|
|
12
|
+
"ui.sessionReview.change.modified": string;
|
|
13
|
+
"ui.sessionReview.image.loading": string;
|
|
14
|
+
"ui.sessionReview.image.placeholder": string;
|
|
15
|
+
"ui.sessionReview.largeDiff.title": string;
|
|
16
|
+
"ui.sessionReview.largeDiff.meta": string;
|
|
17
|
+
"ui.sessionReview.largeDiff.renderAnyway": string;
|
|
18
|
+
"ui.sessionReviewV2.expandMode": string;
|
|
19
|
+
"ui.sessionReviewV2.filterFiles": string;
|
|
20
|
+
"ui.sessionReviewV2.toggleSidebar": string;
|
|
21
|
+
"ui.sessionReviewV2.showAllLines": string;
|
|
22
|
+
"ui.sessionReviewV2.hideNonDiffLines": string;
|
|
23
|
+
"ui.sessionReviewV2.unifiedDiff": string;
|
|
24
|
+
"ui.sessionReviewV2.splitDiff": string;
|
|
25
|
+
"ui.sessionReviewV2.previousFile": string;
|
|
26
|
+
"ui.sessionReviewV2.nextFile": string;
|
|
27
|
+
"ui.sessionReviewV2.diffView": string;
|
|
28
|
+
"ui.sessionReviewV2.empty.noGit.title": string;
|
|
29
|
+
"ui.sessionReviewV2.empty.noGit.description": string;
|
|
30
|
+
"ui.sessionReviewV2.empty.noGit.action": string;
|
|
31
|
+
"ui.sessionReviewV2.empty.noGit.actionLoading": string;
|
|
32
|
+
"ui.sessionReviewV2.empty.changes.title": string;
|
|
33
|
+
"ui.sessionReviewV2.empty.changes.description": string;
|
|
34
|
+
"ui.sessionReview.openFile": string;
|
|
35
|
+
"ui.sessionReview.selection.line": string;
|
|
36
|
+
"ui.sessionReview.selection.lines": string;
|
|
37
|
+
"ui.fileMedia.kind.image": string;
|
|
38
|
+
"ui.fileMedia.kind.audio": string;
|
|
39
|
+
"ui.fileMedia.state.removed": string;
|
|
40
|
+
"ui.fileMedia.state.loading": string;
|
|
41
|
+
"ui.fileMedia.state.error": string;
|
|
42
|
+
"ui.fileMedia.state.unavailable": string;
|
|
43
|
+
"ui.fileMedia.binary.title": string;
|
|
44
|
+
"ui.fileMedia.binary.description.path": string;
|
|
45
|
+
"ui.fileMedia.binary.description.default": string;
|
|
46
|
+
"ui.lineComment.label.prefix": string;
|
|
47
|
+
"ui.lineComment.label.suffix": string;
|
|
48
|
+
"ui.lineComment.editorLabel.prefix": string;
|
|
49
|
+
"ui.lineComment.editorLabel.suffix": string;
|
|
50
|
+
"ui.lineComment.placeholder": string;
|
|
51
|
+
"ui.lineComment.contextPlaceholder": string;
|
|
52
|
+
"ui.lineComment.submit": string;
|
|
53
|
+
"ui.lineComment.cancel": string;
|
|
54
|
+
"ui.sessionTurn.steps.show": string;
|
|
55
|
+
"ui.sessionTurn.steps.hide": string;
|
|
56
|
+
"ui.sessionTurn.summary.response": string;
|
|
57
|
+
"ui.sessionTurn.diff.showMore": string;
|
|
58
|
+
"ui.sessionTurn.diffs.changed.one": string;
|
|
59
|
+
"ui.sessionTurn.diffs.changed.other": string;
|
|
60
|
+
"ui.sessionTurn.diffs.showAll": string;
|
|
61
|
+
"ui.sessionTurn.diffs.showLess": string;
|
|
62
|
+
"ui.sessionTurn.diffs.more": string;
|
|
63
|
+
"ui.sessionTurn.retry.retrying": string;
|
|
64
|
+
"ui.sessionTurn.retry.inSeconds": string;
|
|
65
|
+
"ui.sessionTurn.retry.attempt": string;
|
|
66
|
+
"ui.sessionTurn.retry.attemptLine": string;
|
|
67
|
+
"ui.sessionTurn.retry.attemptLabel": string;
|
|
68
|
+
"ui.sessionTurn.retry.attemptRetrying": string;
|
|
69
|
+
"ui.sessionTurn.retry.geminiHot": string;
|
|
70
|
+
"ui.sessionTurn.error.freeUsageExceeded": string;
|
|
71
|
+
"ui.sessionTurn.error.addCredits": string;
|
|
72
|
+
"dialog.usageExceeded.freeTier.title": string;
|
|
73
|
+
"dialog.usageExceeded.freeTier.description": string;
|
|
74
|
+
"dialog.usageExceeded.freeTier.actionLabel": string;
|
|
75
|
+
"dialog.usageExceeded.accountRateLimit.title": string;
|
|
76
|
+
"dialog.usageExceeded.accountRateLimit.description": string;
|
|
77
|
+
"dialog.usageExceeded.accountRateLimit.actionLabel": string;
|
|
78
|
+
"ui.sessionTurn.status.delegating": string;
|
|
79
|
+
"ui.sessionTurn.status.planning": string;
|
|
80
|
+
"ui.sessionTurn.status.gatheringContext": string;
|
|
81
|
+
"ui.sessionTurn.status.gatheredContext": string;
|
|
82
|
+
"ui.sessionTurn.status.searchingCodebase": string;
|
|
83
|
+
"ui.sessionTurn.status.searchingWeb": string;
|
|
84
|
+
"ui.sessionTurn.status.makingEdits": string;
|
|
85
|
+
"ui.sessionTurn.status.runningCommands": string;
|
|
86
|
+
"ui.sessionTurn.status.thinking": string;
|
|
87
|
+
"ui.sessionTurn.status.thinkingWithTopic": string;
|
|
88
|
+
"ui.sessionTurn.status.gatheringThoughts": string;
|
|
89
|
+
"ui.sessionTurn.status.consideringNextSteps": string;
|
|
90
|
+
"ui.messagePart.diagnostic.error": string;
|
|
91
|
+
"ui.messagePart.title.edit": string;
|
|
92
|
+
"ui.messagePart.title.write": string;
|
|
93
|
+
"ui.messagePart.option.typeOwnAnswer": string;
|
|
94
|
+
"ui.messagePart.review.title": string;
|
|
95
|
+
"ui.messagePart.questions.dismissed": string;
|
|
96
|
+
"ui.messagePart.compaction": string;
|
|
97
|
+
"ui.messagePart.context.details": string;
|
|
98
|
+
"ui.messagePart.context.read.one": string;
|
|
99
|
+
"ui.messagePart.context.read.other": string;
|
|
100
|
+
"ui.messagePart.context.search.one": string;
|
|
101
|
+
"ui.messagePart.context.search.other": string;
|
|
102
|
+
"ui.messagePart.context.list.one": string;
|
|
103
|
+
"ui.messagePart.context.list.other": string;
|
|
104
|
+
"ui.messagePart.context.notice.one": string;
|
|
105
|
+
"ui.messagePart.context.notice.other": string;
|
|
106
|
+
"ui.messagePart.context.thought.one": string;
|
|
107
|
+
"ui.messagePart.context.thought.other": string;
|
|
108
|
+
"ui.messagePart.context.match.one": string;
|
|
109
|
+
"ui.messagePart.context.match.other": string;
|
|
110
|
+
"ui.messagePart.tools.used": string;
|
|
111
|
+
"ui.list.loading": string;
|
|
112
|
+
"ui.list.empty": string;
|
|
113
|
+
"ui.list.clearFilter": string;
|
|
114
|
+
"ui.list.emptyWithFilter.prefix": string;
|
|
115
|
+
"ui.list.emptyWithFilter.suffix": string;
|
|
116
|
+
"ui.fileSearch.placeholder": string;
|
|
117
|
+
"ui.fileSearch.previousMatch": string;
|
|
118
|
+
"ui.fileSearch.nextMatch": string;
|
|
119
|
+
"ui.fileSearch.close": string;
|
|
120
|
+
"ui.messageNav.newMessage": string;
|
|
121
|
+
"ui.promptInput.noMatchingItems": string;
|
|
122
|
+
"ui.promptInput.commands": string;
|
|
123
|
+
"ui.promptInput.dropFiles": string;
|
|
124
|
+
"ui.promptInput.dropFiles.image": string;
|
|
125
|
+
"ui.promptInput.dropFiles.pdf": string;
|
|
126
|
+
"ui.promptInput.dropFiles.imagePdf": string;
|
|
127
|
+
"ui.promptInput.removeAttachment": string;
|
|
128
|
+
"ui.promptInput.label": string;
|
|
129
|
+
"ui.promptInput.placeholder.shell": string;
|
|
130
|
+
"ui.promptInput.placeholder.normal": string;
|
|
131
|
+
"ui.promptInput.placeholder.followUp": string;
|
|
132
|
+
"ui.promptInput.add": string;
|
|
133
|
+
"ui.promptInput.attachments": string;
|
|
134
|
+
"ui.promptInput.context": string;
|
|
135
|
+
"ui.promptInput.shell": string;
|
|
136
|
+
"ui.promptInput.chooseAgent": string;
|
|
137
|
+
"ui.promptInput.chooseModel": string;
|
|
138
|
+
"ui.promptInput.chooseVariant": string;
|
|
139
|
+
"ui.promptInput.send": string;
|
|
140
|
+
"ui.promptInput.stop": string;
|
|
141
|
+
"ui.promptInput.exitShell": string;
|
|
142
|
+
"ui.promptInput.steer": string;
|
|
143
|
+
"ui.promptInput.queue": string;
|
|
144
|
+
"ui.promptInput.steerHint": string;
|
|
145
|
+
"ui.tabs.close": string;
|
|
146
|
+
"ui.textField.copyToClipboard": string;
|
|
147
|
+
"ui.textField.copyLink": string;
|
|
148
|
+
"ui.textField.copied": string;
|
|
149
|
+
"ui.imagePreview.alt": string;
|
|
150
|
+
"ui.scrollView.ariaLabel": string;
|
|
151
|
+
"ui.tool.read": string;
|
|
152
|
+
"ui.tool.loaded": string;
|
|
153
|
+
"ui.tool.loadedFile": string;
|
|
154
|
+
"ui.tool.loadedSkill": string;
|
|
155
|
+
"ui.tool.loadedSkills.one": string;
|
|
156
|
+
"ui.tool.loadedSkills.other": string;
|
|
157
|
+
"ui.tool.list": string;
|
|
158
|
+
"ui.tool.glob": string;
|
|
159
|
+
"ui.tool.grep": string;
|
|
160
|
+
"ui.tool.task": string;
|
|
161
|
+
"ui.tool.webfetch": string;
|
|
162
|
+
"ui.tool.websearch": string;
|
|
163
|
+
"ui.tool.websearch.provider": string;
|
|
164
|
+
"ui.tool.shell": string;
|
|
165
|
+
"ui.tool.shell.writingCommand": string;
|
|
166
|
+
"ui.tool.shell.exit": string;
|
|
167
|
+
"ui.tool.shell.timeout": string;
|
|
168
|
+
"ui.tool.shell.cancelled": string;
|
|
169
|
+
"ui.tool.execute": string;
|
|
170
|
+
"ui.tool.patch": string;
|
|
171
|
+
"ui.tool.questions": string;
|
|
172
|
+
"ui.tool.questions.numbered": string;
|
|
173
|
+
"ui.tool.agent": string;
|
|
174
|
+
"ui.tool.agent.default": string;
|
|
175
|
+
"ui.tool.agent.delegating": string;
|
|
176
|
+
"ui.tool.skill": string;
|
|
177
|
+
"ui.basicTool.called": string;
|
|
178
|
+
"ui.toolErrorCard.failed": string;
|
|
179
|
+
"ui.toolErrorCard.copyError": string;
|
|
180
|
+
"ui.common.file.one": string;
|
|
181
|
+
"ui.common.file.other": string;
|
|
182
|
+
"ui.common.question.one": string;
|
|
183
|
+
"ui.common.question.other": string;
|
|
184
|
+
"ui.common.add": string;
|
|
185
|
+
"ui.common.clear": string;
|
|
186
|
+
"ui.common.file": string;
|
|
187
|
+
"ui.common.back": string;
|
|
188
|
+
"ui.common.cancel": string;
|
|
189
|
+
"ui.common.confirm": string;
|
|
190
|
+
"ui.common.dismiss": string;
|
|
191
|
+
"ui.common.close": string;
|
|
192
|
+
"ui.common.next": string;
|
|
193
|
+
"ui.common.submit": string;
|
|
194
|
+
"ui.common.showMore": string;
|
|
195
|
+
"ui.common.moreCount.one": string;
|
|
196
|
+
"ui.common.moreCount.other": string;
|
|
197
|
+
"ui.permission.deny": string;
|
|
198
|
+
"ui.permission.allowAlways": string;
|
|
199
|
+
"ui.permission.allowOnce": string;
|
|
200
|
+
"ui.message.expand": string;
|
|
201
|
+
"ui.message.collapse": string;
|
|
202
|
+
"ui.message.copy": string;
|
|
203
|
+
"ui.message.copyMessage": string;
|
|
204
|
+
"ui.message.forkMessage": string;
|
|
205
|
+
"ui.message.revertMessage": string;
|
|
206
|
+
"ui.message.copyResponse": string;
|
|
207
|
+
"ui.message.copied": string;
|
|
208
|
+
"ui.message.thought": string;
|
|
209
|
+
"ui.message.duration.seconds": string;
|
|
210
|
+
"ui.message.duration.minutesSeconds": string;
|
|
211
|
+
"ui.message.interrupted": string;
|
|
212
|
+
"ui.sessionTimeline.notice.model": string;
|
|
213
|
+
"ui.sessionTimeline.notice.modelSwitched": string;
|
|
214
|
+
"ui.sessionTimeline.notice.agentChanged": string;
|
|
215
|
+
"ui.sessionTimeline.notice.movedTo": string;
|
|
216
|
+
"ui.sessionTimeline.notice.movedTooltip": string;
|
|
217
|
+
"ui.sessionTimeline.notice.failed": string;
|
|
218
|
+
"ui.sessionTimeline.notice.cancelled": string;
|
|
219
|
+
"ui.sessionTimeline.notice.finished": string;
|
|
220
|
+
"ui.sessionTimeline.notice.instructionsUpdated": string;
|
|
221
|
+
"ui.message.queued": string;
|
|
222
|
+
"ui.message.attachment.alt": string;
|
|
223
|
+
"ui.patch.action.deleted": string;
|
|
224
|
+
"ui.patch.action.created": string;
|
|
225
|
+
"ui.patch.action.moved": string;
|
|
226
|
+
"ui.patch.action.patched": string;
|
|
227
|
+
"ui.question.subtitle.answered": string;
|
|
228
|
+
"ui.question.answer.none": string;
|
|
229
|
+
"ui.question.review.notAnswered": string;
|
|
230
|
+
"ui.question.multiHint": string;
|
|
231
|
+
"ui.question.singleHint": string;
|
|
232
|
+
"ui.question.custom.placeholder": string;
|
|
233
|
+
};
|
|
234
|
+
export type Key = keyof typeof source;
|
|
235
|
+
export type PluralCategory = "zero" | "one" | "two" | "few" | "many" | "other";
|
|
236
|
+
export type PluralKey = {
|
|
237
|
+
[Entry in Key]: Entry extends `${infer Base}.other` ? (`${Base}.one` extends Key ? Base : never) : never;
|
|
238
|
+
}[Key];
|
|
239
|
+
export type PluralLookupKey = `${PluralKey}.${PluralCategory}`;
|
|
240
|
+
export type LocaleKey = Key | PluralLookupKey;
|
|
241
|
+
export declare const dict: typeof source & Record<string, string>;
|
|
242
|
+
export {};
|
package/dist/i18n/es.d.ts
CHANGED
|
@@ -140,8 +140,6 @@ export declare const dict: {
|
|
|
140
140
|
"ui.tool.websearch.provider": string;
|
|
141
141
|
"ui.tool.shell": string;
|
|
142
142
|
"ui.tool.patch": string;
|
|
143
|
-
"ui.tool.todos": string;
|
|
144
|
-
"ui.tool.todos.read": string;
|
|
145
143
|
"ui.tool.questions": string;
|
|
146
144
|
"ui.tool.questions.numbered": string;
|
|
147
145
|
"ui.tool.agent": string;
|
package/dist/i18n/fr.d.ts
CHANGED
|
@@ -140,8 +140,6 @@ export declare const dict: {
|
|
|
140
140
|
"ui.tool.websearch.provider": string;
|
|
141
141
|
"ui.tool.shell": string;
|
|
142
142
|
"ui.tool.patch": string;
|
|
143
|
-
"ui.tool.todos": string;
|
|
144
|
-
"ui.tool.todos.read": string;
|
|
145
143
|
"ui.tool.questions": string;
|
|
146
144
|
"ui.tool.questions.numbered": string;
|
|
147
145
|
"ui.tool.agent": string;
|
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
export declare const dict: {
|
|
2
|
+
"ui.sessionReview.title": string;
|
|
3
|
+
"ui.sessionReview.title.git": string;
|
|
4
|
+
"ui.sessionReview.title.branch": string;
|
|
5
|
+
"ui.sessionReview.title.lastTurn": string;
|
|
6
|
+
"ui.sessionReview.diffStyle.unified": string;
|
|
7
|
+
"ui.sessionReview.diffStyle.split": string;
|
|
8
|
+
"ui.sessionReview.expandAll": string;
|
|
9
|
+
"ui.sessionReview.collapseAll": string;
|
|
10
|
+
"ui.sessionReview.change.added": string;
|
|
11
|
+
"ui.sessionReview.change.removed": string;
|
|
12
|
+
"ui.sessionReview.change.modified": string;
|
|
13
|
+
"ui.sessionReview.image.loading": string;
|
|
14
|
+
"ui.sessionReview.image.placeholder": string;
|
|
15
|
+
"ui.sessionReview.largeDiff.title": string;
|
|
16
|
+
"ui.sessionReview.largeDiff.meta": string;
|
|
17
|
+
"ui.sessionReview.largeDiff.renderAnyway": string;
|
|
18
|
+
"ui.sessionReviewV2.expandMode": string;
|
|
19
|
+
"ui.sessionReviewV2.filterFiles": string;
|
|
20
|
+
"ui.sessionReviewV2.toggleSidebar": string;
|
|
21
|
+
"ui.sessionReviewV2.showAllLines": string;
|
|
22
|
+
"ui.sessionReviewV2.hideNonDiffLines": string;
|
|
23
|
+
"ui.sessionReviewV2.unifiedDiff": string;
|
|
24
|
+
"ui.sessionReviewV2.splitDiff": string;
|
|
25
|
+
"ui.sessionReviewV2.previousFile": string;
|
|
26
|
+
"ui.sessionReviewV2.nextFile": string;
|
|
27
|
+
"ui.sessionReviewV2.diffView": string;
|
|
28
|
+
"ui.sessionReviewV2.empty.noGit.title": string;
|
|
29
|
+
"ui.sessionReviewV2.empty.noGit.description": string;
|
|
30
|
+
"ui.sessionReviewV2.empty.noGit.action": string;
|
|
31
|
+
"ui.sessionReviewV2.empty.noGit.actionLoading": string;
|
|
32
|
+
"ui.sessionReviewV2.empty.changes.title": string;
|
|
33
|
+
"ui.sessionReviewV2.empty.changes.description": string;
|
|
34
|
+
"ui.sessionReview.openFile": string;
|
|
35
|
+
"ui.sessionReview.selection.line": string;
|
|
36
|
+
"ui.sessionReview.selection.lines": string;
|
|
37
|
+
"ui.fileMedia.kind.image": string;
|
|
38
|
+
"ui.fileMedia.kind.audio": string;
|
|
39
|
+
"ui.fileMedia.state.removed": string;
|
|
40
|
+
"ui.fileMedia.state.loading": string;
|
|
41
|
+
"ui.fileMedia.state.error": string;
|
|
42
|
+
"ui.fileMedia.state.unavailable": string;
|
|
43
|
+
"ui.fileMedia.binary.title": string;
|
|
44
|
+
"ui.fileMedia.binary.description.path": string;
|
|
45
|
+
"ui.fileMedia.binary.description.default": string;
|
|
46
|
+
"ui.lineComment.label.prefix": string;
|
|
47
|
+
"ui.lineComment.label.suffix": string;
|
|
48
|
+
"ui.lineComment.editorLabel.prefix": string;
|
|
49
|
+
"ui.lineComment.editorLabel.suffix": string;
|
|
50
|
+
"ui.lineComment.placeholder": string;
|
|
51
|
+
"ui.lineComment.contextPlaceholder": string;
|
|
52
|
+
"ui.lineComment.submit": string;
|
|
53
|
+
"ui.lineComment.cancel": string;
|
|
54
|
+
"ui.sessionTurn.steps.show": string;
|
|
55
|
+
"ui.sessionTurn.steps.hide": string;
|
|
56
|
+
"ui.sessionTurn.summary.response": string;
|
|
57
|
+
"ui.sessionTurn.diff.showMore": string;
|
|
58
|
+
"ui.sessionTurn.diffs.changed.one": string;
|
|
59
|
+
"ui.sessionTurn.diffs.changed.other": string;
|
|
60
|
+
"ui.sessionTurn.diffs.showAll": string;
|
|
61
|
+
"ui.sessionTurn.diffs.showLess": string;
|
|
62
|
+
"ui.sessionTurn.diffs.more": string;
|
|
63
|
+
"ui.sessionTurn.retry.retrying": string;
|
|
64
|
+
"ui.sessionTurn.retry.inSeconds": string;
|
|
65
|
+
"ui.sessionTurn.retry.attempt": string;
|
|
66
|
+
"ui.sessionTurn.retry.attemptLine": string;
|
|
67
|
+
"ui.sessionTurn.retry.geminiHot": string;
|
|
68
|
+
"ui.sessionTurn.error.freeUsageExceeded": string;
|
|
69
|
+
"ui.sessionTurn.error.addCredits": string;
|
|
70
|
+
"dialog.usageExceeded.freeTier.title": string;
|
|
71
|
+
"dialog.usageExceeded.freeTier.description": string;
|
|
72
|
+
"dialog.usageExceeded.freeTier.actionLabel": string;
|
|
73
|
+
"dialog.usageExceeded.accountRateLimit.title": string;
|
|
74
|
+
"dialog.usageExceeded.accountRateLimit.description": string;
|
|
75
|
+
"dialog.usageExceeded.accountRateLimit.actionLabel": string;
|
|
76
|
+
"ui.sessionTurn.status.delegating": string;
|
|
77
|
+
"ui.sessionTurn.status.planning": string;
|
|
78
|
+
"ui.sessionTurn.status.gatheringContext": string;
|
|
79
|
+
"ui.sessionTurn.status.gatheredContext": string;
|
|
80
|
+
"ui.sessionTurn.status.searchingCodebase": string;
|
|
81
|
+
"ui.sessionTurn.status.searchingWeb": string;
|
|
82
|
+
"ui.sessionTurn.status.makingEdits": string;
|
|
83
|
+
"ui.sessionTurn.status.runningCommands": string;
|
|
84
|
+
"ui.sessionTurn.status.thinking": string;
|
|
85
|
+
"ui.sessionTurn.status.thinkingWithTopic": string;
|
|
86
|
+
"ui.sessionTurn.status.gatheringThoughts": string;
|
|
87
|
+
"ui.sessionTurn.status.consideringNextSteps": string;
|
|
88
|
+
"ui.messagePart.diagnostic.error": string;
|
|
89
|
+
"ui.messagePart.title.edit": string;
|
|
90
|
+
"ui.messagePart.title.write": string;
|
|
91
|
+
"ui.messagePart.option.typeOwnAnswer": string;
|
|
92
|
+
"ui.messagePart.review.title": string;
|
|
93
|
+
"ui.messagePart.questions.dismissed": string;
|
|
94
|
+
"ui.messagePart.compaction": string;
|
|
95
|
+
"ui.messagePart.context.read.one": string;
|
|
96
|
+
"ui.messagePart.context.read.other": string;
|
|
97
|
+
"ui.messagePart.context.search.one": string;
|
|
98
|
+
"ui.messagePart.context.search.other": string;
|
|
99
|
+
"ui.messagePart.context.list.one": string;
|
|
100
|
+
"ui.messagePart.context.list.other": string;
|
|
101
|
+
"ui.list.loading": string;
|
|
102
|
+
"ui.list.empty": string;
|
|
103
|
+
"ui.list.clearFilter": string;
|
|
104
|
+
"ui.list.emptyWithFilter.prefix": string;
|
|
105
|
+
"ui.list.emptyWithFilter.suffix": string;
|
|
106
|
+
"ui.fileSearch.placeholder": string;
|
|
107
|
+
"ui.fileSearch.previousMatch": string;
|
|
108
|
+
"ui.fileSearch.nextMatch": string;
|
|
109
|
+
"ui.fileSearch.close": string;
|
|
110
|
+
"ui.messageNav.newMessage": string;
|
|
111
|
+
"ui.promptInput.noMatchingItems": string;
|
|
112
|
+
"ui.promptInput.commands": string;
|
|
113
|
+
"ui.promptInput.dropFiles": string;
|
|
114
|
+
"ui.promptInput.removeAttachment": string;
|
|
115
|
+
"ui.promptInput.label": string;
|
|
116
|
+
"ui.promptInput.placeholder.shell": string;
|
|
117
|
+
"ui.promptInput.placeholder.normal": string;
|
|
118
|
+
"ui.promptInput.add": string;
|
|
119
|
+
"ui.promptInput.attachments": string;
|
|
120
|
+
"ui.promptInput.context": string;
|
|
121
|
+
"ui.promptInput.shell": string;
|
|
122
|
+
"ui.promptInput.chooseAgent": string;
|
|
123
|
+
"ui.promptInput.chooseModel": string;
|
|
124
|
+
"ui.promptInput.chooseVariant": string;
|
|
125
|
+
"ui.promptInput.send": string;
|
|
126
|
+
"ui.promptInput.stop": string;
|
|
127
|
+
"ui.tabs.close": string;
|
|
128
|
+
"ui.textField.copyToClipboard": string;
|
|
129
|
+
"ui.textField.copyLink": string;
|
|
130
|
+
"ui.textField.copied": string;
|
|
131
|
+
"ui.imagePreview.alt": string;
|
|
132
|
+
"ui.scrollView.ariaLabel": string;
|
|
133
|
+
"ui.tool.read": string;
|
|
134
|
+
"ui.tool.loaded": string;
|
|
135
|
+
"ui.tool.list": string;
|
|
136
|
+
"ui.tool.glob": string;
|
|
137
|
+
"ui.tool.grep": string;
|
|
138
|
+
"ui.tool.task": string;
|
|
139
|
+
"ui.tool.webfetch": string;
|
|
140
|
+
"ui.tool.websearch": string;
|
|
141
|
+
"ui.tool.websearch.provider": string;
|
|
142
|
+
"ui.tool.shell": string;
|
|
143
|
+
"ui.tool.patch": string;
|
|
144
|
+
"ui.tool.questions": string;
|
|
145
|
+
"ui.tool.questions.numbered": string;
|
|
146
|
+
"ui.tool.agent": string;
|
|
147
|
+
"ui.tool.agent.default": string;
|
|
148
|
+
"ui.tool.skill": string;
|
|
149
|
+
"ui.basicTool.called": string;
|
|
150
|
+
"ui.toolErrorCard.failed": string;
|
|
151
|
+
"ui.toolErrorCard.copyError": string;
|
|
152
|
+
"ui.common.file.one": string;
|
|
153
|
+
"ui.common.file.other": string;
|
|
154
|
+
"ui.common.question.one": string;
|
|
155
|
+
"ui.common.question.other": string;
|
|
156
|
+
"ui.common.add": string;
|
|
157
|
+
"ui.common.clear": string;
|
|
158
|
+
"ui.common.file": string;
|
|
159
|
+
"ui.common.back": string;
|
|
160
|
+
"ui.common.cancel": string;
|
|
161
|
+
"ui.common.confirm": string;
|
|
162
|
+
"ui.common.dismiss": string;
|
|
163
|
+
"ui.common.close": string;
|
|
164
|
+
"ui.common.next": string;
|
|
165
|
+
"ui.common.submit": string;
|
|
166
|
+
"ui.common.showMore": string;
|
|
167
|
+
"ui.permission.deny": string;
|
|
168
|
+
"ui.permission.allowAlways": string;
|
|
169
|
+
"ui.permission.allowOnce": string;
|
|
170
|
+
"ui.message.expand": string;
|
|
171
|
+
"ui.message.collapse": string;
|
|
172
|
+
"ui.message.copy": string;
|
|
173
|
+
"ui.message.copyMessage": string;
|
|
174
|
+
"ui.message.forkMessage": string;
|
|
175
|
+
"ui.message.revertMessage": string;
|
|
176
|
+
"ui.message.copyResponse": string;
|
|
177
|
+
"ui.message.copied": string;
|
|
178
|
+
"ui.message.duration.seconds": string;
|
|
179
|
+
"ui.message.duration.minutesSeconds": string;
|
|
180
|
+
"ui.message.interrupted": string;
|
|
181
|
+
"ui.message.queued": string;
|
|
182
|
+
"ui.message.attachment.alt": string;
|
|
183
|
+
"ui.patch.action.deleted": string;
|
|
184
|
+
"ui.patch.action.created": string;
|
|
185
|
+
"ui.patch.action.moved": string;
|
|
186
|
+
"ui.patch.action.patched": string;
|
|
187
|
+
"ui.question.subtitle.answered": string;
|
|
188
|
+
"ui.question.answer.none": string;
|
|
189
|
+
"ui.question.review.notAnswered": string;
|
|
190
|
+
"ui.question.multiHint": string;
|
|
191
|
+
"ui.question.singleHint": string;
|
|
192
|
+
"ui.question.custom.placeholder": string;
|
|
193
|
+
"ui.sessionTurn.diffs.changed.two": string;
|
|
194
|
+
"ui.messagePart.context.read.two": string;
|
|
195
|
+
"ui.messagePart.context.search.two": string;
|
|
196
|
+
"ui.messagePart.context.list.two": string;
|
|
197
|
+
};
|
package/dist/i18n/ja.d.ts
CHANGED
|
@@ -136,8 +136,6 @@ export declare const dict: {
|
|
|
136
136
|
"ui.tool.websearch.provider": string;
|
|
137
137
|
"ui.tool.shell": string;
|
|
138
138
|
"ui.tool.patch": string;
|
|
139
|
-
"ui.tool.todos": string;
|
|
140
|
-
"ui.tool.todos.read": string;
|
|
141
139
|
"ui.tool.questions": string;
|
|
142
140
|
"ui.tool.questions.numbered": string;
|
|
143
141
|
"ui.tool.agent": string;
|
package/dist/i18n/km.d.ts
CHANGED
|
@@ -141,8 +141,6 @@ export declare const dict: {
|
|
|
141
141
|
"ui.tool.websearch.provider": string;
|
|
142
142
|
"ui.tool.shell": string;
|
|
143
143
|
"ui.tool.patch": string;
|
|
144
|
-
"ui.tool.todos": string;
|
|
145
|
-
"ui.tool.todos.read": string;
|
|
146
144
|
"ui.tool.questions": string;
|
|
147
145
|
"ui.tool.questions.numbered": string;
|
|
148
146
|
"ui.tool.agent": string;
|
package/dist/i18n/ko.d.ts
CHANGED
|
@@ -112,8 +112,6 @@ export declare const dict: {
|
|
|
112
112
|
"ui.tool.websearch.provider": string;
|
|
113
113
|
"ui.tool.shell": string;
|
|
114
114
|
"ui.tool.patch": string;
|
|
115
|
-
"ui.tool.todos": string;
|
|
116
|
-
"ui.tool.todos.read": string;
|
|
117
115
|
"ui.tool.questions": string;
|
|
118
116
|
"ui.tool.questions.numbered": string;
|
|
119
117
|
"ui.tool.agent": string;
|
package/dist/i18n/lo.d.ts
CHANGED
|
@@ -141,8 +141,6 @@ export declare const dict: {
|
|
|
141
141
|
"ui.tool.websearch.provider": string;
|
|
142
142
|
"ui.tool.shell": string;
|
|
143
143
|
"ui.tool.patch": string;
|
|
144
|
-
"ui.tool.todos": string;
|
|
145
|
-
"ui.tool.todos.read": string;
|
|
146
144
|
"ui.tool.questions": string;
|
|
147
145
|
"ui.tool.questions.numbered": string;
|
|
148
146
|
"ui.tool.agent": string;
|
package/dist/i18n/mk.d.ts
CHANGED
|
@@ -141,8 +141,6 @@ export declare const dict: {
|
|
|
141
141
|
"ui.tool.websearch.provider": string;
|
|
142
142
|
"ui.tool.shell": string;
|
|
143
143
|
"ui.tool.patch": string;
|
|
144
|
-
"ui.tool.todos": string;
|
|
145
|
-
"ui.tool.todos.read": string;
|
|
146
144
|
"ui.tool.questions": string;
|
|
147
145
|
"ui.tool.questions.numbered": string;
|
|
148
146
|
"ui.tool.agent": string;
|
package/dist/i18n/mn.d.ts
CHANGED
|
@@ -141,8 +141,6 @@ export declare const dict: {
|
|
|
141
141
|
"ui.tool.websearch.provider": string;
|
|
142
142
|
"ui.tool.shell": string;
|
|
143
143
|
"ui.tool.patch": string;
|
|
144
|
-
"ui.tool.todos": string;
|
|
145
|
-
"ui.tool.todos.read": string;
|
|
146
144
|
"ui.tool.questions": string;
|
|
147
145
|
"ui.tool.questions.numbered": string;
|
|
148
146
|
"ui.tool.agent": string;
|
package/dist/i18n/my.d.ts
CHANGED
|
@@ -141,8 +141,6 @@ export declare const dict: {
|
|
|
141
141
|
"ui.tool.websearch.provider": string;
|
|
142
142
|
"ui.tool.shell": string;
|
|
143
143
|
"ui.tool.patch": string;
|
|
144
|
-
"ui.tool.todos": string;
|
|
145
|
-
"ui.tool.todos.read": string;
|
|
146
144
|
"ui.tool.questions": string;
|
|
147
145
|
"ui.tool.questions.numbered": string;
|
|
148
146
|
"ui.tool.agent": string;
|
package/dist/i18n/pl.d.ts
CHANGED
|
@@ -144,8 +144,6 @@ export declare const dict: {
|
|
|
144
144
|
"ui.tool.websearch.provider": string;
|
|
145
145
|
"ui.tool.shell": string;
|
|
146
146
|
"ui.tool.patch": string;
|
|
147
|
-
"ui.tool.todos": string;
|
|
148
|
-
"ui.tool.todos.read": string;
|
|
149
147
|
"ui.tool.questions": string;
|
|
150
148
|
"ui.tool.questions.numbered": string;
|
|
151
149
|
"ui.tool.agent": string;
|
package/dist/i18n/ru.d.ts
CHANGED
|
@@ -144,8 +144,6 @@ export declare const dict: {
|
|
|
144
144
|
"ui.tool.websearch.provider": string;
|
|
145
145
|
"ui.tool.shell": string;
|
|
146
146
|
"ui.tool.patch": string;
|
|
147
|
-
"ui.tool.todos": string;
|
|
148
|
-
"ui.tool.todos.read": string;
|
|
149
147
|
"ui.tool.questions": string;
|
|
150
148
|
"ui.tool.questions.numbered": string;
|
|
151
149
|
"ui.tool.agent": string;
|
package/dist/i18n/sr.d.ts
CHANGED
|
@@ -145,8 +145,6 @@ export declare const dict: {
|
|
|
145
145
|
"ui.tool.websearch.provider": string;
|
|
146
146
|
"ui.tool.shell": string;
|
|
147
147
|
"ui.tool.patch": string;
|
|
148
|
-
"ui.tool.todos": string;
|
|
149
|
-
"ui.tool.todos.read": string;
|
|
150
148
|
"ui.tool.questions": string;
|
|
151
149
|
"ui.tool.questions.numbered": string;
|
|
152
150
|
"ui.tool.agent": string;
|
package/dist/i18n/tg.d.ts
CHANGED
|
@@ -141,8 +141,6 @@ export declare const dict: {
|
|
|
141
141
|
"ui.tool.websearch.provider": string;
|
|
142
142
|
"ui.tool.shell": string;
|
|
143
143
|
"ui.tool.patch": string;
|
|
144
|
-
"ui.tool.todos": string;
|
|
145
|
-
"ui.tool.todos.read": string;
|
|
146
144
|
"ui.tool.questions": string;
|
|
147
145
|
"ui.tool.questions.numbered": string;
|
|
148
146
|
"ui.tool.agent": string;
|
package/dist/i18n/th.d.ts
CHANGED
|
@@ -136,8 +136,6 @@ export declare const dict: {
|
|
|
136
136
|
"ui.tool.websearch.provider": string;
|
|
137
137
|
"ui.tool.shell": string;
|
|
138
138
|
"ui.tool.patch": string;
|
|
139
|
-
"ui.tool.todos": string;
|
|
140
|
-
"ui.tool.todos.read": string;
|
|
141
139
|
"ui.tool.questions": string;
|
|
142
140
|
"ui.tool.questions.numbered": string;
|
|
143
141
|
"ui.tool.agent": string;
|
package/dist/i18n/tr.d.ts
CHANGED
|
@@ -136,8 +136,6 @@ export declare const dict: {
|
|
|
136
136
|
"ui.tool.websearch.provider": string;
|
|
137
137
|
"ui.tool.shell": string;
|
|
138
138
|
"ui.tool.patch": string;
|
|
139
|
-
"ui.tool.todos": string;
|
|
140
|
-
"ui.tool.todos.read": string;
|
|
141
139
|
"ui.tool.questions": string;
|
|
142
140
|
"ui.tool.questions.numbered": string;
|
|
143
141
|
"ui.tool.agent": string;
|
package/dist/i18n/zh.d.ts
CHANGED
|
@@ -136,8 +136,6 @@ export declare const dict: {
|
|
|
136
136
|
"ui.tool.websearch.provider": string;
|
|
137
137
|
"ui.tool.shell": string;
|
|
138
138
|
"ui.tool.patch": string;
|
|
139
|
-
"ui.tool.todos": string;
|
|
140
|
-
"ui.tool.todos.read": string;
|
|
141
139
|
"ui.tool.questions": string;
|
|
142
140
|
"ui.tool.questions.numbered": string;
|
|
143
141
|
"ui.tool.agent": string;
|
package/dist/i18n/zht.d.ts
CHANGED
|
@@ -136,8 +136,6 @@ export declare const dict: {
|
|
|
136
136
|
"ui.tool.websearch.provider": string;
|
|
137
137
|
"ui.tool.shell": string;
|
|
138
138
|
"ui.tool.patch": string;
|
|
139
|
-
"ui.tool.todos": string;
|
|
140
|
-
"ui.tool.todos.read": string;
|
|
141
139
|
"ui.tool.questions": string;
|
|
142
140
|
"ui.tool.questions.numbered": string;
|
|
143
141
|
"ui.tool.agent": string;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
declare const icons: {
|
|
1
|
+
export declare const additionalIcons: {
|
|
3
2
|
"align-right": string;
|
|
4
3
|
"arrow-up": string;
|
|
5
4
|
"arrow-left": string;
|
|
@@ -9,6 +8,7 @@ declare const icons: {
|
|
|
9
8
|
prompt: string;
|
|
10
9
|
brain: string;
|
|
11
10
|
fork: string;
|
|
11
|
+
"workspace-isolated": string;
|
|
12
12
|
"bullet-list": string;
|
|
13
13
|
"check-small": string;
|
|
14
14
|
"chevron-down": string;
|
|
@@ -95,11 +95,11 @@ declare const icons: {
|
|
|
95
95
|
link: string;
|
|
96
96
|
providers: string;
|
|
97
97
|
models: string;
|
|
98
|
+
appearance: string;
|
|
99
|
+
notifications: string;
|
|
100
|
+
extensions: string;
|
|
101
|
+
cube: string;
|
|
102
|
+
"post-skill": string;
|
|
98
103
|
"arrow-undo-down": string;
|
|
99
104
|
};
|
|
100
|
-
export
|
|
101
|
-
name: keyof typeof icons;
|
|
102
|
-
size?: "small" | "normal" | "medium" | "large";
|
|
103
|
-
}
|
|
104
|
-
export declare function Icon(props: IconProps): import("solid-js").JSX.Element;
|
|
105
|
-
export {};
|
|
105
|
+
export declare function additionalIconViewBox(name: keyof typeof additionalIcons): "0 0 16 16" | "0 0 20 20";
|