dsh-client-auto-continue 0.11.0 → 0.11.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 +10 -4
- package/README.zh.md +10 -4
- package/docs/auto-continue-workflow-icons.LICENSE.txt +40 -0
- package/docs/auto-continue-workflow.archify.json +155 -0
- package/docs/auto-continue-workflow.en.archify.json +155 -0
- package/docs/auto-continue-workflow.en.html +14844 -0
- package/docs/auto-continue-workflow.en.svg +530 -0
- package/docs/auto-continue-workflow.html +14844 -0
- package/docs/auto-continue-workflow.svg +530 -0
- package/docs/screenshots/02-settings-card.png +0 -0
- package/lib/client.js +0 -12
- package/lib/client.js.map +2 -2
- package/lib/index.js +3 -3
- package/lib/types/client/locales.d.ts +0 -1
- package/package.json +2 -2
- package/scripts/apply-workflow-icons.mjs +165 -0
- package/src/client/locales.ts +0 -2
- package/src/client/settings-card.tsx +0 -1
- package/src/client/styles.ts +0 -9
- package/src/index.ts +5 -5
package/lib/client.js
CHANGED
|
@@ -82,7 +82,6 @@ var ECHO_WINDOW_MS = 10 * 60 * 1e3;
|
|
|
82
82
|
// src/client/locales.ts
|
|
83
83
|
var zh = {
|
|
84
84
|
"card.title": "自动继续",
|
|
85
|
-
"card.eyebrow": "中断接力器",
|
|
86
85
|
"card.description": "接住意外中断的请求,等现场稳定下来,再把对话交还给 Agent。",
|
|
87
86
|
"flow.interrupted": "检测中断",
|
|
88
87
|
"flow.grace": "安全等待",
|
|
@@ -187,7 +186,6 @@ var zh = {
|
|
|
187
186
|
};
|
|
188
187
|
var en = {
|
|
189
188
|
"card.title": "Auto continue",
|
|
190
|
-
"card.eyebrow": "Continuity relay",
|
|
191
189
|
"card.description": "Catches an interrupted request, waits for things to settle, then hands the thread back to the agent.",
|
|
192
190
|
"flow.interrupted": "Interrupted",
|
|
193
191
|
"flow.grace": "Safe pause",
|
|
@@ -714,15 +712,6 @@ var css = `
|
|
|
714
712
|
animation: dshAcRelayTravel 1.8s cubic-bezier(.4, 0, .2, 1) infinite;
|
|
715
713
|
}
|
|
716
714
|
.dshAcHeadText { flex-direction: column; flex: 1; gap: 3px; min-width: 0; display: flex; }
|
|
717
|
-
.dshAcEyebrow {
|
|
718
|
-
color: color-mix(in srgb, var(--dsh-ac-violet) 76%, var(--dsw-alias-label-secondary));
|
|
719
|
-
font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
720
|
-
font-size: 10px;
|
|
721
|
-
font-weight: 700;
|
|
722
|
-
line-height: 1.4;
|
|
723
|
-
letter-spacing: .12em;
|
|
724
|
-
text-transform: uppercase;
|
|
725
|
-
}
|
|
726
715
|
.dshAcName {
|
|
727
716
|
color: var(--dsw-alias-label-primary);
|
|
728
717
|
font-family: ui-rounded, "SF Pro Rounded", "Segoe UI", sans-serif;
|
|
@@ -1163,7 +1152,6 @@ function SettingsCard(props) {
|
|
|
1163
1152
|
children: [
|
|
1164
1153
|
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { className: "dshAcRelayMark", children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(RelayMark, {}) }),
|
|
1165
1154
|
/* @__PURE__ */ (0, import_jsx_runtime.jsxs)("span", { className: "dshAcHeadText", children: [
|
|
1166
|
-
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { className: "dshAcEyebrow", children: props.t("card.eyebrow") }),
|
|
1167
1155
|
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { className: "dshAcName", children: title }),
|
|
1168
1156
|
/* @__PURE__ */ (0, import_jsx_runtime.jsx)("span", { className: "dshAcDescription", children: props.t(props.descriptionKey) }),
|
|
1169
1157
|
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(RelayJourney, { t: props.t })
|