@cat-factory/app 0.280.0 → 0.280.2
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/binaryCandidates/BinaryCandidatesWindow.vue +142 -5
- package/app/components/board/AddTaskModal.vue +9 -0
- package/app/components/board/ReviewFrictionDialog.vue +35 -4
- package/app/components/board/TaskDependencyEdges.vue +26 -15
- package/app/components/board/nodes/TaskCard.vue +6 -1
- package/app/components/brainstorm/BrainstormWindow.vue +19 -1
- package/app/components/common/AsyncViewError.vue +30 -0
- package/app/components/common/ConfirmDialog.vue +26 -0
- package/app/components/docs/DocInterviewWindow.vue +40 -38
- package/app/components/followUp/FollowUpWindow.vue +32 -2
- package/app/components/forkDecision/ForkDecisionWindow.vue +44 -5
- package/app/components/gates/GateResultView.vue +14 -1
- package/app/components/humanTest/HumanTestWindow.vue +13 -1
- package/app/components/initiative/InitiativePlanDecision.vue +16 -3
- package/app/components/initiative/InitiativePlanReview.vue +16 -1
- package/app/components/initiative/InitiativePlanningWindow.vue +50 -52
- package/app/components/initiative/InitiativeTrackerWindow.vue +59 -1
- package/app/components/judge/JudgeResultView.vue +14 -1
- package/app/components/panels/AgentStepDetail.vue +651 -659
- package/app/components/panels/InspectorPanel.vue +6 -0
- package/app/components/panels/ResultWindowDrafts.logic.spec.ts +233 -0
- package/app/components/panels/inspector/ServiceTestSecrets.vue +17 -6
- package/app/components/pipeline/PipelineHealthModal.vue +55 -16
- package/app/components/prReview/PrReviewWindow.vue +23 -4
- package/app/components/visualConfirm/VisualConfirmationWindow.vue +19 -1
- package/app/composables/useBoardActivity.ts +62 -6
- package/app/composables/useConfirm.spec.ts +62 -0
- package/app/composables/useConfirm.ts +6 -1
- package/app/composables/useInterviewDrafts.spec.ts +198 -0
- package/app/composables/useInterviewDrafts.ts +184 -0
- 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/stores/binaryCandidates.ts +26 -3
- package/app/stores/ui/modals.ts +11 -0
- package/app/utils/asyncView.ts +24 -0
- package/app/utils/binaryCandidates.spec.ts +45 -1
- package/app/utils/binaryCandidates.ts +33 -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 +25 -2
- package/i18n/locales/en.json +25 -2
- package/i18n/locales/es.json +25 -2
- package/i18n/locales/fr.json +25 -2
- package/i18n/locales/he.json +25 -2
- package/i18n/locales/it.json +25 -2
- package/i18n/locales/ja.json +25 -2
- package/i18n/locales/pl.json +25 -2
- package/i18n/locales/tr.json +25 -2
- package/i18n/locales/uk.json +25 -2
- package/package.json +1 -1
|
@@ -101,6 +101,19 @@ const DISPOSITION_LABELS = computed<
|
|
|
101
101
|
|
|
102
102
|
const feedback = ref('')
|
|
103
103
|
const busy = computed(() => judgeStore.resolving)
|
|
104
|
+
|
|
105
|
+
/**
|
|
106
|
+
* Confirm before discarding typed guidance (UX-79). The feedback box is what a bounced producer is
|
|
107
|
+
* handed as its rework brief, it is held here until one of the three commands is pressed, and this
|
|
108
|
+
* window closes on Escape and on a backdrop click. Flushing it is not an option: every command that
|
|
109
|
+
* would carry it also RESOLVES the parked verdict.
|
|
110
|
+
*/
|
|
111
|
+
const { requestClose } = useUnsavedGuard({
|
|
112
|
+
open,
|
|
113
|
+
close: () => close(),
|
|
114
|
+
saving: () => busy.value,
|
|
115
|
+
snapshot: () => feedback.value.trim(),
|
|
116
|
+
})
|
|
104
117
|
const canAct = computed(() => awaiting.value && access.canExecuteRuns.value && !busy.value)
|
|
105
118
|
|
|
106
119
|
async function act(choice: 'proceed' | 'bounce' | 'stop') {
|
|
@@ -120,7 +133,7 @@ async function act(choice: 'proceed' | 'bounce' | 'stop') {
|
|
|
120
133
|
:subtitle="t('judge.subtitle')"
|
|
121
134
|
:step-ref="{ instanceId, stepIndex }"
|
|
122
135
|
width="3xl"
|
|
123
|
-
@close="
|
|
136
|
+
@close="requestClose"
|
|
124
137
|
>
|
|
125
138
|
<template #header-extras>
|
|
126
139
|
<UBadge
|