@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.umd.js
CHANGED
|
@@ -3670,7 +3670,7 @@
|
|
|
3670
3670
|
if ($[7] !== close || $[8] !== dialogEntries) {
|
|
3671
3671
|
let t72;
|
|
3672
3672
|
if ($[10] !== close) {
|
|
3673
|
-
t72 = (entry, i) => /* @__PURE__ */ jsxRuntime.jsx(entry.Component, { open: true, closeDialog: close }, `dialog_${i}`);
|
|
3673
|
+
t72 = (entry, i) => /* @__PURE__ */ jsxRuntime.jsx(entry.Component, { open: true, closeDialog: close, ...entry.props }, `dialog_${i}`);
|
|
3674
3674
|
$[10] = close;
|
|
3675
3675
|
$[11] = t72;
|
|
3676
3676
|
} else {
|
|
@@ -11600,7 +11600,8 @@
|
|
|
11600
11600
|
fullPath: resolvedCollection.path,
|
|
11601
11601
|
collection: resolvedCollection,
|
|
11602
11602
|
context,
|
|
11603
|
-
sideEntityController
|
|
11603
|
+
sideEntityController,
|
|
11604
|
+
formContext
|
|
11604
11605
|
});
|
|
11605
11606
|
}, children: action.icon }, action.name)) }),
|
|
11606
11607
|
formex$1.isSubmitting && /* @__PURE__ */ jsxRuntime.jsx(ui.CircularProgress, { size: "small" }),
|