omnius 1.0.290 → 1.0.292
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/dist/index.js +15 -5
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -608777,8 +608777,18 @@ var init_status_bar = __esm({
|
|
|
608777
608777
|
return;
|
|
608778
608778
|
}
|
|
608779
608779
|
if (cmd === "header-toggle") {
|
|
608780
|
+
const wasExpanded = this._headerExpanded;
|
|
608780
608781
|
this._headerExpanded = !this._headerExpanded;
|
|
608781
608782
|
this.refreshHeaderAndFooter();
|
|
608783
|
+
this.scrollRegionTop += this._headerExpanded ? 2 : -2;
|
|
608784
|
+
if (this.active) {
|
|
608785
|
+
this.applyScrollRegion();
|
|
608786
|
+
this.renderFooterAndPositionInput();
|
|
608787
|
+
}
|
|
608788
|
+
if (!this._headerExpanded && wasExpanded) {
|
|
608789
|
+
const base3 = this.scrollRegionTop;
|
|
608790
|
+
this.termWrite(`\x1B[${base3};1H\x1B[2K\x1B[${base3 + 1};1H\x1B[2K`);
|
|
608791
|
+
}
|
|
608782
608792
|
return;
|
|
608783
608793
|
}
|
|
608784
608794
|
setPressedButton(cmd);
|
|
@@ -614228,10 +614238,10 @@ ${c3.cyan(OMNIUS_FIRST_RUN_BANNER)}
|
|
|
614228
614238
|
process.stdout.write(boxLine(`${indent}${c3.dim(line)}`));
|
|
614229
614239
|
}
|
|
614230
614240
|
};
|
|
614231
|
-
const hLine = (ch) => ` ${c3.dim(ch + "─".repeat(boxW) + (ch === "
|
|
614241
|
+
const hLine = (ch) => ` ${c3.dim(ch + "─".repeat(boxW) + (ch === "╭" ? "╮" : ch === "├" ? "┤" : "╯"))}
|
|
614232
614242
|
`;
|
|
614233
614243
|
process.stdout.write("\n");
|
|
614234
|
-
process.stdout.write(hLine("
|
|
614244
|
+
process.stdout.write(hLine("╭"));
|
|
614235
614245
|
process.stdout.write(boxLine(` ${c3.bold("Inference Capability")}`));
|
|
614236
614246
|
process.stdout.write(hLine("├"));
|
|
614237
614247
|
process.stdout.write(boxLine(` ${c3.bold("Overall")}`));
|
|
@@ -614262,7 +614272,7 @@ ${c3.cyan(OMNIUS_FIRST_RUN_BANNER)}
|
|
|
614262
614272
|
process.stdout.write(` ${c3.dim("│")} ${icon} ${tag}${" ".repeat(notePad)}${note}${c3.dim("│")}
|
|
614263
614273
|
`);
|
|
614264
614274
|
}
|
|
614265
|
-
process.stdout.write(hLine("
|
|
614275
|
+
process.stdout.write(hLine("╰"));
|
|
614266
614276
|
process.stdout.write("\n");
|
|
614267
614277
|
const canPause = process.stdout.isTTY && process.stdin.isTTY && process.env["CI"] !== "true" && process.env["OMNIUS_SETUP_AUTO_CONTINUE"] !== "1";
|
|
614268
614278
|
if (canPause) {
|
|
@@ -629318,7 +629328,7 @@ async function handleSlashCommand(input, ctx3) {
|
|
|
629318
629328
|
const bw = 30;
|
|
629319
629329
|
process.stdout.write(
|
|
629320
629330
|
`
|
|
629321
|
-
${c3.dim("
|
|
629331
|
+
${c3.dim("╭──────────────────────────────────────────────────╮")}
|
|
629322
629332
|
`
|
|
629323
629333
|
);
|
|
629324
629334
|
process.stdout.write(
|
|
@@ -629401,7 +629411,7 @@ async function handleSlashCommand(input, ctx3) {
|
|
|
629401
629411
|
);
|
|
629402
629412
|
}
|
|
629403
629413
|
process.stdout.write(
|
|
629404
|
-
` ${c3.dim("
|
|
629414
|
+
` ${c3.dim("╰──────────────────────────────────────────────────╯")}
|
|
629405
629415
|
|
|
629406
629416
|
`
|
|
629407
629417
|
);
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omnius",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.292",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "omnius",
|
|
9
|
-
"version": "1.0.
|
|
9
|
+
"version": "1.0.292",
|
|
10
10
|
"bundleDependencies": [
|
|
11
11
|
"image-to-ascii"
|
|
12
12
|
],
|
package/package.json
CHANGED