@acorex/modules 18.1.6 → 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.service.d.ts +1 -8
- package/application-management/lib/application-management.source.d.ts +1 -0
- package/application-management/lib/menu.provider.d.ts +1 -0
- package/application-management/lib/services/application-management.service.d.ts +10 -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/module-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 -1
- package/conversation/README.md +3 -0
- package/conversation/index.d.ts +14 -0
- package/conversation/lib/conversation.module.d.ts +11 -0
- 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/entities/comments/comment.module.d.ts +25 -0
- package/conversation/lib/entities/comments/comments.service.d.ts +13 -0
- package/conversation/lib/entities/comments/comments.type.d.ts +74 -0
- package/conversation/lib/entities/comments/pages/comment-list-view.component.d.ts +66 -0
- package/conversation/lib/entities/comments/pages/comment-lookup-popup.component.d.ts +10 -0
- 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 +46 -1
- package/esm2022/application-management/lib/application-management.service.mjs +2 -18
- 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/applications.entity.mjs +8 -8
- 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 +12 -15
- 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 +10 -4
- package/esm2022/application-management/lib/services/application-management.service.mjs +17 -0
- 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/module-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/account/profile/profile-slot.component.mjs +3 -3
- package/esm2022/auth/lib/menu.provider.mjs +17 -14
- package/esm2022/conversation/acorex-modules-conversation.mjs +5 -0
- package/esm2022/conversation/index.mjs +15 -0
- package/esm2022/conversation/lib/conversation.module.mjs +22 -0
- 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/entities/comments/pages/comment-lookup-popup.component.mjs +56 -0
- 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 +13 -12
- package/esm2022/notification-management/lib/notification-management.module.mjs +5 -5
- 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 +37 -15
- package/esm2022/platform-management/lib/platform-management.module.mjs +12 -33
- package/esm2022/template-management/index.mjs +2 -2
- package/esm2022/template-management/lib/entities/category.entity.mjs +34 -16
- package/esm2022/template-management/lib/entities/template-variable.entity.mjs +103 -102
- package/esm2022/template-management/lib/entities/text-template.entity.mjs +28 -2
- package/esm2022/template-management/lib/entity.provider.mjs +32 -0
- package/esm2022/template-management/lib/menu.provider.mjs +14 -8
- 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 +399 -283
- package/fesm2022/acorex-modules-application-management.mjs.map +1 -1
- package/fesm2022/{acorex-modules-auth-acorex-modules-auth-B0aeYVeJ.mjs → acorex-modules-auth-acorex-modules-auth-BVOt-gis.mjs} +30 -23
- package/fesm2022/acorex-modules-auth-acorex-modules-auth-BVOt-gis.mjs.map +1 -0
- package/fesm2022/{acorex-modules-auth-app-chooser.component-4b6b3ttW.mjs → acorex-modules-auth-app-chooser.component-DhPEtLuK.mjs} +2 -2
- package/fesm2022/{acorex-modules-auth-app-chooser.component-4b6b3ttW.mjs.map → acorex-modules-auth-app-chooser.component-DhPEtLuK.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-auth-login.module-A7u1YYeo.mjs → acorex-modules-auth-login.module-sFVL-lYB.mjs} +4 -4
- package/fesm2022/{acorex-modules-auth-login.module-A7u1YYeo.mjs.map → acorex-modules-auth-login.module-sFVL-lYB.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-auth-master.layout--UllrmW0.mjs → acorex-modules-auth-master.layout-Bnt5qiio.mjs} +2 -2
- package/fesm2022/{acorex-modules-auth-master.layout--UllrmW0.mjs.map → acorex-modules-auth-master.layout-Bnt5qiio.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-auth-password.component-Dv0VXzh_.mjs → acorex-modules-auth-password.component-BXL-aLTx.mjs} +2 -2
- package/fesm2022/{acorex-modules-auth-password.component-Dv0VXzh_.mjs.map → acorex-modules-auth-password.component-BXL-aLTx.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-auth-password.component-BjqQ-qVo.mjs → acorex-modules-auth-password.component-ClaRp38G.mjs} +2 -2
- package/fesm2022/{acorex-modules-auth-password.component-BjqQ-qVo.mjs.map → acorex-modules-auth-password.component-ClaRp38G.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-auth-routes-C4eNPru3.mjs → acorex-modules-auth-routes-MDneFw2m.mjs} +2 -2
- package/fesm2022/{acorex-modules-auth-routes-C4eNPru3.mjs.map → acorex-modules-auth-routes-MDneFw2m.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-auth-two-factor.module-C6V_pb_Q.mjs → acorex-modules-auth-two-factor.module-BHulbf0N.mjs} +2 -2
- package/fesm2022/{acorex-modules-auth-two-factor.module-C6V_pb_Q.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 +952 -0
- package/fesm2022/acorex-modules-conversation.mjs.map +1 -0
- 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 +29 -35
- package/fesm2022/acorex-modules-notification-management.mjs.map +1 -1
- package/fesm2022/acorex-modules-platform-management.mjs +1430 -214
- package/fesm2022/acorex-modules-platform-management.mjs.map +1 -1
- package/fesm2022/acorex-modules-template-management.mjs +187 -141
- 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/package.json +29 -11
- 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 +2 -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/template-management/lib/menu.provider.d.ts +2 -1
- 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 -29
- 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-B0aeYVeJ.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 -88
- 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 -4
- package/platform-management/lib/comments/comment-management.service.d.ts +0 -10
- package/platform-management/lib/languages/index.d.ts +0 -4
- /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
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@acorex/modules",
|
3
|
-
"version": "18.1
|
3
|
+
"version": "18.2.1",
|
4
4
|
"peerDependencies": {
|
5
5
|
"@angular/common": ">=18.0.0",
|
6
6
|
"@angular/core": ">=18.0.0",
|
@@ -28,23 +28,41 @@
|
|
28
28
|
"esm": "./esm2022/application-management/acorex-modules-application-management.mjs",
|
29
29
|
"default": "./fesm2022/acorex-modules-application-management.mjs"
|
30
30
|
},
|
31
|
+
"./backend": {
|
32
|
+
"types": "./backend/index.d.ts",
|
33
|
+
"esm2022": "./esm2022/backend/acorex-modules-backend.mjs",
|
34
|
+
"esm": "./esm2022/backend/acorex-modules-backend.mjs",
|
35
|
+
"default": "./fesm2022/acorex-modules-backend.mjs"
|
36
|
+
},
|
37
|
+
"./converstion-test": {
|
38
|
+
"types": "./converstion-test/index.d.ts",
|
39
|
+
"esm2022": "./esm2022/converstion-test/acorex-modules-converstion-test.mjs",
|
40
|
+
"esm": "./esm2022/converstion-test/acorex-modules-converstion-test.mjs",
|
41
|
+
"default": "./fesm2022/acorex-modules-converstion-test.mjs"
|
42
|
+
},
|
43
|
+
"./form-template-management": {
|
44
|
+
"types": "./form-template-management/index.d.ts",
|
45
|
+
"esm2022": "./esm2022/form-template-management/acorex-modules-form-template-management.mjs",
|
46
|
+
"esm": "./esm2022/form-template-management/acorex-modules-form-template-management.mjs",
|
47
|
+
"default": "./fesm2022/acorex-modules-form-template-management.mjs"
|
48
|
+
},
|
31
49
|
"./auth": {
|
32
50
|
"types": "./auth/index.d.ts",
|
33
51
|
"esm2022": "./esm2022/auth/acorex-modules-auth.mjs",
|
34
52
|
"esm": "./esm2022/auth/acorex-modules-auth.mjs",
|
35
53
|
"default": "./fesm2022/acorex-modules-auth.mjs"
|
36
54
|
},
|
37
|
-
"./
|
38
|
-
"types": "./
|
39
|
-
"esm2022": "./esm2022/
|
40
|
-
"esm": "./esm2022/
|
41
|
-
"default": "./fesm2022/acorex-modules-
|
55
|
+
"./localization-management": {
|
56
|
+
"types": "./localization-management/index.d.ts",
|
57
|
+
"esm2022": "./esm2022/localization-management/acorex-modules-localization-management.mjs",
|
58
|
+
"esm": "./esm2022/localization-management/acorex-modules-localization-management.mjs",
|
59
|
+
"default": "./fesm2022/acorex-modules-localization-management.mjs"
|
42
60
|
},
|
43
|
-
"./
|
44
|
-
"types": "./
|
45
|
-
"esm2022": "./esm2022/
|
46
|
-
"esm": "./esm2022/
|
47
|
-
"default": "./fesm2022/acorex-modules-
|
61
|
+
"./conversation": {
|
62
|
+
"types": "./conversation/index.d.ts",
|
63
|
+
"esm2022": "./esm2022/conversation/acorex-modules-conversation.mjs",
|
64
|
+
"esm": "./esm2022/conversation/acorex-modules-conversation.mjs",
|
65
|
+
"default": "./fesm2022/acorex-modules-conversation.mjs"
|
48
66
|
},
|
49
67
|
"./platform-management": {
|
50
68
|
"types": "./platform-management/index.d.ts",
|
@@ -0,0 +1,6 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
export declare class AXMPlatformManagementCommonModule {
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMPlatformManagementCommonModule, never>;
|
4
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXMPlatformManagementCommonModule, never, never, never>;
|
5
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AXMPlatformManagementCommonModule>;
|
6
|
+
}
|
@@ -0,0 +1,5 @@
|
|
1
|
+
import { AXPWidgetDataSource, AXPWidgetDataSourceProvider } from '@acorex/platform/layout/builder';
|
2
|
+
export declare class AXPPlatformCountryWidgetDataSourceProvider implements AXPWidgetDataSourceProvider {
|
3
|
+
private service;
|
4
|
+
items(): Promise<AXPWidgetDataSource[]>;
|
5
|
+
}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/common';
|
2
|
+
import { AXMCountryEntityModel } from './country.types';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export declare abstract class AXMCountryService extends AXMEntityCrudServiceImpl<string, AXMCountryEntityModel> {
|
5
|
+
}
|
6
|
+
export declare class AXMCountryServiceImpl extends AXMCountryService {
|
7
|
+
constructor();
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMCountryServiceImpl, never>;
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXMCountryServiceImpl>;
|
10
|
+
}
|
@@ -0,0 +1,18 @@
|
|
1
|
+
import { AXPEntityModel } from '@acorex/platform/common';
|
2
|
+
export interface AXMCountryEntityModel extends AXPEntityModel<string> {
|
3
|
+
title: string;
|
4
|
+
iso2: string;
|
5
|
+
iso3: string;
|
6
|
+
numericCode: string;
|
7
|
+
phoneCode: string;
|
8
|
+
capital: string;
|
9
|
+
tld: string;
|
10
|
+
nativeName: string;
|
11
|
+
region: string;
|
12
|
+
subregion: string;
|
13
|
+
nationality: string;
|
14
|
+
geo: {
|
15
|
+
latitude: string;
|
16
|
+
longitude: string;
|
17
|
+
};
|
18
|
+
}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/common';
|
2
|
+
import { AXMCurrencyEntityModel } from './currency.types';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export declare abstract class AXMCurrencyService extends AXMEntityCrudServiceImpl<string, AXMCurrencyEntityModel> {
|
5
|
+
}
|
6
|
+
export declare class AXMCurrencyServiceImpl extends AXMCurrencyService {
|
7
|
+
constructor();
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMCurrencyServiceImpl, never>;
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXMCurrencyServiceImpl>;
|
10
|
+
}
|
@@ -1,9 +1,9 @@
|
|
1
1
|
import { AXPEntity } from '@acorex/platform/common';
|
2
2
|
import { AXPEntityDefinitionLoader } from '@acorex/platform/layout/entity';
|
3
3
|
import * as i0 from "@angular/core";
|
4
|
-
export declare class
|
4
|
+
export declare class AXMCommonModuleEntityLoader implements AXPEntityDefinitionLoader {
|
5
5
|
private injector;
|
6
6
|
get(moduleName: string, entityName: string): Promise<AXPEntity | null>;
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
8
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMCommonModuleEntityLoader, never>;
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXMCommonModuleEntityLoader>;
|
9
9
|
}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/common';
|
2
|
+
import { AXMProvinceEntityModel } from './province.types';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export declare abstract class AXMProvinceService extends AXMEntityCrudServiceImpl<string, AXMProvinceEntityModel> {
|
5
|
+
}
|
6
|
+
export declare class AXMProvinceServiceImpl extends AXMProvinceService {
|
7
|
+
constructor();
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMProvinceServiceImpl, never>;
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXMProvinceServiceImpl>;
|
10
|
+
}
|
@@ -1,4 +1,5 @@
|
|
1
|
-
import { AXPMenuInsertion, AXPMenuProvider } from
|
1
|
+
import { AXPMenuInsertion, AXPMenuProvider } from '@acorex/platform/common';
|
2
2
|
export declare class AXMPlatformManagmentModuleMenuProvider implements AXPMenuProvider {
|
3
|
+
private translateService;
|
3
4
|
items(): Promise<AXPMenuInsertion[]>;
|
4
5
|
}
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import * as i0 from "@angular/core";
|
2
|
+
import * as i1 from "./common/common.module";
|
2
3
|
export declare class AXMPlatformManagementModule {
|
3
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXMPlatformManagementModule, never>;
|
4
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AXMPlatformManagementModule, never,
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXMPlatformManagementModule, never, [typeof i1.AXMPlatformManagementCommonModule], never>;
|
5
6
|
static ɵinj: i0.ɵɵInjectorDeclaration<AXMPlatformManagementModule>;
|
6
7
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
export * from './lib/template-management.module';
|
2
2
|
export * from './lib/entities';
|
3
|
-
export * from './lib/entity.
|
3
|
+
export * from './lib/entity.provider';
|
4
4
|
export * from './lib/template-management.types';
|
5
5
|
export * from './lib/text-management.source';
|
6
6
|
export * from './lib/template.service';
|
@@ -1,9 +1,9 @@
|
|
1
1
|
import { AXPEntity } from '@acorex/platform/common';
|
2
2
|
import { AXPEntityDefinitionLoader } from '@acorex/platform/layout/entity';
|
3
3
|
import * as i0 from "@angular/core";
|
4
|
-
export declare class
|
4
|
+
export declare class AXMTemplateModuleEntityProvider implements AXPEntityDefinitionLoader {
|
5
5
|
private injector;
|
6
6
|
get(moduleName: string, entityName: string): Promise<AXPEntity | null>;
|
7
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
8
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMTemplateModuleEntityProvider, never>;
|
8
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXMTemplateModuleEntityProvider>;
|
9
9
|
}
|
@@ -1,4 +1,5 @@
|
|
1
|
-
import { AXPMenuInsertion, AXPMenuProvider } from
|
1
|
+
import { AXPMenuInsertion, AXPMenuProvider } from '@acorex/platform/common';
|
2
2
|
export declare class AXMTextTemplateManagmentModuleMenuProvider implements AXPMenuProvider {
|
3
|
+
private translateService;
|
3
4
|
items(): Promise<AXPMenuInsertion[]>;
|
4
5
|
}
|
@@ -1,5 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* Generated bundle index. Do not edit.
|
3
|
-
*/
|
4
|
-
export * from './index';
|
5
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWNvcmV4LW1vZHVsZXMtZm9ybS1tYW5hZ2VtZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vbGlicy9tb2R1bGVzL2Zvcm0tbWFuYWdlbWVudC9zcmMvYWNvcmV4LW1vZHVsZXMtZm9ybS1tYW5hZ2VtZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBRUgsY0FBYyxTQUFTLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEdlbmVyYXRlZCBidW5kbGUgaW5kZXguIERvIG5vdCBlZGl0LlxuICovXG5cbmV4cG9ydCAqIGZyb20gJy4vaW5kZXgnO1xuIl19
|
@@ -1,2 +0,0 @@
|
|
1
|
-
export * from './lib/form-management.module';
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzL21vZHVsZXMvZm9ybS1tYW5hZ2VtZW50L3NyYy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFDQSxjQUFjLDhCQUE4QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiXG5leHBvcnQgKiBmcm9tICcuL2xpYi9mb3JtLW1hbmFnZW1lbnQubW9kdWxlJztcbiAgICAgICAgICAgICAgICAiXX0=
|
@@ -1,24 +0,0 @@
|
|
1
|
-
import { AXButtonModule } from '@acorex/components/button';
|
2
|
-
import { AXDecoratorModule } from '@acorex/components/decorators';
|
3
|
-
import { AXPLayoutBuilderModule } from '@acorex/platform/layout/builder';
|
4
|
-
import { AXPLayoutDesignerComponent } from '@acorex/platform/layout/designer';
|
5
|
-
import { AXPWidgetsModule } from '@acorex/platform/widgets';
|
6
|
-
import { CommonModule } from '@angular/common';
|
7
|
-
import { Component } from '@angular/core';
|
8
|
-
import * as i0 from "@angular/core";
|
9
|
-
export class AXMFormsDesignerPage {
|
10
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMFormsDesignerPage, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
11
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXMFormsDesignerPage, isStandalone: true, selector: "ng-component", ngImport: i0, template: "<axp-layout-designer> </axp-layout-designer>\n", dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "ngmodule", type: AXPWidgetsModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: AXPLayoutDesignerComponent, selector: "axp-layout-designer" }] }); }
|
12
|
-
}
|
13
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMFormsDesignerPage, decorators: [{
|
14
|
-
type: Component,
|
15
|
-
args: [{ standalone: true, imports: [
|
16
|
-
CommonModule,
|
17
|
-
AXDecoratorModule,
|
18
|
-
AXPWidgetsModule,
|
19
|
-
AXPLayoutBuilderModule,
|
20
|
-
AXButtonModule,
|
21
|
-
AXPLayoutDesignerComponent,
|
22
|
-
], template: "<axp-layout-designer> </axp-layout-designer>\n" }]
|
23
|
-
}] });
|
24
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVzaWduZXIucGFnZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvbW9kdWxlcy9mb3JtLW1hbmFnZW1lbnQvc3JjL2xpYi9kZXNpZ25lci9kZXNpZ25lci5wYWdlLnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9tb2R1bGVzL2Zvcm0tbWFuYWdlbWVudC9zcmMvbGliL2Rlc2lnbmVyL2Rlc2lnbmVyLnBhZ2UuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sMkJBQTJCLENBQUM7QUFDM0QsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sK0JBQStCLENBQUM7QUFDbEUsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0saUNBQWlDLENBQUM7QUFDekUsT0FBTyxFQUFFLDBCQUEwQixFQUFFLE1BQU0sa0NBQWtDLENBQUM7QUFDOUUsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFDNUQsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBYzFDLE1BQU0sT0FBTyxvQkFBb0I7OEdBQXBCLG9CQUFvQjtrR0FBcEIsb0JBQW9CLHdFQ3BCakMsZ0RBQ0EsMkNEV0ksWUFBWSw4QkFDWixpQkFBaUIsOEJBQ2pCLGdCQUFnQiw4QkFDaEIsc0JBQXNCLDhCQUN0QixjQUFjLCtCQUNkLDBCQUEwQjs7MkZBR2pCLG9CQUFvQjtrQkFaaEMsU0FBUztpQ0FFSSxJQUFJLFdBQ1A7d0JBQ1AsWUFBWTt3QkFDWixpQkFBaUI7d0JBQ2pCLGdCQUFnQjt3QkFDaEIsc0JBQXNCO3dCQUN0QixjQUFjO3dCQUNkLDBCQUEwQjtxQkFDM0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBWEJ1dHRvbk1vZHVsZSB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9idXR0b24nO1xuaW1wb3J0IHsgQVhEZWNvcmF0b3JNb2R1bGUgfSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvZGVjb3JhdG9ycyc7XG5pbXBvcnQgeyBBWFBMYXlvdXRCdWlsZGVyTW9kdWxlIH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9sYXlvdXQvYnVpbGRlcic7XG5pbXBvcnQgeyBBWFBMYXlvdXREZXNpZ25lckNvbXBvbmVudCB9IGZyb20gJ0BhY29yZXgvcGxhdGZvcm0vbGF5b3V0L2Rlc2lnbmVyJztcbmltcG9ydCB7IEFYUFdpZGdldHNNb2R1bGUgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL3dpZGdldHMnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IENvbXBvbmVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgdGVtcGxhdGVVcmw6ICdkZXNpZ25lci5wYWdlLmh0bWwnLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBpbXBvcnRzOiBbXG4gICAgQ29tbW9uTW9kdWxlLFxuICAgIEFYRGVjb3JhdG9yTW9kdWxlLFxuICAgIEFYUFdpZGdldHNNb2R1bGUsXG4gICAgQVhQTGF5b3V0QnVpbGRlck1vZHVsZSxcbiAgICBBWEJ1dHRvbk1vZHVsZSxcbiAgICBBWFBMYXlvdXREZXNpZ25lckNvbXBvbmVudCxcbiAgXSxcbn0pXG5leHBvcnQgY2xhc3MgQVhNRm9ybXNEZXNpZ25lclBhZ2Uge1xuXG59XG4iLCI8YXhwLWxheW91dC1kZXNpZ25lcj4gPC9heHAtbGF5b3V0LWRlc2lnbmVyPlxuIl19
|
@@ -1,53 +0,0 @@
|
|
1
|
-
import { AXP_MENU_PROVIDER } from '@acorex/platform/common';
|
2
|
-
import { AXPWidgetsModule } from '@acorex/platform/widgets';
|
3
|
-
import { NgModule } from '@angular/core';
|
4
|
-
import { RouterModule } from '@angular/router';
|
5
|
-
import { AXMFormManagmentModuleMenuProvider } from './menu.provider';
|
6
|
-
import * as i0 from "@angular/core";
|
7
|
-
import * as i1 from "@angular/router";
|
8
|
-
const routes = [
|
9
|
-
{
|
10
|
-
path: 'forms',
|
11
|
-
children: [
|
12
|
-
{
|
13
|
-
path: 'designer',
|
14
|
-
loadComponent: () => import('./designer/designer.page').then((c) => c.AXMFormsDesignerPage),
|
15
|
-
},
|
16
|
-
{
|
17
|
-
path: 'preview',
|
18
|
-
loadComponent: () => import('@acorex/platform/layout/designer').then((c) => c.AXPLayoutDesignerPreviewComponent),
|
19
|
-
},
|
20
|
-
{
|
21
|
-
path: 'viewer',
|
22
|
-
loadComponent: () => import('@acorex/platform/layout/designer').then((c) => c.AXPLayoutDesignerPreviewViewerComponent),
|
23
|
-
},
|
24
|
-
],
|
25
|
-
},
|
26
|
-
];
|
27
|
-
export class AXMFormManagementModule {
|
28
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMFormManagementModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
29
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.0", ngImport: i0, type: AXMFormManagementModule, imports: [i1.RouterModule, AXPWidgetsModule] }); }
|
30
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMFormManagementModule, providers: [
|
31
|
-
{
|
32
|
-
provide: AXP_MENU_PROVIDER,
|
33
|
-
useClass: AXMFormManagmentModuleMenuProvider,
|
34
|
-
multi: true
|
35
|
-
}
|
36
|
-
], imports: [RouterModule.forChild(routes), AXPWidgetsModule] }); }
|
37
|
-
}
|
38
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMFormManagementModule, decorators: [{
|
39
|
-
type: NgModule,
|
40
|
-
args: [{
|
41
|
-
imports: [RouterModule.forChild(routes), AXPWidgetsModule],
|
42
|
-
exports: [],
|
43
|
-
declarations: [],
|
44
|
-
providers: [
|
45
|
-
{
|
46
|
-
provide: AXP_MENU_PROVIDER,
|
47
|
-
useClass: AXMFormManagmentModuleMenuProvider,
|
48
|
-
multi: true
|
49
|
-
}
|
50
|
-
]
|
51
|
-
}]
|
52
|
-
}] });
|
53
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS1tYW5hZ2VtZW50Lm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvbW9kdWxlcy9mb3JtLW1hbmFnZW1lbnQvc3JjL2xpYi9mb3JtLW1hbmFnZW1lbnQubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLHlCQUF5QixDQUFDO0FBQzVELE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQzVELE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFlBQVksRUFBVSxNQUFNLGlCQUFpQixDQUFDO0FBQ3ZELE9BQU8sRUFBRSxrQ0FBa0MsRUFBRSxNQUFNLGlCQUFpQixDQUFDOzs7QUFFckUsTUFBTSxNQUFNLEdBQVc7SUFDckI7UUFDRSxJQUFJLEVBQUUsT0FBTztRQUNiLFFBQVEsRUFBRTtZQUNSO2dCQUNFLElBQUksRUFBRSxVQUFVO2dCQUNoQixhQUFhLEVBQUUsR0FBRyxFQUFFLENBQUMsTUFBTSxDQUFDLDBCQUEwQixDQUFDLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQUMsb0JBQW9CLENBQUM7YUFDNUY7WUFDRDtnQkFDRSxJQUFJLEVBQUUsU0FBUztnQkFDZixhQUFhLEVBQUUsR0FBRyxFQUFFLENBQ2xCLE1BQU0sQ0FBQyxrQ0FBa0MsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxDQUFDLGlDQUFpQyxDQUFDO2FBQzlGO1lBQ0Q7Z0JBQ0UsSUFBSSxFQUFFLFFBQVE7Z0JBRWQsYUFBYSxFQUFFLEdBQUcsRUFBRSxDQUNsQixNQUFNLENBQUMsa0NBQWtDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyx1Q0FBdUMsQ0FBQzthQUNwRztTQUNGO0tBQ0Y7Q0FDRixDQUFDO0FBY0YsTUFBTSxPQUFPLHVCQUF1Qjs4R0FBdkIsdUJBQXVCOytHQUF2Qix1QkFBdUIsNkJBWE8sZ0JBQWdCOytHQVc5Qyx1QkFBdUIsYUFSdkI7WUFDVDtnQkFDRSxPQUFPLEVBQUUsaUJBQWlCO2dCQUMxQixRQUFRLEVBQUUsa0NBQWtDO2dCQUM1QyxLQUFLLEVBQUUsSUFBSTthQUNaO1NBQ0YsWUFUUyxZQUFZLENBQUMsUUFBUSxDQUFDLE1BQU0sQ0FBQyxFQUFFLGdCQUFnQjs7MkZBVzlDLHVCQUF1QjtrQkFabkMsUUFBUTttQkFBQztvQkFDUixPQUFPLEVBQUUsQ0FBQyxZQUFZLENBQUMsUUFBUSxDQUFDLE1BQU0sQ0FBQyxFQUFFLGdCQUFnQixDQUFDO29CQUMxRCxPQUFPLEVBQUUsRUFBRTtvQkFDWCxZQUFZLEVBQUUsRUFBRTtvQkFDaEIsU0FBUyxFQUFFO3dCQUNUOzRCQUNFLE9BQU8sRUFBRSxpQkFBaUI7NEJBQzFCLFFBQVEsRUFBRSxrQ0FBa0M7NEJBQzVDLEtBQUssRUFBRSxJQUFJO3lCQUNaO3FCQUNGO2lCQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVhQX01FTlVfUFJPVklERVIgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2NvbW1vbic7XG5pbXBvcnQgeyBBWFBXaWRnZXRzTW9kdWxlIH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS93aWRnZXRzJztcbmltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBSb3V0ZXJNb2R1bGUsIFJvdXRlcyB9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XG5pbXBvcnQgeyBBWE1Gb3JtTWFuYWdtZW50TW9kdWxlTWVudVByb3ZpZGVyIH0gZnJvbSAnLi9tZW51LnByb3ZpZGVyJztcblxuY29uc3Qgcm91dGVzOiBSb3V0ZXMgPSBbXG4gIHtcbiAgICBwYXRoOiAnZm9ybXMnLFxuICAgIGNoaWxkcmVuOiBbXG4gICAgICB7XG4gICAgICAgIHBhdGg6ICdkZXNpZ25lcicsXG4gICAgICAgIGxvYWRDb21wb25lbnQ6ICgpID0+IGltcG9ydCgnLi9kZXNpZ25lci9kZXNpZ25lci5wYWdlJykudGhlbigoYykgPT4gYy5BWE1Gb3Jtc0Rlc2lnbmVyUGFnZSksXG4gICAgICB9LFxuICAgICAge1xuICAgICAgICBwYXRoOiAncHJldmlldycsXG4gICAgICAgIGxvYWRDb21wb25lbnQ6ICgpID0+XG4gICAgICAgICAgaW1wb3J0KCdAYWNvcmV4L3BsYXRmb3JtL2xheW91dC9kZXNpZ25lcicpLnRoZW4oKGMpID0+IGMuQVhQTGF5b3V0RGVzaWduZXJQcmV2aWV3Q29tcG9uZW50KSxcbiAgICAgIH0sXG4gICAgICB7XG4gICAgICAgIHBhdGg6ICd2aWV3ZXInLFxuXG4gICAgICAgIGxvYWRDb21wb25lbnQ6ICgpID0+XG4gICAgICAgICAgaW1wb3J0KCdAYWNvcmV4L3BsYXRmb3JtL2xheW91dC9kZXNpZ25lcicpLnRoZW4oKGMpID0+IGMuQVhQTGF5b3V0RGVzaWduZXJQcmV2aWV3Vmlld2VyQ29tcG9uZW50KSxcbiAgICAgIH0sXG4gICAgXSxcbiAgfSxcbl07XG5cbkBOZ01vZHVsZSh7XG4gIGltcG9ydHM6IFtSb3V0ZXJNb2R1bGUuZm9yQ2hpbGQocm91dGVzKSwgQVhQV2lkZ2V0c01vZHVsZV0sXG4gIGV4cG9ydHM6IFtdLFxuICBkZWNsYXJhdGlvbnM6IFtdLFxuICBwcm92aWRlcnM6IFtcbiAgICB7XG4gICAgICBwcm92aWRlOiBBWFBfTUVOVV9QUk9WSURFUixcbiAgICAgIHVzZUNsYXNzOiBBWE1Gb3JtTWFuYWdtZW50TW9kdWxlTWVudVByb3ZpZGVyLFxuICAgICAgbXVsdGk6IHRydWVcbiAgICB9XG4gIF1cbn0pXG5leHBvcnQgY2xhc3MgQVhNRm9ybU1hbmFnZW1lbnRNb2R1bGUgeyB9XG4iXX0=
|
@@ -1,29 +0,0 @@
|
|
1
|
-
export class AXMFormManagmentModuleMenuProvider {
|
2
|
-
async items() {
|
3
|
-
return [
|
4
|
-
{
|
5
|
-
items: [
|
6
|
-
{
|
7
|
-
priority: 9001,
|
8
|
-
text: 'Forms Management',
|
9
|
-
icon: 'fa-solid fa-file-invoice',
|
10
|
-
children: [
|
11
|
-
{
|
12
|
-
text: "Templates",
|
13
|
-
},
|
14
|
-
{
|
15
|
-
text: "Widgets",
|
16
|
-
},
|
17
|
-
{
|
18
|
-
text: "Designer",
|
19
|
-
path: '/forms/designer',
|
20
|
-
priority: 100
|
21
|
-
}
|
22
|
-
]
|
23
|
-
}
|
24
|
-
]
|
25
|
-
}
|
26
|
-
];
|
27
|
-
}
|
28
|
-
}
|
29
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWVudS5wcm92aWRlci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvbW9kdWxlcy9mb3JtLW1hbmFnZW1lbnQvc3JjL2xpYi9tZW51LnByb3ZpZGVyLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUVBLE1BQU0sT0FBTyxrQ0FBa0M7SUFDM0MsS0FBSyxDQUFDLEtBQUs7UUFDUCxPQUFPO1lBQ0g7Z0JBQ0ksS0FBSyxFQUFFO29CQUNIO3dCQUNJLFFBQVEsRUFBRSxJQUFJO3dCQUNkLElBQUksRUFBRSxrQkFBa0I7d0JBQ3hCLElBQUksRUFBRSwwQkFBMEI7d0JBQ2hDLFFBQVEsRUFBRTs0QkFDTjtnQ0FDSSxJQUFJLEVBQUUsV0FBVzs2QkFDcEI7NEJBQ0Q7Z0NBQ0ksSUFBSSxFQUFFLFNBQVM7NkJBQ2xCOzRCQUNEO2dDQUNJLElBQUksRUFBRSxVQUFVO2dDQUNoQixJQUFJLEVBQUUsaUJBQWlCO2dDQUN2QixRQUFRLEVBQUUsR0FBRzs2QkFDaEI7eUJBQ0o7cUJBQ0o7aUJBQ0o7YUFDSjtTQUVrQixDQUFBO0lBQzNCLENBQUM7Q0FFSiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFYUE1lbnVJbnNlcnRpb24sIEFYUE1lbnVQcm92aWRlciB9IGZyb20gXCJAYWNvcmV4L3BsYXRmb3JtL2NvbW1vblwiO1xuXG5leHBvcnQgY2xhc3MgQVhNRm9ybU1hbmFnbWVudE1vZHVsZU1lbnVQcm92aWRlciBpbXBsZW1lbnRzIEFYUE1lbnVQcm92aWRlciB7XG4gICAgYXN5bmMgaXRlbXMoKTogUHJvbWlzZTxBWFBNZW51SW5zZXJ0aW9uW10+IHtcbiAgICAgICAgcmV0dXJuIFtcbiAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICBpdGVtczogW1xuICAgICAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgICAgICBwcmlvcml0eTogOTAwMSxcbiAgICAgICAgICAgICAgICAgICAgICAgIHRleHQ6ICdGb3JtcyBNYW5hZ2VtZW50JyxcbiAgICAgICAgICAgICAgICAgICAgICAgIGljb246ICdmYS1zb2xpZCBmYS1maWxlLWludm9pY2UnLFxuICAgICAgICAgICAgICAgICAgICAgICAgY2hpbGRyZW46IFtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHRleHQ6IFwiVGVtcGxhdGVzXCIsXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgfSxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHRleHQ6IFwiV2lkZ2V0c1wiLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB0ZXh0OiBcIkRlc2lnbmVyXCIsXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHBhdGg6ICcvZm9ybXMvZGVzaWduZXInLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBwcmlvcml0eTogMTAwXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgICAgICAgICAgXVxuICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgXVxuICAgICAgICAgICAgfVxuXG4gICAgICAgIF0gYXMgQVhQTWVudUluc2VydGlvbltdXG4gICAgfVxuXG59Il19
|
@@ -1,18 +0,0 @@
|
|
1
|
-
import { AXMEntityCrudServiceImpl, AXPEntityDataProviderImpl } from '@acorex/platform/common';
|
2
|
-
import { Injectable } from '@angular/core';
|
3
|
-
import * as i0 from "@angular/core";
|
4
|
-
export class AXPCommentServiceImpl extends AXMEntityCrudServiceImpl {
|
5
|
-
constructor() {
|
6
|
-
super('comments');
|
7
|
-
this.messageReactionDataProvider = new AXPEntityDataProviderImpl(super.storageService, 'messageReaction');
|
8
|
-
}
|
9
|
-
async like(payload) {
|
10
|
-
return this.messageReactionDataProvider.insertOne(payload);
|
11
|
-
}
|
12
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPCommentServiceImpl, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
13
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPCommentServiceImpl }); }
|
14
|
-
}
|
15
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPCommentServiceImpl, decorators: [{
|
16
|
-
type: Injectable
|
17
|
-
}], ctorParameters: () => [] });
|
18
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29tbWVudC1tYW5hZ2VtZW50LnNlcnZpY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL21vZHVsZXMvcGxhdGZvcm0tbWFuYWdlbWVudC9zcmMvbGliL2NvbW1lbnRzL2NvbW1lbnQtbWFuYWdlbWVudC5zZXJ2aWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSx3QkFBd0IsRUFBRSx5QkFBeUIsRUFBRSxNQUFNLHlCQUF5QixDQUFDO0FBTzlGLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBRzNDLE1BQU0sT0FBTyxxQkFBc0IsU0FBUSx3QkFLMUM7SUFNQztRQUNFLEtBQUssQ0FBQyxVQUFVLENBQUMsQ0FBQztRQU5WLGdDQUEyQixHQUFHLElBQUkseUJBQXlCLENBQ25FLEtBQUssQ0FBQyxjQUFjLEVBQ3BCLGlCQUFpQixDQUNsQixDQUFDO0lBSUYsQ0FBQztJQUVELEtBQUssQ0FBQyxJQUFJLENBQUMsT0FBc0M7UUFDL0MsT0FBTyxJQUFJLENBQUMsMkJBQTJCLENBQUMsU0FBUyxDQUFDLE9BQU8sQ0FBQyxDQUFDO0lBQzdELENBQUM7OEdBakJVLHFCQUFxQjtrSEFBckIscUJBQXFCOzsyRkFBckIscUJBQXFCO2tCQURqQyxVQUFVIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVhNRW50aXR5Q3J1ZFNlcnZpY2VJbXBsLCBBWFBFbnRpdHlEYXRhUHJvdmlkZXJJbXBsIH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9jb21tb24nO1xuaW1wb3J0IHtcbiAgQVhQQ29tbWVudCxcbiAgQVhQQ29tbWVudENyZWF0ZVJlcXVlc3QsXG4gIEFYUENvbW1lbnRFbnRpdHlNb2RlbCxcbiAgQVhQTWVzc2FnZVJlYWN0aW9uRW50aXR5TW9kZWwsXG59IGZyb20gJ0BhY29yZXgvcGxhdGZvcm0vdGhlbWVzL3NoYXJlZCc7XG5pbXBvcnQgeyBJbmplY3RhYmxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBJbmplY3RhYmxlKClcbmV4cG9ydCBjbGFzcyBBWFBDb21tZW50U2VydmljZUltcGwgZXh0ZW5kcyBBWE1FbnRpdHlDcnVkU2VydmljZUltcGw8XG4gIHN0cmluZyxcbiAgQVhQQ29tbWVudEVudGl0eU1vZGVsLFxuICBBWFBDb21tZW50Q3JlYXRlUmVxdWVzdCxcbiAgQVhQQ29tbWVudFxuPiB7XG4gIHByb3RlY3RlZCBtZXNzYWdlUmVhY3Rpb25EYXRhUHJvdmlkZXIgPSBuZXcgQVhQRW50aXR5RGF0YVByb3ZpZGVySW1wbDxzdHJpbmcsIEFYUE1lc3NhZ2VSZWFjdGlvbkVudGl0eU1vZGVsPihcbiAgICBzdXBlci5zdG9yYWdlU2VydmljZSxcbiAgICAnbWVzc2FnZVJlYWN0aW9uJ1xuICApO1xuXG4gIGNvbnN0cnVjdG9yKCkge1xuICAgIHN1cGVyKCdjb21tZW50cycpO1xuICB9XG5cbiAgYXN5bmMgbGlrZShwYXlsb2FkOiBBWFBNZXNzYWdlUmVhY3Rpb25FbnRpdHlNb2RlbCk6IFByb21pc2U8c3RyaW5nPiB7XG4gICAgcmV0dXJuIHRoaXMubWVzc2FnZVJlYWN0aW9uRGF0YVByb3ZpZGVyLmluc2VydE9uZShwYXlsb2FkKTtcbiAgfVxufVxuIl19
|