@firecms/core 3.0.0-canary.173 → 3.0.0-canary.174
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.es.js +1 -2
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +1 -2
- package/dist/index.umd.js.map +1 -1
- package/package.json +5 -5
- package/src/core/EntityEditView.tsx +1 -3
package/dist/index.es.js
CHANGED
|
@@ -12066,10 +12066,9 @@ function EntityEditViewInner({
|
|
|
12066
12066
|
/* @__PURE__ */ jsx("div", { role: "tabpanel", hidden: !mainViewVisible, id: `form_${path}`, className: cls("relative flex flex-row max-w-4xl lg:max-w-3xl xl:max-w-4xl 2xl:max-w-5xl w-full h-fit", {
|
|
12067
12067
|
"hidden": !mainViewVisible
|
|
12068
12068
|
}), children: globalLoading ? /* @__PURE__ */ jsx("div", { className: "w-full pt-12 pb-16 px-4 sm:px-8 md:px-10", children: /* @__PURE__ */ jsx(CircularProgressCenter, {}) }) : entityView }),
|
|
12069
|
-
mainViewVisible && shouldShowEntityActions && !actionsAtTheBottom && dialogActions,
|
|
12070
12069
|
customViewsView,
|
|
12071
12070
|
subCollectionsViews,
|
|
12072
|
-
shouldShowEntityActions &&
|
|
12071
|
+
shouldShowEntityActions && dialogActions
|
|
12073
12072
|
] })
|
|
12074
12073
|
] });
|
|
12075
12074
|
if (plugins) {
|