@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
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@acorex/modules",
|
3
|
-
"version": "18.2.
|
3
|
+
"version": "18.2.1",
|
4
4
|
"peerDependencies": {
|
5
5
|
"@angular/common": ">=18.0.0",
|
6
6
|
"@angular/core": ">=18.0.0",
|
@@ -34,17 +34,29 @@
|
|
34
34
|
"esm": "./esm2022/backend/acorex-modules-backend.mjs",
|
35
35
|
"default": "./fesm2022/acorex-modules-backend.mjs"
|
36
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
|
+
},
|
37
49
|
"./auth": {
|
38
50
|
"types": "./auth/index.d.ts",
|
39
51
|
"esm2022": "./esm2022/auth/acorex-modules-auth.mjs",
|
40
52
|
"esm": "./esm2022/auth/acorex-modules-auth.mjs",
|
41
53
|
"default": "./fesm2022/acorex-modules-auth.mjs"
|
42
54
|
},
|
43
|
-
"./
|
44
|
-
"types": "./
|
45
|
-
"esm2022": "./esm2022/
|
46
|
-
"esm": "./esm2022/
|
47
|
-
"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"
|
48
60
|
},
|
49
61
|
"./conversation": {
|
50
62
|
"types": "./conversation/index.d.ts",
|
@@ -52,18 +64,18 @@
|
|
52
64
|
"esm": "./esm2022/conversation/acorex-modules-conversation.mjs",
|
53
65
|
"default": "./fesm2022/acorex-modules-conversation.mjs"
|
54
66
|
},
|
55
|
-
"./notification-management": {
|
56
|
-
"types": "./notification-management/index.d.ts",
|
57
|
-
"esm2022": "./esm2022/notification-management/acorex-modules-notification-management.mjs",
|
58
|
-
"esm": "./esm2022/notification-management/acorex-modules-notification-management.mjs",
|
59
|
-
"default": "./fesm2022/acorex-modules-notification-management.mjs"
|
60
|
-
},
|
61
67
|
"./platform-management": {
|
62
68
|
"types": "./platform-management/index.d.ts",
|
63
69
|
"esm2022": "./esm2022/platform-management/acorex-modules-platform-management.mjs",
|
64
70
|
"esm": "./esm2022/platform-management/acorex-modules-platform-management.mjs",
|
65
71
|
"default": "./fesm2022/acorex-modules-platform-management.mjs"
|
66
72
|
},
|
73
|
+
"./notification-management": {
|
74
|
+
"types": "./notification-management/index.d.ts",
|
75
|
+
"esm2022": "./esm2022/notification-management/acorex-modules-notification-management.mjs",
|
76
|
+
"esm": "./esm2022/notification-management/acorex-modules-notification-management.mjs",
|
77
|
+
"default": "./fesm2022/acorex-modules-notification-management.mjs"
|
78
|
+
},
|
67
79
|
"./template-management": {
|
68
80
|
"types": "./template-management/index.d.ts",
|
69
81
|
"esm2022": "./esm2022/template-management/acorex-modules-template-management.mjs",
|
@@ -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,4 @@
|
|
1
|
-
import { AXPMenuInsertion, AXPMenuProvider } from
|
1
|
+
import { AXPMenuInsertion, AXPMenuProvider } from '@acorex/platform/common';
|
2
2
|
export declare class AXMPlatformManagmentModuleMenuProvider implements AXPMenuProvider {
|
3
3
|
private translateService;
|
4
4
|
items(): Promise<AXPMenuInsertion[]>;
|
@@ -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,5 +0,0 @@
|
|
1
|
-
import { AXMEntityCrudServiceImpl } from '@acorex/platform/common';
|
2
|
-
import { AXMComment, AXMCommentCreateRequest, AXMCommentEntityModel, AXMMessageReactionEntityModel } from './comments.type';
|
3
|
-
export declare abstract class AXMCommentService extends AXMEntityCrudServiceImpl<string, AXMCommentEntityModel, AXMCommentCreateRequest, AXMComment> {
|
4
|
-
abstract like(payload: AXMMessageReactionEntityModel): Promise<string>;
|
5
|
-
}
|