@localstack/appinspector-ui 1.0.124 → 1.0.126
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 +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -15135,19 +15135,19 @@ var SpanCountBadge = ({ licenseLimit, systemLimit, totalCount, visibleCount }) =
|
|
|
15135
15135
|
}
|
|
15136
15136
|
)
|
|
15137
15137
|
] }),
|
|
15138
|
-
(
|
|
15138
|
+
(systemLimitReached || licenseLimit !== void 0 && licenseLimit !== "unlimited") && /* @__PURE__ */ jsxs121(Fragment5, { children: [
|
|
15139
15139
|
/* @__PURE__ */ jsx127(Divider3, { sx: { my: 1.5 } }),
|
|
15140
15140
|
/* @__PURE__ */ jsx127(Typography3, { color: "text.secondary", fontWeight: 600, variant: "caption", children: "Limits" }),
|
|
15141
15141
|
/* @__PURE__ */ jsx127(Typography3, { color: "text.secondary", sx: { display: "block", mb: 1.5, mt: 0.25 }, variant: "caption", children: "Limits restrict the total number of operations that can be stored." }),
|
|
15142
15142
|
/* @__PURE__ */ jsxs121(Box4, { sx: { display: "flex", flexDirection: "column", gap: 0.75 }, children: [
|
|
15143
|
-
licenseLimit !== void 0 && /* @__PURE__ */ jsx127(
|
|
15143
|
+
licenseLimit !== void 0 && licenseLimit !== "unlimited" && /* @__PURE__ */ jsx127(
|
|
15144
15144
|
StatRow,
|
|
15145
15145
|
{
|
|
15146
15146
|
label: /* @__PURE__ */ jsx127(Tooltip3, { placement: "left", title: "The maximum number of operations allowed by your current license.", children: /* @__PURE__ */ jsx127(Box4, { component: "span", sx: { borderBottom: "1px dashed", borderColor: "text.secondary", cursor: "help" }, children: "License limit" }) }),
|
|
15147
15147
|
value: licenseLimit
|
|
15148
15148
|
}
|
|
15149
15149
|
),
|
|
15150
|
-
|
|
15150
|
+
systemLimitReached && /* @__PURE__ */ jsx127(
|
|
15151
15151
|
StatRow,
|
|
15152
15152
|
{
|
|
15153
15153
|
label: /* @__PURE__ */ jsx127(Tooltip3, { placement: "left", title: "The maximum number of operations that can be stored in the system.", children: /* @__PURE__ */ jsx127(Box4, { component: "span", sx: { borderBottom: "1px dashed", borderColor: "text.secondary", cursor: "help" }, children: "System limit" }) }),
|