@acorex/platform 19.2.7 → 19.2.8

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 (29) hide show
  1. package/common/lib/app/application.types.d.ts +1 -0
  2. package/fesm2022/acorex-platform-common.mjs.map +1 -1
  3. package/fesm2022/acorex-platform-layout-builder.mjs +9 -0
  4. package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
  5. package/fesm2022/acorex-platform-layout-entity.mjs +26 -12
  6. package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
  7. package/fesm2022/acorex-platform-themes-default.mjs +4 -4
  8. package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
  9. package/fesm2022/acorex-platform-themes-shared.mjs.map +1 -1
  10. package/fesm2022/acorex-platform-widgets-tabular-data-edit-popup.component-B90if8wb.mjs +272 -0
  11. package/fesm2022/acorex-platform-widgets-tabular-data-edit-popup.component-B90if8wb.mjs.map +1 -0
  12. package/fesm2022/{acorex-platform-widgets-tabular-data-view-popup.component-BBRVgZLu.mjs → acorex-platform-widgets-tabular-data-view-popup.component-BaslkAPS.mjs} +16 -1
  13. package/fesm2022/acorex-platform-widgets-tabular-data-view-popup.component-BaslkAPS.mjs.map +1 -0
  14. package/fesm2022/acorex-platform-widgets.mjs +310 -112
  15. package/fesm2022/acorex-platform-widgets.mjs.map +1 -1
  16. package/layout/builder/lib/builder/widget-renderer.directive.d.ts +3 -0
  17. package/layout/entity/lib/entity.viewmodel.d.ts +1 -0
  18. package/package.json +5 -5
  19. package/widgets/lib/widgets/charts/bar-chart/bar-chart-widget-edit.component.d.ts +23 -3
  20. package/widgets/lib/widgets/charts/bar-chart/bar-chart.type.d.ts +20 -6
  21. package/widgets/lib/widgets/editors/date-time/date-time-box-widget-edit.component.d.ts +1 -3
  22. package/widgets/lib/widgets/editors/rich-text/rich-text-widget-edit.component.d.ts +4 -1
  23. package/widgets/lib/widgets/editors/tabular-data/tabular-data-edit-popup.component.d.ts +11 -2
  24. package/widgets/lib/widgets/editors/tabular-data/tabular-data-view-popup.component.d.ts +3 -1
  25. package/widgets/lib/widgets/editors/tabular-data/tabular-data-widget-edit.component.d.ts +1 -1
  26. package/widgets/lib/widgets/editors/tabular-data/tabular-data-widget-view.component.d.ts +0 -2
  27. package/fesm2022/acorex-platform-widgets-tabular-data-edit-popup.component-D2-nHqYy.mjs +0 -144
  28. package/fesm2022/acorex-platform-widgets-tabular-data-edit-popup.component-D2-nHqYy.mjs.map +0 -1
  29. package/fesm2022/acorex-platform-widgets-tabular-data-view-popup.component-BBRVgZLu.mjs.map +0 -1
@@ -150,6 +150,7 @@ export type AXPCommandActionCallback = string | {
150
150
  };
151
151
  };
152
152
  export interface AXPCommandAction extends Partial<AXPCommandActionLook> {
153
+ name?: string;
153
154
  command: AXPCommandActionCallback;
154
155
  title: string;
155
156
  type: AXPCommandActionType;