@localstack/appinspector-ui 1.0.115 → 1.0.116
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.cjs +13 -25
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +13 -25
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -15729,31 +15729,19 @@ var StatusMessage = ({
|
|
|
15729
15729
|
children: [
|
|
15730
15730
|
/* @__PURE__ */ jsx130(AlertTitle, { sx: { fontWeight: "bold" }, children: "App Inspector Is Not Enabled" }),
|
|
15731
15731
|
/* @__PURE__ */ jsx130(Typography5, { sx: { mb: 2 }, variant: "body2", children: "App Inspector is not currently enabled in LocalStack. You can enable it now, or at startup." }),
|
|
15732
|
-
/* @__PURE__ */
|
|
15733
|
-
|
|
15734
|
-
|
|
15735
|
-
|
|
15736
|
-
|
|
15737
|
-
|
|
15738
|
-
|
|
15739
|
-
|
|
15740
|
-
|
|
15741
|
-
|
|
15742
|
-
|
|
15743
|
-
|
|
15744
|
-
|
|
15745
|
-
),
|
|
15746
|
-
onRetry && /* @__PURE__ */ jsx130(
|
|
15747
|
-
Button4,
|
|
15748
|
-
{
|
|
15749
|
-
"aria-label": "Check if App Inspector is enabled",
|
|
15750
|
-
disabled: enabling,
|
|
15751
|
-
onClick: onRetry,
|
|
15752
|
-
variant: "outlined",
|
|
15753
|
-
children: "Check Again"
|
|
15754
|
-
}
|
|
15755
|
-
)
|
|
15756
|
-
] }),
|
|
15732
|
+
/* @__PURE__ */ jsx130(Box7, { sx: { display: "flex", gap: 1, mb: 2 }, children: onEnable && /* @__PURE__ */ jsx130(
|
|
15733
|
+
Button4,
|
|
15734
|
+
{
|
|
15735
|
+
"aria-label": "Enable App Inspector Now",
|
|
15736
|
+
disabled: enabling,
|
|
15737
|
+
onClick: () => {
|
|
15738
|
+
void handleEnable();
|
|
15739
|
+
},
|
|
15740
|
+
startIcon: enabling ? /* @__PURE__ */ jsx130(CircularProgress2, { size: 16 }) : void 0,
|
|
15741
|
+
variant: "contained",
|
|
15742
|
+
children: "Enable App Inspector Now"
|
|
15743
|
+
}
|
|
15744
|
+
) }),
|
|
15757
15745
|
/* @__PURE__ */ jsx130(Typography5, { sx: { mb: 1 }, variant: "body2", children: "If you'd prefer to automatically enable App Inspector at start up, use:" }),
|
|
15758
15746
|
/* @__PURE__ */ jsx130(
|
|
15759
15747
|
Box7,
|