@siddhaartha_bs/monkcli 0.1.2 → 0.1.3
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/monkcli.js +4 -4
- package/package.json +1 -1
package/dist/monkcli.js
CHANGED
|
@@ -1127,7 +1127,7 @@ function MenuControls() {
|
|
|
1127
1127
|
" change value | ",
|
|
1128
1128
|
/* @__PURE__ */ jsx2(KeyTag, { label: "Enter", tone: "success" }),
|
|
1129
1129
|
" start | ",
|
|
1130
|
-
/* @__PURE__ */ jsx2(KeyTag, { label: "
|
|
1130
|
+
/* @__PURE__ */ jsx2(KeyTag, { label: "Ctrl+C", tone: "danger" }),
|
|
1131
1131
|
" quit"
|
|
1132
1132
|
] });
|
|
1133
1133
|
}
|
|
@@ -1137,7 +1137,7 @@ function RunningControls() {
|
|
|
1137
1137
|
" new test | ",
|
|
1138
1138
|
/* @__PURE__ */ jsx2(KeyTag, { label: "Enter", tone: "success" }),
|
|
1139
1139
|
" menu | ",
|
|
1140
|
-
/* @__PURE__ */ jsx2(KeyTag, { label: "
|
|
1140
|
+
/* @__PURE__ */ jsx2(KeyTag, { label: "Ctrl+C", tone: "danger" }),
|
|
1141
1141
|
" quit"
|
|
1142
1142
|
] });
|
|
1143
1143
|
}
|
|
@@ -1156,7 +1156,7 @@ function ErrorScreen(props) {
|
|
|
1156
1156
|
/* @__PURE__ */ jsxs2(Text2, { children: [
|
|
1157
1157
|
/* @__PURE__ */ jsx2(KeyTag, { label: "Enter", tone: "success" }),
|
|
1158
1158
|
" menu | ",
|
|
1159
|
-
/* @__PURE__ */ jsx2(KeyTag, { label: "
|
|
1159
|
+
/* @__PURE__ */ jsx2(KeyTag, { label: "Ctrl+C", tone: "danger" }),
|
|
1160
1160
|
" quit"
|
|
1161
1161
|
] })
|
|
1162
1162
|
] });
|
|
@@ -1322,7 +1322,7 @@ function App() {
|
|
|
1322
1322
|
const panelWidth = Math.max(36, Math.min(safeWidth - 2, 120));
|
|
1323
1323
|
const renderCentered = (content) => /* @__PURE__ */ jsx3(Box3, { width: safeWidth, height: safeHeight, justifyContent: "center", alignItems: "center", children: /* @__PURE__ */ jsx3(Box3, { width: panelWidth, flexDirection: "column", children: content }) });
|
|
1324
1324
|
useInput((input, key) => {
|
|
1325
|
-
if (key.ctrl && input === "c"
|
|
1325
|
+
if (key.ctrl && input === "c") {
|
|
1326
1326
|
exit();
|
|
1327
1327
|
return;
|
|
1328
1328
|
}
|