@solongate/proxy 0.81.57 → 0.81.58
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 +5 -1
- package/dist/tui/index.js +5 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -7719,7 +7719,7 @@ function useTermSize() {
|
|
|
7719
7719
|
function usePanelSize() {
|
|
7720
7720
|
const { cols, rows } = useTermSize();
|
|
7721
7721
|
const wide = cols >= 82;
|
|
7722
|
-
const shellRows = wide ?
|
|
7722
|
+
const shellRows = wide ? 16 : 10;
|
|
7723
7723
|
return { cols: Math.max(30, cols - 22), rows: Math.max(8, rows - shellRows) };
|
|
7724
7724
|
}
|
|
7725
7725
|
var init_hooks = __esm({
|
|
@@ -10581,6 +10581,10 @@ function SettingsPanel({
|
|
|
10581
10581
|
rowsAll.forEach((r) => {
|
|
10582
10582
|
const sec = sectionOf(r);
|
|
10583
10583
|
if (sec !== lastSec) {
|
|
10584
|
+
if (lastSec) {
|
|
10585
|
+
lineEls.push(/* @__PURE__ */ jsx7(Text7, { children: " " }, "sp:" + sec));
|
|
10586
|
+
lineKey.push("");
|
|
10587
|
+
}
|
|
10584
10588
|
lastSec = sec;
|
|
10585
10589
|
lineEls.push(
|
|
10586
10590
|
/* @__PURE__ */ jsxs7(Text7, { wrap: "truncate", children: [
|
package/dist/tui/index.js
CHANGED
|
@@ -817,7 +817,7 @@ function useTermSize() {
|
|
|
817
817
|
function usePanelSize() {
|
|
818
818
|
const { cols, rows } = useTermSize();
|
|
819
819
|
const wide = cols >= 82;
|
|
820
|
-
const shellRows = wide ?
|
|
820
|
+
const shellRows = wide ? 16 : 10;
|
|
821
821
|
return { cols: Math.max(30, cols - 22), rows: Math.max(8, rows - shellRows) };
|
|
822
822
|
}
|
|
823
823
|
|
|
@@ -3708,6 +3708,10 @@ function SettingsPanel({
|
|
|
3708
3708
|
rowsAll.forEach((r) => {
|
|
3709
3709
|
const sec = sectionOf(r);
|
|
3710
3710
|
if (sec !== lastSec) {
|
|
3711
|
+
if (lastSec) {
|
|
3712
|
+
lineEls.push(/* @__PURE__ */ jsx7(Text7, { children: " " }, "sp:" + sec));
|
|
3713
|
+
lineKey.push("");
|
|
3714
|
+
}
|
|
3711
3715
|
lastSec = sec;
|
|
3712
3716
|
lineEls.push(
|
|
3713
3717
|
/* @__PURE__ */ jsxs7(Text7, { wrap: "truncate", children: [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@solongate/proxy",
|
|
3
|
-
"version": "0.81.
|
|
3
|
+
"version": "0.81.58",
|
|
4
4
|
"description": "AI tool security proxy: protect any AI tool server with customizable policies, path/command constraints, rate limiting, and audit logging. No code changes required.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|