aril 0.0.49 → 0.0.51

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 (618) hide show
  1. package/boot/config/api/{index.ts → index.d.ts} +1 -1
  2. package/boot/config/api/src/api.service.d.ts +14 -0
  3. package/boot/config/api/src/interfaces.d.ts +9 -0
  4. package/boot/config/apps/{index.ts → index.d.ts} +2 -2
  5. package/boot/config/apps/src/apps.service.d.ts +16 -0
  6. package/boot/config/apps/src/interfaces.d.ts +23 -0
  7. package/boot/config/apps/src/showdowDOMWrapper.d.ts +10 -0
  8. package/boot/config/plugins/{index.ts → index.d.ts} +2 -2
  9. package/boot/config/plugins/src/getNgZone.d.ts +5 -0
  10. package/boot/config/plugins/src/interfaces.d.ts +18 -0
  11. package/boot/config/plugins/src/plugins.service.d.ts +9 -0
  12. package/boot/host/{index.ts → index.d.ts} +1 -1
  13. package/boot/host/src/app.component.d.ts +8 -0
  14. package/boot/host/src/bootstrap.d.ts +2 -0
  15. package/boot/index.d.ts +1 -0
  16. package/boot/mfe/{index.ts → index.d.ts} +1 -1
  17. package/boot/mfe/src/app.component.d.ts +12 -0
  18. package/boot/mfe/src/appComponentLoader.d.ts +1 -0
  19. package/boot/mfe/src/bootstrap.d.ts +6 -0
  20. package/boot/mfe/src/loadStyles.d.ts +3 -0
  21. package/esm2022/aril.mjs +5 -0
  22. package/esm2022/boot/aril-boot.mjs +5 -0
  23. package/esm2022/boot/config/api/aril-boot-config-api.mjs +5 -0
  24. package/esm2022/boot/config/api/index.mjs +2 -0
  25. package/esm2022/boot/config/api/src/api.service.mjs +42 -0
  26. package/esm2022/boot/config/api/src/interfaces.mjs +11 -0
  27. package/esm2022/boot/config/apps/aril-boot-config-apps.mjs +5 -0
  28. package/esm2022/boot/config/apps/index.mjs +3 -0
  29. package/esm2022/boot/config/apps/src/apps.service.mjs +51 -0
  30. package/esm2022/boot/config/apps/src/interfaces.mjs +17 -0
  31. package/esm2022/boot/config/apps/src/showdowDOMWrapper.mjs +35 -0
  32. package/esm2022/boot/config/plugins/aril-boot-config-plugins.mjs +5 -0
  33. package/esm2022/boot/config/plugins/index.mjs +3 -0
  34. package/esm2022/boot/config/plugins/src/getNgZone.mjs +12 -0
  35. package/esm2022/boot/config/plugins/src/interfaces.mjs +3 -0
  36. package/esm2022/boot/config/plugins/src/plugins.service.mjs +62 -0
  37. package/esm2022/boot/host/aril-boot-host.mjs +5 -0
  38. package/esm2022/boot/host/index.mjs +2 -0
  39. package/esm2022/boot/host/src/app.component.mjs +32 -0
  40. package/esm2022/boot/host/src/bootstrap.mjs +50 -0
  41. package/esm2022/boot/index.mjs +2 -0
  42. package/esm2022/boot/mfe/aril-boot-mfe.mjs +5 -0
  43. package/esm2022/boot/mfe/index.mjs +2 -0
  44. package/esm2022/boot/mfe/src/app.component.mjs +60 -0
  45. package/esm2022/boot/mfe/src/appComponentLoader.mjs +5 -0
  46. package/esm2022/boot/mfe/src/bootstrap.mjs +64 -0
  47. package/esm2022/boot/mfe/src/loadStyles.mjs +16 -0
  48. package/esm2022/http/aril-http.mjs +5 -0
  49. package/esm2022/http/index.mjs +12 -0
  50. package/esm2022/http/lib/enums.mjs +16 -0
  51. package/esm2022/http/lib/interfaces.mjs +15 -0
  52. package/esm2022/http/src/httpBackend.mjs +17 -0
  53. package/esm2022/http/src/httpClient.mjs +14 -0
  54. package/esm2022/http/src/interceptor/state-machine.interceptor.mjs +8 -0
  55. package/esm2022/http/src/serviceBase.mjs +60 -0
  56. package/esm2022/http/src/serviceMockBase.mjs +5 -0
  57. package/esm2022/http/src/serviceRequest.mjs +21 -0
  58. package/esm2022/http/src/serviceStateMethods.mjs +118 -0
  59. package/esm2022/i18n/aril-i18n.mjs +5 -0
  60. package/esm2022/i18n/index.mjs +6 -0
  61. package/esm2022/i18n/src/folder-name-token.mjs +3 -0
  62. package/esm2022/i18n/src/i18n.module.mjs +17 -0
  63. package/esm2022/i18n/src/loader.mjs +20 -0
  64. package/esm2022/i18n/src/provideI18n.mjs +16 -0
  65. package/esm2022/i18n/src/provideScope.mjs +18 -0
  66. package/esm2022/keycloak/aril-keycloak.mjs +5 -0
  67. package/esm2022/keycloak/index.mjs +4 -0
  68. package/esm2022/keycloak/src/auth.guard.mjs +39 -0
  69. package/esm2022/keycloak/src/auth.interceptor.mjs +10 -0
  70. package/esm2022/keycloak/src/keycloak.manager.mjs +76 -0
  71. package/esm2022/public-api.mjs +3 -0
  72. package/esm2022/theme/aril-theme.mjs +5 -0
  73. package/esm2022/theme/index.mjs +2 -0
  74. package/esm2022/theme/layout/app/breadcrumb/app.breadcrumb.component.mjs +41 -0
  75. package/esm2022/theme/layout/app/config/app.config.component.mjs +132 -0
  76. package/esm2022/theme/layout/app/layout/app.layout.component.mjs +147 -0
  77. package/esm2022/theme/layout/app/layout/mfe.layout.component.mjs +67 -0
  78. package/esm2022/theme/layout/app/menu/app.menu.component.mjs +398 -0
  79. package/esm2022/theme/layout/app/profileSidebar/app.profilesidebar.component.mjs +28 -0
  80. package/esm2022/theme/layout/app/sidebar/app.sidebar.component.mjs +41 -0
  81. package/esm2022/theme/layout/app/topbar/app.topbar.component.mjs +34 -0
  82. package/esm2022/theme/layout/aril-theme-layout.mjs +5 -0
  83. package/esm2022/theme/layout/index.mjs +4 -0
  84. package/esm2022/theme/layout/service/app.layout.service.mjs +127 -0
  85. package/esm2022/theme/layout/service/app.menu.service.mjs +53 -0
  86. package/esm2022/theme/layout/service/menuchangeevent.mjs +2 -0
  87. package/esm2022/ui/aril-ui.mjs +5 -0
  88. package/esm2022/ui/autoComplete/aril-ui-autoComplete.mjs +5 -0
  89. package/esm2022/ui/autoComplete/index.mjs +2 -0
  90. package/esm2022/ui/autoComplete/src/auto-complete.component.mjs +81 -0
  91. package/esm2022/ui/autoComplete/src/interfaces.mjs +2 -0
  92. package/esm2022/ui/badge/aril-ui-badge.mjs +5 -0
  93. package/esm2022/ui/badge/index.mjs +2 -0
  94. package/esm2022/ui/badge/src/badge.component.mjs +19 -0
  95. package/esm2022/ui/button/aril-ui-button.mjs +5 -0
  96. package/esm2022/ui/button/index.mjs +3 -0
  97. package/esm2022/ui/button/src/button.component.mjs +37 -0
  98. package/esm2022/ui/button/src/split-button.component.mjs +18 -0
  99. package/esm2022/ui/calendar/aril-ui-calendar.mjs +5 -0
  100. package/esm2022/ui/calendar/index.mjs +2 -0
  101. package/esm2022/ui/calendar/src/calendar.component.mjs +119 -0
  102. package/esm2022/ui/checkbox/aril-ui-checkbox.mjs +5 -0
  103. package/esm2022/ui/checkbox/index.mjs +3 -0
  104. package/esm2022/ui/checkbox/src/check-box.component.mjs +24 -0
  105. package/esm2022/ui/checkbox/src/tri-state-checkbox.component.mjs +24 -0
  106. package/esm2022/ui/dxField/aril-ui-dxField.mjs +5 -0
  107. package/esm2022/ui/dxField/index.mjs +2 -0
  108. package/esm2022/ui/dxField/src/dx-field.component.mjs +18 -0
  109. package/esm2022/ui/field/aril-ui-field.mjs +5 -0
  110. package/esm2022/ui/field/index.mjs +2 -0
  111. package/esm2022/ui/field/src/field.component.mjs +39 -0
  112. package/esm2022/ui/fileUpload/aril-ui-fileUpload.mjs +5 -0
  113. package/esm2022/ui/fileUpload/index.mjs +2 -0
  114. package/esm2022/ui/fileUpload/src/file-upload.component.mjs +61 -0
  115. package/esm2022/ui/form/aril-ui-form.mjs +5 -0
  116. package/esm2022/ui/form/index.mjs +22 -0
  117. package/esm2022/ui/form/src/form-submit-button.component.mjs +40 -0
  118. package/esm2022/ui/form/src/form.component.mjs +27 -0
  119. package/esm2022/ui/index.mjs +2 -0
  120. package/esm2022/ui/lib/aril-ui-lib.mjs +5 -0
  121. package/esm2022/ui/lib/index.mjs +15 -0
  122. package/esm2022/ui/lib/src/form/form-error-message.component.mjs +33 -0
  123. package/esm2022/ui/lib/src/form/form-error-message.directive.mjs +34 -0
  124. package/esm2022/ui/lib/src/form/form-field-builder.mjs +23 -0
  125. package/esm2022/ui/lib/src/form/form-validation.mjs +14 -0
  126. package/esm2022/ui/lib/src/grid/flex-grid.directive.mjs +21 -0
  127. package/esm2022/ui/lib/src/input/baseInput.mjs +24 -0
  128. package/esm2022/ui/lib/src/input/common-input-validators.service.mjs +49 -0
  129. package/esm2022/ui/lib/src/input/dx-input-error-message.pipe.mjs +22 -0
  130. package/esm2022/ui/lib/src/input/input-disabled.directive.mjs +25 -0
  131. package/esm2022/ui/lib/src/input/input-error-message.pipe.mjs +42 -0
  132. package/esm2022/ui/lib/src/input/input-transforms.mjs +8 -0
  133. package/esm2022/ui/lib/src/input/value-accessor.directive.mjs +38 -0
  134. package/esm2022/ui/mask/aril-ui-mask.mjs +5 -0
  135. package/esm2022/ui/mask/index.mjs +2 -0
  136. package/esm2022/ui/mask/src/mask.component.mjs +35 -0
  137. package/esm2022/ui/number/aril-ui-number.mjs +5 -0
  138. package/esm2022/ui/number/index.mjs +2 -0
  139. package/esm2022/ui/number/src/number.component.mjs +36 -0
  140. package/esm2022/ui/overlayPanel/aril-ui-overlayPanel.mjs +5 -0
  141. package/esm2022/ui/overlayPanel/index.mjs +2 -0
  142. package/esm2022/ui/overlayPanel/src/overlay-panel.component.mjs +20 -0
  143. package/esm2022/ui/panel/aril-ui-panel.mjs +5 -0
  144. package/esm2022/ui/panel/index.mjs +2 -0
  145. package/esm2022/ui/panel/src/panel.component.mjs +24 -0
  146. package/esm2022/ui/password/aril-ui-password.mjs +5 -0
  147. package/esm2022/ui/password/index.mjs +2 -0
  148. package/esm2022/ui/password/src/password.component.mjs +29 -0
  149. package/esm2022/ui/radioButton/aril-ui-radioButton.mjs +5 -0
  150. package/esm2022/ui/radioButton/index.mjs +2 -0
  151. package/esm2022/ui/radioButton/src/radio-button.component.mjs +30 -0
  152. package/esm2022/ui/selectBox/aril-ui-selectBox.mjs +5 -0
  153. package/esm2022/ui/selectBox/index.mjs +2 -0
  154. package/esm2022/ui/selectBox/src/interfaces.mjs +2 -0
  155. package/esm2022/ui/selectBox/src/select-box.component.mjs +54 -0
  156. package/esm2022/ui/switch/aril-ui-switch.mjs +5 -0
  157. package/esm2022/ui/switch/index.mjs +2 -0
  158. package/esm2022/ui/switch/src/switch.component.mjs +23 -0
  159. package/esm2022/ui/table/aril-ui-table.mjs +5 -0
  160. package/esm2022/ui/table/index.mjs +49 -0
  161. package/esm2022/ui/table/src/i18n.mjs +56 -0
  162. package/esm2022/ui/table/src/table-column.component.mjs +23 -0
  163. package/esm2022/ui/table/src/table.component.mjs +94 -0
  164. package/esm2022/ui/tagBox/aril-ui-tagBox.mjs +5 -0
  165. package/esm2022/ui/tagBox/index.mjs +2 -0
  166. package/esm2022/ui/tagBox/src/tag-box.component.mjs +50 -0
  167. package/esm2022/ui/text/aril-ui-text.mjs +5 -0
  168. package/esm2022/ui/text/index.mjs +2 -0
  169. package/esm2022/ui/text/src/text.component.mjs +40 -0
  170. package/esm2022/ui/textArea/aril-ui-textArea.mjs +5 -0
  171. package/esm2022/ui/textArea/index.mjs +2 -0
  172. package/esm2022/ui/textArea/src/text-area.component.mjs +26 -0
  173. package/esm2022/ui/toggle-button/aril-ui-toggle-button.mjs +5 -0
  174. package/esm2022/ui/toggle-button/index.mjs +2 -0
  175. package/esm2022/ui/toggle-button/src/toggle-button.component.mjs +25 -0
  176. package/esm2022/ui/tree/aril-ui-tree.mjs +5 -0
  177. package/esm2022/ui/tree/index.mjs +2 -0
  178. package/esm2022/ui/tree/src/tree.component.mjs +34 -0
  179. package/esm2022/ui/treeTable/aril-ui-treeTable.mjs +5 -0
  180. package/esm2022/ui/treeTable/index.mjs +2 -0
  181. package/esm2022/ui/treeTable/src/tree-table.component.mjs +55 -0
  182. package/esm2022/ui/value/aril-ui-value.mjs +5 -0
  183. package/esm2022/ui/value/index.mjs +2 -0
  184. package/esm2022/ui/value/src/value.component.mjs +35 -0
  185. package/esm2022/util/aril-util.mjs +5 -0
  186. package/esm2022/util/block/aril-util-block.mjs +5 -0
  187. package/esm2022/util/block/index.mjs +2 -0
  188. package/esm2022/util/block/src/block.mjs +64 -0
  189. package/esm2022/util/custom_pages/aril-util-custom_pages.mjs +5 -0
  190. package/esm2022/util/custom_pages/index.mjs +2 -0
  191. package/esm2022/util/custom_pages/src/notFound.component.mjs +65 -0
  192. package/esm2022/util/index.mjs +2 -0
  193. package/esm2022/util/init-event/aril-util-init-event.mjs +5 -0
  194. package/esm2022/util/init-event/index.mjs +2 -0
  195. package/esm2022/util/init-event/src/init-event.directive.mjs +22 -0
  196. package/esm2022/util/lib/aril-util-lib.mjs +5 -0
  197. package/esm2022/util/lib/index.mjs +4 -0
  198. package/esm2022/util/lib/src/interfaces.mjs +4 -0
  199. package/esm2022/util/lib/src/module-router.mjs +17 -0
  200. package/esm2022/util/lib/src/types.mjs +3 -0
  201. package/esm2022/util/loaders/aril-util-loaders.mjs +5 -0
  202. package/esm2022/util/loaders/index.mjs +3 -0
  203. package/esm2022/util/loaders/script/script.loader.service.mjs +61 -0
  204. package/esm2022/util/loaders/style/style.loader.service.mjs +61 -0
  205. package/esm2022/util/primitive-extensions/aril-util-primitive-extensions.mjs +5 -0
  206. package/esm2022/util/primitive-extensions/index.mjs +5 -0
  207. package/esm2022/util/primitive-extensions/src/boolean.extensions.mjs +2 -0
  208. package/esm2022/util/primitive-extensions/src/date.extensions.mjs +116 -0
  209. package/esm2022/util/primitive-extensions/src/number.extensions.mjs +39 -0
  210. package/esm2022/util/primitive-extensions/src/string.extensions.mjs +23 -0
  211. package/esm2022/util/pub-sub/aril-util-pub-sub.mjs +5 -0
  212. package/esm2022/util/pub-sub/index.mjs +2 -0
  213. package/esm2022/util/pub-sub/src/pub-sub.service.mjs +29 -0
  214. package/fesm2022/aril-app.component-c363Er6g.mjs +76 -0
  215. package/fesm2022/aril-app.component-c363Er6g.mjs.map +1 -0
  216. package/fesm2022/aril-boot-config-api.mjs +59 -0
  217. package/fesm2022/aril-boot-config-api.mjs.map +1 -0
  218. package/fesm2022/aril-boot-config-apps.mjs +106 -0
  219. package/fesm2022/aril-boot-config-apps.mjs.map +1 -0
  220. package/fesm2022/aril-boot-config-plugins.mjs +81 -0
  221. package/fesm2022/aril-boot-config-plugins.mjs.map +1 -0
  222. package/fesm2022/aril-boot-host.mjs +86 -0
  223. package/fesm2022/aril-boot-host.mjs.map +1 -0
  224. package/fesm2022/aril-boot-mfe-app.component-WWRmTfs5.mjs +75 -0
  225. package/fesm2022/aril-boot-mfe-app.component-WWRmTfs5.mjs.map +1 -0
  226. package/fesm2022/aril-boot-mfe-aril-boot-mfe-PwAGdNZE.mjs +90 -0
  227. package/fesm2022/aril-boot-mfe-aril-boot-mfe-PwAGdNZE.mjs.map +1 -0
  228. package/fesm2022/aril-boot-mfe.mjs +16 -0
  229. package/fesm2022/aril-boot-mfe.mjs.map +1 -0
  230. package/fesm2022/aril-boot.mjs +8 -0
  231. package/fesm2022/aril-boot.mjs.map +1 -0
  232. package/fesm2022/aril-http.mjs +273 -0
  233. package/fesm2022/aril-http.mjs.map +1 -0
  234. package/fesm2022/aril-i18n.mjs +72 -0
  235. package/fesm2022/aril-i18n.mjs.map +1 -0
  236. package/fesm2022/aril-keycloak.mjs +129 -0
  237. package/fesm2022/aril-keycloak.mjs.map +1 -0
  238. package/fesm2022/aril-theme-layout.mjs +1010 -0
  239. package/fesm2022/aril-theme-layout.mjs.map +1 -0
  240. package/fesm2022/aril-theme.mjs +8 -0
  241. package/fesm2022/aril-theme.mjs.map +1 -0
  242. package/fesm2022/aril-ui-autoComplete.mjs +88 -0
  243. package/fesm2022/aril-ui-autoComplete.mjs.map +1 -0
  244. package/fesm2022/aril-ui-badge.mjs +26 -0
  245. package/fesm2022/aril-ui-badge.mjs.map +1 -0
  246. package/fesm2022/aril-ui-button.mjs +59 -0
  247. package/fesm2022/aril-ui-button.mjs.map +1 -0
  248. package/fesm2022/aril-ui-calendar.mjs +125 -0
  249. package/fesm2022/aril-ui-calendar.mjs.map +1 -0
  250. package/fesm2022/aril-ui-checkbox.mjs +47 -0
  251. package/fesm2022/aril-ui-checkbox.mjs.map +1 -0
  252. package/fesm2022/aril-ui-dxField.mjs +25 -0
  253. package/fesm2022/aril-ui-dxField.mjs.map +1 -0
  254. package/fesm2022/aril-ui-field.mjs +46 -0
  255. package/fesm2022/aril-ui-field.mjs.map +1 -0
  256. package/fesm2022/aril-ui-fileUpload.mjs +68 -0
  257. package/fesm2022/aril-ui-fileUpload.mjs.map +1 -0
  258. package/fesm2022/aril-ui-form.mjs +86 -0
  259. package/fesm2022/aril-ui-form.mjs.map +1 -0
  260. package/fesm2022/aril-ui-lib.mjs +322 -0
  261. package/fesm2022/aril-ui-lib.mjs.map +1 -0
  262. package/fesm2022/aril-ui-mask.mjs +42 -0
  263. package/fesm2022/aril-ui-mask.mjs.map +1 -0
  264. package/fesm2022/aril-ui-number.mjs +43 -0
  265. package/fesm2022/aril-ui-number.mjs.map +1 -0
  266. package/fesm2022/aril-ui-overlayPanel.mjs +27 -0
  267. package/fesm2022/aril-ui-overlayPanel.mjs.map +1 -0
  268. package/fesm2022/aril-ui-panel.mjs +31 -0
  269. package/fesm2022/aril-ui-panel.mjs.map +1 -0
  270. package/fesm2022/aril-ui-password.mjs +36 -0
  271. package/fesm2022/aril-ui-password.mjs.map +1 -0
  272. package/fesm2022/aril-ui-radioButton.mjs +37 -0
  273. package/fesm2022/aril-ui-radioButton.mjs.map +1 -0
  274. package/fesm2022/aril-ui-selectBox.mjs +61 -0
  275. package/fesm2022/aril-ui-selectBox.mjs.map +1 -0
  276. package/fesm2022/aril-ui-switch.mjs +30 -0
  277. package/fesm2022/aril-ui-switch.mjs.map +1 -0
  278. package/fesm2022/aril-ui-table.mjs +219 -0
  279. package/fesm2022/aril-ui-table.mjs.map +1 -0
  280. package/fesm2022/aril-ui-tagBox.mjs +57 -0
  281. package/fesm2022/aril-ui-tagBox.mjs.map +1 -0
  282. package/fesm2022/aril-ui-text.mjs +47 -0
  283. package/fesm2022/aril-ui-text.mjs.map +1 -0
  284. package/fesm2022/aril-ui-textArea.mjs +33 -0
  285. package/fesm2022/aril-ui-textArea.mjs.map +1 -0
  286. package/fesm2022/aril-ui-toggle-button.mjs +32 -0
  287. package/fesm2022/aril-ui-toggle-button.mjs.map +1 -0
  288. package/fesm2022/aril-ui-tree.mjs +41 -0
  289. package/fesm2022/aril-ui-tree.mjs.map +1 -0
  290. package/fesm2022/aril-ui-treeTable.mjs +62 -0
  291. package/fesm2022/aril-ui-treeTable.mjs.map +1 -0
  292. package/fesm2022/aril-ui-value.mjs +42 -0
  293. package/fesm2022/aril-ui-value.mjs.map +1 -0
  294. package/fesm2022/aril-ui.mjs +8 -0
  295. package/fesm2022/aril-ui.mjs.map +1 -0
  296. package/fesm2022/aril-util-block.mjs +71 -0
  297. package/fesm2022/aril-util-block.mjs.map +1 -0
  298. package/fesm2022/aril-util-custom_pages.mjs +72 -0
  299. package/fesm2022/aril-util-custom_pages.mjs.map +1 -0
  300. package/fesm2022/aril-util-init-event.mjs +29 -0
  301. package/fesm2022/aril-util-init-event.mjs.map +1 -0
  302. package/fesm2022/aril-util-lib.mjs +29 -0
  303. package/fesm2022/aril-util-lib.mjs.map +1 -0
  304. package/fesm2022/aril-util-loaders.mjs +126 -0
  305. package/fesm2022/aril-util-loaders.mjs.map +1 -0
  306. package/fesm2022/aril-util-primitive-extensions.mjs +179 -0
  307. package/fesm2022/aril-util-primitive-extensions.mjs.map +1 -0
  308. package/fesm2022/aril-util-pub-sub.mjs +36 -0
  309. package/fesm2022/aril-util-pub-sub.mjs.map +1 -0
  310. package/fesm2022/aril-util.mjs +8 -0
  311. package/fesm2022/aril-util.mjs.map +1 -0
  312. package/fesm2022/aril.mjs +157 -0
  313. package/fesm2022/aril.mjs.map +1 -0
  314. package/http/{index.ts → index.d.ts} +8 -13
  315. package/http/lib/enums.d.ts +13 -0
  316. package/http/lib/interfaces.d.ts +21 -0
  317. package/http/src/httpBackend.d.ts +8 -0
  318. package/http/src/httpClient.d.ts +8 -0
  319. package/http/src/interceptor/state-machine.interceptor.d.ts +2 -0
  320. package/http/src/serviceBase.d.ts +5 -0
  321. package/http/src/serviceMockBase.d.ts +6 -0
  322. package/http/src/serviceRequest.d.ts +4 -0
  323. package/http/src/serviceStateMethods.d.ts +14 -0
  324. package/i18n/{index.ts → index.d.ts} +5 -5
  325. package/i18n/src/folder-name-token.d.ts +2 -0
  326. package/i18n/src/i18n.module.d.ts +7 -0
  327. package/i18n/src/loader.d.ts +9 -0
  328. package/i18n/src/provideI18n.d.ts +2 -0
  329. package/i18n/src/provideScope.d.ts +5 -0
  330. package/index.d.ts +5 -0
  331. package/keycloak/{index.ts → index.d.ts} +3 -3
  332. package/keycloak/src/auth.guard.d.ts +11 -0
  333. package/keycloak/src/auth.interceptor.d.ts +2 -0
  334. package/keycloak/src/keycloak.manager.d.ts +25 -0
  335. package/package.json +314 -31
  336. package/{public-api.ts → public-api.d.ts} +2 -2
  337. package/theme/index.d.ts +1 -0
  338. package/theme/layout/app/breadcrumb/app.breadcrumb.component.d.ts +16 -0
  339. package/theme/layout/app/config/app.config.component.d.ts +36 -0
  340. package/theme/layout/app/layout/app.layout.component.d.ts +48 -0
  341. package/theme/layout/app/layout/mfe.layout.component.d.ts +8 -0
  342. package/theme/layout/app/menu/app.menu.component.d.ts +50 -0
  343. package/theme/layout/app/profileSidebar/app.profilesidebar.component.d.ts +13 -0
  344. package/theme/layout/app/sidebar/app.sidebar.component.d.ts +15 -0
  345. package/theme/layout/app/topbar/app.topbar.component.d.ts +16 -0
  346. package/theme/layout/index.d.ts +3 -0
  347. package/theme/layout/service/app.layout.service.d.ts +51 -0
  348. package/theme/layout/service/app.menu.service.d.ts +23 -0
  349. package/theme/layout/service/menuchangeevent.d.ts +4 -0
  350. package/ui/autoComplete/{index.ts → index.d.ts} +1 -1
  351. package/ui/autoComplete/src/auto-complete.component.d.ts +24 -0
  352. package/ui/autoComplete/src/interfaces.d.ts +24 -0
  353. package/ui/badge/{index.ts → index.d.ts} +1 -1
  354. package/ui/badge/src/badge.component.d.ts +11 -0
  355. package/ui/button/{index.ts → index.d.ts} +2 -2
  356. package/ui/button/src/button.component.d.ts +24 -0
  357. package/ui/button/src/split-button.component.d.ts +8 -0
  358. package/ui/calendar/{index.ts → index.d.ts} +1 -1
  359. package/ui/calendar/src/calendar.component.d.ts +38 -0
  360. package/ui/checkbox/{index.ts → index.d.ts} +2 -2
  361. package/ui/checkbox/src/check-box.component.d.ts +9 -0
  362. package/ui/checkbox/src/tri-state-checkbox.component.d.ts +9 -0
  363. package/ui/dxField/{index.ts → index.d.ts} +1 -1
  364. package/ui/dxField/src/dx-field.component.d.ts +9 -0
  365. package/ui/field/{index.ts → index.d.ts} +1 -1
  366. package/ui/field/src/field.component.d.ts +25 -0
  367. package/ui/fileUpload/{index.ts → index.d.ts} +1 -1
  368. package/ui/fileUpload/src/file-upload.component.d.ts +47 -0
  369. package/ui/form/index.d.ts +11 -0
  370. package/ui/form/src/form-submit-button.component.d.ts +14 -0
  371. package/ui/form/src/form.component.d.ts +8 -0
  372. package/ui/index.d.ts +1 -0
  373. package/ui/lib/{index.ts → index.d.ts} +11 -16
  374. package/ui/lib/src/form/form-error-message.component.d.ts +9 -0
  375. package/ui/lib/src/form/form-error-message.directive.d.ts +14 -0
  376. package/ui/lib/src/form/form-field-builder.d.ts +8 -0
  377. package/ui/lib/src/form/form-validation.d.ts +2 -0
  378. package/ui/lib/src/grid/flex-grid.directive.d.ts +6 -0
  379. package/ui/lib/src/input/baseInput.d.ts +7 -0
  380. package/ui/lib/src/input/common-input-validators.service.d.ts +20 -0
  381. package/ui/lib/src/input/dx-input-error-message.pipe.d.ts +11 -0
  382. package/ui/lib/src/input/input-disabled.directive.d.ts +9 -0
  383. package/ui/lib/src/input/input-error-message.pipe.d.ts +7 -0
  384. package/ui/lib/src/input/input-transforms.d.ts +5 -0
  385. package/ui/lib/src/input/value-accessor.directive.d.ts +9 -0
  386. package/ui/mask/{index.ts → index.d.ts} +1 -1
  387. package/ui/mask/src/mask.component.d.ts +21 -0
  388. package/ui/number/{index.ts → index.d.ts} +1 -1
  389. package/ui/number/src/number.component.d.ts +27 -0
  390. package/ui/overlayPanel/{index.ts → index.d.ts} +1 -1
  391. package/ui/overlayPanel/src/overlay-panel.component.d.ts +8 -0
  392. package/ui/panel/{index.ts → index.d.ts} +1 -1
  393. package/ui/panel/src/panel.component.d.ts +10 -0
  394. package/ui/password/{index.ts → index.d.ts} +1 -1
  395. package/ui/password/src/password.component.d.ts +11 -0
  396. package/ui/radioButton/{index.ts → index.d.ts} +1 -1
  397. package/ui/radioButton/src/radio-button.component.d.ts +20 -0
  398. package/ui/selectBox/{index.ts → index.d.ts} +1 -1
  399. package/ui/selectBox/src/interfaces.d.ts +32 -0
  400. package/ui/selectBox/src/select-box.component.d.ts +25 -0
  401. package/ui/switch/{index.ts → index.d.ts} +1 -1
  402. package/ui/switch/src/switch.component.d.ts +8 -0
  403. package/ui/table/index.d.ts +16 -0
  404. package/ui/table/src/i18n.d.ts +42 -0
  405. package/ui/table/src/table-column.component.d.ts +24 -0
  406. package/ui/table/src/table.component.d.ts +41 -0
  407. package/ui/tagBox/{index.ts → index.d.ts} +1 -1
  408. package/ui/tagBox/src/tag-box.component.d.ts +15 -0
  409. package/ui/text/{index.ts → index.d.ts} +1 -1
  410. package/ui/text/src/text.component.d.ts +17 -0
  411. package/ui/textArea/{index.ts → index.d.ts} +1 -1
  412. package/ui/textArea/src/text-area.component.d.ts +11 -0
  413. package/ui/toggle-button/index.d.ts +1 -0
  414. package/ui/toggle-button/src/toggle-button.component.d.ts +10 -0
  415. package/ui/tree/{index.ts → index.d.ts} +1 -1
  416. package/ui/tree/src/tree.component.d.ts +19 -0
  417. package/ui/treeTable/{index.ts → index.d.ts} +1 -1
  418. package/ui/treeTable/src/tree-table.component.d.ts +21 -0
  419. package/ui/value/{index.ts → index.d.ts} +1 -1
  420. package/ui/value/src/value.component.d.ts +13 -0
  421. package/util/block/{index.ts → index.d.ts} +1 -1
  422. package/util/block/src/block.d.ts +28 -0
  423. package/util/custom_pages/{index.ts → index.d.ts} +1 -1
  424. package/util/custom_pages/src/notFound.component.d.ts +5 -0
  425. package/util/index.d.ts +1 -0
  426. package/util/init-event/{index.ts → index.d.ts} +1 -1
  427. package/util/init-event/src/init-event.directive.d.ts +8 -0
  428. package/util/lib/{index.ts → index.d.ts} +3 -3
  429. package/util/lib/src/interfaces.d.ts +41 -0
  430. package/util/lib/src/module-router.d.ts +5 -0
  431. package/util/lib/src/types.d.ts +29 -0
  432. package/util/loaders/{index.ts → index.d.ts} +2 -2
  433. package/util/loaders/script/script.loader.service.d.ts +13 -0
  434. package/util/loaders/style/style.loader.service.d.ts +13 -0
  435. package/util/primitive-extensions/{index.ts → index.d.ts} +4 -4
  436. package/util/primitive-extensions/src/{boolean.extensions.ts → boolean.extensions.d.ts} +1 -1
  437. package/util/primitive-extensions/src/date.extensions.d.ts +8 -0
  438. package/util/primitive-extensions/src/number.extensions.d.ts +12 -0
  439. package/util/primitive-extensions/src/string.extensions.d.ts +11 -0
  440. package/util/pub-sub/{index.ts → index.d.ts} +1 -1
  441. package/util/pub-sub/src/pub-sub.service.d.ts +20 -0
  442. package/.eslintrc.json +0 -41
  443. package/boot/config/api/ng-package.json +0 -6
  444. package/boot/config/api/src/api.service.ts +0 -57
  445. package/boot/config/api/src/interfaces.ts +0 -13
  446. package/boot/config/apps/ng-package.json +0 -6
  447. package/boot/config/apps/src/apps.service.ts +0 -64
  448. package/boot/config/apps/src/interfaces.ts +0 -27
  449. package/boot/config/apps/src/showdowDOMWrapper.ts +0 -28
  450. package/boot/config/plugins/ng-package.json +0 -6
  451. package/boot/config/plugins/src/getNgZone.ts +0 -9
  452. package/boot/config/plugins/src/interfaces.ts +0 -11
  453. package/boot/config/plugins/src/plugins.service.ts +0 -81
  454. package/boot/host/ng-package.json +0 -6
  455. package/boot/host/src/app.component.ts +0 -27
  456. package/boot/host/src/bootstrap.ts +0 -61
  457. package/boot/index.ts +0 -1
  458. package/boot/mfe/ng-package.json +0 -6
  459. package/boot/mfe/src/app.component.ts +0 -57
  460. package/boot/mfe/src/appComponentLoader.ts +0 -4
  461. package/boot/mfe/src/bootstrap.ts +0 -78
  462. package/boot/mfe/src/loadStyles.ts +0 -19
  463. package/boot/ng-package.json +0 -6
  464. package/http/lib/enums.ts +0 -13
  465. package/http/lib/interfaces.ts +0 -38
  466. package/http/ng-package.json +0 -6
  467. package/http/src/httpBackend.ts +0 -12
  468. package/http/src/httpClient.ts +0 -20
  469. package/http/src/interceptor/state-machine.interceptor.ts +0 -9
  470. package/http/src/serviceBase.ts +0 -91
  471. package/http/src/serviceMockBase.ts +0 -12
  472. package/http/src/serviceRequest.ts +0 -26
  473. package/http/src/serviceStateMethods.ts +0 -155
  474. package/i18n/ng-package.json +0 -6
  475. package/i18n/src/folder-name-token.ts +0 -3
  476. package/i18n/src/i18n.module.ts +0 -11
  477. package/i18n/src/loader.ts +0 -16
  478. package/i18n/src/provideI18n.ts +0 -18
  479. package/i18n/src/provideScope.ts +0 -20
  480. package/keycloak/ng-package.json +0 -6
  481. package/keycloak/src/auth.guard.ts +0 -37
  482. package/keycloak/src/auth.interceptor.ts +0 -13
  483. package/keycloak/src/keycloak.manager.ts +0 -89
  484. package/ng-package.json +0 -14
  485. package/project.json +0 -39
  486. package/tsconfig.lib.json +0 -12
  487. package/tsconfig.lib.prod.json +0 -10
  488. package/tsconfig.spec.json +0 -9
  489. package/ui/autoComplete/ng-package.json +0 -6
  490. package/ui/autoComplete/src/auto-complete.component.html +0 -11
  491. package/ui/autoComplete/src/auto-complete.component.ts +0 -92
  492. package/ui/autoComplete/src/interfaces.ts +0 -30
  493. package/ui/badge/ng-package.json +0 -6
  494. package/ui/badge/src/badge.component.html +0 -3
  495. package/ui/badge/src/badge.component.ts +0 -19
  496. package/ui/button/ng-package.json +0 -6
  497. package/ui/button/src/button.component.html +0 -10
  498. package/ui/button/src/button.component.ts +0 -43
  499. package/ui/button/src/split-button.component.html +0 -2
  500. package/ui/button/src/split-button.component.ts +0 -17
  501. package/ui/calendar/ng-package.json +0 -6
  502. package/ui/calendar/src/calendar.component.html +0 -31
  503. package/ui/calendar/src/calendar.component.ts +0 -136
  504. package/ui/checkbox/ng-package.json +0 -6
  505. package/ui/checkbox/src/check-box.component.html +0 -9
  506. package/ui/checkbox/src/check-box.component.ts +0 -19
  507. package/ui/checkbox/src/tri-state-checkbox.component.html +0 -7
  508. package/ui/checkbox/src/tri-state-checkbox.component.ts +0 -20
  509. package/ui/dxField/ng-package.json +0 -6
  510. package/ui/dxField/src/dx-field.component.html +0 -8
  511. package/ui/dxField/src/dx-field.component.ts +0 -16
  512. package/ui/field/ng-package.json +0 -6
  513. package/ui/field/src/field.component.html +0 -22
  514. package/ui/field/src/field.component.ts +0 -46
  515. package/ui/fileUpload/ng-package.json +0 -6
  516. package/ui/fileUpload/src/file-upload.component.html +0 -38
  517. package/ui/fileUpload/src/file-upload.component.ts +0 -72
  518. package/ui/form/index.ts +0 -18
  519. package/ui/form/ng-package.json +0 -6
  520. package/ui/form/src/form-submit-button.component.html +0 -12
  521. package/ui/form/src/form-submit-button.component.ts +0 -36
  522. package/ui/form/src/form.component.ts +0 -20
  523. package/ui/index.ts +0 -1
  524. package/ui/lib/ng-package.json +0 -6
  525. package/ui/lib/src/form/form-error-message.component.ts +0 -25
  526. package/ui/lib/src/form/form-error-message.directive.ts +0 -32
  527. package/ui/lib/src/form/form-field-builder.ts +0 -31
  528. package/ui/lib/src/form/form-validation.ts +0 -14
  529. package/ui/lib/src/grid/flex-grid.directive.ts +0 -10
  530. package/ui/lib/src/input/baseInput.ts +0 -30
  531. package/ui/lib/src/input/common-input-validators.service.ts +0 -57
  532. package/ui/lib/src/input/dx-input-error-message.pipe.ts +0 -16
  533. package/ui/lib/src/input/input-disabled.directive.ts +0 -15
  534. package/ui/lib/src/input/input-error-message.pipe.ts +0 -39
  535. package/ui/lib/src/input/input-transforms.ts +0 -11
  536. package/ui/lib/src/input/value-accessor.directive.ts +0 -27
  537. package/ui/mask/ng-package.json +0 -6
  538. package/ui/mask/src/mask.component.css +0 -23
  539. package/ui/mask/src/mask.component.html +0 -17
  540. package/ui/mask/src/mask.component.ts +0 -34
  541. package/ui/ng-package.json +0 -6
  542. package/ui/number/ng-package.json +0 -6
  543. package/ui/number/src/number.component.html +0 -25
  544. package/ui/number/src/number.component.ts +0 -34
  545. package/ui/overlayPanel/ng-package.json +0 -6
  546. package/ui/overlayPanel/src/overlay-panel.component.html +0 -5
  547. package/ui/overlayPanel/src/overlay-panel.component.ts +0 -16
  548. package/ui/panel/ng-package.json +0 -6
  549. package/ui/panel/src/panel.component.css +0 -25
  550. package/ui/panel/src/panel.component.html +0 -38
  551. package/ui/panel/src/panel.component.ts +0 -24
  552. package/ui/password/ng-package.json +0 -6
  553. package/ui/password/src/password.component.html +0 -24
  554. package/ui/password/src/password.component.ts +0 -22
  555. package/ui/radioButton/ng-package.json +0 -6
  556. package/ui/radioButton/src/radio-button.component.html +0 -17
  557. package/ui/radioButton/src/radio-button.component.ts +0 -36
  558. package/ui/selectBox/ng-package.json +0 -6
  559. package/ui/selectBox/src/interfaces.ts +0 -41
  560. package/ui/selectBox/src/select-box.component.html +0 -17
  561. package/ui/selectBox/src/select-box.component.ts +0 -69
  562. package/ui/switch/ng-package.json +0 -6
  563. package/ui/switch/src/switch.component.html +0 -7
  564. package/ui/switch/src/switch.component.ts +0 -18
  565. package/ui/table/index.ts +0 -34
  566. package/ui/table/ng-package.json +0 -6
  567. package/ui/table/src/i18n.ts +0 -55
  568. package/ui/table/src/table-column.component.ts +0 -28
  569. package/ui/table/src/table.component.html +0 -136
  570. package/ui/table/src/table.component.ts +0 -99
  571. package/ui/tagBox/ng-package.json +0 -6
  572. package/ui/tagBox/src/tag-box.component.html +0 -21
  573. package/ui/tagBox/src/tag-box.component.ts +0 -53
  574. package/ui/text/ng-package.json +0 -6
  575. package/ui/text/src/text.component.html +0 -21
  576. package/ui/text/src/text.component.ts +0 -47
  577. package/ui/textArea/ng-package.json +0 -6
  578. package/ui/textArea/src/text-area.component.html +0 -11
  579. package/ui/textArea/src/text-area.component.ts +0 -21
  580. package/ui/toggle-button/index.ts +0 -1
  581. package/ui/toggle-button/ng-package.json +0 -6
  582. package/ui/toggle-button/src/toggle-button.component.html +0 -13
  583. package/ui/toggle-button/src/toggle-button.component.scss +0 -19
  584. package/ui/toggle-button/src/toggle-button.component.ts +0 -22
  585. package/ui/tree/ng-package.json +0 -6
  586. package/ui/tree/src/tree.component.html +0 -16
  587. package/ui/tree/src/tree.component.ts +0 -52
  588. package/ui/treeTable/ng-package.json +0 -6
  589. package/ui/treeTable/src/tree-table.component.html +0 -88
  590. package/ui/treeTable/src/tree-table.component.ts +0 -57
  591. package/ui/value/ng-package.json +0 -6
  592. package/ui/value/src/value.component.html +0 -19
  593. package/ui/value/src/value.component.ts +0 -39
  594. package/util/block/ng-package.json +0 -6
  595. package/util/block/src/block.ts +0 -65
  596. package/util/custom_pages/ng-package.json +0 -6
  597. package/util/custom_pages/src/notFound.component.ts +0 -34
  598. package/util/index.ts +0 -1
  599. package/util/init-event/ng-package.json +0 -6
  600. package/util/init-event/src/init-event.directive.ts +0 -13
  601. package/util/lib/ng-package.json +0 -6
  602. package/util/lib/src/interfaces.ts +0 -44
  603. package/util/lib/src/module-router.ts +0 -10
  604. package/util/lib/src/types.ts +0 -49
  605. package/util/loaders/ng-package.json +0 -6
  606. package/util/loaders/script/script.loader.service.ts +0 -69
  607. package/util/loaders/style/style.loader.service.ts +0 -69
  608. package/util/ng-package.json +0 -6
  609. package/util/primitive-extensions/ng-package.json +0 -6
  610. package/util/primitive-extensions/src/date.extensions.ts +0 -135
  611. package/util/primitive-extensions/src/number.extensions.ts +0 -57
  612. package/util/primitive-extensions/src/string.extensions.ts +0 -39
  613. package/util/pub-sub/ng-package.json +0 -6
  614. package/util/pub-sub/src/pub-sub.service.ts +0 -34
  615. /package/boot/config/{api/src/api.sample.json → api.sample.json} +0 -0
  616. /package/{util/block/src → scripts/util}/blockui.min.js +0 -0
  617. /package/{ui/styles → styles/ui}/ui.common.scss +0 -0
  618. /package/{util/block/src → styles/util}/blockui.css +0 -0
@@ -0,0 +1,12 @@
1
+ declare global {
2
+ interface Number {
3
+ safeBool(): boolean;
4
+ isNull(): boolean;
5
+ isUndefined(): boolean;
6
+ isNullOrUndefined(): boolean;
7
+ longToDate(): Date | undefined;
8
+ longToString(format?: string): string | undefined;
9
+ decimalToString(format: string): string | undefined;
10
+ }
11
+ }
12
+ export {};
@@ -0,0 +1,11 @@
1
+ declare global {
2
+ interface String {
3
+ safeBool(): boolean;
4
+ escapeRegExp(): string;
5
+ toCamelCase(): string;
6
+ toPascalCase(): string;
7
+ toCapitalizeFirstLetter(): string;
8
+ stringToBool(str: string): boolean;
9
+ }
10
+ }
11
+ export {};
@@ -1 +1 @@
1
- export * from './src/pub-sub.service';
1
+ export * from './src/pub-sub.service';
@@ -0,0 +1,20 @@
1
+ import * as i0 from "@angular/core";
2
+ type CustomEvent = {
3
+ name: keyof typeof PubSubEvents;
4
+ data: {
5
+ path: string;
6
+ custom?: any;
7
+ };
8
+ };
9
+ declare const PubSubEvents: {
10
+ navigateBetweenApps: string;
11
+ navigateInApps: string;
12
+ };
13
+ export declare class PubSubService {
14
+ publish(e: CustomEvent): void;
15
+ subscribe(eventName: keyof typeof PubSubEvents, listener: (data: any) => void): void;
16
+ unSubscribe(eventName: keyof typeof PubSubEvents, listener: () => void): void;
17
+ static ɵfac: i0.ɵɵFactoryDeclaration<PubSubService, never>;
18
+ static ɵprov: i0.ɵɵInjectableDeclaration<PubSubService>;
19
+ }
20
+ export {};
package/.eslintrc.json DELETED
@@ -1,41 +0,0 @@
1
- {
2
- "extends": "../../.eslintrc.json",
3
- "ignorePatterns": ["!**/*"],
4
- "overrides": [
5
- {
6
- "files": ["*.ts"],
7
- "rules": {
8
- "@angular-eslint/directive-selector": [
9
- "error",
10
- {
11
- "type": "attribute",
12
- "prefix": "aril",
13
- "style": "camelCase"
14
- }
15
- ],
16
- "@angular-eslint/component-selector": [
17
- "error",
18
- {
19
- "type": "element",
20
- "prefix": "aril",
21
- "style": "kebab-case"
22
- }
23
- ],
24
- "@angular-eslint/no-input-rename": "off",
25
- "rules": {
26
- "no-multiple-empty-lines": [
27
- "error",
28
- {
29
- "max": 1,
30
- "maxEOF": 0,
31
- "maxBOF": 0
32
- }
33
- ]
34
- }
35
- }
36
- },
37
- {
38
- "files": ["*.html"]
39
- }
40
- ]
41
- }
@@ -1,6 +0,0 @@
1
- {
2
- "$schema": "../../../node_modules/ng-packagr/ng-package.schema.json",
3
- "lib": {
4
- "entryFile": "./index.ts"
5
- }
6
- }
@@ -1,57 +0,0 @@
1
- import { HttpClient } from '@angular/common/http';
2
- import { isDevMode } from '@angular/core';
3
-
4
- import { firstValueFrom, tap } from 'rxjs';
5
-
6
- import { Apps } from 'aril/boot/config/apps';
7
- import { KeycloakManager } from 'aril/keycloak';
8
-
9
- import { ApiConfigsFactory } from './interfaces';
10
-
11
- export const API_CONFIGS = new ApiConfigsFactory();
12
-
13
- export function loadApiConfigs(
14
- httpBackend: { httpClient: HttpClient },
15
- keycloak: KeycloakManager,
16
- appName: string
17
- ): () => Promise<any> {
18
- return () => {
19
- const configDeps: Promise<any>[] = [];
20
-
21
- const observable$ = httpBackend.httpClient
22
- .get<ApiConfigsFactory>(isDevMode() ? './assets/local-configs/api.local.json' : './api.json')
23
- .pipe(
24
- tap((configs) => {
25
- Object.assign(API_CONFIGS, { ...configs });
26
-
27
- if (isDevMode()) (<any>globalThis).hostAPI = API_CONFIGS.api;
28
-
29
- configDeps.push(keycloak.init(API_CONFIGS.keycloak));
30
- })
31
- );
32
-
33
- return firstValueFrom(observable$).then(() => {
34
- return Promise.all(configDeps);
35
- });
36
- };
37
- }
38
-
39
- /**
40
- * micro-app cannot access its own api.json file when opened in host
41
- * MNG has different controller (host, state-machine etc.)
42
- */
43
- export function setApiConfigOnMFEMode(
44
- httpBackend: { httpClient: HttpClient },
45
- keycloak: KeycloakManager,
46
- appName: string
47
- ): () => void {
48
- return () => {
49
- if (isDevMode()) {
50
- if (appName === Apps.MNG) API_CONFIGS.api = (<any>globalThis).hostAPI;
51
- else API_CONFIGS.api = (<any>globalThis).hostAPI + '/' + appName + '/v1';
52
- } else {
53
- if (appName === Apps.MNG) API_CONFIGS.api = window.location.origin;
54
- else API_CONFIGS.api = window.location.origin + '/' + appName + '/v1';
55
- }
56
- };
57
- }
@@ -1,13 +0,0 @@
1
- export interface KeycloakConfig {
2
- url: string;
3
- realm: string;
4
- clientId: string;
5
- }
6
- export class ApiConfigsFactory {
7
- api: string = '';
8
- keycloak: KeycloakConfig = {
9
- url: '',
10
- realm: '',
11
- clientId: ''
12
- };
13
- }
@@ -1,6 +0,0 @@
1
- {
2
- "$schema": "../../../node_modules/ng-packagr/ng-package.schema.json",
3
- "lib": {
4
- "entryFile": "./index.ts"
5
- }
6
- }
@@ -1,64 +0,0 @@
1
- import { HttpClient } from '@angular/common/http';
2
- import { Injectable, inject, isDevMode } from '@angular/core';
3
- import { Router, Routes } from '@angular/router';
4
-
5
- import { MenuItem } from 'primeng/api';
6
-
7
- import {
8
- WebComponentWrapper,
9
- WebComponentWrapperOptions,
10
- startsWith
11
- } from '@angular-architects/module-federation-tools';
12
- import { Observable, catchError, of, tap } from 'rxjs';
13
-
14
- import { AppMenuService } from 'aril/theme/layout';
15
- import { NotFoundComponent } from 'aril/util/custom_pages';
16
-
17
- import { MicroAppConfig } from './interfaces';
18
- import { ShadowDOMWrapperComponent } from './showdowDOMWrapper';
19
-
20
- @Injectable({ providedIn: 'root' })
21
- export class MicroAppService {
22
- private router = inject(Router);
23
- private appMenuService = inject(AppMenuService);
24
-
25
- init(httpBackend: { httpClient: HttpClient }): () => Observable<MicroAppConfig[]> {
26
- return () =>
27
- httpBackend.httpClient
28
- .get<MicroAppConfig[]>(isDevMode() ? './assets/local-configs/app.local.json' : './assets/app.json')
29
- .pipe(
30
- tap((apps: MicroAppConfig[]) => {
31
- const routes = this.buildRoutes(apps);
32
-
33
- this.router.resetConfig([...this.router.config, ...routes, { path: '**', component: NotFoundComponent }]);
34
- this.setMenuItems(apps);
35
- }),
36
- catchError((err) => {
37
- console.log('Error Micro Apps Loading', err);
38
- return of();
39
- })
40
- );
41
- }
42
-
43
- buildRoutes(apps: MicroAppConfig[]): Routes {
44
- const routes: Routes = apps.map((config) => ({
45
- matcher: startsWith(config.remoteName),
46
- component: config.shadowDomPassive ? WebComponentWrapper : ShadowDOMWrapperComponent,
47
- data: config as WebComponentWrapperOptions
48
- }));
49
-
50
- return routes;
51
- }
52
-
53
- setMenuItems(apps: MicroAppConfig[]): void {
54
- const menuItems: MenuItem[] = apps.map((config) => {
55
- return {
56
- label: config.remoteName,
57
- icon: 'pi pi-fw pi-bars',
58
- routerLink: config.remoteName
59
- };
60
- });
61
-
62
- this.appMenuService.menuConfig.set({ items: menuItems });
63
- }
64
- }
@@ -1,27 +0,0 @@
1
- import { RemoteConfig } from '@angular-architects/module-federation';
2
-
3
- export enum Apps {
4
- THOR = 'thor',
5
- CRM = 'crm',
6
- WDM = 'wdm',
7
- BILLING = 'billing',
8
- PAYMENT = 'payment',
9
- YEAP = 'yeap',
10
- MD = 'md',
11
- MW = 'mw',
12
- LENA = 'lena',
13
- HES = 'hes',
14
- MTH = 'mth',
15
- SIS = 'sis',
16
- MNG = 'mng'
17
- }
18
-
19
- export type MicroAppConfig = RemoteConfig & {
20
- remoteName: string;
21
- exposedModule: string;
22
- elementName: string;
23
- shadowDomPassive?: boolean;
24
- styleUrls?: string[];
25
- // route: string;
26
- // displayName: string;
27
- };
@@ -1,28 +0,0 @@
1
- import { Component, ElementRef, OnInit, Renderer2, ViewChild, ViewEncapsulation, inject } from '@angular/core';
2
-
3
- import { WebComponentWrapper } from '@angular-architects/module-federation-tools';
4
-
5
- @Component({
6
- standalone: true,
7
- template: '<div #vc></div>',
8
- encapsulation: ViewEncapsulation.ShadowDom
9
- })
10
- export class ShadowDOMWrapperComponent extends WebComponentWrapper implements OnInit {
11
- @ViewChild('vc', { read: ElementRef, static: true }) override vc!: ElementRef;
12
-
13
- private renderer = inject(Renderer2);
14
-
15
- ngOnInit(): void {
16
- const shadowRoot = this.vc.nativeElement.parentNode;
17
- const styleUrls = this['route'].snapshot.data.styleUrls || [];
18
-
19
- // Inject styles into the Shadow DOM
20
- styleUrls.forEach((url: string) => {
21
- const link = this.renderer.createElement('link');
22
- link.setAttribute('rel', 'stylesheet');
23
- link.setAttribute('type', 'text/css');
24
- link.setAttribute('href', url);
25
- this.renderer.appendChild(shadowRoot, link);
26
- });
27
- }
28
- }
@@ -1,6 +0,0 @@
1
- {
2
- "$schema": "../../../node_modules/ng-packagr/ng-package.schema.json",
3
- "lib": {
4
- "entryFile": "./index.ts"
5
- }
6
- }
@@ -1,9 +0,0 @@
1
- import { NgZone } from '@angular/core';
2
-
3
- export const getNgZone = () => {
4
- if ((<any>globalThis).hostZone) {
5
- return { provide: NgZone, useValue: (<any>globalThis).hostZone };
6
- } else if ((<any>globalThis).mfeZone) {
7
- return { provide: NgZone, useValue: (<any>globalThis).mfeZone };
8
- } else return [];
9
- };
@@ -1,11 +0,0 @@
1
- import { LoadRemoteModuleScriptOptions } from '@angular-architects/module-federation';
2
-
3
- interface PluginItem {
4
- options: LoadRemoteModuleScriptOptions & { elementName: string };
5
- props: { [key in string]: any };
6
- events: { [key in string]: Function };
7
- }
8
-
9
- export type PluginConfigs = { [key in string]: PluginItem };
10
-
11
- export class FactoryClass {}
@@ -1,81 +0,0 @@
1
- import { HttpClient, provideHttpClient, withInterceptors } from '@angular/common/http';
2
- import { APP_INITIALIZER, ApplicationConfig, Type, importProvidersFrom, isDevMode } from '@angular/core';
3
- import { createCustomElement } from '@angular/elements';
4
- import { createApplication } from '@angular/platform-browser';
5
- import { provideAnimations } from '@angular/platform-browser/animations';
6
-
7
- import { ConfirmationService, MessageService } from 'primeng/api';
8
- import { ConfirmDialogModule } from 'primeng/confirmdialog';
9
- import { ConfirmPopupModule } from 'primeng/confirmpopup';
10
- import { DialogModule } from 'primeng/dialog';
11
- import { MessagesModule } from 'primeng/messages';
12
- import { ToastModule } from 'primeng/toast';
13
-
14
- import { KeycloakAngularModule } from 'keycloak-angular';
15
- import { Observable, catchError, of, tap } from 'rxjs';
16
-
17
- import { API_CONFIGS } from 'aril/boot/config/api';
18
- import { i18nFolderName, i18nModule } from 'aril/i18n';
19
- import { authInterceptor } from 'aril/keycloak';
20
-
21
- import { getNgZone } from './getNgZone';
22
- import { FactoryClass, PluginConfigs } from './interfaces';
23
-
24
- export const PLUGINS = new FactoryClass() as FactoryClass & PluginConfigs;
25
-
26
- export function loadPlugins(httpBackend: { httpClient: HttpClient }): () => Observable<any> {
27
- return () => {
28
- return httpBackend.httpClient
29
- .get<PluginConfigs>(isDevMode() ? './assets/local-configs/plugin.local.json' : './assets/plugin.json')
30
- .pipe(
31
- tap((configs) => {
32
- Object.assign(PLUGINS, { ...configs });
33
- }),
34
- catchError((err) => {
35
- console.log('Error Plugins Loading', err);
36
- return of();
37
- })
38
- );
39
- };
40
- }
41
-
42
- export async function bootPlugin(selector: string, component: Type<any>) {
43
- if (customElements.get(selector)) return;
44
-
45
- const config: ApplicationConfig = {
46
- providers: [
47
- provideAnimations(),
48
- provideHttpClient(withInterceptors([authInterceptor])),
49
- importProvidersFrom(
50
- i18nModule,
51
- KeycloakAngularModule,
52
- ConfirmDialogModule,
53
- ConfirmPopupModule,
54
- DialogModule,
55
- MessagesModule,
56
- ToastModule
57
- ),
58
- getNgZone(),
59
- MessageService,
60
- ConfirmationService,
61
- {
62
- provide: APP_INITIALIZER,
63
- useFactory: () => {
64
- return () => {
65
- API_CONFIGS.api = (<any>globalThis).hostAPI;
66
- };
67
- },
68
- multi: true
69
- },
70
- {
71
- provide: i18nFolderName,
72
- useValue: 'host'
73
- }
74
- ]
75
- };
76
-
77
- const appRef = await createApplication(config);
78
- const plugin = createCustomElement(component, { injector: appRef.injector });
79
-
80
- customElements.define(selector, plugin);
81
- }
@@ -1,6 +0,0 @@
1
- {
2
- "$schema": "../../../../node_modules/ng-packagr/ng-package.schema.json",
3
- "lib": {
4
- "entryFile": "./index.ts"
5
- }
6
- }
@@ -1,27 +0,0 @@
1
- /* eslint-disable @typescript-eslint/no-explicit-any */
2
- import { Component, NgZone, inject } from '@angular/core';
3
- import { Router, RouterOutlet } from '@angular/router';
4
-
5
- import { AppLayoutComponent } from 'aril/theme/layout';
6
- import { PubSubService } from 'aril/util/pub-sub';
7
-
8
- @Component({
9
- standalone: true,
10
- selector: 'aril-root',
11
- template: ` <app-layout></app-layout> `,
12
- imports: [RouterOutlet, AppLayoutComponent]
13
- })
14
- export class AppComponent {
15
- constructor(router: Router, pubSubService: PubSubService) {
16
- (<any>globalThis).hostZone = inject(NgZone);
17
- (<any>globalThis).isHostMode = true;
18
-
19
- pubSubService.subscribe('navigateBetweenApps', (data: any) => {
20
- router.navigateByUrl(data.path);
21
- pubSubService.publish({
22
- name: 'navigateInApps',
23
- data: data
24
- });
25
- });
26
- }
27
- }
@@ -1,61 +0,0 @@
1
- import { provideHttpClient, withInterceptors } from '@angular/common/http';
2
- import { APP_INITIALIZER, ApplicationConfig, importProvidersFrom } from '@angular/core';
3
- import { bootstrapApplication } from '@angular/platform-browser';
4
- import { provideAnimations } from '@angular/platform-browser/animations';
5
- import {
6
- Routes,
7
- provideRouter,
8
- withComponentInputBinding,
9
- withHashLocation,
10
- withViewTransitions
11
- } from '@angular/router';
12
-
13
- import { ConfirmationService, MessageService } from 'primeng/api';
14
-
15
- import { KeycloakAngularModule } from 'keycloak-angular';
16
-
17
- import { loadApiConfigs } from 'aril/boot/config/api';
18
- import { MicroAppService } from 'aril/boot/config/apps';
19
- import { loadPlugins } from 'aril/boot/config/plugins';
20
- import { HttpBackendService, stateMachineInterceptor } from 'aril/http';
21
- import { i18nFolderName, i18nModule } from 'aril/i18n';
22
- import { KeycloakManager, authInterceptor } from 'aril/keycloak';
23
-
24
- import { AppComponent } from './app.component';
25
-
26
- export const boot = (routes: Routes) => {
27
- const appConfig: ApplicationConfig = {
28
- providers: [
29
- provideAnimations(),
30
- provideHttpClient(withInterceptors([authInterceptor, stateMachineInterceptor])),
31
- provideRouter(routes, withComponentInputBinding(), withHashLocation(), withViewTransitions()),
32
- importProvidersFrom(i18nModule, KeycloakAngularModule),
33
- MessageService,
34
- ConfirmationService,
35
- {
36
- provide: APP_INITIALIZER,
37
- useFactory: loadApiConfigs,
38
- multi: true,
39
- deps: [HttpBackendService, KeycloakManager, i18nFolderName]
40
- },
41
- {
42
- provide: APP_INITIALIZER,
43
- useFactory: (mAppService: MicroAppService, httpBackend: HttpBackendService) => mAppService.init(httpBackend),
44
- multi: true,
45
- deps: [MicroAppService, HttpBackendService]
46
- },
47
- {
48
- provide: APP_INITIALIZER,
49
- useFactory: loadPlugins,
50
- multi: true,
51
- deps: [HttpBackendService]
52
- },
53
- {
54
- provide: i18nFolderName,
55
- useValue: 'host'
56
- }
57
- ]
58
- };
59
-
60
- bootstrapApplication(AppComponent, appConfig).catch((err) => console.error(err));
61
- };
package/boot/index.ts DELETED
@@ -1 +0,0 @@
1
- export const aril_boot = 'ARiL-BOOT';
@@ -1,6 +0,0 @@
1
- {
2
- "$schema": "../../../../node_modules/ng-packagr/ng-package.schema.json",
3
- "lib": {
4
- "entryFile": "./index.ts"
5
- }
6
- }
@@ -1,57 +0,0 @@
1
- /* eslint-disable @typescript-eslint/no-explicit-any */
2
- import { Component, NgZone, inject } from '@angular/core';
3
- import { Router, RouterOutlet } from '@angular/router';
4
-
5
- import { ModuleFederationToolsModule } from '@angular-architects/module-federation-tools';
6
-
7
- import { AppLayoutComponent, AppMenuService, MFELayoutComponent } from 'aril/theme/layout';
8
- import { PubSubService } from 'aril/util/pub-sub';
9
-
10
- import { appName, menuItems } from './bootstrap';
11
-
12
- @Component({
13
- standalone: true,
14
- template: `
15
- @if (isHostMode) {
16
- <mfe-layout></mfe-layout>
17
- } @else {
18
- <app-layout></app-layout>
19
- }
20
- `,
21
- imports: [RouterOutlet, ModuleFederationToolsModule, AppLayoutComponent, MFELayoutComponent]
22
- })
23
- export class AppComponent {
24
- constructor(
25
- private router: Router,
26
- pubSubService: PubSubService,
27
- appMenuService: AppMenuService
28
- ) {
29
- if (!this.isHostMode && !(<any>globalThis).mfeZone) {
30
- (<any>globalThis).mfeZone = inject(NgZone);
31
- }
32
-
33
- this.connectRouter();
34
-
35
- (<any>globalThis).activeMF = appName;
36
-
37
- pubSubService.subscribe('navigateInApps', (data: any) => {
38
- if (data.path.startsWith(appName, 1)) router.navigateByUrl(data.path);
39
- });
40
-
41
- if (this.isHostMode) {
42
- appMenuService.subMenuConfig.set({ items: structuredClone(menuItems), prefix: appName });
43
- } else {
44
- appMenuService.menuConfig.set({ items: structuredClone(menuItems), prefix: appName });
45
- }
46
- }
47
-
48
- isHostMode = (<any>globalThis).isHostMode;
49
-
50
- connectRouter() {
51
- this.router.initialNavigation();
52
-
53
- window.addEventListener('popstate', () => {
54
- this.router.initialNavigation();
55
- });
56
- }
57
- }
@@ -1,4 +0,0 @@
1
- export const appComponentLoader = async () => {
2
- const { AppComponent } = await import('./app.component');
3
- return AppComponent;
4
- };
@@ -1,78 +0,0 @@
1
- import { provideHttpClient, withInterceptors } from '@angular/common/http';
2
- import { APP_INITIALIZER, ApplicationConfig, importProvidersFrom } from '@angular/core';
3
- import { createCustomElement } from '@angular/elements';
4
- import { createApplication } from '@angular/platform-browser';
5
- import { provideAnimations } from '@angular/platform-browser/animations';
6
- import {
7
- Routes,
8
- provideRouter,
9
- withComponentInputBinding,
10
- withHashLocation,
11
- withViewTransitions
12
- } from '@angular/router';
13
-
14
- import { ConfirmationService, MenuItem, MessageService } from 'primeng/api';
15
-
16
- import { KeycloakAngularModule } from 'keycloak-angular';
17
-
18
- import { loadApiConfigs, setApiConfigOnMFEMode } from 'aril/boot/config/api';
19
- import { Apps } from 'aril/boot/config/apps';
20
- import { getNgZone, loadPlugins } from 'aril/boot/config/plugins';
21
- import { HttpBackendService, stateMachineInterceptor } from 'aril/http';
22
- import { i18nFolderName, i18nModule } from 'aril/i18n';
23
- import { KeycloakManager, authInterceptor } from 'aril/keycloak';
24
- import { StyleLoaderService } from 'aril/util/loaders';
25
-
26
- import { appComponentLoader } from './appComponentLoader';
27
- import { loadStyles } from './loadStyles';
28
-
29
- export var appName: Apps;
30
- export var menuItems: MenuItem[] = [];
31
-
32
- export const boot = (_appName: Apps, _routes: Routes, _menuItems: MenuItem[]) => {
33
- if (customElements.get(`app-${_appName}`)) return;
34
-
35
- appName = _appName;
36
- menuItems = _menuItems;
37
-
38
- const appBootConfig: ApplicationConfig = {
39
- providers: [
40
- provideAnimations(),
41
- provideHttpClient(withInterceptors([authInterceptor, stateMachineInterceptor])),
42
- provideRouter(_routes, withComponentInputBinding(), withHashLocation(), withViewTransitions()),
43
- importProvidersFrom(i18nModule, KeycloakAngularModule),
44
- getNgZone(),
45
- MessageService,
46
- ConfirmationService,
47
- {
48
- provide: APP_INITIALIZER,
49
- useFactory: (<any>globalThis).isHostMode ? setApiConfigOnMFEMode : loadApiConfigs,
50
- multi: true,
51
- deps: [HttpBackendService, KeycloakManager, i18nFolderName]
52
- },
53
- {
54
- provide: APP_INITIALIZER,
55
- useFactory: loadPlugins,
56
- multi: true,
57
- deps: [HttpBackendService]
58
- },
59
- {
60
- provide: APP_INITIALIZER,
61
- useFactory: loadStyles,
62
- multi: true,
63
- deps: [StyleLoaderService, i18nFolderName]
64
- },
65
- {
66
- provide: i18nFolderName,
67
- useValue: _appName
68
- }
69
- ]
70
- };
71
-
72
- createApplication(appBootConfig).then((appRef) => {
73
- appComponentLoader().then((AppComponent) => {
74
- const app = createCustomElement(AppComponent, { injector: appRef.injector });
75
- customElements.define(`app-${appName}`, app);
76
- });
77
- });
78
- };