@robinmordasiewicz/f5xc-xcsh 6.25.0 → 6.27.0
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 +7 -7
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -45309,8 +45309,8 @@ function getLogoModeFromEnv(envPrefix) {
|
|
|
45309
45309
|
var CLI_NAME = "xcsh";
|
|
45310
45310
|
var CLI_FULL_NAME = "F5 Distributed Cloud Shell";
|
|
45311
45311
|
function getVersion() {
|
|
45312
|
-
if ("6.
|
|
45313
|
-
return "6.
|
|
45312
|
+
if ("6.27.0") {
|
|
45313
|
+
return "6.27.0";
|
|
45314
45314
|
}
|
|
45315
45315
|
if (process.env.XCSH_VERSION) {
|
|
45316
45316
|
return process.env.XCSH_VERSION;
|
|
@@ -52777,9 +52777,9 @@ function App2({ initialSession } = {}) {
|
|
|
52777
52777
|
}
|
|
52778
52778
|
return;
|
|
52779
52779
|
}
|
|
52780
|
-
await runCommand(value);
|
|
52781
52780
|
setInput("");
|
|
52782
52781
|
history.reset();
|
|
52782
|
+
await runCommand(value);
|
|
52783
52783
|
},
|
|
52784
52784
|
[completion, applyCompletion, runCommand, history]
|
|
52785
52785
|
);
|
|
@@ -52874,7 +52874,7 @@ function App2({ initialSession } = {}) {
|
|
|
52874
52874
|
);
|
|
52875
52875
|
return /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(Box_default, { flexDirection: "column", width, children: [
|
|
52876
52876
|
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)(Static, { items: outputItems, children: (item) => /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(Text, { children: item.content }, item.id) }),
|
|
52877
|
-
isInitialized ? /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
52877
|
+
isInitialized && !hideStatusBar ? /* @__PURE__ */ (0, import_jsx_runtime4.jsxs)(import_jsx_runtime4.Fragment, { children: [
|
|
52878
52878
|
/* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
52879
52879
|
InputBox,
|
|
52880
52880
|
{
|
|
@@ -52887,7 +52887,7 @@ function App2({ initialSession } = {}) {
|
|
|
52887
52887
|
inputKey
|
|
52888
52888
|
}
|
|
52889
52889
|
),
|
|
52890
|
-
|
|
52890
|
+
completion.isShowing && completion.suggestions.length > 0 ? /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(
|
|
52891
52891
|
Suggestions,
|
|
52892
52892
|
{
|
|
52893
52893
|
suggestions: toUISuggestions(
|
|
@@ -52907,8 +52907,8 @@ function App2({ initialSession } = {}) {
|
|
|
52907
52907
|
width,
|
|
52908
52908
|
hint: statusHint
|
|
52909
52909
|
}
|
|
52910
|
-
)
|
|
52911
|
-
] }) : /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(Text, { children: "Initializing..." })
|
|
52910
|
+
)
|
|
52911
|
+
] }) : !isInitialized ? /* @__PURE__ */ (0, import_jsx_runtime4.jsx)(Text, { children: "Initializing..." }) : null
|
|
52912
52912
|
] });
|
|
52913
52913
|
}
|
|
52914
52914
|
|