@acorex/platform 18.1.5 → 18.1.6
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/lib/app/application.types.d.ts +1 -1
- package/common/lib/common.module.d.ts +3 -6
- package/common/lib/data/data-provider.types.d.ts +1 -0
- package/common/lib/data/data.types.d.ts +14 -0
- package/common/lib/data/dexie-storage.service.d.ts +6 -20
- package/common/lib/data/entity-data-seeder.d.ts +12 -0
- package/common/lib/data/entity-storage-service.d.ts +59 -15
- package/common/lib/data/index.d.ts +2 -1
- package/common/lib/layout/menu/index.d.ts +2 -0
- package/common/lib/layout/menu/menu.provider.d.ts +15 -0
- package/common/lib/layout/menu/menu.service.d.ts +12 -0
- package/common/lib/layout/menu/menu.types.d.ts +8 -1
- package/common/lib/schema/widgets/dateTime/dateTime-widget-filter.component.d.ts +2 -0
- package/common/lib/schema/widgets/lookup/lookup-widget-edit.component.d.ts +1 -0
- package/common/lib/settings/settings.service.d.ts +3 -3
- package/common/lib/store/common.actions.d.ts +1 -8
- package/common/lib/store/common.effects.d.ts +3 -6
- package/common/lib/workflows/common.workflow.d.ts +2 -0
- package/core/utils/data-conditioner.d.ts +2 -5
- package/esm2022/common/lib/app/app-startup.service.mjs +3 -3
- package/esm2022/common/lib/app/application.types.mjs +1 -1
- package/esm2022/common/lib/common.module.mjs +38 -31
- package/esm2022/common/lib/data/data-provider.types.mjs +1 -1
- package/esm2022/common/lib/data/data.types.mjs +2 -0
- package/esm2022/common/lib/data/dexie-storage.service.mjs +95 -83
- package/esm2022/common/lib/data/entity-data-seeder.mjs +25 -0
- package/esm2022/common/lib/data/entity-storage-service.mjs +59 -1
- package/esm2022/common/lib/data/index.mjs +3 -2
- package/esm2022/common/lib/layout/menu/index.mjs +3 -1
- package/esm2022/common/lib/layout/menu/menu.provider.mjs +60 -0
- package/esm2022/common/lib/layout/menu/menu.service.mjs +73 -0
- package/esm2022/common/lib/layout/menu/menu.types.mjs +1 -1
- package/esm2022/common/lib/layout/theme/store/admin-layout.reducers.mjs +24 -19
- package/esm2022/common/lib/schema/widgets/avatar/avatar-widget-edit.component.mjs +8 -2
- package/esm2022/common/lib/schema/widgets/common-widget-filter/boolean-widget-filter.component.mjs +2 -2
- package/esm2022/common/lib/schema/widgets/common-widget-filter/number-widget-filter.component.mjs +2 -2
- package/esm2022/common/lib/schema/widgets/common-widget-filter/string-widget-filter.component.mjs +2 -2
- package/esm2022/common/lib/schema/widgets/dateTime/dateTime-widget-filter.component.mjs +27 -5
- package/esm2022/common/lib/schema/widgets/gallery/gallery-widget-edit.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/gallery/gallery-widget-view.component.mjs +3 -3
- package/esm2022/common/lib/schema/widgets/lookup/lookup-widget-edit.component.mjs +2 -2
- package/esm2022/common/lib/schema/widgets/lookup/lookup-widget-filter.component.mjs +3 -3
- package/esm2022/common/lib/settings/settings.service.mjs +10 -7
- package/esm2022/common/lib/store/common.actions.mjs +2 -4
- package/esm2022/common/lib/store/common.effects.mjs +8 -9
- package/esm2022/common/lib/workflows/common.workflow.mjs +7 -4
- package/esm2022/core/utils/data-conditioner.mjs +3 -3
- package/esm2022/layout/builder/lib/builder/builder.service.mjs +8 -1
- package/esm2022/layout/builder/lib/builder/widget-catalog.mjs +2 -1
- package/esm2022/layout/builder/lib/builder/widget-container.component.mjs +12 -8
- package/esm2022/layout/builder/lib/builder/widget-renderer.component.directive.mjs +2 -1
- package/esm2022/layout/builder/lib/builder/widget.types.mjs +12 -8
- package/esm2022/layout/designer/index.mjs +3 -1
- package/esm2022/layout/designer/lib/designer/components/board/board.component.mjs +7 -3
- package/esm2022/layout/designer/lib/designer/components/header-menu/header-menu.component.mjs +66 -5
- package/esm2022/layout/designer/lib/designer/components/size-mode/view-size-toolbar.component.mjs +54 -0
- package/esm2022/layout/designer/lib/designer/components/widget-picker/widget-picker.component.mjs +24 -15
- package/esm2022/layout/designer/lib/designer/designer.component.mjs +17 -56
- package/esm2022/layout/designer/lib/designer/shared/designer.service.mjs +27 -5
- package/esm2022/layout/designer/lib/designer/shared/widget-designer-renderer.directive.mjs +1 -1
- package/esm2022/layout/designer/lib/preview/preview-frame.component.mjs +75 -0
- package/esm2022/layout/designer/lib/preview/preview-viewer.component.mjs +58 -0
- package/esm2022/layout/designer/lib/preview/preview.component.mjs +67 -9
- package/esm2022/layout/entity/lib/entity-detail-list.viewmodel.mjs +48 -36
- package/esm2022/layout/entity/lib/entity-master-list.viewmodel.mjs +3 -3
- package/esm2022/layout/entity/lib/entity-master-single.viewmodel.mjs +1 -2
- package/esm2022/layout/entity/lib/entity-registery.service.mjs +5 -5
- package/esm2022/layout/entity/lib/entity.config.mjs +28 -2
- package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-edit.component.mjs +5 -5
- package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-selector.viewmodel.mjs +2 -2
- package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-view.component.mjs +4 -4
- package/esm2022/layout/entity/lib/widgets/widget-selector/widget-selector-widget.config.mjs +2 -1
- package/esm2022/layout/entity/lib/workflows/create-entity.workflow.mjs +3 -3
- package/esm2022/layout/entity/lib/workflows/delete-entity.workflow.mjs +18 -9
- package/esm2022/layout/entity/lib/workflows/modify-section.workflow.mjs +7 -5
- package/esm2022/layouts/lib/admin/entity-layout/entity-details-view/entity-details-view.component.mjs +3 -3
- package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/components/entity-custom-view/entity-custom-view.component.mjs +1 -1
- package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/components/list-view-option-conditions/list-view-option-conditions.component.mjs +1 -1
- package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/entity-list-view.component.mjs +3 -3
- package/esm2022/layouts/lib/admin/entity-layout/entity-list-view/list-view.config.mjs +9 -5
- package/esm2022/layouts/lib/admin/entity-layout/workflows/delete-entity.workflow.mjs +2 -2
- package/esm2022/layouts/lib/admin/entity-layout/workflows/modify-entity.workflow.mjs +5 -3
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-detail-list-view/entity-detail-list-view.component.mjs +10 -7
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-list-view/entity-master-list-view.component.mjs +13 -9
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-modify-view/entity-master-modify-view.component.mjs +3 -3
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-single-view/entity-master-single-view.component.mjs +11 -8
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-single-view/overview/entity-single-overview.component.mjs +1 -1
- package/esm2022/themes/default/lib/layouts/root-layout/components/menu/root-menu.component.mjs +39 -0
- package/esm2022/themes/default/lib/layouts/root-layout/index.mjs +2 -1
- package/esm2022/themes/default/lib/layouts/root-layout/root-layout.component.mjs +13 -31
- package/esm2022/themes/default/lib/layouts/root-layout/root-layout.module.mjs +5 -2
- package/esm2022/themes/shared/lib/comments/comment-list-view.component.mjs +28 -20
- package/esm2022/themes/shared/lib/comments/comments.service.mjs +3 -2
- package/esm2022/themes/shared/lib/comments/comments.type.mjs +1 -1
- package/esm2022/themes/shared/lib/components/theme-slot.component.mjs +85 -88
- package/esm2022/themes/shared/lib/services/theme.service.mjs +20 -13
- package/esm2022/themes/shared/lib/shared.module.mjs +5 -9
- package/esm2022/widgets/lib/widgets/advance/gallery/gallery-widget-edit.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/advance/gallery/gallery-widget-view.component.mjs +3 -3
- package/esm2022/widgets/lib/widgets/advance/qrcode/qrcode-widget-view.component.mjs +4 -4
- package/esm2022/widgets/lib/widgets/editors/color/color-box-widget-column.component.mjs +26 -5
- package/esm2022/widgets/lib/widgets/editors/contact/contact-widget-column.component.mjs +18 -4
- package/esm2022/widgets/lib/widgets/editors/contact/contact-widget-edit.component.mjs +7 -10
- package/esm2022/widgets/lib/widgets/editors/contact/contact-widget.config.mjs +2 -6
- package/esm2022/widgets/lib/widgets/editors/date-time/date-time-box-widget-column.component.mjs +18 -8
- package/esm2022/widgets/lib/widgets/editors/large-text/large-text-widget-edit.component.mjs +1 -1
- package/esm2022/widgets/lib/widgets/editors/large-text/large-text-widget-view.component.mjs +1 -1
- package/esm2022/widgets/lib/widgets/editors/rich-text/rich-text-widget-edit.component.mjs +16 -11
- package/esm2022/widgets/lib/widgets/editors/select/select-box-widget-view.component.mjs +15 -19
- package/esm2022/widgets/lib/widgets/editors/select/select-box-widget.config.mjs +3 -2
- package/esm2022/widgets/lib/widgets/index.mjs +2 -1
- package/esm2022/widgets/lib/widgets/layout/block/block-widget-view.component.mjs +36 -15
- package/esm2022/widgets/lib/widgets/layout/grid/grid-widget-designer.component.mjs +2 -2
- package/esm2022/widgets/lib/widgets/layout/repeater/repeater-widget-edit.component.mjs +42 -10
- package/esm2022/widgets/lib/widgets/layout/template/index.mjs +5 -0
- package/esm2022/widgets/lib/widgets/layout/template/template-widget-designer.component.mjs +70 -0
- package/esm2022/widgets/lib/widgets/layout/template/template-widget-edit.component.mjs +55 -0
- package/esm2022/widgets/lib/widgets/layout/template/template-widget-view.component.mjs +56 -0
- package/esm2022/widgets/lib/widgets/layout/template/template-widget.config.mjs +30 -0
- package/esm2022/widgets/lib/widgets/layout/template/template.provider.mjs +41 -0
- package/esm2022/widgets/lib/widgets.module.mjs +4 -1
- package/fesm2022/{acorex-platform-common-avatar-widget-edit.component-CSSz-dqg.mjs → acorex-platform-common-avatar-widget-edit.component-WAlG5E_9.mjs} +15 -6
- package/fesm2022/acorex-platform-common-avatar-widget-edit.component-WAlG5E_9.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-avatar-widget-view.component-WofmamJK.mjs → acorex-platform-common-avatar-widget-view.component-DRyB3UWf.mjs} +8 -5
- package/fesm2022/acorex-platform-common-avatar-widget-view.component-DRyB3UWf.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-boolean-widget-filter.component-ByoMpVAs.mjs → acorex-platform-common-boolean-widget-filter.component-DY4oTjC-.mjs} +8 -6
- package/fesm2022/acorex-platform-common-boolean-widget-filter.component-DY4oTjC-.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-checkbox-widget-column.component-BAK1Wlh_.mjs → acorex-platform-common-checkbox-widget-column.component-NSXcrUwU.mjs} +8 -5
- package/fesm2022/{acorex-platform-common-checkbox-widget-column.component-BAK1Wlh_.mjs.map → acorex-platform-common-checkbox-widget-column.component-NSXcrUwU.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-checkbox-widget-edit.component-C1PgHZsE.mjs → acorex-platform-common-checkbox-widget-edit.component-BU7qV5Cm.mjs} +8 -5
- package/fesm2022/acorex-platform-common-checkbox-widget-edit.component-BU7qV5Cm.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-checkbox-widget-view.component-B4BG4mCQ.mjs → acorex-platform-common-checkbox-widget-view.component-2Du2IzDS.mjs} +8 -5
- package/fesm2022/{acorex-platform-common-checkbox-widget-view.component-B4BG4mCQ.mjs.map → acorex-platform-common-checkbox-widget-view.component-2Du2IzDS.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-dateTime-widget-column.component-BnW8m1wn.mjs → acorex-platform-common-dateTime-widget-column.component-Dd7fgwu3.mjs} +8 -5
- package/fesm2022/acorex-platform-common-dateTime-widget-column.component-Dd7fgwu3.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-dateTime-widget-edit.component-DCYX2iyT.mjs → acorex-platform-common-dateTime-widget-edit.component-B4AelVJp.mjs} +8 -5
- package/fesm2022/{acorex-platform-common-dateTime-widget-edit.component-DCYX2iyT.mjs.map → acorex-platform-common-dateTime-widget-edit.component-B4AelVJp.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-dateTime-widget-filter.component-Dbxz84tm.mjs → acorex-platform-common-dateTime-widget-filter.component-Ytm-TwOP.mjs} +33 -9
- package/fesm2022/acorex-platform-common-dateTime-widget-filter.component-Ytm-TwOP.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-dateTime-widget-view.component-Bg1h8xAj.mjs → acorex-platform-common-dateTime-widget-view.component-BKdqOPkb.mjs} +8 -5
- package/fesm2022/{acorex-platform-common-dateTime-widget-view.component-Bg1h8xAj.mjs.map → acorex-platform-common-dateTime-widget-view.component-BKdqOPkb.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-email-widget-column.component-BqRR2jW9.mjs → acorex-platform-common-email-widget-column.component-CDKqwlPD.mjs} +8 -5
- package/fesm2022/acorex-platform-common-email-widget-column.component-CDKqwlPD.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-email-widget-edit.component-C7oCyByG.mjs → acorex-platform-common-email-widget-edit.component-BT2rJjaW.mjs} +8 -5
- package/fesm2022/{acorex-platform-common-email-widget-edit.component-C7oCyByG.mjs.map → acorex-platform-common-email-widget-edit.component-BT2rJjaW.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-email-widget-view.component-hfVZnW_L.mjs → acorex-platform-common-email-widget-view.component-DbhRWpB1.mjs} +8 -5
- package/fesm2022/{acorex-platform-common-email-widget-view.component-hfVZnW_L.mjs.map → acorex-platform-common-email-widget-view.component-DbhRWpB1.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-file-widget-column.component-Dt2mR6hJ.mjs → acorex-platform-common-file-widget-column.component-8U76QgEQ.mjs} +7 -4
- package/fesm2022/acorex-platform-common-file-widget-column.component-8U76QgEQ.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-file-widget-edit.component-DQol3UN8.mjs → acorex-platform-common-file-widget-edit.component-OFmiYz_5.mjs} +8 -5
- package/fesm2022/{acorex-platform-common-file-widget-edit.component-DQol3UN8.mjs.map → acorex-platform-common-file-widget-edit.component-OFmiYz_5.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-file-widget-filter.component-CGd1mY-z.mjs → acorex-platform-common-file-widget-filter.component-ZLnpXMXK.mjs} +8 -5
- package/fesm2022/acorex-platform-common-file-widget-filter.component-ZLnpXMXK.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-file-widget-view.component-lKWnGSSb.mjs → acorex-platform-common-file-widget-view.component-BcrM4XrO.mjs} +8 -5
- package/fesm2022/{acorex-platform-common-file-widget-view.component-lKWnGSSb.mjs.map → acorex-platform-common-file-widget-view.component-BcrM4XrO.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-gallery-widget-edit.component-DgjY3ZWk.mjs → acorex-platform-common-gallery-widget-edit.component-pBBjrjDP.mjs} +9 -6
- package/fesm2022/{acorex-platform-common-gallery-widget-edit.component-DgjY3ZWk.mjs.map → acorex-platform-common-gallery-widget-edit.component-pBBjrjDP.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-gallery-widget-filter.component-CUw4kxTW.mjs → acorex-platform-common-gallery-widget-filter.component-Cp7t9ovC.mjs} +8 -5
- package/fesm2022/acorex-platform-common-gallery-widget-filter.component-Cp7t9ovC.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-gallery-widget-view.component-DK52JTds.mjs → acorex-platform-common-gallery-widget-view.component-CPS-h3cq.mjs} +9 -6
- package/fesm2022/{acorex-platform-common-gallery-widget-view.component-DK52JTds.mjs.map → acorex-platform-common-gallery-widget-view.component-CPS-h3cq.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-largetext-widget-edit.component-7bbHUOnp.mjs → acorex-platform-common-largetext-widget-edit.component-DA6r3rVA.mjs} +8 -5
- package/fesm2022/acorex-platform-common-largetext-widget-edit.component-DA6r3rVA.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-lookup-widget-column.component-PGf5qjC4.mjs → acorex-platform-common-lookup-widget-column.component-Cxv1yZvE.mjs} +8 -5
- package/fesm2022/acorex-platform-common-lookup-widget-column.component-Cxv1yZvE.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-lookup-widget-edit.component-CGZf6rH2.mjs → acorex-platform-common-lookup-widget-edit.component-CUtGoAGX.mjs} +9 -6
- package/fesm2022/acorex-platform-common-lookup-widget-edit.component-CUtGoAGX.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-lookup-widget-filter.component-CUBdIuu9.mjs → acorex-platform-common-lookup-widget-filter.component-DJZqB3vj.mjs} +9 -7
- package/fesm2022/acorex-platform-common-lookup-widget-filter.component-DJZqB3vj.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-lookup-widget-view.component-dmGctRc9.mjs → acorex-platform-common-lookup-widget-view.component-CghJK1C4.mjs} +8 -5
- package/fesm2022/acorex-platform-common-lookup-widget-view.component-CghJK1C4.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-map-widget-edit.component-Cyi6AF9u.mjs → acorex-platform-common-map-widget-edit.component-oSb3kVMc.mjs} +8 -5
- package/fesm2022/acorex-platform-common-map-widget-edit.component-oSb3kVMc.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-map-widget-view.component-Cbl1KClC.mjs → acorex-platform-common-map-widget-view.component-BrYwr914.mjs} +8 -5
- package/fesm2022/acorex-platform-common-map-widget-view.component-BrYwr914.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-messenger-widget-column.component-BGiTw0jL.mjs → acorex-platform-common-messenger-widget-column.component-DIJAffxy.mjs} +8 -5
- package/fesm2022/acorex-platform-common-messenger-widget-column.component-DIJAffxy.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-messenger-widget-edit.component-BBSmai_5.mjs → acorex-platform-common-messenger-widget-edit.component-DpGvbM4a.mjs} +8 -5
- package/fesm2022/acorex-platform-common-messenger-widget-edit.component-DpGvbM4a.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-messenger-widget-view.component-C15KdEZ6.mjs → acorex-platform-common-messenger-widget-view.component-CeuDEI-j.mjs} +8 -5
- package/fesm2022/{acorex-platform-common-messenger-widget-view.component-C15KdEZ6.mjs.map → acorex-platform-common-messenger-widget-view.component-CeuDEI-j.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-number-widget-edit.component-CGmS-gd7.mjs → acorex-platform-common-number-widget-edit.component-B1YGwr60.mjs} +8 -5
- package/fesm2022/acorex-platform-common-number-widget-edit.component-B1YGwr60.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-number-widget-filter.component-8RC01k_0.mjs → acorex-platform-common-number-widget-filter.component-BmmgPy1w.mjs} +9 -6
- package/fesm2022/acorex-platform-common-number-widget-filter.component-BmmgPy1w.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-number-widget-view.component-DGPcZ-yE.mjs → acorex-platform-common-number-widget-view.component-bqylVHOz.mjs} +8 -5
- package/fesm2022/acorex-platform-common-number-widget-view.component-bqylVHOz.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-password-widget-column.component-O3L2DvZq.mjs → acorex-platform-common-password-widget-column.component-DVdZh7s4.mjs} +8 -5
- package/fesm2022/{acorex-platform-common-password-widget-column.component-O3L2DvZq.mjs.map → acorex-platform-common-password-widget-column.component-DVdZh7s4.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-password-widget-edit.component-DZz6rAL3.mjs → acorex-platform-common-password-widget-edit.component-OjHwMT5d.mjs} +8 -5
- package/fesm2022/acorex-platform-common-password-widget-edit.component-OjHwMT5d.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-password-widget-view.component-OxinnOs8.mjs → acorex-platform-common-password-widget-view.component-BeSk1OgU.mjs} +8 -5
- package/fesm2022/{acorex-platform-common-password-widget-view.component-OxinnOs8.mjs.map → acorex-platform-common-password-widget-view.component-BeSk1OgU.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-phone-widget-column.component-D9AXNMVq.mjs → acorex-platform-common-phone-widget-column.component-DOfzGKBi.mjs} +8 -5
- package/fesm2022/{acorex-platform-common-phone-widget-column.component-D9AXNMVq.mjs.map → acorex-platform-common-phone-widget-column.component-DOfzGKBi.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-phone-widget-edit.component-CKvODAMQ.mjs → acorex-platform-common-phone-widget-edit.component-BJ-iEyLP.mjs} +7 -5
- package/fesm2022/{acorex-platform-common-phone-widget-edit.component-CKvODAMQ.mjs.map → acorex-platform-common-phone-widget-edit.component-BJ-iEyLP.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-phone-widget-view.component-Cx-SrpUs.mjs → acorex-platform-common-phone-widget-view.component-DW4AHCE6.mjs} +8 -5
- package/fesm2022/{acorex-platform-common-phone-widget-view.component-Cx-SrpUs.mjs.map → acorex-platform-common-phone-widget-view.component-DW4AHCE6.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-rich-text-widget-column.component-C7IqYbqM.mjs → acorex-platform-common-rich-text-widget-column.component-2zZBG6Ze.mjs} +8 -5
- package/fesm2022/{acorex-platform-common-rich-text-widget-column.component-C7IqYbqM.mjs.map → acorex-platform-common-rich-text-widget-column.component-2zZBG6Ze.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-rich-text-widget-edit.component-DtEcLWte.mjs → acorex-platform-common-rich-text-widget-edit.component-BJveJgHZ.mjs} +8 -5
- package/fesm2022/acorex-platform-common-rich-text-widget-edit.component-BJveJgHZ.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-rich-text-widget-view.component-DI4I6wII.mjs → acorex-platform-common-rich-text-widget-view.component-CiViWpBX.mjs} +8 -5
- package/fesm2022/acorex-platform-common-rich-text-widget-view.component-CiViWpBX.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-selection-list-widget-column.component-CHDTopqW.mjs → acorex-platform-common-selection-list-widget-column.component-D9lsVFgo.mjs} +8 -5
- package/fesm2022/{acorex-platform-common-selection-list-widget-column.component-CHDTopqW.mjs.map → acorex-platform-common-selection-list-widget-column.component-D9lsVFgo.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-selection-list-widget-edit.component-Ds7Pc22g.mjs → acorex-platform-common-selection-list-widget-edit.component-ocEwyUP7.mjs} +8 -5
- package/fesm2022/acorex-platform-common-selection-list-widget-edit.component-ocEwyUP7.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-selection-list-widget-filter.component-D7h2tUqB.mjs → acorex-platform-common-selection-list-widget-filter.component-CS0f_jCx.mjs} +7 -5
- package/fesm2022/acorex-platform-common-selection-list-widget-filter.component-CS0f_jCx.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-selection-list-widget-view.component-DGuotR-q.mjs → acorex-platform-common-selection-list-widget-view.component-C65lbpo_.mjs} +8 -5
- package/fesm2022/acorex-platform-common-selection-list-widget-view.component-C65lbpo_.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-signature-pad-widget-edit.component-DPr0hCtB.mjs → acorex-platform-common-signature-pad-widget-edit.component-DbfQSGxm.mjs} +7 -4
- package/fesm2022/{acorex-platform-common-signature-pad-widget-edit.component-DPr0hCtB.mjs.map → acorex-platform-common-signature-pad-widget-edit.component-DbfQSGxm.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-signature-pad-widget-view.component-CdqZ17tU.mjs → acorex-platform-common-signature-pad-widget-view.component-CDY3JdP-.mjs} +8 -5
- package/fesm2022/acorex-platform-common-signature-pad-widget-view.component-CDY3JdP-.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-string-widget-filter.component-Ctde9CDD.mjs → acorex-platform-common-string-widget-filter.component-BW2ehdOx.mjs} +9 -6
- package/fesm2022/acorex-platform-common-string-widget-filter.component-BW2ehdOx.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-text-widget-column.component-BHd_WWKq.mjs → acorex-platform-common-text-widget-column.component-bhx0QWAX.mjs} +8 -5
- package/fesm2022/{acorex-platform-common-text-widget-column.component-BHd_WWKq.mjs.map → acorex-platform-common-text-widget-column.component-bhx0QWAX.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-text-widget-edit.component-BwfelIOW.mjs → acorex-platform-common-text-widget-edit.component-Cb1k59hs.mjs} +8 -5
- package/fesm2022/acorex-platform-common-text-widget-edit.component-Cb1k59hs.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-text-widget-view.component-SHWXqKZS.mjs → acorex-platform-common-text-widget-view.component-CGwY9c2O.mjs} +8 -5
- package/fesm2022/{acorex-platform-common-text-widget-view.component-SHWXqKZS.mjs.map → acorex-platform-common-text-widget-view.component-CGwY9c2O.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-toggle-widget-column.component-Dc_Ahdvn.mjs → acorex-platform-common-toggle-widget-column.component-BxAwa7jw.mjs} +8 -5
- package/fesm2022/{acorex-platform-common-toggle-widget-column.component-Dc_Ahdvn.mjs.map → acorex-platform-common-toggle-widget-column.component-BxAwa7jw.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-toggle-widget-edit.component-BnPyXdAA.mjs → acorex-platform-common-toggle-widget-edit.component-CT2fRAKm.mjs} +8 -5
- package/fesm2022/acorex-platform-common-toggle-widget-edit.component-CT2fRAKm.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-toggle-widget-view.component-D14GMwWe.mjs → acorex-platform-common-toggle-widget-view.component-9tquFHhE.mjs} +8 -5
- package/fesm2022/{acorex-platform-common-toggle-widget-view.component-D14GMwWe.mjs.map → acorex-platform-common-toggle-widget-view.component-9tquFHhE.mjs.map} +1 -1
- package/fesm2022/acorex-platform-common.mjs +639 -434
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-core.mjs +2 -2
- package/fesm2022/acorex-platform-core.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-builder.mjs +28 -11
- package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-designer.mjs +365 -67
- package/fesm2022/acorex-platform-layout-designer.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +103 -57
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/acorex-platform-layouts.mjs +16 -11
- package/fesm2022/acorex-platform-layouts.mjs.map +1 -1
- package/fesm2022/{acorex-platform-themes-default-entity-master-create-view.component-Q8eTfAVx.mjs → acorex-platform-themes-default-entity-master-create-view.component-i6vjEhti.mjs} +3 -3
- package/fesm2022/{acorex-platform-themes-default-entity-master-create-view.component-Q8eTfAVx.mjs.map → acorex-platform-themes-default-entity-master-create-view.component-i6vjEhti.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-themes-default-entity-master-list-view.component-CNXG0nP4.mjs → acorex-platform-themes-default-entity-master-list-view.component-BGKWaCth.mjs} +22 -18
- package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-BGKWaCth.mjs.map +1 -0
- package/fesm2022/{acorex-platform-themes-default-entity-master-modify-view.component-BijYXMme.mjs → acorex-platform-themes-default-entity-master-modify-view.component-B3phYOIw.mjs} +5 -5
- package/fesm2022/acorex-platform-themes-default-entity-master-modify-view.component-B3phYOIw.mjs.map +1 -0
- package/fesm2022/{acorex-platform-themes-default-entity-master-single-view.component-Bnrabotu.mjs → acorex-platform-themes-default-entity-master-single-view.component-DyZHE0o-.mjs} +16 -13
- package/fesm2022/acorex-platform-themes-default-entity-master-single-view.component-DyZHE0o-.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-default.mjs +75 -57
- package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
- package/fesm2022/acorex-platform-themes-shared.mjs +130 -121
- package/fesm2022/acorex-platform-themes-shared.mjs.map +1 -1
- package/fesm2022/acorex-platform-widgets-template-widget-edit.component-gvAh-gH1.mjs +96 -0
- package/fesm2022/acorex-platform-widgets-template-widget-edit.component-gvAh-gH1.mjs.map +1 -0
- package/fesm2022/acorex-platform-widgets.mjs +369 -86
- package/fesm2022/acorex-platform-widgets.mjs.map +1 -1
- package/layout/builder/lib/builder/widget-container.component.d.ts +3 -2
- package/layout/builder/lib/builder/widget.types.d.ts +4 -1
- package/layout/designer/index.d.ts +2 -0
- package/layout/designer/lib/designer/components/board/board.component.d.ts +1 -0
- package/layout/designer/lib/designer/components/header-menu/header-menu.component.d.ts +1 -0
- package/layout/designer/lib/designer/components/size-mode/view-size-toolbar.component.d.ts +6 -0
- package/layout/designer/lib/designer/components/widget-picker/widget-picker.component.d.ts +1 -1
- package/layout/designer/lib/designer/designer.component.d.ts +1 -1
- package/layout/designer/lib/designer/shared/designer.service.d.ts +6 -1
- package/layout/designer/lib/preview/preview-frame.component.d.ts +8 -0
- package/layout/designer/lib/preview/preview-viewer.component.d.ts +14 -0
- package/layout/designer/lib/preview/preview.component.d.ts +17 -3
- package/layout/entity/lib/entity-detail-list.viewmodel.d.ts +4 -4
- package/layout/entity/lib/entity-master-create.viewmodel.d.ts +1 -1
- package/layout/entity/lib/entity-master-single.viewmodel.d.ts +1 -5
- package/layout/entity/lib/entity-master-update.viewmodel.d.ts +1 -1
- package/layout/entity/lib/entity-registery.service.d.ts +1 -1
- package/layout/entity/lib/entity.config.d.ts +7 -0
- package/layout/entity/lib/entity.viewmodel.d.ts +1 -1
- package/layout/entity/lib/widgets/lookup-widget/lookup-widget-edit.component.d.ts +2 -1
- package/layout/entity/lib/widgets/lookup-widget/lookup-widget-view.component.d.ts +2 -1
- package/layout/entity/lib/workflows/delete-entity.workflow.d.ts +1 -0
- package/layout/entity/lib/workflows/modify-section.workflow.d.ts +1 -0
- package/layouts/lib/admin/entity-layout/workflows/modify-entity.workflow.d.ts +1 -0
- package/package.json +13 -13
- package/themes/default/lib/layouts/entity-layouts/entity-master-single-view/entity-master-single-view.component.d.ts +1 -1
- package/themes/default/lib/layouts/root-layout/components/menu/root-menu.component.d.ts +22 -0
- package/themes/default/lib/layouts/root-layout/index.d.ts +1 -0
- package/themes/default/lib/layouts/root-layout/root-layout.component.d.ts +0 -4
- package/themes/default/lib/layouts/root-layout/root-layout.module.d.ts +17 -16
- package/themes/shared/lib/comments/comment-list-view.component.d.ts +16 -11
- package/themes/shared/lib/comments/comments.service.d.ts +4 -7
- package/themes/shared/lib/comments/comments.type.d.ts +23 -19
- package/themes/shared/lib/components/theme-slot.component.d.ts +1 -1
- package/themes/shared/lib/services/theme.service.d.ts +1 -1
- package/themes/shared/lib/shared.module.d.ts +0 -1
- package/widgets/lib/widgets/advance/qrcode/qrcode-widget-view.component.d.ts +1 -1
- package/widgets/lib/widgets/editors/color/color-box-widget-column.component.d.ts +3 -0
- package/widgets/lib/widgets/editors/contact/contact-widget-column.component.d.ts +2 -0
- package/widgets/lib/widgets/editors/contact/contact-widget-edit.component.d.ts +1 -1
- package/widgets/lib/widgets/editors/contact/contact-widget-view.component.d.ts +1 -1
- package/widgets/lib/widgets/editors/date-time/date-time-box-widget-column.component.d.ts +3 -0
- package/widgets/lib/widgets/editors/rich-text/rich-text-widget-edit.component.d.ts +3 -2
- package/widgets/lib/widgets/index.d.ts +1 -0
- package/widgets/lib/widgets/layout/block/block-widget-view.component.d.ts +4 -2
- package/widgets/lib/widgets/layout/repeater/repeater-widget-edit.component.d.ts +1 -0
- package/widgets/lib/widgets/layout/template/index.d.ts +4 -0
- package/widgets/lib/widgets/layout/template/template-widget-designer.component.d.ts +11 -0
- package/widgets/lib/widgets/layout/template/template-widget-edit.component.d.ts +10 -0
- package/widgets/lib/widgets/layout/template/template-widget-view.component.d.ts +10 -0
- package/widgets/lib/widgets/layout/template/template-widget.config.d.ts +7 -0
- package/widgets/lib/widgets/layout/template/template.provider.d.ts +21 -0
- package/common/lib/data/entity-data-provider.d.ts +0 -14
- package/esm2022/common/lib/data/entity-data-provider.mjs +0 -26
- package/fesm2022/acorex-platform-common-avatar-widget-edit.component-CSSz-dqg.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-avatar-widget-view.component-WofmamJK.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-boolean-widget-filter.component-ByoMpVAs.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-checkbox-widget-edit.component-C1PgHZsE.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-dateTime-widget-column.component-BnW8m1wn.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-dateTime-widget-filter.component-Dbxz84tm.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-email-widget-column.component-BqRR2jW9.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-file-widget-column.component-Dt2mR6hJ.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-file-widget-filter.component-CGd1mY-z.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-gallery-widget-filter.component-CUw4kxTW.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-largetext-widget-edit.component-7bbHUOnp.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-lookup-widget-column.component-PGf5qjC4.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-lookup-widget-edit.component-CGZf6rH2.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-lookup-widget-filter.component-CUBdIuu9.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-lookup-widget-view.component-dmGctRc9.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-map-widget-edit.component-Cyi6AF9u.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-map-widget-view.component-Cbl1KClC.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-messenger-widget-column.component-BGiTw0jL.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-messenger-widget-edit.component-BBSmai_5.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-number-widget-edit.component-CGmS-gd7.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-number-widget-filter.component-8RC01k_0.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-number-widget-view.component-DGPcZ-yE.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-password-widget-edit.component-DZz6rAL3.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-rich-text-widget-edit.component-DtEcLWte.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-rich-text-widget-view.component-DI4I6wII.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-selection-list-widget-edit.component-Ds7Pc22g.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-selection-list-widget-filter.component-D7h2tUqB.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-selection-list-widget-view.component-DGuotR-q.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-signature-pad-widget-view.component-CdqZ17tU.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-string-widget-filter.component-Ctde9CDD.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-text-widget-edit.component-BwfelIOW.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-toggle-widget-edit.component-BnPyXdAA.mjs.map +0 -1
- package/fesm2022/acorex-platform-layout-designer-preview.component-CaRHf4x_.mjs +0 -23
- package/fesm2022/acorex-platform-layout-designer-preview.component-CaRHf4x_.mjs.map +0 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-list-view.component-CNXG0nP4.mjs.map +0 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-modify-view.component-BijYXMme.mjs.map +0 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-single-view.component-Bnrabotu.mjs.map +0 -1
|
@@ -1,28 +1,31 @@
|
|
|
1
1
|
import { AXPopupModule } from '@acorex/components/popup';
|
|
2
|
+
import { AXToastService, AXToastModule } from '@acorex/components/toast';
|
|
2
3
|
import { AXDateTimeModule } from '@acorex/core/date-time';
|
|
4
|
+
import * as i6 from '@acorex/platform/workflow';
|
|
5
|
+
import { createWorkFlowEvent, AXPWorkflowAction, AXPWorkflowError, AXPWorkflowModule } from '@acorex/platform/workflow';
|
|
3
6
|
import * as i0 from '@angular/core';
|
|
4
|
-
import {
|
|
5
|
-
import * as i2 from '@angular/router';
|
|
7
|
+
import { Injectable, APP_INITIALIZER, inject, InjectionToken, Injector, ErrorHandler, Directive, Input, EventEmitter, Output, runInInjectionContext, NgModule, Optional, Inject, Component, ViewEncapsulation, ChangeDetectorRef, ChangeDetectionStrategy, ViewChild, RendererFactory2 } from '@angular/core';
|
|
8
|
+
import * as i2$1 from '@angular/router';
|
|
6
9
|
import { Router, RouterModule, NavigationEnd } from '@angular/router';
|
|
7
|
-
import * as i1 from '@ngrx/effects';
|
|
10
|
+
import * as i1$1 from '@ngrx/effects';
|
|
8
11
|
import { createEffect, ofType, Actions, EffectsModule } from '@ngrx/effects';
|
|
9
|
-
import * as
|
|
12
|
+
import * as i5$1 from '@ngrx/store';
|
|
10
13
|
import { createAction, props, Store, createFeature, createReducer, on, createSelector, StoreModule } from '@ngrx/store';
|
|
11
|
-
import {
|
|
12
|
-
import
|
|
14
|
+
import { applySortArray, applyFilterArray } from '@acorex/platform/core';
|
|
15
|
+
import Dexie from 'dexie';
|
|
16
|
+
import { BehaviorSubject, timer, of, Subject, switchMap, fromEvent, debounceTime, map } from 'rxjs';
|
|
13
17
|
import * as i5 from '@acorex/components/decorators';
|
|
14
18
|
import { AXDecoratorModule } from '@acorex/components/decorators';
|
|
15
|
-
import * as i2
|
|
19
|
+
import * as i2 from '@acorex/components/image';
|
|
16
20
|
import { AXImageModule } from '@acorex/components/image';
|
|
17
|
-
import * as i1
|
|
21
|
+
import * as i1 from '@angular/common';
|
|
18
22
|
import { CommonModule } from '@angular/common';
|
|
23
|
+
import { signalStore, withState, withMethods, patchState, withHooks } from '@ngrx/signals';
|
|
24
|
+
import { cloneDeep, merge, assign, isEqual, get, set } from 'lodash-es';
|
|
19
25
|
import { AXPlatform } from '@acorex/core/platform';
|
|
20
|
-
import { AXToastService, AXToastModule } from '@acorex/components/toast';
|
|
21
|
-
import * as i5$1 from '@acorex/platform/workflow';
|
|
22
|
-
import { createWorkFlowEvent, AXPWorkflowAction, AXPWorkflowError, AXPWorkflowModule } from '@acorex/platform/workflow';
|
|
23
26
|
import { AXDialogService } from '@acorex/components/dialog';
|
|
24
|
-
import
|
|
25
|
-
import * as i2$
|
|
27
|
+
import { AXTranslationService } from '@acorex/core/translation';
|
|
28
|
+
import * as i2$2 from '@acorex/components/skeleton';
|
|
26
29
|
import { AXSkeletonModule } from '@acorex/components/skeleton';
|
|
27
30
|
import * as i1$2 from '@angular/cdk/portal';
|
|
28
31
|
import { ComponentPortal, PortalModule } from '@angular/cdk/portal';
|
|
@@ -31,6 +34,258 @@ import { AXUnsubscriber } from '@acorex/core/utils';
|
|
|
31
34
|
import { AXFormatService } from '@acorex/core/format';
|
|
32
35
|
import { filter } from 'rxjs/operators';
|
|
33
36
|
|
|
37
|
+
class AXPAppStartUpService {
|
|
38
|
+
constructor() {
|
|
39
|
+
this.tasks = [];
|
|
40
|
+
}
|
|
41
|
+
registerTask(task) {
|
|
42
|
+
this.tasks.push(task);
|
|
43
|
+
}
|
|
44
|
+
async runAllTasks() {
|
|
45
|
+
for (const task of this.tasks) {
|
|
46
|
+
this.updateStatus(task.statusText);
|
|
47
|
+
await task.run();
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
updateStatus(status) {
|
|
51
|
+
const loadingText = document.querySelector('#loadingText');
|
|
52
|
+
if (loadingText) {
|
|
53
|
+
loadingText.innerHTML = status;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPAppStartUpService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
57
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPAppStartUpService, providedIn: 'root' }); }
|
|
58
|
+
}
|
|
59
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPAppStartUpService, decorators: [{
|
|
60
|
+
type: Injectable,
|
|
61
|
+
args: [{
|
|
62
|
+
providedIn: 'root',
|
|
63
|
+
}]
|
|
64
|
+
}] });
|
|
65
|
+
function initAppFactory(appInitService) {
|
|
66
|
+
return () => appInitService.runAllTasks();
|
|
67
|
+
}
|
|
68
|
+
const AXPAppStartUpProvider = {
|
|
69
|
+
provide: APP_INITIALIZER,
|
|
70
|
+
useFactory: initAppFactory,
|
|
71
|
+
deps: [AXPAppStartUpService],
|
|
72
|
+
multi: true,
|
|
73
|
+
};
|
|
74
|
+
|
|
75
|
+
class AXPDataProvider {
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
class AXPDexieEntityStorageService extends Dexie {
|
|
79
|
+
constructor() {
|
|
80
|
+
super('ACoreXPlatform');
|
|
81
|
+
this.version(1).stores({
|
|
82
|
+
'entity-store': '++id, entityName, [entityName+id]',
|
|
83
|
+
});
|
|
84
|
+
}
|
|
85
|
+
get dbName() {
|
|
86
|
+
return 'ACoreXPlatform';
|
|
87
|
+
}
|
|
88
|
+
async initial(entityName, collection) {
|
|
89
|
+
const exists = await this.table('entity-store').where({ entityName }).count();
|
|
90
|
+
if (exists === 0) {
|
|
91
|
+
await this.table('entity-store').bulkAdd(collection.map((item) => ({ ...item, entityName })));
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
async getOne(entityName, id) {
|
|
95
|
+
return await this.table('entity-store').where({ entityName, id: id }).first();
|
|
96
|
+
}
|
|
97
|
+
async updateOne(entityName, id, keyValue) {
|
|
98
|
+
await this.table('entity-store').where({ entityName, id: id }).modify(keyValue);
|
|
99
|
+
return await this.getOne(entityName, id);
|
|
100
|
+
}
|
|
101
|
+
async deleteOne(entityName, id) {
|
|
102
|
+
await this.table('entity-store').where({ entityName, id: id }).delete();
|
|
103
|
+
}
|
|
104
|
+
async insertOne(entityName, entity) {
|
|
105
|
+
await this.table('entity-store').add({ ...entity, entityName });
|
|
106
|
+
return entity.id;
|
|
107
|
+
}
|
|
108
|
+
async getAll(entityName) {
|
|
109
|
+
return await this.table('entity-store').where({ entityName }).toArray();
|
|
110
|
+
}
|
|
111
|
+
async query(entityName, request) {
|
|
112
|
+
let result = await this.table('entity-store').where({ entityName }).toArray();
|
|
113
|
+
if (request.sort && request.sort.length) {
|
|
114
|
+
result = applySortArray(result, request.sort);
|
|
115
|
+
}
|
|
116
|
+
result = applyFilterArray(result, request.filter ? [request.filter] : []);
|
|
117
|
+
return Promise.resolve({
|
|
118
|
+
totalCount: result.length,
|
|
119
|
+
items: result.slice(request.skip, (request.skip ?? 0) + (request.take ?? 0)),
|
|
120
|
+
});
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
// export class AXPDexieTableStorageService extends Dexie implements AXPEntityStorageService {
|
|
124
|
+
// private schemaUpdateLock: Promise<void> = Promise.resolve();
|
|
125
|
+
// constructor() {
|
|
126
|
+
// super('ACoreXPlatform');
|
|
127
|
+
// // Initial empty version
|
|
128
|
+
// //this.version(1).stores({});
|
|
129
|
+
// }
|
|
130
|
+
// // Function to change the schema dynamically
|
|
131
|
+
// private async changeSchema(schemaChanges: { [tableName: string]: string | null }): Promise<void> {
|
|
132
|
+
// // Acquire schema update lock to ensure no other operations are performed while schema is changing
|
|
133
|
+
// this.schemaUpdateLock = this.schemaUpdateLock.then(async () => {
|
|
134
|
+
// console.log('Attempting schema change with:', schemaChanges);
|
|
135
|
+
// try {
|
|
136
|
+
// this.close();
|
|
137
|
+
// const newDb = new Dexie(this.name);
|
|
138
|
+
// // Extract current schema in Dexie format
|
|
139
|
+
// const currentSchema = this.tables.reduce((result, { name, schema }) => {
|
|
140
|
+
// result[name] = [schema.primKey.src, ...schema.indexes.map((idx) => idx.src)].join(',');
|
|
141
|
+
// return result;
|
|
142
|
+
// }, {} as { [tableName: string]: string });
|
|
143
|
+
// console.log('Current Schema:', currentSchema);
|
|
144
|
+
// // Define current schema version
|
|
145
|
+
// newDb.version(this.verno + 10).stores(currentSchema);
|
|
146
|
+
// // Define new schema version with schema changes
|
|
147
|
+
// const nextVersion = this.verno + 1;
|
|
148
|
+
// newDb.version(nextVersion).stores(schemaChanges);
|
|
149
|
+
// await newDb.open();
|
|
150
|
+
// // Reassign updated db instance
|
|
151
|
+
// Object.assign(this, newDb);
|
|
152
|
+
// console.log(`Schema updated. Current version: ${this.verno}`);
|
|
153
|
+
// } catch (error) {
|
|
154
|
+
// console.error('Error during schema change:', error);
|
|
155
|
+
// throw error;
|
|
156
|
+
// }
|
|
157
|
+
// });
|
|
158
|
+
// // Wait for schema change lock to complete
|
|
159
|
+
// await this.schemaUpdateLock;
|
|
160
|
+
// }
|
|
161
|
+
// private async ensureInitialized(entityName: string): Promise<void> {
|
|
162
|
+
// if (this.tables.findIndex((table) => table.name === entityName) == -1) {
|
|
163
|
+
// const schemaChanges: { [tableName: string]: string } = {};
|
|
164
|
+
// schemaChanges[entityName] = '++id';
|
|
165
|
+
// await this.changeSchema(schemaChanges);
|
|
166
|
+
// }
|
|
167
|
+
// }
|
|
168
|
+
// get dbName(): string {
|
|
169
|
+
// return 'ACoreXPlatform';
|
|
170
|
+
// }
|
|
171
|
+
// private async getTable<T>(entityName: string) {
|
|
172
|
+
// await this.ensureInitialized(entityName);
|
|
173
|
+
// return this.table<T, number>(entityName);
|
|
174
|
+
// }
|
|
175
|
+
// async initial<T = any>(entityName: string, collection: T[]): Promise<void> {
|
|
176
|
+
// const table = await this.getTable<T>(entityName);
|
|
177
|
+
// const exists = await table.count();
|
|
178
|
+
// if (exists === 0) {
|
|
179
|
+
// await table.bulkAdd(collection);
|
|
180
|
+
// }
|
|
181
|
+
// }
|
|
182
|
+
// async getOne<T = any>(entityName: string, id: string): Promise<T> {
|
|
183
|
+
// const table = await this.getTable<T>(entityName);
|
|
184
|
+
// return (await table.where({ id: parseInt(id) }).first()) as T;
|
|
185
|
+
// }
|
|
186
|
+
// async updateOne(entityName: string, id: string, keyValue: { [key: string]: any }): Promise<void> {
|
|
187
|
+
// const table = await this.getTable(entityName);
|
|
188
|
+
// await table.update(parseInt(id), keyValue);
|
|
189
|
+
// }
|
|
190
|
+
// async deleteOne(entityName: string, id: string): Promise<void> {
|
|
191
|
+
// const table = await this.getTable(entityName);
|
|
192
|
+
// await table.delete(parseInt(id));
|
|
193
|
+
// }
|
|
194
|
+
// async insertOne<T = any>(entityName: string, entity: T): Promise<void> {
|
|
195
|
+
// const table = await this.getTable<T>(entityName);
|
|
196
|
+
// await table.add(entity);
|
|
197
|
+
// }
|
|
198
|
+
// async getAll<T = any>(entityName: string): Promise<T[]> {
|
|
199
|
+
// const table = await this.getTable<T>(entityName);
|
|
200
|
+
// return await table.toArray();
|
|
201
|
+
// }
|
|
202
|
+
// }
|
|
203
|
+
|
|
204
|
+
class AXPEntityStorageService {
|
|
205
|
+
}
|
|
206
|
+
class AXPEntityDataProvider {
|
|
207
|
+
}
|
|
208
|
+
class AXPEntityDataProviderImpl {
|
|
209
|
+
constructor(storageService, entityName) {
|
|
210
|
+
this.storageService = storageService;
|
|
211
|
+
this.entityName = entityName;
|
|
212
|
+
}
|
|
213
|
+
async initial(collection) {
|
|
214
|
+
await this.storageService.initial(this.entityName, collection);
|
|
215
|
+
}
|
|
216
|
+
getOne(id) {
|
|
217
|
+
return this.storageService.getOne(this.entityName, id);
|
|
218
|
+
}
|
|
219
|
+
getAll() {
|
|
220
|
+
return this.storageService.getAll(this.entityName);
|
|
221
|
+
}
|
|
222
|
+
query(request) {
|
|
223
|
+
return this.storageService.query(this.entityName, request);
|
|
224
|
+
}
|
|
225
|
+
updateOne(id, keyValue) {
|
|
226
|
+
return this.storageService.updateOne(this.entityName, id, keyValue);
|
|
227
|
+
}
|
|
228
|
+
deleteOne(id) {
|
|
229
|
+
return this.storageService.deleteOne(this.entityName, id);
|
|
230
|
+
}
|
|
231
|
+
insertOne(entity) {
|
|
232
|
+
return this.storageService.insertOne(this.entityName, entity);
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
class AXMEntityCrudService {
|
|
236
|
+
}
|
|
237
|
+
class AXMEntityCrudServiceImpl {
|
|
238
|
+
constructor(entityName) {
|
|
239
|
+
this.entityName = entityName;
|
|
240
|
+
this._storageService = inject(AXPEntityStorageService);
|
|
241
|
+
this._entityDataProvider = new AXPEntityDataProviderImpl(this._storageService, this.entityName);
|
|
242
|
+
}
|
|
243
|
+
async insertOne(request) {
|
|
244
|
+
return this._entityDataProvider.insertOne(request);
|
|
245
|
+
}
|
|
246
|
+
async getOne(id) {
|
|
247
|
+
return this._entityDataProvider.getOne(id);
|
|
248
|
+
}
|
|
249
|
+
async deleteOne(id) {
|
|
250
|
+
return this._entityDataProvider.deleteOne(id);
|
|
251
|
+
}
|
|
252
|
+
async updateOne(id, values) {
|
|
253
|
+
return this._entityDataProvider.updateOne(id, values);
|
|
254
|
+
}
|
|
255
|
+
async query(request) {
|
|
256
|
+
return this._entityDataProvider.query(request);
|
|
257
|
+
}
|
|
258
|
+
get entityDataProvider() {
|
|
259
|
+
return this._entityDataProvider;
|
|
260
|
+
}
|
|
261
|
+
get storageService() {
|
|
262
|
+
return this._storageService;
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
const AXP_DATA_SEEDER_TOKEN = new InjectionToken('AXP_DATA_SEEDER_TOKEN');
|
|
267
|
+
class AXPDataSeederService {
|
|
268
|
+
constructor() {
|
|
269
|
+
this.loader = inject(AXP_DATA_SEEDER_TOKEN, { optional: true });
|
|
270
|
+
}
|
|
271
|
+
async seed() {
|
|
272
|
+
if (Array.isArray(this.loader)) {
|
|
273
|
+
for (const loader of this.loader) {
|
|
274
|
+
await loader.seed();
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
else {
|
|
278
|
+
await this.loader?.seed();
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPDataSeederService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
282
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPDataSeederService, providedIn: 'root' }); }
|
|
283
|
+
}
|
|
284
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPDataSeederService, decorators: [{
|
|
285
|
+
type: Injectable,
|
|
286
|
+
args: [{ providedIn: 'root' }]
|
|
287
|
+
}] });
|
|
288
|
+
|
|
34
289
|
class AXPErrorHandlerRegistryService {
|
|
35
290
|
constructor(injector) {
|
|
36
291
|
this.injector = injector;
|
|
@@ -90,116 +345,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
90
345
|
args: [{ providedIn: 'root' }]
|
|
91
346
|
}], ctorParameters: () => [{ type: i0.Injector }, { type: AXPErrorHandlerRegistryService }] });
|
|
92
347
|
|
|
93
|
-
const AXPNavigateAction = createAction('[Navigate] Action', props());
|
|
94
|
-
const AXPSignOutAction = createAction('[SignOut] Action');
|
|
95
|
-
const AXPSignInAction = createAction('[SignIn] Action');
|
|
96
|
-
const AXPLoadSettingAction = createAction('[App] Load Settings');
|
|
97
|
-
const AXPLoadSettingSuccessAction = createAction('[App] Load Settings Data Success', props());
|
|
98
|
-
|
|
99
|
-
const AXP_SETTINGS_PROVIDER = new InjectionToken('AXP_SETTINGS_PROVIDER', {
|
|
100
|
-
providedIn: 'root',
|
|
101
|
-
factory: () => {
|
|
102
|
-
return new AXPSettingsProviderDefault();
|
|
103
|
-
}
|
|
104
|
-
});
|
|
105
|
-
class AXPSettingsProviderDefault {
|
|
106
|
-
constructor() {
|
|
107
|
-
this.cache = new Map();
|
|
108
|
-
this.localStorageKey = 'AXP_SETTINGS';
|
|
109
|
-
}
|
|
110
|
-
async load() {
|
|
111
|
-
// Load settings from localStorage as a single key
|
|
112
|
-
const storedSettings = localStorage.getItem(this.localStorageKey);
|
|
113
|
-
if (storedSettings) {
|
|
114
|
-
const parsedSettings = JSON.parse(storedSettings);
|
|
115
|
-
Object.entries(parsedSettings).forEach(([key, value]) => {
|
|
116
|
-
this.cache.set(key, value);
|
|
117
|
-
});
|
|
118
|
-
return Promise.resolve(Array.from(this.cache.entries()).map(c => ({ key: c[0], value: c[1] })));
|
|
119
|
-
}
|
|
120
|
-
return Promise.resolve([]);
|
|
121
|
-
}
|
|
122
|
-
async set(key, value) {
|
|
123
|
-
this.cache.set(key, value);
|
|
124
|
-
// Save to localStorage as a single key
|
|
125
|
-
const settingsObject = {};
|
|
126
|
-
this.cache.forEach((val, k) => {
|
|
127
|
-
settingsObject[k] = val;
|
|
128
|
-
});
|
|
129
|
-
localStorage.setItem(this.localStorageKey, JSON.stringify(settingsObject));
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
class AXPSettingsService {
|
|
134
|
-
constructor() {
|
|
135
|
-
this.settingsProvider = inject(AXP_SETTINGS_PROVIDER);
|
|
136
|
-
this.settingsCache = new Map();
|
|
137
|
-
this.changed = new Subject();
|
|
138
|
-
}
|
|
139
|
-
async load() {
|
|
140
|
-
try {
|
|
141
|
-
const settingsList = await this.settingsProvider.load();
|
|
142
|
-
this.settingsCache.clear();
|
|
143
|
-
settingsList.forEach(setting => {
|
|
144
|
-
this.settingsCache.set(setting.key, setting.value);
|
|
145
|
-
});
|
|
146
|
-
return settingsList;
|
|
147
|
-
}
|
|
148
|
-
catch (error) {
|
|
149
|
-
console.error('Error loading settings', error);
|
|
150
|
-
throw error; // Re-throw or handle it appropriately
|
|
151
|
-
}
|
|
152
|
-
}
|
|
153
|
-
get(key) {
|
|
154
|
-
return cloneDeep(this.settingsCache.get(key));
|
|
155
|
-
}
|
|
156
|
-
async set(key, value) {
|
|
157
|
-
if (this.settingsCache.has(key)) {
|
|
158
|
-
this.settingsCache.set(key, value);
|
|
159
|
-
await this.settingsProvider.set(key, value);
|
|
160
|
-
this.changed.next({ key, value });
|
|
161
|
-
}
|
|
162
|
-
else {
|
|
163
|
-
console.warn(`Setting with key "${key}" not found.`);
|
|
164
|
-
this.settingsCache.set(key, value);
|
|
165
|
-
this.set(key, value);
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSettingsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
169
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSettingsService, providedIn: 'root' }); }
|
|
170
|
-
}
|
|
171
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSettingsService, decorators: [{
|
|
172
|
-
type: Injectable,
|
|
173
|
-
args: [{
|
|
174
|
-
providedIn: 'root',
|
|
175
|
-
}]
|
|
176
|
-
}] });
|
|
177
|
-
|
|
178
|
-
class AXPCommonEffects {
|
|
179
|
-
constructor(actions$, router, settingService) {
|
|
180
|
-
this.actions$ = actions$;
|
|
181
|
-
this.router = router;
|
|
182
|
-
this.settingService = settingService;
|
|
183
|
-
this.loadInitialData$ = createEffect(() => this.actions$.pipe(ofType(AXPLoadSettingAction), mergeMap(() => from(this.settingService.load()).pipe(map((data) => AXPLoadSettingSuccessAction({ data }))))));
|
|
184
|
-
this.command$ = createEffect(() => this.actions$.pipe(ofType(AXPNavigateAction), switchMap((action) => {
|
|
185
|
-
if (Array.isArray(action.payload.commands))
|
|
186
|
-
this.router.navigate(action.payload.commands, action.payload.extras);
|
|
187
|
-
else {
|
|
188
|
-
if (action.payload.commands.toLowerCase().startsWith("http"))
|
|
189
|
-
window.open(action.payload.commands, '_blank');
|
|
190
|
-
else
|
|
191
|
-
this.router.navigate([action.payload.commands], action.payload.extras);
|
|
192
|
-
}
|
|
193
|
-
return of();
|
|
194
|
-
})), { dispatch: false });
|
|
195
|
-
}
|
|
196
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPCommonEffects, deps: [{ token: i1.Actions }, { token: i2.Router }, { token: AXPSettingsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
197
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPCommonEffects }); }
|
|
198
|
-
}
|
|
199
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPCommonEffects, decorators: [{
|
|
200
|
-
type: Injectable
|
|
201
|
-
}], ctorParameters: () => [{ type: i1.Actions }, { type: i2.Router }, { type: AXPSettingsService }] });
|
|
202
|
-
|
|
203
348
|
// src/app/directives/grid-layout.directive.ts
|
|
204
349
|
class AXPGridLayoutDirective {
|
|
205
350
|
constructor(el, renderer) {
|
|
@@ -618,7 +763,7 @@ class AXPLogoComponent {
|
|
|
618
763
|
}
|
|
619
764
|
}
|
|
620
765
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPLogoComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
621
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPLogoComponent, isStandalone: true, selector: "axp-logo", inputs: { source: "source" }, host: { classAttribute: "ax-flex ax-justify-center" }, ngImport: i0, template: "@switch (logoType) {\n@case ('text') {\n<span class=\"ax-font-bold ax-select-none\">{{ source.text }}</span>\n}\n@case ('url') {\n<ax-image [src]=\"source.url\"></ax-image>\n} @case ('iconClass') {\n<ax-icon class=\"{{ source.classIcon }}\"></ax-icon>\n} @case ('component') {\n<ng-container *ngComponentOutlet=\"source.component\"></ng-container>\n}\n}", dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1
|
|
766
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.0", type: AXPLogoComponent, isStandalone: true, selector: "axp-logo", inputs: { source: "source" }, host: { classAttribute: "ax-flex ax-justify-center" }, ngImport: i0, template: "@switch (logoType) {\n@case ('text') {\n<span class=\"ax-font-bold ax-select-none\">{{ source.text }}</span>\n}\n@case ('url') {\n<ax-image [src]=\"source.url\"></ax-image>\n} @case ('iconClass') {\n<ax-icon class=\"{{ source.classIcon }}\"></ax-icon>\n} @case ('component') {\n<ng-container *ngComponentOutlet=\"source.component\"></ng-container>\n}\n}", dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgComponentOutlet, selector: "[ngComponentOutlet]", inputs: ["ngComponentOutlet", "ngComponentOutletInputs", "ngComponentOutletInjector", "ngComponentOutletContent", "ngComponentOutletNgModule", "ngComponentOutletNgModuleFactory"] }, { kind: "ngmodule", type: AXImageModule }, { kind: "component", type: i2.AXImageComponent, selector: "ax-image", inputs: ["overlayMode", "src", "alt", "priority", "lazy"], outputs: ["onLoad", "onError"] }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "component", type: i5.AXDecoratorIconComponent, selector: "ax-icon", inputs: ["icon"] }] }); }
|
|
622
767
|
}
|
|
623
768
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPLogoComponent, decorators: [{
|
|
624
769
|
type: Component,
|
|
@@ -664,25 +809,260 @@ class AXMenuLoaderDefault {
|
|
|
664
809
|
}
|
|
665
810
|
}
|
|
666
811
|
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
812
|
+
const AXP_MENU_PROVIDER = new InjectionToken('AXP_MENU_PROVIDER');
|
|
813
|
+
class AXPMenuProviderService {
|
|
814
|
+
constructor() {
|
|
815
|
+
this.providers = inject(AXP_MENU_PROVIDER, { optional: true });
|
|
816
|
+
}
|
|
817
|
+
async items() {
|
|
818
|
+
const items = [];
|
|
819
|
+
if (Array.isArray(this.providers)) {
|
|
820
|
+
for (const provider of this.providers) {
|
|
821
|
+
const injections = await provider.items();
|
|
822
|
+
this.applyInjections(items, injections);
|
|
823
|
+
}
|
|
824
|
+
}
|
|
825
|
+
else if (this.providers) {
|
|
826
|
+
const injections = await this.providers.items();
|
|
827
|
+
this.applyInjections(items, injections);
|
|
828
|
+
}
|
|
829
|
+
return items;
|
|
830
|
+
}
|
|
831
|
+
applyInjections(items, injections) {
|
|
832
|
+
for (const injection of injections) {
|
|
833
|
+
if (injection.insertAt) {
|
|
834
|
+
const inserted = this.findAndInsert(items, injection.items, injection.insertAt.target, injection.insertAt?.position ?? 'after');
|
|
835
|
+
if (!inserted) {
|
|
836
|
+
// If target is not found, append items to the end
|
|
837
|
+
items.push(...injection.items);
|
|
838
|
+
}
|
|
839
|
+
}
|
|
840
|
+
else {
|
|
841
|
+
// If insertAt is not defined, add items to the end
|
|
842
|
+
items.push(...injection.items);
|
|
843
|
+
}
|
|
844
|
+
}
|
|
845
|
+
}
|
|
846
|
+
findAndInsert(items, newItems, target, position) {
|
|
847
|
+
for (let i = 0; i < items.length; i++) {
|
|
848
|
+
const item = items[i];
|
|
849
|
+
// Check if the current item matches the target
|
|
850
|
+
if (item.name === target) {
|
|
851
|
+
const insertPosition = position === 'before' ? i : i + 1;
|
|
852
|
+
items.splice(insertPosition, 0, ...newItems);
|
|
853
|
+
return true;
|
|
854
|
+
}
|
|
855
|
+
// If the item has children, perform a recursive search
|
|
856
|
+
if (item.children && this.findAndInsert(item.children, newItems, target, position)) {
|
|
857
|
+
return true;
|
|
858
|
+
}
|
|
859
|
+
}
|
|
860
|
+
return false; // Target not found in this branch
|
|
861
|
+
}
|
|
862
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPMenuProviderService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
863
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPMenuProviderService, providedIn: 'root' }); }
|
|
864
|
+
}
|
|
865
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPMenuProviderService, decorators: [{
|
|
866
|
+
type: Injectable,
|
|
867
|
+
args: [{ providedIn: 'root' }]
|
|
868
|
+
}] });
|
|
869
|
+
|
|
870
|
+
const AXPNavigateAction = createAction('[Navigate] Action', props());
|
|
871
|
+
const AXPSignOutAction = createAction('[SignOut] Action');
|
|
872
|
+
const AXPSignInAction = createAction('[SignIn] Action');
|
|
873
|
+
|
|
874
|
+
const AXP_SETTINGS_PROVIDER = new InjectionToken('AXP_SETTINGS_PROVIDER', {
|
|
875
|
+
providedIn: 'root',
|
|
876
|
+
factory: () => {
|
|
877
|
+
return new AXPSettingsProviderDefault();
|
|
878
|
+
}
|
|
879
|
+
});
|
|
880
|
+
class AXPSettingsProviderDefault {
|
|
881
|
+
constructor() {
|
|
882
|
+
this.cache = new Map();
|
|
883
|
+
this.localStorageKey = 'AXP_SETTINGS';
|
|
884
|
+
}
|
|
885
|
+
async load() {
|
|
886
|
+
// Load settings from localStorage as a single key
|
|
887
|
+
const storedSettings = localStorage.getItem(this.localStorageKey);
|
|
888
|
+
if (storedSettings) {
|
|
889
|
+
const parsedSettings = JSON.parse(storedSettings);
|
|
890
|
+
Object.entries(parsedSettings).forEach(([key, value]) => {
|
|
891
|
+
this.cache.set(key, value);
|
|
892
|
+
});
|
|
893
|
+
return Promise.resolve(Array.from(this.cache.entries()).map(c => ({ key: c[0], value: c[1] })));
|
|
894
|
+
}
|
|
895
|
+
return Promise.resolve([]);
|
|
896
|
+
}
|
|
897
|
+
async set(key, value) {
|
|
898
|
+
this.cache.set(key, value);
|
|
899
|
+
// Save to localStorage as a single key
|
|
900
|
+
const settingsObject = {};
|
|
901
|
+
this.cache.forEach((val, k) => {
|
|
902
|
+
settingsObject[k] = val;
|
|
903
|
+
});
|
|
904
|
+
localStorage.setItem(this.localStorageKey, JSON.stringify(settingsObject));
|
|
905
|
+
}
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
class AXPSettingsService {
|
|
909
|
+
constructor() {
|
|
910
|
+
this.settingsProvider = inject(AXP_SETTINGS_PROVIDER);
|
|
911
|
+
this.settingsCache = new Map();
|
|
912
|
+
this.changed = new Subject();
|
|
913
|
+
}
|
|
914
|
+
async load() {
|
|
915
|
+
try {
|
|
916
|
+
const settingsList = await this.settingsProvider.load();
|
|
917
|
+
this.settingsCache.clear();
|
|
918
|
+
settingsList.forEach((setting) => {
|
|
919
|
+
this.settingsCache.set(setting.key, setting.value);
|
|
920
|
+
});
|
|
921
|
+
return settingsList;
|
|
922
|
+
}
|
|
923
|
+
catch (error) {
|
|
924
|
+
console.error('Error loading settings', error);
|
|
925
|
+
throw error; // Re-throw or handle it appropriately
|
|
926
|
+
}
|
|
927
|
+
}
|
|
928
|
+
async get(key) {
|
|
929
|
+
if (this.settingsCache.size == 0) {
|
|
930
|
+
await this.load();
|
|
931
|
+
}
|
|
932
|
+
return cloneDeep(this.settingsCache.get(key));
|
|
933
|
+
}
|
|
934
|
+
async set(key, value) {
|
|
935
|
+
if (this.settingsCache.has(key)) {
|
|
936
|
+
this.settingsCache.set(key, value);
|
|
937
|
+
await this.settingsProvider.set(key, value);
|
|
938
|
+
this.changed.next({ key, value });
|
|
939
|
+
}
|
|
940
|
+
else {
|
|
941
|
+
console.warn(`Setting with key "${key}" not found.`);
|
|
942
|
+
this.settingsCache.set(key, value);
|
|
943
|
+
this.set(key, value);
|
|
944
|
+
}
|
|
945
|
+
}
|
|
946
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSettingsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
947
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSettingsService, providedIn: 'root' }); }
|
|
948
|
+
}
|
|
949
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPSettingsService, decorators: [{
|
|
950
|
+
type: Injectable,
|
|
951
|
+
args: [{
|
|
952
|
+
providedIn: 'root',
|
|
953
|
+
}]
|
|
954
|
+
}] });
|
|
955
|
+
|
|
956
|
+
class AXPCommonEffects {
|
|
957
|
+
constructor(actions$, router, settingService) {
|
|
958
|
+
this.actions$ = actions$;
|
|
959
|
+
this.router = router;
|
|
960
|
+
this.settingService = settingService;
|
|
961
|
+
this.command$ = createEffect(() => this.actions$.pipe(ofType(AXPNavigateAction), switchMap((action) => {
|
|
962
|
+
if (Array.isArray(action.payload.commands))
|
|
963
|
+
this.router.navigate(action.payload.commands, action.payload.extras);
|
|
964
|
+
else {
|
|
965
|
+
if (action.payload.commands.toLowerCase().startsWith('http'))
|
|
966
|
+
window.open(action.payload.commands, '_blank');
|
|
967
|
+
else
|
|
968
|
+
this.router.navigate([action.payload.commands], action.payload.extras);
|
|
969
|
+
}
|
|
970
|
+
return of();
|
|
971
|
+
})), { dispatch: false });
|
|
972
|
+
}
|
|
973
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPCommonEffects, deps: [{ token: i1$1.Actions }, { token: i2$1.Router }, { token: AXPSettingsService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
974
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPCommonEffects }); }
|
|
975
|
+
}
|
|
976
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPCommonEffects, decorators: [{
|
|
977
|
+
type: Injectable
|
|
978
|
+
}], ctorParameters: () => [{ type: i1$1.Actions }, { type: i2$1.Router }, { type: AXPSettingsService }] });
|
|
979
|
+
|
|
980
|
+
const AXPMenuService = signalStore({ providedIn: 'root' },
|
|
981
|
+
// Initial State
|
|
982
|
+
withState((router = inject(Router)) => {
|
|
983
|
+
return {
|
|
984
|
+
items: [],
|
|
985
|
+
selectedMenuItem: null,
|
|
986
|
+
};
|
|
987
|
+
}),
|
|
988
|
+
// Methods for State Management
|
|
989
|
+
withMethods((store, router = inject(Router), globalStore = inject((Store))) => {
|
|
990
|
+
return {
|
|
991
|
+
setMenuItems(items) {
|
|
992
|
+
patchState(store, { items: items });
|
|
993
|
+
},
|
|
994
|
+
selectMenuItemByRoute(path) {
|
|
995
|
+
const findItem = (items) => {
|
|
996
|
+
for (const item of items) {
|
|
997
|
+
if (item.children) {
|
|
998
|
+
const foundChild = findItem(item.children);
|
|
999
|
+
if (foundChild) {
|
|
1000
|
+
return foundChild;
|
|
1001
|
+
}
|
|
1002
|
+
}
|
|
1003
|
+
else if (item.path === path) {
|
|
1004
|
+
return item;
|
|
1005
|
+
}
|
|
1006
|
+
}
|
|
1007
|
+
return null;
|
|
1008
|
+
};
|
|
1009
|
+
const items = store.items();
|
|
1010
|
+
const selectedItem = findItem(items);
|
|
1011
|
+
patchState(store, { selectedMenuItem: selectedItem });
|
|
1012
|
+
},
|
|
1013
|
+
executeCommand(item) {
|
|
1014
|
+
if (item.command) {
|
|
1015
|
+
globalStore.dispatch(item.command);
|
|
1016
|
+
}
|
|
1017
|
+
else if (item.path) {
|
|
1018
|
+
globalStore.dispatch(AXPNavigateAction({ payload: { commands: item.path } }));
|
|
1019
|
+
}
|
|
1020
|
+
patchState(store, { selectedMenuItem: item });
|
|
1021
|
+
},
|
|
1022
|
+
isItemOpen(item) {
|
|
1023
|
+
const selectedItem = store.selectedMenuItem();
|
|
1024
|
+
if (!selectedItem) {
|
|
1025
|
+
return false;
|
|
1026
|
+
}
|
|
1027
|
+
const findParent = (currentItem, targetItem) => {
|
|
1028
|
+
if (currentItem.children?.includes(targetItem)) {
|
|
1029
|
+
return true;
|
|
1030
|
+
}
|
|
1031
|
+
return currentItem.children?.some(child => findParent(child, targetItem)) ?? false;
|
|
1032
|
+
};
|
|
1033
|
+
return item === selectedItem || findParent(item, selectedItem);
|
|
1034
|
+
}
|
|
1035
|
+
};
|
|
1036
|
+
}), withHooks((store, menuProviderService = inject(AXPMenuProviderService)) => ({
|
|
1037
|
+
onInit() {
|
|
1038
|
+
(async () => {
|
|
1039
|
+
const items = await menuProviderService.items();
|
|
1040
|
+
patchState(store, { items: items });
|
|
1041
|
+
})();
|
|
1042
|
+
},
|
|
1043
|
+
onDestroy() {
|
|
1044
|
+
},
|
|
1045
|
+
})));
|
|
1046
|
+
|
|
1047
|
+
class AXPFooterTextSlotComponent {
|
|
1048
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPFooterTextSlotComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1049
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXPFooterTextSlotComponent, isStandalone: true, selector: "ng-component", inputs: { text: "text" }, ngImport: i0, template: `
|
|
1050
|
+
<small class="ax-text-sm ax-text-neutral-400" [innerHTML]="text"></small>
|
|
1051
|
+
`, isInline: true }); }
|
|
1052
|
+
}
|
|
1053
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPFooterTextSlotComponent, decorators: [{
|
|
1054
|
+
type: Component,
|
|
1055
|
+
args: [{
|
|
1056
|
+
template: `
|
|
1057
|
+
<small class="ax-text-sm ax-text-neutral-400" [innerHTML]="text"></small>
|
|
1058
|
+
`,
|
|
1059
|
+
standalone: true
|
|
1060
|
+
}]
|
|
1061
|
+
}], propDecorators: { text: [{
|
|
1062
|
+
type: Input
|
|
1063
|
+
}] } });
|
|
1064
|
+
|
|
1065
|
+
class AXPNavBarSlotComponent {
|
|
686
1066
|
constructor() {
|
|
687
1067
|
this.store = inject(Store);
|
|
688
1068
|
}
|
|
@@ -695,7 +1075,7 @@ class AXPNavBarSlotComponent {
|
|
|
695
1075
|
<div class="ax-flex ax-items-center ax-justify-between ax-gap-5">
|
|
696
1076
|
<a *ngFor="let link of items" (click)="handleCommand(link.command)" >{{ link.text }}</a>
|
|
697
1077
|
</div>
|
|
698
|
-
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1
|
|
1078
|
+
`, isInline: true, dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }], encapsulation: i0.ViewEncapsulation.None }); }
|
|
699
1079
|
}
|
|
700
1080
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPNavBarSlotComponent, decorators: [{
|
|
701
1081
|
type: Component,
|
|
@@ -756,42 +1136,47 @@ const AXPLayoutFeature = createFeature({
|
|
|
756
1136
|
// close drawers on navigatin
|
|
757
1137
|
on(AXPNavigateAction, (state, action) => ({
|
|
758
1138
|
...state,
|
|
759
|
-
drawer: {
|
|
1139
|
+
drawer: {
|
|
1140
|
+
...state.drawer,
|
|
1141
|
+
root: platform.is('SM') ? false : state.drawer.root,
|
|
1142
|
+
child: platform.is('SM') ? false : state.drawer.child,
|
|
1143
|
+
},
|
|
760
1144
|
})),
|
|
761
|
-
// toggle root drawers
|
|
1145
|
+
// toggle root drawers
|
|
762
1146
|
on(AXPLayoutRootDrawerToggle, (state, action) => ({
|
|
763
1147
|
...state,
|
|
764
|
-
drawer: {
|
|
1148
|
+
drawer: {
|
|
1149
|
+
...state.drawer,
|
|
1150
|
+
root: !state.drawer.root,
|
|
1151
|
+
child: !state.drawer.root && platform.is('SM') ? false : state.drawer.child,
|
|
1152
|
+
},
|
|
765
1153
|
})),
|
|
766
|
-
// close root drawers
|
|
1154
|
+
// close root drawers
|
|
767
1155
|
on(AXPLayoutRootDrawerClose, (state) => ({
|
|
768
1156
|
...state,
|
|
769
1157
|
drawer: { ...state.drawer, root: false },
|
|
770
1158
|
})),
|
|
771
|
-
// toggle second level child drawers
|
|
1159
|
+
// toggle second level child drawers
|
|
772
1160
|
on(AXPLayoutChildDrawerToggle, (state) => ({
|
|
773
1161
|
...state,
|
|
774
1162
|
drawer: { ...state.drawer, child: !state.drawer.child },
|
|
775
1163
|
})),
|
|
776
|
-
// close second level child drawers
|
|
1164
|
+
// close second level child drawers
|
|
777
1165
|
on(AXPLayoutChildDrawerClose, (state) => ({
|
|
778
1166
|
...state,
|
|
779
1167
|
drawer: { ...state.drawer, child: false },
|
|
780
1168
|
})),
|
|
781
|
-
// close drawers on window resize event
|
|
1169
|
+
// close drawers on window resize event
|
|
782
1170
|
on(AXPWindowResizeAction, (state) => ({
|
|
783
1171
|
...state,
|
|
784
1172
|
screen: { small: platform.is('SM') || platform.is('MD') },
|
|
785
1173
|
drawer: {
|
|
786
1174
|
...state.drawer,
|
|
787
1175
|
root: platform.is('SM') || platform.is('MD') ? false : state.drawer.root,
|
|
788
|
-
child: platform.is('SM') || platform.is('MD') ? false : state.drawer.child
|
|
1176
|
+
child: platform.is('SM') || platform.is('MD') ? false : state.drawer.child,
|
|
789
1177
|
},
|
|
790
|
-
})), on(AXPLoadSettingSuccessAction, (state, action) => ({
|
|
791
|
-
...state,
|
|
792
|
-
theme: action.data?.find(c => c.key == "theme")?.value,
|
|
793
1178
|
})),
|
|
794
|
-
// Admin Root layout loading
|
|
1179
|
+
// Admin Root layout loading
|
|
795
1180
|
on(AXPLoadingShowAction, (state) => ({
|
|
796
1181
|
...state,
|
|
797
1182
|
loading: true,
|
|
@@ -800,7 +1185,7 @@ const AXPLayoutFeature = createFeature({
|
|
|
800
1185
|
loading: false,
|
|
801
1186
|
}))),
|
|
802
1187
|
});
|
|
803
|
-
const { name, reducer, selectLayoutState
|
|
1188
|
+
const { name, reducer, selectLayoutState } = AXPLayoutFeature;
|
|
804
1189
|
|
|
805
1190
|
const getRootDrawer = () => createSelector(selectLayoutState, (value) => value.drawer.root);
|
|
806
1191
|
const getChildDrawer = () => createSelector(selectLayoutState, (value) => value.drawer.child);
|
|
@@ -835,10 +1220,11 @@ class AXPDialogConfirmAction extends AXPWorkflowAction {
|
|
|
835
1220
|
constructor() {
|
|
836
1221
|
super(...arguments);
|
|
837
1222
|
this.dialogService = inject(AXDialogService);
|
|
1223
|
+
this.translationService = inject(AXTranslationService);
|
|
838
1224
|
}
|
|
839
1225
|
async execute(context) {
|
|
840
1226
|
context.setOutput('result', false);
|
|
841
|
-
const dialogResult = await this.dialogService.confirm(this.title, this.message, this.type);
|
|
1227
|
+
const dialogResult = await this.dialogService.confirm(await this.translationService.translateAsync(this.title), await this.translationService.translateAsync(this.message), (await this.translationService.translateAsync(this.type)));
|
|
842
1228
|
context.setOutput('result', dialogResult.result);
|
|
843
1229
|
}
|
|
844
1230
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPDialogConfirmAction, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
@@ -851,12 +1237,13 @@ class AXPToastAction extends AXPWorkflowAction {
|
|
|
851
1237
|
constructor() {
|
|
852
1238
|
super(...arguments);
|
|
853
1239
|
this.toastService = inject(AXToastService);
|
|
1240
|
+
this.translationService = inject(AXTranslationService);
|
|
854
1241
|
}
|
|
855
1242
|
async execute(context) {
|
|
856
1243
|
this.toastService.show({
|
|
857
1244
|
color: this.color,
|
|
858
|
-
title: this.title,
|
|
859
|
-
content: this.content,
|
|
1245
|
+
title: await this.translationService.translateAsync(this.title),
|
|
1246
|
+
content: await this.translationService.translateAsync(this.content),
|
|
860
1247
|
closeButton: true,
|
|
861
1248
|
timeOut: 3000,
|
|
862
1249
|
timeOutProgress: true,
|
|
@@ -889,44 +1276,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
889
1276
|
type: Injectable
|
|
890
1277
|
}] });
|
|
891
1278
|
|
|
892
|
-
class AXPAppStartUpService {
|
|
893
|
-
constructor() {
|
|
894
|
-
this.tasks = [];
|
|
895
|
-
}
|
|
896
|
-
registerTask(task) {
|
|
897
|
-
this.tasks.push(task);
|
|
898
|
-
}
|
|
899
|
-
async runAllTasks() {
|
|
900
|
-
for (const task of this.tasks) {
|
|
901
|
-
this.updateStatus(task.statusText);
|
|
902
|
-
await task.run();
|
|
903
|
-
}
|
|
904
|
-
}
|
|
905
|
-
updateStatus(status) {
|
|
906
|
-
const loadingText = document.querySelector('#loadingText');
|
|
907
|
-
if (loadingText) {
|
|
908
|
-
loadingText.innerHTML = status;
|
|
909
|
-
}
|
|
910
|
-
}
|
|
911
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPAppStartUpService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
912
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPAppStartUpService, providedIn: 'root' }); }
|
|
913
|
-
}
|
|
914
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPAppStartUpService, decorators: [{
|
|
915
|
-
type: Injectable,
|
|
916
|
-
args: [{
|
|
917
|
-
providedIn: 'root'
|
|
918
|
-
}]
|
|
919
|
-
}] });
|
|
920
|
-
function initAppFactory(appInitService) {
|
|
921
|
-
return () => appInitService.runAllTasks();
|
|
922
|
-
}
|
|
923
|
-
const AXPAppStartUpProvider = {
|
|
924
|
-
provide: APP_INITIALIZER,
|
|
925
|
-
useFactory: initAppFactory,
|
|
926
|
-
deps: [AXPAppStartUpService],
|
|
927
|
-
multi: true
|
|
928
|
-
};
|
|
929
|
-
|
|
930
1279
|
class AXPCommonModule {
|
|
931
1280
|
static forRoot(configs) {
|
|
932
1281
|
return {
|
|
@@ -963,37 +1312,42 @@ class AXPCommonModule {
|
|
|
963
1312
|
/**
|
|
964
1313
|
* @ignore
|
|
965
1314
|
*/
|
|
966
|
-
constructor(instances, appInitService,
|
|
967
|
-
this.appInitService = appInitService;
|
|
968
|
-
this.store = store;
|
|
969
|
-
this.settingsService = settingsService;
|
|
1315
|
+
constructor(instances, appInitService, settingsService, seederService) {
|
|
970
1316
|
instances.forEach((f) => {
|
|
971
1317
|
f();
|
|
972
1318
|
});
|
|
973
|
-
|
|
1319
|
+
appInitService.registerTask({
|
|
974
1320
|
name: 'Modules',
|
|
975
|
-
statusText:
|
|
1321
|
+
statusText: 'Initializing Modules ...',
|
|
976
1322
|
run: () => new Promise((resolve) => {
|
|
977
1323
|
setTimeout(() => {
|
|
978
1324
|
resolve();
|
|
979
1325
|
}, 250);
|
|
980
|
-
})
|
|
1326
|
+
}),
|
|
981
1327
|
});
|
|
982
1328
|
//
|
|
983
|
-
|
|
1329
|
+
appInitService.registerTask({
|
|
984
1330
|
name: 'Settings',
|
|
985
|
-
statusText:
|
|
1331
|
+
statusText: 'Loading Settings ...',
|
|
986
1332
|
run: () => new Promise((resolve) => {
|
|
987
1333
|
setTimeout(async () => {
|
|
988
1334
|
await settingsService.load();
|
|
989
|
-
store.dispatch(AXPLoadSettingAction());
|
|
990
1335
|
resolve();
|
|
991
1336
|
}, 250);
|
|
992
|
-
})
|
|
1337
|
+
}),
|
|
1338
|
+
});
|
|
1339
|
+
//
|
|
1340
|
+
//
|
|
1341
|
+
appInitService.registerTask({
|
|
1342
|
+
name: 'Seeder',
|
|
1343
|
+
statusText: 'Seed Data ...',
|
|
1344
|
+
run: async () => {
|
|
1345
|
+
await seederService.seed();
|
|
1346
|
+
},
|
|
993
1347
|
});
|
|
994
1348
|
}
|
|
995
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPCommonModule, deps: [{ token: 'AXPCommonModuleFactory' }, { token: AXPAppStartUpService }, { token:
|
|
996
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.0", ngImport: i0, type: AXPCommonModule, imports: [i1.EffectsFeatureModule,
|
|
1349
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPCommonModule, deps: [{ token: 'AXPCommonModuleFactory' }, { token: AXPAppStartUpService }, { token: AXPSettingsService }, { token: AXPDataSeederService }], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1350
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.0", ngImport: i0, type: AXPCommonModule, imports: [i1$1.EffectsFeatureModule, i5$1.StoreFeatureModule, i6.AXPWorkflowModule, AXPopupModule,
|
|
997
1351
|
AXDateTimeModule,
|
|
998
1352
|
AXToastModule], exports: [RouterModule] }); }
|
|
999
1353
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPCommonModule, providers: [
|
|
@@ -1006,9 +1360,9 @@ class AXPCommonModule {
|
|
|
1006
1360
|
StoreModule.forFeature(AXPLayoutFeature),
|
|
1007
1361
|
AXPWorkflowModule.forChild({
|
|
1008
1362
|
actions: {
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1363
|
+
navigate: AXPDialogConfirmAction,
|
|
1364
|
+
'show-prompt-dialog': AXPDialogConfirmAction,
|
|
1365
|
+
'show-toast': AXPToastAction,
|
|
1012
1366
|
},
|
|
1013
1367
|
}),
|
|
1014
1368
|
AXPopupModule,
|
|
@@ -1023,14 +1377,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
1023
1377
|
StoreModule.forFeature(AXPLayoutFeature),
|
|
1024
1378
|
AXPWorkflowModule.forChild({
|
|
1025
1379
|
actions: {
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1380
|
+
navigate: AXPDialogConfirmAction,
|
|
1381
|
+
'show-prompt-dialog': AXPDialogConfirmAction,
|
|
1382
|
+
'show-toast': AXPToastAction,
|
|
1029
1383
|
},
|
|
1030
1384
|
}),
|
|
1031
1385
|
AXPopupModule,
|
|
1032
1386
|
AXDateTimeModule,
|
|
1033
|
-
AXToastModule
|
|
1387
|
+
AXToastModule,
|
|
1034
1388
|
],
|
|
1035
1389
|
exports: [RouterModule],
|
|
1036
1390
|
providers: [
|
|
@@ -1044,7 +1398,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
1044
1398
|
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
1045
1399
|
type: Inject,
|
|
1046
1400
|
args: ['AXPCommonModuleFactory']
|
|
1047
|
-
}] }, { type: AXPAppStartUpService }, { type:
|
|
1401
|
+
}] }, { type: AXPAppStartUpService }, { type: AXPSettingsService }, { type: AXPDataSeederService }] });
|
|
1048
1402
|
|
|
1049
1403
|
const ENVIRONMENT = new InjectionToken('ENVIRONMENT');
|
|
1050
1404
|
const AXP_PLATFORM_CONFIG_TOKEN = new InjectionToken('AXP_PLATFORM_CONFIG_TOKEN', {
|
|
@@ -1072,155 +1426,6 @@ function configPlatform(config = AXPPlatformDefaultConfigs) {
|
|
|
1072
1426
|
|
|
1073
1427
|
const AXP_ROOT_CONFIG_TOKEN = new InjectionToken('AXP_ROOT_CONFIG_TOKEN');
|
|
1074
1428
|
|
|
1075
|
-
class AXPDataProvider {
|
|
1076
|
-
}
|
|
1077
|
-
|
|
1078
|
-
class AXPDexieEntityStorageService extends Dexie {
|
|
1079
|
-
constructor() {
|
|
1080
|
-
super('ACoreXPlatform');
|
|
1081
|
-
this.version(1).stores({
|
|
1082
|
-
'entity-store': '++id, entityName, [entityName+id]'
|
|
1083
|
-
});
|
|
1084
|
-
}
|
|
1085
|
-
get dbName() {
|
|
1086
|
-
return 'ACoreXPlatform';
|
|
1087
|
-
}
|
|
1088
|
-
async initial(entityName, collection) {
|
|
1089
|
-
const exists = await this.table('entity-store').where({ entityName }).count();
|
|
1090
|
-
if (exists === 0) {
|
|
1091
|
-
await this.table('entity-store').bulkAdd(collection.map(item => ({ ...item, entityName })));
|
|
1092
|
-
}
|
|
1093
|
-
}
|
|
1094
|
-
async getOne(entityName, id) {
|
|
1095
|
-
return await this.table('entity-store').where({ entityName, id: id }).first();
|
|
1096
|
-
}
|
|
1097
|
-
async updateOne(entityName, id, keyValue) {
|
|
1098
|
-
await this.table('entity-store').where({ entityName, id: id }).modify(keyValue);
|
|
1099
|
-
}
|
|
1100
|
-
async deleteOne(entityName, id) {
|
|
1101
|
-
await this.table('entity-store').where({ entityName, id: id }).delete();
|
|
1102
|
-
}
|
|
1103
|
-
async insertOne(entityName, entity) {
|
|
1104
|
-
await this.table('entity-store').add({ ...entity, entityName });
|
|
1105
|
-
}
|
|
1106
|
-
async getAll(entityName) {
|
|
1107
|
-
return await this.table('entity-store').where({ entityName }).toArray();
|
|
1108
|
-
}
|
|
1109
|
-
}
|
|
1110
|
-
class AXPDexieTableStorageService extends Dexie {
|
|
1111
|
-
constructor() {
|
|
1112
|
-
super('ACoreXPlatform');
|
|
1113
|
-
this.schemaUpdateLock = Promise.resolve();
|
|
1114
|
-
// Initial empty version
|
|
1115
|
-
//this.version(1).stores({});
|
|
1116
|
-
}
|
|
1117
|
-
// Function to change the schema dynamically
|
|
1118
|
-
async changeSchema(schemaChanges) {
|
|
1119
|
-
// Acquire schema update lock to ensure no other operations are performed while schema is changing
|
|
1120
|
-
this.schemaUpdateLock = this.schemaUpdateLock.then(async () => {
|
|
1121
|
-
console.log('Attempting schema change with:', schemaChanges);
|
|
1122
|
-
try {
|
|
1123
|
-
this.close();
|
|
1124
|
-
const newDb = new Dexie(this.name);
|
|
1125
|
-
// Extract current schema in Dexie format
|
|
1126
|
-
const currentSchema = this.tables.reduce((result, { name, schema }) => {
|
|
1127
|
-
result[name] = [schema.primKey.src, ...schema.indexes.map((idx) => idx.src)].join(',');
|
|
1128
|
-
return result;
|
|
1129
|
-
}, {});
|
|
1130
|
-
console.log('Current Schema:', currentSchema);
|
|
1131
|
-
// Define current schema version
|
|
1132
|
-
debugger;
|
|
1133
|
-
newDb.version(this.verno + 10).stores(currentSchema);
|
|
1134
|
-
// Define new schema version with schema changes
|
|
1135
|
-
const nextVersion = this.verno + 1;
|
|
1136
|
-
newDb.version(nextVersion).stores(schemaChanges);
|
|
1137
|
-
await newDb.open();
|
|
1138
|
-
// Reassign updated db instance
|
|
1139
|
-
Object.assign(this, newDb);
|
|
1140
|
-
console.log(`Schema updated. Current version: ${this.verno}`);
|
|
1141
|
-
}
|
|
1142
|
-
catch (error) {
|
|
1143
|
-
console.error('Error during schema change:', error);
|
|
1144
|
-
throw error;
|
|
1145
|
-
}
|
|
1146
|
-
});
|
|
1147
|
-
// Wait for schema change lock to complete
|
|
1148
|
-
await this.schemaUpdateLock;
|
|
1149
|
-
}
|
|
1150
|
-
async ensureInitialized(entityName) {
|
|
1151
|
-
if (this.tables.findIndex((table) => table.name === entityName) == -1) {
|
|
1152
|
-
const schemaChanges = {};
|
|
1153
|
-
schemaChanges[entityName] = '++id';
|
|
1154
|
-
await this.changeSchema(schemaChanges);
|
|
1155
|
-
}
|
|
1156
|
-
}
|
|
1157
|
-
get dbName() {
|
|
1158
|
-
return 'ACoreXPlatform';
|
|
1159
|
-
}
|
|
1160
|
-
async getTable(entityName) {
|
|
1161
|
-
await this.ensureInitialized(entityName);
|
|
1162
|
-
return this.table(entityName);
|
|
1163
|
-
}
|
|
1164
|
-
async initial(entityName, collection) {
|
|
1165
|
-
const table = await this.getTable(entityName);
|
|
1166
|
-
const exists = await table.count();
|
|
1167
|
-
if (exists === 0) {
|
|
1168
|
-
await table.bulkAdd(collection);
|
|
1169
|
-
}
|
|
1170
|
-
}
|
|
1171
|
-
async getOne(entityName, id) {
|
|
1172
|
-
const table = await this.getTable(entityName);
|
|
1173
|
-
return await table.where({ id: parseInt(id) }).first();
|
|
1174
|
-
}
|
|
1175
|
-
async updateOne(entityName, id, keyValue) {
|
|
1176
|
-
const table = await this.getTable(entityName);
|
|
1177
|
-
await table.update(parseInt(id), keyValue);
|
|
1178
|
-
}
|
|
1179
|
-
async deleteOne(entityName, id) {
|
|
1180
|
-
const table = await this.getTable(entityName);
|
|
1181
|
-
await table.delete(parseInt(id));
|
|
1182
|
-
}
|
|
1183
|
-
async insertOne(entityName, entity) {
|
|
1184
|
-
const table = await this.getTable(entityName);
|
|
1185
|
-
await table.add(entity);
|
|
1186
|
-
}
|
|
1187
|
-
async getAll(entityName) {
|
|
1188
|
-
const table = await this.getTable(entityName);
|
|
1189
|
-
return await table.toArray();
|
|
1190
|
-
}
|
|
1191
|
-
}
|
|
1192
|
-
|
|
1193
|
-
// src/lib/axp-entity-data-provider.ts
|
|
1194
|
-
class AXPEntityDataProviderImpl {
|
|
1195
|
-
constructor(storageService, entityName) {
|
|
1196
|
-
this.storageService = storageService;
|
|
1197
|
-
this.entityName = entityName;
|
|
1198
|
-
}
|
|
1199
|
-
async initial(collection) {
|
|
1200
|
-
await this.storageService.initial(this.entityName, collection);
|
|
1201
|
-
}
|
|
1202
|
-
getOne(id) {
|
|
1203
|
-
return this.storageService.getOne(this.entityName, id);
|
|
1204
|
-
}
|
|
1205
|
-
getAll() {
|
|
1206
|
-
return this.storageService.getAll(this.entityName);
|
|
1207
|
-
}
|
|
1208
|
-
updateOne(id, keyValue) {
|
|
1209
|
-
return this.storageService.updateOne(this.entityName, id, keyValue);
|
|
1210
|
-
}
|
|
1211
|
-
deleteOne(id) {
|
|
1212
|
-
return this.storageService.deleteOne(this.entityName, id);
|
|
1213
|
-
}
|
|
1214
|
-
insertOne(entity) {
|
|
1215
|
-
return this.storageService.insertOne(this.entityName, entity);
|
|
1216
|
-
}
|
|
1217
|
-
}
|
|
1218
|
-
|
|
1219
|
-
class AXPEntityStorageService {
|
|
1220
|
-
}
|
|
1221
|
-
class AXPEntityDataProvider {
|
|
1222
|
-
}
|
|
1223
|
-
|
|
1224
1429
|
class AXPSchemaRegistryService {
|
|
1225
1430
|
constructor() {
|
|
1226
1431
|
this.types = new Map();
|
|
@@ -1319,7 +1524,7 @@ class AXPWidgetColumnRendererComponent extends AXDataTableColumnComponent {
|
|
|
1319
1524
|
}
|
|
1320
1525
|
</ng-template>
|
|
1321
1526
|
<ng-template #footer></ng-template>
|
|
1322
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: i1
|
|
1527
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgComponentOutlet, selector: "[ngComponentOutlet]", inputs: ["ngComponentOutlet", "ngComponentOutletInputs", "ngComponentOutletInjector", "ngComponentOutletContent", "ngComponentOutletNgModule", "ngComponentOutletNgModuleFactory"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1323
1528
|
}
|
|
1324
1529
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPWidgetColumnRendererComponent, decorators: [{
|
|
1325
1530
|
type: Component,
|
|
@@ -1458,7 +1663,7 @@ class AXPWidgetFilterRendererComponent {
|
|
|
1458
1663
|
} @else {
|
|
1459
1664
|
<ng-template [cdkPortalOutlet]="portal" (attached)="handleAttached($event)"></ng-template>
|
|
1460
1665
|
}
|
|
1461
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: i1$2.CdkPortalOutlet, selector: "[cdkPortalOutlet]", inputs: ["cdkPortalOutlet"], outputs: ["attached"], exportAs: ["cdkPortalOutlet"] }, { kind: "component", type: i2$
|
|
1666
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: i1$2.CdkPortalOutlet, selector: "[cdkPortalOutlet]", inputs: ["cdkPortalOutlet"], outputs: ["attached"], exportAs: ["cdkPortalOutlet"] }, { kind: "component", type: i2$2.AXSkeletonComponent, selector: "ax-skeleton", inputs: ["animated"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1462
1667
|
}
|
|
1463
1668
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPWidgetFilterRendererComponent, decorators: [{
|
|
1464
1669
|
type: Component,
|
|
@@ -1703,7 +1908,7 @@ class AXPWidgetRendererComponent {
|
|
|
1703
1908
|
} @else {
|
|
1704
1909
|
<ng-template [cdkPortalOutlet]="portal" (attached)="handleAttached($event)"></ng-template>
|
|
1705
1910
|
}
|
|
1706
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: i1$2.CdkPortalOutlet, selector: "[cdkPortalOutlet]", inputs: ["cdkPortalOutlet"], outputs: ["attached"], exportAs: ["cdkPortalOutlet"] }, { kind: "component", type: i2$
|
|
1911
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: i1$2.CdkPortalOutlet, selector: "[cdkPortalOutlet]", inputs: ["cdkPortalOutlet"], outputs: ["attached"], exportAs: ["cdkPortalOutlet"] }, { kind: "component", type: i2$2.AXSkeletonComponent, selector: "ax-skeleton", inputs: ["animated"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1707
1912
|
}
|
|
1708
1913
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPWidgetRendererComponent, decorators: [{
|
|
1709
1914
|
type: Component,
|
|
@@ -1983,16 +2188,16 @@ class AXPCommonWidgetModule {
|
|
|
1983
2188
|
service.register({
|
|
1984
2189
|
component: {
|
|
1985
2190
|
view: {
|
|
1986
|
-
component: () => import('./acorex-platform-common-text-widget-view.component-
|
|
2191
|
+
component: () => import('./acorex-platform-common-text-widget-view.component-CGwY9c2O.mjs').then((c) => c.AXPTextWidgetViewComponent),
|
|
1987
2192
|
},
|
|
1988
2193
|
filter: {
|
|
1989
|
-
component: () => import('./acorex-platform-common-string-widget-filter.component-
|
|
2194
|
+
component: () => import('./acorex-platform-common-string-widget-filter.component-BW2ehdOx.mjs').then((c) => c.AXPStringWidgetFilterComponent),
|
|
1990
2195
|
},
|
|
1991
2196
|
edit: {
|
|
1992
|
-
component: () => import('./acorex-platform-common-text-widget-edit.component-
|
|
2197
|
+
component: () => import('./acorex-platform-common-text-widget-edit.component-Cb1k59hs.mjs').then((c) => c.AXPTextWidgetEditComponent),
|
|
1993
2198
|
},
|
|
1994
2199
|
column: {
|
|
1995
|
-
component: () => import('./acorex-platform-common-text-widget-column.component-
|
|
2200
|
+
component: () => import('./acorex-platform-common-text-widget-column.component-bhx0QWAX.mjs').then((c) => c.AXPTextWidgetColumnComponent),
|
|
1996
2201
|
options: { allowResizing: true },
|
|
1997
2202
|
},
|
|
1998
2203
|
},
|
|
@@ -2007,7 +2212,7 @@ class AXPCommonWidgetModule {
|
|
|
2007
2212
|
name: widgetSchemas.largetext,
|
|
2008
2213
|
component: {
|
|
2009
2214
|
edit: {
|
|
2010
|
-
component: () => import('./acorex-platform-common-largetext-widget-edit.component-
|
|
2215
|
+
component: () => import('./acorex-platform-common-largetext-widget-edit.component-DA6r3rVA.mjs').then((c) => c.AXPLargeTextWidgetEditComponent),
|
|
2011
2216
|
},
|
|
2012
2217
|
column: {
|
|
2013
2218
|
options: {
|
|
@@ -2020,16 +2225,16 @@ class AXPCommonWidgetModule {
|
|
|
2020
2225
|
service.register({
|
|
2021
2226
|
component: {
|
|
2022
2227
|
view: {
|
|
2023
|
-
component: () => import('./acorex-platform-common-number-widget-view.component-
|
|
2228
|
+
component: () => import('./acorex-platform-common-number-widget-view.component-bqylVHOz.mjs').then((c) => c.AXPNumberWidgetViewComponent),
|
|
2024
2229
|
},
|
|
2025
2230
|
filter: {
|
|
2026
|
-
component: () => import('./acorex-platform-common-number-widget-filter.component-
|
|
2231
|
+
component: () => import('./acorex-platform-common-number-widget-filter.component-BmmgPy1w.mjs').then((c) => c.AXPNumberWidgetFilterComponent),
|
|
2027
2232
|
},
|
|
2028
2233
|
edit: {
|
|
2029
|
-
component: () => import('./acorex-platform-common-number-widget-edit.component-
|
|
2234
|
+
component: () => import('./acorex-platform-common-number-widget-edit.component-B1YGwr60.mjs').then((c) => c.AXPNumberWidgetEditComponent),
|
|
2030
2235
|
},
|
|
2031
2236
|
column: {
|
|
2032
|
-
component: () => import('./acorex-platform-common-number-widget-view.component-
|
|
2237
|
+
component: () => import('./acorex-platform-common-number-widget-view.component-bqylVHOz.mjs').then((c) => c.AXPNumberWidgetViewComponent),
|
|
2033
2238
|
options: { allowResizing: true },
|
|
2034
2239
|
},
|
|
2035
2240
|
},
|
|
@@ -2057,17 +2262,17 @@ class AXPCommonWidgetModule {
|
|
|
2057
2262
|
service.register({
|
|
2058
2263
|
component: {
|
|
2059
2264
|
view: {
|
|
2060
|
-
component: () => import('./acorex-platform-common-phone-widget-view.component-
|
|
2265
|
+
component: () => import('./acorex-platform-common-phone-widget-view.component-DW4AHCE6.mjs').then((c) => c.AXPPhoneWidgetViewComponent),
|
|
2061
2266
|
},
|
|
2062
2267
|
column: {
|
|
2063
|
-
component: () => import('./acorex-platform-common-phone-widget-column.component-
|
|
2268
|
+
component: () => import('./acorex-platform-common-phone-widget-column.component-DOfzGKBi.mjs').then((c) => c.AXPPhoneWidgetColumnComponent),
|
|
2064
2269
|
options: { allowResizing: true },
|
|
2065
2270
|
},
|
|
2066
2271
|
edit: {
|
|
2067
|
-
component: () => import('./acorex-platform-common-phone-widget-edit.component-
|
|
2272
|
+
component: () => import('./acorex-platform-common-phone-widget-edit.component-BJ-iEyLP.mjs').then((c) => c.AXPPhoneWidgetEditComponent),
|
|
2068
2273
|
},
|
|
2069
2274
|
filter: {
|
|
2070
|
-
component: () => import('./acorex-platform-common-string-widget-filter.component-
|
|
2275
|
+
component: () => import('./acorex-platform-common-string-widget-filter.component-BW2ehdOx.mjs').then((c) => c.AXPStringWidgetFilterComponent),
|
|
2071
2276
|
},
|
|
2072
2277
|
},
|
|
2073
2278
|
name: widgetSchemas.phone,
|
|
@@ -2081,16 +2286,16 @@ class AXPCommonWidgetModule {
|
|
|
2081
2286
|
service.register({
|
|
2082
2287
|
component: {
|
|
2083
2288
|
view: {
|
|
2084
|
-
component: () => import('./acorex-platform-common-email-widget-view.component-
|
|
2289
|
+
component: () => import('./acorex-platform-common-email-widget-view.component-DbhRWpB1.mjs').then((c) => c.AXPEmailWidgetViewComponent),
|
|
2085
2290
|
},
|
|
2086
2291
|
edit: {
|
|
2087
|
-
component: () => import('./acorex-platform-common-email-widget-edit.component-
|
|
2292
|
+
component: () => import('./acorex-platform-common-email-widget-edit.component-BT2rJjaW.mjs').then((c) => c.AXPEmailWidgetEditComponent),
|
|
2088
2293
|
},
|
|
2089
2294
|
filter: {
|
|
2090
|
-
component: () => import('./acorex-platform-common-string-widget-filter.component-
|
|
2295
|
+
component: () => import('./acorex-platform-common-string-widget-filter.component-BW2ehdOx.mjs').then((c) => c.AXPStringWidgetFilterComponent),
|
|
2091
2296
|
},
|
|
2092
2297
|
column: {
|
|
2093
|
-
component: () => import('./acorex-platform-common-email-widget-column.component-
|
|
2298
|
+
component: () => import('./acorex-platform-common-email-widget-column.component-CDKqwlPD.mjs').then((c) => c.AXPEmailWidgetColumnComponent),
|
|
2094
2299
|
options: { allowResizing: true },
|
|
2095
2300
|
},
|
|
2096
2301
|
},
|
|
@@ -2105,16 +2310,16 @@ class AXPCommonWidgetModule {
|
|
|
2105
2310
|
service.register({
|
|
2106
2311
|
component: {
|
|
2107
2312
|
view: {
|
|
2108
|
-
component: () => import('./acorex-platform-common-dateTime-widget-view.component-
|
|
2313
|
+
component: () => import('./acorex-platform-common-dateTime-widget-view.component-BKdqOPkb.mjs').then((c) => c.AXPDateTimeWidgetViewComponent),
|
|
2109
2314
|
},
|
|
2110
2315
|
edit: {
|
|
2111
|
-
component: () => import('./acorex-platform-common-dateTime-widget-edit.component-
|
|
2316
|
+
component: () => import('./acorex-platform-common-dateTime-widget-edit.component-B4AelVJp.mjs').then((c) => c.AXPDateTimeWidgetEditComponent),
|
|
2112
2317
|
},
|
|
2113
2318
|
filter: {
|
|
2114
|
-
component: () => import('./acorex-platform-common-dateTime-widget-filter.component-
|
|
2319
|
+
component: () => import('./acorex-platform-common-dateTime-widget-filter.component-Ytm-TwOP.mjs').then((c) => c.AXPDateTimeWidgetFilterComponent),
|
|
2115
2320
|
},
|
|
2116
2321
|
column: {
|
|
2117
|
-
component: () => import('./acorex-platform-common-dateTime-widget-column.component-
|
|
2322
|
+
component: () => import('./acorex-platform-common-dateTime-widget-column.component-Dd7fgwu3.mjs').then((c) => c.AXPDateTimeWidgetColumnComponent),
|
|
2118
2323
|
options: {
|
|
2119
2324
|
width: '200px',
|
|
2120
2325
|
allowResizing: true,
|
|
@@ -2161,16 +2366,16 @@ class AXPCommonWidgetModule {
|
|
|
2161
2366
|
service.register({
|
|
2162
2367
|
component: {
|
|
2163
2368
|
view: {
|
|
2164
|
-
component: () => import('./acorex-platform-common-toggle-widget-view.component-
|
|
2369
|
+
component: () => import('./acorex-platform-common-toggle-widget-view.component-9tquFHhE.mjs').then((c) => c.AXPToggleWidgetViewComponent),
|
|
2165
2370
|
},
|
|
2166
2371
|
edit: {
|
|
2167
|
-
component: () => import('./acorex-platform-common-toggle-widget-edit.component-
|
|
2372
|
+
component: () => import('./acorex-platform-common-toggle-widget-edit.component-CT2fRAKm.mjs').then((c) => c.AXPToggleWidgetEditComponent),
|
|
2168
2373
|
},
|
|
2169
2374
|
filter: {
|
|
2170
|
-
component: () => import('./acorex-platform-common-boolean-widget-filter.component-
|
|
2375
|
+
component: () => import('./acorex-platform-common-boolean-widget-filter.component-DY4oTjC-.mjs').then((c) => c.AXPBooleanWidgetFilterComponent),
|
|
2171
2376
|
},
|
|
2172
2377
|
column: {
|
|
2173
|
-
component: () => import('./acorex-platform-common-toggle-widget-column.component-
|
|
2378
|
+
component: () => import('./acorex-platform-common-toggle-widget-column.component-BxAwa7jw.mjs').then((c) => c.AXPToggleWidgetColumnComponent),
|
|
2174
2379
|
options: {
|
|
2175
2380
|
width: '100px',
|
|
2176
2381
|
allowResizing: true
|
|
@@ -2188,16 +2393,16 @@ class AXPCommonWidgetModule {
|
|
|
2188
2393
|
service.register({
|
|
2189
2394
|
component: {
|
|
2190
2395
|
view: {
|
|
2191
|
-
component: () => import('./acorex-platform-common-checkbox-widget-view.component-
|
|
2396
|
+
component: () => import('./acorex-platform-common-checkbox-widget-view.component-2Du2IzDS.mjs').then((c) => c.AXPCheckboxWidgetViewComponent),
|
|
2192
2397
|
},
|
|
2193
2398
|
edit: {
|
|
2194
|
-
component: () => import('./acorex-platform-common-checkbox-widget-edit.component-
|
|
2399
|
+
component: () => import('./acorex-platform-common-checkbox-widget-edit.component-BU7qV5Cm.mjs').then((c) => c.AXPCheckboxWidgetEditComponent),
|
|
2195
2400
|
},
|
|
2196
2401
|
filter: {
|
|
2197
|
-
component: () => import('./acorex-platform-common-boolean-widget-filter.component-
|
|
2402
|
+
component: () => import('./acorex-platform-common-boolean-widget-filter.component-DY4oTjC-.mjs').then((c) => c.AXPBooleanWidgetFilterComponent),
|
|
2198
2403
|
},
|
|
2199
2404
|
column: {
|
|
2200
|
-
component: () => import('./acorex-platform-common-checkbox-widget-column.component-
|
|
2405
|
+
component: () => import('./acorex-platform-common-checkbox-widget-column.component-NSXcrUwU.mjs').then((c) => c.AXPCheckboxWidgetColumnComponent),
|
|
2201
2406
|
options: {
|
|
2202
2407
|
width: '100px',
|
|
2203
2408
|
allowResizing: true
|
|
@@ -2215,16 +2420,16 @@ class AXPCommonWidgetModule {
|
|
|
2215
2420
|
service.register({
|
|
2216
2421
|
component: {
|
|
2217
2422
|
view: {
|
|
2218
|
-
component: () => import('./acorex-platform-common-password-widget-view.component-
|
|
2423
|
+
component: () => import('./acorex-platform-common-password-widget-view.component-BeSk1OgU.mjs').then((c) => c.AXPPasswordWidgetViewComponent),
|
|
2219
2424
|
},
|
|
2220
2425
|
column: {
|
|
2221
|
-
component: () => import('./acorex-platform-common-password-widget-column.component-
|
|
2426
|
+
component: () => import('./acorex-platform-common-password-widget-column.component-DVdZh7s4.mjs').then((c) => c.AXPPasswordWidgetColumnComponent),
|
|
2222
2427
|
options: {
|
|
2223
2428
|
allowResizing: true
|
|
2224
2429
|
}
|
|
2225
2430
|
},
|
|
2226
2431
|
edit: {
|
|
2227
|
-
component: () => import('./acorex-platform-common-password-widget-edit.component-
|
|
2432
|
+
component: () => import('./acorex-platform-common-password-widget-edit.component-OjHwMT5d.mjs').then((c) => c.AXPPasswordWidgetEditComponent),
|
|
2228
2433
|
},
|
|
2229
2434
|
},
|
|
2230
2435
|
filterOptions: {
|
|
@@ -2238,19 +2443,19 @@ class AXPCommonWidgetModule {
|
|
|
2238
2443
|
service.register({
|
|
2239
2444
|
component: {
|
|
2240
2445
|
view: {
|
|
2241
|
-
component: () => import('./acorex-platform-common-file-widget-view.component-
|
|
2446
|
+
component: () => import('./acorex-platform-common-file-widget-view.component-BcrM4XrO.mjs').then((c) => c.AXPFileWidgetViewComponent),
|
|
2242
2447
|
},
|
|
2243
2448
|
column: {
|
|
2244
|
-
component: () => import('./acorex-platform-common-file-widget-column.component-
|
|
2449
|
+
component: () => import('./acorex-platform-common-file-widget-column.component-8U76QgEQ.mjs').then((c) => c.AXPFileWidgetColumnComponent),
|
|
2245
2450
|
options: {
|
|
2246
2451
|
allowResizing: true
|
|
2247
2452
|
}
|
|
2248
2453
|
},
|
|
2249
2454
|
edit: {
|
|
2250
|
-
component: () => import('./acorex-platform-common-file-widget-edit.component-
|
|
2455
|
+
component: () => import('./acorex-platform-common-file-widget-edit.component-OFmiYz_5.mjs').then((c) => c.AXPFileWidgetEditComponent),
|
|
2251
2456
|
},
|
|
2252
2457
|
filter: {
|
|
2253
|
-
component: () => import('./acorex-platform-common-file-widget-filter.component-
|
|
2458
|
+
component: () => import('./acorex-platform-common-file-widget-filter.component-ZLnpXMXK.mjs').then((c) => c.AXPFileWidgetFilterComponent),
|
|
2254
2459
|
},
|
|
2255
2460
|
},
|
|
2256
2461
|
filterOptions: {
|
|
@@ -2264,16 +2469,16 @@ class AXPCommonWidgetModule {
|
|
|
2264
2469
|
service.register({
|
|
2265
2470
|
component: {
|
|
2266
2471
|
view: {
|
|
2267
|
-
component: () => import('./acorex-platform-common-lookup-widget-view.component-
|
|
2472
|
+
component: () => import('./acorex-platform-common-lookup-widget-view.component-CghJK1C4.mjs').then((c) => c.AXPLookupWidgetViewComponent),
|
|
2268
2473
|
},
|
|
2269
2474
|
edit: {
|
|
2270
|
-
component: () => import('./acorex-platform-common-lookup-widget-edit.component-
|
|
2475
|
+
component: () => import('./acorex-platform-common-lookup-widget-edit.component-CUtGoAGX.mjs').then((c) => c.AXPLookupWidgetEditComponent),
|
|
2271
2476
|
},
|
|
2272
2477
|
filter: {
|
|
2273
|
-
component: () => import('./acorex-platform-common-lookup-widget-filter.component-
|
|
2478
|
+
component: () => import('./acorex-platform-common-lookup-widget-filter.component-DJZqB3vj.mjs').then((c) => c.AXPLookupWidgetFilterComponent),
|
|
2274
2479
|
},
|
|
2275
2480
|
column: {
|
|
2276
|
-
component: () => import('./acorex-platform-common-lookup-widget-column.component-
|
|
2481
|
+
component: () => import('./acorex-platform-common-lookup-widget-column.component-Cxv1yZvE.mjs').then((c) => c.AXPLookupWidgetColumnComponent),
|
|
2277
2482
|
options: {
|
|
2278
2483
|
allowResizing: true
|
|
2279
2484
|
}
|
|
@@ -2290,19 +2495,19 @@ class AXPCommonWidgetModule {
|
|
|
2290
2495
|
service.register({
|
|
2291
2496
|
component: {
|
|
2292
2497
|
view: {
|
|
2293
|
-
component: () => import('./acorex-platform-common-selection-list-widget-view.component-
|
|
2498
|
+
component: () => import('./acorex-platform-common-selection-list-widget-view.component-C65lbpo_.mjs').then((c) => c.AXPSelectionListWidgetViewComponent),
|
|
2294
2499
|
},
|
|
2295
2500
|
edit: {
|
|
2296
|
-
component: () => import('./acorex-platform-common-selection-list-widget-edit.component-
|
|
2501
|
+
component: () => import('./acorex-platform-common-selection-list-widget-edit.component-ocEwyUP7.mjs').then((c) => c.AXPSelectionListWidgetEditComponent),
|
|
2297
2502
|
},
|
|
2298
2503
|
column: {
|
|
2299
|
-
component: () => import('./acorex-platform-common-selection-list-widget-column.component-
|
|
2504
|
+
component: () => import('./acorex-platform-common-selection-list-widget-column.component-D9lsVFgo.mjs').then((c) => c.AXPSelectionListWidgetColumnComponent),
|
|
2300
2505
|
options: {
|
|
2301
2506
|
allowResizing: true
|
|
2302
2507
|
}
|
|
2303
2508
|
},
|
|
2304
2509
|
filter: {
|
|
2305
|
-
component: () => import('./acorex-platform-common-selection-list-widget-filter.component-
|
|
2510
|
+
component: () => import('./acorex-platform-common-selection-list-widget-filter.component-CS0f_jCx.mjs').then((c) => c.AXPSelectionListWidgetFilterComponent),
|
|
2306
2511
|
},
|
|
2307
2512
|
},
|
|
2308
2513
|
filterOptions: {
|
|
@@ -2316,22 +2521,22 @@ class AXPCommonWidgetModule {
|
|
|
2316
2521
|
service.register({
|
|
2317
2522
|
component: {
|
|
2318
2523
|
view: {
|
|
2319
|
-
component: () => import('./acorex-platform-common-rich-text-widget-view.component-
|
|
2524
|
+
component: () => import('./acorex-platform-common-rich-text-widget-view.component-CiViWpBX.mjs').then((c) => c.AXPRichTextWidgetViewComponent),
|
|
2320
2525
|
},
|
|
2321
2526
|
edit: {
|
|
2322
|
-
component: () => import('./acorex-platform-common-rich-text-widget-edit.component-
|
|
2527
|
+
component: () => import('./acorex-platform-common-rich-text-widget-edit.component-BJveJgHZ.mjs').then((c) => c.AXPRichTextWidgetEditComponent),
|
|
2323
2528
|
options: {
|
|
2324
2529
|
allowResizing: true
|
|
2325
2530
|
}
|
|
2326
2531
|
},
|
|
2327
2532
|
column: {
|
|
2328
|
-
component: () => import('./acorex-platform-common-rich-text-widget-column.component-
|
|
2533
|
+
component: () => import('./acorex-platform-common-rich-text-widget-column.component-2zZBG6Ze.mjs').then((c) => c.AXPRichTextWidgetColumnComponent),
|
|
2329
2534
|
options: {
|
|
2330
2535
|
width: '400px',
|
|
2331
2536
|
},
|
|
2332
2537
|
},
|
|
2333
2538
|
filter: {
|
|
2334
|
-
component: () => import('./acorex-platform-common-string-widget-filter.component-
|
|
2539
|
+
component: () => import('./acorex-platform-common-string-widget-filter.component-BW2ehdOx.mjs').then((c) => c.AXPStringWidgetFilterComponent),
|
|
2335
2540
|
},
|
|
2336
2541
|
},
|
|
2337
2542
|
filterOptions: {
|
|
@@ -2345,10 +2550,10 @@ class AXPCommonWidgetModule {
|
|
|
2345
2550
|
service.register({
|
|
2346
2551
|
component: {
|
|
2347
2552
|
view: {
|
|
2348
|
-
component: () => import('./acorex-platform-common-map-widget-view.component-
|
|
2553
|
+
component: () => import('./acorex-platform-common-map-widget-view.component-BrYwr914.mjs').then((c) => c.AXPMapWidgetViewComponent),
|
|
2349
2554
|
},
|
|
2350
2555
|
edit: {
|
|
2351
|
-
component: () => import('./acorex-platform-common-map-widget-edit.component-
|
|
2556
|
+
component: () => import('./acorex-platform-common-map-widget-edit.component-oSb3kVMc.mjs').then((c) => c.AXPMapWidgetEditComponent),
|
|
2352
2557
|
},
|
|
2353
2558
|
},
|
|
2354
2559
|
filterOptions: {
|
|
@@ -2362,10 +2567,10 @@ class AXPCommonWidgetModule {
|
|
|
2362
2567
|
service.register({
|
|
2363
2568
|
component: {
|
|
2364
2569
|
view: {
|
|
2365
|
-
component: () => import('./acorex-platform-common-avatar-widget-view.component-
|
|
2570
|
+
component: () => import('./acorex-platform-common-avatar-widget-view.component-DRyB3UWf.mjs').then((c) => c.AXPAvatarWidgetViewComponent),
|
|
2366
2571
|
},
|
|
2367
2572
|
edit: {
|
|
2368
|
-
component: () => import('./acorex-platform-common-avatar-widget-edit.component-
|
|
2573
|
+
component: () => import('./acorex-platform-common-avatar-widget-edit.component-WAlG5E_9.mjs').then((c) => c.AXPAvatarWidgetEditComponent),
|
|
2369
2574
|
},
|
|
2370
2575
|
},
|
|
2371
2576
|
filterOptions: {
|
|
@@ -2379,13 +2584,13 @@ class AXPCommonWidgetModule {
|
|
|
2379
2584
|
service.register({
|
|
2380
2585
|
component: {
|
|
2381
2586
|
view: {
|
|
2382
|
-
component: () => import('./acorex-platform-common-messenger-widget-view.component-
|
|
2587
|
+
component: () => import('./acorex-platform-common-messenger-widget-view.component-CeuDEI-j.mjs').then((c) => c.AXPMessengerWidgetViewComponent),
|
|
2383
2588
|
},
|
|
2384
2589
|
edit: {
|
|
2385
|
-
component: () => import('./acorex-platform-common-messenger-widget-edit.component-
|
|
2590
|
+
component: () => import('./acorex-platform-common-messenger-widget-edit.component-DpGvbM4a.mjs').then((c) => c.AXPMessengerWidgetEditComponent),
|
|
2386
2591
|
},
|
|
2387
2592
|
column: {
|
|
2388
|
-
component: () => import('./acorex-platform-common-messenger-widget-column.component-
|
|
2593
|
+
component: () => import('./acorex-platform-common-messenger-widget-column.component-DIJAffxy.mjs').then((c) => c.AXPMessengerWidgetColumnComponent),
|
|
2389
2594
|
options: {
|
|
2390
2595
|
allowResizing: true
|
|
2391
2596
|
}
|
|
@@ -2403,13 +2608,13 @@ class AXPCommonWidgetModule {
|
|
|
2403
2608
|
service.register({
|
|
2404
2609
|
component: {
|
|
2405
2610
|
view: {
|
|
2406
|
-
component: () => import('./acorex-platform-common-gallery-widget-view.component-
|
|
2611
|
+
component: () => import('./acorex-platform-common-gallery-widget-view.component-CPS-h3cq.mjs').then((c) => c.AXPGalleryWidgetViewComponent),
|
|
2407
2612
|
},
|
|
2408
2613
|
edit: {
|
|
2409
|
-
component: () => import('./acorex-platform-common-gallery-widget-edit.component-
|
|
2614
|
+
component: () => import('./acorex-platform-common-gallery-widget-edit.component-pBBjrjDP.mjs').then((c) => c.AXPGalleryWidgetEditComponent),
|
|
2410
2615
|
},
|
|
2411
2616
|
filter: {
|
|
2412
|
-
component: () => import('./acorex-platform-common-gallery-widget-filter.component-
|
|
2617
|
+
component: () => import('./acorex-platform-common-gallery-widget-filter.component-Cp7t9ovC.mjs').then((c) => c.AXPGalleryWidgetFilterComponent),
|
|
2413
2618
|
},
|
|
2414
2619
|
},
|
|
2415
2620
|
filterOptions: {
|
|
@@ -2423,10 +2628,10 @@ class AXPCommonWidgetModule {
|
|
|
2423
2628
|
service.register({
|
|
2424
2629
|
component: {
|
|
2425
2630
|
view: {
|
|
2426
|
-
component: () => import('./acorex-platform-common-signature-pad-widget-view.component-
|
|
2631
|
+
component: () => import('./acorex-platform-common-signature-pad-widget-view.component-CDY3JdP-.mjs').then((c) => c.AXPSignaturePadWidgetViewComponent),
|
|
2427
2632
|
},
|
|
2428
2633
|
edit: {
|
|
2429
|
-
component: () => import('./acorex-platform-common-signature-pad-widget-edit.component-
|
|
2634
|
+
component: () => import('./acorex-platform-common-signature-pad-widget-edit.component-DbfQSGxm.mjs').then((c) => c.AXPSignaturePadWidgetEditComponent),
|
|
2430
2635
|
},
|
|
2431
2636
|
},
|
|
2432
2637
|
filterOptions: {
|
|
@@ -2503,7 +2708,7 @@ class AXPRouteUtilityService {
|
|
|
2503
2708
|
clearRouteCache() {
|
|
2504
2709
|
this.routeActiveCache = {};
|
|
2505
2710
|
}
|
|
2506
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPRouteUtilityService, deps: [{ token: i2.Router }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2711
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPRouteUtilityService, deps: [{ token: i2$1.Router }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2507
2712
|
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPRouteUtilityService, providedIn: 'root' }); }
|
|
2508
2713
|
}
|
|
2509
2714
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPRouteUtilityService, decorators: [{
|
|
@@ -2511,7 +2716,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
2511
2716
|
args: [{
|
|
2512
2717
|
providedIn: 'root',
|
|
2513
2718
|
}]
|
|
2514
|
-
}], ctorParameters: () => [{ type: i2.Router }] });
|
|
2719
|
+
}], ctorParameters: () => [{ type: i2$1.Router }] });
|
|
2515
2720
|
|
|
2516
2721
|
class AXPDataGenerator {
|
|
2517
2722
|
static uuid() {
|
|
@@ -2733,5 +2938,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
|
2733
2938
|
* Generated bundle index. Do not edit.
|
|
2734
2939
|
*/
|
|
2735
2940
|
|
|
2736
|
-
export { AXEntityLoaderDefault, AXMWorkflowErrorHandler, AXMenuLoaderDefault, AXPAppStartUpProvider, AXPAppStartUpService, AXPClipBoardService, AXPCommonEffects, AXPCommonModule, AXPCommonWidgetModule, AXPComponentLogoConfig, AXPComponentSlotDirective, AXPComponentSlotLoaderService, AXPComponentSlotModule, AXPComponentSlotRegistryService, AXPDataGenerator, AXPDataProvider,
|
|
2941
|
+
export { AXEntityLoaderDefault, AXMEntityCrudService, AXMEntityCrudServiceImpl, AXMWorkflowErrorHandler, AXMenuLoaderDefault, AXPAppStartUpProvider, AXPAppStartUpService, AXPClipBoardService, AXPCommonEffects, AXPCommonModule, AXPCommonWidgetModule, AXPComponentLogoConfig, AXPComponentSlotDirective, AXPComponentSlotLoaderService, AXPComponentSlotModule, AXPComponentSlotRegistryService, AXPDataGenerator, AXPDataProvider, AXPDataSeederService, AXPDexieEntityStorageService, AXPDialogConfirmAction, AXPEntityCommandScope, AXPEntityDataProvider, AXPEntityDataProviderImpl, AXPEntityListViewConfigEmpty, AXPEntityQueryType, AXPEntityRegistryService, AXPEntityStorageService, AXPErrorHandlerRegistryService, AXPFontIconLogoConfig, AXPFooterTextSlotComponent, AXPGlobalErrorHandler, AXPGridLayoutDirective, AXPImageUrlLogoConfig, AXPLayoutChildDrawerClose, AXPLayoutChildDrawerToggle, AXPLayoutEffects, AXPLayoutFeature, AXPLayoutRootDrawerClose, AXPLayoutRootDrawerToggle, AXPLayoutService, AXPLoadingHideAction, AXPLoadingShowAction, AXPLogoComponent, AXPMenuProviderService, AXPMenuService, AXPNavBarSlotComponent, AXPNavigateAction, AXPPdfPageSize, AXPPdfService, AXPPlatformDefaultConfigs, AXPRedirectEvent, AXPRelationshipCardinality, AXPRelationshipKind, AXPRouteUtilityService, AXPSchemaModule, AXPSchemaRegistryService, AXPSettingsService, AXPSignInAction, AXPSignOutAction, AXPStickyDirective, AXPTextLogoConfig, AXPToastAction, AXPWidgetBase, AXPWidgetColumnRendererComponent, AXPWidgetEditBase, AXPWidgetFilterBase, AXPWidgetFilterRendererComponent, AXPWidgetRendererComponent, AXPWindowResizeAction, AXPWorkflowNavigateAction, AXP_DATA_SEEDER_TOKEN, AXP_ENTITY_LOADER, AXP_MENU_LOADER, AXP_MENU_PROVIDER, AXP_PLATFORM_CONFIG_TOKEN, AXP_ROOT_CONFIG_TOKEN, AXP_SETTINGS_PROVIDER, AXP_WIDGET_TOKEN, BETWEEN_OPER, BOOLEAN_OPERATORS, CONTAINS_OPER, DATE_OPERATORS, ENDS_WITH_OPER, ENVIRONMENT, EQ_OPER, GTE_OPER, GT_OPER, IS_EMPTY_OPER, IS_NOT_EMPTY_OPER, LTE_OPER, LT_OPER, NOT_CONTAINS_OPER, NOT_EQ_OPER, NUMBER_OPERATORS, STARTS_WITH_OPER, STRING_OPERATORS, configPlatform, convertPropertiesToColumns, convertPropertyToColumn, getChildDrawer, getRootDrawer, initialState, isLoading, isSmallScreen, name, reducer, resolveActionLook, selectLayoutState, widgetSchemas };
|
|
2737
2942
|
//# sourceMappingURL=acorex-platform-common.mjs.map
|