@arcote.tech/arc-ds 0.7.9 → 0.7.11
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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcote.tech/arc-ds",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.7.
|
|
4
|
+
"version": "0.7.11",
|
|
5
5
|
"private": false,
|
|
6
6
|
"author": "Przemysław Krasiński [arcote.tech]",
|
|
7
7
|
"description": "Design System for Arc framework — CVA-based components with display modes and variant overrides",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"tailwind-merge": "^3.5.0"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
|
-
"@arcote.tech/arc": "^0.7.
|
|
33
|
+
"@arcote.tech/arc": "^0.7.11",
|
|
34
34
|
"framer-motion": "^12.0.0",
|
|
35
35
|
"lucide-react": ">=0.400.0",
|
|
36
36
|
"radix-ui": "^1.0.0",
|
|
@@ -32,6 +32,9 @@ export interface ChatLabels {
|
|
|
32
32
|
errorLabel: string;
|
|
33
33
|
// askQuestions tool view
|
|
34
34
|
answerBelowLabel: ReactNode;
|
|
35
|
+
// Interrupted generation (server restart / stream lost) + retry button
|
|
36
|
+
interruptedLabel: ReactNode;
|
|
37
|
+
retryLabel: ReactNode;
|
|
35
38
|
// completeStage tool view
|
|
36
39
|
stageCompleteLabel: ReactNode;
|
|
37
40
|
advanceStageLabel: ReactNode;
|
|
@@ -62,6 +65,8 @@ export const defaultChatLabels: ChatLabels = {
|
|
|
62
65
|
toolDoneLabel: "Done",
|
|
63
66
|
errorLabel: "Error",
|
|
64
67
|
answerBelowLabel: "Answer the questions below",
|
|
68
|
+
interruptedLabel: "Generation interrupted",
|
|
69
|
+
retryLabel: "Retry",
|
|
65
70
|
stageCompleteLabel: "Stage complete",
|
|
66
71
|
advanceStageLabel: "Go to next stage",
|
|
67
72
|
continueStageLabel: "Keep talking",
|