@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,4 +1,4 @@
|
|
1
|
-
import { AXMEntityCrudServiceImpl } from '@acorex/platform/
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
2
2
|
import { Injector } from '@angular/core';
|
3
3
|
import { AXMApplicationModuleEntityModel, AXMEditionEntityModel, AXMEntityEntityModel, AXMFeatureEntityModel, AXMPermissionEntityModel, AXMPropertyEntityModel } from './application-management.types';
|
4
4
|
import * as i0 from "@angular/core";
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { AXMEntityCrudServiceImpl } from '@acorex/platform/
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
2
2
|
import { AXMApplicationEntityModel } from '../application-management.types';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare abstract class AXMApplicationService extends AXMEntityCrudServiceImpl<string, AXMApplicationEntityModel> {
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { AXMEntityCrudServiceImpl } from '@acorex/platform/
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
2
2
|
import { AXMApplicationModuleEntityModel } from '../application-management.types';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare abstract class AXMApplicationModuleService extends AXMEntityCrudServiceImpl<string, AXMApplicationModuleEntityModel> {
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { AXMEntityCrudServiceImpl } from '@acorex/platform/
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
2
2
|
import { AXMEditionEntityModel } from '../application-management.types';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare abstract class AXMEditionService extends AXMEntityCrudServiceImpl<string, AXMEditionEntityModel> {
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { AXMEntityCrudServiceImpl } from '@acorex/platform/
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
2
2
|
import { AXMEntityEntityModel } from '../application-management.types';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare abstract class AXMEntityService extends AXMEntityCrudServiceImpl<string, AXMEntityEntityModel> {
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { AXMEntityCrudServiceImpl } from '@acorex/platform/
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
2
2
|
import { AXMFeatureEntityModel } from '../application-management.types';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare abstract class AXMFeatureService extends AXMEntityCrudServiceImpl<string, AXMFeatureEntityModel> {
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { AXMEntityCrudServiceImpl } from '@acorex/platform/
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
2
2
|
import { AXMModuleEntityModel } from '../application-management.types';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare abstract class AXMModuleService extends AXMEntityCrudServiceImpl<string, AXMModuleEntityModel> {
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { AXMEntityCrudServiceImpl } from '@acorex/platform/
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
2
2
|
import { AXMPermissionEntityModel } from '../application-management.types';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare abstract class AXMPermissionService extends AXMEntityCrudServiceImpl<string, AXMPermissionEntityModel> {
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { AXMEntityCrudServiceImpl } from '@acorex/platform/
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
2
2
|
import { AXMPropertyEntityModel } from '../application-management.types';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare abstract class AXMPropertyService extends AXMEntityCrudServiceImpl<string, AXMPropertyEntityModel> {
|
@@ -2,10 +2,9 @@ import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "@angular/common";
|
3
3
|
import * as i2 from "@acorex/platform/common";
|
4
4
|
import * as i3 from "@angular/router";
|
5
|
-
import * as i4 from "
|
6
|
-
import * as i5 from "./pages/account/account.module";
|
5
|
+
import * as i4 from "./pages/account/account.module";
|
7
6
|
export declare class AXMAuthModule {
|
8
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXMAuthModule, never>;
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AXMAuthModule, never, [typeof i1.CommonModule, typeof i2.AXPCommonModule, typeof i3.RouterModule, typeof i4.
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXMAuthModule, never, [typeof i1.CommonModule, typeof i2.AXPCommonModule, typeof i3.RouterModule, typeof i4.AXPAccountModule], never>;
|
10
9
|
static ɵinj: i0.ɵɵInjectorDeclaration<AXMAuthModule>;
|
11
10
|
}
|
@@ -14,6 +14,7 @@ export declare class AXPLoginPasswordComponent implements OnInit {
|
|
14
14
|
private sessionService;
|
15
15
|
private form;
|
16
16
|
private router;
|
17
|
+
protected isKeepLogin: boolean;
|
17
18
|
ngOnInit(): void;
|
18
19
|
protected handleForgotOnClick(): void;
|
19
20
|
protected handleRegisterOnClick(): void;
|
package/common/README.md
ADDED
@@ -0,0 +1,6 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
export declare class AXMCommonModule {
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMCommonModule, never>;
|
4
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXMCommonModule, never, never, never>;
|
5
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AXMCommonModule>;
|
6
|
+
}
|
@@ -0,0 +1,25 @@
|
|
1
|
+
export declare const RootConfig: {
|
2
|
+
config: {
|
3
|
+
i18n: string;
|
4
|
+
};
|
5
|
+
module: {
|
6
|
+
module: string;
|
7
|
+
name: string;
|
8
|
+
title: string;
|
9
|
+
icon: string;
|
10
|
+
};
|
11
|
+
entities: {
|
12
|
+
dashboardWidgetData: {
|
13
|
+
name: string;
|
14
|
+
title: string;
|
15
|
+
titlePlural: string;
|
16
|
+
icon: string;
|
17
|
+
};
|
18
|
+
dashboard: {
|
19
|
+
name: string;
|
20
|
+
title: string;
|
21
|
+
titlePlural: string;
|
22
|
+
icon: string;
|
23
|
+
};
|
24
|
+
};
|
25
|
+
};
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
2
|
+
import { AXMCommonDashboardEntityModel } from './dashboard.types';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export declare abstract class AXMDashboardService extends AXMEntityCrudServiceImpl<string, AXMCommonDashboardEntityModel> {
|
5
|
+
}
|
6
|
+
export declare class AXMDashboardServiceImpl extends AXMDashboardService {
|
7
|
+
constructor();
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMDashboardServiceImpl, never>;
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXMDashboardServiceImpl>;
|
10
|
+
}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import { AXPEntityModel } from '@acorex/platform/layout/entity';
|
2
|
+
import { AXMCommonDashboardWidgetDataEntityModel } from '../dashboard-widget-data';
|
3
|
+
export interface AXMCommonDashboardEntityModel extends AXPEntityModel<string> {
|
4
|
+
name: string;
|
5
|
+
title: string;
|
6
|
+
description: string;
|
7
|
+
widget: AXMCommonDashboardWidgetDataEntityModel[];
|
8
|
+
}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
2
|
+
import { AXMCommonDashboardWidgetDataEntityModel } from './dashboard-widget-data.types';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export declare abstract class AXMDashboardWidgetDataService extends AXMEntityCrudServiceImpl<string, AXMCommonDashboardWidgetDataEntityModel> {
|
5
|
+
}
|
6
|
+
export declare class AXMDashboardWidgetDataServiceImpl extends AXMDashboardWidgetDataService {
|
7
|
+
constructor();
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMDashboardWidgetDataServiceImpl, never>;
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXMDashboardWidgetDataServiceImpl>;
|
10
|
+
}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { AXPEntity } from '@acorex/platform/common';
|
2
|
+
import { AXPEntityDefinitionLoader, AXPEntityDefinitionPreloader, AXPEntityPreloadEntity } from '@acorex/platform/layout/entity';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export declare class AXMEntityProvider implements AXPEntityDefinitionLoader, AXPEntityDefinitionPreloader {
|
5
|
+
private injector;
|
6
|
+
preload(): AXPEntityPreloadEntity[];
|
7
|
+
get(moduleName: string, entityName: string): Promise<AXPEntity | null>;
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMEntityProvider, never>;
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXMEntityProvider>;
|
10
|
+
}
|
@@ -0,0 +1,5 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
export declare class AXPDashboardHomeComponent {
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPDashboardHomeComponent, never>;
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXPDashboardHomeComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
5
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './dashboard-home';
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { AXMEntityCrudServiceImpl } from '@acorex/platform/
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
2
2
|
import { AXMChatRoom } from './chat.type';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare abstract class AXMChatService extends AXMEntityCrudServiceImpl<string, AXMChatRoom> {
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { AXPPagedListResult } from '@acorex/platform/
|
1
|
+
import { AXPPagedListResult } from '@acorex/platform/layout/entity';
|
2
2
|
import { OnInit } from '@angular/core';
|
3
3
|
import { AXMChatService } from '../../chat.service';
|
4
4
|
import { AXMChatRoom } from '../../chat.type';
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { AXMEntityCrudServiceImpl, AXPEntityDataProviderImpl } from '@acorex/platform/
|
1
|
+
import { AXMEntityCrudServiceImpl, AXPEntityDataProviderImpl } from '@acorex/platform/layout/entity';
|
2
2
|
import { AXMComment, AXMCommentCreateRequest, AXMCommentEntityModel, AXMMessageReactionEntityModel } from './comments.type';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare abstract class AXMCommentService extends AXMEntityCrudServiceImpl<string, AXMCommentEntityModel, AXMCommentCreateRequest, AXMComment> {
|
@@ -1,11 +1,6 @@
|
|
1
1
|
export declare const RootConfig: {
|
2
2
|
config: {
|
3
3
|
i18n: string;
|
4
|
-
documentEntity: string;
|
5
|
-
documentTypeEntity: string;
|
6
|
-
documentTypeMetaDefinitionEntity: string;
|
7
|
-
documentTypeMetaValueEntity: string;
|
8
|
-
documentTypeStatusDefinitionEntity: string;
|
9
4
|
};
|
10
5
|
module: {
|
11
6
|
module: string;
|
@@ -14,6 +9,12 @@ export declare const RootConfig: {
|
|
14
9
|
icon: string;
|
15
10
|
};
|
16
11
|
entities: {
|
12
|
+
folder: {
|
13
|
+
name: string;
|
14
|
+
title: string;
|
15
|
+
titlePlural: string;
|
16
|
+
icon: string;
|
17
|
+
};
|
17
18
|
document: {
|
18
19
|
name: string;
|
19
20
|
title: string;
|
@@ -4,8 +4,10 @@ import * as i2 from "./entities/document-type-meta-value/document-type-meta-valu
|
|
4
4
|
import * as i3 from "./entities/document-type-meta-definition/document-type-meta-definition.module";
|
5
5
|
import * as i4 from "./entities/document-type/document-type.module";
|
6
6
|
import * as i5 from "./entities/document/document.module";
|
7
|
+
import * as i6 from "@acorex/platform/layout/builder";
|
8
|
+
import * as i7 from "./features/file-type/file-type.module";
|
7
9
|
export declare class AXMDocumentManagementModule {
|
8
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXMDocumentManagementModule, never>;
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AXMDocumentManagementModule, never, [typeof i1.AXMDocumentManagementDocumentTypeStatusDefinitionEntityModule, typeof i2.AXMDocumentManagementDocumentTypeMetaValueEntityModule, typeof i3.AXMDocumentManagementDocumentTypeMetaDefinitionEntityModule, typeof i4.AXMDocumentManagementDocumentTypeEntityModule, typeof i5.AXMDocumentManagementDocumentEntityModule], never>;
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXMDocumentManagementModule, never, [typeof i1.AXMDocumentManagementDocumentTypeStatusDefinitionEntityModule, typeof i2.AXMDocumentManagementDocumentTypeMetaValueEntityModule, typeof i3.AXMDocumentManagementDocumentTypeMetaDefinitionEntityModule, typeof i4.AXMDocumentManagementDocumentTypeEntityModule, typeof i5.AXMDocumentManagementDocumentEntityModule, typeof i6.AXPLayoutBuilderModule, typeof i7.AXMFileTypeModule], never>;
|
10
12
|
static ɵinj: i0.ɵɵInjectorDeclaration<AXMDocumentManagementModule>;
|
11
13
|
}
|
@@ -1,10 +1,20 @@
|
|
1
|
-
import { AXMEntityCrudServiceImpl } from '@acorex/platform/
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
2
|
+
import { AXMDocumentManagementFolderEntityModel } from '../folder';
|
2
3
|
import { AXMDocumentManagementDocumentEntityModel } from './document.types';
|
3
4
|
import * as i0 from "@angular/core";
|
4
|
-
export declare abstract class
|
5
|
+
export declare abstract class AXMDocumentService extends AXMEntityCrudServiceImpl<string, AXMDocumentManagementDocumentEntityModel> {
|
6
|
+
abstract getPath(documentId: string): Promise<AXMDocumentManagementFolderEntityModel[]>;
|
7
|
+
/**
|
8
|
+
* جستجوی فایلها با نام مشخص شده
|
9
|
+
* @param searchTerm عبارت جستجو
|
10
|
+
* @param rootFolderId شناسه فولدر ریشه برای شروع جستجو
|
11
|
+
*/
|
12
|
+
abstract searchFiles(searchTerm: string, rootFolderId: string): Promise<AXMDocumentManagementDocumentEntityModel[]>;
|
5
13
|
}
|
6
|
-
export declare class
|
14
|
+
export declare class AXMDocumentServiceImpl extends AXMDocumentService {
|
7
15
|
constructor();
|
8
|
-
|
9
|
-
|
16
|
+
getPath(_: string): Promise<AXMDocumentManagementFolderEntityModel[]>;
|
17
|
+
searchFiles(_searchTerm: string, _rootFolderId: string): Promise<AXMDocumentManagementDocumentEntityModel[]>;
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMDocumentServiceImpl, never>;
|
19
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXMDocumentServiceImpl>;
|
10
20
|
}
|
@@ -1,5 +1,6 @@
|
|
1
|
-
import { AXPEntityModel } from '@acorex/platform/
|
1
|
+
import { AXPEntityModel } from '@acorex/platform/layout/entity';
|
2
2
|
export interface AXMDocumentManagementDocumentEntityModel extends AXPEntityModel<string> {
|
3
3
|
name: string;
|
4
4
|
title: string;
|
5
|
+
parentId: string;
|
5
6
|
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { AXMEntityCrudServiceImpl } from '@acorex/platform/
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
2
2
|
import { AXMDocumentManagementDocumentTypeEntityModel } from './document-type.types';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare abstract class AXMDocumentManagementDocumentTypeEntityService extends AXMEntityCrudServiceImpl<string, AXMDocumentManagementDocumentTypeEntityModel> {
|
@@ -1,5 +1,20 @@
|
|
1
|
-
import {
|
1
|
+
import { AXPMetaDataDefinition } from '@acorex/platform/layout/builder';
|
2
|
+
import { AXPEntityModel } from '@acorex/platform/layout/entity';
|
3
|
+
export interface DocumentTypeFileOutput {
|
4
|
+
selectedItems: Array<{
|
5
|
+
name: string;
|
6
|
+
title: string;
|
7
|
+
icon: string;
|
8
|
+
}>;
|
9
|
+
context: {
|
10
|
+
[key: string]: any;
|
11
|
+
};
|
12
|
+
}
|
2
13
|
export interface AXMDocumentManagementDocumentTypeEntityModel extends AXPEntityModel<string> {
|
3
14
|
name: string;
|
4
15
|
title: string;
|
16
|
+
maxSize: number;
|
17
|
+
isEncrypted: boolean;
|
18
|
+
meta: AXPMetaDataDefinition[];
|
19
|
+
type: DocumentTypeFileOutput;
|
5
20
|
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { AXMEntityCrudServiceImpl } from '@acorex/platform/
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
2
2
|
import { AXMDocumentManagementDocumentTypeMetaDefinitionEntityModel } from './document-type-meta-definition.types';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare abstract class AXMDocumentManagementDocumentTypeMetaDefinitionEntityService extends AXMEntityCrudServiceImpl<string, AXMDocumentManagementDocumentTypeMetaDefinitionEntityModel> {
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { AXMEntityCrudServiceImpl } from '@acorex/platform/
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
2
2
|
import { AXMDocumentManagementDocumentTypeMetaValueEntityModel } from './document-type-meta-value.types';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare abstract class AXMDocumentManagementDocumentTypeMetaValueEntityService extends AXMEntityCrudServiceImpl<string, AXMDocumentManagementDocumentTypeMetaValueEntityModel> {
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { AXMEntityCrudServiceImpl } from '@acorex/platform/
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
2
2
|
import { AXMDocumentManagementDocumentTypeStatusDefinitionEntityModel } from './document-type-status-definition.types';
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare abstract class AXMDocumentManagementDocumentTypeStatusDefinitionEntityService extends AXMEntityCrudServiceImpl<string, AXMDocumentManagementDocumentTypeStatusDefinitionEntityModel> {
|
@@ -0,0 +1,19 @@
|
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/layout/entity';
|
2
|
+
import { AXMDocumentManagementFolderCreateDto, AXMDocumentManagementFolderEntityModel } from './folder.types';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export declare abstract class AXMFolderService extends AXMEntityCrudServiceImpl<string, AXMDocumentManagementFolderEntityModel, AXMDocumentManagementFolderCreateDto> {
|
5
|
+
abstract getPath(folderId: string): Promise<AXMDocumentManagementFolderEntityModel[]>;
|
6
|
+
/**
|
7
|
+
* جستجوی فولدرها با نام مشخص شده
|
8
|
+
* @param searchTerm عبارت جستجو
|
9
|
+
* @param rootFolderId شناسه فولدر ریشه برای شروع جستجو
|
10
|
+
*/
|
11
|
+
abstract searchFolders(searchTerm: string, rootFolderId: string): Promise<AXMDocumentManagementFolderEntityModel[]>;
|
12
|
+
}
|
13
|
+
export declare class AXMFolderServiceImpl extends AXMFolderService {
|
14
|
+
constructor();
|
15
|
+
getPath(_: string): Promise<AXMDocumentManagementFolderEntityModel[]>;
|
16
|
+
searchFolders(_searchTerm: string, _rootFolderId: string): Promise<AXMDocumentManagementFolderEntityModel[]>;
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMFolderServiceImpl, never>;
|
18
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXMFolderServiceImpl>;
|
19
|
+
}
|
@@ -0,0 +1,37 @@
|
|
1
|
+
import { AXPEntityModel } from '@acorex/platform/layout/entity';
|
2
|
+
import { AXMDocumentManagementDocumentEntityModel } from '../document/document.types';
|
3
|
+
export interface AXMDocumentManagementFolderEntityModel extends AXPEntityModel<string> {
|
4
|
+
name: string;
|
5
|
+
color: string;
|
6
|
+
description?: string;
|
7
|
+
parentId?: string;
|
8
|
+
isSystem: boolean;
|
9
|
+
isHidden: boolean;
|
10
|
+
isDeleted: boolean;
|
11
|
+
createdAt: Date;
|
12
|
+
updatedAt: Date;
|
13
|
+
createdBy: string;
|
14
|
+
updatedBy: string;
|
15
|
+
createdByUser?: any;
|
16
|
+
updatedByUser?: any;
|
17
|
+
tenantId?: string;
|
18
|
+
userId?: string;
|
19
|
+
parent?: AXMDocumentManagementFolderEntityModel;
|
20
|
+
folders?: AXMDocumentManagementFolderEntityModel[];
|
21
|
+
documents?: AXMDocumentManagementDocumentEntityModel[];
|
22
|
+
}
|
23
|
+
export interface AXMDocumentManagementFolderCreateDto {
|
24
|
+
name: string;
|
25
|
+
color: string;
|
26
|
+
description?: string;
|
27
|
+
parentId?: string;
|
28
|
+
tenantId?: string;
|
29
|
+
userId?: string;
|
30
|
+
}
|
31
|
+
export interface AXMDocumentManagementFolderGetDto extends AXMDocumentManagementFolderEntityModel {
|
32
|
+
createdByUser?: any;
|
33
|
+
updatedByUser?: any;
|
34
|
+
parent?: AXMDocumentManagementFolderEntityModel;
|
35
|
+
folders?: AXMDocumentManagementFolderEntityModel[];
|
36
|
+
documents?: AXMDocumentManagementDocumentEntityModel[];
|
37
|
+
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import { AXFormComponent } from '@acorex/components/form';
|
2
|
+
import { AXBasePageComponent } from '@acorex/components/page';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export declare class AXMCreateFolderDialog extends AXBasePageComponent {
|
5
|
+
private driveService;
|
6
|
+
parentId?: string;
|
7
|
+
protected name: import("@angular/core").ModelSignal<string>;
|
8
|
+
protected color: import("@angular/core").ModelSignal<string>;
|
9
|
+
protected description: import("@angular/core").ModelSignal<string>;
|
10
|
+
handleSubmitButton(form: AXFormComponent): Promise<void>;
|
11
|
+
onCancel(): void;
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMCreateFolderDialog, never>;
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXMCreateFolderDialog, "ax-create-folder-dialog", never, { "name": { "alias": "name"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "description": { "alias": "description"; "required": false; "isSignal": true; }; }, { "name": "nameChange"; "color": "colorChange"; "description": "descriptionChange"; }, never, never, true, never>;
|
14
|
+
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import { AXFormComponent } from '@acorex/components/form';
|
2
|
+
import { AXBasePageComponent } from '@acorex/components/page';
|
3
|
+
import { AXMDocumentExplorerNode } from '../../../drive';
|
4
|
+
import * as i0 from "@angular/core";
|
5
|
+
export declare class AXMRenameNodeDialog extends AXBasePageComponent {
|
6
|
+
private driveService;
|
7
|
+
node: AXMDocumentExplorerNode;
|
8
|
+
protected name: import("@angular/core").ModelSignal<string>;
|
9
|
+
protected ngOnInit(): void;
|
10
|
+
handleSubmitButton(form: AXFormComponent): Promise<void>;
|
11
|
+
onCancel(): void;
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMRenameNodeDialog, never>;
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXMRenameNodeDialog, "ax-rename-node-dialog", never, { "name": { "alias": "name"; "required": false; "isSignal": true; }; }, { "name": "nameChange"; }, never, never, true, never>;
|
14
|
+
}
|