@acorex/platform 20.8.7 → 20.8.9
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/common/index.d.ts +48 -45
- package/fesm2022/{acorex-platform-common-common-settings.provider-DqdSjjp6.mjs → acorex-platform-common-common-settings.provider-DVvuLUfF.mjs} +25 -1
- package/fesm2022/acorex-platform-common-common-settings.provider-DVvuLUfF.mjs.map +1 -0
- package/fesm2022/acorex-platform-common.mjs +63 -24
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-core.mjs +5 -4
- package/fesm2022/acorex-platform-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +374 -49
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-widget-core.mjs +2 -2
- package/fesm2022/acorex-platform-layout-widget-core.mjs.map +1 -1
- package/fesm2022/{acorex-platform-themes-default-entity-master-list-view.component-DZeByyDy.mjs → acorex-platform-themes-default-entity-master-list-view.component-D2CtNrSn.mjs} +115 -9
- package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-D2CtNrSn.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-default.mjs +2 -2
- package/layout/entity/index.d.ts +81 -5
- package/package.json +17 -17
- package/fesm2022/acorex-platform-common-common-settings.provider-DqdSjjp6.mjs.map +0 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-DZeByyDy.mjs.map +0 -1
|
@@ -3459,10 +3459,11 @@ function getNestedKeys(obj, prefix = '') {
|
|
|
3459
3459
|
function applySystemActionDefault(action, type) {
|
|
3460
3460
|
const systemAction = getSystemActions(type);
|
|
3461
3461
|
return {
|
|
3462
|
-
|
|
3463
|
-
|
|
3464
|
-
|
|
3465
|
-
|
|
3462
|
+
...action,
|
|
3463
|
+
name: action.name ?? systemAction.key,
|
|
3464
|
+
title: action.title ?? systemAction.title,
|
|
3465
|
+
icon: action.icon ?? systemAction.icon,
|
|
3466
|
+
color: action.color ?? systemAction.color,
|
|
3466
3467
|
};
|
|
3467
3468
|
}
|
|
3468
3469
|
|