@acorex/modules 18.2.0 → 18.2.1
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.source.d.ts +1 -0
- package/application-management/lib/services/application-module-management.service.d.ts +10 -0
- package/application-management/lib/services/edition-management.service.d.ts +10 -0
- package/application-management/lib/services/entity-management.service.d.ts +10 -0
- package/application-management/lib/services/feature-management.service.d.ts +10 -0
- package/application-management/lib/services/permission-management.service.d.ts +10 -0
- package/application-management/lib/services/property-management.service.d.ts +10 -0
- package/auth/lib/menu.provider.d.ts +1 -2
- package/conversation/index.d.ts +13 -4
- package/conversation/lib/conversation.module.d.ts +6 -3
- package/conversation/lib/entities/chat/chat.module.d.ts +23 -0
- package/conversation/lib/entities/chat/chat.type.d.ts +21 -0
- package/conversation/lib/entities/chat/components/chat-item/chat-item.component.d.ts +16 -0
- package/conversation/lib/entities/chat/components/chat-item-footer/chat-item-footer.component.d.ts +5 -0
- package/conversation/lib/entities/chat/components/chat-item-header/chat-item-header.component.d.ts +5 -0
- package/conversation/lib/entities/chat/components/chat-items/chat-items.component.d.ts +6 -0
- package/conversation/lib/entities/chat/components/chat-preview/chat-preview.component.d.ts +28 -0
- package/conversation/lib/entities/chat/pages/chat/chat.component.d.ts +5 -0
- package/conversation/lib/{comments → entities/comments}/comment.module.d.ts +1 -1
- package/{platform-management/lib/comments/comment-management.service.d.ts → conversation/lib/entities/comments/comments.service.d.ts} +5 -2
- package/conversation/lib/{comments → entities/comments/pages}/comment-list-view.component.d.ts +1 -1
- package/converstion-test/README.md +4 -0
- package/converstion-test/index.d.ts +1 -0
- package/converstion-test/lib/converstion-test.module.d.ts +6 -0
- package/esm2022/application-management/lib/application-management.module.mjs +36 -1
- package/esm2022/application-management/lib/application-management.source.mjs +2 -1
- package/esm2022/application-management/lib/entities/application-module.entity.mjs +10 -13
- package/esm2022/application-management/lib/entities/edition.entity.mjs +10 -13
- package/esm2022/application-management/lib/entities/entity.entity.mjs +10 -13
- package/esm2022/application-management/lib/entities/feature.entity.mjs +10 -13
- package/esm2022/application-management/lib/entities/modules.entity.mjs +2 -2
- package/esm2022/application-management/lib/entities/permission.entity.mjs +10 -13
- package/esm2022/application-management/lib/entities/property.entity.mjs +10 -13
- package/esm2022/application-management/lib/layouts/module-entity-detail-view/module-entity-detail-view.component.mjs +5 -4
- package/esm2022/application-management/lib/menu.provider.mjs +5 -5
- package/esm2022/application-management/lib/services/application-module-management.service.mjs +17 -0
- package/esm2022/application-management/lib/services/edition-management.service.mjs +17 -0
- package/esm2022/application-management/lib/services/entity-management.service.mjs +17 -0
- package/esm2022/application-management/lib/services/feature-management.service.mjs +17 -0
- package/esm2022/application-management/lib/services/permission-management.service.mjs +17 -0
- package/esm2022/application-management/lib/services/property-management.service.mjs +17 -0
- package/esm2022/auth/lib/account/account.module.mjs +6 -2
- package/esm2022/auth/lib/menu.provider.mjs +17 -22
- package/esm2022/conversation/index.mjs +14 -5
- package/esm2022/conversation/lib/conversation.module.mjs +13 -8
- package/esm2022/conversation/lib/entities/chat/chat.module.mjs +90 -0
- package/esm2022/conversation/lib/entities/chat/chat.type.mjs +2 -0
- package/esm2022/conversation/lib/entities/chat/components/chat-item/chat-item.component.mjs +35 -0
- package/esm2022/conversation/lib/entities/chat/components/chat-item-footer/chat-item-footer.component.mjs +13 -0
- package/esm2022/conversation/lib/entities/chat/components/chat-item-header/chat-item-header.component.mjs +15 -0
- package/esm2022/conversation/lib/entities/chat/components/chat-items/chat-items.component.mjs +15 -0
- package/esm2022/conversation/lib/entities/chat/components/chat-preview/chat-preview.component.mjs +237 -0
- package/esm2022/conversation/lib/entities/chat/pages/chat/chat.component.mjs +15 -0
- package/esm2022/conversation/lib/entities/comments/comment.module.mjs +100 -0
- package/esm2022/conversation/lib/entities/comments/comments.service.mjs +20 -0
- package/esm2022/conversation/lib/entities/comments/comments.type.mjs +2 -0
- package/esm2022/conversation/lib/entities/comments/pages/comment-list-view.component.mjs +393 -0
- package/esm2022/conversation/lib/{comments → entities/comments/pages}/comment-lookup-popup.component.mjs +1 -1
- package/esm2022/converstion-test/acorex-modules-converstion-test.mjs +5 -0
- package/esm2022/converstion-test/index.mjs +2 -0
- package/esm2022/converstion-test/lib/converstion-test.module.mjs +16 -0
- package/esm2022/form-template-management/acorex-modules-form-template-management.mjs +5 -0
- package/esm2022/form-template-management/index.mjs +2 -0
- package/esm2022/form-template-management/lib/const.mjs +8 -0
- package/esm2022/form-template-management/lib/entities/category/category.entity.mjs +241 -0
- package/esm2022/form-template-management/lib/entities/category/category.module.mjs +28 -0
- package/esm2022/form-template-management/lib/entities/category/category.service.mjs +17 -0
- package/esm2022/form-template-management/lib/entities/category/category.types.mjs +2 -0
- package/esm2022/form-template-management/lib/entities/category/index.mjs +5 -0
- package/esm2022/form-template-management/lib/entities/template/index.mjs +5 -0
- package/esm2022/form-template-management/lib/entities/template/template.entity.mjs +241 -0
- package/esm2022/form-template-management/lib/entities/template/template.module.mjs +28 -0
- package/esm2022/form-template-management/lib/entities/template/template.service.mjs +17 -0
- package/esm2022/form-template-management/lib/entities/template/template.types.mjs +2 -0
- package/esm2022/form-template-management/lib/entity.provider.mjs +25 -0
- package/esm2022/form-template-management/lib/form-template-management.module.mjs +77 -0
- package/esm2022/form-template-management/lib/menu.provider.mjs +45 -0
- package/esm2022/form-template-management/lib/pages/designer/designer.page.mjs +24 -0
- package/esm2022/localization-management/acorex-modules-localization-management.mjs +5 -0
- package/esm2022/localization-management/index.mjs +8 -0
- package/esm2022/localization-management/lib/culture/culture.entity.mjs +239 -0
- package/esm2022/localization-management/lib/culture/culture.service.mjs +17 -0
- package/esm2022/localization-management/lib/culture/culture.types.mjs +2 -0
- package/esm2022/localization-management/lib/culture/index.mjs +4 -0
- package/esm2022/localization-management/lib/entity.loader.mjs +36 -0
- package/esm2022/localization-management/lib/language/index.mjs +4 -0
- package/esm2022/localization-management/lib/language/language-slot/language-slot.component.mjs +30 -0
- package/esm2022/localization-management/lib/language/language.entity.mjs +239 -0
- package/esm2022/localization-management/lib/language/language.service.mjs +17 -0
- package/esm2022/localization-management/lib/language/language.types.mjs +2 -0
- package/esm2022/localization-management/lib/localization-management.module.mjs +99 -0
- package/esm2022/localization-management/lib/localization-management.source.mjs +4 -0
- package/esm2022/localization-management/lib/localization-store.service.mjs +34 -0
- package/esm2022/localization-management/lib/menu.provider.mjs +46 -0
- package/esm2022/localization-management/lib/time-zone/index.mjs +4 -0
- package/esm2022/localization-management/lib/time-zone/time-zone.entity.mjs +256 -0
- package/esm2022/localization-management/lib/time-zone/time-zone.service.mjs +17 -0
- package/esm2022/localization-management/lib/time-zone/time-zone.types.mjs +2 -0
- package/esm2022/notification-management/lib/admin-notification-slot/admin-notification-item/admin-notification-item.component.mjs +3 -3
- package/esm2022/notification-management/lib/admin-notification-slot/admin-notification-slot/admin-notification-slot.component.mjs +3 -3
- package/esm2022/notification-management/lib/entities/my-notification.mjs +8 -15
- package/esm2022/notification-management/lib/entities/notification-channel.entity.mjs +3 -3
- package/esm2022/notification-management/lib/menu.provider.mjs +6 -11
- package/esm2022/platform-management/index.mjs +2 -3
- package/esm2022/platform-management/lib/common/common.module.mjs +65 -0
- package/esm2022/platform-management/lib/common/common.source.mjs +5 -0
- package/esm2022/platform-management/lib/common/country/country-datasource.provider.mjs +27 -0
- package/esm2022/platform-management/lib/common/country/country.entity.mjs +696 -0
- package/esm2022/platform-management/lib/common/country/country.service.mjs +17 -0
- package/esm2022/platform-management/lib/common/country/country.types.mjs +2 -0
- package/esm2022/platform-management/lib/common/country/index.mjs +4 -0
- package/esm2022/platform-management/lib/common/currency/currency.entity.mjs +283 -0
- package/esm2022/platform-management/lib/common/currency/currency.service.mjs +17 -0
- package/esm2022/platform-management/lib/common/currency/currency.types.mjs +2 -0
- package/esm2022/platform-management/lib/common/currency/index.mjs +4 -0
- package/esm2022/platform-management/lib/common/entity.loader.mjs +36 -0
- package/esm2022/platform-management/lib/common/index.mjs +5 -0
- package/esm2022/platform-management/lib/common/province/index.mjs +4 -0
- package/esm2022/platform-management/lib/common/province/province.entity.mjs +307 -0
- package/esm2022/platform-management/lib/common/province/province.service.mjs +17 -0
- package/esm2022/platform-management/lib/common/province/province.types.mjs +2 -0
- package/esm2022/platform-management/lib/global-variables/entities/global-variable.entity.mjs +54 -4
- package/esm2022/platform-management/lib/menu.provider.mjs +30 -14
- package/esm2022/platform-management/lib/platform-management.module.mjs +11 -32
- package/esm2022/template-management/index.mjs +2 -2
- package/esm2022/template-management/lib/entities/category.entity.mjs +32 -15
- package/esm2022/template-management/lib/entities/template-variable.entity.mjs +90 -90
- package/esm2022/template-management/lib/entities/text-template.entity.mjs +26 -1
- package/esm2022/template-management/lib/entity.provider.mjs +32 -0
- package/esm2022/template-management/lib/menu.provider.mjs +5 -5
- package/esm2022/template-management/lib/template-management.module.mjs +4 -4
- package/fesm2022/{acorex-modules-application-management-module-designer.component-BCaCCEXO.mjs → acorex-modules-application-management-module-designer.component-CaR_HZfL.mjs} +3 -3
- package/fesm2022/{acorex-modules-application-management-module-designer.component-BCaCCEXO.mjs.map → acorex-modules-application-management-module-designer.component-CaR_HZfL.mjs.map} +1 -1
- package/fesm2022/acorex-modules-application-management.mjs +338 -242
- package/fesm2022/acorex-modules-application-management.mjs.map +1 -1
- package/fesm2022/{acorex-modules-auth-acorex-modules-auth-D2WBJhj6.mjs → acorex-modules-auth-acorex-modules-auth-BVOt-gis.mjs} +29 -28
- package/fesm2022/acorex-modules-auth-acorex-modules-auth-BVOt-gis.mjs.map +1 -0
- package/fesm2022/{acorex-modules-auth-app-chooser.component-B7BwymT_.mjs → acorex-modules-auth-app-chooser.component-DhPEtLuK.mjs} +2 -2
- package/fesm2022/{acorex-modules-auth-app-chooser.component-B7BwymT_.mjs.map → acorex-modules-auth-app-chooser.component-DhPEtLuK.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-auth-login.module-BjvPlYQZ.mjs → acorex-modules-auth-login.module-sFVL-lYB.mjs} +4 -4
- package/fesm2022/{acorex-modules-auth-login.module-BjvPlYQZ.mjs.map → acorex-modules-auth-login.module-sFVL-lYB.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-auth-master.layout-CeqMPrx8.mjs → acorex-modules-auth-master.layout-Bnt5qiio.mjs} +2 -2
- package/fesm2022/{acorex-modules-auth-master.layout-CeqMPrx8.mjs.map → acorex-modules-auth-master.layout-Bnt5qiio.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-auth-password.component-X3BUidi1.mjs → acorex-modules-auth-password.component-BXL-aLTx.mjs} +2 -2
- package/fesm2022/{acorex-modules-auth-password.component-X3BUidi1.mjs.map → acorex-modules-auth-password.component-BXL-aLTx.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-auth-password.component-87NrYq3i.mjs → acorex-modules-auth-password.component-ClaRp38G.mjs} +2 -2
- package/fesm2022/{acorex-modules-auth-password.component-87NrYq3i.mjs.map → acorex-modules-auth-password.component-ClaRp38G.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-auth-routes-D1JZT2cF.mjs → acorex-modules-auth-routes-MDneFw2m.mjs} +2 -2
- package/fesm2022/{acorex-modules-auth-routes-D1JZT2cF.mjs.map → acorex-modules-auth-routes-MDneFw2m.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-auth-two-factor.module-C28ix6Wr.mjs → acorex-modules-auth-two-factor.module-BHulbf0N.mjs} +2 -2
- package/fesm2022/{acorex-modules-auth-two-factor.module-C28ix6Wr.mjs.map → acorex-modules-auth-two-factor.module-BHulbf0N.mjs.map} +1 -1
- package/fesm2022/acorex-modules-auth.mjs +1 -1
- package/fesm2022/acorex-modules-conversation.mjs +413 -11
- package/fesm2022/acorex-modules-conversation.mjs.map +1 -1
- package/fesm2022/acorex-modules-converstion-test.mjs +23 -0
- package/fesm2022/acorex-modules-converstion-test.mjs.map +1 -0
- package/fesm2022/{acorex-modules-form-management-designer.page-SoPH2V7i.mjs → acorex-modules-form-template-management-designer.page-DC18KFvK.mjs} +6 -6
- package/fesm2022/acorex-modules-form-template-management-designer.page-DC18KFvK.mjs.map +1 -0
- package/fesm2022/acorex-modules-form-template-management.mjs +713 -0
- package/fesm2022/acorex-modules-form-template-management.mjs.map +1 -0
- package/fesm2022/acorex-modules-localization-management.mjs +1019 -0
- package/fesm2022/acorex-modules-localization-management.mjs.map +1 -0
- package/fesm2022/acorex-modules-notification-management.mjs +18 -29
- package/fesm2022/acorex-modules-notification-management.mjs.map +1 -1
- package/fesm2022/acorex-modules-platform-management.mjs +1424 -213
- package/fesm2022/acorex-modules-platform-management.mjs.map +1 -1
- package/fesm2022/acorex-modules-template-management.mjs +162 -124
- package/fesm2022/acorex-modules-template-management.mjs.map +1 -1
- package/form-template-management/README.md +4 -0
- package/form-template-management/index.d.ts +1 -0
- package/form-template-management/lib/const.d.ts +7 -0
- package/form-template-management/lib/entities/category/category.entity.d.ts +3 -0
- package/form-template-management/lib/entities/category/category.module.d.ts +6 -0
- package/form-template-management/lib/entities/category/category.service.d.ts +10 -0
- package/form-template-management/lib/entities/category/category.types.d.ts +5 -0
- package/form-template-management/lib/entities/category/index.d.ts +4 -0
- package/form-template-management/lib/entities/template/index.d.ts +4 -0
- package/form-template-management/lib/entities/template/template.entity.d.ts +3 -0
- package/form-template-management/lib/entities/template/template.module.d.ts +6 -0
- package/form-template-management/lib/entities/template/template.service.d.ts +10 -0
- package/form-template-management/lib/entities/template/template.types.d.ts +5 -0
- package/form-template-management/lib/entity.provider.d.ts +9 -0
- package/form-template-management/lib/form-template-management.module.d.ts +10 -0
- package/form-template-management/lib/menu.provider.d.ts +5 -0
- package/form-template-management/lib/pages/designer/designer.page.d.ts +5 -0
- package/localization-management/README.md +4 -0
- package/localization-management/index.d.ts +7 -0
- package/localization-management/lib/culture/culture.entity.d.ts +3 -0
- package/localization-management/lib/culture/culture.service.d.ts +10 -0
- package/localization-management/lib/culture/culture.types.d.ts +12 -0
- package/localization-management/lib/culture/index.d.ts +3 -0
- package/localization-management/lib/entity.loader.d.ts +9 -0
- package/localization-management/lib/language/index.d.ts +3 -0
- package/localization-management/lib/language/language-slot/language-slot.component.d.ts +19 -0
- package/localization-management/lib/localization-management.module.d.ts +10 -0
- package/localization-management/lib/localization-management.source.d.ts +3 -0
- package/localization-management/lib/localization-store.service.d.ts +7 -0
- package/localization-management/lib/menu.provider.d.ts +5 -0
- package/localization-management/lib/time-zone/index.d.ts +3 -0
- package/localization-management/lib/time-zone/time-zone.entity.d.ts +3 -0
- package/localization-management/lib/time-zone/time-zone.service.d.ts +10 -0
- package/localization-management/lib/time-zone/time-zone.types.d.ts +9 -0
- package/notification-management/lib/menu.provider.d.ts +0 -1
- package/package.json +24 -12
- package/platform-management/index.d.ts +1 -2
- package/platform-management/lib/common/common.module.d.ts +6 -0
- package/platform-management/lib/common/common.source.d.ts +4 -0
- package/platform-management/lib/common/country/country-datasource.provider.d.ts +5 -0
- package/platform-management/lib/common/country/country.entity.d.ts +3 -0
- package/platform-management/lib/common/country/country.service.d.ts +10 -0
- package/platform-management/lib/common/country/country.types.d.ts +18 -0
- package/platform-management/lib/common/country/index.d.ts +3 -0
- package/platform-management/lib/common/currency/currency.entity.d.ts +3 -0
- package/platform-management/lib/common/currency/currency.service.d.ts +10 -0
- package/platform-management/lib/common/currency/currency.types.d.ts +6 -0
- package/platform-management/lib/common/currency/index.d.ts +3 -0
- package/platform-management/lib/{languages → common}/entity.loader.d.ts +3 -3
- package/platform-management/lib/common/index.d.ts +4 -0
- package/platform-management/lib/common/province/index.d.ts +3 -0
- package/platform-management/lib/common/province/province.entity.d.ts +3 -0
- package/platform-management/lib/common/province/province.service.d.ts +10 -0
- package/platform-management/lib/common/province/province.types.d.ts +7 -0
- package/platform-management/lib/menu.provider.d.ts +1 -1
- package/platform-management/lib/platform-management.module.d.ts +2 -1
- package/template-management/index.d.ts +1 -1
- package/template-management/lib/{entity.loader.d.ts → entity.provider.d.ts} +3 -3
- package/conversation/lib/comments/comments.service.d.ts +0 -5
- package/esm2022/conversation/lib/comments/comment-list-view.component.mjs +0 -393
- package/esm2022/conversation/lib/comments/comment.module.mjs +0 -89
- package/esm2022/conversation/lib/comments/comments.service.mjs +0 -4
- package/esm2022/conversation/lib/comments/comments.type.mjs +0 -2
- package/esm2022/form-management/acorex-modules-form-management.mjs +0 -5
- package/esm2022/form-management/index.mjs +0 -2
- package/esm2022/form-management/lib/designer/designer.page.mjs +0 -24
- package/esm2022/form-management/lib/form-management.module.mjs +0 -53
- package/esm2022/form-management/lib/menu.provider.mjs +0 -35
- package/esm2022/platform-management/lib/comments/comment-management.service.mjs +0 -18
- package/esm2022/platform-management/lib/languages/entities/language.entity.mjs +0 -234
- package/esm2022/platform-management/lib/languages/entity.loader.mjs +0 -26
- package/esm2022/platform-management/lib/languages/index.mjs +0 -5
- package/esm2022/platform-management/lib/languages/language-management.service.mjs +0 -16
- package/esm2022/platform-management/lib/languages/language.types.mjs +0 -2
- package/esm2022/template-management/lib/entity.loader.mjs +0 -36
- package/fesm2022/acorex-modules-auth-acorex-modules-auth-D2WBJhj6.mjs.map +0 -1
- package/fesm2022/acorex-modules-form-management-designer.page-SoPH2V7i.mjs.map +0 -1
- package/fesm2022/acorex-modules-form-management.mjs +0 -93
- package/fesm2022/acorex-modules-form-management.mjs.map +0 -1
- package/form-management/README.md +0 -4
- package/form-management/index.d.ts +0 -1
- package/form-management/lib/designer/designer.page.d.ts +0 -5
- package/form-management/lib/form-management.module.d.ts +0 -8
- package/form-management/lib/menu.provider.d.ts +0 -5
- package/platform-management/lib/languages/index.d.ts +0 -4
- /package/conversation/lib/{comments → entities/comments}/comments.type.d.ts +0 -0
- /package/conversation/lib/{comments → entities/comments/pages}/comment-lookup-popup.component.d.ts +0 -0
- /package/{platform-management/lib/languages/entities → localization-management/lib/language}/language.entity.d.ts +0 -0
- /package/{platform-management/lib/languages/language-management.service.d.ts → localization-management/lib/language/language.service.d.ts} +0 -0
- /package/{platform-management/lib/languages → localization-management/lib/language}/language.types.d.ts +0 -0
@@ -0,0 +1,713 @@
|
|
1
|
+
import { AXMEntityCrudServiceImpl, AXPEntityQueryType, AXPEntityCommandScope, AXP_MENU_PROVIDER } from '@acorex/platform/common';
|
2
|
+
import { AXPEntityService, AXP_ENTITY_DEFINITION_LOADER } from '@acorex/platform/layout/entity';
|
3
|
+
import { AXPWidgetsModule } from '@acorex/platform/widgets';
|
4
|
+
import * as i0 from '@angular/core';
|
5
|
+
import { Injectable, NgModule, inject, Injector } from '@angular/core';
|
6
|
+
import * as i1 from '@angular/router';
|
7
|
+
import { RouterModule } from '@angular/router';
|
8
|
+
import { AXPWidgetsCatalog } from '@acorex/platform/layout/builder';
|
9
|
+
|
10
|
+
const AXMFormTemplateManagementModuleConst = {
|
11
|
+
moduleName: 'FormTemplateManagement',
|
12
|
+
moduleRoute: 'form-template-management',
|
13
|
+
i18n: '#form-template-management',
|
14
|
+
categoryEntity: 'Category',
|
15
|
+
templateEntity: 'Template',
|
16
|
+
};
|
17
|
+
|
18
|
+
class AXMFormTemplateManagementCategoryEntityService extends AXMEntityCrudServiceImpl {
|
19
|
+
}
|
20
|
+
class AXMFormTemplateManagementCategoryEntityServiceImpl extends AXMFormTemplateManagementCategoryEntityService {
|
21
|
+
constructor() {
|
22
|
+
super(`${AXMFormTemplateManagementModuleConst.moduleName}.${AXMFormTemplateManagementModuleConst.categoryEntity}`);
|
23
|
+
}
|
24
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMFormTemplateManagementCategoryEntityServiceImpl, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
25
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMFormTemplateManagementCategoryEntityServiceImpl }); }
|
26
|
+
}
|
27
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMFormTemplateManagementCategoryEntityServiceImpl, decorators: [{
|
28
|
+
type: Injectable
|
29
|
+
}], ctorParameters: () => [] });
|
30
|
+
|
31
|
+
async function factory$1(injector) {
|
32
|
+
const dataService = injector.get(AXMFormTemplateManagementCategoryEntityService);
|
33
|
+
const i18n = AXMFormTemplateManagementModuleConst.i18n;
|
34
|
+
const entityDef = {
|
35
|
+
module: AXMFormTemplateManagementModuleConst.moduleName,
|
36
|
+
name: AXMFormTemplateManagementModuleConst.categoryEntity,
|
37
|
+
source: '',
|
38
|
+
title: `${i18n}.category`,
|
39
|
+
formats: {
|
40
|
+
individual: `${i18n}.category`,
|
41
|
+
plural: `${i18n}.categories`,
|
42
|
+
},
|
43
|
+
relatedEntities: [],
|
44
|
+
groups: [
|
45
|
+
{
|
46
|
+
id: 'section',
|
47
|
+
title: `${i18n}.category`,
|
48
|
+
},
|
49
|
+
],
|
50
|
+
properties: [
|
51
|
+
{
|
52
|
+
name: 'name',
|
53
|
+
title: '#common.name',
|
54
|
+
groupId: 'section',
|
55
|
+
options: {
|
56
|
+
sort: {
|
57
|
+
enabled: true,
|
58
|
+
},
|
59
|
+
},
|
60
|
+
schema: {
|
61
|
+
dataType: 'string',
|
62
|
+
interface: {
|
63
|
+
type: AXPWidgetsCatalog.text,
|
64
|
+
},
|
65
|
+
},
|
66
|
+
validations: [
|
67
|
+
{
|
68
|
+
rule: 'required',
|
69
|
+
},
|
70
|
+
],
|
71
|
+
},
|
72
|
+
{
|
73
|
+
name: 'title',
|
74
|
+
title: '#common.title',
|
75
|
+
groupId: 'section',
|
76
|
+
schema: {
|
77
|
+
dataType: 'string',
|
78
|
+
interface: {
|
79
|
+
type: AXPWidgetsCatalog.text,
|
80
|
+
},
|
81
|
+
},
|
82
|
+
validations: [
|
83
|
+
{
|
84
|
+
rule: 'required',
|
85
|
+
},
|
86
|
+
],
|
87
|
+
},
|
88
|
+
],
|
89
|
+
columns: [{ name: 'name' }, { name: 'title' }],
|
90
|
+
commands: {
|
91
|
+
create: {
|
92
|
+
execute: async (data) => {
|
93
|
+
const res = await dataService.insertOne(data);
|
94
|
+
return { id: res };
|
95
|
+
},
|
96
|
+
},
|
97
|
+
delete: {
|
98
|
+
execute: async (id) => {
|
99
|
+
return await dataService.deleteOne(id);
|
100
|
+
},
|
101
|
+
},
|
102
|
+
update: {
|
103
|
+
execute: async (data) => {
|
104
|
+
return await dataService.updateOne(data.id, data);
|
105
|
+
},
|
106
|
+
},
|
107
|
+
},
|
108
|
+
queries: {
|
109
|
+
byKey: {
|
110
|
+
execute: async (id) => {
|
111
|
+
return await dataService.getOne(id);
|
112
|
+
},
|
113
|
+
type: AXPEntityQueryType.Single,
|
114
|
+
},
|
115
|
+
list: {
|
116
|
+
execute: async (e) => {
|
117
|
+
return await dataService.query({ skip: e.skip, take: e.take, filter: e.filter });
|
118
|
+
},
|
119
|
+
type: AXPEntityQueryType.List,
|
120
|
+
},
|
121
|
+
},
|
122
|
+
interfaces: {
|
123
|
+
master: {
|
124
|
+
create: {
|
125
|
+
sections: [
|
126
|
+
{
|
127
|
+
id: 'section',
|
128
|
+
},
|
129
|
+
],
|
130
|
+
properties: [
|
131
|
+
{
|
132
|
+
name: 'name',
|
133
|
+
layout: {
|
134
|
+
positions: {
|
135
|
+
lg: {
|
136
|
+
colSpan: 6,
|
137
|
+
},
|
138
|
+
},
|
139
|
+
},
|
140
|
+
},
|
141
|
+
{
|
142
|
+
name: 'title',
|
143
|
+
layout: {
|
144
|
+
positions: {
|
145
|
+
lg: {
|
146
|
+
colSpan: 6,
|
147
|
+
},
|
148
|
+
},
|
149
|
+
},
|
150
|
+
},
|
151
|
+
],
|
152
|
+
},
|
153
|
+
update: {
|
154
|
+
sections: [
|
155
|
+
{
|
156
|
+
id: 'section',
|
157
|
+
},
|
158
|
+
],
|
159
|
+
properties: [
|
160
|
+
{
|
161
|
+
name: 'name',
|
162
|
+
layout: {
|
163
|
+
positions: {
|
164
|
+
lg: {
|
165
|
+
colSpan: 6,
|
166
|
+
},
|
167
|
+
},
|
168
|
+
},
|
169
|
+
},
|
170
|
+
{
|
171
|
+
name: 'title',
|
172
|
+
layout: {
|
173
|
+
positions: {
|
174
|
+
lg: {
|
175
|
+
colSpan: 6,
|
176
|
+
},
|
177
|
+
},
|
178
|
+
},
|
179
|
+
},
|
180
|
+
],
|
181
|
+
},
|
182
|
+
single: {
|
183
|
+
title: '{{title}}',
|
184
|
+
sections: [
|
185
|
+
{
|
186
|
+
id: 'section',
|
187
|
+
layout: {
|
188
|
+
positions: {
|
189
|
+
lg: {
|
190
|
+
colSpan: 12,
|
191
|
+
},
|
192
|
+
},
|
193
|
+
},
|
194
|
+
},
|
195
|
+
],
|
196
|
+
properties: [
|
197
|
+
{
|
198
|
+
name: 'name',
|
199
|
+
layout: {
|
200
|
+
positions: {
|
201
|
+
lg: {
|
202
|
+
colSpan: 6,
|
203
|
+
},
|
204
|
+
},
|
205
|
+
},
|
206
|
+
},
|
207
|
+
{
|
208
|
+
name: 'title',
|
209
|
+
layout: {
|
210
|
+
positions: {
|
211
|
+
lg: {
|
212
|
+
colSpan: 6,
|
213
|
+
},
|
214
|
+
},
|
215
|
+
},
|
216
|
+
},
|
217
|
+
],
|
218
|
+
actions: [],
|
219
|
+
},
|
220
|
+
list: {
|
221
|
+
actions: [
|
222
|
+
{
|
223
|
+
title: `#common.create`,
|
224
|
+
command: 'create-entity',
|
225
|
+
priority: 'primary',
|
226
|
+
type: 'create',
|
227
|
+
scope: AXPEntityCommandScope.TypeLevel,
|
228
|
+
},
|
229
|
+
{
|
230
|
+
title: '#common.deleteItems',
|
231
|
+
command: 'delete-entity',
|
232
|
+
priority: 'primary',
|
233
|
+
type: 'delete',
|
234
|
+
scope: AXPEntityCommandScope.Selected,
|
235
|
+
},
|
236
|
+
{
|
237
|
+
title: '#common.detail',
|
238
|
+
command: 'open-entity',
|
239
|
+
priority: 'secondary',
|
240
|
+
type: 'view',
|
241
|
+
scope: AXPEntityCommandScope.Individual,
|
242
|
+
},
|
243
|
+
{
|
244
|
+
title: '#common.delete',
|
245
|
+
command: 'delete-entity',
|
246
|
+
priority: 'secondary',
|
247
|
+
type: 'delete',
|
248
|
+
scope: AXPEntityCommandScope.Individual,
|
249
|
+
},
|
250
|
+
],
|
251
|
+
views: [
|
252
|
+
{
|
253
|
+
name: 'all',
|
254
|
+
title: '#common.allItem',
|
255
|
+
fixed: true,
|
256
|
+
columns: [],
|
257
|
+
conditions: [],
|
258
|
+
sorts: [],
|
259
|
+
},
|
260
|
+
],
|
261
|
+
},
|
262
|
+
},
|
263
|
+
},
|
264
|
+
};
|
265
|
+
return entityDef;
|
266
|
+
}
|
267
|
+
|
268
|
+
var category_entity = /*#__PURE__*/Object.freeze({
|
269
|
+
__proto__: null,
|
270
|
+
factory: factory$1
|
271
|
+
});
|
272
|
+
|
273
|
+
class AXMFormTemplateManagementCategoryEntityModule {
|
274
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMFormTemplateManagementCategoryEntityModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
275
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.0", ngImport: i0, type: AXMFormTemplateManagementCategoryEntityModule }); }
|
276
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMFormTemplateManagementCategoryEntityModule, providers: [
|
277
|
+
{
|
278
|
+
provide: AXMFormTemplateManagementCategoryEntityService,
|
279
|
+
useClass: AXMFormTemplateManagementCategoryEntityServiceImpl,
|
280
|
+
},
|
281
|
+
] }); }
|
282
|
+
}
|
283
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMFormTemplateManagementCategoryEntityModule, decorators: [{
|
284
|
+
type: NgModule,
|
285
|
+
args: [{
|
286
|
+
imports: [],
|
287
|
+
exports: [],
|
288
|
+
declarations: [],
|
289
|
+
providers: [
|
290
|
+
{
|
291
|
+
provide: AXMFormTemplateManagementCategoryEntityService,
|
292
|
+
useClass: AXMFormTemplateManagementCategoryEntityServiceImpl,
|
293
|
+
},
|
294
|
+
],
|
295
|
+
}]
|
296
|
+
}] });
|
297
|
+
|
298
|
+
class AXMFormTemplateManagementTemplateEntityService extends AXMEntityCrudServiceImpl {
|
299
|
+
}
|
300
|
+
class AXMFormTemplateManagementTemplateEntityServiceImpl extends AXMFormTemplateManagementTemplateEntityService {
|
301
|
+
constructor() {
|
302
|
+
super(`${AXMFormTemplateManagementModuleConst.moduleName}.${AXMFormTemplateManagementModuleConst.templateEntity}`);
|
303
|
+
}
|
304
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMFormTemplateManagementTemplateEntityServiceImpl, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
305
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMFormTemplateManagementTemplateEntityServiceImpl }); }
|
306
|
+
}
|
307
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMFormTemplateManagementTemplateEntityServiceImpl, decorators: [{
|
308
|
+
type: Injectable
|
309
|
+
}], ctorParameters: () => [] });
|
310
|
+
|
311
|
+
async function factory(injector) {
|
312
|
+
const dataService = injector.get(AXMFormTemplateManagementTemplateEntityService);
|
313
|
+
const i18n = AXMFormTemplateManagementModuleConst.i18n;
|
314
|
+
const entityDef = {
|
315
|
+
module: AXMFormTemplateManagementModuleConst.moduleName,
|
316
|
+
name: AXMFormTemplateManagementModuleConst.templateEntity,
|
317
|
+
source: '',
|
318
|
+
title: `${i18n}.template`,
|
319
|
+
formats: {
|
320
|
+
individual: `${i18n}.template`,
|
321
|
+
plural: `${i18n}.templates`,
|
322
|
+
},
|
323
|
+
relatedEntities: [],
|
324
|
+
groups: [
|
325
|
+
{
|
326
|
+
id: 'section',
|
327
|
+
title: `${i18n}.template`,
|
328
|
+
},
|
329
|
+
],
|
330
|
+
properties: [
|
331
|
+
{
|
332
|
+
name: 'name',
|
333
|
+
title: '#common.name',
|
334
|
+
groupId: 'section',
|
335
|
+
options: {
|
336
|
+
sort: {
|
337
|
+
enabled: true,
|
338
|
+
},
|
339
|
+
},
|
340
|
+
schema: {
|
341
|
+
dataType: 'string',
|
342
|
+
interface: {
|
343
|
+
type: AXPWidgetsCatalog.text,
|
344
|
+
},
|
345
|
+
},
|
346
|
+
validations: [
|
347
|
+
{
|
348
|
+
rule: 'required',
|
349
|
+
},
|
350
|
+
],
|
351
|
+
},
|
352
|
+
{
|
353
|
+
name: 'title',
|
354
|
+
title: '#common.title',
|
355
|
+
groupId: 'section',
|
356
|
+
schema: {
|
357
|
+
dataType: 'string',
|
358
|
+
interface: {
|
359
|
+
type: AXPWidgetsCatalog.text,
|
360
|
+
},
|
361
|
+
},
|
362
|
+
validations: [
|
363
|
+
{
|
364
|
+
rule: 'required',
|
365
|
+
},
|
366
|
+
],
|
367
|
+
},
|
368
|
+
],
|
369
|
+
columns: [{ name: 'name' }, { name: 'title' }],
|
370
|
+
commands: {
|
371
|
+
create: {
|
372
|
+
execute: async (data) => {
|
373
|
+
const res = await dataService.insertOne(data);
|
374
|
+
return { id: res };
|
375
|
+
},
|
376
|
+
},
|
377
|
+
delete: {
|
378
|
+
execute: async (id) => {
|
379
|
+
return await dataService.deleteOne(id);
|
380
|
+
},
|
381
|
+
},
|
382
|
+
update: {
|
383
|
+
execute: async (data) => {
|
384
|
+
return await dataService.updateOne(data.id, data);
|
385
|
+
},
|
386
|
+
},
|
387
|
+
},
|
388
|
+
queries: {
|
389
|
+
byKey: {
|
390
|
+
execute: async (id) => {
|
391
|
+
return await dataService.getOne(id);
|
392
|
+
},
|
393
|
+
type: AXPEntityQueryType.Single,
|
394
|
+
},
|
395
|
+
list: {
|
396
|
+
execute: async (e) => {
|
397
|
+
return await dataService.query({ skip: e.skip, take: e.take, filter: e.filter });
|
398
|
+
},
|
399
|
+
type: AXPEntityQueryType.List,
|
400
|
+
},
|
401
|
+
},
|
402
|
+
interfaces: {
|
403
|
+
master: {
|
404
|
+
create: {
|
405
|
+
sections: [
|
406
|
+
{
|
407
|
+
id: 'section',
|
408
|
+
},
|
409
|
+
],
|
410
|
+
properties: [
|
411
|
+
{
|
412
|
+
name: 'name',
|
413
|
+
layout: {
|
414
|
+
positions: {
|
415
|
+
lg: {
|
416
|
+
colSpan: 6,
|
417
|
+
},
|
418
|
+
},
|
419
|
+
},
|
420
|
+
},
|
421
|
+
{
|
422
|
+
name: 'title',
|
423
|
+
layout: {
|
424
|
+
positions: {
|
425
|
+
lg: {
|
426
|
+
colSpan: 6,
|
427
|
+
},
|
428
|
+
},
|
429
|
+
},
|
430
|
+
},
|
431
|
+
],
|
432
|
+
},
|
433
|
+
update: {
|
434
|
+
sections: [
|
435
|
+
{
|
436
|
+
id: 'section',
|
437
|
+
},
|
438
|
+
],
|
439
|
+
properties: [
|
440
|
+
{
|
441
|
+
name: 'name',
|
442
|
+
layout: {
|
443
|
+
positions: {
|
444
|
+
lg: {
|
445
|
+
colSpan: 6,
|
446
|
+
},
|
447
|
+
},
|
448
|
+
},
|
449
|
+
},
|
450
|
+
{
|
451
|
+
name: 'title',
|
452
|
+
layout: {
|
453
|
+
positions: {
|
454
|
+
lg: {
|
455
|
+
colSpan: 6,
|
456
|
+
},
|
457
|
+
},
|
458
|
+
},
|
459
|
+
},
|
460
|
+
],
|
461
|
+
},
|
462
|
+
single: {
|
463
|
+
title: '{{title}}',
|
464
|
+
sections: [
|
465
|
+
{
|
466
|
+
id: 'section',
|
467
|
+
layout: {
|
468
|
+
positions: {
|
469
|
+
lg: {
|
470
|
+
colSpan: 12,
|
471
|
+
},
|
472
|
+
},
|
473
|
+
},
|
474
|
+
},
|
475
|
+
],
|
476
|
+
properties: [
|
477
|
+
{
|
478
|
+
name: 'name',
|
479
|
+
layout: {
|
480
|
+
positions: {
|
481
|
+
lg: {
|
482
|
+
colSpan: 6,
|
483
|
+
},
|
484
|
+
},
|
485
|
+
},
|
486
|
+
},
|
487
|
+
{
|
488
|
+
name: 'title',
|
489
|
+
layout: {
|
490
|
+
positions: {
|
491
|
+
lg: {
|
492
|
+
colSpan: 6,
|
493
|
+
},
|
494
|
+
},
|
495
|
+
},
|
496
|
+
},
|
497
|
+
],
|
498
|
+
actions: [],
|
499
|
+
},
|
500
|
+
list: {
|
501
|
+
actions: [
|
502
|
+
{
|
503
|
+
title: `#common.create`,
|
504
|
+
command: 'create-entity',
|
505
|
+
priority: 'primary',
|
506
|
+
type: 'create',
|
507
|
+
scope: AXPEntityCommandScope.TypeLevel,
|
508
|
+
},
|
509
|
+
{
|
510
|
+
title: '#common.deleteItems',
|
511
|
+
command: 'delete-entity',
|
512
|
+
priority: 'primary',
|
513
|
+
type: 'delete',
|
514
|
+
scope: AXPEntityCommandScope.Selected,
|
515
|
+
},
|
516
|
+
{
|
517
|
+
title: '#common.detail',
|
518
|
+
command: 'open-entity',
|
519
|
+
priority: 'secondary',
|
520
|
+
type: 'view',
|
521
|
+
scope: AXPEntityCommandScope.Individual,
|
522
|
+
},
|
523
|
+
{
|
524
|
+
title: '#common.delete',
|
525
|
+
command: 'delete-entity',
|
526
|
+
priority: 'secondary',
|
527
|
+
type: 'delete',
|
528
|
+
scope: AXPEntityCommandScope.Individual,
|
529
|
+
},
|
530
|
+
],
|
531
|
+
views: [
|
532
|
+
{
|
533
|
+
name: 'all',
|
534
|
+
title: '#common.allItem',
|
535
|
+
fixed: true,
|
536
|
+
columns: [],
|
537
|
+
conditions: [],
|
538
|
+
sorts: [],
|
539
|
+
},
|
540
|
+
],
|
541
|
+
},
|
542
|
+
},
|
543
|
+
},
|
544
|
+
};
|
545
|
+
return entityDef;
|
546
|
+
}
|
547
|
+
|
548
|
+
var template_entity = /*#__PURE__*/Object.freeze({
|
549
|
+
__proto__: null,
|
550
|
+
factory: factory
|
551
|
+
});
|
552
|
+
|
553
|
+
class AXMFormTemplateManagementTemplateEntityModule {
|
554
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMFormTemplateManagementTemplateEntityModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
555
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.0", ngImport: i0, type: AXMFormTemplateManagementTemplateEntityModule }); }
|
556
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMFormTemplateManagementTemplateEntityModule, providers: [
|
557
|
+
{
|
558
|
+
provide: AXMFormTemplateManagementTemplateEntityService,
|
559
|
+
useClass: AXMFormTemplateManagementTemplateEntityServiceImpl,
|
560
|
+
},
|
561
|
+
] }); }
|
562
|
+
}
|
563
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMFormTemplateManagementTemplateEntityModule, decorators: [{
|
564
|
+
type: NgModule,
|
565
|
+
args: [{
|
566
|
+
imports: [],
|
567
|
+
exports: [],
|
568
|
+
declarations: [],
|
569
|
+
providers: [
|
570
|
+
{
|
571
|
+
provide: AXMFormTemplateManagementTemplateEntityService,
|
572
|
+
useClass: AXMFormTemplateManagementTemplateEntityServiceImpl,
|
573
|
+
},
|
574
|
+
],
|
575
|
+
}]
|
576
|
+
}] });
|
577
|
+
|
578
|
+
class AXMFormTemplateManagementModuleEntityProvider {
|
579
|
+
constructor() {
|
580
|
+
this.injector = inject(Injector);
|
581
|
+
}
|
582
|
+
async get(moduleName, entityName) {
|
583
|
+
if (moduleName == AXMFormTemplateManagementModuleConst.moduleName) {
|
584
|
+
switch (entityName) {
|
585
|
+
case AXMFormTemplateManagementModuleConst.categoryEntity:
|
586
|
+
return (await Promise.resolve().then(function () { return category_entity; })).factory(this.injector);
|
587
|
+
case AXMFormTemplateManagementModuleConst.templateEntity:
|
588
|
+
return (await Promise.resolve().then(function () { return template_entity; })).factory(this.injector);
|
589
|
+
}
|
590
|
+
}
|
591
|
+
return null;
|
592
|
+
}
|
593
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMFormTemplateManagementModuleEntityProvider, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
594
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMFormTemplateManagementModuleEntityProvider }); }
|
595
|
+
}
|
596
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMFormTemplateManagementModuleEntityProvider, decorators: [{
|
597
|
+
type: Injectable
|
598
|
+
}] });
|
599
|
+
|
600
|
+
class AXMFormTemplateManagementModuleMenuProvider {
|
601
|
+
constructor() {
|
602
|
+
this.entityService = inject(AXPEntityService);
|
603
|
+
}
|
604
|
+
async items() {
|
605
|
+
const scope = AXMFormTemplateManagementModuleConst.i18n;
|
606
|
+
const moduleName = AXMFormTemplateManagementModuleConst.moduleName;
|
607
|
+
return [
|
608
|
+
{
|
609
|
+
items: [
|
610
|
+
{
|
611
|
+
priority: 9001,
|
612
|
+
text: `${scope}.module-name`,
|
613
|
+
icon: 'fa-solid fa-file-invoice',
|
614
|
+
children: [
|
615
|
+
{
|
616
|
+
text: `#common.categories`,
|
617
|
+
path: this.entityService.createPath(moduleName, AXMFormTemplateManagementModuleConst.categoryEntity),
|
618
|
+
priority: 1,
|
619
|
+
},
|
620
|
+
{
|
621
|
+
text: `${scope}.templates`,
|
622
|
+
path: this.entityService.createPath(moduleName, AXMFormTemplateManagementModuleConst.templateEntity),
|
623
|
+
priority: 2,
|
624
|
+
},
|
625
|
+
{
|
626
|
+
text: `${scope}.widgets`,
|
627
|
+
priority: 3,
|
628
|
+
},
|
629
|
+
{
|
630
|
+
text: `${scope}.designer`,
|
631
|
+
path: '/forms/designer',
|
632
|
+
priority: 100,
|
633
|
+
},
|
634
|
+
],
|
635
|
+
},
|
636
|
+
],
|
637
|
+
},
|
638
|
+
];
|
639
|
+
}
|
640
|
+
}
|
641
|
+
|
642
|
+
const routes = [
|
643
|
+
{
|
644
|
+
path: 'forms',
|
645
|
+
children: [
|
646
|
+
{
|
647
|
+
path: 'designer',
|
648
|
+
loadComponent: () => import('./acorex-modules-form-template-management-designer.page-DC18KFvK.mjs').then((c) => c.AXMFormTemplateManagementModuleDesignerPage),
|
649
|
+
},
|
650
|
+
{
|
651
|
+
path: 'preview',
|
652
|
+
loadComponent: () => import('@acorex/platform/layout/designer').then((c) => c.AXPLayoutDesignerPreviewComponent),
|
653
|
+
},
|
654
|
+
{
|
655
|
+
path: 'viewer',
|
656
|
+
loadComponent: () => import('@acorex/platform/layout/designer').then((c) => c.AXPLayoutDesignerPreviewViewerComponent),
|
657
|
+
},
|
658
|
+
],
|
659
|
+
},
|
660
|
+
];
|
661
|
+
class AXMFormTemplateManagementModule {
|
662
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMFormTemplateManagementModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
663
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.0", ngImport: i0, type: AXMFormTemplateManagementModule, imports: [i1.RouterModule, AXPWidgetsModule,
|
664
|
+
AXMFormTemplateManagementCategoryEntityModule,
|
665
|
+
AXMFormTemplateManagementTemplateEntityModule] }); }
|
666
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMFormTemplateManagementModule, providers: [
|
667
|
+
{
|
668
|
+
provide: AXP_ENTITY_DEFINITION_LOADER,
|
669
|
+
useClass: AXMFormTemplateManagementModuleEntityProvider,
|
670
|
+
multi: true,
|
671
|
+
},
|
672
|
+
{
|
673
|
+
provide: AXP_MENU_PROVIDER,
|
674
|
+
useClass: AXMFormTemplateManagementModuleMenuProvider,
|
675
|
+
multi: true,
|
676
|
+
},
|
677
|
+
], imports: [RouterModule.forChild(routes),
|
678
|
+
AXPWidgetsModule,
|
679
|
+
AXMFormTemplateManagementCategoryEntityModule,
|
680
|
+
AXMFormTemplateManagementTemplateEntityModule] }); }
|
681
|
+
}
|
682
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMFormTemplateManagementModule, decorators: [{
|
683
|
+
type: NgModule,
|
684
|
+
args: [{
|
685
|
+
imports: [
|
686
|
+
RouterModule.forChild(routes),
|
687
|
+
AXPWidgetsModule,
|
688
|
+
AXMFormTemplateManagementCategoryEntityModule,
|
689
|
+
AXMFormTemplateManagementTemplateEntityModule,
|
690
|
+
],
|
691
|
+
exports: [],
|
692
|
+
declarations: [],
|
693
|
+
providers: [
|
694
|
+
{
|
695
|
+
provide: AXP_ENTITY_DEFINITION_LOADER,
|
696
|
+
useClass: AXMFormTemplateManagementModuleEntityProvider,
|
697
|
+
multi: true,
|
698
|
+
},
|
699
|
+
{
|
700
|
+
provide: AXP_MENU_PROVIDER,
|
701
|
+
useClass: AXMFormTemplateManagementModuleMenuProvider,
|
702
|
+
multi: true,
|
703
|
+
},
|
704
|
+
],
|
705
|
+
}]
|
706
|
+
}] });
|
707
|
+
|
708
|
+
/**
|
709
|
+
* Generated bundle index. Do not edit.
|
710
|
+
*/
|
711
|
+
|
712
|
+
export { AXMFormTemplateManagementModule };
|
713
|
+
//# sourceMappingURL=acorex-modules-form-template-management.mjs.map
|