@opencode-ai/ui 0.0.0-dev-17746 → 0.0.0-dev-202608201733
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/{data-display/accordion → components}/accordion.d.ts +6 -6
- package/dist/components/avatar.d.ts +9 -0
- package/dist/components/button.d.ts +9 -0
- package/dist/components/card.d.ts +1 -1
- package/dist/{forms/checkbox → components}/checkbox.d.ts +2 -2
- package/dist/components/dialog.d.ts +12 -0
- package/dist/{data-display/diff-changes → components}/diff-changes.d.ts +1 -2
- package/dist/components/dropdown-menu.d.ts +80 -0
- package/dist/components/icon-button.d.ts +10 -0
- package/dist/{icons/icon/additional-icons.d.ts → components/icon.d.ts} +8 -8
- package/dist/components/keybind.d.ts +6 -0
- package/dist/components/list.d.ts +1 -1
- package/dist/{feedback/progress-circle → components}/progress-circle.d.ts +0 -2
- package/dist/components/radio-group.d.ts +16 -0
- package/dist/components/scroll-view.d.ts +3 -3
- package/dist/components/select.d.ts +21 -0
- package/dist/{forms/switch → components}/switch.d.ts +2 -4
- package/dist/{navigation/tabs → components}/tabs.d.ts +8 -15
- package/dist/components/tag.d.ts +5 -0
- package/dist/{typography/text-shimmer → components}/text-shimmer.d.ts +0 -1
- package/dist/components/toast.d.ts +56 -0
- package/dist/components/tooltip.d.ts +17 -0
- package/dist/context/i18n.d.ts +7 -10
- package/dist/i18n/ar.d.ts +2 -0
- package/dist/i18n/bg.d.ts +2 -0
- package/dist/i18n/br.d.ts +2 -0
- package/dist/i18n/bs.d.ts +2 -0
- package/dist/i18n/da.d.ts +2 -0
- package/dist/i18n/de.d.ts +2 -0
- package/dist/i18n/en.d.ts +1 -209
- package/dist/i18n/es.d.ts +2 -0
- package/dist/i18n/fr.d.ts +2 -0
- package/dist/i18n/ja.d.ts +2 -0
- package/dist/i18n/km.d.ts +2 -0
- package/dist/i18n/ko.d.ts +2 -0
- package/dist/i18n/lo.d.ts +2 -0
- package/dist/i18n/mk.d.ts +2 -0
- package/dist/i18n/mn.d.ts +2 -0
- package/dist/i18n/my.d.ts +2 -0
- package/dist/i18n/pl.d.ts +2 -0
- package/dist/i18n/ru.d.ts +2 -0
- package/dist/i18n/sr.d.ts +2 -0
- package/dist/i18n/tg.d.ts +2 -0
- package/dist/i18n/th.d.ts +2 -0
- package/dist/i18n/tr.d.ts +2 -0
- package/dist/i18n/zh.d.ts +2 -0
- package/dist/i18n/zht.d.ts +2 -0
- package/dist/v2/components/accordion-v2.d.ts +26 -0
- package/dist/{data-display/avatar/avatar.d.ts → v2/components/avatar-v2.d.ts} +1 -1
- package/dist/v2/components/badge-v2.d.ts +6 -0
- package/dist/v2/components/button-v2.d.ts +10 -0
- package/dist/v2/components/checkbox-v2.d.ts +10 -0
- package/dist/{overlays/dialog/dialog.d.ts → v2/components/dialog-v2.d.ts} +2 -1
- package/dist/v2/components/diff-changes-v2.d.ts +11 -0
- package/dist/v2/components/divider-v2.d.ts +5 -0
- package/dist/{forms/field/field.d.ts → v2/components/field-v2.d.ts} +10 -4
- package/dist/v2/components/icon-button-v2.d.ts +11 -0
- package/dist/{icons/icon → v2/components}/icon.d.ts +1 -16
- package/dist/v2/components/inline-input-v2.d.ts +21 -0
- package/dist/v2/components/keybind-v2.d.ts +7 -0
- package/dist/{data-display/line-comment/line-comment.d.ts → v2/components/line-comment-v2.d.ts} +9 -9
- package/dist/v2/components/loader-v2.d.ts +3 -0
- package/dist/v2/components/menu-v2.d.ts +52 -0
- package/dist/v2/components/progress-circle-v2.d.ts +8 -0
- package/dist/{data-display/project-avatar/project-avatar.d.ts → v2/components/project-avatar-v2.d.ts} +1 -1
- package/dist/v2/components/radio-v2.d.ts +16 -0
- package/dist/{navigation/segmented-control/segmented-control.d.ts → v2/components/segmented-control-v2.d.ts} +5 -5
- package/dist/{forms/select/select.d.ts → v2/components/select-v2.d.ts} +6 -4
- package/dist/v2/components/split-button-v2.d.ts +5 -0
- package/dist/v2/components/switch-v2.d.ts +7 -0
- package/dist/v2/components/tabs-v2.d.ts +34 -0
- package/dist/{forms/text-input/text-input.d.ts → v2/components/text-input-v2.d.ts} +3 -3
- package/dist/v2/components/text-shimmer-v2.d.ts +9 -0
- package/dist/v2/components/textarea-v2.d.ts +7 -0
- package/dist/v2/components/toast-v2.d.ts +57 -0
- package/dist/v2/components/tooltip-v2.d.ts +13 -0
- package/dist/v2/components/wordmark-v2.d.ts +2 -0
- package/package.json +13 -131
- package/src/{data-display/accordion → components}/accordion.css +26 -1
- package/src/{data-display/accordion → components}/accordion.tsx +14 -14
- package/src/components/animated-number.css +11 -29
- package/src/components/animated-number.tsx +2 -2
- package/src/components/avatar.css +49 -0
- package/src/components/avatar.tsx +55 -0
- package/src/components/button.css +194 -0
- package/src/components/button.tsx +33 -0
- package/src/components/card.css +23 -2
- package/src/components/card.tsx +4 -4
- package/src/{forms/checkbox → components}/checkbox.css +7 -1
- package/src/{forms/checkbox → components}/checkbox.tsx +13 -13
- package/src/components/collapsible.tsx +1 -1
- package/src/components/dialog.css +181 -0
- package/src/components/dialog.tsx +72 -0
- package/src/{data-display/diff-changes → components}/diff-changes.css +19 -22
- package/src/components/diff-changes.tsx +115 -0
- package/src/components/dropdown-menu.css +135 -0
- package/src/components/dropdown-menu.tsx +308 -0
- package/src/components/icon-button.css +181 -0
- package/src/components/icon-button.tsx +29 -0
- package/src/components/icon.css +39 -0
- package/src/{icons/icon/additional-icons.ts → components/icon.tsx} +74 -8
- package/src/components/image-preview.tsx +2 -3
- package/src/components/keybind.css +18 -0
- package/src/components/keybind.tsx +20 -0
- package/src/components/list.css +5 -5
- package/src/components/list.tsx +5 -7
- package/src/components/popover.tsx +2 -3
- package/src/components/progress-circle.css +16 -0
- package/src/components/progress-circle.tsx +64 -0
- package/src/components/provider-icon.tsx +1 -1
- package/src/components/radio-group.css +187 -0
- package/src/components/radio-group.tsx +83 -0
- package/src/components/scroll-view.tsx +20 -5
- package/src/components/select.css +201 -0
- package/src/components/select.tsx +174 -0
- package/src/components/sticky-accordion-header.tsx +1 -1
- package/src/components/switch.css +136 -0
- package/src/components/switch.tsx +29 -0
- package/src/{navigation/tabs → components}/tabs.css +229 -39
- package/src/components/tabs.tsx +126 -0
- package/src/components/tag.css +37 -0
- package/src/components/tag.tsx +22 -0
- package/src/components/text-field.tsx +4 -12
- package/src/{typography/text-shimmer → components}/text-shimmer.css +1 -2
- package/src/{typography/text-shimmer → components}/text-shimmer.tsx +0 -1
- package/src/components/toast.css +236 -0
- package/src/components/toast.tsx +185 -0
- package/src/components/tooltip.css +74 -0
- package/src/components/tooltip.tsx +163 -0
- package/src/context/i18n.tsx +14 -17
- package/src/hooks/create-auto-scroll.tsx +0 -20
- package/src/i18n/am.ts +2 -0
- package/src/i18n/ar.ts +2 -0
- package/src/i18n/az.ts +2 -0
- package/src/i18n/bg.ts +2 -0
- package/src/i18n/bn.ts +2 -0
- package/src/i18n/br.ts +2 -0
- package/src/i18n/bs.ts +2 -0
- package/src/i18n/ca.ts +2 -0
- package/src/i18n/cs.ts +2 -0
- package/src/i18n/da.ts +2 -0
- package/src/i18n/de.ts +2 -0
- package/src/i18n/dv.ts +2 -0
- package/src/i18n/dz.ts +2 -0
- package/src/i18n/el.ts +2 -0
- package/src/i18n/en.ts +4 -18
- package/src/i18n/es.ts +2 -0
- package/src/i18n/et.ts +2 -0
- package/src/i18n/fa.ts +2 -0
- package/src/i18n/fi.ts +2 -0
- package/src/i18n/fo.ts +2 -0
- package/src/i18n/fr.ts +2 -0
- package/src/i18n/hi.ts +2 -0
- package/src/i18n/hr.ts +2 -0
- package/src/i18n/hu.ts +2 -0
- package/src/i18n/hy.ts +2 -0
- package/src/i18n/id.ts +2 -0
- package/src/i18n/is.ts +2 -0
- package/src/i18n/it.ts +2 -0
- package/src/i18n/ja.ts +2 -0
- package/src/i18n/ka.ts +2 -0
- package/src/i18n/km.ts +2 -0
- package/src/i18n/ko.ts +2 -0
- package/src/i18n/lo.ts +2 -0
- package/src/i18n/lt.ts +2 -0
- package/src/i18n/lv.ts +2 -0
- package/src/i18n/mk.ts +2 -0
- package/src/i18n/mn.ts +2 -0
- package/src/i18n/ms.ts +2 -0
- package/src/i18n/my.ts +2 -0
- package/src/i18n/ne.ts +2 -0
- package/src/i18n/nl.ts +2 -0
- package/src/i18n/no.ts +2 -0
- package/src/i18n/pa.ts +2 -0
- package/src/i18n/pl.ts +2 -0
- package/src/i18n/ro.ts +2 -0
- package/src/i18n/ru.ts +2 -0
- package/src/i18n/si.ts +2 -0
- package/src/i18n/sk.ts +2 -0
- package/src/i18n/sl.ts +2 -0
- package/src/i18n/sq.ts +2 -0
- package/src/i18n/sr.ts +2 -0
- package/src/i18n/sv.ts +2 -0
- package/src/i18n/tg.ts +2 -0
- package/src/i18n/th.ts +2 -0
- package/src/i18n/tk.ts +2 -0
- package/src/i18n/tr.ts +2 -0
- package/src/i18n/uk.ts +2 -0
- package/src/i18n/ur.ts +2 -0
- package/src/i18n/uz.ts +2 -0
- package/src/i18n/vi.ts +2 -0
- package/src/i18n/zh.ts +2 -0
- package/src/i18n/zht.ts +2 -0
- package/src/styles/index.css +20 -4
- package/src/styles/tailwind/index.css +1 -15
- package/src/theme/context.tsx +11 -19
- package/src/theme/themes/oc-2.json +1 -1
- package/src/v2/components/accordion-v2.css +139 -0
- package/src/v2/components/accordion-v2.tsx +86 -0
- package/src/{data-display/avatar/avatar.tsx → v2/components/avatar-v2.tsx} +1 -1
- package/src/{data-display/badge/badge.css → v2/components/badge-v2.css} +0 -19
- package/src/{data-display/badge/badge.tsx → v2/components/badge-v2.tsx} +4 -6
- package/src/{actions/button/button.tsx → v2/components/button-v2.tsx} +8 -8
- package/src/v2/components/checkbox-v2.css +184 -0
- package/src/v2/components/checkbox-v2.tsx +65 -0
- package/src/{overlays/dialog/dialog.css → v2/components/dialog-v2.css} +0 -3
- package/src/{overlays/dialog/dialog.tsx → v2/components/dialog-v2.tsx} +13 -11
- package/src/v2/components/diff-changes-v2.css +26 -0
- package/src/{data-display/diff-changes/diff-changes.tsx → v2/components/diff-changes-v2.tsx} +2 -7
- package/src/{layout/divider/divider.tsx → v2/components/divider-v2.tsx} +3 -3
- package/src/{forms/field/field.tsx → v2/components/field-v2.tsx} +11 -9
- package/src/v2/components/icon-button-v2.tsx +37 -0
- package/src/{icons/icon → v2/components}/icon.tsx +9 -42
- package/src/v2/components/inline-input-v2.css +225 -0
- package/src/v2/components/inline-input-v2.tsx +107 -0
- package/src/{data-display/keybind/keybind.css → v2/components/keybind-v2.css} +1 -1
- package/src/{data-display/keybind/keybind.tsx → v2/components/keybind-v2.tsx} +3 -3
- package/src/{data-display/line-comment/line-comment.tsx → v2/components/line-comment-v2.tsx} +15 -17
- package/src/{feedback/loader/loader.tsx → v2/components/loader-v2.tsx} +2 -2
- package/src/{navigation/menu/menu.css → v2/components/menu-v2.css} +0 -121
- package/src/{navigation/menu/menu.tsx → v2/components/menu-v2.tsx} +32 -96
- package/src/v2/components/progress-circle-v2.css +13 -0
- package/src/v2/components/progress-circle-v2.tsx +52 -0
- package/src/{data-display/project-avatar/project-avatar.tsx → v2/components/project-avatar-v2.tsx} +1 -1
- package/src/{forms/radio/radio.tsx → v2/components/radio-v2.tsx} +20 -30
- package/src/{navigation/segmented-control/segmented-control.tsx → v2/components/segmented-control-v2.tsx} +8 -9
- package/src/{forms/select/select.css → v2/components/select-v2.css} +8 -2
- package/src/{forms/select/select.tsx → v2/components/select-v2.tsx} +32 -38
- package/src/{actions/split-button/split-button.css → v2/components/split-button-v2.css} +6 -1
- package/src/{actions/split-button/split-button.tsx → v2/components/split-button-v2.tsx} +4 -4
- package/src/{forms/switch/switch.css → v2/components/switch-v2.css} +0 -110
- package/src/v2/components/switch-v2.tsx +28 -0
- package/src/{navigation/tabs/tabs-current.css → v2/components/tabs-v2.css} +9 -24
- package/src/v2/components/tabs-v2.tsx +149 -0
- package/src/{forms/text-input/text-input.tsx → v2/components/text-input-v2.tsx} +4 -4
- package/src/v2/components/text-shimmer-v2.css +125 -0
- package/src/v2/components/text-shimmer-v2.tsx +63 -0
- package/src/{forms/textarea/textarea.tsx → v2/components/textarea-v2.tsx} +3 -3
- package/src/{feedback/toast/toast.tsx → v2/components/toast-v2.tsx} +58 -60
- package/src/{overlays/tooltip/tooltip.css → v2/components/tooltip-v2.css} +0 -26
- package/src/{overlays/tooltip/tooltip.tsx → v2/components/tooltip-v2.tsx} +14 -18
- package/src/{typography/wordmark/wordmark.tsx → v2/components/wordmark-v2.tsx} +1 -1
- package/src/{styles/tokens → v2/styles}/theme.css +12 -0
- package/dist/actions/button/button.d.ts +0 -10
- package/dist/actions/icon-button/icon-button.d.ts +0 -11
- package/dist/actions/split-button/split-button.d.ts +0 -5
- package/dist/data-display/badge/badge.d.ts +0 -7
- package/dist/data-display/keybind/keybind.d.ts +0 -7
- package/dist/feedback/loader/loader.d.ts +0 -3
- package/dist/feedback/toast/toast.d.ts +0 -57
- package/dist/forms/radio/radio.d.ts +0 -16
- package/dist/forms/textarea/textarea.d.ts +0 -7
- package/dist/i18n/he.d.ts +0 -197
- package/dist/layout/divider/divider.d.ts +0 -5
- package/dist/navigation/menu/menu.d.ts +0 -59
- package/dist/overlays/tooltip/tooltip.d.ts +0 -14
- package/dist/typography/wordmark/wordmark.d.ts +0 -2
- package/src/actions/icon-button/icon-button.tsx +0 -32
- package/src/feedback/progress-circle/progress-circle.css +0 -28
- package/src/feedback/progress-circle/progress-circle.tsx +0 -64
- package/src/forms/switch/switch.tsx +0 -34
- package/src/i18n/he.ts +0 -199
- package/src/icons/icon/icon.css +0 -3
- package/src/navigation/tabs/tabs.tsx +0 -194
- /package/dist/{forms/inline-input → components}/inline-input.d.ts +0 -0
- /package/dist/{navigation → v2/components}/tab-state-indicator.d.ts +0 -0
- /package/src/{forms/inline-input → components}/inline-input.css +0 -0
- /package/src/{forms/inline-input → components}/inline-input.tsx +0 -0
- /package/src/{data-display/avatar/avatar.css → v2/components/avatar-v2.css} +0 -0
- /package/src/{actions/button/button.css → v2/components/button-v2.css} +0 -0
- /package/src/{layout/divider/divider.css → v2/components/divider-v2.css} +0 -0
- /package/src/{forms/field/field.css → v2/components/field-v2.css} +0 -0
- /package/src/{styles/file-tree.css → v2/components/file-tree-v2.css} +0 -0
- /package/src/{actions/icon-button/icon-button.css → v2/components/icon-button-v2.css} +0 -0
- /package/src/{data-display/line-comment/line-comment.css → v2/components/line-comment-v2.css} +0 -0
- /package/src/{feedback/loader/loader.css → v2/components/loader-v2.css} +0 -0
- /package/src/{data-display/project-avatar/project-avatar.css → v2/components/project-avatar-v2.css} +0 -0
- /package/src/{forms/radio/radio.css → v2/components/radio-v2.css} +0 -0
- /package/src/{navigation/segmented-control/segmented-control.css → v2/components/segmented-control-v2.css} +0 -0
- /package/src/{navigation → v2/components}/tab-state-indicator.tsx +0 -0
- /package/src/{forms/text-input/text-input.css → v2/components/text-input-v2.css} +0 -0
- /package/src/{forms/textarea/textarea.css → v2/components/textarea-v2.css} +0 -0
- /package/src/{feedback/toast/toast.css → v2/components/toast-v2.css} +0 -0
- /package/src/{styles/tokens → v2/styles}/colors.css +0 -0
- /package/src/{styles/tokens/index.css → v2/styles/tailwind.css} +0 -0
package/src/i18n/he.ts
DELETED
|
@@ -1,199 +0,0 @@
|
|
|
1
|
-
export const dict = {
|
|
2
|
-
"ui.sessionReview.title": "שינויים בהפעלה",
|
|
3
|
-
"ui.sessionReview.title.git": "שינויים ב-Git",
|
|
4
|
-
"ui.sessionReview.title.branch": "שינויים בענף",
|
|
5
|
-
"ui.sessionReview.title.lastTurn": "שינויים בתור האחרון",
|
|
6
|
-
"ui.sessionReview.diffStyle.unified": "מאוחד",
|
|
7
|
-
"ui.sessionReview.diffStyle.split": "מפוצל",
|
|
8
|
-
"ui.sessionReview.expandAll": "הרחב הכל",
|
|
9
|
-
"ui.sessionReview.collapseAll": "כווץ הכל",
|
|
10
|
-
"ui.sessionReview.change.added": "נוסף",
|
|
11
|
-
"ui.sessionReview.change.removed": "הוסר",
|
|
12
|
-
"ui.sessionReview.change.modified": "שונה",
|
|
13
|
-
"ui.sessionReview.image.loading": "טוען...",
|
|
14
|
-
"ui.sessionReview.image.placeholder": "תמונה",
|
|
15
|
-
"ui.sessionReview.largeDiff.title": "ה-diff גדול מדי להצגה",
|
|
16
|
-
"ui.sessionReview.largeDiff.meta": "המגבלה היא {{limit}} שורות שהשתנו. כעת יש {{current}} שורות שהשתנו.",
|
|
17
|
-
"ui.sessionReview.largeDiff.renderAnyway": "הצג בכל זאת",
|
|
18
|
-
"ui.sessionReviewV2.expandMode": "הרחבה או כיווץ של ה-diff",
|
|
19
|
-
"ui.sessionReviewV2.filterFiles": "סינון קבצים",
|
|
20
|
-
"ui.sessionReviewV2.toggleSidebar": "הצגה או הסתרה של עץ הקבצים",
|
|
21
|
-
"ui.sessionReviewV2.showAllLines": "הצג את כל השורות",
|
|
22
|
-
"ui.sessionReviewV2.hideNonDiffLines": "הסתרת שורות שאינן חלק מה-diff",
|
|
23
|
-
"ui.sessionReviewV2.unifiedDiff": "diff מאוחד",
|
|
24
|
-
"ui.sessionReviewV2.splitDiff": "diff מפוצל",
|
|
25
|
-
"ui.sessionReviewV2.previousFile": "הקובץ הקודם",
|
|
26
|
-
"ui.sessionReviewV2.nextFile": "הקובץ הבא",
|
|
27
|
-
"ui.sessionReviewV2.diffView": "תצוגת diff",
|
|
28
|
-
"ui.sessionReviewV2.empty.noGit.title": "אין שינויים במעקב",
|
|
29
|
-
"ui.sessionReviewV2.empty.noGit.description": "עקוב, סקור ובטל שינויים בפרויקט הזה",
|
|
30
|
-
"ui.sessionReviewV2.empty.noGit.action": "צור מאגר Git",
|
|
31
|
-
"ui.sessionReviewV2.empty.noGit.actionLoading": "יוצר מאגר Git...",
|
|
32
|
-
"ui.sessionReviewV2.empty.changes.title": "אין עדיין שינויים בקובץ",
|
|
33
|
-
"ui.sessionReviewV2.empty.changes.description": "שינויים בפרויקט יופיעו כאן",
|
|
34
|
-
"ui.sessionReview.openFile": "פתיחת קובץ",
|
|
35
|
-
"ui.sessionReview.selection.line": "שורה {{line}}",
|
|
36
|
-
"ui.sessionReview.selection.lines": "שורות {{start}}-{{end}}",
|
|
37
|
-
"ui.fileMedia.kind.image": "תמונה",
|
|
38
|
-
"ui.fileMedia.kind.audio": "אודיו",
|
|
39
|
-
"ui.fileMedia.state.removed": "הוסר קובץ {{kind}}.",
|
|
40
|
-
"ui.fileMedia.state.loading": "טוען {{kind}}...",
|
|
41
|
-
"ui.fileMedia.state.error": "לא ניתן לטעון {{kind}}.",
|
|
42
|
-
"ui.fileMedia.state.unavailable": "תצוגה מקדימה של {{kind}} אינה זמינה.",
|
|
43
|
-
"ui.fileMedia.binary.title": "קובץ בינארי",
|
|
44
|
-
"ui.fileMedia.binary.description.path": "{{path}} הוא קובץ בינארי.",
|
|
45
|
-
"ui.fileMedia.binary.description.default": "תוכן בינארי",
|
|
46
|
-
"ui.lineComment.label.prefix": "תגובה על ",
|
|
47
|
-
"ui.lineComment.label.suffix": "",
|
|
48
|
-
"ui.lineComment.editorLabel.prefix": "תגובה על ",
|
|
49
|
-
"ui.lineComment.editorLabel.suffix": "",
|
|
50
|
-
"ui.lineComment.placeholder": "הוסף תגובה",
|
|
51
|
-
"ui.lineComment.contextPlaceholder": "הוסף הקשר לשינוי זה",
|
|
52
|
-
"ui.lineComment.submit": "שלח תגובה",
|
|
53
|
-
"ui.lineComment.cancel": "בטל",
|
|
54
|
-
"ui.sessionTurn.steps.show": "הצג צעדים",
|
|
55
|
-
"ui.sessionTurn.steps.hide": "הסתר צעדים",
|
|
56
|
-
"ui.sessionTurn.summary.response": "תגובה",
|
|
57
|
-
"ui.sessionTurn.diff.showMore": "הצג שינויים נוספים ({{count}})",
|
|
58
|
-
"ui.sessionTurn.diffs.changed.one": "{{count}} קובץ השתנה",
|
|
59
|
-
"ui.sessionTurn.diffs.changed.other": "{{count}} קבצים השתנו",
|
|
60
|
-
"ui.sessionTurn.diffs.showAll": "הצג הכל",
|
|
61
|
-
"ui.sessionTurn.diffs.showLess": "הצג פחות",
|
|
62
|
-
"ui.sessionTurn.diffs.more": "+{{count}} קבצים נוספים",
|
|
63
|
-
"ui.sessionTurn.retry.retrying": "מנסה שוב",
|
|
64
|
-
"ui.sessionTurn.retry.inSeconds": "בעוד {{seconds}} שניות",
|
|
65
|
-
"ui.sessionTurn.retry.attempt": "ניסיון #{{attempt}}",
|
|
66
|
-
"ui.sessionTurn.retry.attemptLine": "{{line}} - ניסיון #{{attempt}}",
|
|
67
|
-
"ui.sessionTurn.retry.geminiHot": "העומס על Gemini גבוה מדי כרגע",
|
|
68
|
-
"ui.sessionTurn.error.freeUsageExceeded": "חריגה מהשימוש בחינם",
|
|
69
|
-
"ui.sessionTurn.error.addCredits": "הוסף קרדיטים",
|
|
70
|
-
"dialog.usageExceeded.freeTier.title": "הגעת למגבלה החינמית",
|
|
71
|
-
"dialog.usageExceeded.freeTier.description":
|
|
72
|
-
"הירשם ל-OpenCode Go לקבלת גישה אמינה למודלי הקוד הפתוח הטובים ביותר, החל מ-$5 לחודש.",
|
|
73
|
-
"dialog.usageExceeded.freeTier.actionLabel": "הירשם",
|
|
74
|
-
"dialog.usageExceeded.accountRateLimit.title": "הגעת למגבלת Go",
|
|
75
|
-
"dialog.usageExceeded.accountRateLimit.description":
|
|
76
|
-
"הגעת למגבלת השימוש. כדי להמשיך להשתמש במודל זה כעת, הפעל שימוש מהיתרה הזמינה שלך",
|
|
77
|
-
"dialog.usageExceeded.accountRateLimit.actionLabel": "פתח את ההגדרות",
|
|
78
|
-
"ui.sessionTurn.status.delegating": "מעביר את העבודה לסוכן אחר",
|
|
79
|
-
"ui.sessionTurn.status.planning": "תכנון השלבים הבאים",
|
|
80
|
-
"ui.sessionTurn.status.gatheringContext": "בודק את הפרויקט",
|
|
81
|
-
"ui.sessionTurn.status.gatheredContext": "בדיקת הפרויקט הסתיימה",
|
|
82
|
-
"ui.sessionTurn.status.searchingCodebase": "חיפוש בבסיס הקוד",
|
|
83
|
-
"ui.sessionTurn.status.searchingWeb": "חיפוש באינטרנט",
|
|
84
|
-
"ui.sessionTurn.status.makingEdits": "ביצוע עריכות",
|
|
85
|
-
"ui.sessionTurn.status.runningCommands": "הפעלת פקודות",
|
|
86
|
-
"ui.sessionTurn.status.thinking": "חושב",
|
|
87
|
-
"ui.sessionTurn.status.thinkingWithTopic": "חשיבה - {{topic}}",
|
|
88
|
-
"ui.sessionTurn.status.gatheringThoughts": "מגבש מחשבות",
|
|
89
|
-
"ui.sessionTurn.status.consideringNextSteps": "בוחן את הצעדים הבאים",
|
|
90
|
-
"ui.messagePart.diagnostic.error": "שגיאה",
|
|
91
|
-
"ui.messagePart.title.edit": "ערוך",
|
|
92
|
-
"ui.messagePart.title.write": "כתוב",
|
|
93
|
-
"ui.messagePart.option.typeOwnAnswer": "הקלד את התשובה שלך",
|
|
94
|
-
"ui.messagePart.review.title": "בדיקת התשובות",
|
|
95
|
-
"ui.messagePart.questions.dismissed": "השאלות נדחו",
|
|
96
|
-
"ui.messagePart.compaction": "ההפעלה נדחסה",
|
|
97
|
-
"ui.messagePart.context.read.one": "{{count}} קריאה",
|
|
98
|
-
"ui.messagePart.context.read.other": "{{count}} קריאות",
|
|
99
|
-
"ui.messagePart.context.search.one": "{{count}} חיפוש",
|
|
100
|
-
"ui.messagePart.context.search.other": "{{count}} חיפושים",
|
|
101
|
-
"ui.messagePart.context.list.one": "{{count}} הצגה",
|
|
102
|
-
"ui.messagePart.context.list.other": "{{count}} הצגות",
|
|
103
|
-
"ui.list.loading": "טוען",
|
|
104
|
-
"ui.list.empty": "אין תוצאות",
|
|
105
|
-
"ui.list.clearFilter": "נקה מסנן",
|
|
106
|
-
"ui.list.emptyWithFilter.prefix": "אין תוצאות עבור",
|
|
107
|
-
"ui.list.emptyWithFilter.suffix": "",
|
|
108
|
-
"ui.fileSearch.placeholder": "מצא",
|
|
109
|
-
"ui.fileSearch.previousMatch": "התוצאה הקודמת",
|
|
110
|
-
"ui.fileSearch.nextMatch": "התוצאה הבאה",
|
|
111
|
-
"ui.fileSearch.close": "סגור חיפוש",
|
|
112
|
-
"ui.messageNav.newMessage": "הודעה חדשה",
|
|
113
|
-
"ui.promptInput.noMatchingItems": "אין פריטים תואמים",
|
|
114
|
-
"ui.promptInput.commands": "פקודות",
|
|
115
|
-
"ui.promptInput.dropFiles": "שחרר קבצים לצירוף",
|
|
116
|
-
"ui.promptInput.removeAttachment": "הסר את הקובץ המצורף",
|
|
117
|
-
"ui.promptInput.label": "פרומפט",
|
|
118
|
-
"ui.promptInput.placeholder.shell": "הזן פקודת מעטפת...",
|
|
119
|
-
"ui.promptInput.placeholder.normal": "שאל כל דבר, {{slash}} עבור פקודות, {{at}} עבור הקשר...",
|
|
120
|
-
"ui.promptInput.add": "הוסף תמונות וקבצים",
|
|
121
|
-
"ui.promptInput.attachments": "תמונות וקבצים",
|
|
122
|
-
"ui.promptInput.context": "הקשר",
|
|
123
|
-
"ui.promptInput.shell": "פקודת מעטפת",
|
|
124
|
-
"ui.promptInput.chooseAgent": "בחר סוכן",
|
|
125
|
-
"ui.promptInput.chooseModel": "בחר מודל",
|
|
126
|
-
"ui.promptInput.chooseVariant": "בחר גרסה של מודל",
|
|
127
|
-
"ui.promptInput.send": "שלח",
|
|
128
|
-
"ui.promptInput.stop": "עצור",
|
|
129
|
-
"ui.tabs.close": "סגור כרטיסייה",
|
|
130
|
-
"ui.textField.copyToClipboard": "העתק ללוח",
|
|
131
|
-
"ui.textField.copyLink": "העתק קישור",
|
|
132
|
-
"ui.textField.copied": "הועתק",
|
|
133
|
-
"ui.imagePreview.alt": "תצוגה מקדימה של תמונה",
|
|
134
|
-
"ui.scrollView.ariaLabel": "תוכן שניתן לגלול",
|
|
135
|
-
"ui.tool.read": "קרא",
|
|
136
|
-
"ui.tool.loaded": "טעון",
|
|
137
|
-
"ui.tool.list": "רשימה",
|
|
138
|
-
"ui.tool.glob": "Glob",
|
|
139
|
-
"ui.tool.grep": "Grep",
|
|
140
|
-
"ui.tool.task": "משימה",
|
|
141
|
-
"ui.tool.webfetch": "Webfetch",
|
|
142
|
-
"ui.tool.websearch": "Web Search",
|
|
143
|
-
"ui.tool.websearch.provider": "{{provider}} Web Search",
|
|
144
|
-
"ui.tool.shell": "Shell",
|
|
145
|
-
"ui.tool.patch": "Patch",
|
|
146
|
-
"ui.tool.questions": "שאלות",
|
|
147
|
-
"ui.tool.questions.numbered": "שאלות {{number}}",
|
|
148
|
-
"ui.tool.agent": "סוכן {{type}}",
|
|
149
|
-
"ui.tool.agent.default": "סוכן",
|
|
150
|
-
"ui.tool.skill": "מיומנות",
|
|
151
|
-
"ui.basicTool.called": "בוצעה קריאה אל `{{tool}}`",
|
|
152
|
-
"ui.toolErrorCard.failed": "נכשל",
|
|
153
|
-
"ui.toolErrorCard.copyError": "שגיאת העתקה",
|
|
154
|
-
"ui.common.file.one": "קובץ",
|
|
155
|
-
"ui.common.file.other": "קבצים",
|
|
156
|
-
"ui.common.question.one": "שאלה",
|
|
157
|
-
"ui.common.question.other": "שאלות",
|
|
158
|
-
"ui.common.add": "הוסף",
|
|
159
|
-
"ui.common.clear": "נקה",
|
|
160
|
-
"ui.common.file": "קובץ",
|
|
161
|
-
"ui.common.back": "חזרה",
|
|
162
|
-
"ui.common.cancel": "בטל",
|
|
163
|
-
"ui.common.confirm": "אשר",
|
|
164
|
-
"ui.common.dismiss": "סגור",
|
|
165
|
-
"ui.common.close": "סגור",
|
|
166
|
-
"ui.common.next": "הבא",
|
|
167
|
-
"ui.common.submit": "שלח",
|
|
168
|
-
"ui.common.showMore": "הצג עוד",
|
|
169
|
-
"ui.permission.deny": "דחה",
|
|
170
|
-
"ui.permission.allowAlways": "אפשר תמיד",
|
|
171
|
-
"ui.permission.allowOnce": "אפשר פעם אחת",
|
|
172
|
-
"ui.message.expand": "הרחב את ההודעה",
|
|
173
|
-
"ui.message.collapse": "כווץ הודעה",
|
|
174
|
-
"ui.message.copy": "העתק",
|
|
175
|
-
"ui.message.copyMessage": "העתק הודעה",
|
|
176
|
-
"ui.message.forkMessage": "יצירת הפעלה חדשה מכאן",
|
|
177
|
-
"ui.message.revertMessage": "ביטול ההודעה",
|
|
178
|
-
"ui.message.copyResponse": "העתק את התגובה",
|
|
179
|
-
"ui.message.copied": "הועתק",
|
|
180
|
-
"ui.message.duration.seconds": "{{count}}s",
|
|
181
|
-
"ui.message.duration.minutesSeconds": "{{minutes}}m {{seconds}}s",
|
|
182
|
-
"ui.message.interrupted": "נקטע",
|
|
183
|
-
"ui.message.queued": "בתור",
|
|
184
|
-
"ui.message.attachment.alt": "קובץ מצורף",
|
|
185
|
-
"ui.patch.action.deleted": "נמחק",
|
|
186
|
-
"ui.patch.action.created": "נוצר",
|
|
187
|
-
"ui.patch.action.moved": "הועבר",
|
|
188
|
-
"ui.patch.action.patched": "עודכן",
|
|
189
|
-
"ui.question.subtitle.answered": "שאלות שנענו: {{count}}",
|
|
190
|
-
"ui.question.answer.none": "(אין תשובה)",
|
|
191
|
-
"ui.question.review.notAnswered": "(ללא תשובה)",
|
|
192
|
-
"ui.question.multiHint": "בחר את כל התשובות המתאימות",
|
|
193
|
-
"ui.question.singleHint": "בחר תשובה אחת",
|
|
194
|
-
"ui.question.custom.placeholder": "הקלד את תשובתך...",
|
|
195
|
-
"ui.sessionTurn.diffs.changed.two": "{{count}} קבצים השתנו",
|
|
196
|
-
"ui.messagePart.context.read.two": "{{count}} קריאות",
|
|
197
|
-
"ui.messagePart.context.search.two": "{{count}} חיפושים",
|
|
198
|
-
"ui.messagePart.context.list.two": "{{count}} הצגות",
|
|
199
|
-
}
|
package/src/icons/icon/icon.css
DELETED
|
@@ -1,194 +0,0 @@
|
|
|
1
|
-
import { Content, List, Root, Trigger } from "@kobalte/core/tabs"
|
|
2
|
-
import { createContext, Show, splitProps, useContext, type JSX } from "solid-js"
|
|
3
|
-
import type { Component, ComponentProps, ParentProps } from "solid-js"
|
|
4
|
-
import { useI18n } from "../../context/i18n"
|
|
5
|
-
import "./tabs-current.css"
|
|
6
|
-
|
|
7
|
-
export type TabsVariant = "panel" | "underline" | "surface" | "line" | "pill" | "settings"
|
|
8
|
-
|
|
9
|
-
export interface TabsProps extends ComponentProps<typeof Root> {
|
|
10
|
-
variant?: TabsVariant
|
|
11
|
-
orientation?: "horizontal" | "vertical"
|
|
12
|
-
}
|
|
13
|
-
export interface TabsListProps extends ComponentProps<typeof List> {}
|
|
14
|
-
export interface TabsTriggerProps extends ComponentProps<typeof Trigger> {
|
|
15
|
-
classes?: { button?: string }
|
|
16
|
-
closeButton?: JSX.Element
|
|
17
|
-
hideCloseButton?: boolean
|
|
18
|
-
onMiddleClick?: () => void
|
|
19
|
-
subtext?: JSX.Element | string
|
|
20
|
-
}
|
|
21
|
-
export interface TabsCloseButtonProps extends ComponentProps<"button"> {}
|
|
22
|
-
export interface TabsContentProps extends ComponentProps<typeof Content> {}
|
|
23
|
-
|
|
24
|
-
const TabsContext = createContext<{ current: () => boolean }>({ current: () => false })
|
|
25
|
-
|
|
26
|
-
function TabsRoot(props: TabsProps) {
|
|
27
|
-
const [local, rest] = splitProps(props, ["class", "classList", "variant", "orientation", "children"])
|
|
28
|
-
const variant = () => local.variant ?? "panel"
|
|
29
|
-
const current = () => variant() === "line" || variant() === "pill" || variant() === "settings"
|
|
30
|
-
const dataVariant = () => {
|
|
31
|
-
if (variant() === "panel" || variant() === "line") return "normal"
|
|
32
|
-
if (variant() === "underline") return "alt"
|
|
33
|
-
if (variant() === "surface") return "pill"
|
|
34
|
-
return variant()
|
|
35
|
-
}
|
|
36
|
-
return (
|
|
37
|
-
<TabsContext.Provider value={{ current }}>
|
|
38
|
-
<Root
|
|
39
|
-
{...rest}
|
|
40
|
-
orientation={local.orientation}
|
|
41
|
-
data-component={current() ? "tabs-v2" : "tabs"}
|
|
42
|
-
data-variant={dataVariant()}
|
|
43
|
-
data-orientation={local.orientation || "horizontal"}
|
|
44
|
-
classList={{
|
|
45
|
-
...local.classList,
|
|
46
|
-
[local.class ?? ""]: !!local.class,
|
|
47
|
-
}}
|
|
48
|
-
>
|
|
49
|
-
{local.children}
|
|
50
|
-
</Root>
|
|
51
|
-
</TabsContext.Provider>
|
|
52
|
-
)
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
function TabsList(props: TabsListProps) {
|
|
56
|
-
const ctx = useContext(TabsContext)
|
|
57
|
-
const [local, rest] = splitProps(props, ["class", "classList"])
|
|
58
|
-
return (
|
|
59
|
-
<List
|
|
60
|
-
{...rest}
|
|
61
|
-
data-slot={ctx.current() ? "tabs-v2-list" : "tabs-list"}
|
|
62
|
-
classList={{
|
|
63
|
-
...local.classList,
|
|
64
|
-
[local.class ?? ""]: !!local.class,
|
|
65
|
-
}}
|
|
66
|
-
/>
|
|
67
|
-
)
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
function TabsTrigger(props: ParentProps<TabsTriggerProps>) {
|
|
71
|
-
const ctx = useContext(TabsContext)
|
|
72
|
-
const [local, rest] = splitProps(props, [
|
|
73
|
-
"class",
|
|
74
|
-
"classList",
|
|
75
|
-
"classes",
|
|
76
|
-
"children",
|
|
77
|
-
"closeButton",
|
|
78
|
-
"hideCloseButton",
|
|
79
|
-
"onMiddleClick",
|
|
80
|
-
"subtext",
|
|
81
|
-
"dir",
|
|
82
|
-
])
|
|
83
|
-
const wrapperSlot = () => (ctx.current() ? "tabs-v2-trigger-wrapper" : "tabs-trigger-wrapper")
|
|
84
|
-
const triggerSlot = () => (ctx.current() ? "tabs-v2-trigger" : "tabs-trigger")
|
|
85
|
-
const closeSlot = () => (ctx.current() ? "tabs-v2-trigger-close-button" : "tabs-trigger-close-button")
|
|
86
|
-
return (
|
|
87
|
-
<div
|
|
88
|
-
data-slot={wrapperSlot()}
|
|
89
|
-
data-value={props.value}
|
|
90
|
-
classList={{
|
|
91
|
-
...local.classList,
|
|
92
|
-
[local.class ?? ""]: !!local.class,
|
|
93
|
-
}}
|
|
94
|
-
onMouseDown={(event) => {
|
|
95
|
-
if (event.button !== 1 || !local.onMiddleClick) return
|
|
96
|
-
event.preventDefault()
|
|
97
|
-
}}
|
|
98
|
-
onAuxClick={(event) => {
|
|
99
|
-
if (event.button !== 1 || !local.onMiddleClick) return
|
|
100
|
-
event.preventDefault()
|
|
101
|
-
local.onMiddleClick()
|
|
102
|
-
}}
|
|
103
|
-
>
|
|
104
|
-
<Trigger
|
|
105
|
-
{...rest}
|
|
106
|
-
dir={local.dir ?? "auto"}
|
|
107
|
-
data-slot={triggerSlot()}
|
|
108
|
-
data-value={props.value}
|
|
109
|
-
classList={{ [local.classes?.button ?? ""]: !!local.classes?.button }}
|
|
110
|
-
>
|
|
111
|
-
<Show when={ctx.current()} fallback={local.children}>
|
|
112
|
-
<span class="inline-flex items-center gap-2" data-slot="tabs-v2-trigger-content">
|
|
113
|
-
{local.children}
|
|
114
|
-
<Show when={local.subtext}>
|
|
115
|
-
{(subtext) => (
|
|
116
|
-
<span data-slot="tabs-v2-subtext" class="ms-2 text-xs text-text-weak">
|
|
117
|
-
{subtext()}
|
|
118
|
-
</span>
|
|
119
|
-
)}
|
|
120
|
-
</Show>
|
|
121
|
-
</span>
|
|
122
|
-
</Show>
|
|
123
|
-
</Trigger>
|
|
124
|
-
<Show when={local.closeButton}>
|
|
125
|
-
{(closeButton) => (
|
|
126
|
-
<div data-slot={closeSlot()} data-hidden={local.hideCloseButton ? "" : undefined}>
|
|
127
|
-
{closeButton()}
|
|
128
|
-
</div>
|
|
129
|
-
)}
|
|
130
|
-
</Show>
|
|
131
|
-
</div>
|
|
132
|
-
)
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
function TabsCloseButton(props: TabsCloseButtonProps) {
|
|
136
|
-
const i18n = useI18n()
|
|
137
|
-
const [local, rest] = splitProps(props, ["class", "classList", "onClick", "onPointerDown", "aria-label"])
|
|
138
|
-
return (
|
|
139
|
-
<button
|
|
140
|
-
type="button"
|
|
141
|
-
{...rest}
|
|
142
|
-
aria-label={local["aria-label"] ?? i18n.t("ui.tabs.close")}
|
|
143
|
-
data-slot="tabs-close-button"
|
|
144
|
-
classList={{
|
|
145
|
-
[local.class ?? ""]: !!local.class,
|
|
146
|
-
...local.classList,
|
|
147
|
-
}}
|
|
148
|
-
onPointerDown={(event) => {
|
|
149
|
-
event.stopPropagation()
|
|
150
|
-
if (typeof local.onPointerDown === "function") local.onPointerDown(event)
|
|
151
|
-
}}
|
|
152
|
-
onClick={(event) => {
|
|
153
|
-
event.preventDefault()
|
|
154
|
-
event.stopPropagation()
|
|
155
|
-
if (typeof local.onClick === "function") local.onClick(event)
|
|
156
|
-
}}
|
|
157
|
-
>
|
|
158
|
-
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true">
|
|
159
|
-
<path d="M10.8889 3.11108L3.11108 10.8889" stroke="currentColor" stroke-linejoin="round" />
|
|
160
|
-
<path d="M3.11108 3.11108L10.8889 10.8889" stroke="currentColor" stroke-linejoin="round" />
|
|
161
|
-
</svg>
|
|
162
|
-
</button>
|
|
163
|
-
)
|
|
164
|
-
}
|
|
165
|
-
|
|
166
|
-
function TabsContent(props: ParentProps<TabsContentProps>) {
|
|
167
|
-
const ctx = useContext(TabsContext)
|
|
168
|
-
const [local, rest] = splitProps(props, ["class", "classList", "children"])
|
|
169
|
-
return (
|
|
170
|
-
<Content
|
|
171
|
-
{...rest}
|
|
172
|
-
data-slot={ctx.current() ? "tabs-v2-content" : "tabs-content"}
|
|
173
|
-
classList={{
|
|
174
|
-
...local.classList,
|
|
175
|
-
[local.class ?? ""]: !!local.class,
|
|
176
|
-
}}
|
|
177
|
-
>
|
|
178
|
-
{local.children}
|
|
179
|
-
</Content>
|
|
180
|
-
)
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
const TabsSectionTitle: Component<ParentProps> = (props) => {
|
|
184
|
-
const ctx = useContext(TabsContext)
|
|
185
|
-
return <div data-slot={ctx.current() ? "tabs-v2-section-title" : "tabs-section-title"}>{props.children}</div>
|
|
186
|
-
}
|
|
187
|
-
|
|
188
|
-
export const Tabs = Object.assign(TabsRoot, {
|
|
189
|
-
List: TabsList,
|
|
190
|
-
Trigger: TabsTrigger,
|
|
191
|
-
CloseButton: TabsCloseButton,
|
|
192
|
-
Content: TabsContent,
|
|
193
|
-
SectionTitle: TabsSectionTitle,
|
|
194
|
-
})
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/src/{data-display/line-comment/line-comment.css → v2/components/line-comment-v2.css}
RENAMED
|
File without changes
|
|
File without changes
|
/package/src/{data-display/project-avatar/project-avatar.css → v2/components/project-avatar-v2.css}
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|