@cat-factory/app 0.279.0 → 0.280.1
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/README.md +26 -1
- package/app/components/board/TaskDependencyEdges.vue +26 -15
- package/app/components/board/nodes/TaskCard.vue +6 -1
- package/app/components/common/AsyncViewError.vue +30 -0
- package/app/components/panels/AgentStepDetail.vue +651 -659
- package/app/components/panels/InspectorPanel.vue +6 -0
- package/app/components/sandbox/SandboxPanel.vue +39 -1
- package/app/composables/useBoardActivity.ts +62 -6
- package/app/composables/useTaskExpansion.ts +10 -25
- package/app/docs/consumer-extensions.md +9 -0
- package/app/modular/result-views.ts +58 -21
- package/app/pages/index.vue +68 -64
- package/app/types/sandbox.ts +25 -3
- package/app/utils/asyncView.ts +24 -0
- package/app/utils/blockRects.spec.ts +82 -0
- package/app/utils/blockRects.ts +61 -0
- package/app/utils/boardWakeGate.spec.ts +101 -0
- package/app/utils/boardWakeGate.ts +78 -0
- package/i18n/locales/de.json +11 -0
- package/i18n/locales/en.json +11 -0
- package/i18n/locales/es.json +11 -0
- package/i18n/locales/fr.json +11 -0
- package/i18n/locales/he.json +11 -0
- package/i18n/locales/it.json +11 -0
- package/i18n/locales/ja.json +11 -0
- package/i18n/locales/pl.json +11 -0
- package/i18n/locales/tr.json +11 -0
- package/i18n/locales/uk.json +11 -0
- package/package.json +2 -2
package/i18n/locales/uk.json
CHANGED
|
@@ -757,6 +757,11 @@
|
|
|
757
757
|
"body": "Інтеграція розгортання цього сервісу не пройшла перевірку з’єднання: {detail}. Перевірте її кінцеву точку та облікові дані, потім повторно перевірте з’єднання, щоб запустити його.",
|
|
758
758
|
"action": "Налаштувати інфраструктуру"
|
|
759
759
|
}
|
|
760
|
+
},
|
|
761
|
+
"asyncView": {
|
|
762
|
+
"title": "Не вдалося завантажити цей вигляд",
|
|
763
|
+
"body": "Не вдалося завантажити його код. Зазвичай це означає, що застосунок оновили, поки ця вкладка була відкрита, тож файлів, які запитує ця сторінка, уже немає на сервері. Перезавантажте, щоб отримати поточну версію.",
|
|
764
|
+
"reload": "Перезавантажити"
|
|
760
765
|
}
|
|
761
766
|
},
|
|
762
767
|
"personalSubscriptions": {
|
|
@@ -6778,9 +6783,15 @@
|
|
|
6778
6783
|
"clarity": "ясність",
|
|
6779
6784
|
"architecture": "архітектура",
|
|
6780
6785
|
"code-review": "огляд коду",
|
|
6786
|
+
"estimation": "оцінювання",
|
|
6787
|
+
"answer-recommendation": "рекомендовані відповіді",
|
|
6781
6788
|
"repo-feature": "функція репозиторію",
|
|
6782
6789
|
"repo-bug": "помилка репозиторію"
|
|
6783
6790
|
},
|
|
6791
|
+
"unsupportedReason": {
|
|
6792
|
+
"container-run-required": "Його результатом є надісланий коміт, тож оцінювання потребує справжнього запуску в контейнері на репозиторії-заготовці; вбудована комірка може оцінювати лише текст.",
|
|
6793
|
+
"unknown": "Цей агент не може працювати в Sandbox."
|
|
6794
|
+
},
|
|
6784
6795
|
"fixtureOrigin": {
|
|
6785
6796
|
"builtin": "вбудована",
|
|
6786
6797
|
"custom": "користувацька"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cat-factory/app",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.280.1",
|
|
4
4
|
"description": "Reusable Nuxt layer for the Agent Architecture Board SPA (components, stores, composables, pages). Consume it from a thin deployment app via `extends: ['@cat-factory/app']` and point it at your backend with NUXT_PUBLIC_API_BASE. See deploy/frontend for an example.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"valibot": "^1.4.2",
|
|
41
41
|
"vue": "3.5.41",
|
|
42
42
|
"wretch": "^3.0.9",
|
|
43
|
-
"@cat-factory/contracts": "0.
|
|
43
|
+
"@cat-factory/contracts": "0.320.0"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@toad-contracts/testing": "0.3.2",
|