@acorex/platform 21.0.0-next.44 → 21.0.0-next.45

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.
Files changed (26) hide show
  1. package/fesm2022/{acorex-platform-common-common-settings.provider-lWz_f-Ia.mjs → acorex-platform-common-common-settings.provider-CsOyxClO.mjs} +17 -3
  2. package/fesm2022/acorex-platform-common-common-settings.provider-CsOyxClO.mjs.map +1 -0
  3. package/fesm2022/acorex-platform-common.mjs +204 -164
  4. package/fesm2022/acorex-platform-common.mjs.map +1 -1
  5. package/fesm2022/acorex-platform-core.mjs +5 -4
  6. package/fesm2022/acorex-platform-core.mjs.map +1 -1
  7. package/fesm2022/acorex-platform-layout-entity.mjs +381 -49
  8. package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
  9. package/fesm2022/acorex-platform-layout-views.mjs +5 -3
  10. package/fesm2022/acorex-platform-layout-views.mjs.map +1 -1
  11. package/fesm2022/acorex-platform-layout-widget-core.mjs +72 -6
  12. package/fesm2022/acorex-platform-layout-widget-core.mjs.map +1 -1
  13. package/fesm2022/acorex-platform-layout-widgets.mjs +109 -131
  14. package/fesm2022/acorex-platform-layout-widgets.mjs.map +1 -1
  15. package/fesm2022/acorex-platform-themes-default.mjs +71 -5
  16. package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
  17. package/fesm2022/acorex-platform-workflow.mjs +85 -4
  18. package/fesm2022/acorex-platform-workflow.mjs.map +1 -1
  19. package/package.json +1 -1
  20. package/types/acorex-platform-common.d.ts +64 -47
  21. package/types/acorex-platform-layout-entity.d.ts +79 -4
  22. package/types/acorex-platform-layout-widget-core.d.ts +15 -0
  23. package/types/acorex-platform-layout-widgets.d.ts +15 -19
  24. package/types/acorex-platform-themes-default.d.ts +6 -0
  25. package/types/acorex-platform-workflow.d.ts +68 -2
  26. package/fesm2022/acorex-platform-common-common-settings.provider-lWz_f-Ia.mjs.map +0 -1
@@ -3573,10 +3573,11 @@ function normalizeDefinitionCategories(categories) {
3573
3573
  function applySystemActionDefault(action, type) {
3574
3574
  const systemAction = getSystemActions(type);
3575
3575
  return {
3576
- name: systemAction.key,
3577
- title: systemAction.title,
3578
- icon: systemAction.icon,
3579
- color: systemAction.color,
3576
+ ...action,
3577
+ name: action.name ?? systemAction.key,
3578
+ title: action.title ?? systemAction.title,
3579
+ icon: action.icon ?? systemAction.icon,
3580
+ color: action.color ?? systemAction.color,
3580
3581
  };
3581
3582
  }
3582
3583