@stackable-labs/cli-app-extension 1.100.0 → 1.100.1
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 +11 -9
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3771,15 +3771,17 @@ var AuthLogin = ({ dashboardUrl, adminApiBaseUrl, reason, onSuccess, onError })
|
|
|
3771
3771
|
return /* @__PURE__ */ jsxs(Box, { flexDirection: "column", children: [
|
|
3772
3772
|
!reason && /* @__PURE__ */ jsx(Banner, {}),
|
|
3773
3773
|
/* @__PURE__ */ jsxs(StepShell, { title: "Authenticate with Stackable", children: [
|
|
3774
|
-
|
|
3775
|
-
|
|
3776
|
-
/* @__PURE__ */ jsxs(Box, { gap: 1, children: [
|
|
3777
|
-
/* @__PURE__ */
|
|
3778
|
-
|
|
3779
|
-
|
|
3780
|
-
|
|
3781
|
-
|
|
3782
|
-
|
|
3774
|
+
state === "waiting" && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
3775
|
+
reason && /* @__PURE__ */ jsx(Box, { marginBottom: 1, children: /* @__PURE__ */ jsx(Text, { color: "yellow", children: reason === "expired" ? "Session expired \u2014 re-authenticating before continuing\u2026" : "Not signed in \u2014 opening browser to authenticate\u2026" }) }),
|
|
3776
|
+
/* @__PURE__ */ jsxs(Box, { flexDirection: "column", gap: 1, children: [
|
|
3777
|
+
/* @__PURE__ */ jsxs(Box, { gap: 1, children: [
|
|
3778
|
+
/* @__PURE__ */ jsx(Text, { color: "cyan", children: /* @__PURE__ */ jsx(Spinner5, { type: "dots" }) }),
|
|
3779
|
+
/* @__PURE__ */ jsx(Text, { children: "Waiting for browser authentication..." })
|
|
3780
|
+
] }),
|
|
3781
|
+
loginUrl && /* @__PURE__ */ jsxs(Text, { dimColor: true, children: [
|
|
3782
|
+
" ",
|
|
3783
|
+
loginUrl
|
|
3784
|
+
] })
|
|
3783
3785
|
] })
|
|
3784
3786
|
] }),
|
|
3785
3787
|
state === "success" && /* @__PURE__ */ jsxs(Box, { flexDirection: "column", gap: 1, children: [
|