@acorex/modules 18.2.0 → 18.2.2
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/const.d.ts +5 -0
- package/application-management/lib/menu.provider.d.ts +3 -3
- 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/auth.config.d.ts +6 -0
- package/auth/lib/login/password/password.component.d.ts +1 -0
- package/auth/lib/menu.provider.d.ts +2 -3
- package/conversation/index.d.ts +15 -4
- package/conversation/lib/const.d.ts +7 -0
- package/conversation/lib/conversation.module.d.ts +3 -3
- package/conversation/lib/entities/chat/chat.module.d.ts +29 -0
- package/conversation/lib/entities/chat/chat.service.d.ts +14 -0
- package/conversation/lib/entities/chat/chat.type.d.ts +22 -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 +12 -0
- package/conversation/lib/entities/chat/components/chat-preview/chat-preview.component.d.ts +31 -0
- package/conversation/lib/entities/chat/components/chat-preview-header/chat-preview-header.component.d.ts +7 -0
- package/conversation/lib/entities/chat/pages/chat/chat.component.d.ts +23 -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} +7 -4
- package/conversation/lib/{comments → entities/comments/pages}/comment-list-view.component.d.ts +1 -1
- 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/const.mjs +6 -0
- 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 +17 -19
- package/esm2022/application-management/lib/module-designer/module-designer.component.mjs +3 -3
- 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/account/app-chooser/app-chooser.component.mjs +3 -3
- package/esm2022/auth/lib/account/tenant-chooser/tenant-chooser.component.mjs +3 -3
- package/esm2022/auth/lib/auth.config.mjs +1 -1
- package/esm2022/auth/lib/forgot/password/password.component.mjs +2 -2
- package/esm2022/auth/lib/login/password/password.component.mjs +6 -3
- package/esm2022/auth/lib/menu.provider.mjs +32 -44
- package/esm2022/auth/lib/two-factor/two-factor-code/two-factor-code.component.mjs +2 -2
- package/esm2022/backend/lib/data/api/data-provider.mjs +7 -2
- package/esm2022/conversation/index.mjs +16 -5
- package/esm2022/conversation/lib/const.mjs +8 -0
- package/esm2022/conversation/lib/conversation.module.mjs +7 -7
- package/esm2022/conversation/lib/entities/chat/chat.module.mjs +141 -0
- package/esm2022/conversation/lib/entities/chat/chat.service.mjs +23 -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 +53 -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 +28 -0
- package/esm2022/conversation/lib/entities/chat/components/chat-preview/chat-preview.component.mjs +124 -0
- package/esm2022/conversation/lib/entities/chat/components/chat-preview-header/chat-preview-header.component.mjs +22 -0
- package/esm2022/conversation/lib/entities/chat/pages/chat/chat.component.mjs +80 -0
- package/esm2022/conversation/lib/entities/comments/comment.module.mjs +100 -0
- package/esm2022/conversation/lib/entities/comments/comments.service.mjs +21 -0
- package/esm2022/conversation/lib/entities/comments/comments.type.mjs +2 -0
- package/esm2022/conversation/lib/entities/comments/pages/comment-list-view.component.mjs +392 -0
- package/esm2022/conversation/lib/{comments → entities/comments/pages}/comment-lookup-popup.component.mjs +1 -1
- 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/components/widgets/template-designer/index.mjs +3 -0
- package/esm2022/form-template-management/lib/components/widgets/template-designer/template-designer-widget-view.component.mjs +44 -0
- package/esm2022/form-template-management/lib/components/widgets/template-designer/template-designer-widget.config.mjs +23 -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 +434 -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 +133 -0
- package/esm2022/form-template-management/lib/menu.provider.mjs +32 -0
- package/esm2022/form-template-management/lib/pages/designer/designer.page.mjs +29 -0
- package/esm2022/form-template-management/lib/services/designer-connector.service.mjs +33 -0
- package/esm2022/form-template-management/lib/services/template.provider.mjs +31 -0
- package/esm2022/form-template-management/lib/workflows/create-template.workflow.mjs +40 -0
- package/esm2022/form-template-management/lib/workflows/design-template.workflow.mjs +32 -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/const.mjs +9 -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 +44 -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/const.mjs +9 -0
- 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/entities/notification-template.entity.mjs +4 -4
- package/esm2022/notification-management/lib/entities/notification.entity.mjs +4 -4
- package/esm2022/notification-management/lib/menu.provider.mjs +37 -40
- 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/const.mjs +12 -0
- package/esm2022/platform-management/lib/global-variables/entities/global-variable.entity.mjs +58 -7
- package/esm2022/platform-management/lib/global-variables/entity.loader.mjs +8 -11
- package/esm2022/platform-management/lib/menu.provider.mjs +56 -34
- package/esm2022/platform-management/lib/platform-management.module.mjs +11 -32
- package/esm2022/setting-management/acorex-modules-setting-management.mjs +5 -0
- package/esm2022/setting-management/index.mjs +5 -0
- package/esm2022/setting-management/lib/const.mjs +7 -0
- package/esm2022/setting-management/lib/entities/index.mjs +2 -0
- package/esm2022/setting-management/lib/entities/setting/index.mjs +5 -0
- package/esm2022/setting-management/lib/entities/setting/setting.entity.mjs +244 -0
- package/esm2022/setting-management/lib/entities/setting/setting.module.mjs +28 -0
- package/esm2022/setting-management/lib/entities/setting/setting.service.mjs +17 -0
- package/esm2022/setting-management/lib/entities/setting/setting.types.mjs +2 -0
- package/esm2022/setting-management/lib/entity.provider.mjs +25 -0
- package/esm2022/setting-management/lib/menu.provider.mjs +32 -0
- package/esm2022/setting-management/lib/setting-management.module.mjs +44 -0
- package/esm2022/text-template-management/acorex-modules-text-template-management.mjs +5 -0
- package/esm2022/text-template-management/index.mjs +6 -0
- package/esm2022/text-template-management/lib/const.mjs +8 -0
- package/esm2022/text-template-management/lib/entities/category/category.entity.mjs +257 -0
- package/esm2022/text-template-management/lib/entities/category/category.module.mjs +28 -0
- package/esm2022/text-template-management/lib/entities/category/category.service.mjs +17 -0
- package/esm2022/text-template-management/lib/entities/category/category.types.mjs +2 -0
- package/esm2022/text-template-management/lib/entities/category/index.mjs +5 -0
- package/esm2022/text-template-management/lib/entities/index.mjs +3 -0
- package/esm2022/text-template-management/lib/entities/template/index.mjs +5 -0
- package/esm2022/text-template-management/lib/entities/template/template.entity.mjs +405 -0
- package/esm2022/text-template-management/lib/entities/template/template.module.mjs +28 -0
- package/esm2022/text-template-management/lib/entities/template/template.service.mjs +17 -0
- package/esm2022/text-template-management/lib/entities/template/template.types.mjs +2 -0
- package/esm2022/text-template-management/lib/entity.provider.mjs +29 -0
- package/esm2022/text-template-management/lib/menu.provider.mjs +37 -0
- package/esm2022/text-template-management/lib/setting.provider.mjs +48 -0
- package/esm2022/text-template-management/lib/text-template-management.module.mjs +56 -0
- package/fesm2022/{acorex-modules-application-management-module-designer.component-BCaCCEXO.mjs → acorex-modules-application-management-module-designer.component-DjRdIBQt.mjs} +5 -5
- package/fesm2022/{acorex-modules-application-management-module-designer.component-BCaCCEXO.mjs.map → acorex-modules-application-management-module-designer.component-DjRdIBQt.mjs.map} +1 -1
- package/fesm2022/acorex-modules-application-management.mjs +356 -257
- 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-Chw_5AKM.mjs} +46 -52
- package/fesm2022/acorex-modules-auth-acorex-modules-auth-Chw_5AKM.mjs.map +1 -0
- package/fesm2022/{acorex-modules-auth-app-chooser.component-B7BwymT_.mjs → acorex-modules-auth-app-chooser.component-DN04Uoqa.mjs} +5 -5
- package/fesm2022/acorex-modules-auth-app-chooser.component-DN04Uoqa.mjs.map +1 -0
- package/fesm2022/{acorex-modules-auth-login.module-BjvPlYQZ.mjs → acorex-modules-auth-login.module-Bir7SJ8b.mjs} +4 -4
- package/fesm2022/{acorex-modules-auth-login.module-BjvPlYQZ.mjs.map → acorex-modules-auth-login.module-Bir7SJ8b.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-auth-master.layout-CeqMPrx8.mjs → acorex-modules-auth-master.layout-DwijDvUp.mjs} +3 -3
- package/fesm2022/{acorex-modules-auth-master.layout-CeqMPrx8.mjs.map → acorex-modules-auth-master.layout-DwijDvUp.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-auth-password.component-87NrYq3i.mjs → acorex-modules-auth-password.component-C1S8V4Bw.mjs} +9 -6
- package/fesm2022/acorex-modules-auth-password.component-C1S8V4Bw.mjs.map +1 -0
- package/fesm2022/{acorex-modules-auth-password.component-X3BUidi1.mjs → acorex-modules-auth-password.component-CuLQNJ-W.mjs} +3 -3
- package/fesm2022/{acorex-modules-auth-password.component-X3BUidi1.mjs.map → acorex-modules-auth-password.component-CuLQNJ-W.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-auth-routes-D1JZT2cF.mjs → acorex-modules-auth-routes-ILpWODmz.mjs} +2 -2
- package/fesm2022/{acorex-modules-auth-routes-D1JZT2cF.mjs.map → acorex-modules-auth-routes-ILpWODmz.mjs.map} +1 -1
- package/fesm2022/acorex-modules-auth-tenant-chooser.component-6qDoCUBo.mjs +83 -0
- package/fesm2022/acorex-modules-auth-tenant-chooser.component-6qDoCUBo.mjs.map +1 -0
- package/fesm2022/{acorex-modules-auth-two-factor-code.component-B_7l39pX.mjs → acorex-modules-auth-two-factor-code.component-BJKmvI7y.mjs} +3 -3
- package/fesm2022/{acorex-modules-auth-two-factor-code.component-B_7l39pX.mjs.map → acorex-modules-auth-two-factor-code.component-BJKmvI7y.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-auth-two-factor.module-C28ix6Wr.mjs → acorex-modules-auth-two-factor.module-bgwR1LBc.mjs} +3 -3
- package/fesm2022/{acorex-modules-auth-two-factor.module-C28ix6Wr.mjs.map → acorex-modules-auth-two-factor.module-bgwR1LBc.mjs.map} +1 -1
- package/fesm2022/acorex-modules-auth.mjs +1 -1
- package/fesm2022/acorex-modules-backend.mjs +7 -2
- package/fesm2022/acorex-modules-backend.mjs.map +1 -1
- package/fesm2022/acorex-modules-conversation.mjs +501 -44
- package/fesm2022/acorex-modules-conversation.mjs.map +1 -1
- package/fesm2022/acorex-modules-form-template-management-designer.page-NhIPhsRs.mjs +32 -0
- package/fesm2022/acorex-modules-form-template-management-designer.page-NhIPhsRs.mjs.map +1 -0
- package/fesm2022/acorex-modules-form-template-management.mjs +1135 -0
- package/fesm2022/acorex-modules-form-template-management.mjs.map +1 -0
- package/fesm2022/acorex-modules-localization-management.mjs +1025 -0
- package/fesm2022/acorex-modules-localization-management.mjs.map +1 -0
- package/fesm2022/acorex-modules-notification-management.mjs +64 -67
- package/fesm2022/acorex-modules-notification-management.mjs.map +1 -1
- package/fesm2022/acorex-modules-platform-management.mjs +1424 -201
- package/fesm2022/acorex-modules-platform-management.mjs.map +1 -1
- package/fesm2022/acorex-modules-setting-management.mjs +393 -0
- package/fesm2022/acorex-modules-setting-management.mjs.map +1 -0
- package/fesm2022/{acorex-modules-template-management.mjs → acorex-modules-text-template-management.mjs} +317 -506
- package/fesm2022/acorex-modules-text-template-management.mjs.map +1 -0
- package/form-template-management/README.md +4 -0
- package/form-template-management/index.d.ts +1 -0
- package/form-template-management/lib/components/widgets/template-designer/index.d.ts +2 -0
- package/form-template-management/lib/components/widgets/template-designer/template-designer-widget-view.component.d.ts +8 -0
- package/form-template-management/lib/components/widgets/template-designer/template-designer-widget.config.d.ts +7 -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 +7 -0
- package/form-template-management/lib/entity.provider.d.ts +9 -0
- package/form-template-management/lib/form-template-management.module.d.ts +12 -0
- package/form-template-management/lib/menu.provider.d.ts +5 -0
- package/form-template-management/lib/pages/designer/designer.page.d.ts +7 -0
- package/form-template-management/lib/services/designer-connector.service.d.ts +7 -0
- package/form-template-management/lib/services/template.provider.d.ts +8 -0
- package/form-template-management/lib/workflows/create-template.workflow.d.ts +2 -0
- package/form-template-management/lib/workflows/design-template.workflow.d.ts +9 -0
- package/localization-management/README.md +4 -0
- package/localization-management/index.d.ts +7 -0
- package/localization-management/lib/const.d.ts +8 -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/{template-management/lib/entities/text-template.entity.d.ts → localization-management/lib/time-zone/time-zone.entity.d.ts} +1 -1
- 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/const.d.ts +8 -0
- package/notification-management/lib/menu.provider.d.ts +3 -3
- package/package.json +34 -22
- 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/{template-management/lib → platform-management/lib/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/const.d.ts +11 -0
- package/platform-management/lib/menu.provider.d.ts +3 -3
- package/platform-management/lib/platform-management.module.d.ts +2 -1
- package/setting-management/README.md +3 -0
- package/setting-management/index.d.ts +4 -0
- package/setting-management/lib/const.d.ts +6 -0
- package/setting-management/lib/entities/index.d.ts +1 -0
- package/setting-management/lib/entities/setting/index.d.ts +4 -0
- package/setting-management/lib/entities/setting/setting.entity.d.ts +3 -0
- package/setting-management/lib/entities/setting/setting.module.d.ts +6 -0
- package/setting-management/lib/entities/setting/setting.service.d.ts +10 -0
- package/setting-management/lib/entities/setting/setting.types.d.ts +5 -0
- package/setting-management/lib/entity.provider.d.ts +9 -0
- package/setting-management/lib/menu.provider.d.ts +5 -0
- package/setting-management/lib/setting-management.module.d.ts +7 -0
- package/text-template-management/README.md +3 -0
- package/text-template-management/index.d.ts +5 -0
- package/text-template-management/lib/const.d.ts +7 -0
- package/text-template-management/lib/entities/category/category.entity.d.ts +3 -0
- package/text-template-management/lib/entities/category/category.module.d.ts +6 -0
- package/text-template-management/lib/entities/category/category.service.d.ts +10 -0
- package/text-template-management/lib/entities/category/category.types.d.ts +5 -0
- package/text-template-management/lib/entities/category/index.d.ts +4 -0
- package/text-template-management/lib/entities/index.d.ts +2 -0
- package/text-template-management/lib/entities/template/index.d.ts +4 -0
- package/text-template-management/lib/entities/template/template.entity.d.ts +3 -0
- package/text-template-management/lib/entities/template/template.module.d.ts +6 -0
- package/text-template-management/lib/entities/template/template.service.d.ts +10 -0
- package/text-template-management/lib/entities/template/template.types.d.ts +9 -0
- package/text-template-management/lib/entity.provider.d.ts +9 -0
- package/text-template-management/lib/menu.provider.d.ts +5 -0
- package/text-template-management/lib/setting.provider.d.ts +4 -0
- package/text-template-management/lib/text-template-management.module.d.ts +8 -0
- 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/acorex-modules-template-management.mjs +0 -5
- package/esm2022/template-management/index.mjs +0 -8
- package/esm2022/template-management/lib/entities/category.entity.mjs +0 -234
- package/esm2022/template-management/lib/entities/index.mjs +0 -4
- package/esm2022/template-management/lib/entities/template-variable.entity.mjs +0 -308
- package/esm2022/template-management/lib/entities/text-template.entity.mjs +0 -386
- package/esm2022/template-management/lib/entity.loader.mjs +0 -36
- package/esm2022/template-management/lib/menu.provider.mjs +0 -43
- package/esm2022/template-management/lib/template-management.module.mjs +0 -61
- package/esm2022/template-management/lib/template-management.types.mjs +0 -2
- package/esm2022/template-management/lib/template.service.mjs +0 -17
- package/esm2022/template-management/lib/text-management.source.mjs +0 -3
- package/esm2022/template-management/lib/text-template-category.service.mjs +0 -17
- package/fesm2022/acorex-modules-auth-acorex-modules-auth-D2WBJhj6.mjs.map +0 -1
- package/fesm2022/acorex-modules-auth-app-chooser.component-B7BwymT_.mjs.map +0 -1
- package/fesm2022/acorex-modules-auth-password.component-87NrYq3i.mjs.map +0 -1
- package/fesm2022/acorex-modules-auth-tenant-chooser.component-CHr5_kh7.mjs +0 -83
- package/fesm2022/acorex-modules-auth-tenant-chooser.component-CHr5_kh7.mjs.map +0 -1
- package/fesm2022/acorex-modules-form-management-designer.page-SoPH2V7i.mjs +0 -27
- 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/fesm2022/acorex-modules-template-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/entity.loader.d.ts +0 -9
- package/platform-management/lib/languages/index.d.ts +0 -4
- package/template-management/README.md +0 -3
- package/template-management/index.d.ts +0 -7
- package/template-management/lib/entities/category.entity.d.ts +0 -3
- package/template-management/lib/entities/index.d.ts +0 -3
- package/template-management/lib/entities/template-variable.entity.d.ts +0 -3
- package/template-management/lib/menu.provider.d.ts +0 -5
- package/template-management/lib/template-management.module.d.ts +0 -6
- package/template-management/lib/template-management.types.d.ts +0 -19
- package/template-management/lib/template.service.d.ts +0 -10
- package/template-management/lib/text-management.source.d.ts +0 -2
- package/template-management/lib/text-template-category.service.d.ts +0 -10
- /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
@@ -1,4 +1,5 @@
|
|
1
1
|
export declare const APPLICATION_SOURCE_NAME = "application-management.application";
|
2
|
+
export declare const APPLICATION_MODULE_SOURCE_NAME = "application-management.application-module";
|
2
3
|
export declare const MODULE_SOURCE_NAME = "application-management.module";
|
3
4
|
export declare const ENTITY_SOURCE_NAME = "application-management.entity";
|
4
5
|
export declare const PERMISSION_SOURCE_NAME = "application-management.permission";
|
@@ -1,5 +1,5 @@
|
|
1
|
-
import {
|
1
|
+
import { AXPMenuProvider, AXPMenuProviderContext } from '@acorex/platform/common';
|
2
2
|
export declare class AXMApplicationManagmentModuleMenuProvider implements AXPMenuProvider {
|
3
|
-
private
|
4
|
-
|
3
|
+
private entityService;
|
4
|
+
provide(context: AXPMenuProviderContext): Promise<void>;
|
5
5
|
}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/common';
|
2
|
+
import { AXMApplicationModuleEntityModel } from '../application-management.types';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export declare abstract class AXMApplicationModuleService extends AXMEntityCrudServiceImpl<string, AXMApplicationModuleEntityModel> {
|
5
|
+
}
|
6
|
+
export declare class AXMApplicationModuleServiceImpl extends AXMEntityCrudServiceImpl<string, AXMApplicationModuleEntityModel> {
|
7
|
+
constructor();
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMApplicationModuleServiceImpl, never>;
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXMApplicationModuleServiceImpl>;
|
10
|
+
}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/common';
|
2
|
+
import { AXMEditionEntityModel } from '../application-management.types';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export declare abstract class AXMEditionService extends AXMEntityCrudServiceImpl<string, AXMEditionEntityModel> {
|
5
|
+
}
|
6
|
+
export declare class AXMEditionServiceImpl extends AXMEntityCrudServiceImpl<string, AXMEditionEntityModel> {
|
7
|
+
constructor();
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMEditionServiceImpl, never>;
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXMEditionServiceImpl>;
|
10
|
+
}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/common';
|
2
|
+
import { AXMEntityEntityModel } from '../application-management.types';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export declare abstract class AXMEntityService extends AXMEntityCrudServiceImpl<string, AXMEntityEntityModel> {
|
5
|
+
}
|
6
|
+
export declare class AXMEntityServiceImpl extends AXMEntityCrudServiceImpl<string, AXMEntityEntityModel> {
|
7
|
+
constructor();
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMEntityServiceImpl, never>;
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXMEntityServiceImpl>;
|
10
|
+
}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/common';
|
2
|
+
import { AXMFeatureEntityModel } from '../application-management.types';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export declare abstract class AXMFeatureService extends AXMEntityCrudServiceImpl<string, AXMFeatureEntityModel> {
|
5
|
+
}
|
6
|
+
export declare class AXMFeatureServiceImpl extends AXMEntityCrudServiceImpl<string, AXMFeatureEntityModel> {
|
7
|
+
constructor();
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMFeatureServiceImpl, never>;
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXMFeatureServiceImpl>;
|
10
|
+
}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/common';
|
2
|
+
import { AXMPermissionEntityModel } from '../application-management.types';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export declare abstract class AXMPermissionService extends AXMEntityCrudServiceImpl<string, AXMPermissionEntityModel> {
|
5
|
+
}
|
6
|
+
export declare class AXMPermissionServiceImpl extends AXMEntityCrudServiceImpl<string, AXMPermissionEntityModel> {
|
7
|
+
constructor();
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMPermissionServiceImpl, never>;
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXMPermissionServiceImpl>;
|
10
|
+
}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/common';
|
2
|
+
import { AXMPropertyEntityModel } from '../application-management.types';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export declare abstract class AXMPropertyService extends AXMEntityCrudServiceImpl<string, AXMPropertyEntityModel> {
|
5
|
+
}
|
6
|
+
export declare class AXMPropertyServiceImpl extends AXMEntityCrudServiceImpl<string, AXMPropertyEntityModel> {
|
7
|
+
constructor();
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMPropertyServiceImpl, never>;
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXMPropertyServiceImpl>;
|
10
|
+
}
|
@@ -13,6 +13,12 @@ export interface AXMAuthConfigs {
|
|
13
13
|
type: AXMAuthenticationTypes;
|
14
14
|
authConfig?: AuthConfig;
|
15
15
|
end_url?: string;
|
16
|
+
signup?: {
|
17
|
+
enable: boolean;
|
18
|
+
url?: string;
|
19
|
+
};
|
20
|
+
signin_google?: boolean;
|
21
|
+
signin_apple?: boolean;
|
16
22
|
signinPage?: {
|
17
23
|
description: string;
|
18
24
|
slogan: string;
|
@@ -16,6 +16,7 @@ export declare class AXPLoginPasswordComponent implements OnInit {
|
|
16
16
|
private router;
|
17
17
|
ngOnInit(): void;
|
18
18
|
protected handleForgotOnClick(): void;
|
19
|
+
protected handleRegisterOnClick(): void;
|
19
20
|
protected handleLoginClick(): void;
|
20
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPLoginPasswordComponent, never>;
|
21
22
|
static ɵcmp: i0.ɵɵComponentDeclaration<AXPLoginPasswordComponent, "ng-component", never, {}, {}, never, never, true, never>;
|
@@ -1,5 +1,4 @@
|
|
1
|
-
import {
|
1
|
+
import { AXPMenuProvider, AXPMenuProviderContext } from '@acorex/platform/common';
|
2
2
|
export declare class AXMSecurityManagmentModuleMenuProvider implements AXPMenuProvider {
|
3
|
-
|
4
|
-
items(): Promise<AXPMenuInsertion[]>;
|
3
|
+
provide(context: AXPMenuProviderContext): Promise<void>;
|
5
4
|
}
|
package/conversation/index.d.ts
CHANGED
@@ -1,5 +1,16 @@
|
|
1
|
-
export * from './lib/comments/comment
|
2
|
-
export * from './lib/comments/
|
3
|
-
export * from './lib/comments/comments.
|
4
|
-
export * from './lib/comments/
|
1
|
+
export * from './lib/entities/comments/comment.module';
|
2
|
+
export * from './lib/entities/comments/comments.service';
|
3
|
+
export * from './lib/entities/comments/comments.type';
|
4
|
+
export * from './lib/entities/comments/pages/comment-list-view.component';
|
5
|
+
export * from './lib/entities/comments/pages/comment-lookup-popup.component';
|
6
|
+
export * from './lib/entities/chat/chat.module';
|
7
|
+
export * from './lib/entities/chat/chat.service';
|
8
|
+
export * from './lib/entities/chat/chat.type';
|
9
|
+
export * from './lib/entities/chat/components/chat-item-footer/chat-item-footer.component';
|
10
|
+
export * from './lib/entities/chat/components/chat-item-header/chat-item-header.component';
|
11
|
+
export * from './lib/entities/chat/components/chat-item/chat-item.component';
|
12
|
+
export * from './lib/entities/chat/components/chat-preview-header/chat-preview-header.component';
|
13
|
+
export * from './lib/entities/chat/components/chat-preview/chat-preview.component';
|
14
|
+
export * from './lib/entities/chat/pages/chat/chat.component';
|
15
|
+
export * from './lib/const';
|
5
16
|
export * from './lib/conversation.module';
|
@@ -1,8 +1,8 @@
|
|
1
1
|
import * as i0 from "@angular/core";
|
2
|
-
import * as i1 from "./comments/comment.module";
|
3
|
-
import * as i2 from "./
|
2
|
+
import * as i1 from "./entities/comments/comment.module";
|
3
|
+
import * as i2 from "./entities/chat/chat.module";
|
4
4
|
export declare class AXMConversationModule {
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXMConversationModule, never>;
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AXMConversationModule, never, [typeof i1.AXMCommentModule], [typeof i2.
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXMConversationModule, never, [typeof i1.AXMCommentModule, typeof i2.AXMChatModule], [typeof i1.AXMCommentModule, typeof i2.AXMChatModule]>;
|
7
7
|
static ɵinj: i0.ɵɵInjectorDeclaration<AXMConversationModule>;
|
8
8
|
}
|
@@ -0,0 +1,29 @@
|
|
1
|
+
import { EnvironmentProviders, ModuleWithProviders, Provider } from '@angular/core';
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
import * as i1 from "./components/chat-item/chat-item.component";
|
4
|
+
import * as i2 from "./pages/chat/chat.component";
|
5
|
+
import * as i3 from "./components/chat-item-header/chat-item-header.component";
|
6
|
+
import * as i4 from "./components/chat-preview/chat-preview.component";
|
7
|
+
import * as i5 from "./components/chat-item-footer/chat-item-footer.component";
|
8
|
+
import * as i6 from "./components/chat-preview-header/chat-preview-header.component";
|
9
|
+
import * as i7 from "@acorex/components/image";
|
10
|
+
import * as i8 from "@acorex/components/avatar";
|
11
|
+
import * as i9 from "@acorex/components/badge";
|
12
|
+
import * as i10 from "@acorex/components/decorators";
|
13
|
+
import * as i11 from "@acorex/components/text-box";
|
14
|
+
import * as i12 from "@acorex/components/tabs";
|
15
|
+
import * as i13 from "@angular/common";
|
16
|
+
import * as i14 from "@angular/forms";
|
17
|
+
import * as i15 from "@acorex/components/conversation";
|
18
|
+
import * as i16 from "@acorex/components/button";
|
19
|
+
import * as i17 from "@acorex/components/loading";
|
20
|
+
import * as i18 from "@acorex/core/utils";
|
21
|
+
import * as i19 from "@angular/router";
|
22
|
+
export declare class AXMChatModule {
|
23
|
+
static forRoot(config: {
|
24
|
+
provider: Array<Provider | EnvironmentProviders>;
|
25
|
+
}): ModuleWithProviders<AXMChatModule>;
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMChatModule, never>;
|
27
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXMChatModule, [typeof i1.AXMChatItemComponent, typeof i2.AXMChatComponent, typeof i3.AXMChatItemHeaderComponent, typeof i4.AXMChatPreviewComponent, typeof i5.AXMChatItemFooterComponent, typeof i6.AXMChatPreviewHeaderComponent], [typeof i7.AXImageModule, typeof i8.AXAvatarModule, typeof i9.AXBadgeModule, typeof i10.AXDecoratorModule, typeof i11.AXTextBoxModule, typeof i12.AXTabsModule, typeof i13.CommonModule, typeof i14.FormsModule, typeof i15.AXConversationModule, typeof i16.AXButtonModule, typeof i17.AXLoadingModule, typeof i18.UtilsModule, typeof i19.RouterModule], [typeof i1.AXMChatItemComponent, typeof i2.AXMChatComponent, typeof i3.AXMChatItemHeaderComponent, typeof i4.AXMChatPreviewComponent, typeof i5.AXMChatItemFooterComponent, typeof i6.AXMChatPreviewHeaderComponent, typeof i19.RouterModule]>;
|
28
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AXMChatModule>;
|
29
|
+
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/common';
|
2
|
+
import { AXMChatRoom } from './chat.type';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export declare abstract class AXMChatService extends AXMEntityCrudServiceImpl<string, AXMChatRoom> {
|
5
|
+
abstract getTotalUnread(): Promise<number>;
|
6
|
+
abstract markChatAsRead(roomId: string): Promise<void>;
|
7
|
+
}
|
8
|
+
export declare class AXMChatServiceImpl extends AXMChatService {
|
9
|
+
markChatAsRead(roomId: string): Promise<void>;
|
10
|
+
getTotalUnread(): Promise<number>;
|
11
|
+
constructor();
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMChatServiceImpl, never>;
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXMChatServiceImpl>;
|
14
|
+
}
|
@@ -0,0 +1,22 @@
|
|
1
|
+
import { AXPEntityModel } from '@acorex/platform/common';
|
2
|
+
export interface AXMChatRoom extends AXPEntityModel<string> {
|
3
|
+
id: string;
|
4
|
+
title: string;
|
5
|
+
lastMessage: AXMChatMessage;
|
6
|
+
roomMembers: AXMChatUserDetails[];
|
7
|
+
unreadCount: number;
|
8
|
+
}
|
9
|
+
export interface AXMChatMessage {
|
10
|
+
content: string;
|
11
|
+
contentType: string;
|
12
|
+
hasSeen: boolean;
|
13
|
+
createdAt: Date;
|
14
|
+
createdBy: AXMChatUserDetails;
|
15
|
+
}
|
16
|
+
export interface AXMChatUserDetails {
|
17
|
+
id: string;
|
18
|
+
userName: string;
|
19
|
+
firstName: string;
|
20
|
+
lastName: string;
|
21
|
+
picture: string | null;
|
22
|
+
}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import { AXMChatRoom } from '../../chat.type';
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
export declare class AXMChatItemComponent {
|
4
|
+
data: import("@angular/core").InputSignal<AXMChatRoom>;
|
5
|
+
pressChatItem: import("@angular/core").OutputEmitterRef<string>;
|
6
|
+
private sessionService;
|
7
|
+
private router;
|
8
|
+
private activatedRoute;
|
9
|
+
protected fullName: import("@angular/core").Signal<string>;
|
10
|
+
protected myId: string | undefined;
|
11
|
+
protected extractInitials(name: string): string;
|
12
|
+
protected onPressChatItem(id: string): Promise<void>;
|
13
|
+
protected messageSeenStatus(): string;
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMChatItemComponent, never>;
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXMChatItemComponent, "axm-chat-item", never, { "data": { "alias": "data"; "required": true; "isSignal": true; }; }, { "pressChatItem": "pressChatItem"; }, never, never, false, never>;
|
16
|
+
}
|
package/conversation/lib/entities/chat/components/chat-item-footer/chat-item-footer.component.d.ts
ADDED
@@ -0,0 +1,5 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
export declare class AXMChatItemFooterComponent {
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMChatItemFooterComponent, never>;
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXMChatItemFooterComponent, "axm-chat-item-footer", never, {}, {}, never, never, false, never>;
|
5
|
+
}
|
package/conversation/lib/entities/chat/components/chat-item-header/chat-item-header.component.d.ts
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
import { AXTabsComponent } from '@acorex/components/tabs';
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
export declare class AXMChatItemHeaderComponent {
|
4
|
+
total: import("@angular/core").InputSignal<number>;
|
5
|
+
unread: import("@angular/core").InputSignal<number>;
|
6
|
+
tab: import("@angular/core").Signal<AXTabsComponent>;
|
7
|
+
tabsState: import("@angular/core").WritableSignal<number>;
|
8
|
+
activeTab: import("@angular/core").OutputEmitterRef<number>;
|
9
|
+
constructor();
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMChatItemHeaderComponent, never>;
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXMChatItemHeaderComponent, "axm-chat-item-header", never, { "total": { "alias": "total"; "required": true; "isSignal": true; }; "unread": { "alias": "unread"; "required": true; "isSignal": true; }; }, { "activeTab": "activeTab"; }, never, never, false, never>;
|
12
|
+
}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
import { AXConversationActionEvent } from '@acorex/components/conversation';
|
2
|
+
import { ElementRef, OnDestroy } from '@angular/core';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export declare class AXMChatPreviewComponent implements OnDestroy {
|
5
|
+
private elRef;
|
6
|
+
private activatedRoute;
|
7
|
+
private fileService;
|
8
|
+
private conversationService;
|
9
|
+
protected options: import("@angular/core").WritableSignal<{
|
10
|
+
disabled: boolean;
|
11
|
+
readonly: boolean;
|
12
|
+
value: string;
|
13
|
+
}>;
|
14
|
+
protected conversationViewMaxHeight: import("@angular/core").WritableSignal<string>;
|
15
|
+
private resizeObserver;
|
16
|
+
private initialTextAreaHeight;
|
17
|
+
private textareaHeight;
|
18
|
+
private messageId;
|
19
|
+
constructor(elRef: ElementRef);
|
20
|
+
protected dynamicHeight: import("@angular/core").Signal<string>;
|
21
|
+
ngOnDestroy(): void;
|
22
|
+
handleFileChange(event: any): void;
|
23
|
+
handleCancelRecord(event: any): void;
|
24
|
+
handleEndRecord(event: any): void;
|
25
|
+
handleOnSend(e: any): void;
|
26
|
+
handleOnAction(e: AXConversationActionEvent): void;
|
27
|
+
scrollToEnd(): void;
|
28
|
+
addMockMessage(): void;
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMChatPreviewComponent, never>;
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXMChatPreviewComponent, "axm-chat-preview", never, {}, {}, never, never, false, never>;
|
31
|
+
}
|
@@ -0,0 +1,7 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
export declare class AXMChatPreviewHeaderComponent {
|
3
|
+
pressBack: import("@angular/core").OutputEmitterRef<void>;
|
4
|
+
protected emitBack(): void;
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMChatPreviewHeaderComponent, never>;
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXMChatPreviewHeaderComponent, "axm-chat-preview-header", never, {}, { "pressBack": "pressBack"; }, never, never, false, never>;
|
7
|
+
}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
import { AXPPagedListResult } from '@acorex/platform/common';
|
2
|
+
import { OnInit } from '@angular/core';
|
3
|
+
import { AXMChatService } from '../../chat.service';
|
4
|
+
import { AXMChatRoom } from '../../chat.type';
|
5
|
+
import * as i0 from "@angular/core";
|
6
|
+
export declare class AXMChatComponent implements OnInit {
|
7
|
+
chatService: AXMChatService;
|
8
|
+
private route;
|
9
|
+
private readonly routeParams;
|
10
|
+
protected data: import("@angular/core").WritableSignal<AXPPagedListResult<AXMChatRoom> | undefined>;
|
11
|
+
protected filteredData: import("@angular/core").Signal<AXMChatRoom[]>;
|
12
|
+
protected displayData: import("@angular/core").Signal<AXMChatRoom[] | undefined>;
|
13
|
+
protected activeTab: import("@angular/core").WritableSignal<number>;
|
14
|
+
protected allCount: import("@angular/core").Signal<number>;
|
15
|
+
protected unreadCount: import("@angular/core").WritableSignal<number>;
|
16
|
+
ngOnInit(): Promise<void>;
|
17
|
+
private loadData;
|
18
|
+
protected markChatAsRead(roomId: string): Promise<void>;
|
19
|
+
setActiveTabData(event: number): void;
|
20
|
+
goBack(): void;
|
21
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMChatComponent, never>;
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXMChatComponent, "axm-chat", never, {}, {}, never, never, false, never>;
|
23
|
+
}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as i0 from "@angular/core";
|
2
|
-
import * as i1 from "./comment-list-view.component";
|
2
|
+
import * as i1 from "./pages/comment-list-view.component";
|
3
3
|
import * as i2 from "@angular/forms";
|
4
4
|
import * as i3 from "@angular/common";
|
5
5
|
import * as i4 from "@angular/router";
|
@@ -1,10 +1,13 @@
|
|
1
|
-
import { AXMComment, AXMCommentCreateRequest, AXMCommentEntityModel, AXMMessageReactionEntityModel } from '@acorex/modules/conversation';
|
2
1
|
import { AXMEntityCrudServiceImpl, AXPEntityDataProviderImpl } from '@acorex/platform/common';
|
2
|
+
import { AXMComment, AXMCommentCreateRequest, AXMCommentEntityModel, AXMMessageReactionEntityModel } from './comments.type';
|
3
3
|
import * as i0 from "@angular/core";
|
4
|
-
export declare class
|
4
|
+
export declare abstract class AXMCommentService extends AXMEntityCrudServiceImpl<string, AXMCommentEntityModel, AXMCommentCreateRequest, AXMComment> {
|
5
|
+
abstract like(payload: AXMMessageReactionEntityModel): Promise<string>;
|
6
|
+
}
|
7
|
+
export declare class AXMCommentServiceImpl extends AXMEntityCrudServiceImpl<string, AXMCommentEntityModel, AXMCommentCreateRequest, AXMComment> {
|
5
8
|
protected messageReactionDataProvider: AXPEntityDataProviderImpl<string, AXMMessageReactionEntityModel, Omit<AXMMessageReactionEntityModel, "id">, AXMMessageReactionEntityModel, AXMMessageReactionEntityModel>;
|
6
9
|
constructor();
|
7
10
|
like(payload: AXMMessageReactionEntityModel): Promise<string>;
|
8
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
9
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMCommentServiceImpl, never>;
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXMCommentServiceImpl>;
|
10
13
|
}
|
package/conversation/lib/{comments → entities/comments/pages}/comment-list-view.component.d.ts
RENAMED
@@ -1,7 +1,7 @@
|
|
1
1
|
import { AXWysiwygContainerComponent } from '@acorex/components/wysiwyg';
|
2
2
|
import { OnInit } from '@angular/core';
|
3
3
|
import { AXStyleLookType } from '@acorex/components/common';
|
4
|
-
import { AXMCommentEntityModel } from '
|
4
|
+
import { AXMCommentEntityModel } from '../comments.type';
|
5
5
|
import * as i0 from "@angular/core";
|
6
6
|
export declare class AXMCommentListViewComponent implements OnInit {
|
7
7
|
protected hasCooldown: import("@angular/core").WritableSignal<boolean>;
|
@@ -4,10 +4,17 @@ import { AXPWorkflowModule } from '@acorex/platform/workflow';
|
|
4
4
|
import { Inject, NgModule, Optional } from '@angular/core';
|
5
5
|
import { RouterModule } from '@angular/router';
|
6
6
|
import { AXMApplcationManagementroutes } from './application-management.route';
|
7
|
+
import { AXMApplicationModuleService, AXMEditionService, AXMEntityService, AXMFeatureService, AXMPermissionService, AXMPropertyService, } from './application-management.service';
|
7
8
|
import { AXMApplicationManagementModuleEntityLoader } from './entity.loader';
|
8
9
|
import { AXMApplicationManagmentModuleMenuProvider } from './menu.provider';
|
9
10
|
import { AXMApplicationService, AXMApplicationServiceImpl } from './services/application-management.service';
|
11
|
+
import { AXMApplicationModuleServiceImpl } from './services/application-module-management.service';
|
12
|
+
import { AXMEditionServiceImpl } from './services/edition-management.service';
|
13
|
+
import { AXMEntityServiceImpl } from './services/entity-management.service';
|
14
|
+
import { AXMFeatureServiceImpl } from './services/feature-management.service';
|
10
15
|
import { AXMModuleService, AXMModuleServiceImpl } from './services/module-management.service';
|
16
|
+
import { AXMPermissionServiceImpl } from './services/permission-management.service';
|
17
|
+
import { AXMPropertyServiceImpl } from './services/property-management.service';
|
11
18
|
import { AXPCreateModuleEntityWorkflow, AXPShowModuleEntityDetailsViewWorkflow, AXPShowModuleEntityDetailViewAction, } from './workflows';
|
12
19
|
import * as i0 from "@angular/core";
|
13
20
|
import * as i1 from "@acorex/platform/workflow";
|
@@ -35,6 +42,34 @@ export class AXMApplicationManagementModule {
|
|
35
42
|
provide: AXMApplicationService,
|
36
43
|
useClass: AXMApplicationServiceImpl,
|
37
44
|
},
|
45
|
+
{
|
46
|
+
provide: AXMApplicationModuleService,
|
47
|
+
useClass: AXMApplicationModuleServiceImpl,
|
48
|
+
},
|
49
|
+
{
|
50
|
+
provide: AXMEntityService,
|
51
|
+
useClass: AXMEntityServiceImpl,
|
52
|
+
},
|
53
|
+
{
|
54
|
+
provide: AXMPermissionService,
|
55
|
+
useClass: AXMPermissionServiceImpl,
|
56
|
+
},
|
57
|
+
{
|
58
|
+
provide: AXMFeatureService,
|
59
|
+
useClass: AXMFeatureServiceImpl,
|
60
|
+
},
|
61
|
+
{
|
62
|
+
provide: AXMPropertyService,
|
63
|
+
useClass: AXMPropertyServiceImpl,
|
64
|
+
},
|
65
|
+
{
|
66
|
+
provide: AXMEditionService,
|
67
|
+
useClass: AXMEditionServiceImpl,
|
68
|
+
},
|
69
|
+
// {
|
70
|
+
// provide: AXPModuleDesignerService,
|
71
|
+
// useClass: AXMModuleDesignerService,
|
72
|
+
// },
|
38
73
|
],
|
39
74
|
};
|
40
75
|
}
|
@@ -79,4 +114,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
79
114
|
type: Inject,
|
80
115
|
args: ['AXP_REGISTER_MODULES_ENTITIES']
|
81
116
|
}] }] });
|
82
|
-
//# sourceMappingURL=data:application/json;base64,
|
117
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBwbGljYXRpb24tbWFuYWdlbWVudC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL21vZHVsZXMvYXBwbGljYXRpb24tbWFuYWdlbWVudC9zcmMvbGliL2FwcGxpY2F0aW9uLW1hbmFnZW1lbnQubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLHlCQUF5QixDQUFDO0FBQzVELE9BQU8sRUFBRSw0QkFBNEIsRUFBRSxNQUFNLGdDQUFnQyxDQUFDO0FBQzlFLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBQzlELE9BQU8sRUFBRSxNQUFNLEVBQXVCLFFBQVEsRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDaEYsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSw2QkFBNkIsRUFBRSxNQUFNLGdDQUFnQyxDQUFDO0FBQy9FLE9BQU8sRUFDTCwyQkFBMkIsRUFDM0IsaUJBQWlCLEVBQ2pCLGdCQUFnQixFQUNoQixpQkFBaUIsRUFDakIsb0JBQW9CLEVBQ3BCLGtCQUFrQixHQUNuQixNQUFNLGtDQUFrQyxDQUFDO0FBQzFDLE9BQU8sRUFBRSwwQ0FBMEMsRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQzdFLE9BQU8sRUFBRSx5Q0FBeUMsRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQzVFLE9BQU8sRUFBRSxxQkFBcUIsRUFBRSx5QkFBeUIsRUFBRSxNQUFNLDJDQUEyQyxDQUFDO0FBQzdHLE9BQU8sRUFBRSwrQkFBK0IsRUFBRSxNQUFNLGtEQUFrRCxDQUFDO0FBQ25HLE9BQU8sRUFBRSxxQkFBcUIsRUFBRSxNQUFNLHVDQUF1QyxDQUFDO0FBQzlFLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLHNDQUFzQyxDQUFDO0FBQzVFLE9BQU8sRUFBRSxxQkFBcUIsRUFBRSxNQUFNLHVDQUF1QyxDQUFDO0FBQzlFLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxvQkFBb0IsRUFBRSxNQUFNLHNDQUFzQyxDQUFDO0FBQzlGLE9BQU8sRUFBRSx3QkFBd0IsRUFBRSxNQUFNLDBDQUEwQyxDQUFDO0FBQ3BGLE9BQU8sRUFBRSxzQkFBc0IsRUFBRSxNQUFNLHdDQUF3QyxDQUFDO0FBQ2hGLE9BQU8sRUFDTCw2QkFBNkIsRUFDN0Isc0NBQXNDLEVBQ3RDLG1DQUFtQyxHQUNwQyxNQUFNLGFBQWEsQ0FBQzs7OztBQWtCckIsTUFBTSxPQUFPLDhCQUE4QjtJQUN6QyxNQUFNLENBQUMsT0FBTztRQUNaLE9BQU87WUFDTCxRQUFRLEVBQUUsOEJBQThCO1lBQ3hDLFNBQVMsRUFBRTtnQkFDVDtvQkFDRSxPQUFPLEVBQUUsNEJBQTRCO29CQUNyQyxRQUFRLEVBQUUsMENBQTBDO29CQUNwRCxLQUFLLEVBQUUsSUFBSTtpQkFDWjtnQkFDRDtvQkFDRSxPQUFPLEVBQUUsaUJBQWlCO29CQUMxQixRQUFRLEVBQUUseUNBQXlDO29CQUNuRCxLQUFLLEVBQUUsSUFBSTtpQkFDWjtnQkFDRDtvQkFDRSxPQUFPLEVBQUUsZ0JBQWdCO29CQUN6QixRQUFRLEVBQUUsb0JBQW9CO2lCQUMvQjtnQkFDRDtvQkFDRSxPQUFPLEVBQUUscUJBQXFCO29CQUM5QixRQUFRLEVBQUUseUJBQXlCO2lCQUNwQztnQkFDRDtvQkFDRSxPQUFPLEVBQUUsMkJBQTJCO29CQUNwQyxRQUFRLEVBQUUsK0JBQStCO2lCQUMxQztnQkFDRDtvQkFDRSxPQUFPLEVBQUUsZ0JBQWdCO29CQUN6QixRQUFRLEVBQUUsb0JBQW9CO2lCQUMvQjtnQkFDRDtvQkFDRSxPQUFPLEVBQUUsb0JBQW9CO29CQUM3QixRQUFRLEVBQUUsd0JBQXdCO2lCQUNuQztnQkFDRDtvQkFDRSxPQUFPLEVBQUUsaUJBQWlCO29CQUMxQixRQUFRLEVBQUUscUJBQXFCO2lCQUNoQztnQkFDRDtvQkFDRSxPQUFPLEVBQUUsa0JBQWtCO29CQUMzQixRQUFRLEVBQUUsc0JBQXNCO2lCQUNqQztnQkFDRDtvQkFDRSxPQUFPLEVBQUUsaUJBQWlCO29CQUMxQixRQUFRLEVBQUUscUJBQXFCO2lCQUNoQztnQkFDRCxJQUFJO2dCQUNKLHVDQUF1QztnQkFDdkMsd0NBQXdDO2dCQUN4QyxLQUFLO2FBQ047U0FDRixDQUFDO0lBQ0osQ0FBQztJQUVEOztPQUVHO0lBQ0gsWUFBaUUsU0FBZ0IsSUFBRyxDQUFDOzhHQTFEMUUsOEJBQThCLGtCQTBEVCwrQkFBK0I7K0dBMURwRCw4QkFBOEI7K0dBQTlCLDhCQUE4QixZQWR2QyxpQkFBaUIsQ0FBQyxRQUFRLENBQUM7Z0JBQ3pCLE9BQU8sRUFBRTtvQkFDUCxtQ0FBbUM7aUJBQ3BDO2dCQUNELFNBQVMsRUFBRTtvQkFDVCxzQkFBc0IsRUFBRSw2QkFBNkI7b0JBQ3JELDRCQUE0QixFQUFFLHNDQUFzQztpQkFDckU7YUFDRixDQUFDO1lBQ0YsWUFBWSxDQUFDLFFBQVEsQ0FBQyw2QkFBNkIsQ0FBQzs7MkZBSzNDLDhCQUE4QjtrQkFoQjFDLFFBQVE7bUJBQUM7b0JBQ1IsT0FBTyxFQUFFO3dCQUNQLGlCQUFpQixDQUFDLFFBQVEsQ0FBQzs0QkFDekIsT0FBTyxFQUFFO2dDQUNQLG1DQUFtQzs2QkFDcEM7NEJBQ0QsU0FBUyxFQUFFO2dDQUNULHNCQUFzQixFQUFFLDZCQUE2QjtnQ0FDckQsNEJBQTRCLEVBQUUsc0NBQXNDOzZCQUNyRTt5QkFDRixDQUFDO3dCQUNGLFlBQVksQ0FBQyxRQUFRLENBQUMsNkJBQTZCLENBQUM7cUJBQ3JEO29CQUNELE9BQU8sRUFBRSxFQUFFO29CQUNYLFlBQVksRUFBRSxFQUFFO2lCQUNqQjs7MEJBMkRjLFFBQVE7OzBCQUFJLE1BQU07MkJBQUMsK0JBQStCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVhQX01FTlVfUFJPVklERVIgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2NvbW1vbic7XG5pbXBvcnQgeyBBWFBfRU5USVRZX0RFRklOSVRJT05fTE9BREVSIH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9sYXlvdXQvZW50aXR5JztcbmltcG9ydCB7IEFYUFdvcmtmbG93TW9kdWxlIH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS93b3JrZmxvdyc7XG5pbXBvcnQgeyBJbmplY3QsIE1vZHVsZVdpdGhQcm92aWRlcnMsIE5nTW9kdWxlLCBPcHRpb25hbCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgUm91dGVyTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcbmltcG9ydCB7IEFYTUFwcGxjYXRpb25NYW5hZ2VtZW50cm91dGVzIH0gZnJvbSAnLi9hcHBsaWNhdGlvbi1tYW5hZ2VtZW50LnJvdXRlJztcbmltcG9ydCB7XG4gIEFYTUFwcGxpY2F0aW9uTW9kdWxlU2VydmljZSxcbiAgQVhNRWRpdGlvblNlcnZpY2UsXG4gIEFYTUVudGl0eVNlcnZpY2UsXG4gIEFYTUZlYXR1cmVTZXJ2aWNlLFxuICBBWE1QZXJtaXNzaW9uU2VydmljZSxcbiAgQVhNUHJvcGVydHlTZXJ2aWNlLFxufSBmcm9tICcuL2FwcGxpY2F0aW9uLW1hbmFnZW1lbnQuc2VydmljZSc7XG5pbXBvcnQgeyBBWE1BcHBsaWNhdGlvbk1hbmFnZW1lbnRNb2R1bGVFbnRpdHlMb2FkZXIgfSBmcm9tICcuL2VudGl0eS5sb2FkZXInO1xuaW1wb3J0IHsgQVhNQXBwbGljYXRpb25NYW5hZ21lbnRNb2R1bGVNZW51UHJvdmlkZXIgfSBmcm9tICcuL21lbnUucHJvdmlkZXInO1xuaW1wb3J0IHsgQVhNQXBwbGljYXRpb25TZXJ2aWNlLCBBWE1BcHBsaWNhdGlvblNlcnZpY2VJbXBsIH0gZnJvbSAnLi9zZXJ2aWNlcy9hcHBsaWNhdGlvbi1tYW5hZ2VtZW50LnNlcnZpY2UnO1xuaW1wb3J0IHsgQVhNQXBwbGljYXRpb25Nb2R1bGVTZXJ2aWNlSW1wbCB9IGZyb20gJy4vc2VydmljZXMvYXBwbGljYXRpb24tbW9kdWxlLW1hbmFnZW1lbnQuc2VydmljZSc7XG5pbXBvcnQgeyBBWE1FZGl0aW9uU2VydmljZUltcGwgfSBmcm9tICcuL3NlcnZpY2VzL2VkaXRpb24tbWFuYWdlbWVudC5zZXJ2aWNlJztcbmltcG9ydCB7IEFYTUVudGl0eVNlcnZpY2VJbXBsIH0gZnJvbSAnLi9zZXJ2aWNlcy9lbnRpdHktbWFuYWdlbWVudC5zZXJ2aWNlJztcbmltcG9ydCB7IEFYTUZlYXR1cmVTZXJ2aWNlSW1wbCB9IGZyb20gJy4vc2VydmljZXMvZmVhdHVyZS1tYW5hZ2VtZW50LnNlcnZpY2UnO1xuaW1wb3J0IHsgQVhNTW9kdWxlU2VydmljZSwgQVhNTW9kdWxlU2VydmljZUltcGwgfSBmcm9tICcuL3NlcnZpY2VzL21vZHVsZS1tYW5hZ2VtZW50LnNlcnZpY2UnO1xuaW1wb3J0IHsgQVhNUGVybWlzc2lvblNlcnZpY2VJbXBsIH0gZnJvbSAnLi9zZXJ2aWNlcy9wZXJtaXNzaW9uLW1hbmFnZW1lbnQuc2VydmljZSc7XG5pbXBvcnQgeyBBWE1Qcm9wZXJ0eVNlcnZpY2VJbXBsIH0gZnJvbSAnLi9zZXJ2aWNlcy9wcm9wZXJ0eS1tYW5hZ2VtZW50LnNlcnZpY2UnO1xuaW1wb3J0IHtcbiAgQVhQQ3JlYXRlTW9kdWxlRW50aXR5V29ya2Zsb3csXG4gIEFYUFNob3dNb2R1bGVFbnRpdHlEZXRhaWxzVmlld1dvcmtmbG93LFxuICBBWFBTaG93TW9kdWxlRW50aXR5RGV0YWlsVmlld0FjdGlvbixcbn0gZnJvbSAnLi93b3JrZmxvd3MnO1xuXG5ATmdNb2R1bGUoe1xuICBpbXBvcnRzOiBbXG4gICAgQVhQV29ya2Zsb3dNb2R1bGUuZm9yQ2hpbGQoe1xuICAgICAgYWN0aW9uczoge1xuICAgICAgICBBWFBTaG93TW9kdWxlRW50aXR5RGV0YWlsVmlld0FjdGlvbixcbiAgICAgIH0sXG4gICAgICB3b3JrZmxvd3M6IHtcbiAgICAgICAgJ2NyZWF0ZS1tb2R1bGUtZW50aXR5JzogQVhQQ3JlYXRlTW9kdWxlRW50aXR5V29ya2Zsb3csXG4gICAgICAgICdzaG93LW1vZHVsZS1lbnRpdHktZGV0YWlscyc6IEFYUFNob3dNb2R1bGVFbnRpdHlEZXRhaWxzVmlld1dvcmtmbG93LFxuICAgICAgfSxcbiAgICB9KSxcbiAgICBSb3V0ZXJNb2R1bGUuZm9yQ2hpbGQoQVhNQXBwbGNhdGlvbk1hbmFnZW1lbnRyb3V0ZXMpLFxuICBdLFxuICBleHBvcnRzOiBbXSxcbiAgZGVjbGFyYXRpb25zOiBbXSxcbn0pXG5leHBvcnQgY2xhc3MgQVhNQXBwbGljYXRpb25NYW5hZ2VtZW50TW9kdWxlIHtcbiAgc3RhdGljIGZvclJvb3QoKTogTW9kdWxlV2l0aFByb3ZpZGVyczxBWE1BcHBsaWNhdGlvbk1hbmFnZW1lbnRNb2R1bGU+IHtcbiAgICByZXR1cm4ge1xuICAgICAgbmdNb2R1bGU6IEFYTUFwcGxpY2F0aW9uTWFuYWdlbWVudE1vZHVsZSxcbiAgICAgIHByb3ZpZGVyczogW1xuICAgICAgICB7XG4gICAgICAgICAgcHJvdmlkZTogQVhQX0VOVElUWV9ERUZJTklUSU9OX0xPQURFUixcbiAgICAgICAgICB1c2VDbGFzczogQVhNQXBwbGljYXRpb25NYW5hZ2VtZW50TW9kdWxlRW50aXR5TG9hZGVyLFxuICAgICAgICAgIG11bHRpOiB0cnVlLFxuICAgICAgICB9LFxuICAgICAgICB7XG4gICAgICAgICAgcHJvdmlkZTogQVhQX01FTlVfUFJPVklERVIsXG4gICAgICAgICAgdXNlQ2xhc3M6IEFYTUFwcGxpY2F0aW9uTWFuYWdtZW50TW9kdWxlTWVudVByb3ZpZGVyLFxuICAgICAgICAgIG11bHRpOiB0cnVlLFxuICAgICAgICB9LFxuICAgICAgICB7XG4gICAgICAgICAgcHJvdmlkZTogQVhNTW9kdWxlU2VydmljZSxcbiAgICAgICAgICB1c2VDbGFzczogQVhNTW9kdWxlU2VydmljZUltcGwsXG4gICAgICAgIH0sXG4gICAgICAgIHtcbiAgICAgICAgICBwcm92aWRlOiBBWE1BcHBsaWNhdGlvblNlcnZpY2UsXG4gICAgICAgICAgdXNlQ2xhc3M6IEFYTUFwcGxpY2F0aW9uU2VydmljZUltcGwsXG4gICAgICAgIH0sXG4gICAgICAgIHtcbiAgICAgICAgICBwcm92aWRlOiBBWE1BcHBsaWNhdGlvbk1vZHVsZVNlcnZpY2UsXG4gICAgICAgICAgdXNlQ2xhc3M6IEFYTUFwcGxpY2F0aW9uTW9kdWxlU2VydmljZUltcGwsXG4gICAgICAgIH0sXG4gICAgICAgIHtcbiAgICAgICAgICBwcm92aWRlOiBBWE1FbnRpdHlTZXJ2aWNlLFxuICAgICAgICAgIHVzZUNsYXNzOiBBWE1FbnRpdHlTZXJ2aWNlSW1wbCxcbiAgICAgICAgfSxcbiAgICAgICAge1xuICAgICAgICAgIHByb3ZpZGU6IEFYTVBlcm1pc3Npb25TZXJ2aWNlLFxuICAgICAgICAgIHVzZUNsYXNzOiBBWE1QZXJtaXNzaW9uU2VydmljZUltcGwsXG4gICAgICAgIH0sXG4gICAgICAgIHtcbiAgICAgICAgICBwcm92aWRlOiBBWE1GZWF0dXJlU2VydmljZSxcbiAgICAgICAgICB1c2VDbGFzczogQVhNRmVhdHVyZVNlcnZpY2VJbXBsLFxuICAgICAgICB9LFxuICAgICAgICB7XG4gICAgICAgICAgcHJvdmlkZTogQVhNUHJvcGVydHlTZXJ2aWNlLFxuICAgICAgICAgIHVzZUNsYXNzOiBBWE1Qcm9wZXJ0eVNlcnZpY2VJbXBsLFxuICAgICAgICB9LFxuICAgICAgICB7XG4gICAgICAgICAgcHJvdmlkZTogQVhNRWRpdGlvblNlcnZpY2UsXG4gICAgICAgICAgdXNlQ2xhc3M6IEFYTUVkaXRpb25TZXJ2aWNlSW1wbCxcbiAgICAgICAgfSxcbiAgICAgICAgLy8ge1xuICAgICAgICAvLyAgIHByb3ZpZGU6IEFYUE1vZHVsZURlc2lnbmVyU2VydmljZSxcbiAgICAgICAgLy8gICB1c2VDbGFzczogQVhNTW9kdWxlRGVzaWduZXJTZXJ2aWNlLFxuICAgICAgICAvLyB9LFxuICAgICAgXSxcbiAgICB9O1xuICB9XG5cbiAgLyoqXG4gICAqIEBpZ25vcmVcbiAgICovXG4gIGNvbnN0cnVjdG9yKEBPcHRpb25hbCgpIEBJbmplY3QoJ0FYUF9SRUdJU1RFUl9NT0RVTEVTX0VOVElUSUVTJykgaW5zdGFuY2VzOiBhbnlbXSkge31cbn1cbiJdfQ==
|
@@ -1,8 +1,9 @@
|
|
1
1
|
export const APPLICATION_SOURCE_NAME = 'application-management.application';
|
2
|
+
export const APPLICATION_MODULE_SOURCE_NAME = 'application-management.application-module';
|
2
3
|
export const MODULE_SOURCE_NAME = 'application-management.module';
|
3
4
|
export const ENTITY_SOURCE_NAME = 'application-management.entity';
|
4
5
|
export const PERMISSION_SOURCE_NAME = 'application-management.permission';
|
5
6
|
export const FEATURE_SOURCE_NAME = 'application-management.feature';
|
6
7
|
export const EDITION_SOURCE_NAME = 'application-management.edition';
|
7
8
|
export const PROPERTY_SOURCE_NAME = 'application-management.property';
|
8
|
-
//# sourceMappingURL=data:application/json;base64,
|
9
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBwbGljYXRpb24tbWFuYWdlbWVudC5zb3VyY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL21vZHVsZXMvYXBwbGljYXRpb24tbWFuYWdlbWVudC9zcmMvbGliL2FwcGxpY2F0aW9uLW1hbmFnZW1lbnQuc291cmNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sQ0FBQyxNQUFNLHVCQUF1QixHQUFHLG9DQUFvQyxDQUFDO0FBQzVFLE1BQU0sQ0FBQyxNQUFNLDhCQUE4QixHQUFHLDJDQUEyQyxDQUFDO0FBQzFGLE1BQU0sQ0FBQyxNQUFNLGtCQUFrQixHQUFHLCtCQUErQixDQUFDO0FBQ2xFLE1BQU0sQ0FBQyxNQUFNLGtCQUFrQixHQUFHLCtCQUErQixDQUFDO0FBQ2xFLE1BQU0sQ0FBQyxNQUFNLHNCQUFzQixHQUFHLG1DQUFtQyxDQUFDO0FBQzFFLE1BQU0sQ0FBQyxNQUFNLG1CQUFtQixHQUFHLGdDQUFnQyxDQUFDO0FBQ3BFLE1BQU0sQ0FBQyxNQUFNLG1CQUFtQixHQUFHLGdDQUFnQyxDQUFDO0FBQ3BFLE1BQU0sQ0FBQyxNQUFNLG9CQUFvQixHQUFHLGlDQUFpQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGNvbnN0IEFQUExJQ0FUSU9OX1NPVVJDRV9OQU1FID0gJ2FwcGxpY2F0aW9uLW1hbmFnZW1lbnQuYXBwbGljYXRpb24nO1xuZXhwb3J0IGNvbnN0IEFQUExJQ0FUSU9OX01PRFVMRV9TT1VSQ0VfTkFNRSA9ICdhcHBsaWNhdGlvbi1tYW5hZ2VtZW50LmFwcGxpY2F0aW9uLW1vZHVsZSc7XG5leHBvcnQgY29uc3QgTU9EVUxFX1NPVVJDRV9OQU1FID0gJ2FwcGxpY2F0aW9uLW1hbmFnZW1lbnQubW9kdWxlJztcbmV4cG9ydCBjb25zdCBFTlRJVFlfU09VUkNFX05BTUUgPSAnYXBwbGljYXRpb24tbWFuYWdlbWVudC5lbnRpdHknO1xuZXhwb3J0IGNvbnN0IFBFUk1JU1NJT05fU09VUkNFX05BTUUgPSAnYXBwbGljYXRpb24tbWFuYWdlbWVudC5wZXJtaXNzaW9uJztcbmV4cG9ydCBjb25zdCBGRUFUVVJFX1NPVVJDRV9OQU1FID0gJ2FwcGxpY2F0aW9uLW1hbmFnZW1lbnQuZmVhdHVyZSc7XG5leHBvcnQgY29uc3QgRURJVElPTl9TT1VSQ0VfTkFNRSA9ICdhcHBsaWNhdGlvbi1tYW5hZ2VtZW50LmVkaXRpb24nO1xuZXhwb3J0IGNvbnN0IFBST1BFUlRZX1NPVVJDRV9OQU1FID0gJ2FwcGxpY2F0aW9uLW1hbmFnZW1lbnQucHJvcGVydHknO1xuIl19
|
@@ -0,0 +1,6 @@
|
|
1
|
+
export const AXMApplicationManagementModuleConst = {
|
2
|
+
moduleName: 'ApplicationManagement',
|
3
|
+
moduleRoute: 'application-management',
|
4
|
+
i18n: 'platform-management',
|
5
|
+
};
|
6
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29uc3QuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL21vZHVsZXMvYXBwbGljYXRpb24tbWFuYWdlbWVudC9zcmMvbGliL2NvbnN0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE1BQU0sQ0FBQyxNQUFNLG1DQUFtQyxHQUFHO0lBQ2pELFVBQVUsRUFBRSx1QkFBdUI7SUFDbkMsV0FBVyxFQUFFLHdCQUF3QjtJQUNyQyxJQUFJLEVBQUUscUJBQXFCO0NBQzVCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgY29uc3QgQVhNQXBwbGljYXRpb25NYW5hZ2VtZW50TW9kdWxlQ29uc3QgPSB7XG4gIG1vZHVsZU5hbWU6ICdBcHBsaWNhdGlvbk1hbmFnZW1lbnQnLFxuICBtb2R1bGVSb3V0ZTogJ2FwcGxpY2F0aW9uLW1hbmFnZW1lbnQnLFxuICBpMThuOiAncGxhdGZvcm0tbWFuYWdlbWVudCcsXG59O1xuIl19
|