@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.cjs
CHANGED
|
@@ -15716,31 +15716,19 @@ var StatusMessage = ({
|
|
|
15716
15716
|
children: [
|
|
15717
15717
|
/* @__PURE__ */ (0, import_jsx_runtime130.jsx)(import_material9.AlertTitle, { sx: { fontWeight: "bold" }, children: "App Inspector Is Not Enabled" }),
|
|
15718
15718
|
/* @__PURE__ */ (0, import_jsx_runtime130.jsx)(import_material9.Typography, { sx: { mb: 2 }, variant: "body2", children: "App Inspector is not currently enabled in LocalStack. You can enable it now, or at startup." }),
|
|
15719
|
-
/* @__PURE__ */ (0, import_jsx_runtime130.
|
|
15720
|
-
|
|
15721
|
-
|
|
15722
|
-
|
|
15723
|
-
|
|
15724
|
-
|
|
15725
|
-
|
|
15726
|
-
|
|
15727
|
-
|
|
15728
|
-
|
|
15729
|
-
|
|
15730
|
-
|
|
15731
|
-
|
|
15732
|
-
),
|
|
15733
|
-
onRetry && /* @__PURE__ */ (0, import_jsx_runtime130.jsx)(
|
|
15734
|
-
import_material9.Button,
|
|
15735
|
-
{
|
|
15736
|
-
"aria-label": "Check if App Inspector is enabled",
|
|
15737
|
-
disabled: enabling,
|
|
15738
|
-
onClick: onRetry,
|
|
15739
|
-
variant: "outlined",
|
|
15740
|
-
children: "Check Again"
|
|
15741
|
-
}
|
|
15742
|
-
)
|
|
15743
|
-
] }),
|
|
15719
|
+
/* @__PURE__ */ (0, import_jsx_runtime130.jsx)(import_material9.Box, { sx: { display: "flex", gap: 1, mb: 2 }, children: onEnable && /* @__PURE__ */ (0, import_jsx_runtime130.jsx)(
|
|
15720
|
+
import_material9.Button,
|
|
15721
|
+
{
|
|
15722
|
+
"aria-label": "Enable App Inspector Now",
|
|
15723
|
+
disabled: enabling,
|
|
15724
|
+
onClick: () => {
|
|
15725
|
+
void handleEnable();
|
|
15726
|
+
},
|
|
15727
|
+
startIcon: enabling ? /* @__PURE__ */ (0, import_jsx_runtime130.jsx)(import_material9.CircularProgress, { size: 16 }) : void 0,
|
|
15728
|
+
variant: "contained",
|
|
15729
|
+
children: "Enable App Inspector Now"
|
|
15730
|
+
}
|
|
15731
|
+
) }),
|
|
15744
15732
|
/* @__PURE__ */ (0, import_jsx_runtime130.jsx)(import_material9.Typography, { sx: { mb: 1 }, variant: "body2", children: "If you'd prefer to automatically enable App Inspector at start up, use:" }),
|
|
15745
15733
|
/* @__PURE__ */ (0, import_jsx_runtime130.jsx)(
|
|
15746
15734
|
import_material9.Box,
|