@volter-ai-dev/supercode-ui 0.1.48 → 0.1.49
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/components.mjs +1 -1
- package/composer.mjs +1 -1
- package/embed.mjs +1 -1
- package/messenger.mjs +1 -1
- package/package.json +1 -1
- package/react/components.mjs +1 -1
- package/react/composer.mjs +1 -1
- package/react/messenger.mjs +1 -1
package/components.mjs
CHANGED
|
@@ -1325,7 +1325,7 @@ function ContinuationBar({ state, adapter, labels = DEFAULT_LABELS }) {
|
|
|
1325
1325
|
join: state.canAttach,
|
|
1326
1326
|
branch: state.canBranch
|
|
1327
1327
|
};
|
|
1328
|
-
const continuation =
|
|
1328
|
+
const continuation = state.supportsAttach ? "join" : state.supportsResume ? "resume" : state.supportsBranch ? "branch" : available.join ? "join" : available.resume ? "resume" : available.branch ? "branch" : null;
|
|
1329
1329
|
if (!continuation) return /* @__PURE__ */ jsx3("div", { className: "scui-continuation", children: /* @__PURE__ */ jsxs3("span", { children: [
|
|
1330
1330
|
/* @__PURE__ */ jsx3("strong", { children: activeElsewhere ? "Active elsewhere" : "Read-only" }),
|
|
1331
1331
|
/* @__PURE__ */ jsx3("small", { children: "This session cannot be continued by an available harness." })
|
package/composer.mjs
CHANGED
|
@@ -319,7 +319,7 @@ function ContinuationBar({ state, adapter, labels = DEFAULT_LABELS }) {
|
|
|
319
319
|
join: state.canAttach,
|
|
320
320
|
branch: state.canBranch
|
|
321
321
|
};
|
|
322
|
-
const continuation =
|
|
322
|
+
const continuation = state.supportsAttach ? "join" : state.supportsResume ? "resume" : state.supportsBranch ? "branch" : available.join ? "join" : available.resume ? "resume" : available.branch ? "branch" : null;
|
|
323
323
|
if (!continuation) return /* @__PURE__ */ jsx3("div", { className: "scui-continuation", children: /* @__PURE__ */ jsxs3("span", { children: [
|
|
324
324
|
/* @__PURE__ */ jsx3("strong", { children: activeElsewhere ? "Active elsewhere" : "Read-only" }),
|
|
325
325
|
/* @__PURE__ */ jsx3("small", { children: "This session cannot be continued by an available harness." })
|
package/embed.mjs
CHANGED
|
@@ -1288,7 +1288,7 @@ function ContinuationBar({ state, adapter, labels = DEFAULT_LABELS }) {
|
|
|
1288
1288
|
join: state.canAttach,
|
|
1289
1289
|
branch: state.canBranch
|
|
1290
1290
|
};
|
|
1291
|
-
const continuation =
|
|
1291
|
+
const continuation = state.supportsAttach ? "join" : state.supportsResume ? "resume" : state.supportsBranch ? "branch" : available.join ? "join" : available.resume ? "resume" : available.branch ? "branch" : null;
|
|
1292
1292
|
if (!continuation) return /* @__PURE__ */ jsx3("div", { className: "scui-continuation", children: /* @__PURE__ */ jsxs3("span", { children: [
|
|
1293
1293
|
/* @__PURE__ */ jsx3("strong", { children: activeElsewhere ? "Active elsewhere" : "Read-only" }),
|
|
1294
1294
|
/* @__PURE__ */ jsx3("small", { children: "This session cannot be continued by an available harness." })
|
package/messenger.mjs
CHANGED
|
@@ -1285,7 +1285,7 @@ function ContinuationBar({ state, adapter, labels = DEFAULT_LABELS }) {
|
|
|
1285
1285
|
join: state.canAttach,
|
|
1286
1286
|
branch: state.canBranch
|
|
1287
1287
|
};
|
|
1288
|
-
const continuation =
|
|
1288
|
+
const continuation = state.supportsAttach ? "join" : state.supportsResume ? "resume" : state.supportsBranch ? "branch" : available.join ? "join" : available.resume ? "resume" : available.branch ? "branch" : null;
|
|
1289
1289
|
if (!continuation) return /* @__PURE__ */ jsx3("div", { className: "scui-continuation", children: /* @__PURE__ */ jsxs3("span", { children: [
|
|
1290
1290
|
/* @__PURE__ */ jsx3("strong", { children: activeElsewhere ? "Active elsewhere" : "Read-only" }),
|
|
1291
1291
|
/* @__PURE__ */ jsx3("small", { children: "This session cannot be continued by an available harness." })
|
package/package.json
CHANGED
package/react/components.mjs
CHANGED
|
@@ -1325,7 +1325,7 @@ function ContinuationBar({ state, adapter, labels = DEFAULT_LABELS }) {
|
|
|
1325
1325
|
join: state.canAttach,
|
|
1326
1326
|
branch: state.canBranch
|
|
1327
1327
|
};
|
|
1328
|
-
const continuation =
|
|
1328
|
+
const continuation = state.supportsAttach ? "join" : state.supportsResume ? "resume" : state.supportsBranch ? "branch" : available.join ? "join" : available.resume ? "resume" : available.branch ? "branch" : null;
|
|
1329
1329
|
if (!continuation) return /* @__PURE__ */ jsx3("div", { className: "scui-continuation", children: /* @__PURE__ */ jsxs3("span", { children: [
|
|
1330
1330
|
/* @__PURE__ */ jsx3("strong", { children: activeElsewhere ? "Active elsewhere" : "Read-only" }),
|
|
1331
1331
|
/* @__PURE__ */ jsx3("small", { children: "This session cannot be continued by an available harness." })
|
package/react/composer.mjs
CHANGED
|
@@ -319,7 +319,7 @@ function ContinuationBar({ state, adapter, labels = DEFAULT_LABELS }) {
|
|
|
319
319
|
join: state.canAttach,
|
|
320
320
|
branch: state.canBranch
|
|
321
321
|
};
|
|
322
|
-
const continuation =
|
|
322
|
+
const continuation = state.supportsAttach ? "join" : state.supportsResume ? "resume" : state.supportsBranch ? "branch" : available.join ? "join" : available.resume ? "resume" : available.branch ? "branch" : null;
|
|
323
323
|
if (!continuation) return /* @__PURE__ */ jsx3("div", { className: "scui-continuation", children: /* @__PURE__ */ jsxs3("span", { children: [
|
|
324
324
|
/* @__PURE__ */ jsx3("strong", { children: activeElsewhere ? "Active elsewhere" : "Read-only" }),
|
|
325
325
|
/* @__PURE__ */ jsx3("small", { children: "This session cannot be continued by an available harness." })
|
package/react/messenger.mjs
CHANGED
|
@@ -1285,7 +1285,7 @@ function ContinuationBar({ state, adapter, labels = DEFAULT_LABELS }) {
|
|
|
1285
1285
|
join: state.canAttach,
|
|
1286
1286
|
branch: state.canBranch
|
|
1287
1287
|
};
|
|
1288
|
-
const continuation =
|
|
1288
|
+
const continuation = state.supportsAttach ? "join" : state.supportsResume ? "resume" : state.supportsBranch ? "branch" : available.join ? "join" : available.resume ? "resume" : available.branch ? "branch" : null;
|
|
1289
1289
|
if (!continuation) return /* @__PURE__ */ jsx3("div", { className: "scui-continuation", children: /* @__PURE__ */ jsxs3("span", { children: [
|
|
1290
1290
|
/* @__PURE__ */ jsx3("strong", { children: activeElsewhere ? "Active elsewhere" : "Read-only" }),
|
|
1291
1291
|
/* @__PURE__ */ jsx3("small", { children: "This session cannot be continued by an available harness." })
|