@acorex/modules 18.1.6 → 18.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/application-management/lib/application-management.service.d.ts +1 -8
- package/application-management/lib/application-management.source.d.ts +1 -0
- package/application-management/lib/menu.provider.d.ts +1 -0
- package/application-management/lib/services/application-management.service.d.ts +10 -0
- package/application-management/lib/services/application-module-management.service.d.ts +10 -0
- package/application-management/lib/services/edition-management.service.d.ts +10 -0
- package/application-management/lib/services/entity-management.service.d.ts +10 -0
- package/application-management/lib/services/feature-management.service.d.ts +10 -0
- package/application-management/lib/services/module-management.service.d.ts +10 -0
- package/application-management/lib/services/permission-management.service.d.ts +10 -0
- package/application-management/lib/services/property-management.service.d.ts +10 -0
- package/auth/lib/menu.provider.d.ts +1 -1
- package/conversation/README.md +3 -0
- package/conversation/index.d.ts +14 -0
- package/conversation/lib/conversation.module.d.ts +11 -0
- package/conversation/lib/entities/chat/chat.module.d.ts +23 -0
- package/conversation/lib/entities/chat/chat.type.d.ts +21 -0
- package/conversation/lib/entities/chat/components/chat-item/chat-item.component.d.ts +16 -0
- package/conversation/lib/entities/chat/components/chat-item-footer/chat-item-footer.component.d.ts +5 -0
- package/conversation/lib/entities/chat/components/chat-item-header/chat-item-header.component.d.ts +5 -0
- package/conversation/lib/entities/chat/components/chat-items/chat-items.component.d.ts +6 -0
- package/conversation/lib/entities/chat/components/chat-preview/chat-preview.component.d.ts +28 -0
- package/conversation/lib/entities/chat/pages/chat/chat.component.d.ts +5 -0
- package/conversation/lib/entities/comments/comment.module.d.ts +25 -0
- package/conversation/lib/entities/comments/comments.service.d.ts +13 -0
- package/conversation/lib/entities/comments/comments.type.d.ts +74 -0
- package/conversation/lib/entities/comments/pages/comment-list-view.component.d.ts +66 -0
- package/conversation/lib/entities/comments/pages/comment-lookup-popup.component.d.ts +10 -0
- package/converstion-test/README.md +4 -0
- package/converstion-test/index.d.ts +1 -0
- package/converstion-test/lib/converstion-test.module.d.ts +6 -0
- package/esm2022/application-management/lib/application-management.module.mjs +46 -1
- package/esm2022/application-management/lib/application-management.service.mjs +2 -18
- package/esm2022/application-management/lib/application-management.source.mjs +2 -1
- package/esm2022/application-management/lib/entities/application-module.entity.mjs +10 -13
- package/esm2022/application-management/lib/entities/applications.entity.mjs +8 -8
- package/esm2022/application-management/lib/entities/edition.entity.mjs +10 -13
- package/esm2022/application-management/lib/entities/entity.entity.mjs +10 -13
- package/esm2022/application-management/lib/entities/feature.entity.mjs +10 -13
- package/esm2022/application-management/lib/entities/modules.entity.mjs +12 -15
- package/esm2022/application-management/lib/entities/permission.entity.mjs +10 -13
- package/esm2022/application-management/lib/entities/property.entity.mjs +10 -13
- package/esm2022/application-management/lib/layouts/module-entity-detail-view/module-entity-detail-view.component.mjs +5 -4
- package/esm2022/application-management/lib/menu.provider.mjs +10 -4
- package/esm2022/application-management/lib/services/application-management.service.mjs +17 -0
- package/esm2022/application-management/lib/services/application-module-management.service.mjs +17 -0
- package/esm2022/application-management/lib/services/edition-management.service.mjs +17 -0
- package/esm2022/application-management/lib/services/entity-management.service.mjs +17 -0
- package/esm2022/application-management/lib/services/feature-management.service.mjs +17 -0
- package/esm2022/application-management/lib/services/module-management.service.mjs +17 -0
- package/esm2022/application-management/lib/services/permission-management.service.mjs +17 -0
- package/esm2022/application-management/lib/services/property-management.service.mjs +17 -0
- package/esm2022/auth/lib/account/account.module.mjs +6 -2
- package/esm2022/auth/lib/account/profile/profile-slot.component.mjs +3 -3
- package/esm2022/auth/lib/menu.provider.mjs +17 -14
- package/esm2022/conversation/acorex-modules-conversation.mjs +5 -0
- package/esm2022/conversation/index.mjs +15 -0
- package/esm2022/conversation/lib/conversation.module.mjs +22 -0
- package/esm2022/conversation/lib/entities/chat/chat.module.mjs +90 -0
- package/esm2022/conversation/lib/entities/chat/chat.type.mjs +2 -0
- package/esm2022/conversation/lib/entities/chat/components/chat-item/chat-item.component.mjs +35 -0
- package/esm2022/conversation/lib/entities/chat/components/chat-item-footer/chat-item-footer.component.mjs +13 -0
- package/esm2022/conversation/lib/entities/chat/components/chat-item-header/chat-item-header.component.mjs +15 -0
- package/esm2022/conversation/lib/entities/chat/components/chat-items/chat-items.component.mjs +15 -0
- package/esm2022/conversation/lib/entities/chat/components/chat-preview/chat-preview.component.mjs +237 -0
- package/esm2022/conversation/lib/entities/chat/pages/chat/chat.component.mjs +15 -0
- package/esm2022/conversation/lib/entities/comments/comment.module.mjs +100 -0
- package/esm2022/conversation/lib/entities/comments/comments.service.mjs +20 -0
- package/esm2022/conversation/lib/entities/comments/comments.type.mjs +2 -0
- package/esm2022/conversation/lib/entities/comments/pages/comment-list-view.component.mjs +393 -0
- package/esm2022/conversation/lib/entities/comments/pages/comment-lookup-popup.component.mjs +56 -0
- package/esm2022/converstion-test/acorex-modules-converstion-test.mjs +5 -0
- package/esm2022/converstion-test/index.mjs +2 -0
- package/esm2022/converstion-test/lib/converstion-test.module.mjs +16 -0
- package/esm2022/form-template-management/acorex-modules-form-template-management.mjs +5 -0
- package/esm2022/form-template-management/index.mjs +2 -0
- package/esm2022/form-template-management/lib/const.mjs +8 -0
- package/esm2022/form-template-management/lib/entities/category/category.entity.mjs +241 -0
- package/esm2022/form-template-management/lib/entities/category/category.module.mjs +28 -0
- package/esm2022/form-template-management/lib/entities/category/category.service.mjs +17 -0
- package/esm2022/form-template-management/lib/entities/category/category.types.mjs +2 -0
- package/esm2022/form-template-management/lib/entities/category/index.mjs +5 -0
- package/esm2022/form-template-management/lib/entities/template/index.mjs +5 -0
- package/esm2022/form-template-management/lib/entities/template/template.entity.mjs +241 -0
- package/esm2022/form-template-management/lib/entities/template/template.module.mjs +28 -0
- package/esm2022/form-template-management/lib/entities/template/template.service.mjs +17 -0
- package/esm2022/form-template-management/lib/entities/template/template.types.mjs +2 -0
- package/esm2022/form-template-management/lib/entity.provider.mjs +25 -0
- package/esm2022/form-template-management/lib/form-template-management.module.mjs +77 -0
- package/esm2022/form-template-management/lib/menu.provider.mjs +45 -0
- package/esm2022/form-template-management/lib/pages/designer/designer.page.mjs +24 -0
- package/esm2022/localization-management/acorex-modules-localization-management.mjs +5 -0
- package/esm2022/localization-management/index.mjs +8 -0
- package/esm2022/localization-management/lib/culture/culture.entity.mjs +239 -0
- package/esm2022/localization-management/lib/culture/culture.service.mjs +17 -0
- package/esm2022/localization-management/lib/culture/culture.types.mjs +2 -0
- package/esm2022/localization-management/lib/culture/index.mjs +4 -0
- package/esm2022/localization-management/lib/entity.loader.mjs +36 -0
- package/esm2022/localization-management/lib/language/index.mjs +4 -0
- package/esm2022/localization-management/lib/language/language-slot/language-slot.component.mjs +30 -0
- package/esm2022/localization-management/lib/language/language.entity.mjs +239 -0
- package/esm2022/localization-management/lib/language/language.service.mjs +17 -0
- package/esm2022/localization-management/lib/language/language.types.mjs +2 -0
- package/esm2022/localization-management/lib/localization-management.module.mjs +99 -0
- package/esm2022/localization-management/lib/localization-management.source.mjs +4 -0
- package/esm2022/localization-management/lib/localization-store.service.mjs +34 -0
- package/esm2022/localization-management/lib/menu.provider.mjs +46 -0
- package/esm2022/localization-management/lib/time-zone/index.mjs +4 -0
- package/esm2022/localization-management/lib/time-zone/time-zone.entity.mjs +256 -0
- package/esm2022/localization-management/lib/time-zone/time-zone.service.mjs +17 -0
- package/esm2022/localization-management/lib/time-zone/time-zone.types.mjs +2 -0
- package/esm2022/notification-management/lib/admin-notification-slot/admin-notification-item/admin-notification-item.component.mjs +3 -3
- package/esm2022/notification-management/lib/admin-notification-slot/admin-notification-slot/admin-notification-slot.component.mjs +3 -3
- package/esm2022/notification-management/lib/entities/my-notification.mjs +8 -15
- package/esm2022/notification-management/lib/entities/notification-channel.entity.mjs +3 -3
- package/esm2022/notification-management/lib/menu.provider.mjs +13 -12
- package/esm2022/notification-management/lib/notification-management.module.mjs +5 -5
- package/esm2022/platform-management/index.mjs +2 -3
- package/esm2022/platform-management/lib/common/common.module.mjs +65 -0
- package/esm2022/platform-management/lib/common/common.source.mjs +5 -0
- package/esm2022/platform-management/lib/common/country/country-datasource.provider.mjs +27 -0
- package/esm2022/platform-management/lib/common/country/country.entity.mjs +696 -0
- package/esm2022/platform-management/lib/common/country/country.service.mjs +17 -0
- package/esm2022/platform-management/lib/common/country/country.types.mjs +2 -0
- package/esm2022/platform-management/lib/common/country/index.mjs +4 -0
- package/esm2022/platform-management/lib/common/currency/currency.entity.mjs +283 -0
- package/esm2022/platform-management/lib/common/currency/currency.service.mjs +17 -0
- package/esm2022/platform-management/lib/common/currency/currency.types.mjs +2 -0
- package/esm2022/platform-management/lib/common/currency/index.mjs +4 -0
- package/esm2022/platform-management/lib/common/entity.loader.mjs +36 -0
- package/esm2022/platform-management/lib/common/index.mjs +5 -0
- package/esm2022/platform-management/lib/common/province/index.mjs +4 -0
- package/esm2022/platform-management/lib/common/province/province.entity.mjs +307 -0
- package/esm2022/platform-management/lib/common/province/province.service.mjs +17 -0
- package/esm2022/platform-management/lib/common/province/province.types.mjs +2 -0
- package/esm2022/platform-management/lib/global-variables/entities/global-variable.entity.mjs +54 -4
- package/esm2022/platform-management/lib/menu.provider.mjs +37 -15
- package/esm2022/platform-management/lib/platform-management.module.mjs +12 -33
- package/esm2022/template-management/index.mjs +2 -2
- package/esm2022/template-management/lib/entities/category.entity.mjs +34 -16
- package/esm2022/template-management/lib/entities/template-variable.entity.mjs +103 -102
- package/esm2022/template-management/lib/entities/text-template.entity.mjs +28 -2
- package/esm2022/template-management/lib/entity.provider.mjs +32 -0
- package/esm2022/template-management/lib/menu.provider.mjs +14 -8
- package/esm2022/template-management/lib/template-management.module.mjs +4 -4
- package/fesm2022/{acorex-modules-application-management-module-designer.component-BCaCCEXO.mjs → acorex-modules-application-management-module-designer.component-CaR_HZfL.mjs} +3 -3
- package/fesm2022/{acorex-modules-application-management-module-designer.component-BCaCCEXO.mjs.map → acorex-modules-application-management-module-designer.component-CaR_HZfL.mjs.map} +1 -1
- package/fesm2022/acorex-modules-application-management.mjs +399 -283
- package/fesm2022/acorex-modules-application-management.mjs.map +1 -1
- package/fesm2022/{acorex-modules-auth-acorex-modules-auth-B0aeYVeJ.mjs → acorex-modules-auth-acorex-modules-auth-BVOt-gis.mjs} +30 -23
- package/fesm2022/acorex-modules-auth-acorex-modules-auth-BVOt-gis.mjs.map +1 -0
- package/fesm2022/{acorex-modules-auth-app-chooser.component-4b6b3ttW.mjs → acorex-modules-auth-app-chooser.component-DhPEtLuK.mjs} +2 -2
- package/fesm2022/{acorex-modules-auth-app-chooser.component-4b6b3ttW.mjs.map → acorex-modules-auth-app-chooser.component-DhPEtLuK.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-auth-login.module-A7u1YYeo.mjs → acorex-modules-auth-login.module-sFVL-lYB.mjs} +4 -4
- package/fesm2022/{acorex-modules-auth-login.module-A7u1YYeo.mjs.map → acorex-modules-auth-login.module-sFVL-lYB.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-auth-master.layout--UllrmW0.mjs → acorex-modules-auth-master.layout-Bnt5qiio.mjs} +2 -2
- package/fesm2022/{acorex-modules-auth-master.layout--UllrmW0.mjs.map → acorex-modules-auth-master.layout-Bnt5qiio.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-auth-password.component-Dv0VXzh_.mjs → acorex-modules-auth-password.component-BXL-aLTx.mjs} +2 -2
- package/fesm2022/{acorex-modules-auth-password.component-Dv0VXzh_.mjs.map → acorex-modules-auth-password.component-BXL-aLTx.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-auth-password.component-BjqQ-qVo.mjs → acorex-modules-auth-password.component-ClaRp38G.mjs} +2 -2
- package/fesm2022/{acorex-modules-auth-password.component-BjqQ-qVo.mjs.map → acorex-modules-auth-password.component-ClaRp38G.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-auth-routes-C4eNPru3.mjs → acorex-modules-auth-routes-MDneFw2m.mjs} +2 -2
- package/fesm2022/{acorex-modules-auth-routes-C4eNPru3.mjs.map → acorex-modules-auth-routes-MDneFw2m.mjs.map} +1 -1
- package/fesm2022/{acorex-modules-auth-two-factor.module-C6V_pb_Q.mjs → acorex-modules-auth-two-factor.module-BHulbf0N.mjs} +2 -2
- package/fesm2022/{acorex-modules-auth-two-factor.module-C6V_pb_Q.mjs.map → acorex-modules-auth-two-factor.module-BHulbf0N.mjs.map} +1 -1
- package/fesm2022/acorex-modules-auth.mjs +1 -1
- package/fesm2022/acorex-modules-conversation.mjs +952 -0
- package/fesm2022/acorex-modules-conversation.mjs.map +1 -0
- package/fesm2022/acorex-modules-converstion-test.mjs +23 -0
- package/fesm2022/acorex-modules-converstion-test.mjs.map +1 -0
- package/fesm2022/{acorex-modules-form-management-designer.page-SoPH2V7i.mjs → acorex-modules-form-template-management-designer.page-DC18KFvK.mjs} +6 -6
- package/fesm2022/acorex-modules-form-template-management-designer.page-DC18KFvK.mjs.map +1 -0
- package/fesm2022/acorex-modules-form-template-management.mjs +713 -0
- package/fesm2022/acorex-modules-form-template-management.mjs.map +1 -0
- package/fesm2022/acorex-modules-localization-management.mjs +1019 -0
- package/fesm2022/acorex-modules-localization-management.mjs.map +1 -0
- package/fesm2022/acorex-modules-notification-management.mjs +29 -35
- package/fesm2022/acorex-modules-notification-management.mjs.map +1 -1
- package/fesm2022/acorex-modules-platform-management.mjs +1430 -214
- package/fesm2022/acorex-modules-platform-management.mjs.map +1 -1
- package/fesm2022/acorex-modules-template-management.mjs +187 -141
- package/fesm2022/acorex-modules-template-management.mjs.map +1 -1
- package/form-template-management/README.md +4 -0
- package/form-template-management/index.d.ts +1 -0
- package/form-template-management/lib/const.d.ts +7 -0
- package/form-template-management/lib/entities/category/category.entity.d.ts +3 -0
- package/form-template-management/lib/entities/category/category.module.d.ts +6 -0
- package/form-template-management/lib/entities/category/category.service.d.ts +10 -0
- package/form-template-management/lib/entities/category/category.types.d.ts +5 -0
- package/form-template-management/lib/entities/category/index.d.ts +4 -0
- package/form-template-management/lib/entities/template/index.d.ts +4 -0
- package/form-template-management/lib/entities/template/template.entity.d.ts +3 -0
- package/form-template-management/lib/entities/template/template.module.d.ts +6 -0
- package/form-template-management/lib/entities/template/template.service.d.ts +10 -0
- package/form-template-management/lib/entities/template/template.types.d.ts +5 -0
- package/form-template-management/lib/entity.provider.d.ts +9 -0
- package/form-template-management/lib/form-template-management.module.d.ts +10 -0
- package/form-template-management/lib/menu.provider.d.ts +5 -0
- package/form-template-management/lib/pages/designer/designer.page.d.ts +5 -0
- package/localization-management/README.md +4 -0
- package/localization-management/index.d.ts +7 -0
- package/localization-management/lib/culture/culture.entity.d.ts +3 -0
- package/localization-management/lib/culture/culture.service.d.ts +10 -0
- package/localization-management/lib/culture/culture.types.d.ts +12 -0
- package/localization-management/lib/culture/index.d.ts +3 -0
- package/localization-management/lib/entity.loader.d.ts +9 -0
- package/localization-management/lib/language/index.d.ts +3 -0
- package/localization-management/lib/language/language-slot/language-slot.component.d.ts +19 -0
- package/localization-management/lib/localization-management.module.d.ts +10 -0
- package/localization-management/lib/localization-management.source.d.ts +3 -0
- package/localization-management/lib/localization-store.service.d.ts +7 -0
- package/localization-management/lib/menu.provider.d.ts +5 -0
- package/localization-management/lib/time-zone/index.d.ts +3 -0
- package/localization-management/lib/time-zone/time-zone.entity.d.ts +3 -0
- package/localization-management/lib/time-zone/time-zone.service.d.ts +10 -0
- package/localization-management/lib/time-zone/time-zone.types.d.ts +9 -0
- package/package.json +29 -11
- package/platform-management/index.d.ts +1 -2
- package/platform-management/lib/common/common.module.d.ts +6 -0
- package/platform-management/lib/common/common.source.d.ts +4 -0
- package/platform-management/lib/common/country/country-datasource.provider.d.ts +5 -0
- package/platform-management/lib/common/country/country.entity.d.ts +3 -0
- package/platform-management/lib/common/country/country.service.d.ts +10 -0
- package/platform-management/lib/common/country/country.types.d.ts +18 -0
- package/platform-management/lib/common/country/index.d.ts +3 -0
- package/platform-management/lib/common/currency/currency.entity.d.ts +3 -0
- package/platform-management/lib/common/currency/currency.service.d.ts +10 -0
- package/platform-management/lib/common/currency/currency.types.d.ts +6 -0
- package/platform-management/lib/common/currency/index.d.ts +3 -0
- package/platform-management/lib/{languages → common}/entity.loader.d.ts +3 -3
- package/platform-management/lib/common/index.d.ts +4 -0
- package/platform-management/lib/common/province/index.d.ts +3 -0
- package/platform-management/lib/common/province/province.entity.d.ts +3 -0
- package/platform-management/lib/common/province/province.service.d.ts +10 -0
- package/platform-management/lib/common/province/province.types.d.ts +7 -0
- package/platform-management/lib/menu.provider.d.ts +2 -1
- package/platform-management/lib/platform-management.module.d.ts +2 -1
- package/template-management/index.d.ts +1 -1
- package/template-management/lib/{entity.loader.d.ts → entity.provider.d.ts} +3 -3
- package/template-management/lib/menu.provider.d.ts +2 -1
- package/esm2022/form-management/acorex-modules-form-management.mjs +0 -5
- package/esm2022/form-management/index.mjs +0 -2
- package/esm2022/form-management/lib/designer/designer.page.mjs +0 -24
- package/esm2022/form-management/lib/form-management.module.mjs +0 -53
- package/esm2022/form-management/lib/menu.provider.mjs +0 -29
- package/esm2022/platform-management/lib/comments/comment-management.service.mjs +0 -18
- package/esm2022/platform-management/lib/languages/entities/language.entity.mjs +0 -234
- package/esm2022/platform-management/lib/languages/entity.loader.mjs +0 -26
- package/esm2022/platform-management/lib/languages/index.mjs +0 -5
- package/esm2022/platform-management/lib/languages/language-management.service.mjs +0 -16
- package/esm2022/platform-management/lib/languages/language.types.mjs +0 -2
- package/esm2022/template-management/lib/entity.loader.mjs +0 -36
- package/fesm2022/acorex-modules-auth-acorex-modules-auth-B0aeYVeJ.mjs.map +0 -1
- package/fesm2022/acorex-modules-form-management-designer.page-SoPH2V7i.mjs.map +0 -1
- package/fesm2022/acorex-modules-form-management.mjs +0 -88
- package/fesm2022/acorex-modules-form-management.mjs.map +0 -1
- package/form-management/README.md +0 -4
- package/form-management/index.d.ts +0 -1
- package/form-management/lib/designer/designer.page.d.ts +0 -5
- package/form-management/lib/form-management.module.d.ts +0 -8
- package/form-management/lib/menu.provider.d.ts +0 -4
- package/platform-management/lib/comments/comment-management.service.d.ts +0 -10
- package/platform-management/lib/languages/index.d.ts +0 -4
- /package/{platform-management/lib/languages/entities → localization-management/lib/language}/language.entity.d.ts +0 -0
- /package/{platform-management/lib/languages/language-management.service.d.ts → localization-management/lib/language/language.service.d.ts} +0 -0
- /package/{platform-management/lib/languages → localization-management/lib/language}/language.types.d.ts +0 -0
@@ -1,10 +1,9 @@
|
|
1
1
|
import { AXMEntityCrudServiceImpl } from '@acorex/platform/common';
|
2
2
|
import { Injector } from '@angular/core';
|
3
|
-
import {
|
3
|
+
import { AXMApplicationModuleEntityModel, AXMEditionEntityModel, AXMEntityEntityModel, AXMFeatureEntityModel, AXMPermissionEntityModel, AXMPropertyEntityModel } from './application-management.types';
|
4
4
|
import * as i0 from "@angular/core";
|
5
5
|
export declare class AXPApplicationManagementService {
|
6
6
|
protected _applicationModuleDataProvider: any;
|
7
|
-
protected _applicationDataProvider: any;
|
8
7
|
protected _moduleDataProvider: any;
|
9
8
|
protected _editionDataProvider: any;
|
10
9
|
protected _featureDataProvider: any;
|
@@ -12,8 +11,6 @@ export declare class AXPApplicationManagementService {
|
|
12
11
|
protected _propertyDataProvider: any;
|
13
12
|
protected _permissionDataProvider: any;
|
14
13
|
constructor(injector: Injector);
|
15
|
-
get applicationDataProvider(): any;
|
16
|
-
get moduleDataProvider(): any;
|
17
14
|
get applicationModuleDataProvider(): any;
|
18
15
|
get editionDataProvider(): any;
|
19
16
|
get featureDataProvider(): any;
|
@@ -23,10 +20,6 @@ export declare class AXPApplicationManagementService {
|
|
23
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<AXPApplicationManagementService, never>;
|
24
21
|
static ɵprov: i0.ɵɵInjectableDeclaration<AXPApplicationManagementService>;
|
25
22
|
}
|
26
|
-
export declare abstract class AXMApplicationService extends AXMEntityCrudServiceImpl<string, AXMApplicationEntityModel> {
|
27
|
-
}
|
28
|
-
export declare abstract class AXModuleService extends AXMEntityCrudServiceImpl<string, AXMModuleEntityModel> {
|
29
|
-
}
|
30
23
|
export declare abstract class AXMApplicationModuleService extends AXMEntityCrudServiceImpl<string, AXMApplicationModuleEntityModel> {
|
31
24
|
}
|
32
25
|
export declare abstract class AXMEntityService extends AXMEntityCrudServiceImpl<string, AXMEntityEntityModel> {
|
@@ -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";
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { AXMEntityCrudServiceImpl } from '@acorex/platform/common';
|
2
|
+
import { AXMApplicationEntityModel } from '../application-management.types';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export declare abstract class AXMApplicationService extends AXMEntityCrudServiceImpl<string, AXMApplicationEntityModel> {
|
5
|
+
}
|
6
|
+
export declare class AXMApplicationServiceImpl extends AXMEntityCrudServiceImpl<string, AXMApplicationEntityModel> {
|
7
|
+
constructor();
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMApplicationServiceImpl, never>;
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXMApplicationServiceImpl>;
|
10
|
+
}
|
@@ -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 { AXMModuleEntityModel } from '../application-management.types';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export declare abstract class AXMModuleService extends AXMEntityCrudServiceImpl<string, AXMModuleEntityModel> {
|
5
|
+
}
|
6
|
+
export declare class AXMModuleServiceImpl extends AXMEntityCrudServiceImpl<string, AXMModuleEntityModel> {
|
7
|
+
constructor();
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMModuleServiceImpl, never>;
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXMModuleServiceImpl>;
|
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
|
+
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { AXPMenuInsertion, AXPMenuProvider } from
|
1
|
+
import { AXPMenuInsertion, AXPMenuProvider } from '@acorex/platform/common';
|
2
2
|
export declare class AXMSecurityManagmentModuleMenuProvider implements AXPMenuProvider {
|
3
3
|
items(): Promise<AXPMenuInsertion[]>;
|
4
4
|
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
export * from './lib/entities/comments/pages/comment-list-view.component';
|
2
|
+
export * from './lib/entities/comments/pages/comment-lookup-popup.component';
|
3
|
+
export * from './lib/entities/comments/comment.module';
|
4
|
+
export * from './lib/entities/comments/comments.service';
|
5
|
+
export * from './lib/entities/comments/comments.type';
|
6
|
+
export * from './lib/entities/chat/chat.module';
|
7
|
+
export * from './lib/entities/chat/chat.type';
|
8
|
+
export * from './lib/entities/chat/components/chat-item-footer/chat-item-footer.component';
|
9
|
+
export * from './lib/entities/chat/components/chat-item-header/chat-item-header.component';
|
10
|
+
export * from './lib/entities/chat/components/chat-item/chat-item.component';
|
11
|
+
export * from './lib/entities/chat/components/chat-items/chat-items.component';
|
12
|
+
export * from './lib/entities/chat/components/chat-preview/chat-preview.component';
|
13
|
+
export * from './lib/entities/chat/pages/chat/chat.component';
|
14
|
+
export * from './lib/conversation.module';
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
import * as i1 from "./entities/comments/comment.module";
|
3
|
+
import * as i2 from "./entities/chat/chat.module";
|
4
|
+
import * as i3 from "./entities/comments/pages/comment-list-view.component";
|
5
|
+
import * as i4 from "./entities/chat/pages/chat/chat.component";
|
6
|
+
import * as i5 from "./entities/chat/components/chat-item/chat-item.component";
|
7
|
+
export declare class AXMConversationModule {
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMConversationModule, never>;
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXMConversationModule, never, [typeof i1.AXMCommentModule, typeof i2.AXMChatModule], [typeof i3.AXMCommentListViewComponent, typeof i4.AXMChatComponent, typeof i5.AXMChatItemComponent]>;
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AXMConversationModule>;
|
11
|
+
}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
import * as i1 from "./components/chat-item/chat-item.component";
|
3
|
+
import * as i2 from "./pages/chat/chat.component";
|
4
|
+
import * as i3 from "./components/chat-item-header/chat-item-header.component";
|
5
|
+
import * as i4 from "./components/chat-items/chat-items.component";
|
6
|
+
import * as i5 from "./components/chat-preview/chat-preview.component";
|
7
|
+
import * as i6 from "./components/chat-item-footer/chat-item-footer.component";
|
8
|
+
import * as i7 from "@acorex/components/image";
|
9
|
+
import * as i8 from "@acorex/components/avatar";
|
10
|
+
import * as i9 from "@acorex/components/badge";
|
11
|
+
import * as i10 from "@acorex/components/decorators";
|
12
|
+
import * as i11 from "@acorex/components/text-box";
|
13
|
+
import * as i12 from "@acorex/components/tabs";
|
14
|
+
import * as i13 from "@angular/common";
|
15
|
+
import * as i14 from "@angular/forms";
|
16
|
+
import * as i15 from "@acorex/components/conversation";
|
17
|
+
import * as i16 from "@acorex/components/button";
|
18
|
+
import * as i17 from "@acorex/components/loading";
|
19
|
+
export declare class AXMChatModule {
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMChatModule, never>;
|
21
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXMChatModule, [typeof i1.AXMChatItemComponent, typeof i2.AXMChatComponent, typeof i3.AXMChatItemHeaderComponent, typeof i4.AXMChatItemsComponent, typeof i5.AXMChatPreviewComponent, typeof i6.AXMChatItemFooterComponent], [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 i1.AXMChatItemComponent, typeof i2.AXMChatComponent, typeof i3.AXMChatItemHeaderComponent, typeof i4.AXMChatItemsComponent, typeof i5.AXMChatPreviewComponent, typeof i6.AXMChatItemFooterComponent]>;
|
22
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AXMChatModule>;
|
23
|
+
}
|
@@ -0,0 +1,21 @@
|
|
1
|
+
export interface AXMChatRoom {
|
2
|
+
id: string;
|
3
|
+
title: string;
|
4
|
+
lastMessage: AXMChatMessage;
|
5
|
+
roomMembers: AXMChatUserDetails[];
|
6
|
+
unreadCount: number;
|
7
|
+
}
|
8
|
+
export interface AXMChatMessage {
|
9
|
+
content: string;
|
10
|
+
contentType: string;
|
11
|
+
hasSeen: boolean;
|
12
|
+
createdAt: Date;
|
13
|
+
createdBy: AXMChatUserDetails;
|
14
|
+
}
|
15
|
+
export interface AXMChatUserDetails {
|
16
|
+
id: string;
|
17
|
+
userName: string;
|
18
|
+
firstName: string;
|
19
|
+
lastName: string;
|
20
|
+
picture: string | null;
|
21
|
+
}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
export declare class AXMChatItemComponent {
|
3
|
+
chatId: import("@angular/core").InputSignal<string | undefined>;
|
4
|
+
image: import("@angular/core").InputSignal<string | undefined>;
|
5
|
+
firstName: import("@angular/core").InputSignal<string | undefined>;
|
6
|
+
lastName: import("@angular/core").InputSignal<string | undefined>;
|
7
|
+
content: import("@angular/core").InputSignal<string | undefined>;
|
8
|
+
hasSeen: import("@angular/core").InputSignal<boolean | undefined>;
|
9
|
+
createdAt: import("@angular/core").InputSignal<Date | undefined>;
|
10
|
+
unreadCount: import("@angular/core").InputSignal<number | undefined>;
|
11
|
+
fullName: import("@angular/core").Signal<string>;
|
12
|
+
pressChatItem: import("@angular/core").OutputEmitterRef<string>;
|
13
|
+
extractInitials(name: string): string;
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMChatItemComponent, never>;
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXMChatItemComponent, "axm-chat-item", never, { "chatId": { "alias": "chatId"; "required": false; "isSignal": true; }; "image": { "alias": "image"; "required": false; "isSignal": true; }; "firstName": { "alias": "firstName"; "required": false; "isSignal": true; }; "lastName": { "alias": "lastName"; "required": false; "isSignal": true; }; "content": { "alias": "content"; "required": false; "isSignal": true; }; "hasSeen": { "alias": "hasSeen"; "required": false; "isSignal": true; }; "createdAt": { "alias": "createdAt"; "required": false; "isSignal": true; }; "unreadCount": { "alias": "unreadCount"; "required": false; "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,5 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
export declare class AXMChatItemHeaderComponent {
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMChatItemHeaderComponent, never>;
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXMChatItemHeaderComponent, "axm-chat-item-header", never, {}, {}, never, never, false, never>;
|
5
|
+
}
|
@@ -0,0 +1,6 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
export declare class AXMChatItemsComponent {
|
3
|
+
log(x: string): void;
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMChatItemsComponent, never>;
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXMChatItemsComponent, "axm-chat-items", never, {}, {}, never, never, false, never>;
|
6
|
+
}
|
@@ -0,0 +1,28 @@
|
|
1
|
+
import { AXConversationActionEvent, AXConversationService } from '@acorex/components/conversation';
|
2
|
+
import { AXFileService } from '@acorex/core/file';
|
3
|
+
import { ElementRef, OnDestroy } from '@angular/core';
|
4
|
+
import * as i0 from "@angular/core";
|
5
|
+
export declare class AXMChatPreviewComponent implements OnDestroy {
|
6
|
+
private elRef;
|
7
|
+
fileService: AXFileService;
|
8
|
+
conversationService: AXConversationService;
|
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
|
+
constructor(elRef: ElementRef);
|
19
|
+
protected dynamicHeight: import("@angular/core").Signal<string>;
|
20
|
+
ngOnDestroy(): void;
|
21
|
+
handleFileChange(event: any): void;
|
22
|
+
handleCancelRecord(event: any): void;
|
23
|
+
handleEndRecord(event: any): void;
|
24
|
+
handleOnSend(e: any): void;
|
25
|
+
handleOnAction(e: AXConversationActionEvent): void;
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMChatPreviewComponent, never>;
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXMChatPreviewComponent, "axm-chat-preview", never, {}, {}, never, never, false, never>;
|
28
|
+
}
|
@@ -0,0 +1,25 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
import * as i1 from "./pages/comment-list-view.component";
|
3
|
+
import * as i2 from "@angular/forms";
|
4
|
+
import * as i3 from "@angular/common";
|
5
|
+
import * as i4 from "@angular/router";
|
6
|
+
import * as i5 from "@acorex/components/decorators";
|
7
|
+
import * as i6 from "@acorex/components/wysiwyg";
|
8
|
+
import * as i7 from "@acorex/components/button";
|
9
|
+
import * as i8 from "@acorex/components/text-box";
|
10
|
+
import * as i9 from "@acorex/components/label";
|
11
|
+
import * as i10 from "@acorex/components/avatar";
|
12
|
+
import * as i11 from "@acorex/components/image";
|
13
|
+
import * as i12 from "@acorex/components/select-box";
|
14
|
+
import * as i13 from "@acorex/components/form";
|
15
|
+
import * as i14 from "@acorex/components/loading";
|
16
|
+
import * as i15 from "@acorex/components/dropdown-button";
|
17
|
+
import * as i16 from "@acorex/components/dropdown";
|
18
|
+
import * as i17 from "@acorex/core/format";
|
19
|
+
import * as i18 from "@acorex/components/skeleton";
|
20
|
+
import * as i19 from "@acorex/components/comment";
|
21
|
+
export declare class AXMCommentModule {
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMCommentModule, never>;
|
23
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXMCommentModule, [typeof i1.AXMCommentListViewComponent], [typeof i2.FormsModule, typeof i3.CommonModule, typeof i4.RouterModule, typeof i5.AXDecoratorModule, typeof i6.AXWysiwygModule, typeof i7.AXButtonModule, typeof i8.AXTextBoxModule, typeof i9.AXLabelModule, typeof i10.AXAvatarModule, typeof i11.AXImageModule, typeof i12.AXSelectBoxModule, typeof i13.AXFormModule, typeof i14.AXLoadingModule, typeof i15.AXDropdownButtonModule, typeof i16.AXDropdownModule, typeof i17.AXFormatModule, typeof i18.AXSkeletonModule, typeof i19.AXCommentModule], [typeof i1.AXMCommentListViewComponent]>;
|
24
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AXMCommentModule>;
|
25
|
+
}
|
@@ -0,0 +1,13 @@
|
|
1
|
+
import { AXMEntityCrudServiceImpl, AXPEntityDataProviderImpl } from '@acorex/platform/common';
|
2
|
+
import { AXMComment, AXMCommentCreateRequest, AXMCommentEntityModel, AXMMessageReactionEntityModel } from './comments.type';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export declare abstract class AXMCommentService extends AXMEntityCrudServiceImpl<string, AXMCommentEntityModel, AXMCommentCreateRequest, AXMComment> {
|
5
|
+
abstract like(payload: AXMMessageReactionEntityModel): Promise<string>;
|
6
|
+
}
|
7
|
+
export declare class AXPCommentServiceImpl extends AXMCommentService {
|
8
|
+
protected messageReactionDataProvider: AXPEntityDataProviderImpl<string, AXMMessageReactionEntityModel, Omit<AXMMessageReactionEntityModel, "id">, AXMMessageReactionEntityModel, AXMMessageReactionEntityModel>;
|
9
|
+
constructor();
|
10
|
+
like(payload: AXMMessageReactionEntityModel): Promise<string>;
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXPCommentServiceImpl, never>;
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<AXPCommentServiceImpl>;
|
13
|
+
}
|
@@ -0,0 +1,74 @@
|
|
1
|
+
import { AXPEntityModel } from '@acorex/platform/common';
|
2
|
+
export interface AXMCommentEntityModel extends AXPEntityModel<string> {
|
3
|
+
content: string;
|
4
|
+
contentType: string;
|
5
|
+
memberId?: string;
|
6
|
+
memberType?: string;
|
7
|
+
roomId?: string;
|
8
|
+
isPrivate: boolean;
|
9
|
+
replyId: string | null;
|
10
|
+
messageVisibles?: AXMCommentVisibleMessage[];
|
11
|
+
messageStatuses?: AXMCommentStatusMessage[];
|
12
|
+
messageHistories?: AXMCommentHistoryMessage[];
|
13
|
+
replies?: AXMCommentEntityModel[];
|
14
|
+
isArchived?: boolean;
|
15
|
+
isLiked?: boolean;
|
16
|
+
reactionsCount?: number;
|
17
|
+
repliesCount?: number;
|
18
|
+
createdAt?: Date;
|
19
|
+
user?: AXMCommentUserDetails;
|
20
|
+
}
|
21
|
+
export interface AXMCommentVisibleMessage {
|
22
|
+
id: string;
|
23
|
+
memberId: string;
|
24
|
+
memberType: string;
|
25
|
+
}
|
26
|
+
export interface AXMCommentStatusMessage {
|
27
|
+
id: string;
|
28
|
+
memberId: string;
|
29
|
+
memberType: string;
|
30
|
+
status: string;
|
31
|
+
}
|
32
|
+
export interface AXMCommentHistoryMessage {
|
33
|
+
id: string;
|
34
|
+
content: string;
|
35
|
+
contentType: string;
|
36
|
+
isPrivate: boolean;
|
37
|
+
}
|
38
|
+
export interface AXMCommentUserDetails {
|
39
|
+
id: string;
|
40
|
+
userName: string;
|
41
|
+
firstName: string;
|
42
|
+
lastName: string;
|
43
|
+
picture: string | null;
|
44
|
+
}
|
45
|
+
export interface AXMComment {
|
46
|
+
content: string;
|
47
|
+
contentType: string;
|
48
|
+
memberId: string;
|
49
|
+
memberType: string;
|
50
|
+
roomId: string;
|
51
|
+
isPrivate: boolean;
|
52
|
+
replyId: string | null;
|
53
|
+
messageVisibles: AXMCommentVisibleMessage[];
|
54
|
+
messageStatuses: AXMCommentStatusMessage[];
|
55
|
+
messageHistories: AXMCommentHistoryMessage[];
|
56
|
+
replies: AXMComment[];
|
57
|
+
isArchived: boolean;
|
58
|
+
isLiked: boolean;
|
59
|
+
reactionsCount: number;
|
60
|
+
repliesCount: number;
|
61
|
+
user: AXMCommentUserDetails;
|
62
|
+
id: string;
|
63
|
+
createdAt?: Date;
|
64
|
+
}
|
65
|
+
export interface AXMCommentCreateRequest extends Partial<AXMComment> {
|
66
|
+
content: string;
|
67
|
+
contentType: string;
|
68
|
+
isPrivate: boolean;
|
69
|
+
replyId: string | null;
|
70
|
+
}
|
71
|
+
export interface AXMMessageReactionEntityModel extends AXPEntityModel<string> {
|
72
|
+
messageId: string;
|
73
|
+
type: 'like';
|
74
|
+
}
|
@@ -0,0 +1,66 @@
|
|
1
|
+
import { AXWysiwygContainerComponent } from '@acorex/components/wysiwyg';
|
2
|
+
import { OnInit } from '@angular/core';
|
3
|
+
import { AXStyleLookType } from '@acorex/components/common';
|
4
|
+
import { AXMCommentEntityModel } from '../comments.type';
|
5
|
+
import * as i0 from "@angular/core";
|
6
|
+
export declare class AXMCommentListViewComponent implements OnInit {
|
7
|
+
protected hasCooldown: import("@angular/core").WritableSignal<boolean>;
|
8
|
+
protected commentContent: import("@angular/core").WritableSignal<string>;
|
9
|
+
protected isSubmitting: import("@angular/core").WritableSignal<boolean>;
|
10
|
+
protected isReplyingMode: import("@angular/core").WritableSignal<boolean>;
|
11
|
+
protected isEditingMode: import("@angular/core").WritableSignal<boolean>;
|
12
|
+
protected isLoading: import("@angular/core").WritableSignal<boolean>;
|
13
|
+
protected failedImageIds: import("@angular/core").WritableSignal<string[]>;
|
14
|
+
protected activeReplyComment: import("@angular/core").WritableSignal<AXMCommentEntityModel | undefined>;
|
15
|
+
protected activeEditComment: import("@angular/core").WritableSignal<AXMCommentEntityModel | undefined>;
|
16
|
+
protected wysiwygEditor: import("@angular/core").Signal<AXWysiwygContainerComponent>;
|
17
|
+
private commentService;
|
18
|
+
private platform;
|
19
|
+
private route;
|
20
|
+
private popupService;
|
21
|
+
private toastService;
|
22
|
+
private dialogService;
|
23
|
+
private htmlUtils;
|
24
|
+
private readonly routeParams;
|
25
|
+
private getPayload;
|
26
|
+
payload: import("@angular/core").Signal<{
|
27
|
+
roomType: string;
|
28
|
+
entityId: string;
|
29
|
+
instanceId: any;
|
30
|
+
}>;
|
31
|
+
protected comments: import("@angular/core").WritableSignal<AXMCommentEntityModel[]>;
|
32
|
+
private wysiwyg;
|
33
|
+
ngOnInit(): void;
|
34
|
+
protected wysiwygOptions: import("@angular/core").WritableSignal<{
|
35
|
+
look: AXStyleLookType;
|
36
|
+
}>;
|
37
|
+
protected avatarConfig: import("@angular/core").WritableSignal<{
|
38
|
+
color: string;
|
39
|
+
look: "sharp" | "soft" | "rounded";
|
40
|
+
type: string;
|
41
|
+
}>;
|
42
|
+
validateContent: (content: string) => {
|
43
|
+
rule: string;
|
44
|
+
result: boolean;
|
45
|
+
message: string;
|
46
|
+
value: string;
|
47
|
+
};
|
48
|
+
sanitizeHtml(htmlContent: string): import("@angular/platform-browser").SafeHtml | null;
|
49
|
+
handleImageError(imageId: string): void;
|
50
|
+
checkImageExists(imageId: string): boolean;
|
51
|
+
extractInitials(name: string): string;
|
52
|
+
loadComments(): Promise<void>;
|
53
|
+
editMessage(comment: AXMCommentEntityModel, reply?: AXMCommentEntityModel): void;
|
54
|
+
replyMessage(comment: AXMCommentEntityModel, reply?: AXMCommentEntityModel): void;
|
55
|
+
deleteComment(comment: AXMCommentEntityModel): Promise<void>;
|
56
|
+
deleteReply(comment: AXMCommentEntityModel, reply: AXMCommentEntityModel): Promise<void>;
|
57
|
+
resetReplyEditState(): void;
|
58
|
+
toggleLike(comment: AXMCommentEntityModel, reply?: AXMCommentEntityModel): Promise<void>;
|
59
|
+
private updateLikeStatus;
|
60
|
+
private removeMessageById;
|
61
|
+
submitComment(isPrivate?: boolean): Promise<void>;
|
62
|
+
scrollMain(): void;
|
63
|
+
calcDefrenetTime(date: Date | undefined): number | undefined;
|
64
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMCommentListViewComponent, never>;
|
65
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXMCommentListViewComponent, "axm-comment-list-view", never, {}, {}, never, never, false, never>;
|
66
|
+
}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { AXBasePageComponent } from '@acorex/components/page';
|
2
|
+
import { AXPWidgetNode } from '@acorex/platform/layout/builder';
|
3
|
+
import * as i0 from "@angular/core";
|
4
|
+
export declare class AXMCommentLookupPopup extends AXBasePageComponent {
|
5
|
+
protected lookupNode: AXPWidgetNode;
|
6
|
+
context: {};
|
7
|
+
handleClose(): void;
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMCommentLookupPopup, never>;
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AXMCommentLookupPopup, "ng-component", never, {}, {}, never, never, true, never>;
|
10
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './lib/converstion-test.module';
|
@@ -0,0 +1,6 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
export declare class AXMConverstionTestModule {
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AXMConverstionTestModule, never>;
|
4
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AXMConverstionTestModule, never, never, never>;
|
5
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AXMConverstionTestModule>;
|
6
|
+
}
|
@@ -4,8 +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';
|
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';
|
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';
|
9
18
|
import { AXPCreateModuleEntityWorkflow, AXPShowModuleEntityDetailsViewWorkflow, AXPShowModuleEntityDetailViewAction, } from './workflows';
|
10
19
|
import * as i0 from "@angular/core";
|
11
20
|
import * as i1 from "@acorex/platform/workflow";
|
@@ -25,6 +34,42 @@ export class AXMApplicationManagementModule {
|
|
25
34
|
useClass: AXMApplicationManagmentModuleMenuProvider,
|
26
35
|
multi: true,
|
27
36
|
},
|
37
|
+
{
|
38
|
+
provide: AXMModuleService,
|
39
|
+
useClass: AXMModuleServiceImpl,
|
40
|
+
},
|
41
|
+
{
|
42
|
+
provide: AXMApplicationService,
|
43
|
+
useClass: AXMApplicationServiceImpl,
|
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
|
+
// },
|
28
73
|
],
|
29
74
|
};
|
30
75
|
}
|
@@ -69,4 +114,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImpor
|
|
69
114
|
type: Inject,
|
70
115
|
args: ['AXP_REGISTER_MODULES_ENTITIES']
|
71
116
|
}] }] });
|
72
|
-
//# sourceMappingURL=data:application/json;base64,
|
117
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXBwbGljYXRpb24tbWFuYWdlbWVudC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9saWJzL21vZHVsZXMvYXBwbGljYXRpb24tbWFuYWdlbWVudC9zcmMvbGliL2FwcGxpY2F0aW9uLW1hbmFnZW1lbnQubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLHlCQUF5QixDQUFDO0FBQzVELE9BQU8sRUFBRSw0QkFBNEIsRUFBRSxNQUFNLGdDQUFnQyxDQUFDO0FBQzlFLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBQzlELE9BQU8sRUFBRSxNQUFNLEVBQXVCLFFBQVEsRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDaEYsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSw2QkFBNkIsRUFBRSxNQUFNLGdDQUFnQyxDQUFDO0FBQy9FLE9BQU8sRUFDTCwyQkFBMkIsRUFDM0IsaUJBQWlCLEVBQ2pCLGdCQUFnQixFQUNoQixpQkFBaUIsRUFDakIsb0JBQW9CLEVBQ3BCLGtCQUFrQixHQUNuQixNQUFNLGtDQUFrQyxDQUFDO0FBQzFDLE9BQU8sRUFBRSwwQ0FBMEMsRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQzdFLE9BQU8sRUFBRSx5Q0FBeUMsRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQzVFLE9BQU8sRUFBRSxxQkFBcUIsRUFBRSx5QkFBeUIsRUFBRSxNQUFNLDJDQUEyQyxDQUFDO0FBQzdHLE9BQU8sRUFBRSwrQkFBK0IsRUFBRSxNQUFNLGtEQUFrRCxDQUFDO0FBQ25HLE9BQU8sRUFBRSxxQkFBcUIsRUFBRSxNQUFNLHVDQUF1QyxDQUFDO0FBQzlFLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxNQUFNLHNDQUFzQyxDQUFDO0FBQzVFLE9BQU8sRUFBRSxxQkFBcUIsRUFBRSxNQUFNLHVDQUF1QyxDQUFDO0FBQzlFLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxvQkFBb0IsRUFBRSxNQUFNLHNDQUFzQyxDQUFDO0FBQzlGLE9BQU8sRUFBRSx3QkFBd0IsRUFBRSxNQUFNLDBDQUEwQyxDQUFDO0FBQ3BGLE9BQU8sRUFBRSxzQkFBc0IsRUFBRSxNQUFNLHdDQUF3QyxDQUFDO0FBQ2hGLE9BQU8sRUFDTCw2QkFBNkIsRUFDN0Isc0NBQXNDLEVBQ3RDLG1DQUFtQyxHQUNwQyxNQUFNLGFBQWEsQ0FBQzs7OztBQWtCckIsTUFBTSxPQUFPLDhCQUE4QjtJQUN6QyxNQUFNLENBQUMsT0FBTztRQUNaLE9BQU87WUFDTCxRQUFRLEVBQUUsOEJBQThCO1lBQ3hDLFNBQVMsRUFBRTtnQkFDVDtvQkFDRSxPQUFPLEVBQUUsNEJBQTRCO29CQUNyQyxRQUFRLEVBQUUsMENBQTBDO29CQUNwRCxLQUFLLEVBQUUsSUFBSTtpQkFDWjtnQkFDRDtvQkFDRSxPQUFPLEVBQUUsaUJBQWlCO29CQUMxQixRQUFRLEVBQUUseUNBQXlDO29CQUNuRCxLQUFLLEVBQUUsSUFBSTtpQkFDWjtnQkFDRDtvQkFDRSxPQUFPLEVBQUUsZ0JBQWdCO29CQUN6QixRQUFRLEVBQUUsb0JBQW9CO2lCQUMvQjtnQkFDRDtvQkFDRSxPQUFPLEVBQUUscUJBQXFCO29CQUM5QixRQUFRLEVBQUUseUJBQXlCO2lCQUNwQztnQkFDRDtvQkFDRSxPQUFPLEVBQUUsMkJBQTJCO29CQUNwQyxRQUFRLEVBQUUsK0JBQStCO2lCQUMxQztnQkFDRDtvQkFDRSxPQUFPLEVBQUUsZ0JBQWdCO29CQUN6QixRQUFRLEVBQUUsb0JBQW9CO2lCQUMvQjtnQkFDRDtvQkFDRSxPQUFPLEVBQUUsb0JBQW9CO29CQUM3QixRQUFRLEVBQUUsd0JBQXdCO2lCQUNuQztnQkFDRDtvQkFDRSxPQUFPLEVBQUUsaUJBQWlCO29CQUMxQixRQUFRLEVBQUUscUJBQXFCO2lCQUNoQztnQkFDRDtvQkFDRSxPQUFPLEVBQUUsa0JBQWtCO29CQUMzQixRQUFRLEVBQUUsc0JBQXNCO2lCQUNqQztnQkFDRDtvQkFDRSxPQUFPLEVBQUUsaUJBQWlCO29CQUMxQixRQUFRLEVBQUUscUJBQXFCO2lCQUNoQztnQkFDRCxJQUFJO2dCQUNKLHVDQUF1QztnQkFDdkMsd0NBQXdDO2dCQUN4QyxLQUFLO2FBQ047U0FDRixDQUFDO0lBQ0osQ0FBQztJQUVEOztPQUVHO0lBQ0gsWUFBaUUsU0FBZ0IsSUFBRyxDQUFDOzhHQTFEMUUsOEJBQThCLGtCQTBEVCwrQkFBK0I7K0dBMURwRCw4QkFBOEI7K0dBQTlCLDhCQUE4QixZQWR2QyxpQkFBaUIsQ0FBQyxRQUFRLENBQUM7Z0JBQ3pCLE9BQU8sRUFBRTtvQkFDUCxtQ0FBbUM7aUJBQ3BDO2dCQUNELFNBQVMsRUFBRTtvQkFDVCxzQkFBc0IsRUFBRSw2QkFBNkI7b0JBQ3JELDRCQUE0QixFQUFFLHNDQUFzQztpQkFDckU7YUFDRixDQUFDO1lBQ0YsWUFBWSxDQUFDLFFBQVEsQ0FBQyw2QkFBNkIsQ0FBQzs7MkZBSzNDLDhCQUE4QjtrQkFoQjFDLFFBQVE7bUJBQUM7b0JBQ1IsT0FBTyxFQUFFO3dCQUNQLGlCQUFpQixDQUFDLFFBQVEsQ0FBQzs0QkFDekIsT0FBTyxFQUFFO2dDQUNQLG1DQUFtQzs2QkFDcEM7NEJBQ0QsU0FBUyxFQUFFO2dDQUNULHNCQUFzQixFQUFFLDZCQUE2QjtnQ0FDckQsNEJBQTRCLEVBQUUsc0NBQXNDOzZCQUNyRTt5QkFDRixDQUFDO3dCQUNGLFlBQVksQ0FBQyxRQUFRLENBQUMsNkJBQTZCLENBQUM7cUJBQ3JEO29CQUNELE9BQU8sRUFBRSxFQUFFO29CQUNYLFlBQVksRUFBRSxFQUFFO2lCQUNqQjs7MEJBMkRjLFFBQVE7OzBCQUFJLE1BQU07MkJBQUMsK0JBQStCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVhQX01FTlVfUFJPVklERVIgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2NvbW1vbic7XG5pbXBvcnQgeyBBWFBfRU5USVRZX0RFRklOSVRJT05fTE9BREVSIH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9sYXlvdXQvZW50aXR5JztcbmltcG9ydCB7IEFYUFdvcmtmbG93TW9kdWxlIH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS93b3JrZmxvdyc7XG5pbXBvcnQgeyBJbmplY3QsIE1vZHVsZVdpdGhQcm92aWRlcnMsIE5nTW9kdWxlLCBPcHRpb25hbCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgUm91dGVyTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvcm91dGVyJztcbmltcG9ydCB7IEFYTUFwcGxjYXRpb25NYW5hZ2VtZW50cm91dGVzIH0gZnJvbSAnLi9hcHBsaWNhdGlvbi1tYW5hZ2VtZW50LnJvdXRlJztcbmltcG9ydCB7XG4gIEFYTUFwcGxpY2F0aW9uTW9kdWxlU2VydmljZSxcbiAgQVhNRWRpdGlvblNlcnZpY2UsXG4gIEFYTUVudGl0eVNlcnZpY2UsXG4gIEFYTUZlYXR1cmVTZXJ2aWNlLFxuICBBWE1QZXJtaXNzaW9uU2VydmljZSxcbiAgQVhNUHJvcGVydHlTZXJ2aWNlLFxufSBmcm9tICcuL2FwcGxpY2F0aW9uLW1hbmFnZW1lbnQuc2VydmljZSc7XG5pbXBvcnQgeyBBWE1BcHBsaWNhdGlvbk1hbmFnZW1lbnRNb2R1bGVFbnRpdHlMb2FkZXIgfSBmcm9tICcuL2VudGl0eS5sb2FkZXInO1xuaW1wb3J0IHsgQVhNQXBwbGljYXRpb25NYW5hZ21lbnRNb2R1bGVNZW51UHJvdmlkZXIgfSBmcm9tICcuL21lbnUucHJvdmlkZXInO1xuaW1wb3J0IHsgQVhNQXBwbGljYXRpb25TZXJ2aWNlLCBBWE1BcHBsaWNhdGlvblNlcnZpY2VJbXBsIH0gZnJvbSAnLi9zZXJ2aWNlcy9hcHBsaWNhdGlvbi1tYW5hZ2VtZW50LnNlcnZpY2UnO1xuaW1wb3J0IHsgQVhNQXBwbGljYXRpb25Nb2R1bGVTZXJ2aWNlSW1wbCB9IGZyb20gJy4vc2VydmljZXMvYXBwbGljYXRpb24tbW9kdWxlLW1hbmFnZW1lbnQuc2VydmljZSc7XG5pbXBvcnQgeyBBWE1FZGl0aW9uU2VydmljZUltcGwgfSBmcm9tICcuL3NlcnZpY2VzL2VkaXRpb24tbWFuYWdlbWVudC5zZXJ2aWNlJztcbmltcG9ydCB7IEFYTUVudGl0eVNlcnZpY2VJbXBsIH0gZnJvbSAnLi9zZXJ2aWNlcy9lbnRpdHktbWFuYWdlbWVudC5zZXJ2aWNlJztcbmltcG9ydCB7IEFYTUZlYXR1cmVTZXJ2aWNlSW1wbCB9IGZyb20gJy4vc2VydmljZXMvZmVhdHVyZS1tYW5hZ2VtZW50LnNlcnZpY2UnO1xuaW1wb3J0IHsgQVhNTW9kdWxlU2VydmljZSwgQVhNTW9kdWxlU2VydmljZUltcGwgfSBmcm9tICcuL3NlcnZpY2VzL21vZHVsZS1tYW5hZ2VtZW50LnNlcnZpY2UnO1xuaW1wb3J0IHsgQVhNUGVybWlzc2lvblNlcnZpY2VJbXBsIH0gZnJvbSAnLi9zZXJ2aWNlcy9wZXJtaXNzaW9uLW1hbmFnZW1lbnQuc2VydmljZSc7XG5pbXBvcnQgeyBBWE1Qcm9wZXJ0eVNlcnZpY2VJbXBsIH0gZnJvbSAnLi9zZXJ2aWNlcy9wcm9wZXJ0eS1tYW5hZ2VtZW50LnNlcnZpY2UnO1xuaW1wb3J0IHtcbiAgQVhQQ3JlYXRlTW9kdWxlRW50aXR5V29ya2Zsb3csXG4gIEFYUFNob3dNb2R1bGVFbnRpdHlEZXRhaWxzVmlld1dvcmtmbG93LFxuICBBWFBTaG93TW9kdWxlRW50aXR5RGV0YWlsVmlld0FjdGlvbixcbn0gZnJvbSAnLi93b3JrZmxvd3MnO1xuXG5ATmdNb2R1bGUoe1xuICBpbXBvcnRzOiBbXG4gICAgQVhQV29ya2Zsb3dNb2R1bGUuZm9yQ2hpbGQoe1xuICAgICAgYWN0aW9uczoge1xuICAgICAgICBBWFBTaG93TW9kdWxlRW50aXR5RGV0YWlsVmlld0FjdGlvbixcbiAgICAgIH0sXG4gICAgICB3b3JrZmxvd3M6IHtcbiAgICAgICAgJ2NyZWF0ZS1tb2R1bGUtZW50aXR5JzogQVhQQ3JlYXRlTW9kdWxlRW50aXR5V29ya2Zsb3csXG4gICAgICAgICdzaG93LW1vZHVsZS1lbnRpdHktZGV0YWlscyc6IEFYUFNob3dNb2R1bGVFbnRpdHlEZXRhaWxzVmlld1dvcmtmbG93LFxuICAgICAgfSxcbiAgICB9KSxcbiAgICBSb3V0ZXJNb2R1bGUuZm9yQ2hpbGQoQVhNQXBwbGNhdGlvbk1hbmFnZW1lbnRyb3V0ZXMpLFxuICBdLFxuICBleHBvcnRzOiBbXSxcbiAgZGVjbGFyYXRpb25zOiBbXSxcbn0pXG5leHBvcnQgY2xhc3MgQVhNQXBwbGljYXRpb25NYW5hZ2VtZW50TW9kdWxlIHtcbiAgc3RhdGljIGZvclJvb3QoKTogTW9kdWxlV2l0aFByb3ZpZGVyczxBWE1BcHBsaWNhdGlvbk1hbmFnZW1lbnRNb2R1bGU+IHtcbiAgICByZXR1cm4ge1xuICAgICAgbmdNb2R1bGU6IEFYTUFwcGxpY2F0aW9uTWFuYWdlbWVudE1vZHVsZSxcbiAgICAgIHByb3ZpZGVyczogW1xuICAgICAgICB7XG4gICAgICAgICAgcHJvdmlkZTogQVhQX0VOVElUWV9ERUZJTklUSU9OX0xPQURFUixcbiAgICAgICAgICB1c2VDbGFzczogQVhNQXBwbGljYXRpb25NYW5hZ2VtZW50TW9kdWxlRW50aXR5TG9hZGVyLFxuICAgICAgICAgIG11bHRpOiB0cnVlLFxuICAgICAgICB9LFxuICAgICAgICB7XG4gICAgICAgICAgcHJvdmlkZTogQVhQX01FTlVfUFJPVklERVIsXG4gICAgICAgICAgdXNlQ2xhc3M6IEFYTUFwcGxpY2F0aW9uTWFuYWdtZW50TW9kdWxlTWVudVByb3ZpZGVyLFxuICAgICAgICAgIG11bHRpOiB0cnVlLFxuICAgICAgICB9LFxuICAgICAgICB7XG4gICAgICAgICAgcHJvdmlkZTogQVhNTW9kdWxlU2VydmljZSxcbiAgICAgICAgICB1c2VDbGFzczogQVhNTW9kdWxlU2VydmljZUltcGwsXG4gICAgICAgIH0sXG4gICAgICAgIHtcbiAgICAgICAgICBwcm92aWRlOiBBWE1BcHBsaWNhdGlvblNlcnZpY2UsXG4gICAgICAgICAgdXNlQ2xhc3M6IEFYTUFwcGxpY2F0aW9uU2VydmljZUltcGwsXG4gICAgICAgIH0sXG4gICAgICAgIHtcbiAgICAgICAgICBwcm92aWRlOiBBWE1BcHBsaWNhdGlvbk1vZHVsZVNlcnZpY2UsXG4gICAgICAgICAgdXNlQ2xhc3M6IEFYTUFwcGxpY2F0aW9uTW9kdWxlU2VydmljZUltcGwsXG4gICAgICAgIH0sXG4gICAgICAgIHtcbiAgICAgICAgICBwcm92aWRlOiBBWE1FbnRpdHlTZXJ2aWNlLFxuICAgICAgICAgIHVzZUNsYXNzOiBBWE1FbnRpdHlTZXJ2aWNlSW1wbCxcbiAgICAgICAgfSxcbiAgICAgICAge1xuICAgICAgICAgIHByb3ZpZGU6IEFYTVBlcm1pc3Npb25TZXJ2aWNlLFxuICAgICAgICAgIHVzZUNsYXNzOiBBWE1QZXJtaXNzaW9uU2VydmljZUltcGwsXG4gICAgICAgIH0sXG4gICAgICAgIHtcbiAgICAgICAgICBwcm92aWRlOiBBWE1GZWF0dXJlU2VydmljZSxcbiAgICAgICAgICB1c2VDbGFzczogQVhNRmVhdHVyZVNlcnZpY2VJbXBsLFxuICAgICAgICB9LFxuICAgICAgICB7XG4gICAgICAgICAgcHJvdmlkZTogQVhNUHJvcGVydHlTZXJ2aWNlLFxuICAgICAgICAgIHVzZUNsYXNzOiBBWE1Qcm9wZXJ0eVNlcnZpY2VJbXBsLFxuICAgICAgICB9LFxuICAgICAgICB7XG4gICAgICAgICAgcHJvdmlkZTogQVhNRWRpdGlvblNlcnZpY2UsXG4gICAgICAgICAgdXNlQ2xhc3M6IEFYTUVkaXRpb25TZXJ2aWNlSW1wbCxcbiAgICAgICAgfSxcbiAgICAgICAgLy8ge1xuICAgICAgICAvLyAgIHByb3ZpZGU6IEFYUE1vZHVsZURlc2lnbmVyU2VydmljZSxcbiAgICAgICAgLy8gICB1c2VDbGFzczogQVhNTW9kdWxlRGVzaWduZXJTZXJ2aWNlLFxuICAgICAgICAvLyB9LFxuICAgICAgXSxcbiAgICB9O1xuICB9XG5cbiAgLyoqXG4gICAqIEBpZ25vcmVcbiAgICovXG4gIGNvbnN0cnVjdG9yKEBPcHRpb25hbCgpIEBJbmplY3QoJ0FYUF9SRUdJU1RFUl9NT0RVTEVTX0VOVElUSUVTJykgaW5zdGFuY2VzOiBhbnlbXSkge31cbn1cbiJdfQ==
|