@realiizlabs/admin 0.15.3 → 0.15.4
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/studio-ui/index.js
CHANGED
|
@@ -710,7 +710,7 @@ function Tabs({ options, value, onChange, label = "Sections" }) {
|
|
|
710
710
|
}
|
|
711
711
|
|
|
712
712
|
// src/version.ts
|
|
713
|
-
var ADMIN_VERSION = "0.15.
|
|
713
|
+
var ADMIN_VERSION = "0.15.4" ;
|
|
714
714
|
|
|
715
715
|
// src/studio-ui/css.ts
|
|
716
716
|
var STUDIO_CSS = `
|
|
@@ -1004,7 +1004,13 @@ function UpdateBody({ update, onLater, compact = false }) {
|
|
|
1004
1004
|
];
|
|
1005
1005
|
return /* @__PURE__ */ jsxs("div", { className: `rz-update${compact ? " rz-update--strip" : ""}`, role: "status", children: [
|
|
1006
1006
|
/* @__PURE__ */ jsx(Steps, { steps }),
|
|
1007
|
-
/* @__PURE__ */ jsx("span", { className: "rz-update__done", children: live ?
|
|
1007
|
+
/* @__PURE__ */ jsx("span", { className: "rz-update__done", children: live ? /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
1008
|
+
"Studio ",
|
|
1009
|
+
update.version,
|
|
1010
|
+
" is live. ",
|
|
1011
|
+
/* @__PURE__ */ jsx("button", { type: "button", className: "rz-update__link", onClick: () => window.location.reload(), children: "Reload Studio" }),
|
|
1012
|
+
" to start using it \u2014 the version at the foot of the sidebar will change."
|
|
1013
|
+
] }) : "Nothing to do meanwhile \u2014 keep working. The website is rebuilding with the new Studio; the version at the foot of the sidebar changes when it's done, in about two minutes." })
|
|
1008
1014
|
] });
|
|
1009
1015
|
}
|
|
1010
1016
|
const problem = outcome && outcome.state !== "pending" ? outcome.state === "stale" ? "The site changed since the checks ran. Try again in a minute." : outcome.state === "red" ? `The checks failed${outcome.failingCheck ? ` (${outcome.failingCheck})` : ""}. Your web team has been able to see this.` : outcome.state === "error" ? outcome.message : null : null;
|