@firecms/core 3.0.0-canary.166 → 3.0.0-canary.168
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 +3 -2
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +3 -2
- package/dist/index.umd.js.map +1 -1
- package/dist/types/dialogs_controller.d.ts +7 -3
- package/dist/types/entity_actions.d.ts +6 -0
- package/package.json +5 -5
- package/src/contexts/DialogsProvider.tsx +3 -2
- package/src/core/EntityEditView.tsx +4 -1
- package/src/types/dialogs_controller.tsx +7 -3
- package/src/types/entity_actions.tsx +8 -0
package/dist/index.es.js
CHANGED
|
@@ -3667,7 +3667,7 @@ const DialogsProvider = (t0) => {
|
|
|
3667
3667
|
if ($[7] !== close || $[8] !== dialogEntries) {
|
|
3668
3668
|
let t72;
|
|
3669
3669
|
if ($[10] !== close) {
|
|
3670
|
-
t72 = (entry, i) => /* @__PURE__ */ jsx(entry.Component, { open: true, closeDialog: close }, `dialog_${i}`);
|
|
3670
|
+
t72 = (entry, i) => /* @__PURE__ */ jsx(entry.Component, { open: true, closeDialog: close, ...entry.props }, `dialog_${i}`);
|
|
3671
3671
|
$[10] = close;
|
|
3672
3672
|
$[11] = t72;
|
|
3673
3673
|
} else {
|
|
@@ -11597,7 +11597,8 @@ function EntityEditViewInner({
|
|
|
11597
11597
|
fullPath: resolvedCollection.path,
|
|
11598
11598
|
collection: resolvedCollection,
|
|
11599
11599
|
context,
|
|
11600
|
-
sideEntityController
|
|
11600
|
+
sideEntityController,
|
|
11601
|
+
formContext
|
|
11601
11602
|
});
|
|
11602
11603
|
}, children: action.icon }, action.name)) }),
|
|
11603
11604
|
formex.isSubmitting && /* @__PURE__ */ jsx(CircularProgress, { size: "small" }),
|