@acorex/platform 18.0.2 → 18.0.5
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 +43 -26
- package/common/lib/common.module.d.ts +6 -5
- package/common/lib/data/data-provider.types.d.ts +1 -1
- package/common/lib/data/dexie-storage.service.d.ts +14 -0
- package/common/lib/data/entity-data-provider.d.ts +14 -0
- package/common/lib/data/index.d.ts +3 -0
- package/common/lib/data/storage-service.d.ts +22 -0
- package/common/lib/layout/grid-layout/grid-layout.types.d.ts +1 -2
- package/common/lib/schema/entity/entity.class.d.ts +3 -0
- package/common/lib/schema/widgets/lookup/lookup-widget-filter.component.d.ts +1 -1
- package/common/lib/schema/widgets/lookup/lookup-widget-view.component.d.ts +2 -1
- package/common/lib/utils/data-generator.d.ts +15 -1
- package/common/lib/utils/index.d.ts +1 -0
- package/common/lib/utils/pdf.service.d.ts +25 -0
- package/esm2022/common/lib/app/application.types.mjs +1 -1
- package/esm2022/common/lib/common.module.mjs +19 -2
- package/esm2022/common/lib/data/data-provider.types.mjs +1 -1
- package/esm2022/common/lib/data/dexie-storage.service.mjs +34 -0
- package/esm2022/common/lib/data/entity-data-provider.mjs +26 -0
- package/esm2022/common/lib/data/index.mjs +4 -1
- package/esm2022/common/lib/data/storage-service.mjs +5 -0
- package/esm2022/common/lib/layout/grid-layout/grid-layout.directive.mjs +5 -5
- package/esm2022/common/lib/layout/grid-layout/grid-layout.types.mjs +1 -1
- package/esm2022/common/lib/schema/entity/entity-registery.service.mjs +2 -2
- package/esm2022/common/lib/schema/entity/entity.class.mjs +1 -1
- package/esm2022/common/lib/schema/widgets/lookup/lookup-widget-edit.component.mjs +20 -3
- package/esm2022/common/lib/schema/widgets/lookup/lookup-widget-filter.component.mjs +20 -3
- package/esm2022/common/lib/schema/widgets/lookup/lookup-widget-view.component.mjs +5 -5
- package/esm2022/common/lib/utils/data-generator.mjs +88 -2
- package/esm2022/common/lib/utils/index.mjs +2 -1
- package/esm2022/common/lib/utils/pdf.service.mjs +85 -0
- package/esm2022/common/lib/workflows/common.workflow.mjs +3 -3
- package/esm2022/layout/builder/lib/builder/builder.service.mjs +7 -2
- package/esm2022/layout/builder/lib/builder/widget.types.mjs +5 -1
- package/esm2022/layout/entity/lib/entity-detail-list.viewmodel.mjs +9 -8
- package/esm2022/layout/entity/lib/entity-master-create.viewmodel.mjs +44 -27
- package/esm2022/layout/entity/lib/entity-master-list.viewmodel.mjs +42 -15
- package/esm2022/layout/entity/lib/entity-master-single.viewmodel.mjs +64 -62
- package/esm2022/layout/entity/lib/entity-master-update.viewmodel.mjs +9 -7
- package/esm2022/layout/entity/lib/entity-registery.service.mjs +2 -2
- package/esm2022/layout/entity/lib/entity.module.mjs +13 -4
- package/esm2022/layout/entity/lib/entity.viewmodel.mjs +7 -6
- package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-edit.component.mjs +142 -39
- package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-selector.component.mjs +82 -37
- package/esm2022/layout/entity/lib/widgets/lookup-widget/lookup-widget-selector.viewmodel.mjs +45 -22
- package/esm2022/layout/entity/lib/workflows/create-entity.workflow.mjs +17 -21
- package/esm2022/layout/entity/lib/workflows/delete-entity.workflow.mjs +14 -15
- package/esm2022/layout/entity/lib/workflows/modify-section.workflow.mjs +11 -23
- package/esm2022/layout/entity/lib/workflows/show-details.workflow.mjs +3 -3
- package/esm2022/layout/entity/lib/workflows/show-list.workflow.mjs +35 -0
- package/esm2022/layouts/lib/admin/entity-layout/entity-create-view/entity-create-view.component.mjs +3 -3
- package/esm2022/layouts/lib/admin/entity-layout/workflows/delete-entity.workflow.mjs +2 -2
- package/esm2022/layouts/lib/layout.module.mjs +3 -3
- package/esm2022/themes/default/lib/default.module.mjs +3 -3
- package/esm2022/themes/default/lib/entity-reuse.strategy.mjs +2 -2
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-create-view/entity-master-create-view.component.mjs +2 -2
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-list-view/{entity-list-view.component.mjs → entity-master-list-view.component.mjs} +11 -2
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-list-view/list-view-option-sorting/list-view-option-sorting.component.mjs +2 -1
- package/esm2022/themes/default/lib/layouts/entity-layouts/entity-master-single-view/entity-master-single-view.component.mjs +6 -3
- package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget-column.component.mjs +2 -2
- package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget-edit.component.mjs +21 -12
- package/esm2022/widgets/lib/editors/date-time-box-widget/date-time-box-widget-view.component.mjs +2 -2
- package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget-column.component.mjs +2 -2
- package/esm2022/widgets/lib/editors/number-box-widget/number-box-widget-view.component.mjs +2 -2
- package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget-edit.component.mjs +3 -3
- package/esm2022/widgets/lib/editors/rich-text-widget/rich-text-widget-view.component.mjs +14 -8
- package/esm2022/widgets/lib/editors/selection-list-widget/selection-list-widget-view.component.mjs +3 -2
- package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget-edit.component.mjs +3 -2
- package/esm2022/widgets/lib/editors/signature-pad-widget/signature-pad-widget-view.component.mjs +3 -2
- package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget-edit.component.mjs +3 -2
- package/esm2022/widgets/lib/editors/text-box-widget/text-box-widget-view.component.mjs +3 -2
- package/esm2022/workflow/lib/actions/start-workflow.action.mjs +32 -0
- package/esm2022/workflow/lib/workflow.module.mjs +7 -2
- package/esm2022/workflow/lib/workflow.service.mjs +54 -7
- package/esm2022/workflow/lib/workflow.types.mjs +17 -10
- package/fesm2022/{acorex-platform-common-avatar-widget-edit.component-DAmNXjDm.mjs → acorex-platform-common-avatar-widget-edit.component-B-of5ssU.mjs} +3 -2
- package/fesm2022/{acorex-platform-common-avatar-widget-edit.component-DAmNXjDm.mjs.map → acorex-platform-common-avatar-widget-edit.component-B-of5ssU.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-avatar-widget-view.component-BlA_cFkP.mjs → acorex-platform-common-avatar-widget-view.component-CJvrSkTv.mjs} +4 -3
- package/fesm2022/acorex-platform-common-avatar-widget-view.component-CJvrSkTv.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-boolean-widget-filter.component-CEqibiML.mjs → acorex-platform-common-boolean-widget-filter.component-BTcOjuUm.mjs} +4 -3
- package/fesm2022/acorex-platform-common-boolean-widget-filter.component-BTcOjuUm.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-checkbox-widget-column.component-BiUHPDqV.mjs → acorex-platform-common-checkbox-widget-column.component-X9d1iY_F.mjs} +4 -3
- package/fesm2022/{acorex-platform-common-checkbox-widget-column.component-BiUHPDqV.mjs.map → acorex-platform-common-checkbox-widget-column.component-X9d1iY_F.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-checkbox-widget-edit.component-BVG9_XXh.mjs → acorex-platform-common-checkbox-widget-edit.component-_jtT03Vn.mjs} +4 -3
- package/fesm2022/acorex-platform-common-checkbox-widget-edit.component-_jtT03Vn.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-checkbox-widget-view.component-CfGkMcDi.mjs → acorex-platform-common-checkbox-widget-view.component-nYmtb8bK.mjs} +4 -3
- package/fesm2022/{acorex-platform-common-checkbox-widget-view.component-CfGkMcDi.mjs.map → acorex-platform-common-checkbox-widget-view.component-nYmtb8bK.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-dateTime-widget-column.component-BlXTU887.mjs → acorex-platform-common-dateTime-widget-column.component-5ljYmtHI.mjs} +4 -3
- package/fesm2022/acorex-platform-common-dateTime-widget-column.component-5ljYmtHI.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-dateTime-widget-edit.component-B0s6FN-g.mjs → acorex-platform-common-dateTime-widget-edit.component-D8FSiqAo.mjs} +4 -3
- package/fesm2022/{acorex-platform-common-dateTime-widget-edit.component-B0s6FN-g.mjs.map → acorex-platform-common-dateTime-widget-edit.component-D8FSiqAo.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-dateTime-widget-filter.component-B7KBCsUt.mjs → acorex-platform-common-dateTime-widget-filter.component-Df0DuDtw.mjs} +4 -3
- package/fesm2022/{acorex-platform-common-dateTime-widget-filter.component-B7KBCsUt.mjs.map → acorex-platform-common-dateTime-widget-filter.component-Df0DuDtw.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-dateTime-widget-view.component-Dy7pAkGG.mjs → acorex-platform-common-dateTime-widget-view.component-CjVjQkPh.mjs} +4 -3
- package/fesm2022/{acorex-platform-common-dateTime-widget-view.component-Dy7pAkGG.mjs.map → acorex-platform-common-dateTime-widget-view.component-CjVjQkPh.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-email-widget-column.component-D_UNn2dW.mjs → acorex-platform-common-email-widget-column.component-BgNdL62k.mjs} +4 -3
- package/fesm2022/acorex-platform-common-email-widget-column.component-BgNdL62k.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-email-widget-edit.component-DWT24mCM.mjs → acorex-platform-common-email-widget-edit.component-CgHPGccx.mjs} +4 -3
- package/fesm2022/{acorex-platform-common-email-widget-edit.component-DWT24mCM.mjs.map → acorex-platform-common-email-widget-edit.component-CgHPGccx.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-email-widget-view.component-B6puyycL.mjs → acorex-platform-common-email-widget-view.component-C2aQ14k-.mjs} +4 -3
- package/fesm2022/{acorex-platform-common-email-widget-view.component-B6puyycL.mjs.map → acorex-platform-common-email-widget-view.component-C2aQ14k-.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-file-widget-column.component-C1faGR4K.mjs → acorex-platform-common-file-widget-column.component-CwFzLLHt.mjs} +4 -3
- package/fesm2022/acorex-platform-common-file-widget-column.component-CwFzLLHt.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-file-widget-edit.component-CTvS9ls8.mjs → acorex-platform-common-file-widget-edit.component-DxoQR4CU.mjs} +4 -3
- package/fesm2022/{acorex-platform-common-file-widget-edit.component-CTvS9ls8.mjs.map → acorex-platform-common-file-widget-edit.component-DxoQR4CU.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-file-widget-filter.component-D4AMg5M0.mjs → acorex-platform-common-file-widget-filter.component-BvG0iaKU.mjs} +4 -3
- package/fesm2022/acorex-platform-common-file-widget-filter.component-BvG0iaKU.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-file-widget-view.component-CHI4VCvt.mjs → acorex-platform-common-file-widget-view.component-BC9l3YrO.mjs} +4 -3
- package/fesm2022/{acorex-platform-common-file-widget-view.component-CHI4VCvt.mjs.map → acorex-platform-common-file-widget-view.component-BC9l3YrO.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-gallery-widget-edit.component-CAOctYzV.mjs → acorex-platform-common-gallery-widget-edit.component-BihOIJ9T.mjs} +4 -3
- package/fesm2022/{acorex-platform-common-gallery-widget-edit.component-CAOctYzV.mjs.map → acorex-platform-common-gallery-widget-edit.component-BihOIJ9T.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-gallery-widget-filter.component-lgaYDZeD.mjs → acorex-platform-common-gallery-widget-filter.component-DS1PCIJp.mjs} +4 -3
- package/fesm2022/acorex-platform-common-gallery-widget-filter.component-DS1PCIJp.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-gallery-widget-view.component-Ci50jeO5.mjs → acorex-platform-common-gallery-widget-view.component-CnQONVdg.mjs} +4 -3
- package/fesm2022/{acorex-platform-common-gallery-widget-view.component-Ci50jeO5.mjs.map → acorex-platform-common-gallery-widget-view.component-CnQONVdg.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-largetext-widget-edit.component-DFKG-kum.mjs → acorex-platform-common-largetext-widget-edit.component-BCtGkz1a.mjs} +4 -3
- package/fesm2022/acorex-platform-common-largetext-widget-edit.component-BCtGkz1a.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-lookup-widget-column.component-CFzCGcqA.mjs → acorex-platform-common-lookup-widget-column.component-Cl-vO5XW.mjs} +4 -3
- package/fesm2022/acorex-platform-common-lookup-widget-column.component-Cl-vO5XW.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-lookup-widget-edit.component-CYTSeEOq.mjs → acorex-platform-common-lookup-widget-edit.component-Do_yV2hi.mjs} +22 -4
- package/fesm2022/acorex-platform-common-lookup-widget-edit.component-Do_yV2hi.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-lookup-widget-filter.component-BkxT9_Hh.mjs → acorex-platform-common-lookup-widget-filter.component-AKqbYe-l.mjs} +22 -4
- package/fesm2022/acorex-platform-common-lookup-widget-filter.component-AKqbYe-l.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-lookup-widget-view.component-5YeixMp7.mjs → acorex-platform-common-lookup-widget-view.component-BHqYDEuU.mjs} +8 -7
- package/fesm2022/acorex-platform-common-lookup-widget-view.component-BHqYDEuU.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-map-widget-edit.component-CE3QQBmX.mjs → acorex-platform-common-map-widget-edit.component-SSrR3xxv.mjs} +4 -3
- package/fesm2022/acorex-platform-common-map-widget-edit.component-SSrR3xxv.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-map-widget-view.component-Cv4OCTxz.mjs → acorex-platform-common-map-widget-view.component-DrGG3gzg.mjs} +4 -3
- package/fesm2022/acorex-platform-common-map-widget-view.component-DrGG3gzg.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-messenger-widget-column.component-CJdh6TKb.mjs → acorex-platform-common-messenger-widget-column.component-BJ_XzNKc.mjs} +4 -3
- package/fesm2022/acorex-platform-common-messenger-widget-column.component-BJ_XzNKc.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-messenger-widget-edit.component-kiEHxJia.mjs → acorex-platform-common-messenger-widget-edit.component-B_FG_n0O.mjs} +4 -3
- package/fesm2022/{acorex-platform-common-messenger-widget-edit.component-kiEHxJia.mjs.map → acorex-platform-common-messenger-widget-edit.component-B_FG_n0O.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-messenger-widget-view.component-DzbjgZA7.mjs → acorex-platform-common-messenger-widget-view.component-EBiPO9ds.mjs} +4 -3
- package/fesm2022/{acorex-platform-common-messenger-widget-view.component-DzbjgZA7.mjs.map → acorex-platform-common-messenger-widget-view.component-EBiPO9ds.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-number-widget-edit.component-BRuIP96Y.mjs → acorex-platform-common-number-widget-edit.component-B1XXga-9.mjs} +4 -3
- package/fesm2022/acorex-platform-common-number-widget-edit.component-B1XXga-9.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-number-widget-filter.component-jQ4DaFQH.mjs → acorex-platform-common-number-widget-filter.component-B2JCpDjU.mjs} +4 -3
- package/fesm2022/{acorex-platform-common-number-widget-filter.component-jQ4DaFQH.mjs.map → acorex-platform-common-number-widget-filter.component-B2JCpDjU.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-number-widget-view.component-BzUWjT8m.mjs → acorex-platform-common-number-widget-view.component-DD0tkoc4.mjs} +4 -3
- package/fesm2022/acorex-platform-common-number-widget-view.component-DD0tkoc4.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-password-widget-column.component-BRzyuK5c.mjs → acorex-platform-common-password-widget-column.component-eyqgQlAt.mjs} +4 -3
- package/fesm2022/{acorex-platform-common-password-widget-column.component-BRzyuK5c.mjs.map → acorex-platform-common-password-widget-column.component-eyqgQlAt.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-password-widget-edit.component-q6R2dw5k.mjs → acorex-platform-common-password-widget-edit.component-C2yNb9Pl.mjs} +4 -3
- package/fesm2022/acorex-platform-common-password-widget-edit.component-C2yNb9Pl.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-password-widget-view.component-CKaQItON.mjs → acorex-platform-common-password-widget-view.component-o9S7pwJW.mjs} +4 -3
- package/fesm2022/{acorex-platform-common-password-widget-view.component-CKaQItON.mjs.map → acorex-platform-common-password-widget-view.component-o9S7pwJW.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-phone-widget-column.component-BD7BScjW.mjs → acorex-platform-common-phone-widget-column.component-BL9Xl2XH.mjs} +4 -3
- package/fesm2022/{acorex-platform-common-phone-widget-column.component-BD7BScjW.mjs.map → acorex-platform-common-phone-widget-column.component-BL9Xl2XH.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-phone-widget-edit.component-D8tGKfNj.mjs → acorex-platform-common-phone-widget-edit.component-DSh9zoZj.mjs} +4 -3
- package/fesm2022/{acorex-platform-common-phone-widget-edit.component-D8tGKfNj.mjs.map → acorex-platform-common-phone-widget-edit.component-DSh9zoZj.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-phone-widget-view.component-CFiMsGOB.mjs → acorex-platform-common-phone-widget-view.component-Br3xbaDd.mjs} +4 -3
- package/fesm2022/{acorex-platform-common-phone-widget-view.component-CFiMsGOB.mjs.map → acorex-platform-common-phone-widget-view.component-Br3xbaDd.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-rich-text-widget-column.component-BPzwY_8L.mjs → acorex-platform-common-rich-text-widget-column.component-DDT58tca.mjs} +4 -3
- package/fesm2022/{acorex-platform-common-rich-text-widget-column.component-BPzwY_8L.mjs.map → acorex-platform-common-rich-text-widget-column.component-DDT58tca.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-rich-text-widget-edit.component-CA2xRfVg.mjs → acorex-platform-common-rich-text-widget-edit.component-Dz1toc21.mjs} +4 -3
- package/fesm2022/acorex-platform-common-rich-text-widget-edit.component-Dz1toc21.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-rich-text-widget-view.component-DYfTZ64H.mjs → acorex-platform-common-rich-text-widget-view.component-CxTPcEIQ.mjs} +4 -3
- package/fesm2022/acorex-platform-common-rich-text-widget-view.component-CxTPcEIQ.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-selection-list-widget-column.component-_MglaOmo.mjs → acorex-platform-common-selection-list-widget-column.component-BCCmg8MI.mjs} +4 -3
- package/fesm2022/{acorex-platform-common-selection-list-widget-column.component-_MglaOmo.mjs.map → acorex-platform-common-selection-list-widget-column.component-BCCmg8MI.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-selection-list-widget-edit.component-QKw_tyOd.mjs → acorex-platform-common-selection-list-widget-edit.component-B5eUdN2R.mjs} +4 -3
- package/fesm2022/acorex-platform-common-selection-list-widget-edit.component-B5eUdN2R.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-selection-list-widget-filter.component-DRToTnHQ.mjs → acorex-platform-common-selection-list-widget-filter.component-DPpZq1TB.mjs} +4 -3
- package/fesm2022/acorex-platform-common-selection-list-widget-filter.component-DPpZq1TB.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-selection-list-widget-view.component-CjDiuUdj.mjs → acorex-platform-common-selection-list-widget-view.component-Bxvd_AKZ.mjs} +4 -3
- package/fesm2022/acorex-platform-common-selection-list-widget-view.component-Bxvd_AKZ.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-signature-pad-widget-edit.component-DF29uWl2.mjs → acorex-platform-common-signature-pad-widget-edit.component-CNjYCEi6.mjs} +4 -3
- package/fesm2022/{acorex-platform-common-signature-pad-widget-edit.component-DF29uWl2.mjs.map → acorex-platform-common-signature-pad-widget-edit.component-CNjYCEi6.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-signature-pad-widget-view.component-BWzoR4HM.mjs → acorex-platform-common-signature-pad-widget-view.component-CsiBv_7i.mjs} +4 -3
- package/fesm2022/acorex-platform-common-signature-pad-widget-view.component-CsiBv_7i.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-string-widget-filter.component-Di_GFHme.mjs → acorex-platform-common-string-widget-filter.component-CrGt6Bov.mjs} +4 -3
- package/fesm2022/acorex-platform-common-string-widget-filter.component-CrGt6Bov.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-text-widget-column.component-BSYd1CbC.mjs → acorex-platform-common-text-widget-column.component-qXusAevm.mjs} +4 -3
- package/fesm2022/{acorex-platform-common-text-widget-column.component-BSYd1CbC.mjs.map → acorex-platform-common-text-widget-column.component-qXusAevm.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-text-widget-edit.component-K9z9N1qw.mjs → acorex-platform-common-text-widget-edit.component-ed0MUYnD.mjs} +4 -3
- package/fesm2022/{acorex-platform-common-text-widget-edit.component-K9z9N1qw.mjs.map → acorex-platform-common-text-widget-edit.component-ed0MUYnD.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-text-widget-view.component-WbZtm_bf.mjs → acorex-platform-common-text-widget-view.component-BpxTaeQW.mjs} +4 -3
- package/fesm2022/{acorex-platform-common-text-widget-view.component-WbZtm_bf.mjs.map → acorex-platform-common-text-widget-view.component-BpxTaeQW.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-toggle-widget-column.component-ZCBSYMuz.mjs → acorex-platform-common-toggle-widget-column.component-BqiUQrmV.mjs} +4 -3
- package/fesm2022/{acorex-platform-common-toggle-widget-column.component-ZCBSYMuz.mjs.map → acorex-platform-common-toggle-widget-column.component-BqiUQrmV.mjs.map} +1 -1
- package/fesm2022/{acorex-platform-common-toggle-widget-edit.component-rkDfLA-J.mjs → acorex-platform-common-toggle-widget-edit.component-CDG62BJN.mjs} +4 -3
- package/fesm2022/acorex-platform-common-toggle-widget-edit.component-CDG62BJN.mjs.map +1 -0
- package/fesm2022/{acorex-platform-common-toggle-widget-view.component-DLDIrci1.mjs → acorex-platform-common-toggle-widget-view.component-DWYcIPTd.mjs} +4 -3
- package/fesm2022/{acorex-platform-common-toggle-widget-view.component-DLDIrci1.mjs.map → acorex-platform-common-toggle-widget-view.component-DWYcIPTd.mjs.map} +1 -1
- package/fesm2022/acorex-platform-common.mjs +389 -140
- package/fesm2022/acorex-platform-common.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-builder.mjs +10 -1
- package/fesm2022/acorex-platform-layout-builder.mjs.map +1 -1
- package/fesm2022/acorex-platform-layout-entity.mjs +514 -280
- package/fesm2022/acorex-platform-layout-entity.mjs.map +1 -1
- package/fesm2022/{acorex-platform-layouts-entity-create-view.component-BmSMt95H.mjs → acorex-platform-layouts-entity-create-view.component-fkKPKxlb.mjs} +3 -3
- package/fesm2022/acorex-platform-layouts-entity-create-view.component-fkKPKxlb.mjs.map +1 -0
- package/fesm2022/acorex-platform-layouts.mjs +4 -4
- package/fesm2022/acorex-platform-layouts.mjs.map +1 -1
- package/fesm2022/{acorex-platform-themes-default-entity-master-create-view.component-Buanq4is.mjs → acorex-platform-themes-default-entity-master-create-view.component-BxYT9KhH.mjs} +2 -2
- package/fesm2022/acorex-platform-themes-default-entity-master-create-view.component-BxYT9KhH.mjs.map +1 -0
- package/fesm2022/acorex-platform-themes-default.mjs +21 -8
- package/fesm2022/acorex-platform-themes-default.mjs.map +1 -1
- package/fesm2022/acorex-platform-widgets.mjs +73 -56
- package/fesm2022/acorex-platform-widgets.mjs.map +1 -1
- package/fesm2022/acorex-platform-workflow.mjs +194 -109
- package/fesm2022/acorex-platform-workflow.mjs.map +1 -1
- package/layout/builder/lib/builder/widget.types.d.ts +3 -0
- package/layout/entity/lib/entity-master-create.viewmodel.d.ts +6 -5
- package/layout/entity/lib/entity-master-list.viewmodel.d.ts +11 -5
- package/layout/entity/lib/entity-master-single.viewmodel.d.ts +17 -10
- package/layout/entity/lib/entity-master-update.viewmodel.d.ts +0 -1
- package/layout/entity/lib/entity.viewmodel.d.ts +3 -3
- package/layout/entity/lib/widgets/lookup-widget/lookup-widget-edit.component.d.ts +20 -3
- package/layout/entity/lib/widgets/lookup-widget/lookup-widget-selector.component.d.ts +8 -1
- package/layout/entity/lib/widgets/lookup-widget/lookup-widget-selector.viewmodel.d.ts +10 -3
- package/layout/entity/lib/workflows/create-entity.workflow.d.ts +0 -2
- package/layout/entity/lib/workflows/delete-entity.workflow.d.ts +2 -4
- package/layout/entity/lib/workflows/modify-section.workflow.d.ts +2 -5
- package/layout/entity/lib/workflows/show-list.workflow.d.ts +10 -0
- package/package.json +1 -1
- package/themes/default/lib/layouts/entity-layouts/entity-master-list-view/{entity-list-view.component.d.ts → entity-master-list-view.component.d.ts} +1 -0
- package/themes/default/lib/layouts/entity-layouts/entity-master-single-view/entity-master-single-view.component.d.ts +1 -0
- package/widgets/lib/editors/date-time-box-widget/date-time-box-widget-edit.component.d.ts +4 -0
- package/widgets/lib/editors/rich-text-widget/rich-text-widget-edit.component.d.ts +1 -1
- package/widgets/lib/editors/rich-text-widget/rich-text-widget-view.component.d.ts +3 -2
- package/widgets/lib/editors/signature-pad-widget/signature-pad-widget-edit.component.d.ts +1 -1
- package/widgets/lib/editors/signature-pad-widget/signature-pad-widget-view.component.d.ts +1 -1
- package/widgets/lib/editors/text-box-widget/text-box-widget-edit.component.d.ts +1 -1
- package/widgets/lib/editors/text-box-widget/text-box-widget-view.component.d.ts +1 -1
- package/workflow/lib/actions/start-workflow.action.d.ts +10 -0
- package/workflow/lib/workflow.service.d.ts +4 -2
- package/workflow/lib/workflow.types.d.ts +6 -3
- package/fesm2022/acorex-platform-common-avatar-widget-view.component-BlA_cFkP.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-boolean-widget-filter.component-CEqibiML.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-checkbox-widget-edit.component-BVG9_XXh.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-dateTime-widget-column.component-BlXTU887.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-email-widget-column.component-D_UNn2dW.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-file-widget-column.component-C1faGR4K.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-file-widget-filter.component-D4AMg5M0.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-gallery-widget-filter.component-lgaYDZeD.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-largetext-widget-edit.component-DFKG-kum.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-lookup-widget-column.component-CFzCGcqA.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-lookup-widget-edit.component-CYTSeEOq.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-lookup-widget-filter.component-BkxT9_Hh.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-lookup-widget-view.component-5YeixMp7.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-map-widget-edit.component-CE3QQBmX.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-map-widget-view.component-Cv4OCTxz.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-messenger-widget-column.component-CJdh6TKb.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-number-widget-edit.component-BRuIP96Y.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-number-widget-view.component-BzUWjT8m.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-password-widget-edit.component-q6R2dw5k.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-rich-text-widget-edit.component-CA2xRfVg.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-rich-text-widget-view.component-DYfTZ64H.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-selection-list-widget-edit.component-QKw_tyOd.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-selection-list-widget-filter.component-DRToTnHQ.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-selection-list-widget-view.component-CjDiuUdj.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-signature-pad-widget-view.component-BWzoR4HM.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-string-widget-filter.component-Di_GFHme.mjs.map +0 -1
- package/fesm2022/acorex-platform-common-toggle-widget-edit.component-rkDfLA-J.mjs.map +0 -1
- package/fesm2022/acorex-platform-layouts-entity-create-view.component-BmSMt95H.mjs.map +0 -1
- package/fesm2022/acorex-platform-themes-default-entity-master-create-view.component-Buanq4is.mjs.map +0 -1
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { AXPopupModule } from '@acorex/components/popup';
|
|
2
2
|
import { AXDateTimeModule } from '@acorex/core/date-time';
|
|
3
3
|
import * as i0 from '@angular/core';
|
|
4
|
-
import { Injector, Injectable, ErrorHandler, Directive, Input, EventEmitter, Output, runInInjectionContext, NgModule, Optional, Inject, Component, InjectionToken, inject, ViewEncapsulation, ChangeDetectorRef, ChangeDetectionStrategy, ViewChild } from '@angular/core';
|
|
4
|
+
import { Injector, Injectable, ErrorHandler, Directive, Input, EventEmitter, Output, runInInjectionContext, NgModule, Optional, Inject, Component, InjectionToken, inject, ViewEncapsulation, ChangeDetectorRef, ChangeDetectionStrategy, ViewChild, RendererFactory2 } from '@angular/core';
|
|
5
5
|
import * as i2 from '@angular/router';
|
|
6
|
-
import { RouterModule, NavigationEnd
|
|
6
|
+
import { Router, RouterModule, NavigationEnd } from '@angular/router';
|
|
7
7
|
import * as i1 from '@ngrx/effects';
|
|
8
8
|
import { createEffect, ofType, Actions, EffectsModule } from '@ngrx/effects';
|
|
9
9
|
import * as i2$3 from '@ngrx/store';
|
|
@@ -18,8 +18,12 @@ import { CommonModule } from '@angular/common';
|
|
|
18
18
|
import * as i2$2 from '@acorex/components/button';
|
|
19
19
|
import { AXButtonModule } from '@acorex/components/button';
|
|
20
20
|
import { AXPlatform } from '@acorex/core/platform';
|
|
21
|
-
import {
|
|
21
|
+
import { AXToastService, AXToastModule } from '@acorex/components/toast';
|
|
22
|
+
import * as i3$1 from '@acorex/platform/workflow';
|
|
23
|
+
import { createWorkFlowEvent, AXPWorkflowAction, AXPWorkflowError, AXPWorkflowModule } from '@acorex/platform/workflow';
|
|
24
|
+
import { AXDialogService } from '@acorex/components/dialog';
|
|
22
25
|
import { merge, cloneDeep, assign, isEqual, get, set } from 'lodash-es';
|
|
26
|
+
import Dexie from 'dexie';
|
|
23
27
|
import * as i2$4 from '@acorex/components/skeleton';
|
|
24
28
|
import { AXSkeletonModule } from '@acorex/components/skeleton';
|
|
25
29
|
import * as i1$2 from '@angular/cdk/portal';
|
|
@@ -28,8 +32,6 @@ import { AXDataTableColumnComponent } from '@acorex/components/data-table';
|
|
|
28
32
|
import { AXUnsubscriber } from '@acorex/core/utils';
|
|
29
33
|
import { AXFormatService } from '@acorex/core/format';
|
|
30
34
|
import { filter } from 'rxjs/operators';
|
|
31
|
-
import { AXDialogService } from '@acorex/components/dialog';
|
|
32
|
-
import { createWorkFlowEvent, AXPWorkflowAction, AXPWorkflowError } from '@acorex/platform/workflow';
|
|
33
35
|
|
|
34
36
|
class AXPErrorHandlerRegistryService {
|
|
35
37
|
constructor(injector) {
|
|
@@ -134,14 +136,13 @@ class AXPGridLayoutDirective {
|
|
|
134
136
|
this.clearClasses();
|
|
135
137
|
// Apply new grid classes based on the input options
|
|
136
138
|
this.setClasses(this.options.positions?.default, '');
|
|
137
|
-
this.setClasses(this.options.positions?.sm, 'sm:');
|
|
138
139
|
this.setClasses(this.options.positions?.md, 'md:');
|
|
139
140
|
this.setClasses(this.options.positions?.lg, 'lg:');
|
|
140
141
|
this.setClasses(this.options.positions?.xl, 'xl:');
|
|
141
142
|
this.setClasses(this.options.positions?.xxl, '2xl:');
|
|
142
143
|
}
|
|
143
144
|
setClasses(positions, prefix) {
|
|
144
|
-
if (
|
|
145
|
+
if (positions == null)
|
|
145
146
|
return;
|
|
146
147
|
const colStart = positions.colStart ? `${prefix}ax-col-start-${positions.colStart}` : '';
|
|
147
148
|
const colEnd = positions.colEnd ? `${prefix}ax-col-end-${positions.colEnd}` : '';
|
|
@@ -149,7 +150,8 @@ class AXPGridLayoutDirective {
|
|
|
149
150
|
const rowStart = positions.rowStart ? `${prefix}ax-row-start-${positions.rowStart}` : '';
|
|
150
151
|
const rowEnd = positions.rowEnd ? `${prefix}ax-row-end-${positions.rowEnd}` : '';
|
|
151
152
|
const rowSpan = positions.rowSpan ? `${prefix}ax-row-span-${positions.rowSpan}` : '';
|
|
152
|
-
|
|
153
|
+
const order = positions.order ? `${prefix}ax-order-${positions.order}` : ''; // Handling order
|
|
154
|
+
[colStart, colEnd, colSpan, rowStart, rowEnd, rowSpan, order].forEach(cls => {
|
|
153
155
|
if (cls) {
|
|
154
156
|
this.renderer.addClass(this.el.nativeElement, cls);
|
|
155
157
|
}
|
|
@@ -158,7 +160,7 @@ class AXPGridLayoutDirective {
|
|
|
158
160
|
clearClasses() {
|
|
159
161
|
const currentClasses = this.el.nativeElement.className.split(' ');
|
|
160
162
|
currentClasses.forEach((className) => {
|
|
161
|
-
if (className.startsWith('ax-col-') || className.startsWith('ax-row-')) {
|
|
163
|
+
if (className.startsWith('ax-col-') || className.startsWith('ax-row-') || className.startsWith('ax-order-')) {
|
|
162
164
|
this.renderer.removeClass(this.el.nativeElement, className);
|
|
163
165
|
}
|
|
164
166
|
});
|
|
@@ -776,6 +778,88 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImpor
|
|
|
776
778
|
}]
|
|
777
779
|
}] });
|
|
778
780
|
|
|
781
|
+
//TODO Loading, Redirect, Drawer, Show toast
|
|
782
|
+
const AXPRedirectEvent = createWorkFlowEvent('Redirect Event Fired');
|
|
783
|
+
class AXPWorkflowNavigateAction extends AXPWorkflowAction {
|
|
784
|
+
constructor() {
|
|
785
|
+
super(...arguments);
|
|
786
|
+
this.router = inject(Router);
|
|
787
|
+
}
|
|
788
|
+
async execute(context) {
|
|
789
|
+
const payload = context.getVariable('payload');
|
|
790
|
+
if (Array.isArray(payload.commands))
|
|
791
|
+
this.router.navigate(payload.commands, payload.extras);
|
|
792
|
+
else {
|
|
793
|
+
if (payload.commands.toLowerCase().startsWith('http'))
|
|
794
|
+
window.open(payload.commands, '_blank');
|
|
795
|
+
else
|
|
796
|
+
this.router.navigate([payload.commands], payload.extras);
|
|
797
|
+
}
|
|
798
|
+
}
|
|
799
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPWorkflowNavigateAction, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
800
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPWorkflowNavigateAction }); }
|
|
801
|
+
}
|
|
802
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPWorkflowNavigateAction, decorators: [{
|
|
803
|
+
type: Injectable
|
|
804
|
+
}] });
|
|
805
|
+
class AXPDialogConfirmAction extends AXPWorkflowAction {
|
|
806
|
+
constructor() {
|
|
807
|
+
super(...arguments);
|
|
808
|
+
this.dialogService = inject(AXDialogService);
|
|
809
|
+
}
|
|
810
|
+
async execute(context) {
|
|
811
|
+
context.setOutput('result', false);
|
|
812
|
+
const dialogResult = await this.dialogService.confirm(this.title, this.message, this.type);
|
|
813
|
+
context.setOutput('result', dialogResult.result);
|
|
814
|
+
}
|
|
815
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPDialogConfirmAction, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
816
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPDialogConfirmAction }); }
|
|
817
|
+
}
|
|
818
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPDialogConfirmAction, decorators: [{
|
|
819
|
+
type: Injectable
|
|
820
|
+
}] });
|
|
821
|
+
class AXPToastAction extends AXPWorkflowAction {
|
|
822
|
+
constructor() {
|
|
823
|
+
super(...arguments);
|
|
824
|
+
this.toastService = inject(AXToastService);
|
|
825
|
+
}
|
|
826
|
+
async execute(context) {
|
|
827
|
+
this.toastService.show({
|
|
828
|
+
color: this.color,
|
|
829
|
+
title: this.title,
|
|
830
|
+
content: this.content,
|
|
831
|
+
closeButton: true,
|
|
832
|
+
timeOut: 3000,
|
|
833
|
+
timeOutProgress: true,
|
|
834
|
+
});
|
|
835
|
+
}
|
|
836
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPToastAction, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
837
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPToastAction }); }
|
|
838
|
+
}
|
|
839
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPToastAction, decorators: [{
|
|
840
|
+
type: Injectable
|
|
841
|
+
}] });
|
|
842
|
+
|
|
843
|
+
class AXMWorkflowErrorHandler {
|
|
844
|
+
constructor() {
|
|
845
|
+
this.dialog = inject(AXDialogService);
|
|
846
|
+
}
|
|
847
|
+
handleError(error, next) {
|
|
848
|
+
if (error instanceof AXPWorkflowError) {
|
|
849
|
+
this.dialog.alert("Somthing is wrong!", error.inner ? error.inner.message : error.message, 'danger');
|
|
850
|
+
next(error);
|
|
851
|
+
}
|
|
852
|
+
else {
|
|
853
|
+
next(error);
|
|
854
|
+
}
|
|
855
|
+
}
|
|
856
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXMWorkflowErrorHandler, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
857
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXMWorkflowErrorHandler }); }
|
|
858
|
+
}
|
|
859
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXMWorkflowErrorHandler, decorators: [{
|
|
860
|
+
type: Injectable
|
|
861
|
+
}] });
|
|
862
|
+
|
|
779
863
|
class AXPCommonModule {
|
|
780
864
|
static forRoot(configs) {
|
|
781
865
|
return {
|
|
@@ -818,7 +902,7 @@ class AXPCommonModule {
|
|
|
818
902
|
});
|
|
819
903
|
}
|
|
820
904
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPCommonModule, deps: [{ token: 'AXPCommonModuleFactory' }], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
821
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.0.2", ngImport: i0, type: AXPCommonModule, imports: [i1.EffectsFeatureModule, i2$3.StoreFeatureModule, AXPopupModule,
|
|
905
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.0.2", ngImport: i0, type: AXPCommonModule, imports: [i1.EffectsFeatureModule, i2$3.StoreFeatureModule, i3$1.AXPWorkflowModule, AXPopupModule,
|
|
822
906
|
AXDateTimeModule,
|
|
823
907
|
AXToastModule], exports: [RouterModule] }); }
|
|
824
908
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPCommonModule, providers: [
|
|
@@ -828,6 +912,13 @@ class AXPCommonModule {
|
|
|
828
912
|
},
|
|
829
913
|
], imports: [EffectsModule.forFeature([AXPCommonEffects, AXPLayoutEffects]),
|
|
830
914
|
StoreModule.forFeature(AXPLayoutFeature),
|
|
915
|
+
AXPWorkflowModule.forChild({
|
|
916
|
+
actions: {
|
|
917
|
+
"navigate": AXPDialogConfirmAction,
|
|
918
|
+
"show-prompt-dialog": AXPDialogConfirmAction,
|
|
919
|
+
"show-toast": AXPToastAction,
|
|
920
|
+
},
|
|
921
|
+
}),
|
|
831
922
|
AXPopupModule,
|
|
832
923
|
AXDateTimeModule,
|
|
833
924
|
AXToastModule, RouterModule] }); }
|
|
@@ -838,6 +929,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImpor
|
|
|
838
929
|
imports: [
|
|
839
930
|
EffectsModule.forFeature([AXPCommonEffects, AXPLayoutEffects]),
|
|
840
931
|
StoreModule.forFeature(AXPLayoutFeature),
|
|
932
|
+
AXPWorkflowModule.forChild({
|
|
933
|
+
actions: {
|
|
934
|
+
"navigate": AXPDialogConfirmAction,
|
|
935
|
+
"show-prompt-dialog": AXPDialogConfirmAction,
|
|
936
|
+
"show-toast": AXPToastAction,
|
|
937
|
+
},
|
|
938
|
+
}),
|
|
841
939
|
AXPopupModule,
|
|
842
940
|
AXDateTimeModule,
|
|
843
941
|
AXToastModule
|
|
@@ -883,6 +981,70 @@ const AXP_ROOT_CONFIG_TOKEN = new InjectionToken('AXP_ROOT_CONFIG_TOKEN');
|
|
|
883
981
|
class AXPDataProvider {
|
|
884
982
|
}
|
|
885
983
|
|
|
984
|
+
class AXPDexieStorageService extends Dexie {
|
|
985
|
+
constructor() {
|
|
986
|
+
super('ACoreXPlatform');
|
|
987
|
+
this.version(1).stores({
|
|
988
|
+
'entity-store': '++id, entityName, [entityName+id]'
|
|
989
|
+
});
|
|
990
|
+
}
|
|
991
|
+
get dbName() {
|
|
992
|
+
return 'ACoreXPlatform';
|
|
993
|
+
}
|
|
994
|
+
async initial(entityName, collection) {
|
|
995
|
+
const exists = await this.table('entity-store').where({ entityName }).count();
|
|
996
|
+
if (exists === 0) {
|
|
997
|
+
await this.table('entity-store').bulkAdd(collection.map(item => ({ ...item, entityName })));
|
|
998
|
+
}
|
|
999
|
+
}
|
|
1000
|
+
async getOne(entityName, id) {
|
|
1001
|
+
return await this.table('entity-store').where({ entityName, id: id }).first();
|
|
1002
|
+
}
|
|
1003
|
+
async updateOne(entityName, id, keyValue) {
|
|
1004
|
+
await this.table('entity-store').where({ entityName, id: id }).modify(keyValue);
|
|
1005
|
+
}
|
|
1006
|
+
async deleteOne(entityName, id) {
|
|
1007
|
+
await this.table('entity-store').where({ entityName, id: id }).delete();
|
|
1008
|
+
}
|
|
1009
|
+
async insertOne(entityName, entity) {
|
|
1010
|
+
await this.table('entity-store').add({ ...entity, entityName });
|
|
1011
|
+
}
|
|
1012
|
+
async getAll(entityName) {
|
|
1013
|
+
return await this.table('entity-store').where({ entityName }).toArray();
|
|
1014
|
+
}
|
|
1015
|
+
}
|
|
1016
|
+
|
|
1017
|
+
// src/lib/axp-entity-data-provider.ts
|
|
1018
|
+
class AXPEntityDataProviderImpl {
|
|
1019
|
+
constructor(storageService, entityName) {
|
|
1020
|
+
this.storageService = storageService;
|
|
1021
|
+
this.entityName = entityName;
|
|
1022
|
+
}
|
|
1023
|
+
async initial(collection) {
|
|
1024
|
+
await this.storageService.initial(this.entityName, collection);
|
|
1025
|
+
}
|
|
1026
|
+
getOne(id) {
|
|
1027
|
+
return this.storageService.getOne(this.entityName, id);
|
|
1028
|
+
}
|
|
1029
|
+
getAll() {
|
|
1030
|
+
return this.storageService.getAll(this.entityName);
|
|
1031
|
+
}
|
|
1032
|
+
updateOne(id, keyValue) {
|
|
1033
|
+
return this.storageService.updateOne(this.entityName, id, keyValue);
|
|
1034
|
+
}
|
|
1035
|
+
deleteOne(id) {
|
|
1036
|
+
return this.storageService.deleteOne(this.entityName, id);
|
|
1037
|
+
}
|
|
1038
|
+
insertOne(entity) {
|
|
1039
|
+
return this.storageService.insertOne(this.entityName, entity);
|
|
1040
|
+
}
|
|
1041
|
+
}
|
|
1042
|
+
|
|
1043
|
+
class AXPStorageService {
|
|
1044
|
+
}
|
|
1045
|
+
class AXPEntityDataProvider {
|
|
1046
|
+
}
|
|
1047
|
+
|
|
886
1048
|
class AXPSchemaRegistryService {
|
|
887
1049
|
constructor() {
|
|
888
1050
|
this.types = new Map();
|
|
@@ -1493,7 +1655,7 @@ class AXPEntityRegistryService {
|
|
|
1493
1655
|
throw error; // Rethrow to allow error handling by caller
|
|
1494
1656
|
}
|
|
1495
1657
|
if (!config) {
|
|
1496
|
-
throw new Error(`Invalid
|
|
1658
|
+
throw new Error(`Invalid entity name: ${key}`);
|
|
1497
1659
|
}
|
|
1498
1660
|
}
|
|
1499
1661
|
return config;
|
|
@@ -1637,16 +1799,16 @@ class AXPCommonWidgetModule {
|
|
|
1637
1799
|
service.register({
|
|
1638
1800
|
component: {
|
|
1639
1801
|
view: {
|
|
1640
|
-
component: () => import('./acorex-platform-common-text-widget-view.component-
|
|
1802
|
+
component: () => import('./acorex-platform-common-text-widget-view.component-BpxTaeQW.mjs').then((c) => c.AXPTextWidgetViewComponent),
|
|
1641
1803
|
},
|
|
1642
1804
|
filter: {
|
|
1643
|
-
component: () => import('./acorex-platform-common-string-widget-filter.component-
|
|
1805
|
+
component: () => import('./acorex-platform-common-string-widget-filter.component-CrGt6Bov.mjs').then((c) => c.AXPStringWidgetFilterComponent),
|
|
1644
1806
|
},
|
|
1645
1807
|
edit: {
|
|
1646
|
-
component: () => import('./acorex-platform-common-text-widget-edit.component-
|
|
1808
|
+
component: () => import('./acorex-platform-common-text-widget-edit.component-ed0MUYnD.mjs').then((c) => c.AXPTextWidgetEditComponent),
|
|
1647
1809
|
},
|
|
1648
1810
|
column: {
|
|
1649
|
-
component: () => import('./acorex-platform-common-text-widget-column.component-
|
|
1811
|
+
component: () => import('./acorex-platform-common-text-widget-column.component-qXusAevm.mjs').then((c) => c.AXPTextWidgetColumnComponent),
|
|
1650
1812
|
options: { allowResizing: true },
|
|
1651
1813
|
},
|
|
1652
1814
|
},
|
|
@@ -1661,7 +1823,7 @@ class AXPCommonWidgetModule {
|
|
|
1661
1823
|
name: widgetSchemas.largetext,
|
|
1662
1824
|
component: {
|
|
1663
1825
|
edit: {
|
|
1664
|
-
component: () => import('./acorex-platform-common-largetext-widget-edit.component-
|
|
1826
|
+
component: () => import('./acorex-platform-common-largetext-widget-edit.component-BCtGkz1a.mjs').then((c) => c.AXPLargeTextWidgetEditComponent),
|
|
1665
1827
|
},
|
|
1666
1828
|
column: {
|
|
1667
1829
|
options: {
|
|
@@ -1674,16 +1836,16 @@ class AXPCommonWidgetModule {
|
|
|
1674
1836
|
service.register({
|
|
1675
1837
|
component: {
|
|
1676
1838
|
view: {
|
|
1677
|
-
component: () => import('./acorex-platform-common-number-widget-view.component-
|
|
1839
|
+
component: () => import('./acorex-platform-common-number-widget-view.component-DD0tkoc4.mjs').then((c) => c.AXPNumberWidgetViewComponent),
|
|
1678
1840
|
},
|
|
1679
1841
|
filter: {
|
|
1680
|
-
component: () => import('./acorex-platform-common-number-widget-filter.component-
|
|
1842
|
+
component: () => import('./acorex-platform-common-number-widget-filter.component-B2JCpDjU.mjs').then((c) => c.AXPNumberWidgetFilterComponent),
|
|
1681
1843
|
},
|
|
1682
1844
|
edit: {
|
|
1683
|
-
component: () => import('./acorex-platform-common-number-widget-edit.component-
|
|
1845
|
+
component: () => import('./acorex-platform-common-number-widget-edit.component-B1XXga-9.mjs').then((c) => c.AXPNumberWidgetEditComponent),
|
|
1684
1846
|
},
|
|
1685
1847
|
column: {
|
|
1686
|
-
component: () => import('./acorex-platform-common-number-widget-view.component-
|
|
1848
|
+
component: () => import('./acorex-platform-common-number-widget-view.component-DD0tkoc4.mjs').then((c) => c.AXPNumberWidgetViewComponent),
|
|
1687
1849
|
options: { allowResizing: true },
|
|
1688
1850
|
},
|
|
1689
1851
|
},
|
|
@@ -1711,17 +1873,17 @@ class AXPCommonWidgetModule {
|
|
|
1711
1873
|
service.register({
|
|
1712
1874
|
component: {
|
|
1713
1875
|
view: {
|
|
1714
|
-
component: () => import('./acorex-platform-common-phone-widget-view.component-
|
|
1876
|
+
component: () => import('./acorex-platform-common-phone-widget-view.component-Br3xbaDd.mjs').then((c) => c.AXPPhoneWidgetViewComponent),
|
|
1715
1877
|
},
|
|
1716
1878
|
column: {
|
|
1717
|
-
component: () => import('./acorex-platform-common-phone-widget-column.component-
|
|
1879
|
+
component: () => import('./acorex-platform-common-phone-widget-column.component-BL9Xl2XH.mjs').then((c) => c.AXPPhoneWidgetColumnComponent),
|
|
1718
1880
|
options: { allowResizing: true },
|
|
1719
1881
|
},
|
|
1720
1882
|
edit: {
|
|
1721
|
-
component: () => import('./acorex-platform-common-phone-widget-edit.component-
|
|
1883
|
+
component: () => import('./acorex-platform-common-phone-widget-edit.component-DSh9zoZj.mjs').then((c) => c.AXPPhoneWidgetEditComponent),
|
|
1722
1884
|
},
|
|
1723
1885
|
filter: {
|
|
1724
|
-
component: () => import('./acorex-platform-common-string-widget-filter.component-
|
|
1886
|
+
component: () => import('./acorex-platform-common-string-widget-filter.component-CrGt6Bov.mjs').then((c) => c.AXPStringWidgetFilterComponent),
|
|
1725
1887
|
},
|
|
1726
1888
|
},
|
|
1727
1889
|
name: widgetSchemas.phone,
|
|
@@ -1735,16 +1897,16 @@ class AXPCommonWidgetModule {
|
|
|
1735
1897
|
service.register({
|
|
1736
1898
|
component: {
|
|
1737
1899
|
view: {
|
|
1738
|
-
component: () => import('./acorex-platform-common-email-widget-view.component-
|
|
1900
|
+
component: () => import('./acorex-platform-common-email-widget-view.component-C2aQ14k-.mjs').then((c) => c.AXPEmailWidgetViewComponent),
|
|
1739
1901
|
},
|
|
1740
1902
|
edit: {
|
|
1741
|
-
component: () => import('./acorex-platform-common-email-widget-edit.component-
|
|
1903
|
+
component: () => import('./acorex-platform-common-email-widget-edit.component-CgHPGccx.mjs').then((c) => c.AXPEmailWidgetEditComponent),
|
|
1742
1904
|
},
|
|
1743
1905
|
filter: {
|
|
1744
|
-
component: () => import('./acorex-platform-common-string-widget-filter.component-
|
|
1906
|
+
component: () => import('./acorex-platform-common-string-widget-filter.component-CrGt6Bov.mjs').then((c) => c.AXPStringWidgetFilterComponent),
|
|
1745
1907
|
},
|
|
1746
1908
|
column: {
|
|
1747
|
-
component: () => import('./acorex-platform-common-email-widget-column.component-
|
|
1909
|
+
component: () => import('./acorex-platform-common-email-widget-column.component-BgNdL62k.mjs').then((c) => c.AXPEmailWidgetColumnComponent),
|
|
1748
1910
|
options: { allowResizing: true },
|
|
1749
1911
|
},
|
|
1750
1912
|
},
|
|
@@ -1759,16 +1921,16 @@ class AXPCommonWidgetModule {
|
|
|
1759
1921
|
service.register({
|
|
1760
1922
|
component: {
|
|
1761
1923
|
view: {
|
|
1762
|
-
component: () => import('./acorex-platform-common-dateTime-widget-view.component-
|
|
1924
|
+
component: () => import('./acorex-platform-common-dateTime-widget-view.component-CjVjQkPh.mjs').then((c) => c.AXPDateTimeWidgetViewComponent),
|
|
1763
1925
|
},
|
|
1764
1926
|
edit: {
|
|
1765
|
-
component: () => import('./acorex-platform-common-dateTime-widget-edit.component-
|
|
1927
|
+
component: () => import('./acorex-platform-common-dateTime-widget-edit.component-D8FSiqAo.mjs').then((c) => c.AXPDateTimeWidgetEditComponent),
|
|
1766
1928
|
},
|
|
1767
1929
|
filter: {
|
|
1768
|
-
component: () => import('./acorex-platform-common-dateTime-widget-filter.component-
|
|
1930
|
+
component: () => import('./acorex-platform-common-dateTime-widget-filter.component-Df0DuDtw.mjs').then((c) => c.AXPDateTimeWidgetFilterComponent),
|
|
1769
1931
|
},
|
|
1770
1932
|
column: {
|
|
1771
|
-
component: () => import('./acorex-platform-common-dateTime-widget-column.component-
|
|
1933
|
+
component: () => import('./acorex-platform-common-dateTime-widget-column.component-5ljYmtHI.mjs').then((c) => c.AXPDateTimeWidgetColumnComponent),
|
|
1772
1934
|
options: {
|
|
1773
1935
|
width: '200px',
|
|
1774
1936
|
allowResizing: true,
|
|
@@ -1815,16 +1977,16 @@ class AXPCommonWidgetModule {
|
|
|
1815
1977
|
service.register({
|
|
1816
1978
|
component: {
|
|
1817
1979
|
view: {
|
|
1818
|
-
component: () => import('./acorex-platform-common-toggle-widget-view.component-
|
|
1980
|
+
component: () => import('./acorex-platform-common-toggle-widget-view.component-DWYcIPTd.mjs').then((c) => c.AXPToggleWidgetViewComponent),
|
|
1819
1981
|
},
|
|
1820
1982
|
edit: {
|
|
1821
|
-
component: () => import('./acorex-platform-common-toggle-widget-edit.component-
|
|
1983
|
+
component: () => import('./acorex-platform-common-toggle-widget-edit.component-CDG62BJN.mjs').then((c) => c.AXPToggleWidgetEditComponent),
|
|
1822
1984
|
},
|
|
1823
1985
|
filter: {
|
|
1824
|
-
component: () => import('./acorex-platform-common-boolean-widget-filter.component-
|
|
1986
|
+
component: () => import('./acorex-platform-common-boolean-widget-filter.component-BTcOjuUm.mjs').then((c) => c.AXPBooleanWidgetFilterComponent),
|
|
1825
1987
|
},
|
|
1826
1988
|
column: {
|
|
1827
|
-
component: () => import('./acorex-platform-common-toggle-widget-column.component-
|
|
1989
|
+
component: () => import('./acorex-platform-common-toggle-widget-column.component-BqiUQrmV.mjs').then((c) => c.AXPToggleWidgetColumnComponent),
|
|
1828
1990
|
options: {
|
|
1829
1991
|
width: '100px',
|
|
1830
1992
|
allowResizing: true
|
|
@@ -1842,16 +2004,16 @@ class AXPCommonWidgetModule {
|
|
|
1842
2004
|
service.register({
|
|
1843
2005
|
component: {
|
|
1844
2006
|
view: {
|
|
1845
|
-
component: () => import('./acorex-platform-common-checkbox-widget-view.component-
|
|
2007
|
+
component: () => import('./acorex-platform-common-checkbox-widget-view.component-nYmtb8bK.mjs').then((c) => c.AXPCheckboxWidgetViewComponent),
|
|
1846
2008
|
},
|
|
1847
2009
|
edit: {
|
|
1848
|
-
component: () => import('./acorex-platform-common-checkbox-widget-edit.component-
|
|
2010
|
+
component: () => import('./acorex-platform-common-checkbox-widget-edit.component-_jtT03Vn.mjs').then((c) => c.AXPCheckboxWidgetEditComponent),
|
|
1849
2011
|
},
|
|
1850
2012
|
filter: {
|
|
1851
|
-
component: () => import('./acorex-platform-common-boolean-widget-filter.component-
|
|
2013
|
+
component: () => import('./acorex-platform-common-boolean-widget-filter.component-BTcOjuUm.mjs').then((c) => c.AXPBooleanWidgetFilterComponent),
|
|
1852
2014
|
},
|
|
1853
2015
|
column: {
|
|
1854
|
-
component: () => import('./acorex-platform-common-checkbox-widget-column.component-
|
|
2016
|
+
component: () => import('./acorex-platform-common-checkbox-widget-column.component-X9d1iY_F.mjs').then((c) => c.AXPCheckboxWidgetColumnComponent),
|
|
1855
2017
|
options: {
|
|
1856
2018
|
width: '100px',
|
|
1857
2019
|
allowResizing: true
|
|
@@ -1869,16 +2031,16 @@ class AXPCommonWidgetModule {
|
|
|
1869
2031
|
service.register({
|
|
1870
2032
|
component: {
|
|
1871
2033
|
view: {
|
|
1872
|
-
component: () => import('./acorex-platform-common-password-widget-view.component-
|
|
2034
|
+
component: () => import('./acorex-platform-common-password-widget-view.component-o9S7pwJW.mjs').then((c) => c.AXPPasswordWidgetViewComponent),
|
|
1873
2035
|
},
|
|
1874
2036
|
column: {
|
|
1875
|
-
component: () => import('./acorex-platform-common-password-widget-column.component-
|
|
2037
|
+
component: () => import('./acorex-platform-common-password-widget-column.component-eyqgQlAt.mjs').then((c) => c.AXPPasswordWidgetColumnComponent),
|
|
1876
2038
|
options: {
|
|
1877
2039
|
allowResizing: true
|
|
1878
2040
|
}
|
|
1879
2041
|
},
|
|
1880
2042
|
edit: {
|
|
1881
|
-
component: () => import('./acorex-platform-common-password-widget-edit.component-
|
|
2043
|
+
component: () => import('./acorex-platform-common-password-widget-edit.component-C2yNb9Pl.mjs').then((c) => c.AXPPasswordWidgetEditComponent),
|
|
1882
2044
|
},
|
|
1883
2045
|
},
|
|
1884
2046
|
filterOptions: {
|
|
@@ -1892,19 +2054,19 @@ class AXPCommonWidgetModule {
|
|
|
1892
2054
|
service.register({
|
|
1893
2055
|
component: {
|
|
1894
2056
|
view: {
|
|
1895
|
-
component: () => import('./acorex-platform-common-file-widget-view.component-
|
|
2057
|
+
component: () => import('./acorex-platform-common-file-widget-view.component-BC9l3YrO.mjs').then((c) => c.AXPFileWidgetViewComponent),
|
|
1896
2058
|
},
|
|
1897
2059
|
column: {
|
|
1898
|
-
component: () => import('./acorex-platform-common-file-widget-column.component-
|
|
2060
|
+
component: () => import('./acorex-platform-common-file-widget-column.component-CwFzLLHt.mjs').then((c) => c.AXPFileWidgetColumnComponent),
|
|
1899
2061
|
options: {
|
|
1900
2062
|
allowResizing: true
|
|
1901
2063
|
}
|
|
1902
2064
|
},
|
|
1903
2065
|
edit: {
|
|
1904
|
-
component: () => import('./acorex-platform-common-file-widget-edit.component-
|
|
2066
|
+
component: () => import('./acorex-platform-common-file-widget-edit.component-DxoQR4CU.mjs').then((c) => c.AXPFileWidgetEditComponent),
|
|
1905
2067
|
},
|
|
1906
2068
|
filter: {
|
|
1907
|
-
component: () => import('./acorex-platform-common-file-widget-filter.component-
|
|
2069
|
+
component: () => import('./acorex-platform-common-file-widget-filter.component-BvG0iaKU.mjs').then((c) => c.AXPFileWidgetFilterComponent),
|
|
1908
2070
|
},
|
|
1909
2071
|
},
|
|
1910
2072
|
filterOptions: {
|
|
@@ -1918,16 +2080,16 @@ class AXPCommonWidgetModule {
|
|
|
1918
2080
|
service.register({
|
|
1919
2081
|
component: {
|
|
1920
2082
|
view: {
|
|
1921
|
-
component: () => import('./acorex-platform-common-lookup-widget-view.component-
|
|
2083
|
+
component: () => import('./acorex-platform-common-lookup-widget-view.component-BHqYDEuU.mjs').then((c) => c.AXPLookupWidgetViewComponent),
|
|
1922
2084
|
},
|
|
1923
2085
|
edit: {
|
|
1924
|
-
component: () => import('./acorex-platform-common-lookup-widget-edit.component-
|
|
2086
|
+
component: () => import('./acorex-platform-common-lookup-widget-edit.component-Do_yV2hi.mjs').then((c) => c.AXPLookupWidgetEditComponent),
|
|
1925
2087
|
},
|
|
1926
2088
|
filter: {
|
|
1927
|
-
component: () => import('./acorex-platform-common-lookup-widget-filter.component-
|
|
2089
|
+
component: () => import('./acorex-platform-common-lookup-widget-filter.component-AKqbYe-l.mjs').then((c) => c.AXPLookupWidgetFilterComponent),
|
|
1928
2090
|
},
|
|
1929
2091
|
column: {
|
|
1930
|
-
component: () => import('./acorex-platform-common-lookup-widget-column.component-
|
|
2092
|
+
component: () => import('./acorex-platform-common-lookup-widget-column.component-Cl-vO5XW.mjs').then((c) => c.AXPLookupWidgetColumnComponent),
|
|
1931
2093
|
options: {
|
|
1932
2094
|
allowResizing: true
|
|
1933
2095
|
}
|
|
@@ -1944,19 +2106,19 @@ class AXPCommonWidgetModule {
|
|
|
1944
2106
|
service.register({
|
|
1945
2107
|
component: {
|
|
1946
2108
|
view: {
|
|
1947
|
-
component: () => import('./acorex-platform-common-selection-list-widget-view.component-
|
|
2109
|
+
component: () => import('./acorex-platform-common-selection-list-widget-view.component-Bxvd_AKZ.mjs').then((c) => c.AXPSelectionListWidgetViewComponent),
|
|
1948
2110
|
},
|
|
1949
2111
|
edit: {
|
|
1950
|
-
component: () => import('./acorex-platform-common-selection-list-widget-edit.component-
|
|
2112
|
+
component: () => import('./acorex-platform-common-selection-list-widget-edit.component-B5eUdN2R.mjs').then((c) => c.AXPSelectionListWidgetEditComponent),
|
|
1951
2113
|
},
|
|
1952
2114
|
column: {
|
|
1953
|
-
component: () => import('./acorex-platform-common-selection-list-widget-column.component-
|
|
2115
|
+
component: () => import('./acorex-platform-common-selection-list-widget-column.component-BCCmg8MI.mjs').then((c) => c.AXPSelectionListWidgetColumnComponent),
|
|
1954
2116
|
options: {
|
|
1955
2117
|
allowResizing: true
|
|
1956
2118
|
}
|
|
1957
2119
|
},
|
|
1958
2120
|
filter: {
|
|
1959
|
-
component: () => import('./acorex-platform-common-selection-list-widget-filter.component-
|
|
2121
|
+
component: () => import('./acorex-platform-common-selection-list-widget-filter.component-DPpZq1TB.mjs').then((c) => c.AXPSelectionListWidgetFilterComponent),
|
|
1960
2122
|
},
|
|
1961
2123
|
},
|
|
1962
2124
|
filterOptions: {
|
|
@@ -1970,22 +2132,22 @@ class AXPCommonWidgetModule {
|
|
|
1970
2132
|
service.register({
|
|
1971
2133
|
component: {
|
|
1972
2134
|
view: {
|
|
1973
|
-
component: () => import('./acorex-platform-common-rich-text-widget-view.component-
|
|
2135
|
+
component: () => import('./acorex-platform-common-rich-text-widget-view.component-CxTPcEIQ.mjs').then((c) => c.AXPRichTextWidgetViewComponent),
|
|
1974
2136
|
},
|
|
1975
2137
|
edit: {
|
|
1976
|
-
component: () => import('./acorex-platform-common-rich-text-widget-edit.component-
|
|
2138
|
+
component: () => import('./acorex-platform-common-rich-text-widget-edit.component-Dz1toc21.mjs').then((c) => c.AXPRichTextWidgetEditComponent),
|
|
1977
2139
|
options: {
|
|
1978
2140
|
allowResizing: true
|
|
1979
2141
|
}
|
|
1980
2142
|
},
|
|
1981
2143
|
column: {
|
|
1982
|
-
component: () => import('./acorex-platform-common-rich-text-widget-column.component-
|
|
2144
|
+
component: () => import('./acorex-platform-common-rich-text-widget-column.component-DDT58tca.mjs').then((c) => c.AXPRichTextWidgetColumnComponent),
|
|
1983
2145
|
options: {
|
|
1984
2146
|
width: '400px',
|
|
1985
2147
|
},
|
|
1986
2148
|
},
|
|
1987
2149
|
filter: {
|
|
1988
|
-
component: () => import('./acorex-platform-common-string-widget-filter.component-
|
|
2150
|
+
component: () => import('./acorex-platform-common-string-widget-filter.component-CrGt6Bov.mjs').then((c) => c.AXPStringWidgetFilterComponent),
|
|
1989
2151
|
},
|
|
1990
2152
|
},
|
|
1991
2153
|
filterOptions: {
|
|
@@ -1999,10 +2161,10 @@ class AXPCommonWidgetModule {
|
|
|
1999
2161
|
service.register({
|
|
2000
2162
|
component: {
|
|
2001
2163
|
view: {
|
|
2002
|
-
component: () => import('./acorex-platform-common-map-widget-view.component-
|
|
2164
|
+
component: () => import('./acorex-platform-common-map-widget-view.component-DrGG3gzg.mjs').then((c) => c.AXPMapWidgetViewComponent),
|
|
2003
2165
|
},
|
|
2004
2166
|
edit: {
|
|
2005
|
-
component: () => import('./acorex-platform-common-map-widget-edit.component-
|
|
2167
|
+
component: () => import('./acorex-platform-common-map-widget-edit.component-SSrR3xxv.mjs').then((c) => c.AXPMapWidgetEditComponent),
|
|
2006
2168
|
},
|
|
2007
2169
|
},
|
|
2008
2170
|
filterOptions: {
|
|
@@ -2016,10 +2178,10 @@ class AXPCommonWidgetModule {
|
|
|
2016
2178
|
service.register({
|
|
2017
2179
|
component: {
|
|
2018
2180
|
view: {
|
|
2019
|
-
component: () => import('./acorex-platform-common-avatar-widget-view.component-
|
|
2181
|
+
component: () => import('./acorex-platform-common-avatar-widget-view.component-CJvrSkTv.mjs').then((c) => c.AXPAvatarWidgetViewComponent),
|
|
2020
2182
|
},
|
|
2021
2183
|
edit: {
|
|
2022
|
-
component: () => import('./acorex-platform-common-avatar-widget-edit.component-
|
|
2184
|
+
component: () => import('./acorex-platform-common-avatar-widget-edit.component-B-of5ssU.mjs').then((c) => c.AXPAvatarWidgetEditComponent),
|
|
2023
2185
|
},
|
|
2024
2186
|
},
|
|
2025
2187
|
filterOptions: {
|
|
@@ -2033,13 +2195,13 @@ class AXPCommonWidgetModule {
|
|
|
2033
2195
|
service.register({
|
|
2034
2196
|
component: {
|
|
2035
2197
|
view: {
|
|
2036
|
-
component: () => import('./acorex-platform-common-messenger-widget-view.component-
|
|
2198
|
+
component: () => import('./acorex-platform-common-messenger-widget-view.component-EBiPO9ds.mjs').then((c) => c.AXPMessengerWidgetViewComponent),
|
|
2037
2199
|
},
|
|
2038
2200
|
edit: {
|
|
2039
|
-
component: () => import('./acorex-platform-common-messenger-widget-edit.component-
|
|
2201
|
+
component: () => import('./acorex-platform-common-messenger-widget-edit.component-B_FG_n0O.mjs').then((c) => c.AXPMessengerWidgetEditComponent),
|
|
2040
2202
|
},
|
|
2041
2203
|
column: {
|
|
2042
|
-
component: () => import('./acorex-platform-common-messenger-widget-column.component-
|
|
2204
|
+
component: () => import('./acorex-platform-common-messenger-widget-column.component-BJ_XzNKc.mjs').then((c) => c.AXPMessengerWidgetColumnComponent),
|
|
2043
2205
|
options: {
|
|
2044
2206
|
allowResizing: true
|
|
2045
2207
|
}
|
|
@@ -2057,13 +2219,13 @@ class AXPCommonWidgetModule {
|
|
|
2057
2219
|
service.register({
|
|
2058
2220
|
component: {
|
|
2059
2221
|
view: {
|
|
2060
|
-
component: () => import('./acorex-platform-common-gallery-widget-view.component-
|
|
2222
|
+
component: () => import('./acorex-platform-common-gallery-widget-view.component-CnQONVdg.mjs').then((c) => c.AXPGalleryWidgetViewComponent),
|
|
2061
2223
|
},
|
|
2062
2224
|
edit: {
|
|
2063
|
-
component: () => import('./acorex-platform-common-gallery-widget-edit.component-
|
|
2225
|
+
component: () => import('./acorex-platform-common-gallery-widget-edit.component-BihOIJ9T.mjs').then((c) => c.AXPGalleryWidgetEditComponent),
|
|
2064
2226
|
},
|
|
2065
2227
|
filter: {
|
|
2066
|
-
component: () => import('./acorex-platform-common-gallery-widget-filter.component-
|
|
2228
|
+
component: () => import('./acorex-platform-common-gallery-widget-filter.component-DS1PCIJp.mjs').then((c) => c.AXPGalleryWidgetFilterComponent),
|
|
2067
2229
|
},
|
|
2068
2230
|
},
|
|
2069
2231
|
filterOptions: {
|
|
@@ -2077,10 +2239,10 @@ class AXPCommonWidgetModule {
|
|
|
2077
2239
|
service.register({
|
|
2078
2240
|
component: {
|
|
2079
2241
|
view: {
|
|
2080
|
-
component: () => import('./acorex-platform-common-signature-pad-widget-view.component-
|
|
2242
|
+
component: () => import('./acorex-platform-common-signature-pad-widget-view.component-CsiBv_7i.mjs').then((c) => c.AXPSignaturePadWidgetViewComponent),
|
|
2081
2243
|
},
|
|
2082
2244
|
edit: {
|
|
2083
|
-
component: () => import('./acorex-platform-common-signature-pad-widget-edit.component-
|
|
2245
|
+
component: () => import('./acorex-platform-common-signature-pad-widget-edit.component-CNjYCEi6.mjs').then((c) => c.AXPSignaturePadWidgetEditComponent),
|
|
2084
2246
|
},
|
|
2085
2247
|
},
|
|
2086
2248
|
filterOptions: {
|
|
@@ -2217,7 +2379,16 @@ class AXPDataGenerator {
|
|
|
2217
2379
|
}
|
|
2218
2380
|
return Math.floor(Math.random() * (max - min + 1)) + min;
|
|
2219
2381
|
}
|
|
2220
|
-
static date(
|
|
2382
|
+
static date(...args) {
|
|
2383
|
+
let start = new Date(2000, 0, 1);
|
|
2384
|
+
let end = new Date();
|
|
2385
|
+
if (args.length === 1) {
|
|
2386
|
+
start = args[0];
|
|
2387
|
+
}
|
|
2388
|
+
else if (args.length === 2) {
|
|
2389
|
+
start = args[0];
|
|
2390
|
+
end = args[1];
|
|
2391
|
+
}
|
|
2221
2392
|
const startTime = start.getTime();
|
|
2222
2393
|
const endTime = end.getTime();
|
|
2223
2394
|
return new Date(startTime + Math.random() * (endTime - startTime));
|
|
@@ -2225,6 +2396,27 @@ class AXPDataGenerator {
|
|
|
2225
2396
|
static array(length = 5, generator) {
|
|
2226
2397
|
return Array.from({ length }, generator);
|
|
2227
2398
|
}
|
|
2399
|
+
static pick(...args) {
|
|
2400
|
+
if (args.length < 1) {
|
|
2401
|
+
throw new Error('Invalid parameters');
|
|
2402
|
+
}
|
|
2403
|
+
const items = args[0];
|
|
2404
|
+
const count = args[1] ?? 1;
|
|
2405
|
+
if (count < 1) {
|
|
2406
|
+
throw new Error('Count must be at least 1');
|
|
2407
|
+
}
|
|
2408
|
+
// If the count is greater than the number of items, just return a shuffled copy of the array
|
|
2409
|
+
if (count >= items.length) {
|
|
2410
|
+
return [...items].sort(() => Math.random() - 0.5);
|
|
2411
|
+
}
|
|
2412
|
+
// Shuffle the array and slice the first 'count' elements
|
|
2413
|
+
const shuffled = items.slice();
|
|
2414
|
+
for (let i = shuffled.length - 1; i > 0; i--) {
|
|
2415
|
+
const j = Math.floor(Math.random() * (i + 1));
|
|
2416
|
+
[shuffled[i], shuffled[j]] = [shuffled[j], shuffled[i]]; // Swap elements
|
|
2417
|
+
}
|
|
2418
|
+
return count == 1 ? shuffled.slice(0, count)[0] : shuffled.slice(0, count);
|
|
2419
|
+
}
|
|
2228
2420
|
static string(length = 10) {
|
|
2229
2421
|
const chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
|
|
2230
2422
|
return Array.from({ length }, () => chars.charAt(Math.floor(Math.random() * chars.length))).join('');
|
|
@@ -2243,93 +2435,150 @@ class AXPDataGenerator {
|
|
|
2243
2435
|
const chars = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
|
|
2244
2436
|
return Array.from({ length }, () => chars.charAt(Math.floor(Math.random() * chars.length))).join('');
|
|
2245
2437
|
}
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
const AXPRedirectEvent = createWorkFlowEvent('Redirect Event Fired');
|
|
2250
|
-
class AXPWorkflowNavigateAction extends AXPWorkflowAction {
|
|
2251
|
-
constructor() {
|
|
2252
|
-
super(...arguments);
|
|
2253
|
-
this.router = inject(Router);
|
|
2438
|
+
static alphabet(length = 10) {
|
|
2439
|
+
const chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
|
|
2440
|
+
return Array.from({ length }, () => chars.charAt(Math.floor(Math.random() * chars.length))).join('');
|
|
2254
2441
|
}
|
|
2255
|
-
|
|
2256
|
-
const
|
|
2257
|
-
|
|
2258
|
-
|
|
2442
|
+
static phone() {
|
|
2443
|
+
const areaCode = this.number(100, 999);
|
|
2444
|
+
const exchangeCode = this.number(100, 999);
|
|
2445
|
+
const lineNumber = this.number(1000, 9999);
|
|
2446
|
+
return `${areaCode}-${exchangeCode}-${lineNumber}`;
|
|
2447
|
+
}
|
|
2448
|
+
static firstName() {
|
|
2449
|
+
const firstNames = ['John', 'Allen', 'Jak', 'Rose', 'Kate', 'Liam', 'Olivia', 'Noah', 'Emma', 'Ava'];
|
|
2450
|
+
return this.pick(firstNames);
|
|
2451
|
+
}
|
|
2452
|
+
static lastName() {
|
|
2453
|
+
const lastNames = ['Gates', 'Jonsen', 'Smith', 'Ford', 'Jakson', 'Brown', 'Johnson', 'Williams', 'Jones', 'Garcia'];
|
|
2454
|
+
return this.pick(lastNames);
|
|
2455
|
+
}
|
|
2456
|
+
static email(...args) {
|
|
2457
|
+
const domains = ['gmail.com', 'yahoo.com', 'outlook.com', 'example.com'];
|
|
2458
|
+
const domain = this.pick(domains);
|
|
2459
|
+
const separator = this.pick(['.', '_', '']);
|
|
2460
|
+
const randomSuffix = this.boolean() ? this.number(1, 99).toString() : '';
|
|
2461
|
+
if (args.length === 2) {
|
|
2462
|
+
const firstName = args[0].toLowerCase();
|
|
2463
|
+
const lastName = args[1].toLowerCase();
|
|
2464
|
+
return `${firstName}${separator}${lastName}${randomSuffix}@${domain}`;
|
|
2465
|
+
}
|
|
2259
2466
|
else {
|
|
2260
|
-
|
|
2261
|
-
|
|
2262
|
-
|
|
2263
|
-
this.router.navigate([payload.commands], payload.extras);
|
|
2467
|
+
const firstName = this.firstName().toLowerCase();
|
|
2468
|
+
const lastName = this.lastName().toLowerCase();
|
|
2469
|
+
return `${firstName}${separator}${lastName}${randomSuffix}@${domain}`;
|
|
2264
2470
|
}
|
|
2265
2471
|
}
|
|
2266
|
-
static
|
|
2267
|
-
|
|
2268
|
-
|
|
2269
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPWorkflowNavigateAction, decorators: [{
|
|
2270
|
-
type: Injectable
|
|
2271
|
-
}] });
|
|
2272
|
-
class AXPDialogConfirmAction extends AXPWorkflowAction {
|
|
2273
|
-
constructor() {
|
|
2274
|
-
super(...arguments);
|
|
2275
|
-
this.dialogService = inject(AXDialogService);
|
|
2472
|
+
static country() {
|
|
2473
|
+
const countries = ['USA', 'Canada', 'Mexico', 'Germany', 'France', 'Japan', 'Australia'];
|
|
2474
|
+
return this.pick(countries);
|
|
2276
2475
|
}
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
|
|
2280
|
-
context.setOutput('deleteConfirmed', dialogResult.result);
|
|
2476
|
+
static city() {
|
|
2477
|
+
const cities = ['New York', 'Los Angeles', 'Toronto', 'Vancouver', 'Berlin', 'Paris', 'Tokyo', 'Sydney'];
|
|
2478
|
+
return this.pick(cities);
|
|
2281
2479
|
}
|
|
2282
|
-
static
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPDialogConfirmAction, decorators: [{
|
|
2286
|
-
type: Injectable
|
|
2287
|
-
}] });
|
|
2288
|
-
class AXPToastAction extends AXPWorkflowAction {
|
|
2289
|
-
constructor() {
|
|
2290
|
-
super(...arguments);
|
|
2291
|
-
this.toastService = inject(AXToastService);
|
|
2480
|
+
static state() {
|
|
2481
|
+
const states = ['NY', 'CA', 'TX', 'ON', 'BC', 'NSW', 'BER', 'IDF', 'TYO'];
|
|
2482
|
+
return this.pick(states);
|
|
2292
2483
|
}
|
|
2293
|
-
|
|
2294
|
-
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
|
|
2298
|
-
|
|
2299
|
-
|
|
2300
|
-
|
|
2301
|
-
}
|
|
2484
|
+
static address() {
|
|
2485
|
+
const streets = ['Main St', 'High St', 'Maple Ave', 'Oak St', 'Pine St', 'Cedar St'];
|
|
2486
|
+
const streetNumber = this.number(100, 9999);
|
|
2487
|
+
const street = this.pick(streets);
|
|
2488
|
+
const city = this.city();
|
|
2489
|
+
const state = this.state();
|
|
2490
|
+
const zip = this.number(10000, 99999);
|
|
2491
|
+
const country = this.country();
|
|
2492
|
+
return `${streetNumber} ${street}, ${city}, ${state} ${zip}, ${country}`;
|
|
2302
2493
|
}
|
|
2303
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPToastAction, deps: null, target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2304
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPToastAction }); }
|
|
2305
2494
|
}
|
|
2306
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPToastAction, decorators: [{
|
|
2307
|
-
type: Injectable
|
|
2308
|
-
}] });
|
|
2309
2495
|
|
|
2310
|
-
|
|
2496
|
+
// AXPPdfService
|
|
2497
|
+
var AXPPdfPageSize;
|
|
2498
|
+
(function (AXPPdfPageSize) {
|
|
2499
|
+
AXPPdfPageSize["A4"] = "a4";
|
|
2500
|
+
AXPPdfPageSize["A5"] = "a5";
|
|
2501
|
+
AXPPdfPageSize["Letter"] = "letter";
|
|
2502
|
+
AXPPdfPageSize["Legal"] = "legal";
|
|
2503
|
+
AXPPdfPageSize["Custom"] = "custom"; // Handle custom sizes
|
|
2504
|
+
})(AXPPdfPageSize || (AXPPdfPageSize = {}));
|
|
2505
|
+
class AXPPdfService {
|
|
2311
2506
|
constructor() {
|
|
2312
|
-
this.
|
|
2313
|
-
}
|
|
2314
|
-
|
|
2315
|
-
|
|
2316
|
-
|
|
2317
|
-
|
|
2507
|
+
this.renderer = inject(RendererFactory2).createRenderer(null, null);
|
|
2508
|
+
}
|
|
2509
|
+
async generatePdfBlob(div, options = {}) {
|
|
2510
|
+
const { jsPDF } = await import('jspdf');
|
|
2511
|
+
const html2canvas = (await import('html2canvas')).default;
|
|
2512
|
+
const element = typeof div === 'string' ? document.getElementById(div) : div;
|
|
2513
|
+
if (!element) {
|
|
2514
|
+
console.error('Element not found.');
|
|
2515
|
+
return Promise.reject('Element not found.');
|
|
2516
|
+
}
|
|
2517
|
+
const { pageSize = AXPPdfPageSize.A4 } = options;
|
|
2518
|
+
let pdf;
|
|
2519
|
+
if (typeof pageSize === 'string' && pageSize !== AXPPdfPageSize.Custom) {
|
|
2520
|
+
pdf = new jsPDF({
|
|
2521
|
+
orientation: 'portrait',
|
|
2522
|
+
format: pageSize
|
|
2523
|
+
});
|
|
2524
|
+
}
|
|
2525
|
+
else if (typeof pageSize !== 'string') {
|
|
2526
|
+
const { width, height } = pageSize;
|
|
2527
|
+
pdf = new jsPDF({
|
|
2528
|
+
orientation: 'portrait',
|
|
2529
|
+
unit: 'pt',
|
|
2530
|
+
format: [width, height]
|
|
2531
|
+
});
|
|
2318
2532
|
}
|
|
2319
2533
|
else {
|
|
2320
|
-
|
|
2534
|
+
return Promise.reject("Invalid page size.");
|
|
2321
2535
|
}
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
|
|
2536
|
+
const canvas = await html2canvas(element);
|
|
2537
|
+
const imageData = canvas.toDataURL('image/png');
|
|
2538
|
+
const imgProps = pdf.getImageProperties(imageData);
|
|
2539
|
+
const pdfWidth = pdf.internal.pageSize.getWidth();
|
|
2540
|
+
const pdfHeight = (imgProps.height * pdfWidth) / imgProps.width;
|
|
2541
|
+
pdf.addImage(imageData, 'PNG', 0, 0, pdfWidth, pdfHeight);
|
|
2542
|
+
return pdf.output('bloburl');
|
|
2543
|
+
}
|
|
2544
|
+
async printPdf(div, options = {}) {
|
|
2545
|
+
const blobUrl = await this.generatePdfBlob(div, options).catch(err => {
|
|
2546
|
+
console.error('Failed to generate PDF', err);
|
|
2547
|
+
return null;
|
|
2548
|
+
});
|
|
2549
|
+
if (!blobUrl)
|
|
2550
|
+
return;
|
|
2551
|
+
const iframe = this.renderer.createElement('iframe');
|
|
2552
|
+
this.renderer.setStyle(iframe, 'display', 'none');
|
|
2553
|
+
this.renderer.appendChild(document.body, iframe);
|
|
2554
|
+
iframe.src = blobUrl;
|
|
2555
|
+
iframe.onload = () => {
|
|
2556
|
+
setTimeout(() => {
|
|
2557
|
+
iframe.contentWindow.print();
|
|
2558
|
+
}, 1000);
|
|
2559
|
+
};
|
|
2560
|
+
// Add a button or some UI element that allows the user to manually signal they are done printing
|
|
2561
|
+
// const finishButton = this.renderer.createElement('button');
|
|
2562
|
+
// this.renderer.setProperty(finishButton, 'innerText', 'Finish Printing');
|
|
2563
|
+
// this.renderer.listen(finishButton, 'click', () => {
|
|
2564
|
+
// this.renderer.removeChild(document.body, iframe);
|
|
2565
|
+
// this.renderer.removeChild(document.body, finishButton);
|
|
2566
|
+
// });
|
|
2567
|
+
// this.renderer.appendChild(document.body, finishButton);
|
|
2568
|
+
}
|
|
2569
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPdfService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2570
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPdfService, providedIn: 'root' }); }
|
|
2325
2571
|
}
|
|
2326
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type:
|
|
2327
|
-
type: Injectable
|
|
2572
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.2", ngImport: i0, type: AXPPdfService, decorators: [{
|
|
2573
|
+
type: Injectable,
|
|
2574
|
+
args: [{
|
|
2575
|
+
providedIn: 'root'
|
|
2576
|
+
}]
|
|
2328
2577
|
}] });
|
|
2329
2578
|
|
|
2330
2579
|
/**
|
|
2331
2580
|
* Generated bundle index. Do not edit.
|
|
2332
2581
|
*/
|
|
2333
2582
|
|
|
2334
|
-
export { AXEntityLoaderDefault, AXMWorkflowErrorHandler, AXMenuLoaderDefault, AXPClipBoardService, AXPCommonEffects, AXPCommonModule, AXPCommonWidgetModule, AXPComponentLogoConfig, AXPComponentSlotDirective, AXPComponentSlotLoaderService, AXPComponentSlotModule, AXPComponentSlotRegistryService, AXPDataGenerator, AXPDataProvider, AXPDialogConfirmAction, AXPEntityCommandScope, AXPEntityListViewConfigEmpty, AXPEntityQueryType, AXPEntityRegistryService, AXPErrorHandlerRegistryService, AXPFontIconLogoConfig, AXPFooterTextSlotComponent, AXPGlobalErrorHandler, AXPGridLayoutDirective, AXPImageUrlLogoConfig, AXPLayoutChildDrawerClose, AXPLayoutChildDrawerToggle, AXPLayoutEffects, AXPLayoutFeature, AXPLayoutRootDrawerClose, AXPLayoutRootDrawerToggle, AXPLayoutService, AXPLayoutThemeDarkToggleAction, AXPLoadInitState, AXPLoadingHideAction, AXPLoadingShowAction, AXPLogoComponent, AXPNavBarSlotComponent, AXPNavigateAction, AXPPlatformDefaultConfigs, AXPRedirectEvent, AXPRelationshipCardinality, AXPRelationshipKind, AXPRouteUtilityService, AXPSchemaModule, AXPSchemaRegistryService, AXPSettingsService, AXPSignInAction, AXPSignOutAction, AXPStickyDirective, AXPTextLogoConfig, AXPThemeSlotComponent, AXPToastAction, AXPWidgetBase, AXPWidgetColumnRendererComponent, AXPWidgetEditBase, AXPWidgetFilterBase, AXPWidgetFilterRendererComponent, AXPWidgetRendererComponent, AXPWindowResizeAction, AXPWorkflowNavigateAction, AXP_ENTITY_LOADER, AXP_MENU_LOADER, AXP_PLATFORM_CONFIG_TOKEN, AXP_ROOT_CONFIG_TOKEN, AXP_SETTINGS_LOADER, AXP_WIDGET_TOKEN, BETWEEN_OPER, BOOLEAN_OPERATORS, CONTAINS_OPER, DATE_OPERATORS, ENDS_WITH_OPER, 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, isDarkTheme, isLoading, isSmallScreen, name, reducer, resolveActionLook, selectLayoutState, widgetSchemas };
|
|
2583
|
+
export { AXEntityLoaderDefault, AXMWorkflowErrorHandler, AXMenuLoaderDefault, AXPClipBoardService, AXPCommonEffects, AXPCommonModule, AXPCommonWidgetModule, AXPComponentLogoConfig, AXPComponentSlotDirective, AXPComponentSlotLoaderService, AXPComponentSlotModule, AXPComponentSlotRegistryService, AXPDataGenerator, AXPDataProvider, AXPDexieStorageService, AXPDialogConfirmAction, AXPEntityCommandScope, AXPEntityDataProvider, AXPEntityDataProviderImpl, AXPEntityListViewConfigEmpty, AXPEntityQueryType, AXPEntityRegistryService, AXPErrorHandlerRegistryService, AXPFontIconLogoConfig, AXPFooterTextSlotComponent, AXPGlobalErrorHandler, AXPGridLayoutDirective, AXPImageUrlLogoConfig, AXPLayoutChildDrawerClose, AXPLayoutChildDrawerToggle, AXPLayoutEffects, AXPLayoutFeature, AXPLayoutRootDrawerClose, AXPLayoutRootDrawerToggle, AXPLayoutService, AXPLayoutThemeDarkToggleAction, AXPLoadInitState, AXPLoadingHideAction, AXPLoadingShowAction, AXPLogoComponent, AXPNavBarSlotComponent, AXPNavigateAction, AXPPdfPageSize, AXPPdfService, AXPPlatformDefaultConfigs, AXPRedirectEvent, AXPRelationshipCardinality, AXPRelationshipKind, AXPRouteUtilityService, AXPSchemaModule, AXPSchemaRegistryService, AXPSettingsService, AXPSignInAction, AXPSignOutAction, AXPStickyDirective, AXPStorageService, AXPTextLogoConfig, AXPThemeSlotComponent, AXPToastAction, AXPWidgetBase, AXPWidgetColumnRendererComponent, AXPWidgetEditBase, AXPWidgetFilterBase, AXPWidgetFilterRendererComponent, AXPWidgetRendererComponent, AXPWindowResizeAction, AXPWorkflowNavigateAction, AXP_ENTITY_LOADER, AXP_MENU_LOADER, AXP_PLATFORM_CONFIG_TOKEN, AXP_ROOT_CONFIG_TOKEN, AXP_SETTINGS_LOADER, AXP_WIDGET_TOKEN, BETWEEN_OPER, BOOLEAN_OPERATORS, CONTAINS_OPER, DATE_OPERATORS, ENDS_WITH_OPER, 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, isDarkTheme, isLoading, isSmallScreen, name, reducer, resolveActionLook, selectLayoutState, widgetSchemas };
|
|
2335
2584
|
//# sourceMappingURL=acorex-platform-common.mjs.map
|