@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.
Files changed (266) hide show
  1. package/application-management/lib/application-management.service.d.ts +1 -8
  2. package/application-management/lib/application-management.source.d.ts +1 -0
  3. package/application-management/lib/menu.provider.d.ts +1 -0
  4. package/application-management/lib/services/application-management.service.d.ts +10 -0
  5. package/application-management/lib/services/application-module-management.service.d.ts +10 -0
  6. package/application-management/lib/services/edition-management.service.d.ts +10 -0
  7. package/application-management/lib/services/entity-management.service.d.ts +10 -0
  8. package/application-management/lib/services/feature-management.service.d.ts +10 -0
  9. package/application-management/lib/services/module-management.service.d.ts +10 -0
  10. package/application-management/lib/services/permission-management.service.d.ts +10 -0
  11. package/application-management/lib/services/property-management.service.d.ts +10 -0
  12. package/auth/lib/menu.provider.d.ts +1 -1
  13. package/conversation/README.md +3 -0
  14. package/conversation/index.d.ts +14 -0
  15. package/conversation/lib/conversation.module.d.ts +11 -0
  16. package/conversation/lib/entities/chat/chat.module.d.ts +23 -0
  17. package/conversation/lib/entities/chat/chat.type.d.ts +21 -0
  18. package/conversation/lib/entities/chat/components/chat-item/chat-item.component.d.ts +16 -0
  19. package/conversation/lib/entities/chat/components/chat-item-footer/chat-item-footer.component.d.ts +5 -0
  20. package/conversation/lib/entities/chat/components/chat-item-header/chat-item-header.component.d.ts +5 -0
  21. package/conversation/lib/entities/chat/components/chat-items/chat-items.component.d.ts +6 -0
  22. package/conversation/lib/entities/chat/components/chat-preview/chat-preview.component.d.ts +28 -0
  23. package/conversation/lib/entities/chat/pages/chat/chat.component.d.ts +5 -0
  24. package/conversation/lib/entities/comments/comment.module.d.ts +25 -0
  25. package/conversation/lib/entities/comments/comments.service.d.ts +13 -0
  26. package/conversation/lib/entities/comments/comments.type.d.ts +74 -0
  27. package/conversation/lib/entities/comments/pages/comment-list-view.component.d.ts +66 -0
  28. package/conversation/lib/entities/comments/pages/comment-lookup-popup.component.d.ts +10 -0
  29. package/converstion-test/README.md +4 -0
  30. package/converstion-test/index.d.ts +1 -0
  31. package/converstion-test/lib/converstion-test.module.d.ts +6 -0
  32. package/esm2022/application-management/lib/application-management.module.mjs +46 -1
  33. package/esm2022/application-management/lib/application-management.service.mjs +2 -18
  34. package/esm2022/application-management/lib/application-management.source.mjs +2 -1
  35. package/esm2022/application-management/lib/entities/application-module.entity.mjs +10 -13
  36. package/esm2022/application-management/lib/entities/applications.entity.mjs +8 -8
  37. package/esm2022/application-management/lib/entities/edition.entity.mjs +10 -13
  38. package/esm2022/application-management/lib/entities/entity.entity.mjs +10 -13
  39. package/esm2022/application-management/lib/entities/feature.entity.mjs +10 -13
  40. package/esm2022/application-management/lib/entities/modules.entity.mjs +12 -15
  41. package/esm2022/application-management/lib/entities/permission.entity.mjs +10 -13
  42. package/esm2022/application-management/lib/entities/property.entity.mjs +10 -13
  43. package/esm2022/application-management/lib/layouts/module-entity-detail-view/module-entity-detail-view.component.mjs +5 -4
  44. package/esm2022/application-management/lib/menu.provider.mjs +10 -4
  45. package/esm2022/application-management/lib/services/application-management.service.mjs +17 -0
  46. package/esm2022/application-management/lib/services/application-module-management.service.mjs +17 -0
  47. package/esm2022/application-management/lib/services/edition-management.service.mjs +17 -0
  48. package/esm2022/application-management/lib/services/entity-management.service.mjs +17 -0
  49. package/esm2022/application-management/lib/services/feature-management.service.mjs +17 -0
  50. package/esm2022/application-management/lib/services/module-management.service.mjs +17 -0
  51. package/esm2022/application-management/lib/services/permission-management.service.mjs +17 -0
  52. package/esm2022/application-management/lib/services/property-management.service.mjs +17 -0
  53. package/esm2022/auth/lib/account/account.module.mjs +6 -2
  54. package/esm2022/auth/lib/account/profile/profile-slot.component.mjs +3 -3
  55. package/esm2022/auth/lib/menu.provider.mjs +17 -14
  56. package/esm2022/conversation/acorex-modules-conversation.mjs +5 -0
  57. package/esm2022/conversation/index.mjs +15 -0
  58. package/esm2022/conversation/lib/conversation.module.mjs +22 -0
  59. package/esm2022/conversation/lib/entities/chat/chat.module.mjs +90 -0
  60. package/esm2022/conversation/lib/entities/chat/chat.type.mjs +2 -0
  61. package/esm2022/conversation/lib/entities/chat/components/chat-item/chat-item.component.mjs +35 -0
  62. package/esm2022/conversation/lib/entities/chat/components/chat-item-footer/chat-item-footer.component.mjs +13 -0
  63. package/esm2022/conversation/lib/entities/chat/components/chat-item-header/chat-item-header.component.mjs +15 -0
  64. package/esm2022/conversation/lib/entities/chat/components/chat-items/chat-items.component.mjs +15 -0
  65. package/esm2022/conversation/lib/entities/chat/components/chat-preview/chat-preview.component.mjs +237 -0
  66. package/esm2022/conversation/lib/entities/chat/pages/chat/chat.component.mjs +15 -0
  67. package/esm2022/conversation/lib/entities/comments/comment.module.mjs +100 -0
  68. package/esm2022/conversation/lib/entities/comments/comments.service.mjs +20 -0
  69. package/esm2022/conversation/lib/entities/comments/comments.type.mjs +2 -0
  70. package/esm2022/conversation/lib/entities/comments/pages/comment-list-view.component.mjs +393 -0
  71. package/esm2022/conversation/lib/entities/comments/pages/comment-lookup-popup.component.mjs +56 -0
  72. package/esm2022/converstion-test/acorex-modules-converstion-test.mjs +5 -0
  73. package/esm2022/converstion-test/index.mjs +2 -0
  74. package/esm2022/converstion-test/lib/converstion-test.module.mjs +16 -0
  75. package/esm2022/form-template-management/acorex-modules-form-template-management.mjs +5 -0
  76. package/esm2022/form-template-management/index.mjs +2 -0
  77. package/esm2022/form-template-management/lib/const.mjs +8 -0
  78. package/esm2022/form-template-management/lib/entities/category/category.entity.mjs +241 -0
  79. package/esm2022/form-template-management/lib/entities/category/category.module.mjs +28 -0
  80. package/esm2022/form-template-management/lib/entities/category/category.service.mjs +17 -0
  81. package/esm2022/form-template-management/lib/entities/category/category.types.mjs +2 -0
  82. package/esm2022/form-template-management/lib/entities/category/index.mjs +5 -0
  83. package/esm2022/form-template-management/lib/entities/template/index.mjs +5 -0
  84. package/esm2022/form-template-management/lib/entities/template/template.entity.mjs +241 -0
  85. package/esm2022/form-template-management/lib/entities/template/template.module.mjs +28 -0
  86. package/esm2022/form-template-management/lib/entities/template/template.service.mjs +17 -0
  87. package/esm2022/form-template-management/lib/entities/template/template.types.mjs +2 -0
  88. package/esm2022/form-template-management/lib/entity.provider.mjs +25 -0
  89. package/esm2022/form-template-management/lib/form-template-management.module.mjs +77 -0
  90. package/esm2022/form-template-management/lib/menu.provider.mjs +45 -0
  91. package/esm2022/form-template-management/lib/pages/designer/designer.page.mjs +24 -0
  92. package/esm2022/localization-management/acorex-modules-localization-management.mjs +5 -0
  93. package/esm2022/localization-management/index.mjs +8 -0
  94. package/esm2022/localization-management/lib/culture/culture.entity.mjs +239 -0
  95. package/esm2022/localization-management/lib/culture/culture.service.mjs +17 -0
  96. package/esm2022/localization-management/lib/culture/culture.types.mjs +2 -0
  97. package/esm2022/localization-management/lib/culture/index.mjs +4 -0
  98. package/esm2022/localization-management/lib/entity.loader.mjs +36 -0
  99. package/esm2022/localization-management/lib/language/index.mjs +4 -0
  100. package/esm2022/localization-management/lib/language/language-slot/language-slot.component.mjs +30 -0
  101. package/esm2022/localization-management/lib/language/language.entity.mjs +239 -0
  102. package/esm2022/localization-management/lib/language/language.service.mjs +17 -0
  103. package/esm2022/localization-management/lib/language/language.types.mjs +2 -0
  104. package/esm2022/localization-management/lib/localization-management.module.mjs +99 -0
  105. package/esm2022/localization-management/lib/localization-management.source.mjs +4 -0
  106. package/esm2022/localization-management/lib/localization-store.service.mjs +34 -0
  107. package/esm2022/localization-management/lib/menu.provider.mjs +46 -0
  108. package/esm2022/localization-management/lib/time-zone/index.mjs +4 -0
  109. package/esm2022/localization-management/lib/time-zone/time-zone.entity.mjs +256 -0
  110. package/esm2022/localization-management/lib/time-zone/time-zone.service.mjs +17 -0
  111. package/esm2022/localization-management/lib/time-zone/time-zone.types.mjs +2 -0
  112. package/esm2022/notification-management/lib/admin-notification-slot/admin-notification-item/admin-notification-item.component.mjs +3 -3
  113. package/esm2022/notification-management/lib/admin-notification-slot/admin-notification-slot/admin-notification-slot.component.mjs +3 -3
  114. package/esm2022/notification-management/lib/entities/my-notification.mjs +8 -15
  115. package/esm2022/notification-management/lib/entities/notification-channel.entity.mjs +3 -3
  116. package/esm2022/notification-management/lib/menu.provider.mjs +13 -12
  117. package/esm2022/notification-management/lib/notification-management.module.mjs +5 -5
  118. package/esm2022/platform-management/index.mjs +2 -3
  119. package/esm2022/platform-management/lib/common/common.module.mjs +65 -0
  120. package/esm2022/platform-management/lib/common/common.source.mjs +5 -0
  121. package/esm2022/platform-management/lib/common/country/country-datasource.provider.mjs +27 -0
  122. package/esm2022/platform-management/lib/common/country/country.entity.mjs +696 -0
  123. package/esm2022/platform-management/lib/common/country/country.service.mjs +17 -0
  124. package/esm2022/platform-management/lib/common/country/country.types.mjs +2 -0
  125. package/esm2022/platform-management/lib/common/country/index.mjs +4 -0
  126. package/esm2022/platform-management/lib/common/currency/currency.entity.mjs +283 -0
  127. package/esm2022/platform-management/lib/common/currency/currency.service.mjs +17 -0
  128. package/esm2022/platform-management/lib/common/currency/currency.types.mjs +2 -0
  129. package/esm2022/platform-management/lib/common/currency/index.mjs +4 -0
  130. package/esm2022/platform-management/lib/common/entity.loader.mjs +36 -0
  131. package/esm2022/platform-management/lib/common/index.mjs +5 -0
  132. package/esm2022/platform-management/lib/common/province/index.mjs +4 -0
  133. package/esm2022/platform-management/lib/common/province/province.entity.mjs +307 -0
  134. package/esm2022/platform-management/lib/common/province/province.service.mjs +17 -0
  135. package/esm2022/platform-management/lib/common/province/province.types.mjs +2 -0
  136. package/esm2022/platform-management/lib/global-variables/entities/global-variable.entity.mjs +54 -4
  137. package/esm2022/platform-management/lib/menu.provider.mjs +37 -15
  138. package/esm2022/platform-management/lib/platform-management.module.mjs +12 -33
  139. package/esm2022/template-management/index.mjs +2 -2
  140. package/esm2022/template-management/lib/entities/category.entity.mjs +34 -16
  141. package/esm2022/template-management/lib/entities/template-variable.entity.mjs +103 -102
  142. package/esm2022/template-management/lib/entities/text-template.entity.mjs +28 -2
  143. package/esm2022/template-management/lib/entity.provider.mjs +32 -0
  144. package/esm2022/template-management/lib/menu.provider.mjs +14 -8
  145. package/esm2022/template-management/lib/template-management.module.mjs +4 -4
  146. package/fesm2022/{acorex-modules-application-management-module-designer.component-BCaCCEXO.mjs → acorex-modules-application-management-module-designer.component-CaR_HZfL.mjs} +3 -3
  147. 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
  148. package/fesm2022/acorex-modules-application-management.mjs +399 -283
  149. package/fesm2022/acorex-modules-application-management.mjs.map +1 -1
  150. package/fesm2022/{acorex-modules-auth-acorex-modules-auth-B0aeYVeJ.mjs → acorex-modules-auth-acorex-modules-auth-BVOt-gis.mjs} +30 -23
  151. package/fesm2022/acorex-modules-auth-acorex-modules-auth-BVOt-gis.mjs.map +1 -0
  152. package/fesm2022/{acorex-modules-auth-app-chooser.component-4b6b3ttW.mjs → acorex-modules-auth-app-chooser.component-DhPEtLuK.mjs} +2 -2
  153. package/fesm2022/{acorex-modules-auth-app-chooser.component-4b6b3ttW.mjs.map → acorex-modules-auth-app-chooser.component-DhPEtLuK.mjs.map} +1 -1
  154. package/fesm2022/{acorex-modules-auth-login.module-A7u1YYeo.mjs → acorex-modules-auth-login.module-sFVL-lYB.mjs} +4 -4
  155. package/fesm2022/{acorex-modules-auth-login.module-A7u1YYeo.mjs.map → acorex-modules-auth-login.module-sFVL-lYB.mjs.map} +1 -1
  156. package/fesm2022/{acorex-modules-auth-master.layout--UllrmW0.mjs → acorex-modules-auth-master.layout-Bnt5qiio.mjs} +2 -2
  157. package/fesm2022/{acorex-modules-auth-master.layout--UllrmW0.mjs.map → acorex-modules-auth-master.layout-Bnt5qiio.mjs.map} +1 -1
  158. package/fesm2022/{acorex-modules-auth-password.component-Dv0VXzh_.mjs → acorex-modules-auth-password.component-BXL-aLTx.mjs} +2 -2
  159. package/fesm2022/{acorex-modules-auth-password.component-Dv0VXzh_.mjs.map → acorex-modules-auth-password.component-BXL-aLTx.mjs.map} +1 -1
  160. package/fesm2022/{acorex-modules-auth-password.component-BjqQ-qVo.mjs → acorex-modules-auth-password.component-ClaRp38G.mjs} +2 -2
  161. package/fesm2022/{acorex-modules-auth-password.component-BjqQ-qVo.mjs.map → acorex-modules-auth-password.component-ClaRp38G.mjs.map} +1 -1
  162. package/fesm2022/{acorex-modules-auth-routes-C4eNPru3.mjs → acorex-modules-auth-routes-MDneFw2m.mjs} +2 -2
  163. package/fesm2022/{acorex-modules-auth-routes-C4eNPru3.mjs.map → acorex-modules-auth-routes-MDneFw2m.mjs.map} +1 -1
  164. package/fesm2022/{acorex-modules-auth-two-factor.module-C6V_pb_Q.mjs → acorex-modules-auth-two-factor.module-BHulbf0N.mjs} +2 -2
  165. package/fesm2022/{acorex-modules-auth-two-factor.module-C6V_pb_Q.mjs.map → acorex-modules-auth-two-factor.module-BHulbf0N.mjs.map} +1 -1
  166. package/fesm2022/acorex-modules-auth.mjs +1 -1
  167. package/fesm2022/acorex-modules-conversation.mjs +952 -0
  168. package/fesm2022/acorex-modules-conversation.mjs.map +1 -0
  169. package/fesm2022/acorex-modules-converstion-test.mjs +23 -0
  170. package/fesm2022/acorex-modules-converstion-test.mjs.map +1 -0
  171. package/fesm2022/{acorex-modules-form-management-designer.page-SoPH2V7i.mjs → acorex-modules-form-template-management-designer.page-DC18KFvK.mjs} +6 -6
  172. package/fesm2022/acorex-modules-form-template-management-designer.page-DC18KFvK.mjs.map +1 -0
  173. package/fesm2022/acorex-modules-form-template-management.mjs +713 -0
  174. package/fesm2022/acorex-modules-form-template-management.mjs.map +1 -0
  175. package/fesm2022/acorex-modules-localization-management.mjs +1019 -0
  176. package/fesm2022/acorex-modules-localization-management.mjs.map +1 -0
  177. package/fesm2022/acorex-modules-notification-management.mjs +29 -35
  178. package/fesm2022/acorex-modules-notification-management.mjs.map +1 -1
  179. package/fesm2022/acorex-modules-platform-management.mjs +1430 -214
  180. package/fesm2022/acorex-modules-platform-management.mjs.map +1 -1
  181. package/fesm2022/acorex-modules-template-management.mjs +187 -141
  182. package/fesm2022/acorex-modules-template-management.mjs.map +1 -1
  183. package/form-template-management/README.md +4 -0
  184. package/form-template-management/index.d.ts +1 -0
  185. package/form-template-management/lib/const.d.ts +7 -0
  186. package/form-template-management/lib/entities/category/category.entity.d.ts +3 -0
  187. package/form-template-management/lib/entities/category/category.module.d.ts +6 -0
  188. package/form-template-management/lib/entities/category/category.service.d.ts +10 -0
  189. package/form-template-management/lib/entities/category/category.types.d.ts +5 -0
  190. package/form-template-management/lib/entities/category/index.d.ts +4 -0
  191. package/form-template-management/lib/entities/template/index.d.ts +4 -0
  192. package/form-template-management/lib/entities/template/template.entity.d.ts +3 -0
  193. package/form-template-management/lib/entities/template/template.module.d.ts +6 -0
  194. package/form-template-management/lib/entities/template/template.service.d.ts +10 -0
  195. package/form-template-management/lib/entities/template/template.types.d.ts +5 -0
  196. package/form-template-management/lib/entity.provider.d.ts +9 -0
  197. package/form-template-management/lib/form-template-management.module.d.ts +10 -0
  198. package/form-template-management/lib/menu.provider.d.ts +5 -0
  199. package/form-template-management/lib/pages/designer/designer.page.d.ts +5 -0
  200. package/localization-management/README.md +4 -0
  201. package/localization-management/index.d.ts +7 -0
  202. package/localization-management/lib/culture/culture.entity.d.ts +3 -0
  203. package/localization-management/lib/culture/culture.service.d.ts +10 -0
  204. package/localization-management/lib/culture/culture.types.d.ts +12 -0
  205. package/localization-management/lib/culture/index.d.ts +3 -0
  206. package/localization-management/lib/entity.loader.d.ts +9 -0
  207. package/localization-management/lib/language/index.d.ts +3 -0
  208. package/localization-management/lib/language/language-slot/language-slot.component.d.ts +19 -0
  209. package/localization-management/lib/localization-management.module.d.ts +10 -0
  210. package/localization-management/lib/localization-management.source.d.ts +3 -0
  211. package/localization-management/lib/localization-store.service.d.ts +7 -0
  212. package/localization-management/lib/menu.provider.d.ts +5 -0
  213. package/localization-management/lib/time-zone/index.d.ts +3 -0
  214. package/localization-management/lib/time-zone/time-zone.entity.d.ts +3 -0
  215. package/localization-management/lib/time-zone/time-zone.service.d.ts +10 -0
  216. package/localization-management/lib/time-zone/time-zone.types.d.ts +9 -0
  217. package/package.json +29 -11
  218. package/platform-management/index.d.ts +1 -2
  219. package/platform-management/lib/common/common.module.d.ts +6 -0
  220. package/platform-management/lib/common/common.source.d.ts +4 -0
  221. package/platform-management/lib/common/country/country-datasource.provider.d.ts +5 -0
  222. package/platform-management/lib/common/country/country.entity.d.ts +3 -0
  223. package/platform-management/lib/common/country/country.service.d.ts +10 -0
  224. package/platform-management/lib/common/country/country.types.d.ts +18 -0
  225. package/platform-management/lib/common/country/index.d.ts +3 -0
  226. package/platform-management/lib/common/currency/currency.entity.d.ts +3 -0
  227. package/platform-management/lib/common/currency/currency.service.d.ts +10 -0
  228. package/platform-management/lib/common/currency/currency.types.d.ts +6 -0
  229. package/platform-management/lib/common/currency/index.d.ts +3 -0
  230. package/platform-management/lib/{languages → common}/entity.loader.d.ts +3 -3
  231. package/platform-management/lib/common/index.d.ts +4 -0
  232. package/platform-management/lib/common/province/index.d.ts +3 -0
  233. package/platform-management/lib/common/province/province.entity.d.ts +3 -0
  234. package/platform-management/lib/common/province/province.service.d.ts +10 -0
  235. package/platform-management/lib/common/province/province.types.d.ts +7 -0
  236. package/platform-management/lib/menu.provider.d.ts +2 -1
  237. package/platform-management/lib/platform-management.module.d.ts +2 -1
  238. package/template-management/index.d.ts +1 -1
  239. package/template-management/lib/{entity.loader.d.ts → entity.provider.d.ts} +3 -3
  240. package/template-management/lib/menu.provider.d.ts +2 -1
  241. package/esm2022/form-management/acorex-modules-form-management.mjs +0 -5
  242. package/esm2022/form-management/index.mjs +0 -2
  243. package/esm2022/form-management/lib/designer/designer.page.mjs +0 -24
  244. package/esm2022/form-management/lib/form-management.module.mjs +0 -53
  245. package/esm2022/form-management/lib/menu.provider.mjs +0 -29
  246. package/esm2022/platform-management/lib/comments/comment-management.service.mjs +0 -18
  247. package/esm2022/platform-management/lib/languages/entities/language.entity.mjs +0 -234
  248. package/esm2022/platform-management/lib/languages/entity.loader.mjs +0 -26
  249. package/esm2022/platform-management/lib/languages/index.mjs +0 -5
  250. package/esm2022/platform-management/lib/languages/language-management.service.mjs +0 -16
  251. package/esm2022/platform-management/lib/languages/language.types.mjs +0 -2
  252. package/esm2022/template-management/lib/entity.loader.mjs +0 -36
  253. package/fesm2022/acorex-modules-auth-acorex-modules-auth-B0aeYVeJ.mjs.map +0 -1
  254. package/fesm2022/acorex-modules-form-management-designer.page-SoPH2V7i.mjs.map +0 -1
  255. package/fesm2022/acorex-modules-form-management.mjs +0 -88
  256. package/fesm2022/acorex-modules-form-management.mjs.map +0 -1
  257. package/form-management/README.md +0 -4
  258. package/form-management/index.d.ts +0 -1
  259. package/form-management/lib/designer/designer.page.d.ts +0 -5
  260. package/form-management/lib/form-management.module.d.ts +0 -8
  261. package/form-management/lib/menu.provider.d.ts +0 -4
  262. package/platform-management/lib/comments/comment-management.service.d.ts +0 -10
  263. package/platform-management/lib/languages/index.d.ts +0 -4
  264. /package/{platform-management/lib/languages/entities → localization-management/lib/language}/language.entity.d.ts +0 -0
  265. /package/{platform-management/lib/languages/language-management.service.d.ts → localization-management/lib/language/language.service.d.ts} +0 -0
  266. /package/{platform-management/lib/languages → localization-management/lib/language}/language.types.d.ts +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/modules",
3
- "version": "18.1.6",
3
+ "version": "18.2.1",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=18.0.0",
6
6
  "@angular/core": ">=18.0.0",
@@ -28,23 +28,41 @@
28
28
  "esm": "./esm2022/application-management/acorex-modules-application-management.mjs",
29
29
  "default": "./fesm2022/acorex-modules-application-management.mjs"
30
30
  },
31
+ "./backend": {
32
+ "types": "./backend/index.d.ts",
33
+ "esm2022": "./esm2022/backend/acorex-modules-backend.mjs",
34
+ "esm": "./esm2022/backend/acorex-modules-backend.mjs",
35
+ "default": "./fesm2022/acorex-modules-backend.mjs"
36
+ },
37
+ "./converstion-test": {
38
+ "types": "./converstion-test/index.d.ts",
39
+ "esm2022": "./esm2022/converstion-test/acorex-modules-converstion-test.mjs",
40
+ "esm": "./esm2022/converstion-test/acorex-modules-converstion-test.mjs",
41
+ "default": "./fesm2022/acorex-modules-converstion-test.mjs"
42
+ },
43
+ "./form-template-management": {
44
+ "types": "./form-template-management/index.d.ts",
45
+ "esm2022": "./esm2022/form-template-management/acorex-modules-form-template-management.mjs",
46
+ "esm": "./esm2022/form-template-management/acorex-modules-form-template-management.mjs",
47
+ "default": "./fesm2022/acorex-modules-form-template-management.mjs"
48
+ },
31
49
  "./auth": {
32
50
  "types": "./auth/index.d.ts",
33
51
  "esm2022": "./esm2022/auth/acorex-modules-auth.mjs",
34
52
  "esm": "./esm2022/auth/acorex-modules-auth.mjs",
35
53
  "default": "./fesm2022/acorex-modules-auth.mjs"
36
54
  },
37
- "./form-management": {
38
- "types": "./form-management/index.d.ts",
39
- "esm2022": "./esm2022/form-management/acorex-modules-form-management.mjs",
40
- "esm": "./esm2022/form-management/acorex-modules-form-management.mjs",
41
- "default": "./fesm2022/acorex-modules-form-management.mjs"
55
+ "./localization-management": {
56
+ "types": "./localization-management/index.d.ts",
57
+ "esm2022": "./esm2022/localization-management/acorex-modules-localization-management.mjs",
58
+ "esm": "./esm2022/localization-management/acorex-modules-localization-management.mjs",
59
+ "default": "./fesm2022/acorex-modules-localization-management.mjs"
42
60
  },
43
- "./backend": {
44
- "types": "./backend/index.d.ts",
45
- "esm2022": "./esm2022/backend/acorex-modules-backend.mjs",
46
- "esm": "./esm2022/backend/acorex-modules-backend.mjs",
47
- "default": "./fesm2022/acorex-modules-backend.mjs"
61
+ "./conversation": {
62
+ "types": "./conversation/index.d.ts",
63
+ "esm2022": "./esm2022/conversation/acorex-modules-conversation.mjs",
64
+ "esm": "./esm2022/conversation/acorex-modules-conversation.mjs",
65
+ "default": "./fesm2022/acorex-modules-conversation.mjs"
48
66
  },
49
67
  "./platform-management": {
50
68
  "types": "./platform-management/index.d.ts",
@@ -1,4 +1,3 @@
1
- export * from './lib/comments/comment-management.service';
2
1
  export * from './lib/platform-management.module';
3
2
  export * from './lib/global-variables';
4
- export * from './lib/languages';
3
+ export * from './lib/common';
@@ -0,0 +1,6 @@
1
+ import * as i0 from "@angular/core";
2
+ export declare class AXMPlatformManagementCommonModule {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXMPlatformManagementCommonModule, never>;
4
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AXMPlatformManagementCommonModule, never, never, never>;
5
+ static ɵinj: i0.ɵɵInjectorDeclaration<AXMPlatformManagementCommonModule>;
6
+ }
@@ -0,0 +1,4 @@
1
+ export declare const CURRENCY_SOURCE_NAME = "common.currency";
2
+ export declare const COUNTRY_SOURCE_NAME = "common.country";
3
+ export declare const PROVINCE_SOURCE_NAME = "common.province";
4
+ export declare const CITY_SOURCE_NAME = "common.city";
@@ -0,0 +1,5 @@
1
+ import { AXPWidgetDataSource, AXPWidgetDataSourceProvider } from '@acorex/platform/layout/builder';
2
+ export declare class AXPPlatformCountryWidgetDataSourceProvider implements AXPWidgetDataSourceProvider {
3
+ private service;
4
+ items(): Promise<AXPWidgetDataSource[]>;
5
+ }
@@ -0,0 +1,3 @@
1
+ import { AXPEntity } from '@acorex/platform/common';
2
+ import { Injector } from '@angular/core';
3
+ export declare function countryEntityFactory(injector: Injector): Promise<AXPEntity | null>;
@@ -0,0 +1,10 @@
1
+ import { AXMEntityCrudServiceImpl } from '@acorex/platform/common';
2
+ import { AXMCountryEntityModel } from './country.types';
3
+ import * as i0 from "@angular/core";
4
+ export declare abstract class AXMCountryService extends AXMEntityCrudServiceImpl<string, AXMCountryEntityModel> {
5
+ }
6
+ export declare class AXMCountryServiceImpl extends AXMCountryService {
7
+ constructor();
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXMCountryServiceImpl, never>;
9
+ static ɵprov: i0.ɵɵInjectableDeclaration<AXMCountryServiceImpl>;
10
+ }
@@ -0,0 +1,18 @@
1
+ import { AXPEntityModel } from '@acorex/platform/common';
2
+ export interface AXMCountryEntityModel extends AXPEntityModel<string> {
3
+ title: string;
4
+ iso2: string;
5
+ iso3: string;
6
+ numericCode: string;
7
+ phoneCode: string;
8
+ capital: string;
9
+ tld: string;
10
+ nativeName: string;
11
+ region: string;
12
+ subregion: string;
13
+ nationality: string;
14
+ geo: {
15
+ latitude: string;
16
+ longitude: string;
17
+ };
18
+ }
@@ -0,0 +1,3 @@
1
+ export * from './country.entity';
2
+ export * from './country.service';
3
+ export * from './country.types';
@@ -0,0 +1,3 @@
1
+ import { AXPEntity } from '@acorex/platform/common';
2
+ import { Injector } from '@angular/core';
3
+ export declare function currencyEntityFactory(injector: Injector): Promise<AXPEntity | null>;
@@ -0,0 +1,10 @@
1
+ import { AXMEntityCrudServiceImpl } from '@acorex/platform/common';
2
+ import { AXMCurrencyEntityModel } from './currency.types';
3
+ import * as i0 from "@angular/core";
4
+ export declare abstract class AXMCurrencyService extends AXMEntityCrudServiceImpl<string, AXMCurrencyEntityModel> {
5
+ }
6
+ export declare class AXMCurrencyServiceImpl extends AXMCurrencyService {
7
+ constructor();
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXMCurrencyServiceImpl, never>;
9
+ static ɵprov: i0.ɵɵInjectableDeclaration<AXMCurrencyServiceImpl>;
10
+ }
@@ -0,0 +1,6 @@
1
+ import { AXPEntityModel } from '@acorex/platform/common';
2
+ export interface AXMCurrencyEntityModel extends AXPEntityModel<string> {
3
+ title: string;
4
+ code: string;
5
+ symbol: string;
6
+ }
@@ -0,0 +1,3 @@
1
+ export * from './currency.entity';
2
+ export * from './currency.service';
3
+ export * from './currency.types';
@@ -1,9 +1,9 @@
1
1
  import { AXPEntity } from '@acorex/platform/common';
2
2
  import { AXPEntityDefinitionLoader } from '@acorex/platform/layout/entity';
3
3
  import * as i0 from "@angular/core";
4
- export declare class AXMLanguageModuleEntityLoader implements AXPEntityDefinitionLoader {
4
+ export declare class AXMCommonModuleEntityLoader implements AXPEntityDefinitionLoader {
5
5
  private injector;
6
6
  get(moduleName: string, entityName: string): Promise<AXPEntity | null>;
7
- static ɵfac: i0.ɵɵFactoryDeclaration<AXMLanguageModuleEntityLoader, never>;
8
- static ɵprov: i0.ɵɵInjectableDeclaration<AXMLanguageModuleEntityLoader>;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXMCommonModuleEntityLoader, never>;
8
+ static ɵprov: i0.ɵɵInjectableDeclaration<AXMCommonModuleEntityLoader>;
9
9
  }
@@ -0,0 +1,4 @@
1
+ export * from './country';
2
+ export * from './currency';
3
+ export * from './entity.loader';
4
+ export * from './common.source';
@@ -0,0 +1,3 @@
1
+ export * from './province.entity';
2
+ export * from './province.service';
3
+ export * from './province.types';
@@ -0,0 +1,3 @@
1
+ import { AXPEntity } from '@acorex/platform/common';
2
+ import { Injector } from '@angular/core';
3
+ export declare function provinceEntityFactory(injector: Injector): Promise<AXPEntity | null>;
@@ -0,0 +1,10 @@
1
+ import { AXMEntityCrudServiceImpl } from '@acorex/platform/common';
2
+ import { AXMProvinceEntityModel } from './province.types';
3
+ import * as i0 from "@angular/core";
4
+ export declare abstract class AXMProvinceService extends AXMEntityCrudServiceImpl<string, AXMProvinceEntityModel> {
5
+ }
6
+ export declare class AXMProvinceServiceImpl extends AXMProvinceService {
7
+ constructor();
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXMProvinceServiceImpl, never>;
9
+ static ɵprov: i0.ɵɵInjectableDeclaration<AXMProvinceServiceImpl>;
10
+ }
@@ -0,0 +1,7 @@
1
+ import { AXPEntityModel } from '@acorex/platform/common';
2
+ import { AXMCountryEntityModel } from '../country';
3
+ export interface AXMProvinceEntityModel extends AXPEntityModel<string> {
4
+ title: string;
5
+ name: string;
6
+ country: AXMCountryEntityModel;
7
+ }
@@ -1,4 +1,5 @@
1
- import { AXPMenuInsertion, AXPMenuProvider } from "@acorex/platform/common";
1
+ import { AXPMenuInsertion, AXPMenuProvider } from '@acorex/platform/common';
2
2
  export declare class AXMPlatformManagmentModuleMenuProvider implements AXPMenuProvider {
3
+ private translateService;
3
4
  items(): Promise<AXPMenuInsertion[]>;
4
5
  }
@@ -1,6 +1,7 @@
1
1
  import * as i0 from "@angular/core";
2
+ import * as i1 from "./common/common.module";
2
3
  export declare class AXMPlatformManagementModule {
3
4
  static ɵfac: i0.ɵɵFactoryDeclaration<AXMPlatformManagementModule, never>;
4
- static ɵmod: i0.ɵɵNgModuleDeclaration<AXMPlatformManagementModule, never, never, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AXMPlatformManagementModule, never, [typeof i1.AXMPlatformManagementCommonModule], never>;
5
6
  static ɵinj: i0.ɵɵInjectorDeclaration<AXMPlatformManagementModule>;
6
7
  }
@@ -1,6 +1,6 @@
1
1
  export * from './lib/template-management.module';
2
2
  export * from './lib/entities';
3
- export * from './lib/entity.loader';
3
+ export * from './lib/entity.provider';
4
4
  export * from './lib/template-management.types';
5
5
  export * from './lib/text-management.source';
6
6
  export * from './lib/template.service';
@@ -1,9 +1,9 @@
1
1
  import { AXPEntity } from '@acorex/platform/common';
2
2
  import { AXPEntityDefinitionLoader } from '@acorex/platform/layout/entity';
3
3
  import * as i0 from "@angular/core";
4
- export declare class AXMTemplateModuleEntityLoader implements AXPEntityDefinitionLoader {
4
+ export declare class AXMTemplateModuleEntityProvider implements AXPEntityDefinitionLoader {
5
5
  private injector;
6
6
  get(moduleName: string, entityName: string): Promise<AXPEntity | null>;
7
- static ɵfac: i0.ɵɵFactoryDeclaration<AXMTemplateModuleEntityLoader, never>;
8
- static ɵprov: i0.ɵɵInjectableDeclaration<AXMTemplateModuleEntityLoader>;
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXMTemplateModuleEntityProvider, never>;
8
+ static ɵprov: i0.ɵɵInjectableDeclaration<AXMTemplateModuleEntityProvider>;
9
9
  }
@@ -1,4 +1,5 @@
1
- import { AXPMenuInsertion, AXPMenuProvider } from "@acorex/platform/common";
1
+ import { AXPMenuInsertion, AXPMenuProvider } from '@acorex/platform/common';
2
2
  export declare class AXMTextTemplateManagmentModuleMenuProvider implements AXPMenuProvider {
3
+ private translateService;
3
4
  items(): Promise<AXPMenuInsertion[]>;
4
5
  }
@@ -1,5 +0,0 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- export * from './index';
5
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWNvcmV4LW1vZHVsZXMtZm9ybS1tYW5hZ2VtZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vbGlicy9tb2R1bGVzL2Zvcm0tbWFuYWdlbWVudC9zcmMvYWNvcmV4LW1vZHVsZXMtZm9ybS1tYW5hZ2VtZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBRUgsY0FBYyxTQUFTLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEdlbmVyYXRlZCBidW5kbGUgaW5kZXguIERvIG5vdCBlZGl0LlxuICovXG5cbmV4cG9ydCAqIGZyb20gJy4vaW5kZXgnO1xuIl19
@@ -1,2 +0,0 @@
1
- export * from './lib/form-management.module';
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzL21vZHVsZXMvZm9ybS1tYW5hZ2VtZW50L3NyYy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFDQSxjQUFjLDhCQUE4QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiXG5leHBvcnQgKiBmcm9tICcuL2xpYi9mb3JtLW1hbmFnZW1lbnQubW9kdWxlJztcbiAgICAgICAgICAgICAgICAiXX0=
@@ -1,24 +0,0 @@
1
- import { AXButtonModule } from '@acorex/components/button';
2
- import { AXDecoratorModule } from '@acorex/components/decorators';
3
- import { AXPLayoutBuilderModule } from '@acorex/platform/layout/builder';
4
- import { AXPLayoutDesignerComponent } from '@acorex/platform/layout/designer';
5
- import { AXPWidgetsModule } from '@acorex/platform/widgets';
6
- import { CommonModule } from '@angular/common';
7
- import { Component } from '@angular/core';
8
- import * as i0 from "@angular/core";
9
- export class AXMFormsDesignerPage {
10
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMFormsDesignerPage, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
11
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.0", type: AXMFormsDesignerPage, isStandalone: true, selector: "ng-component", ngImport: i0, template: "<axp-layout-designer> </axp-layout-designer>\n", dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: AXDecoratorModule }, { kind: "ngmodule", type: AXPWidgetsModule }, { kind: "ngmodule", type: AXPLayoutBuilderModule }, { kind: "ngmodule", type: AXButtonModule }, { kind: "component", type: AXPLayoutDesignerComponent, selector: "axp-layout-designer" }] }); }
12
- }
13
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMFormsDesignerPage, decorators: [{
14
- type: Component,
15
- args: [{ standalone: true, imports: [
16
- CommonModule,
17
- AXDecoratorModule,
18
- AXPWidgetsModule,
19
- AXPLayoutBuilderModule,
20
- AXButtonModule,
21
- AXPLayoutDesignerComponent,
22
- ], template: "<axp-layout-designer> </axp-layout-designer>\n" }]
23
- }] });
24
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVzaWduZXIucGFnZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvbW9kdWxlcy9mb3JtLW1hbmFnZW1lbnQvc3JjL2xpYi9kZXNpZ25lci9kZXNpZ25lci5wYWdlLnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9tb2R1bGVzL2Zvcm0tbWFuYWdlbWVudC9zcmMvbGliL2Rlc2lnbmVyL2Rlc2lnbmVyLnBhZ2UuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sMkJBQTJCLENBQUM7QUFDM0QsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sK0JBQStCLENBQUM7QUFDbEUsT0FBTyxFQUFFLHNCQUFzQixFQUFFLE1BQU0saUNBQWlDLENBQUM7QUFDekUsT0FBTyxFQUFFLDBCQUEwQixFQUFFLE1BQU0sa0NBQWtDLENBQUM7QUFDOUUsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sMEJBQTBCLENBQUM7QUFDNUQsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBYzFDLE1BQU0sT0FBTyxvQkFBb0I7OEdBQXBCLG9CQUFvQjtrR0FBcEIsb0JBQW9CLHdFQ3BCakMsZ0RBQ0EsMkNEV0ksWUFBWSw4QkFDWixpQkFBaUIsOEJBQ2pCLGdCQUFnQiw4QkFDaEIsc0JBQXNCLDhCQUN0QixjQUFjLCtCQUNkLDBCQUEwQjs7MkZBR2pCLG9CQUFvQjtrQkFaaEMsU0FBUztpQ0FFSSxJQUFJLFdBQ1A7d0JBQ1AsWUFBWTt3QkFDWixpQkFBaUI7d0JBQ2pCLGdCQUFnQjt3QkFDaEIsc0JBQXNCO3dCQUN0QixjQUFjO3dCQUNkLDBCQUEwQjtxQkFDM0IiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBBWEJ1dHRvbk1vZHVsZSB9IGZyb20gJ0BhY29yZXgvY29tcG9uZW50cy9idXR0b24nO1xuaW1wb3J0IHsgQVhEZWNvcmF0b3JNb2R1bGUgfSBmcm9tICdAYWNvcmV4L2NvbXBvbmVudHMvZGVjb3JhdG9ycyc7XG5pbXBvcnQgeyBBWFBMYXlvdXRCdWlsZGVyTW9kdWxlIH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9sYXlvdXQvYnVpbGRlcic7XG5pbXBvcnQgeyBBWFBMYXlvdXREZXNpZ25lckNvbXBvbmVudCB9IGZyb20gJ0BhY29yZXgvcGxhdGZvcm0vbGF5b3V0L2Rlc2lnbmVyJztcbmltcG9ydCB7IEFYUFdpZGdldHNNb2R1bGUgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL3dpZGdldHMnO1xuaW1wb3J0IHsgQ29tbW9uTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29tbW9uJztcbmltcG9ydCB7IENvbXBvbmVudCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5AQ29tcG9uZW50KHtcbiAgdGVtcGxhdGVVcmw6ICdkZXNpZ25lci5wYWdlLmh0bWwnLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBpbXBvcnRzOiBbXG4gICAgQ29tbW9uTW9kdWxlLFxuICAgIEFYRGVjb3JhdG9yTW9kdWxlLFxuICAgIEFYUFdpZGdldHNNb2R1bGUsXG4gICAgQVhQTGF5b3V0QnVpbGRlck1vZHVsZSxcbiAgICBBWEJ1dHRvbk1vZHVsZSxcbiAgICBBWFBMYXlvdXREZXNpZ25lckNvbXBvbmVudCxcbiAgXSxcbn0pXG5leHBvcnQgY2xhc3MgQVhNRm9ybXNEZXNpZ25lclBhZ2Uge1xuXG59XG4iLCI8YXhwLWxheW91dC1kZXNpZ25lcj4gPC9heHAtbGF5b3V0LWRlc2lnbmVyPlxuIl19
@@ -1,53 +0,0 @@
1
- import { AXP_MENU_PROVIDER } from '@acorex/platform/common';
2
- import { AXPWidgetsModule } from '@acorex/platform/widgets';
3
- import { NgModule } from '@angular/core';
4
- import { RouterModule } from '@angular/router';
5
- import { AXMFormManagmentModuleMenuProvider } from './menu.provider';
6
- import * as i0 from "@angular/core";
7
- import * as i1 from "@angular/router";
8
- const routes = [
9
- {
10
- path: 'forms',
11
- children: [
12
- {
13
- path: 'designer',
14
- loadComponent: () => import('./designer/designer.page').then((c) => c.AXMFormsDesignerPage),
15
- },
16
- {
17
- path: 'preview',
18
- loadComponent: () => import('@acorex/platform/layout/designer').then((c) => c.AXPLayoutDesignerPreviewComponent),
19
- },
20
- {
21
- path: 'viewer',
22
- loadComponent: () => import('@acorex/platform/layout/designer').then((c) => c.AXPLayoutDesignerPreviewViewerComponent),
23
- },
24
- ],
25
- },
26
- ];
27
- export class AXMFormManagementModule {
28
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMFormManagementModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
29
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.0", ngImport: i0, type: AXMFormManagementModule, imports: [i1.RouterModule, AXPWidgetsModule] }); }
30
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMFormManagementModule, providers: [
31
- {
32
- provide: AXP_MENU_PROVIDER,
33
- useClass: AXMFormManagmentModuleMenuProvider,
34
- multi: true
35
- }
36
- ], imports: [RouterModule.forChild(routes), AXPWidgetsModule] }); }
37
- }
38
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXMFormManagementModule, decorators: [{
39
- type: NgModule,
40
- args: [{
41
- imports: [RouterModule.forChild(routes), AXPWidgetsModule],
42
- exports: [],
43
- declarations: [],
44
- providers: [
45
- {
46
- provide: AXP_MENU_PROVIDER,
47
- useClass: AXMFormManagmentModuleMenuProvider,
48
- multi: true
49
- }
50
- ]
51
- }]
52
- }] });
53
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZm9ybS1tYW5hZ2VtZW50Lm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvbW9kdWxlcy9mb3JtLW1hbmFnZW1lbnQvc3JjL2xpYi9mb3JtLW1hbmFnZW1lbnQubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLHlCQUF5QixDQUFDO0FBQzVELE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLDBCQUEwQixDQUFDO0FBQzVELE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFlBQVksRUFBVSxNQUFNLGlCQUFpQixDQUFDO0FBQ3ZELE9BQU8sRUFBRSxrQ0FBa0MsRUFBRSxNQUFNLGlCQUFpQixDQUFDOzs7QUFFckUsTUFBTSxNQUFNLEdBQVc7SUFDckI7UUFDRSxJQUFJLEVBQUUsT0FBTztRQUNiLFFBQVEsRUFBRTtZQUNSO2dCQUNFLElBQUksRUFBRSxVQUFVO2dCQUNoQixhQUFhLEVBQUUsR0FBRyxFQUFFLENBQUMsTUFBTSxDQUFDLDBCQUEwQixDQUFDLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQUMsb0JBQW9CLENBQUM7YUFDNUY7WUFDRDtnQkFDRSxJQUFJLEVBQUUsU0FBUztnQkFDZixhQUFhLEVBQUUsR0FBRyxFQUFFLENBQ2xCLE1BQU0sQ0FBQyxrQ0FBa0MsQ0FBQyxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQyxDQUFDLGlDQUFpQyxDQUFDO2FBQzlGO1lBQ0Q7Z0JBQ0UsSUFBSSxFQUFFLFFBQVE7Z0JBRWQsYUFBYSxFQUFFLEdBQUcsRUFBRSxDQUNsQixNQUFNLENBQUMsa0NBQWtDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLEVBQUUsRUFBRSxDQUFDLENBQUMsQ0FBQyx1Q0FBdUMsQ0FBQzthQUNwRztTQUNGO0tBQ0Y7Q0FDRixDQUFDO0FBY0YsTUFBTSxPQUFPLHVCQUF1Qjs4R0FBdkIsdUJBQXVCOytHQUF2Qix1QkFBdUIsNkJBWE8sZ0JBQWdCOytHQVc5Qyx1QkFBdUIsYUFSdkI7WUFDVDtnQkFDRSxPQUFPLEVBQUUsaUJBQWlCO2dCQUMxQixRQUFRLEVBQUUsa0NBQWtDO2dCQUM1QyxLQUFLLEVBQUUsSUFBSTthQUNaO1NBQ0YsWUFUUyxZQUFZLENBQUMsUUFBUSxDQUFDLE1BQU0sQ0FBQyxFQUFFLGdCQUFnQjs7MkZBVzlDLHVCQUF1QjtrQkFabkMsUUFBUTttQkFBQztvQkFDUixPQUFPLEVBQUUsQ0FBQyxZQUFZLENBQUMsUUFBUSxDQUFDLE1BQU0sQ0FBQyxFQUFFLGdCQUFnQixDQUFDO29CQUMxRCxPQUFPLEVBQUUsRUFBRTtvQkFDWCxZQUFZLEVBQUUsRUFBRTtvQkFDaEIsU0FBUyxFQUFFO3dCQUNUOzRCQUNFLE9BQU8sRUFBRSxpQkFBaUI7NEJBQzFCLFFBQVEsRUFBRSxrQ0FBa0M7NEJBQzVDLEtBQUssRUFBRSxJQUFJO3lCQUNaO3FCQUNGO2lCQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVhQX01FTlVfUFJPVklERVIgfSBmcm9tICdAYWNvcmV4L3BsYXRmb3JtL2NvbW1vbic7XG5pbXBvcnQgeyBBWFBXaWRnZXRzTW9kdWxlIH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS93aWRnZXRzJztcbmltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBSb3V0ZXJNb2R1bGUsIFJvdXRlcyB9IGZyb20gJ0Bhbmd1bGFyL3JvdXRlcic7XG5pbXBvcnQgeyBBWE1Gb3JtTWFuYWdtZW50TW9kdWxlTWVudVByb3ZpZGVyIH0gZnJvbSAnLi9tZW51LnByb3ZpZGVyJztcblxuY29uc3Qgcm91dGVzOiBSb3V0ZXMgPSBbXG4gIHtcbiAgICBwYXRoOiAnZm9ybXMnLFxuICAgIGNoaWxkcmVuOiBbXG4gICAgICB7XG4gICAgICAgIHBhdGg6ICdkZXNpZ25lcicsXG4gICAgICAgIGxvYWRDb21wb25lbnQ6ICgpID0+IGltcG9ydCgnLi9kZXNpZ25lci9kZXNpZ25lci5wYWdlJykudGhlbigoYykgPT4gYy5BWE1Gb3Jtc0Rlc2lnbmVyUGFnZSksXG4gICAgICB9LFxuICAgICAge1xuICAgICAgICBwYXRoOiAncHJldmlldycsXG4gICAgICAgIGxvYWRDb21wb25lbnQ6ICgpID0+XG4gICAgICAgICAgaW1wb3J0KCdAYWNvcmV4L3BsYXRmb3JtL2xheW91dC9kZXNpZ25lcicpLnRoZW4oKGMpID0+IGMuQVhQTGF5b3V0RGVzaWduZXJQcmV2aWV3Q29tcG9uZW50KSxcbiAgICAgIH0sXG4gICAgICB7XG4gICAgICAgIHBhdGg6ICd2aWV3ZXInLFxuXG4gICAgICAgIGxvYWRDb21wb25lbnQ6ICgpID0+XG4gICAgICAgICAgaW1wb3J0KCdAYWNvcmV4L3BsYXRmb3JtL2xheW91dC9kZXNpZ25lcicpLnRoZW4oKGMpID0+IGMuQVhQTGF5b3V0RGVzaWduZXJQcmV2aWV3Vmlld2VyQ29tcG9uZW50KSxcbiAgICAgIH0sXG4gICAgXSxcbiAgfSxcbl07XG5cbkBOZ01vZHVsZSh7XG4gIGltcG9ydHM6IFtSb3V0ZXJNb2R1bGUuZm9yQ2hpbGQocm91dGVzKSwgQVhQV2lkZ2V0c01vZHVsZV0sXG4gIGV4cG9ydHM6IFtdLFxuICBkZWNsYXJhdGlvbnM6IFtdLFxuICBwcm92aWRlcnM6IFtcbiAgICB7XG4gICAgICBwcm92aWRlOiBBWFBfTUVOVV9QUk9WSURFUixcbiAgICAgIHVzZUNsYXNzOiBBWE1Gb3JtTWFuYWdtZW50TW9kdWxlTWVudVByb3ZpZGVyLFxuICAgICAgbXVsdGk6IHRydWVcbiAgICB9XG4gIF1cbn0pXG5leHBvcnQgY2xhc3MgQVhNRm9ybU1hbmFnZW1lbnRNb2R1bGUgeyB9XG4iXX0=
@@ -1,29 +0,0 @@
1
- export class AXMFormManagmentModuleMenuProvider {
2
- async items() {
3
- return [
4
- {
5
- items: [
6
- {
7
- priority: 9001,
8
- text: 'Forms Management',
9
- icon: 'fa-solid fa-file-invoice',
10
- children: [
11
- {
12
- text: "Templates",
13
- },
14
- {
15
- text: "Widgets",
16
- },
17
- {
18
- text: "Designer",
19
- path: '/forms/designer',
20
- priority: 100
21
- }
22
- ]
23
- }
24
- ]
25
- }
26
- ];
27
- }
28
- }
29
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWVudS5wcm92aWRlci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvbW9kdWxlcy9mb3JtLW1hbmFnZW1lbnQvc3JjL2xpYi9tZW51LnByb3ZpZGVyLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUVBLE1BQU0sT0FBTyxrQ0FBa0M7SUFDM0MsS0FBSyxDQUFDLEtBQUs7UUFDUCxPQUFPO1lBQ0g7Z0JBQ0ksS0FBSyxFQUFFO29CQUNIO3dCQUNJLFFBQVEsRUFBRSxJQUFJO3dCQUNkLElBQUksRUFBRSxrQkFBa0I7d0JBQ3hCLElBQUksRUFBRSwwQkFBMEI7d0JBQ2hDLFFBQVEsRUFBRTs0QkFDTjtnQ0FDSSxJQUFJLEVBQUUsV0FBVzs2QkFDcEI7NEJBQ0Q7Z0NBQ0ksSUFBSSxFQUFFLFNBQVM7NkJBQ2xCOzRCQUNEO2dDQUNJLElBQUksRUFBRSxVQUFVO2dDQUNoQixJQUFJLEVBQUUsaUJBQWlCO2dDQUN2QixRQUFRLEVBQUUsR0FBRzs2QkFDaEI7eUJBQ0o7cUJBQ0o7aUJBQ0o7YUFDSjtTQUVrQixDQUFBO0lBQzNCLENBQUM7Q0FFSiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEFYUE1lbnVJbnNlcnRpb24sIEFYUE1lbnVQcm92aWRlciB9IGZyb20gXCJAYWNvcmV4L3BsYXRmb3JtL2NvbW1vblwiO1xuXG5leHBvcnQgY2xhc3MgQVhNRm9ybU1hbmFnbWVudE1vZHVsZU1lbnVQcm92aWRlciBpbXBsZW1lbnRzIEFYUE1lbnVQcm92aWRlciB7XG4gICAgYXN5bmMgaXRlbXMoKTogUHJvbWlzZTxBWFBNZW51SW5zZXJ0aW9uW10+IHtcbiAgICAgICAgcmV0dXJuIFtcbiAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICBpdGVtczogW1xuICAgICAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgICAgICBwcmlvcml0eTogOTAwMSxcbiAgICAgICAgICAgICAgICAgICAgICAgIHRleHQ6ICdGb3JtcyBNYW5hZ2VtZW50JyxcbiAgICAgICAgICAgICAgICAgICAgICAgIGljb246ICdmYS1zb2xpZCBmYS1maWxlLWludm9pY2UnLFxuICAgICAgICAgICAgICAgICAgICAgICAgY2hpbGRyZW46IFtcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHRleHQ6IFwiVGVtcGxhdGVzXCIsXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgfSxcbiAgICAgICAgICAgICAgICAgICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHRleHQ6IFwiV2lkZ2V0c1wiLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAge1xuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICB0ZXh0OiBcIkRlc2lnbmVyXCIsXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHBhdGg6ICcvZm9ybXMvZGVzaWduZXInLFxuICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBwcmlvcml0eTogMTAwXG4gICAgICAgICAgICAgICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgICAgICAgICAgICAgXVxuICAgICAgICAgICAgICAgICAgICB9XG4gICAgICAgICAgICAgICAgXVxuICAgICAgICAgICAgfVxuXG4gICAgICAgIF0gYXMgQVhQTWVudUluc2VydGlvbltdXG4gICAgfVxuXG59Il19
@@ -1,18 +0,0 @@
1
- import { AXMEntityCrudServiceImpl, AXPEntityDataProviderImpl } from '@acorex/platform/common';
2
- import { Injectable } from '@angular/core';
3
- import * as i0 from "@angular/core";
4
- export class AXPCommentServiceImpl extends AXMEntityCrudServiceImpl {
5
- constructor() {
6
- super('comments');
7
- this.messageReactionDataProvider = new AXPEntityDataProviderImpl(super.storageService, 'messageReaction');
8
- }
9
- async like(payload) {
10
- return this.messageReactionDataProvider.insertOne(payload);
11
- }
12
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPCommentServiceImpl, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
13
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPCommentServiceImpl }); }
14
- }
15
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.0", ngImport: i0, type: AXPCommentServiceImpl, decorators: [{
16
- type: Injectable
17
- }], ctorParameters: () => [] });
18
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29tbWVudC1tYW5hZ2VtZW50LnNlcnZpY2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL21vZHVsZXMvcGxhdGZvcm0tbWFuYWdlbWVudC9zcmMvbGliL2NvbW1lbnRzL2NvbW1lbnQtbWFuYWdlbWVudC5zZXJ2aWNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSx3QkFBd0IsRUFBRSx5QkFBeUIsRUFBRSxNQUFNLHlCQUF5QixDQUFDO0FBTzlGLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBRzNDLE1BQU0sT0FBTyxxQkFBc0IsU0FBUSx3QkFLMUM7SUFNQztRQUNFLEtBQUssQ0FBQyxVQUFVLENBQUMsQ0FBQztRQU5WLGdDQUEyQixHQUFHLElBQUkseUJBQXlCLENBQ25FLEtBQUssQ0FBQyxjQUFjLEVBQ3BCLGlCQUFpQixDQUNsQixDQUFDO0lBSUYsQ0FBQztJQUVELEtBQUssQ0FBQyxJQUFJLENBQUMsT0FBc0M7UUFDL0MsT0FBTyxJQUFJLENBQUMsMkJBQTJCLENBQUMsU0FBUyxDQUFDLE9BQU8sQ0FBQyxDQUFDO0lBQzdELENBQUM7OEdBakJVLHFCQUFxQjtrSEFBckIscUJBQXFCOzsyRkFBckIscUJBQXFCO2tCQURqQyxVQUFVIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQVhNRW50aXR5Q3J1ZFNlcnZpY2VJbXBsLCBBWFBFbnRpdHlEYXRhUHJvdmlkZXJJbXBsIH0gZnJvbSAnQGFjb3JleC9wbGF0Zm9ybS9jb21tb24nO1xuaW1wb3J0IHtcbiAgQVhQQ29tbWVudCxcbiAgQVhQQ29tbWVudENyZWF0ZVJlcXVlc3QsXG4gIEFYUENvbW1lbnRFbnRpdHlNb2RlbCxcbiAgQVhQTWVzc2FnZVJlYWN0aW9uRW50aXR5TW9kZWwsXG59IGZyb20gJ0BhY29yZXgvcGxhdGZvcm0vdGhlbWVzL3NoYXJlZCc7XG5pbXBvcnQgeyBJbmplY3RhYmxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBJbmplY3RhYmxlKClcbmV4cG9ydCBjbGFzcyBBWFBDb21tZW50U2VydmljZUltcGwgZXh0ZW5kcyBBWE1FbnRpdHlDcnVkU2VydmljZUltcGw8XG4gIHN0cmluZyxcbiAgQVhQQ29tbWVudEVudGl0eU1vZGVsLFxuICBBWFBDb21tZW50Q3JlYXRlUmVxdWVzdCxcbiAgQVhQQ29tbWVudFxuPiB7XG4gIHByb3RlY3RlZCBtZXNzYWdlUmVhY3Rpb25EYXRhUHJvdmlkZXIgPSBuZXcgQVhQRW50aXR5RGF0YVByb3ZpZGVySW1wbDxzdHJpbmcsIEFYUE1lc3NhZ2VSZWFjdGlvbkVudGl0eU1vZGVsPihcbiAgICBzdXBlci5zdG9yYWdlU2VydmljZSxcbiAgICAnbWVzc2FnZVJlYWN0aW9uJ1xuICApO1xuXG4gIGNvbnN0cnVjdG9yKCkge1xuICAgIHN1cGVyKCdjb21tZW50cycpO1xuICB9XG5cbiAgYXN5bmMgbGlrZShwYXlsb2FkOiBBWFBNZXNzYWdlUmVhY3Rpb25FbnRpdHlNb2RlbCk6IFByb21pc2U8c3RyaW5nPiB7XG4gICAgcmV0dXJuIHRoaXMubWVzc2FnZVJlYWN0aW9uRGF0YVByb3ZpZGVyLmluc2VydE9uZShwYXlsb2FkKTtcbiAgfVxufVxuIl19