@acorex/modules 19.2.12 → 19.2.16
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/application-management/lib/application-management.service.d.ts +1 -1
- package/application-management/lib/application-management.types.d.ts +1 -1
- package/application-management/lib/services/application-management.service.d.ts +1 -1
- package/application-management/lib/services/application-module-management.service.d.ts +1 -1
- package/application-management/lib/services/edition-management.service.d.ts +1 -1
- package/application-management/lib/services/entity-management.service.d.ts +1 -1
- package/application-management/lib/services/feature-management.service.d.ts +1 -1
- package/application-management/lib/services/module-management.service.d.ts +1 -1
- package/application-management/lib/services/permission-management.service.d.ts +1 -1
- package/application-management/lib/services/property-management.service.d.ts +1 -1
- package/auth/lib/auth.module.d.ts +2 -3
- package/auth/lib/pages/login/password/password.component.d.ts +1 -0
- package/common/README.md +3 -0
- package/common/index.d.ts +6 -0
- package/common/lib/common.module.d.ts +6 -0
- package/common/lib/const.d.ts +25 -0
- package/common/lib/entities/dashboard/dashboard.entity.d.ts +3 -0
- package/common/lib/entities/dashboard/dashboard.service.d.ts +10 -0
- package/common/lib/entities/dashboard/dashboard.types.d.ts +8 -0
- package/common/lib/entities/dashboard/index.d.ts +3 -0
- package/common/lib/entities/dashboard-widget-data/dashboard-widget-data.entity.d.ts +3 -0
- package/common/lib/entities/dashboard-widget-data/dashboard-widget-data.service.d.ts +10 -0
- package/common/lib/entities/dashboard-widget-data/dashboard-widget-data.types.d.ts +9 -0
- package/common/lib/entities/dashboard-widget-data/index.d.ts +3 -0
- package/common/lib/entities/index.d.ts +2 -0
- package/common/lib/entity.provider.d.ts +10 -0
- package/common/lib/features/home/dashboard-home.d.ts +5 -0
- package/common/lib/features/home/index.d.ts +1 -0
- package/common/lib/menu.provider.d.ts +5 -0
- package/common/lib/permission.provider.d.ts +4 -0
- package/common/lib/search-command.provider.d.ts +4 -0
- package/common/lib/setting.provider.d.ts +4 -0
- package/conversation/lib/entities/chat/chat.service.d.ts +1 -1
- package/conversation/lib/entities/chat/chat.type.d.ts +1 -1
- package/conversation/lib/entities/chat/pages/chat/chat.component.d.ts +1 -1
- package/conversation/lib/entities/comments/comments.service.d.ts +1 -1
- package/conversation/lib/entities/comments/comments.type.d.ts +1 -1
- package/document-management/index.d.ts +1 -0
- package/document-management/lib/const.d.ts +6 -5
- package/document-management/lib/document-management.module.d.ts +3 -1
- package/document-management/lib/entities/document/document.service.d.ts +15 -5
- package/document-management/lib/entities/document/document.types.d.ts +2 -1
- package/document-management/lib/entities/document-type/document-type.service.d.ts +1 -1
- package/document-management/lib/entities/document-type/document-type.types.d.ts +16 -1
- package/document-management/lib/entities/document-type-meta-definition/document-type-meta-definition.service.d.ts +1 -1
- package/document-management/lib/entities/document-type-meta-definition/document-type-meta-definition.types.d.ts +1 -1
- package/document-management/lib/entities/document-type-meta-value/document-type-meta-value.service.d.ts +1 -1
- package/document-management/lib/entities/document-type-meta-value/document-type-meta-value.types.d.ts +1 -1
- package/document-management/lib/entities/document-type-status-definition/document-type-status-definition.service.d.ts +1 -1
- package/document-management/lib/entities/document-type-status-definition/document-type-status-definition.types.d.ts +1 -1
- package/document-management/lib/entities/folder/folder.entity.d.ts +3 -0
- package/document-management/lib/entities/folder/folder.service.d.ts +19 -0
- package/document-management/lib/entities/folder/folder.types.d.ts +37 -0
- package/document-management/lib/entities/folder/index.d.ts +3 -0
- package/document-management/lib/entities/index.d.ts +6 -0
- package/document-management/lib/features/document-explorer/components/create-folder-dialog/create-folder-dialog.component.d.ts +14 -0
- package/document-management/lib/features/document-explorer/components/rename-node-dialog/rename-node-dialog.component.d.ts +14 -0
- package/document-management/lib/features/document-explorer/document-explorer.component.d.ts +76 -0
- package/document-management/lib/features/document-explorer/document-explorer.viewmodel.d.ts +57 -0
- package/document-management/lib/features/document-explorer/index.d.ts +3 -0
- package/document-management/lib/features/document-explorer/settings.keys.d.ts +5 -0
- package/document-management/lib/features/drive/drive.component.d.ts +201 -0
- package/document-management/lib/features/drive/index.d.ts +3 -0
- package/document-management/lib/features/file-type/file-type.module.d.ts +6 -0
- package/document-management/lib/features/file-type/index.d.ts +2 -0
- package/document-management/lib/features/file-type/providers/archive.file.d.ts +4 -0
- package/document-management/lib/features/file-type/providers/audio.file.d.ts +4 -0
- package/document-management/lib/features/file-type/providers/code.file.d.ts +4 -0
- package/document-management/lib/features/file-type/providers/document.file.d.ts +4 -0
- package/document-management/lib/features/file-type/providers/image.file.d.ts +4 -0
- package/document-management/lib/features/file-type/providers/index.d.ts +6 -0
- package/document-management/lib/features/file-type/providers/video.file.d.ts +4 -0
- package/document-management/lib/features/file-type/widgets/file-type-extension/file-type-extension-column.component.d.ts +6 -0
- package/document-management/lib/features/file-type/widgets/file-type-extension/file-type-extension-designer.component.d.ts +6 -0
- package/document-management/lib/features/file-type/widgets/file-type-extension/file-type-extension-edit.component.d.ts +18 -0
- package/document-management/lib/features/file-type/widgets/file-type-extension/file-type-extension-view.component.d.ts +6 -0
- package/document-management/lib/features/file-type/widgets/file-type-extension/file-type-extension-widget.config.d.ts +7 -0
- package/document-management/lib/features/file-type/widgets/file-type-extension/index.d.ts +5 -0
- package/document-management/lib/features/file-type/widgets/index.d.ts +1 -0
- package/document-management/lib/features/shared/document-manager.service.d.ts +209 -0
- package/document-management/lib/features/shared/document-manager.types.d.ts +21 -0
- package/document-management/lib/features/shared/index.d.ts +1 -0
- package/document-management/lib/features/widgets/document-attachment/document-attachment-widget-column.component.d.ts +6 -0
- package/document-management/lib/features/widgets/document-attachment/document-attachment-widget-edit.component.d.ts +6 -0
- package/document-management/lib/features/widgets/document-attachment/document-attachment-widget-filter.component.d.ts +6 -0
- package/document-management/lib/features/widgets/document-attachment/document-attachment-widget-print.component.d.ts +6 -0
- package/document-management/lib/features/widgets/document-attachment/document-attachment-widget-view.component.d.ts +6 -0
- package/document-management/lib/features/widgets/document-attachment/document-attachment-widget.config.d.ts +7 -0
- package/document-management/lib/features/widgets/document-attachment/index.d.ts +6 -0
- package/document-management/lib/features/widgets/index.d.ts +1 -0
- package/document-management/lib/menu.provider.d.ts +1 -0
- package/fesm2022/acorex-modules-application-management.mjs +3 -3
- package/fesm2022/acorex-modules-application-management.mjs.map +1 -1
- package/fesm2022/{acorex-modules-auth-acorex-modules-auth-D1qxdECo.mjs → acorex-modules-auth-acorex-modules-auth-DTje3YIv.mjs} +53 -133
- package/fesm2022/acorex-modules-auth-acorex-modules-auth-DTje3YIv.mjs.map +1 -0
- package/fesm2022/{acorex-modules-auth-app-chooser.component-8GCTwtb2.mjs → acorex-modules-auth-app-chooser.component-CZxX5-T_.mjs} +2 -2
- package/fesm2022/{acorex-modules-auth-app-chooser.component-8GCTwtb2.mjs.map → acorex-modules-auth-app-chooser.component-CZxX5-T_.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-auth-login.module-DR3QLEM-.mjs → acorex-modules-auth-login.module-B9P2XpfQ.mjs} +4 -4
- package/fesm2022/{acorex-modules-auth-login.module-DR3QLEM-.mjs.map → acorex-modules-auth-login.module-B9P2XpfQ.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-auth-master.layout-BMJ5mW63.mjs → acorex-modules-auth-master.layout-BYC0FYq1.mjs} +2 -2
- package/fesm2022/{acorex-modules-auth-master.layout-BMJ5mW63.mjs.map → acorex-modules-auth-master.layout-BYC0FYq1.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-auth-password.component-avrMwyr8.mjs → acorex-modules-auth-password.component-C7Yp-ioT.mjs} +6 -6
- package/fesm2022/{acorex-modules-auth-password.component-avrMwyr8.mjs.map → acorex-modules-auth-password.component-C7Yp-ioT.mjs.map} +1 -1
- package/fesm2022/acorex-modules-auth-password.component-DzrYH4yM.mjs +127 -0
- package/fesm2022/acorex-modules-auth-password.component-DzrYH4yM.mjs.map +1 -0
- package/fesm2022/{acorex-modules-auth-routes-BPYBFOxg.mjs → acorex-modules-auth-routes-Bu-xB4O6.mjs} +2 -2
- package/fesm2022/{acorex-modules-auth-routes-BPYBFOxg.mjs.map → acorex-modules-auth-routes-Bu-xB4O6.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-auth-two-factor-code.component-YhAHhKIr.mjs → acorex-modules-auth-two-factor-code.component-DrV3UBuT.mjs} +5 -5
- package/fesm2022/{acorex-modules-auth-two-factor-code.component-YhAHhKIr.mjs.map → acorex-modules-auth-two-factor-code.component-DrV3UBuT.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-auth-two-factor.module-B_V_nQN_.mjs → acorex-modules-auth-two-factor.module-YRh6_YcG.mjs} +3 -3
- package/fesm2022/{acorex-modules-auth-two-factor.module-B_V_nQN_.mjs.map → acorex-modules-auth-two-factor.module-YRh6_YcG.mjs.map} +1 -1
- package/fesm2022/acorex-modules-auth.mjs +1 -1
- package/fesm2022/acorex-modules-common-index-zaFxpV8u.mjs +14 -0
- package/fesm2022/acorex-modules-common-index-zaFxpV8u.mjs.map +1 -0
- package/fesm2022/acorex-modules-common.mjs +1095 -0
- package/fesm2022/acorex-modules-common.mjs.map +1 -0
- package/fesm2022/acorex-modules-conversation.mjs +2 -2
- package/fesm2022/acorex-modules-conversation.mjs.map +1 -1
- package/fesm2022/acorex-modules-document-management-acorex-modules-document-management-DagdBc6i.mjs +4242 -0
- package/fesm2022/acorex-modules-document-management-acorex-modules-document-management-DagdBc6i.mjs.map +1 -0
- package/fesm2022/acorex-modules-document-management-create-folder-dialog.component-fNeqoZfY.mjs +91 -0
- package/fesm2022/acorex-modules-document-management-create-folder-dialog.component-fNeqoZfY.mjs.map +1 -0
- package/fesm2022/acorex-modules-document-management-rename-node-dialog.component-C-eCtqLa.mjs +101 -0
- package/fesm2022/acorex-modules-document-management-rename-node-dialog.component-C-eCtqLa.mjs.map +1 -0
- package/fesm2022/acorex-modules-document-management.mjs +1 -1757
- package/fesm2022/acorex-modules-document-management.mjs.map +1 -1
- package/fesm2022/{acorex-modules-form-template-management-acorex-modules-form-template-management-BTQ4VpFG.mjs → acorex-modules-form-template-management-acorex-modules-form-template-management-szDh56Bk.mjs} +174 -64
- package/fesm2022/acorex-modules-form-template-management-acorex-modules-form-template-management-szDh56Bk.mjs.map +1 -0
- package/fesm2022/{acorex-modules-form-template-management-category.entity-ChxSjvOF.mjs → acorex-modules-form-template-management-category.entity-BZXqnhwK.mjs} +4 -17
- package/fesm2022/acorex-modules-form-template-management-category.entity-BZXqnhwK.mjs.map +1 -0
- package/fesm2022/{acorex-modules-form-template-management-designer.page-BLbPLLdP.mjs → acorex-modules-form-template-management-designer.page-Bd_bZ_7p.mjs} +4 -3
- package/fesm2022/acorex-modules-form-template-management-designer.page-Bd_bZ_7p.mjs.map +1 -0
- package/fesm2022/{acorex-modules-form-template-management-setting.provider-CByIOZMr.mjs → acorex-modules-form-template-management-setting.provider-o2_TSVfK.mjs} +2 -2
- package/fesm2022/{acorex-modules-form-template-management-setting.provider-CByIOZMr.mjs.map → acorex-modules-form-template-management-setting.provider-o2_TSVfK.mjs.map} +1 -1
- package/fesm2022/acorex-modules-form-template-management-template-picker.component-BxOdV3y2.mjs +191 -0
- package/fesm2022/acorex-modules-form-template-management-template-picker.component-BxOdV3y2.mjs.map +1 -0
- package/fesm2022/{acorex-modules-form-template-management-template-widget-edit.component-Chle-W7b.mjs → acorex-modules-form-template-management-template-widget-edit.component--MGoF75g.mjs} +32 -49
- package/fesm2022/acorex-modules-form-template-management-template-widget-edit.component--MGoF75g.mjs.map +1 -0
- package/fesm2022/{acorex-modules-form-template-management-template.entity-BIBMNXD5.mjs → acorex-modules-form-template-management-template.entity-JvWcqjzi.mjs} +3 -3
- package/fesm2022/acorex-modules-form-template-management-template.entity-JvWcqjzi.mjs.map +1 -0
- package/fesm2022/{acorex-modules-form-template-management-viewer-popup.component-DPxTaC2A.mjs → acorex-modules-form-template-management-viewer-popup.component-Bllb70Ih.mjs} +2 -2
- package/fesm2022/{acorex-modules-form-template-management-viewer-popup.component-DPxTaC2A.mjs.map → acorex-modules-form-template-management-viewer-popup.component-Bllb70Ih.mjs.map} +1 -1
- package/fesm2022/acorex-modules-form-template-management.mjs +1 -1
- package/fesm2022/acorex-modules-notification-management.mjs +10 -3
- package/fesm2022/acorex-modules-notification-management.mjs.map +1 -1
- package/fesm2022/{acorex-modules-organization-management-add-item.component-BXRyhcjE.mjs → acorex-modules-organization-management-add-item.component-Y-i6xDkl.mjs} +2 -2
- package/fesm2022/{acorex-modules-organization-management-add-item.component-BXRyhcjE.mjs.map → acorex-modules-organization-management-add-item.component-Y-i6xDkl.mjs.map} +1 -1
- package/fesm2022/acorex-modules-organization-management-branch.entity-DhObzxhh.mjs +344 -0
- package/fesm2022/acorex-modules-organization-management-branch.entity-DhObzxhh.mjs.map +1 -0
- package/fesm2022/{acorex-modules-organization-management-employee.entity-PwlBjkYo.mjs → acorex-modules-organization-management-employee.entity-DcJCJN3R.mjs} +4 -4
- package/fesm2022/acorex-modules-organization-management-employee.entity-DcJCJN3R.mjs.map +1 -0
- package/fesm2022/{acorex-modules-organization-management-org-chart-configuration.page-DjzqBdaS.mjs → acorex-modules-organization-management-org-chart-configuration.page-DO8wSZqZ.mjs} +2 -2
- package/fesm2022/{acorex-modules-organization-management-org-chart-configuration.page-DjzqBdaS.mjs.map → acorex-modules-organization-management-org-chart-configuration.page-DO8wSZqZ.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-organization-management-org-chart.page-DMxaL-70.mjs → acorex-modules-organization-management-org-chart.page-DXyAFXwE.mjs} +16 -10
- package/fesm2022/acorex-modules-organization-management-org-chart.page-DXyAFXwE.mjs.map +1 -0
- package/fesm2022/{acorex-modules-organization-management-position.entity-B7ceEEbu.mjs → acorex-modules-organization-management-position.entity-D17Yembh.mjs} +2 -2
- package/fesm2022/acorex-modules-organization-management-position.entity-D17Yembh.mjs.map +1 -0
- package/fesm2022/{acorex-modules-organization-management-branch.entity-CxxFiBPd.mjs → acorex-modules-organization-management-role.entity-Cmbyle8P.mjs} +36 -54
- package/fesm2022/acorex-modules-organization-management-role.entity-Cmbyle8P.mjs.map +1 -0
- package/fesm2022/{acorex-modules-organization-management-setting.provider-eLv_qnmE.mjs → acorex-modules-organization-management-setting.provider-CAU8Bve9.mjs} +7 -7
- package/fesm2022/acorex-modules-organization-management-setting.provider-CAU8Bve9.mjs.map +1 -0
- package/fesm2022/acorex-modules-organization-management-team.entity-DcurAtLd.mjs +238 -0
- package/fesm2022/acorex-modules-organization-management-team.entity-DcurAtLd.mjs.map +1 -0
- package/fesm2022/acorex-modules-organization-management.mjs +200 -105
- package/fesm2022/acorex-modules-organization-management.mjs.map +1 -1
- package/fesm2022/acorex-modules-platform-management-list-version.component-CoZBz85x.mjs +59 -0
- package/fesm2022/acorex-modules-platform-management-list-version.component-CoZBz85x.mjs.map +1 -0
- package/fesm2022/acorex-modules-platform-management.mjs +867 -610
- package/fesm2022/acorex-modules-platform-management.mjs.map +1 -1
- package/fesm2022/acorex-modules-scheduler-job-management.mjs +2 -2
- package/fesm2022/acorex-modules-scheduler-job-management.mjs.map +1 -1
- package/fesm2022/acorex-modules-security-management.mjs +61 -29
- package/fesm2022/acorex-modules-security-management.mjs.map +1 -1
- package/fesm2022/acorex-modules-text-template-management.mjs +324 -6
- package/fesm2022/acorex-modules-text-template-management.mjs.map +1 -1
- package/form-template-management/lib/entities/category/category.service.d.ts +1 -1
- package/form-template-management/lib/entities/category/category.types.d.ts +2 -1
- package/form-template-management/lib/entities/template/template.service.d.ts +1 -1
- package/form-template-management/lib/entities/template/template.types.d.ts +1 -1
- package/form-template-management/lib/features/designer/designer.page.d.ts +1 -0
- package/form-template-management/lib/features/designer/template.provider.d.ts +1 -1
- package/form-template-management/lib/features/designer/widgets/template/template-widget-edit.component.d.ts +0 -4
- package/form-template-management/lib/features/designer/widgets/template-designer/template-designer-widget-view.component.d.ts +1 -0
- package/form-template-management/lib/features/designer/widgets/template-picker/template-picker.component.d.ts +14 -4
- package/form-template-management/lib/features/designer/widgets/template-picker/template.provider.d.ts +2 -1
- package/form-template-management/lib/features/designer/workflows/design-template.workflow.d.ts +1 -8
- package/form-template-management/lib/features/designer/workflows/workflow.actions.d.ts +17 -0
- package/form-template-management/lib/menu.provider.d.ts +1 -0
- package/notification-management/lib/entities/channel/channel.service.d.ts +1 -1
- package/notification-management/lib/entities/channel/channel.types.d.ts +2 -1
- package/notification-management/lib/entities/notification/notification.service.d.ts +1 -1
- package/notification-management/lib/entities/notification/notification.types.d.ts +1 -1
- package/notification-management/lib/entities/template/template.service.d.ts +1 -1
- package/notification-management/lib/entities/template/template.types.d.ts +1 -1
- package/notification-management/lib/menu.provider.d.ts +1 -0
- package/organization-management/lib/const.d.ts +3 -0
- package/organization-management/lib/entities/branch/branch.service.d.ts +1 -1
- package/organization-management/lib/entities/branch/branch.types.d.ts +1 -1
- package/organization-management/lib/entities/chart/chart.service.d.ts +1 -1
- package/organization-management/lib/entities/chart/chart.types.d.ts +1 -1
- package/organization-management/lib/entities/company/company.service.d.ts +1 -1
- package/organization-management/lib/entities/company/company.types.d.ts +1 -1
- package/organization-management/lib/entities/department/department.service.d.ts +1 -1
- package/organization-management/lib/entities/department/department.types.d.ts +1 -1
- package/organization-management/lib/entities/division/division.service.d.ts +1 -1
- package/organization-management/lib/entities/division/division.types.d.ts +1 -1
- package/organization-management/lib/entities/employee/employee.service.d.ts +1 -1
- package/organization-management/lib/entities/employee/employee.types.d.ts +1 -1
- package/organization-management/lib/entities/employment-type/employment-type.service.d.ts +1 -1
- package/organization-management/lib/entities/employment-type/employment-type.types.d.ts +1 -1
- package/organization-management/lib/entities/index.d.ts +6 -4
- package/organization-management/lib/entities/position/position.service.d.ts +1 -1
- package/organization-management/lib/entities/position/position.types.d.ts +1 -1
- package/organization-management/lib/entities/role/index.d.ts +3 -0
- package/organization-management/lib/entities/role/role.entity.d.ts +3 -0
- package/organization-management/lib/entities/role/role.module.d.ts +6 -0
- package/organization-management/lib/entities/role/role.service.d.ts +10 -0
- package/organization-management/lib/entities/role/role.types.d.ts +5 -0
- package/organization-management/lib/entities/team/index.d.ts +3 -0
- package/organization-management/lib/entities/team/team.entity.d.ts +3 -0
- package/organization-management/lib/entities/team/team.module.d.ts +6 -0
- package/organization-management/lib/entities/team/team.service.d.ts +10 -0
- package/organization-management/lib/entities/team/team.types.d.ts +5 -0
- package/organization-management/lib/features/organization-chart/org-chart-configuration.page.d.ts +3 -0
- package/organization-management/lib/features/organization-chart/org-chart.page.d.ts +3 -0
- package/organization-management/lib/organization-management.module.d.ts +11 -9
- package/package.json +5 -1
- package/platform-management/lib/common/regional/data-source.provider.d.ts +10 -0
- package/platform-management/lib/const.d.ts +6 -0
- package/platform-management/lib/entities/app-term/app-term.service.d.ts +1 -1
- package/platform-management/lib/entities/app-term/app-term.types.d.ts +1 -1
- package/platform-management/lib/entities/app-version/app-version.service.d.ts +1 -1
- package/platform-management/lib/entities/app-version/app-version.types.d.ts +1 -1
- package/platform-management/lib/entities/app-version/components/slots/app-version-slot.component.d.ts +1 -1
- package/platform-management/lib/entities/app-version/workflows/change-log.workflow.d.ts +1 -1
- package/platform-management/lib/entities/app-version/workflows/show-release-notes.workflow.d.ts +9 -0
- package/platform-management/lib/entities/data-source/data-source.service.d.ts +1 -1
- package/platform-management/lib/entities/data-source/data-source.types.d.ts +1 -1
- package/platform-management/lib/entities/global-variable/global-variables.service.d.ts +1 -1
- package/platform-management/lib/entities/global-variable/global-variables.types.d.ts +1 -1
- package/platform-management/lib/entities/index.d.ts +1 -1
- package/platform-management/lib/entities/meta-data-definition/index.d.ts +0 -1
- package/platform-management/lib/entities/meta-data-definition/meta-data-definition.service.d.ts +5 -5
- package/platform-management/lib/entities/meta-data-definition/meta-data-definition.types.d.ts +3 -4
- package/platform-management/lib/entities/promotion/promotion.service.d.ts +1 -1
- package/platform-management/lib/entities/promotion/promotion.types.d.ts +2 -1
- package/platform-management/lib/platform-management.module.d.ts +4 -5
- package/scheduler-job-management/lib/entities/scheduler-job/scheduler-job.service.d.ts +1 -1
- package/scheduler-job-management/lib/entities/scheduler-job/scheduler-job.types.d.ts +1 -1
- package/security-management/lib/entities/index.d.ts +2 -0
- package/security-management/lib/entities/profile/profile.types.d.ts +1 -1
- package/security-management/lib/entities/roles/roles.service.d.ts +1 -1
- package/security-management/lib/entities/roles/roles.types.d.ts +3 -1
- package/security-management/lib/entities/users/users.service.d.ts +1 -1
- package/security-management/lib/entities/users/users.types.d.ts +12 -3
- package/text-template-management/lib/const.d.ts +6 -0
- package/text-template-management/lib/entities/category/category.service.d.ts +1 -1
- package/text-template-management/lib/entities/category/category.types.d.ts +1 -1
- package/text-template-management/lib/entities/index.d.ts +1 -0
- package/text-template-management/lib/entities/tag-template/index.d.ts +3 -0
- package/text-template-management/lib/entities/tag-template/tag-template.entity.d.ts +3 -0
- package/text-template-management/lib/entities/tag-template/tag-template.service.d.ts +10 -0
- package/text-template-management/lib/entities/tag-template/tag-template.types.d.ts +5 -0
- package/text-template-management/lib/entities/template/template.service.d.ts +1 -1
- package/text-template-management/lib/entities/template/template.types.d.ts +1 -1
- package/auth/lib/store/auth.effects.d.ts +0 -18
- package/auth/lib/store/index.d.ts +0 -1
- package/fesm2022/acorex-modules-auth-acorex-modules-auth-D1qxdECo.mjs.map +0 -1
- package/fesm2022/acorex-modules-auth-password.component-EXWlXGez.mjs +0 -121
- package/fesm2022/acorex-modules-auth-password.component-EXWlXGez.mjs.map +0 -1
- package/fesm2022/acorex-modules-form-template-management-acorex-modules-form-template-management-BTQ4VpFG.mjs.map +0 -1
- package/fesm2022/acorex-modules-form-template-management-category.entity-ChxSjvOF.mjs.map +0 -1
- package/fesm2022/acorex-modules-form-template-management-designer.page-BLbPLLdP.mjs.map +0 -1
- package/fesm2022/acorex-modules-form-template-management-template-picker.component-BGSucRLY.mjs +0 -126
- package/fesm2022/acorex-modules-form-template-management-template-picker.component-BGSucRLY.mjs.map +0 -1
- package/fesm2022/acorex-modules-form-template-management-template-widget-edit.component-Chle-W7b.mjs.map +0 -1
- package/fesm2022/acorex-modules-form-template-management-template.entity-BIBMNXD5.mjs.map +0 -1
- package/fesm2022/acorex-modules-organization-management-branch.entity-CxxFiBPd.mjs.map +0 -1
- package/fesm2022/acorex-modules-organization-management-employee.entity-PwlBjkYo.mjs.map +0 -1
- package/fesm2022/acorex-modules-organization-management-org-chart.page-DMxaL-70.mjs.map +0 -1
- package/fesm2022/acorex-modules-organization-management-position.entity-B7ceEEbu.mjs.map +0 -1
- package/fesm2022/acorex-modules-organization-management-setting.provider-eLv_qnmE.mjs.map +0 -1
- package/platform-management/lib/entities/meta-data-definition/meta-data-definition.module.d.ts +0 -6
@@ -1,8 +1,10 @@
|
|
1
|
+
export * from './branch';
|
2
|
+
export * from './chart';
|
1
3
|
export * from './company';
|
2
|
-
export * from './division';
|
3
4
|
export * from './department';
|
4
|
-
export * from './
|
5
|
-
export * from './position';
|
5
|
+
export * from './division';
|
6
6
|
export * from './employee';
|
7
7
|
export * from './employment-type';
|
8
|
-
export * from './
|
8
|
+
export * from './position';
|
9
|
+
export * from './role';
|
10
|
+
export * from './team';
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { AXMEntityCrudServiceImpl } from '@acorex/platform/
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
2
2
|
import { AXMOrganizationManagementPositionEntityModel } from './position.types';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare abstract class AXMOrganizationManagementPositionEntityService extends AXMEntityCrudServiceImpl<string, AXMOrganizationManagementPositionEntityModel> {
|
@@ -0,0 +1,6 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
export declare class AXMOrganizationManagementRoleEntityModule {
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMOrganizationManagementRoleEntityModule, never>;
|
4
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXMOrganizationManagementRoleEntityModule, never, never, never>;
|
5
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AXMOrganizationManagementRoleEntityModule>;
|
6
|
+
}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
2
|
+
import { AXMOrganizationManagementRoleEntityModel } from './role.types';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export declare abstract class AXMOrganizationManagementRoleEntityService extends AXMEntityCrudServiceImpl<string, AXMOrganizationManagementRoleEntityModel> {
|
5
|
+
}
|
6
|
+
export declare class AXMOrganizationManagementRoleEntityServiceImpl extends AXMOrganizationManagementRoleEntityService {
|
7
|
+
constructor();
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMOrganizationManagementRoleEntityServiceImpl, never>;
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXMOrganizationManagementRoleEntityServiceImpl>;
|
10
|
+
}
|
@@ -0,0 +1,6 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
export declare class AXMOrganizationManagementTeamEntityModule {
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMOrganizationManagementTeamEntityModule, never>;
|
4
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXMOrganizationManagementTeamEntityModule, never, never, never>;
|
5
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AXMOrganizationManagementTeamEntityModule>;
|
6
|
+
}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
2
|
+
import { AXMOrganizationManagementTeamEntityModel } from './team.types';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export declare abstract class AXMOrganizationManagementTeamEntityService extends AXMEntityCrudServiceImpl<string, AXMOrganizationManagementTeamEntityModel> {
|
5
|
+
}
|
6
|
+
export declare class AXMOrganizationManagementTeamEntityServiceImpl extends AXMOrganizationManagementTeamEntityService {
|
7
|
+
constructor();
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMOrganizationManagementTeamEntityServiceImpl, never>;
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXMOrganizationManagementTeamEntityServiceImpl>;
|
10
|
+
}
|
@@ -1,15 +1,17 @@
|
|
1
1
|
import * as i0 from "@angular/core";
|
2
2
|
import * as i1 from "@angular/common";
|
3
|
-
import * as i2 from "./entities/
|
4
|
-
import * as i3 from "./entities/
|
5
|
-
import * as i4 from "./entities/
|
6
|
-
import * as i5 from "./entities/
|
7
|
-
import * as i6 from "./entities/
|
8
|
-
import * as i7 from "./entities/
|
9
|
-
import * as i8 from "./entities/
|
10
|
-
import * as i9 from "./entities/
|
3
|
+
import * as i2 from "./entities/role/role.module";
|
4
|
+
import * as i3 from "./entities/team/team.module";
|
5
|
+
import * as i4 from "./entities/company/company.module";
|
6
|
+
import * as i5 from "./entities/department/department.module";
|
7
|
+
import * as i6 from "./entities/division/division.module";
|
8
|
+
import * as i7 from "./entities/branch/branch.module";
|
9
|
+
import * as i8 from "./entities/employee/employee.module";
|
10
|
+
import * as i9 from "./entities/position/position.module";
|
11
|
+
import * as i10 from "./entities/chart/chart.module";
|
12
|
+
import * as i11 from "./entities/employment-type/employment-type.module";
|
11
13
|
export declare class AXMOrganizationManagementModule {
|
12
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXMOrganizationManagementModule, never>;
|
13
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AXMOrganizationManagementModule, never, [typeof i1.CommonModule, typeof i2.
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXMOrganizationManagementModule, never, [typeof i1.CommonModule, typeof i2.AXMOrganizationManagementRoleEntityModule, typeof i3.AXMOrganizationManagementTeamEntityModule, typeof i4.AXMOrganizationManagementCompanyEntityModule, typeof i5.AXMOrganizationManagementDepartmentEntityModule, typeof i6.AXMOrganizationManagementDivisionEntityModule, typeof i7.AXMOrganizationManagementBranchEntityModule, typeof i8.AXMOrganizationManagementEmployeeEntityModule, typeof i9.AXMOrganizationManagementPositionEntityModule, typeof i10.AXMOrganizationManagementChartEntityModule, typeof i11.AXMOrganizationManagementEmploymentTypeEntityModule], never>;
|
14
16
|
static ɵinj: i0.ɵɵInjectorDeclaration<AXMOrganizationManagementModule>;
|
15
17
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@acorex/modules",
|
3
|
-
"version": "19.2.
|
3
|
+
"version": "19.2.16",
|
4
4
|
"peerDependencies": {
|
5
5
|
"@angular/common": ">=19.0.0",
|
6
6
|
"@angular/core": ">=19.0.0",
|
@@ -28,6 +28,10 @@
|
|
28
28
|
"types": "./auth/index.d.ts",
|
29
29
|
"default": "./fesm2022/acorex-modules-auth.mjs"
|
30
30
|
},
|
31
|
+
"./common": {
|
32
|
+
"types": "./common/index.d.ts",
|
33
|
+
"default": "./fesm2022/acorex-modules-common.mjs"
|
34
|
+
},
|
31
35
|
"./conversation": {
|
32
36
|
"types": "./conversation/index.d.ts",
|
33
37
|
"default": "./fesm2022/acorex-modules-conversation.mjs"
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { AXPWidgetDataSource, AXPWidgetDataSourceProvider } from "@acorex/platform/layout/builder";
|
2
|
+
export declare class AXPRegionalWidgetDataSourceProvider implements AXPWidgetDataSourceProvider {
|
3
|
+
private regionalService;
|
4
|
+
private country;
|
5
|
+
private cities;
|
6
|
+
private provinces;
|
7
|
+
private currencies;
|
8
|
+
private languages;
|
9
|
+
items(): Promise<AXPWidgetDataSource[]>;
|
10
|
+
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { AXMEntityCrudServiceImpl } from '@acorex/platform/
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
2
2
|
import { AXMAppTermEntityModel } from './app-term.types';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare abstract class AXMAppTermService extends AXMEntityCrudServiceImpl<string, AXMAppTermEntityModel> {
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { AXMEntityCrudServiceImpl } from '@acorex/platform/
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
2
2
|
import { AXMAppVersionEntityModel } from './app-version.types';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare abstract class AXMAppVersionService extends AXMEntityCrudServiceImpl<string, AXMAppVersionEntityModel> {
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { AXPEntityModel } from '@acorex/platform/
|
1
|
+
import { AXPEntityModel } from '@acorex/platform/layout/entity';
|
2
2
|
import { SafeHtml } from '@angular/platform-browser';
|
3
3
|
export interface AXMAppVersionEntityModel extends AXPEntityModel<string> {
|
4
4
|
versionNumber: string;
|
@@ -2,7 +2,7 @@ import { OnInit } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
3
3
|
export declare class AXMAppVersionSlotComponent implements OnInit {
|
4
4
|
private versionProvider;
|
5
|
-
private
|
5
|
+
private workflowService;
|
6
6
|
text: string;
|
7
7
|
protected versionNumber: string;
|
8
8
|
ngOnInit(): Promise<void>;
|
@@ -12,4 +12,4 @@ export declare class AXMChangeLogUpdateSettingAction extends AXPWorkflowAction {
|
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXMChangeLogUpdateSettingAction, never>;
|
13
13
|
static ɵprov: i0.ɵɵInjectableDeclaration<AXMChangeLogUpdateSettingAction>;
|
14
14
|
}
|
15
|
-
export declare const
|
15
|
+
export declare const AXMWhatsNewWorkflow: AXPWorkflow;
|
package/platform-management/lib/entities/app-version/workflows/show-release-notes.workflow.d.ts
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
import { AXPWorkflow, AXPWorkflowAction, AXPWorkflowContext } from "@acorex/platform/workflow";
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
export declare class AXMShowReleaseNotesPopupAction extends AXPWorkflowAction {
|
4
|
+
private popupService;
|
5
|
+
execute(context: AXPWorkflowContext): Promise<void>;
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMShowReleaseNotesPopupAction, never>;
|
7
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXMShowReleaseNotesPopupAction>;
|
8
|
+
}
|
9
|
+
export declare const AXMShowReleaseNotesWorkflow: AXPWorkflow;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { AXMEntityCrudServiceImpl } from '@acorex/platform/
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
2
2
|
import { AXMDataSourceEntityModel } from './data-source.types';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare abstract class AXMDataSourceService extends AXMEntityCrudServiceImpl<string, AXMDataSourceEntityModel> {
|
@@ -1,5 +1,5 @@
|
|
1
|
-
import { AXPEntityModel } from '@acorex/platform/common';
|
2
1
|
import { AXPWidgetDataSource } from '@acorex/platform/layout/builder';
|
2
|
+
import { AXPEntityModel } from '@acorex/platform/layout/entity';
|
3
3
|
import { AXMSelectModel } from '../promotion';
|
4
4
|
export interface AXMDataSourceEntityModel extends AXPEntityModel<string>, AXPWidgetDataSource {
|
5
5
|
sourceStatic: any[];
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { AXMEntityCrudServiceImpl } from '@acorex/platform/
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
2
2
|
import { AXMGlobalVariableEntityModel } from './global-variables.types';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare abstract class AXMGlobalVariablesService extends AXMEntityCrudServiceImpl<string, AXMGlobalVariableEntityModel> {
|
package/platform-management/lib/entities/meta-data-definition/meta-data-definition.service.d.ts
CHANGED
@@ -1,10 +1,10 @@
|
|
1
|
-
import { AXMEntityCrudServiceImpl } from '@acorex/platform/
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
2
2
|
import { AXMPlatformManagementMetaDataDefinitionEntityModel } from './meta-data-definition.types';
|
3
3
|
import * as i0 from "@angular/core";
|
4
|
-
export declare abstract class
|
4
|
+
export declare abstract class AXMMetaDataDefinitionService extends AXMEntityCrudServiceImpl<string, AXMPlatformManagementMetaDataDefinitionEntityModel> {
|
5
5
|
}
|
6
|
-
export declare class
|
6
|
+
export declare class AXMPMetaDataDefinitionServiceImpl extends AXMMetaDataDefinitionService {
|
7
7
|
constructor();
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
9
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMPMetaDataDefinitionServiceImpl, never>;
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXMPMetaDataDefinitionServiceImpl>;
|
10
10
|
}
|
package/platform-management/lib/entities/meta-data-definition/meta-data-definition.types.d.ts
CHANGED
@@ -1,5 +1,4 @@
|
|
1
|
-
import {
|
2
|
-
|
3
|
-
|
4
|
-
title: string;
|
1
|
+
import { AXPMetaDataDefinition } from '@acorex/platform/layout/builder';
|
2
|
+
import { AXPEntityModel } from '@acorex/platform/layout/entity';
|
3
|
+
export interface AXMPlatformManagementMetaDataDefinitionEntityModel extends AXPEntityModel<string>, AXPMetaDataDefinition {
|
5
4
|
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { AXMEntityCrudServiceImpl } from '@acorex/platform/
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
2
2
|
import { AXMPromotionEntityModel } from './promotion.types';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare abstract class AXMAppPromotionService extends AXMEntityCrudServiceImpl<string, AXMPromotionEntityModel> {
|
@@ -1,4 +1,5 @@
|
|
1
|
-
import {
|
1
|
+
import { AXPFileStorageInfo } from '@acorex/platform/common';
|
2
|
+
import { AXPEntityModel } from '@acorex/platform/layout/entity';
|
2
3
|
export interface AXMPromotionEntityModel extends AXPEntityModel<string> {
|
3
4
|
name: string;
|
4
5
|
title: string;
|
@@ -1,15 +1,14 @@
|
|
1
1
|
import { AppTermAndVersionCheck } from './entities';
|
2
2
|
import * as i0 from "@angular/core";
|
3
|
-
import * as i1 from "./
|
4
|
-
import * as i2 from "
|
5
|
-
import * as i3 from "@acorex/platform/
|
6
|
-
import * as i4 from "@acorex/platform/common";
|
3
|
+
import * as i1 from "./common/common.module";
|
4
|
+
import * as i2 from "@acorex/platform/workflow";
|
5
|
+
import * as i3 from "@acorex/platform/common";
|
7
6
|
export declare class AXMPlatformManagementModule {
|
8
7
|
/**
|
9
8
|
* @ignore
|
10
9
|
*/
|
11
10
|
constructor(appVersionCheck: AppTermAndVersionCheck);
|
12
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXMPlatformManagementModule, never>;
|
13
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AXMPlatformManagementModule, never, [typeof i1.
|
12
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXMPlatformManagementModule, never, [typeof i1.AXMPlatformManagementCommonModule, typeof i2.AXPWorkflowModule, typeof i3.AXPComponentSlotModule], never>;
|
14
13
|
static ɵinj: i0.ɵɵInjectorDeclaration<AXMPlatformManagementModule>;
|
15
14
|
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { AXMEntityCrudServiceImpl } from '@acorex/platform/
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
2
2
|
import { AXMSchedulerJobManagementSchedulerJobEntityModel } from './scheduler-job.types';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare abstract class AXMSchedulerJobManagementSchedulerJobEntityService extends AXMEntityCrudServiceImpl<string, AXMSchedulerJobManagementSchedulerJobEntityModel> {
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { AXMEntityCrudServiceImpl } from '@acorex/platform/
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
2
2
|
import { AXMSecurityManagementRolesEntityModel } from './roles.types';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare abstract class AXMSecurityManagementRolesEntityService extends AXMEntityCrudServiceImpl<string, AXMSecurityManagementRolesEntityModel> {
|
@@ -1,5 +1,7 @@
|
|
1
|
-
import { AXPEntityModel } from '@acorex/platform/
|
1
|
+
import { AXPEntityModel } from '@acorex/platform/layout/entity';
|
2
2
|
export interface AXMSecurityManagementRolesEntityModel extends AXPEntityModel<string> {
|
3
3
|
name: string;
|
4
4
|
title: string;
|
5
|
+
description?: string;
|
6
|
+
permissions?: string[];
|
5
7
|
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { AXMEntityCrudServiceImpl } from '@acorex/platform/
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
2
2
|
import { AXMSecurityManagementUsersEntityModel } from './users.types';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare abstract class AXMSecurityManagementUsersEntityService extends AXMEntityCrudServiceImpl<string, AXMSecurityManagementUsersEntityModel> {
|
@@ -1,5 +1,14 @@
|
|
1
|
-
import { AXPEntityModel } from '@acorex/platform/
|
1
|
+
import { AXPEntityModel } from '@acorex/platform/layout/entity';
|
2
2
|
export interface AXMSecurityManagementUsersEntityModel extends AXPEntityModel<string> {
|
3
|
-
|
4
|
-
|
3
|
+
id: string;
|
4
|
+
username: string;
|
5
|
+
firstname: string;
|
6
|
+
lastname: string;
|
7
|
+
nationalCode: string;
|
8
|
+
password: string;
|
9
|
+
mobile: string;
|
10
|
+
roles: {
|
11
|
+
title: string;
|
12
|
+
id: string;
|
13
|
+
}[];
|
5
14
|
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { AXMEntityCrudServiceImpl } from '@acorex/platform/
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
2
2
|
import { AXMTextTemplateManagementCategoryEntityModel } from './category.types';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare abstract class AXMTextTemplateManagementCategoryEntityService extends AXMEntityCrudServiceImpl<string, AXMTextTemplateManagementCategoryEntityModel> {
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
2
|
+
import { AXMTagTemplateEntityModel } from './tag-template.types';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export declare abstract class AXMTagTemplateService extends AXMEntityCrudServiceImpl<string, AXMTagTemplateEntityModel> {
|
5
|
+
}
|
6
|
+
export declare class AXMTagTemplateServiceImpl extends AXMTagTemplateService {
|
7
|
+
constructor();
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMTagTemplateServiceImpl, never>;
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXMTagTemplateServiceImpl>;
|
10
|
+
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { AXMEntityCrudServiceImpl } from '@acorex/platform/
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
2
2
|
import { AXMTextTemplateManagementTemplateEntityModel } from './template.types';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare abstract class AXMTextTemplateManagementTemplateEntityService extends AXMEntityCrudServiceImpl<string, AXMTextTemplateManagementTemplateEntityModel> {
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { AXPEntityModel } from '@acorex/platform/
|
1
|
+
import { AXPEntityModel } from '@acorex/platform/layout/entity';
|
2
2
|
import { AXMTextTemplateManagementCategoryEntityModel } from '../category';
|
3
3
|
export interface AXMTextTemplateManagementTemplateEntityModel extends AXPEntityModel<string> {
|
4
4
|
name: string;
|
@@ -1,18 +0,0 @@
|
|
1
|
-
import { Router } from '@angular/router';
|
2
|
-
import { Actions } from '@ngrx/effects';
|
3
|
-
import * as i0 from "@angular/core";
|
4
|
-
export declare class AXPAuthEffects {
|
5
|
-
private actions$;
|
6
|
-
private router;
|
7
|
-
private configs;
|
8
|
-
private sessionService;
|
9
|
-
private idleService;
|
10
|
-
private dialogService;
|
11
|
-
private dialogAlreadyOpen;
|
12
|
-
constructor(actions$: Actions, router: Router);
|
13
|
-
signout$: import("rxjs").Observable<never> & import("@ngrx/effects").CreateEffectMetadata;
|
14
|
-
signin$: import("rxjs").Observable<never> & import("@ngrx/effects").CreateEffectMetadata;
|
15
|
-
idle$: import("rxjs").Observable<void> & import("@ngrx/effects").CreateEffectMetadata;
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AXPAuthEffects, never>;
|
17
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<AXPAuthEffects>;
|
18
|
-
}
|
@@ -1 +0,0 @@
|
|
1
|
-
export * from './auth.effects';
|