@worktile/planet 12.1.0 → 12.1.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 (329) hide show
  1. package/.all-contributorsrc +84 -0
  2. package/.circleci/config.yml +17 -0
  3. package/.coveralls.yml +1 -0
  4. package/.docgeni/public/assets/favicon.ico +0 -0
  5. package/.docgeni/public/index.html +13 -0
  6. package/.docgenirc.js +35 -0
  7. package/.dockerignore +1 -0
  8. package/.editorconfig +22 -0
  9. package/.github/FUNDING.yml +12 -0
  10. package/.github/ISSUE_TEMPLATE/bug_report.md +38 -0
  11. package/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
  12. package/.prettierignore +7 -0
  13. package/.prettierrc +28 -0
  14. package/.travis.yml +26 -0
  15. package/.wpmrc.js +11 -0
  16. package/CHANGELOG.md +391 -0
  17. package/CODE_OF_CONDUCT.md +76 -0
  18. package/Dockerfile +11 -0
  19. package/LICENSE +21 -0
  20. package/README.md +348 -0
  21. package/README.zh-CN.md +307 -0
  22. package/SECURITY.md +21 -0
  23. package/angular.json +373 -0
  24. package/commitlint.config.js +6 -0
  25. package/docs/api/defineApplication.md +46 -0
  26. package/docs/api/globalEventDispatcher.md +51 -0
  27. package/docs/api/index.md +5 -0
  28. package/docs/api/planet.md +117 -0
  29. package/docs/guides/getting-started.md +174 -0
  30. package/docs/guides/index.md +5 -0
  31. package/docs/guides/intro.md +216 -0
  32. package/examples/app1/browserslist +11 -0
  33. package/examples/app1/extra-webpack.config.js +33 -0
  34. package/examples/app1/karma.conf.js +31 -0
  35. package/examples/app1/postcss.config.js +1 -0
  36. package/examples/app1/src/app/app.module.ts +44 -0
  37. package/examples/app1/src/app/app.routing.ts +49 -0
  38. package/examples/app1/src/app/counter.service.ts +16 -0
  39. package/examples/app1/src/app/dashboard/dashboard.component.html +51 -0
  40. package/examples/app1/src/app/dashboard/dashboard.component.ts +70 -0
  41. package/examples/app1/src/app/detail/detail.component.html +8 -0
  42. package/examples/app1/src/app/detail/detail.component.ts +18 -0
  43. package/examples/app1/src/app/overlay.ts +26 -0
  44. package/examples/app1/src/app/projects/dialog/projects-dialog.component.html +10 -0
  45. package/examples/app1/src/app/projects/dialog/projects-dialog.component.ts +41 -0
  46. package/examples/app1/src/app/projects/projects.component.ts +33 -0
  47. package/examples/app1/src/app/root/root.component.css +3 -0
  48. package/examples/app1/src/app/root/root.component.html +16 -0
  49. package/examples/app1/src/app/root/root.component.ts +35 -0
  50. package/examples/app1/src/app/services/initialized-data.resolver.ts +15 -0
  51. package/examples/app1/src/app/shared.module.ts +57 -0
  52. package/examples/app1/src/app/user/detail/user-detail.component.html +5 -0
  53. package/examples/app1/src/app/user/detail/user-detail.component.ts +20 -0
  54. package/examples/app1/src/app/user/user-list.component.html +7 -0
  55. package/examples/app1/src/app/user/user-list.component.ts +20 -0
  56. package/examples/app1/src/app/user/user.module.ts +31 -0
  57. package/examples/app1/src/assets/.gitkeep +0 -0
  58. package/examples/app1/src/assets/github.png +0 -0
  59. package/examples/app1/src/assets/main.css +3 -0
  60. package/examples/app1/src/environments/environment.prod.ts +3 -0
  61. package/examples/app1/src/environments/environment.ts +16 -0
  62. package/examples/app1/src/favicon.ico +0 -0
  63. package/examples/app1/src/index.html +14 -0
  64. package/examples/app1/src/main.ts +35 -0
  65. package/examples/app1/src/polyfills.ts +84 -0
  66. package/examples/app1/src/styles.scss +35 -0
  67. package/examples/app1/src/test.ts +14 -0
  68. package/examples/app1/temp.js +221 -0
  69. package/examples/app1/tsconfig.app.json +10 -0
  70. package/examples/app1/tsconfig.spec.json +18 -0
  71. package/examples/app1/tslint.json +17 -0
  72. package/examples/app1/webpack.config.js +127 -0
  73. package/examples/app2/browserslist +11 -0
  74. package/examples/app2/extra-webpack.config.js +32 -0
  75. package/examples/app2/karma.conf.js +31 -0
  76. package/examples/app2/src/app/app.module.ts +90 -0
  77. package/examples/app2/src/app/dashboard/dashboard.component.html +21 -0
  78. package/examples/app2/src/app/dashboard/dashboard.component.ts +27 -0
  79. package/examples/app2/src/app/overlay.ts +26 -0
  80. package/examples/app2/src/app/projects/detail/detail.component.html +16 -0
  81. package/examples/app2/src/app/projects/detail/detail.component.ts +21 -0
  82. package/examples/app2/src/app/projects/project-list.component.html +29 -0
  83. package/examples/app2/src/app/projects/project-list.component.ts +58 -0
  84. package/examples/app2/src/app/projects/project.resolver.ts +15 -0
  85. package/examples/app2/src/app/projects/projects.service.ts +28 -0
  86. package/examples/app2/src/app/projects/tasks/tasks.component.html +10 -0
  87. package/examples/app2/src/app/projects/tasks/tasks.component.ts +16 -0
  88. package/examples/app2/src/app/projects/view/view.component.html +1 -0
  89. package/examples/app2/src/app/projects/view/view.component.ts +20 -0
  90. package/examples/app2/src/app/root/root.component.html +14 -0
  91. package/examples/app2/src/app/root/root.component.scss +12 -0
  92. package/examples/app2/src/app/root/root.component.ts +28 -0
  93. package/examples/app2/src/app/shared.module.ts +59 -0
  94. package/examples/app2/src/assets/.gitkeep +0 -0
  95. package/examples/app2/src/environments/environment.prod.ts +3 -0
  96. package/examples/app2/src/environments/environment.ts +16 -0
  97. package/examples/app2/src/favicon.ico +0 -0
  98. package/examples/app2/src/index.html +14 -0
  99. package/examples/app2/src/main.ts +36 -0
  100. package/examples/app2/src/polyfills.ts +84 -0
  101. package/examples/app2/src/styles.scss +28 -0
  102. package/examples/app2/src/test.ts +14 -0
  103. package/examples/app2/tsconfig.app.json +10 -0
  104. package/examples/app2/tsconfig.spec.json +18 -0
  105. package/examples/app2/tslint.json +7 -0
  106. package/examples/app2/webpack.config.js +92 -0
  107. package/examples/common/app-root-context.ts +10 -0
  108. package/examples/common/cache.ts +82 -0
  109. package/examples/common/index.ts +13 -0
  110. package/examples/common/module.ts +10 -0
  111. package/examples/common/overlay-container.service.ts +28 -0
  112. package/examples/common/section-card/section-card.component.html +5 -0
  113. package/examples/common/section-card/section-card.component.scss +15 -0
  114. package/examples/common/section-card/section-card.component.ts +11 -0
  115. package/examples/common/utils.ts +0 -0
  116. package/examples/portal/src/app/a-detail/a-detail.component.html +8 -0
  117. package/examples/portal/src/app/a-detail/a-detail.component.ts +18 -0
  118. package/examples/portal/src/app/about/about.component.html +27 -0
  119. package/examples/portal/src/app/about/about.component.scss +0 -0
  120. package/examples/portal/src/app/about/about.component.spec.ts +26 -0
  121. package/examples/portal/src/app/about/about.component.ts +26 -0
  122. package/examples/portal/src/app/app-routing.module.ts +57 -0
  123. package/examples/portal/src/app/app.component.html +73 -0
  124. package/examples/portal/src/app/app.component.scss +58 -0
  125. package/examples/portal/src/app/app.component.spec.ts +33 -0
  126. package/examples/portal/src/app/app.component.ts +111 -0
  127. package/examples/portal/src/app/app.module.ts +64 -0
  128. package/examples/portal/src/app/custom-settings.service.ts +44 -0
  129. package/examples/portal/src/app/overlay.ts +26 -0
  130. package/examples/portal/src/app/settings/settings.component.html +31 -0
  131. package/examples/portal/src/app/settings/settings.component.scss +3 -0
  132. package/examples/portal/src/app/settings/settings.component.ts +43 -0
  133. package/examples/portal/src/assets/.gitkeep +0 -0
  134. package/examples/portal/src/assets/apps.json +29 -0
  135. package/examples/portal/src/assets/icons/sprite.defs.svg +1 -0
  136. package/examples/portal/src/assets/images/logo.svg +16 -0
  137. package/examples/portal/src/assets/ngx-planet-micro-front-end.gif +0 -0
  138. package/examples/portal/src/browserslist +11 -0
  139. package/examples/portal/src/environments/environment.prod.ts +3 -0
  140. package/examples/portal/src/environments/environment.ts +16 -0
  141. package/examples/portal/src/extra-webpack.config.js +32 -0
  142. package/examples/portal/src/favicon.ico +0 -0
  143. package/examples/portal/src/index.html +14 -0
  144. package/examples/portal/src/karma.conf.js +31 -0
  145. package/examples/portal/src/main.ts +18 -0
  146. package/examples/portal/src/polyfills.ts +84 -0
  147. package/examples/portal/src/reboot.scss +14 -0
  148. package/examples/portal/src/styles.scss +14 -0
  149. package/examples/portal/src/test.ts +14 -0
  150. package/examples/portal/src/tsconfig.app.json +10 -0
  151. package/examples/portal/src/tsconfig.spec.json +9 -0
  152. package/examples/portal/src/tslint.json +7 -0
  153. package/extra-webpack.config.js +5 -0
  154. package/nginx.conf +17 -0
  155. package/package.json +121 -16
  156. package/packages/planet/karma.conf.js +37 -0
  157. package/packages/planet/ng-package.json +7 -0
  158. package/packages/planet/package.json +10 -0
  159. package/packages/planet/src/application/planet-application-loader.spec.ts +1102 -0
  160. package/packages/planet/src/application/planet-application-loader.ts +549 -0
  161. package/packages/planet/src/application/planet-application-ref.spec.ts +233 -0
  162. package/packages/planet/src/application/planet-application-ref.ts +131 -0
  163. package/packages/planet/src/application/planet-application.service.spec.ts +145 -0
  164. package/packages/planet/src/application/planet-application.service.ts +88 -0
  165. package/packages/planet/src/application/portal-application.spec.ts +53 -0
  166. package/packages/planet/src/application/portal-application.ts +28 -0
  167. package/packages/planet/src/assets-loader.spec.ts +689 -0
  168. package/packages/planet/src/assets-loader.ts +247 -0
  169. package/packages/planet/src/component/planet-component-loader.spec.ts +187 -0
  170. package/packages/planet/src/component/planet-component-loader.ts +173 -0
  171. package/packages/planet/src/component/planet-component-ref.ts +8 -0
  172. package/{component/plant-component.config.d.ts → packages/planet/src/component/plant-component.config.ts} +4 -4
  173. package/packages/planet/src/debug.spec.ts +58 -0
  174. package/packages/planet/src/debug.ts +66 -0
  175. package/packages/planet/src/empty/empty.component.spec.ts +34 -0
  176. package/packages/planet/src/empty/empty.component.ts +7 -0
  177. package/packages/planet/src/global-event-dispatcher.spec.ts +81 -0
  178. package/packages/planet/src/global-event-dispatcher.ts +82 -0
  179. package/packages/planet/src/global-planet.spec.ts +39 -0
  180. package/packages/planet/src/global-planet.ts +73 -0
  181. package/packages/planet/src/helpers.spec.ts +242 -0
  182. package/packages/planet/src/helpers.ts +125 -0
  183. package/packages/planet/src/module.spec.ts +79 -0
  184. package/packages/planet/src/module.ts +25 -0
  185. package/{planet.class.d.ts → packages/planet/src/planet.class.ts} +26 -5
  186. package/packages/planet/src/planet.spec.ts +226 -0
  187. package/packages/planet/src/planet.ts +113 -0
  188. package/{public-api.d.ts → packages/planet/src/public-api.ts} +4 -1
  189. package/packages/planet/src/sandbox/constants.ts +6 -0
  190. package/packages/planet/src/sandbox/exec.ts +22 -0
  191. package/packages/planet/src/sandbox/index.ts +24 -0
  192. package/packages/planet/src/sandbox/proxy/patches/document.ts +13 -0
  193. package/packages/planet/src/sandbox/proxy/patches/eventListener.ts +49 -0
  194. package/packages/planet/src/sandbox/proxy/patches/index.ts +13 -0
  195. package/packages/planet/src/sandbox/proxy/patches/storage.ts +53 -0
  196. package/packages/planet/src/sandbox/proxy/patches/timer.ts +50 -0
  197. package/packages/planet/src/sandbox/proxy/proxies/common.ts +137 -0
  198. package/packages/planet/src/sandbox/proxy/proxies/document.ts +140 -0
  199. package/packages/planet/src/sandbox/proxy/proxies/window.ts +176 -0
  200. package/packages/planet/src/sandbox/proxy/proxy-sandbox.ts +59 -0
  201. package/{sandbox/proxy/types.d.ts → packages/planet/src/sandbox/proxy/types.ts} +8 -2
  202. package/packages/planet/src/sandbox/sandbox.ts +20 -0
  203. package/packages/planet/src/sandbox/snapshot/snapshot-sandbox.ts +12 -0
  204. package/packages/planet/src/sandbox/types.ts +1 -0
  205. package/packages/planet/src/test.ts +16 -0
  206. package/packages/planet/src/testing/app1.module.ts +34 -0
  207. package/packages/planet/src/testing/app2.module.ts +24 -0
  208. package/packages/planet/src/testing/applications.ts +58 -0
  209. package/packages/planet/src/testing/index.ts +2 -0
  210. package/packages/planet/src/testing/utils.ts +31 -0
  211. package/packages/planet/tsconfig.lib.json +27 -0
  212. package/packages/planet/tsconfig.lib.prod.json +9 -0
  213. package/packages/planet/tsconfig.spec.json +17 -0
  214. package/packages/planet/tslint.json +7 -0
  215. package/postcss.config.js +3 -0
  216. package/proxy.conf.js +15 -0
  217. package/tsconfig.json +23 -0
  218. package/tslint.json +80 -0
  219. package/application/planet-application-loader.d.ts +0 -70
  220. package/application/planet-application-loader.d.ts.map +0 -1
  221. package/application/planet-application-loader.ngfactory.d.ts.map +0 -1
  222. package/application/planet-application-ref.d.ts +0 -36
  223. package/application/planet-application-ref.d.ts.map +0 -1
  224. package/application/planet-application.service.d.ts +0 -19
  225. package/application/planet-application.service.d.ts.map +0 -1
  226. package/application/planet-application.service.ngfactory.d.ts.map +0 -1
  227. package/application/portal-application.d.ts +0 -15
  228. package/application/portal-application.d.ts.map +0 -1
  229. package/assets-loader.d.ts +0 -33
  230. package/assets-loader.d.ts.map +0 -1
  231. package/assets-loader.ngfactory.d.ts.map +0 -1
  232. package/bundles/worktile-planet.umd.js +0 -2552
  233. package/bundles/worktile-planet.umd.js.map +0 -1
  234. package/component/planet-component-loader.d.ts +0 -28
  235. package/component/planet-component-loader.d.ts.map +0 -1
  236. package/component/planet-component-loader.ngfactory.d.ts.map +0 -1
  237. package/component/planet-component-ref.d.ts +0 -8
  238. package/component/planet-component-ref.d.ts.map +0 -1
  239. package/component/plant-component.config.d.ts.map +0 -1
  240. package/debug.d.ts +0 -22
  241. package/debug.d.ts.map +0 -1
  242. package/empty/empty.component.d.ts +0 -3
  243. package/empty/empty.component.d.ts.map +0 -1
  244. package/empty/empty.component.ngfactory.d.ts.map +0 -1
  245. package/esm2015/application/planet-application-loader.js +0 -452
  246. package/esm2015/application/planet-application-ref.js +0 -94
  247. package/esm2015/application/planet-application.service.js +0 -87
  248. package/esm2015/application/portal-application.js +0 -16
  249. package/esm2015/assets-loader.js +0 -217
  250. package/esm2015/component/planet-component-loader.js +0 -155
  251. package/esm2015/component/planet-component-ref.js +0 -3
  252. package/esm2015/component/plant-component.config.js +0 -7
  253. package/esm2015/debug.js +0 -33
  254. package/esm2015/empty/empty.component.js +0 -10
  255. package/esm2015/global-event-dispatcher.js +0 -71
  256. package/esm2015/global-planet.js +0 -51
  257. package/esm2015/helpers.js +0 -119
  258. package/esm2015/module.js +0 -27
  259. package/esm2015/planet.class.js +0 -9
  260. package/esm2015/planet.js +0 -90
  261. package/esm2015/public-api.js +0 -18
  262. package/esm2015/sandbox/constants.js +0 -7
  263. package/esm2015/sandbox/exec.js +0 -15
  264. package/esm2015/sandbox/index.js +0 -20
  265. package/esm2015/sandbox/proxy/patches/document.js +0 -12
  266. package/esm2015/sandbox/proxy/patches/eventListener.js +0 -41
  267. package/esm2015/sandbox/proxy/patches/index.js +0 -11
  268. package/esm2015/sandbox/proxy/patches/storage.js +0 -40
  269. package/esm2015/sandbox/proxy/patches/timer.js +0 -43
  270. package/esm2015/sandbox/proxy/proxies/common.js +0 -132
  271. package/esm2015/sandbox/proxy/proxies/document.js +0 -126
  272. package/esm2015/sandbox/proxy/proxies/window.js +0 -155
  273. package/esm2015/sandbox/proxy/proxy-sandbox.js +0 -49
  274. package/esm2015/sandbox/proxy/types.js +0 -2
  275. package/esm2015/sandbox/sandbox.js +0 -7
  276. package/esm2015/sandbox/snapshot/snapshot-sandbox.js +0 -12
  277. package/esm2015/sandbox/types.js +0 -2
  278. package/esm2015/worktile-planet.js +0 -6
  279. package/fesm2015/worktile-planet.js +0 -2036
  280. package/fesm2015/worktile-planet.js.map +0 -1
  281. package/global-event-dispatcher.d.ts +0 -20
  282. package/global-event-dispatcher.d.ts.map +0 -1
  283. package/global-event-dispatcher.ngfactory.d.ts.map +0 -1
  284. package/global-planet.d.ts +0 -23
  285. package/global-planet.d.ts.map +0 -1
  286. package/helpers.d.ts +0 -39
  287. package/helpers.d.ts.map +0 -1
  288. package/module.d.ts +0 -6
  289. package/module.d.ts.map +0 -1
  290. package/module.ngfactory.d.ts.map +0 -1
  291. package/planet.class.d.ts.map +0 -1
  292. package/planet.d.ts +0 -25
  293. package/planet.d.ts.map +0 -1
  294. package/planet.ngfactory.d.ts.map +0 -1
  295. package/public-api.d.ts.map +0 -1
  296. package/sandbox/constants.d.ts +0 -7
  297. package/sandbox/constants.d.ts.map +0 -1
  298. package/sandbox/exec.d.ts +0 -3
  299. package/sandbox/exec.d.ts.map +0 -1
  300. package/sandbox/index.d.ts +0 -7
  301. package/sandbox/index.d.ts.map +0 -1
  302. package/sandbox/proxy/patches/document.d.ts +0 -3
  303. package/sandbox/proxy/patches/document.d.ts.map +0 -1
  304. package/sandbox/proxy/patches/eventListener.d.ts +0 -3
  305. package/sandbox/proxy/patches/eventListener.d.ts.map +0 -1
  306. package/sandbox/proxy/patches/index.d.ts +0 -3
  307. package/sandbox/proxy/patches/index.d.ts.map +0 -1
  308. package/sandbox/proxy/patches/storage.d.ts +0 -15
  309. package/sandbox/proxy/patches/storage.d.ts.map +0 -1
  310. package/sandbox/proxy/patches/timer.d.ts +0 -3
  311. package/sandbox/proxy/patches/timer.d.ts.map +0 -1
  312. package/sandbox/proxy/proxies/common.d.ts +0 -13
  313. package/sandbox/proxy/proxies/common.d.ts.map +0 -1
  314. package/sandbox/proxy/proxies/document.d.ts +0 -14
  315. package/sandbox/proxy/proxies/document.d.ts.map +0 -1
  316. package/sandbox/proxy/proxies/window.d.ts +0 -13
  317. package/sandbox/proxy/proxies/window.d.ts.map +0 -1
  318. package/sandbox/proxy/proxy-sandbox.d.ts +0 -16
  319. package/sandbox/proxy/proxy-sandbox.d.ts.map +0 -1
  320. package/sandbox/proxy/types.d.ts.map +0 -1
  321. package/sandbox/sandbox.d.ts +0 -12
  322. package/sandbox/sandbox.d.ts.map +0 -1
  323. package/sandbox/snapshot/snapshot-sandbox.d.ts +0 -9
  324. package/sandbox/snapshot/snapshot-sandbox.d.ts.map +0 -1
  325. package/sandbox/types.d.ts +0 -2
  326. package/sandbox/types.d.ts.map +0 -1
  327. package/worktile-planet.d.ts +0 -6
  328. package/worktile-planet.d.ts.map +0 -1
  329. package/worktile-planet.metadata.json +0 -1
package/CHANGELOG.md ADDED
@@ -0,0 +1,391 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
+
5
+ ## [12.1.1](https://github.com/worktile/ngx-planet/compare/12.1.0...12.1.1) (2022-01-12)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * **app-loader:** load assets error will cause other preloaded apps to fail to bootstrap [#214](https://github.com/worktile/ngx-planet/issues/214) ([609b65d](https://github.com/worktile/ngx-planet/commit/609b65d9808c08208b6d9165f3ccef5a2c73e111))
11
+ * can not reload component without refresh page ([8a9b352](https://github.com/worktile/ngx-planet/commit/8a9b352f98e1b59e9f756615f1652b915369a762))
12
+
13
+
14
+ ### Features
15
+
16
+ * **planet:** update type of BootstrapAppModule for ts strict mode #OSP-248 ([2473004](https://github.com/worktile/ngx-planet/commit/2473004b111bc1fac9d531c88f6bec35f73fa603)), closes [#OSP-248](https://github.com/worktile/ngx-planet/issues/OSP-248)
17
+
18
+
19
+
20
+ # [12.1.0](https://github.com/worktile/ngx-planet/compare/12.0.0...12.1.0) (2021-09-29)
21
+
22
+
23
+ ### Bug Fixes
24
+
25
+ * update peerDependencies to 12.0.0 ([4ff9f6d](https://github.com/worktile/ngx-planet/commit/4ff9f6d9f3532d9be3aa6f9b66e8b48c0592076a))
26
+
27
+
28
+ ### Features
29
+
30
+ * **sandbox:** support proxy sandbox ([#208](https://github.com/worktile/ngx-planet/issues/208)) ([d281bf8](https://github.com/worktile/ngx-planet/commit/d281bf8d7d3ceb0724bcdfbaf0b8c8fb87750961))
31
+
32
+
33
+
34
+ <a name="12.0.0"></a>
35
+ # [12.0.0](https://github.com/worktile/ngx-planet/compare/10.0.0...12.0.0) (2021-06-24)
36
+
37
+
38
+ ### Bug Fixes
39
+
40
+ * **app-loader:** add hack isInAngularZoneisInAngularZone for resolve error Expected to not be in Angular Zone, but it is! [#197](https://github.com/worktile/ngx-planet/issues/197) ([14c6f9d](https://github.com/worktile/ngx-planet/commit/14c6f9d))
41
+ * **app-loader:** should active subapp when subapp is bootstrapping by preload #OSP-127 ([db1f4f9](https://github.com/worktile/ngx-planet/commit/db1f4f9)), closes [#OSP-127](https://github.com/worktile/ngx-planet/issues/OSP-127)
42
+
43
+
44
+ ### Features
45
+
46
+ * **app-loader:** add debug log for app loader #OSP-129 ([#191](https://github.com/worktile/ngx-planet/issues/191)) ([ed2621d](https://github.com/worktile/ngx-planet/commit/ed2621d)), closes [#OSP-129](https://github.com/worktile/ngx-planet/issues/OSP-129)
47
+ * **planet:** add debug integration #OSP-128 ([7e653f1](https://github.com/worktile/ngx-planet/commit/7e653f1)), closes [#OSP-128](https://github.com/worktile/ngx-planet/issues/OSP-128)
48
+
49
+
50
+
51
+ ## [11.0.0](https://github.com/worktile/ngx-planet/compare/10.0.0...11.0.0) (2021-05-21)
52
+
53
+
54
+ ### Features
55
+
56
+ * **app-loader:** add debug log for app loader #OSP-129 ([#191](https://github.com/worktile/ngx-planet/issues/191)) ([ed2621d](https://github.com/worktile/ngx-planet/commit/ed2621d2702a4b5b5179782de96ca96907e27c77)), closes [#OSP-129](https://github.com/worktile/ngx-planet/issues/OSP-129)
57
+ * **planet:** add debug integration #OSP-128 ([7e653f1](https://github.com/worktile/ngx-planet/commit/7e653f155f73738658b3d0680fd0eb34e75e5cf6)), closes [#OSP-128](https://github.com/worktile/ngx-planet/issues/OSP-128)
58
+
59
+
60
+ ### Bug Fixes
61
+
62
+ * **app-loader:** should active subapp when subapp is bootstrapping by preload #OSP-127 ([db1f4f9](https://github.com/worktile/ngx-planet/commit/db1f4f9eea9eb7d98cb9d768ab47fbe50f8cda3b)), closes [#OSP-127](https://github.com/worktile/ngx-planet/issues/OSP-127)
63
+
64
+ ## [10.0.0](https://github.com/worktile/ngx-planet/compare/9.1.0...10.0.0) (2021-05-20)
65
+
66
+
67
+ ### Features
68
+
69
+ * update angular and ngx-tethys to 10.x ([#167](https://github.com/worktile/ngx-planet/issues/167)) ([dc110df](https://github.com/worktile/ngx-planet/commit/dc110df7459c37edadf5da5c7eed5b22fcae4994))
70
+
71
+ ## [9.2.0](https://github.com/worktile/ngx-planet/compare/9.1.0...9.2.0) (2021-05-20)
72
+
73
+
74
+ ### Features
75
+
76
+ * update angular and ngx-tethys to 10.x ([#167](https://github.com/worktile/ngx-planet/issues/167)) ([dc110df](https://github.com/worktile/ngx-planet/commit/dc110df7459c37edadf5da5c7eed5b22fcae4994))
77
+
78
+ ## [9.1.0](https://github.com/worktile/ngx-planet/compare/9.0.6...9.1.0) (2020-12-28)
79
+
80
+
81
+ ### Features
82
+
83
+ * support style isolation ([#166](https://github.com/worktile/ngx-planet/issues/166)) ([5a6d6e0](https://github.com/worktile/ngx-planet/commit/5a6d6e0d5aee5e933e2484dae70b82f9ab429cb5))
84
+
85
+ ### [9.0.6](https://github.com/worktile/ngx-planet/compare/9.0.2...9.0.6) (2020-12-17)
86
+
87
+
88
+ ### Bug Fixes
89
+
90
+ * **app-loader:** should not set loading when app assets is loaded [#107](https://github.com/worktile/ngx-planet/issues/107) ([09a3f2e](https://github.com/worktile/ngx-planet/commit/09a3f2e8eca2a69d0afbad183aa82390a27bed15))
91
+ * **app-loader:** should throw specify error when sub app not found in bootstrapApp [#113](https://github.com/worktile/ngx-planet/issues/113) ([#158](https://github.com/worktile/ngx-planet/issues/158)) ([20deb37](https://github.com/worktile/ngx-planet/commit/20deb37217fc60804aa7a3331780148ef6fc2e1a))
92
+ * **component:** add TComp generic for component load type ([c53e105](https://github.com/worktile/ngx-planet/commit/c53e10581a2a5bd5bc5e05d3cf88f3629493914a))
93
+ * **component:** load component set TComp as first ([a7f79ce](https://github.com/worktile/ngx-planet/commit/a7f79ce7af0978a89b1e2532f34f8d501360aada))
94
+ * **planet-component-loader:** move delay to load function and replace delay with delayWhen [#159](https://github.com/worktile/ngx-planet/issues/159) ([fbc5610](https://github.com/worktile/ngx-planet/commit/fbc5610d7451c3c4a5b84f1192b2e5217a8ad327))
95
+ * resolve error Expected to not be in Angular Zone, but it is! ([d51fb8f](https://github.com/worktile/ngx-planet/commit/d51fb8f074012ead1cb7a5ff8ac215c65ce30b28))
96
+
97
+ ### [9.0.5](https://github.com/worktile/ngx-planet/compare/9.0.2...9.0.5) (2020-12-17)
98
+
99
+
100
+ ### Bug Fixes
101
+
102
+ * **app-loader:** should not set loading when app assets is loaded [#107](https://github.com/worktile/ngx-planet/issues/107) ([09a3f2e](https://github.com/worktile/ngx-planet/commit/09a3f2e8eca2a69d0afbad183aa82390a27bed15))
103
+ * **app-loader:** should throw specify error when sub app not found in bootstrapApp [#113](https://github.com/worktile/ngx-planet/issues/113) ([#158](https://github.com/worktile/ngx-planet/issues/158)) ([20deb37](https://github.com/worktile/ngx-planet/commit/20deb37217fc60804aa7a3331780148ef6fc2e1a))
104
+ * **component:** add TComp generic for component load type ([c53e105](https://github.com/worktile/ngx-planet/commit/c53e10581a2a5bd5bc5e05d3cf88f3629493914a))
105
+ * **component:** move delay to load function and replace delay with delayWhen [#159](https://github.com/worktile/ngx-planet/issues/159) ([fbc5610](https://github.com/worktile/ngx-planet/commit/fbc5610d7451c3c4a5b84f1192b2e5217a8ad327))
106
+ * resolve error Expected to not be in Angular Zone, but it is! ([d51fb8f](https://github.com/worktile/ngx-planet/commit/d51fb8f074012ead1cb7a5ff8ac215c65ce30b28))
107
+
108
+ ### [9.0.4](https://github.com/worktile/ngx-planet/compare/9.0.2...9.0.4) (2020-12-12)
109
+
110
+
111
+ ### Bug Fixes
112
+
113
+ * resolve error Expected to not be in Angular Zone, but it is! ([d51fb8f](https://github.com/worktile/ngx-planet/commit/d51fb8f074012ead1cb7a5ff8ac215c65ce30b28))
114
+ * **app-loader:** should not set loading when app assets is loaded [#107](https://github.com/worktile/ngx-planet/issues/107) ([09a3f2e](https://github.com/worktile/ngx-planet/commit/09a3f2e8eca2a69d0afbad183aa82390a27bed15))
115
+
116
+ ### [9.0.3](https://github.com/worktile/ngx-planet/compare/9.0.2...9.0.3) (2020-12-12)
117
+
118
+
119
+ ### Bug Fixes
120
+
121
+ * **app-loader:** should not set loading when app assets is loaded [#107](https://github.com/worktile/ngx-planet/issues/107) ([09a3f2e](https://github.com/worktile/ngx-planet/commit/09a3f2e8eca2a69d0afbad183aa82390a27bed15))
122
+
123
+ ### [9.0.2](https://github.com/worktile/ngx-planet/compare/9.0.1-beta.3...9.0.2) (2020-12-10)
124
+
125
+
126
+ ### Bug Fixes
127
+
128
+ * **application-loader:** fix preload app load component not display ([0a3abd2](https://github.com/worktile/ngx-planet/commit/0a3abd2f139bf66ed08587f87477d201414ddffa))
129
+ * **application-loader:** remove debug logs, fix preload app load component ([#153](https://github.com/worktile/ngx-planet/issues/153)) ([24413e6](https://github.com/worktile/ngx-planet/commit/24413e6a164b0206949335d92faf3bf5df199ead))
130
+
131
+ ### [9.0.1-beta.6](https://github.com/worktile/ngx-planet/compare/9.0.1-beta.3...9.0.1-beta.6) (2020-12-10)
132
+
133
+
134
+ ### Bug Fixes
135
+
136
+ * **application-loader:** fix preload app load component not display ([0a3abd2](https://github.com/worktile/ngx-planet/commit/0a3abd2f139bf66ed08587f87477d201414ddffa))
137
+
138
+ ### [9.0.1-beta.5](https://github.com/worktile/ngx-planet/compare/9.0.1-beta.3...9.0.1-beta.5) (2020-12-10)
139
+
140
+
141
+ ### Bug Fixes
142
+
143
+ * **application-loader:** fix preload app load component not display ([0a3abd2](https://github.com/worktile/ngx-planet/commit/0a3abd2f139bf66ed08587f87477d201414ddffa))
144
+
145
+ ### [9.0.1-beta.4](https://github.com/worktile/ngx-planet/compare/9.0.1-beta.3...9.0.1-beta.4) (2020-12-10)
146
+
147
+
148
+ ### Bug Fixes
149
+
150
+ * **application-loader:** fix preload app load component not display ([0a3abd2](https://github.com/worktile/ngx-planet/commit/0a3abd2f139bf66ed08587f87477d201414ddffa))
151
+
152
+ ### [9.0.1-beta.3](https://github.com/worktile/ngx-planet/compare/9.0.1-beta.2...9.0.1-beta.3) (2020-12-09)
153
+
154
+
155
+ ### Bug Fixes
156
+
157
+ * **application-loader:** fix preload error when app assetsLoaded ([e1fba40](https://github.com/worktile/ngx-planet/commit/e1fba402b0e72884f07cd6f7454b224f507c8610))
158
+
159
+ ### [9.0.1-beta.2](https://github.com/worktile/ngx-planet/compare/1.2.3...9.0.1-beta.2) (2020-12-09)
160
+
161
+
162
+ ### Features
163
+
164
+ * asset-loader,application-loader,component-loader, preload add debug logs ([#142](https://github.com/worktile/ngx-planet/issues/142)) ([2e21ab0](https://github.com/worktile/ngx-planet/commit/2e21ab09d6f9b9ab19825148f586a650704a12b5))
165
+ * release 9.0.1-beta.0 for debug ([23a305b](https://github.com/worktile/ngx-planet/commit/23a305b85d6cbf9a0ba08b7f6e7c8aa60e4fc66c))
166
+
167
+
168
+ ### Bug Fixes
169
+
170
+ * **application-loader:** when load preloaded component, bootstrap directly ([3a50f1a](https://github.com/worktile/ngx-planet/commit/3a50f1a21350f87d63c769017e238c7e5e42f7fb))
171
+ * update peerDependencies to 9.0.0 ([a0e3c1b](https://github.com/worktile/ngx-planet/commit/a0e3c1b847faf9cf79b463f6ac993e260897f412))
172
+
173
+ ### [9.0.1-beta.1](https://github.com/worktile/ngx-planet/compare/1.2.3...9.0.1-beta.1) (2020-12-09)
174
+
175
+
176
+ ### Features
177
+
178
+ * asset-loader,application-loader,component-loader, preload add debug logs ([#142](https://github.com/worktile/ngx-planet/issues/142)) ([2e21ab0](https://github.com/worktile/ngx-planet/commit/2e21ab09d6f9b9ab19825148f586a650704a12b5))
179
+ * release 9.0.1-beta.0 for debug ([23a305b](https://github.com/worktile/ngx-planet/commit/23a305b85d6cbf9a0ba08b7f6e7c8aa60e4fc66c))
180
+
181
+
182
+ ### Bug Fixes
183
+
184
+ * **application-loader:** when load preloaded component, bootstrap directly ([3a50f1a](https://github.com/worktile/ngx-planet/commit/3a50f1a21350f87d63c769017e238c7e5e42f7fb))
185
+ * update peerDependencies to 9.0.0 ([a0e3c1b](https://github.com/worktile/ngx-planet/commit/a0e3c1b847faf9cf79b463f6ac993e260897f412))
186
+
187
+ ### [9.0.1-beta.0](https://github.com/worktile/ngx-planet/compare/1.2.3...9.0.1-beta.0) (2020-12-09)
188
+
189
+
190
+ ### Features
191
+
192
+ * asset-loader,application-loader,component-loader, preload add debug logs ([#142](https://github.com/worktile/ngx-planet/issues/142)) ([2e21ab0](https://github.com/worktile/ngx-planet/commit/2e21ab09d6f9b9ab19825148f586a650704a12b5))
193
+
194
+
195
+ ### Bug Fixes
196
+
197
+ * update peerDependencies to 9.0.0 ([a0e3c1b](https://github.com/worktile/ngx-planet/commit/a0e3c1b847faf9cf79b463f6ac993e260897f412))
198
+ * **application-loader:** when load preloaded component, bootstrap directly ([3a50f1a](https://github.com/worktile/ngx-planet/commit/3a50f1a21350f87d63c769017e238c7e5e42f7fb))
199
+
200
+ ## [9.0.0](https://github.com/worktile/ngx-planet/compare/1.2.3...9.0.0) (2020-12-09)
201
+
202
+
203
+ ### Bug Fixes
204
+
205
+ * update peerDependencies to 9.0.0 ([a0e3c1b](https://github.com/worktile/ngx-planet/commit/a0e3c1b847faf9cf79b463f6ac993e260897f412))
206
+ * **application-loader:** when load preloaded component, bootstrap directly ([3a50f1a](https://github.com/worktile/ngx-planet/commit/3a50f1a21350f87d63c769017e238c7e5e42f7fb))
207
+
208
+ ### [1.2.4](https://github.com/worktile/ngx-planet/compare/1.2.3...1.2.4) (2020-11-21)
209
+
210
+
211
+ ### Bug Fixes
212
+
213
+ * **application-loader:** when load preloaded component, bootstrap directly ([3a50f1a](https://github.com/worktile/ngx-planet/commit/3a50f1a21350f87d63c769017e238c7e5e42f7fb))
214
+
215
+ ### [1.2.3](https://github.com/worktile/ngx-planet/compare/1.2.2...1.2.3) (2020-11-18)
216
+
217
+ ### [1.2.2](https://github.com/worktile/ngx-planet/compare/1.2.1...1.2.2) (2020-11-18)
218
+
219
+
220
+ ### Bug Fixes
221
+
222
+ * **component-loader:** fix load component error when preload app ([edd4ea3](https://github.com/worktile/ngx-planet/commit/edd4ea3489e7a066bf7cbcc2bbcf50288178b1fc))
223
+
224
+ ### [1.2.1](https://github.com/worktile/ngx-planet/compare/1.1.2...1.2.1) (2020-11-09)
225
+
226
+
227
+ ### Features
228
+
229
+ * **global-planet:** simplify sub application's definition [#58](https://github.com/worktile/ngx-planet/issues/58) ([#131](https://github.com/worktile/ngx-planet/issues/131)) ([b738b26](https://github.com/worktile/ngx-planet/commit/b738b26e4ba6cff0724f18d1df601beaa32f22a5))
230
+ * **planet:** add stop feature to planet service ([#117](https://github.com/worktile/ngx-planet/issues/117)) ([eb9c93a](https://github.com/worktile/ngx-planet/commit/eb9c93a963bca7bff6b19838986b5844d2c89f4c))
231
+
232
+
233
+ ### Bug Fixes
234
+
235
+ * **component-loader:** fix load component error when prod env [#132](https://github.com/worktile/ngx-planet/issues/132) ([30540b2](https://github.com/worktile/ngx-planet/commit/30540b2bf748cb9218e970ab1eb522b54f45ea4d))
236
+ * **planet:** should load sub app when route redirectTo to sub app [#108](https://github.com/worktile/ngx-planet/issues/108) ([#111](https://github.com/worktile/ngx-planet/issues/111)) ([6ddd143](https://github.com/worktile/ngx-planet/commit/6ddd143e89388d918363ef279674e2d703e69ebc))
237
+
238
+ ## [1.2.0](https://github.com/worktile/ngx-planet/compare/1.1.2...1.2.0) (2020-07-30)
239
+
240
+
241
+ ### Features
242
+
243
+ * **planet:** add stop feature to planet service ([#117](https://github.com/worktile/ngx-planet/issues/117)) ([eb9c93a](https://github.com/worktile/ngx-planet/commit/eb9c93a963bca7bff6b19838986b5844d2c89f4c))
244
+
245
+
246
+ ### Bug Fixes
247
+
248
+ * **planet:** should load sub app when route redirectTo to sub app [#108](https://github.com/worktile/ngx-planet/issues/108) ([#111](https://github.com/worktile/ngx-planet/issues/111)) ([6ddd143](https://github.com/worktile/ngx-planet/commit/6ddd143e89388d918363ef279674e2d703e69ebc))
249
+
250
+ ### [1.1.3](https://github.com/worktile/ngx-planet/compare/1.1.2...1.1.3) (2020-07-11)
251
+
252
+
253
+ ### Bug Fixes
254
+
255
+ * **planet:** should load sub app when route redirectTo to sub app [#108](https://github.com/worktile/ngx-planet/issues/108) ([#111](https://github.com/worktile/ngx-planet/issues/111)) ([6ddd143](https://github.com/worktile/ngx-planet/commit/6ddd143e89388d918363ef279674e2d703e69ebc))
256
+
257
+ ### [1.1.2](https://github.com/worktile/ngx-planet/compare/1.1.1...1.1.2) (2020-05-19)
258
+
259
+ ### Bug Fixes
260
+
261
+ - **component-loader:** fix component register after load bug ([faaa57d](https://github.com/worktile/ngx-planet/commit/faaa57db341baf85d8691e8b96d4fce0789d95bb))
262
+
263
+ ### [1.1.1](https://github.com/worktile/ngx-planet/compare/1.1.0...1.1.1) (2020-05-19)
264
+
265
+ ### Features
266
+
267
+ - ensure global services only be injected once [#95](https://github.com/worktile/ngx-planet/issues/95) ([0652bac](https://github.com/worktile/ngx-planet/commit/0652bacd8c280c21befb18d1b94033792d14d599))
268
+ - **component-loader:** support set wrapper class ([bbdab9d](https://github.com/worktile/ngx-planet/commit/bbdab9d9ef43a55db6e20d7fae97a390e813d623))
269
+
270
+ ## [1.1.0](https://github.com/worktile/ngx-planet/compare/1.0.9...1.1.0) (2020-03-03)
271
+
272
+ ### Features
273
+
274
+ - **build:** bump angular to 8.x [#56](https://github.com/worktile/ngx-planet/issues/56) ([52d6bdf](https://github.com/worktile/ngx-planet/commit/52d6bdf295272b6a04f2f7d7dfd4f8230f4fc370))
275
+ - **component-loader:** load component support preload appliction ([f1f4a4e](https://github.com/worktile/ngx-planet/commit/f1f4a4ea9b02d4e8875080d44fe68e1a817ca7df))
276
+ - **demo:** support lazy loading route (app1's user module) [#55](https://github.com/worktile/ngx-planet/issues/55) ([4b78b78](https://github.com/worktile/ngx-planet/commit/4b78b782c4d6e0c616e3dda06d2167916cbfaae5))
277
+
278
+ <a name="1.0.9"></a>
279
+
280
+ ## [1.0.9](https://github.com/worktile/ngx-planet/compare/1.0.7...1.0.9) (2019-11-11)
281
+
282
+ ### Bug Fixes
283
+
284
+ - **app-loader:** should call error handler in ngZone, add test by way ([164adfc](https://github.com/worktile/ngx-planet/commit/164adfc))
285
+ - **planet:** should reroute once when start planet ([7f1bb3b](https://github.com/worktile/ngx-planet/commit/7f1bb3b))
286
+ - **planet-application-service:** fix match router path ([1571f82](https://github.com/worktile/ngx-planet/commit/1571f82))
287
+
288
+ <a name="1.0.8"></a>
289
+
290
+ ## [1.0.8](https://github.com/worktile/ngx-planet/compare/1.0.7...1.0.8) (2019-10-15)
291
+
292
+ ### Bug Fixes
293
+
294
+ - **app-loader:** should call error handler in ngZone, add test by way ([164adfc](https://github.com/worktile/ngx-planet/commit/164adfc))
295
+ - **planet:** should reroute once when start planet ([7f1bb3b](https://github.com/worktile/ngx-planet/commit/7f1bb3b))
296
+
297
+ <a name="1.0.7"></a>
298
+
299
+ ## [1.0.7](https://github.com/worktile/ngx-planet/compare/1.0.6...1.0.7) (2019-10-11)
300
+
301
+ ### Bug Fixes
302
+
303
+ - **app-loader:** backwards compatibility get current url, add test cases ([bd754e4](https://github.com/worktile/ngx-planet/commit/bd754e4))
304
+
305
+ <a name="1.0.6"></a>
306
+
307
+ ## [1.0.6](https://github.com/worktile/ngx-planet/compare/1.0.5...1.0.6) (2019-10-10)
308
+
309
+ ### Bug Fixes
310
+
311
+ - portal route change out ngZone when sub app route trigger change ([c2a5a66](https://github.com/worktile/ngx-planet/commit/c2a5a66))
312
+
313
+ <a name="1.0.5"></a>
314
+
315
+ ## [1.0.5](https://github.com/worktile/ngx-planet/compare/1.0.4...1.0.5) (2019-10-10)
316
+
317
+ ### Bug Fixes
318
+
319
+ - **app-loader:** should navigate when reroute active app [#267024](https://github.com/worktile/ngx-planet/issues/267024) ([34bdc1a](https://github.com/worktile/ngx-planet/commit/34bdc1a))
320
+ - **app-loader:** should not circulate redirect apps ([a009a6a](https://github.com/worktile/ngx-planet/commit/a009a6a))
321
+
322
+ ### Code Refactoring
323
+
324
+ - **planet:** rename app's host to hostParent, add settings for demo ([1bdb21e](https://github.com/worktile/ngx-planet/commit/1bdb21e))
325
+
326
+ ### Features
327
+
328
+ - **empty:** add empty component [#265875](https://github.com/worktile/ngx-planet/issues/265875) ([41f5ddd](https://github.com/worktile/ngx-planet/commit/41f5ddd))
329
+
330
+ ### BREAKING CHANGES
331
+
332
+ - **planet:** should change host to hostParent when register app
333
+
334
+ <a name="1.0.4"></a>
335
+
336
+ ## [1.0.4](https://github.com/worktile/ngx-planet/compare/1.0.3...1.0.4) (2019-09-25)
337
+
338
+ ### Bug Fixes
339
+
340
+ - **app:** can't start when url is same, don't reload active app [#265669](https://github.com/worktile/ngx-planet/issues/265669) ([af61eb4](https://github.com/worktile/ngx-planet/commit/af61eb4))
341
+
342
+ <a name="1.0.3"></a>
343
+
344
+ ## [1.0.3](https://github.com/worktile/ngx-micro-frontend/compare/1.0.1...1.0.3) (2019-09-25)
345
+
346
+ ### Features
347
+
348
+ - **app-ref:** sync portal route when route change, rename navigateByUrl ([dc104f9](https://github.com/worktile/ngx-micro-frontend/commit/dc104f9))
349
+ - **application:** add active status, appsLoadingStart event for loader ([c09f7d7](https://github.com/worktile/ngx-micro-frontend/commit/c09f7d7))
350
+
351
+ ### BREAKING CHANGES
352
+
353
+ Rename `onRouteChange` to `navigateByUrl` in PlanetApplicationRef, please upgrade planet to 1.0.3 in portal and sub apps at the same. if you are only upgrade planet in portal, it will throw error `navigateByUrl is undefined`.
354
+
355
+ <a name="1.0.2"></a>
356
+
357
+ ## [1.0.2](https://github.com/worktile/ngx-micro-frontend/compare/1.0.1...1.0.2) (2019-09-18)
358
+
359
+ ### Bug Fixes
360
+
361
+ - **app-loader:** should call errorHandle when preload app assets failed ([f043018](https://github.com/worktile/ngx-micro-frontend/commit/f043018))
362
+
363
+ <a name="1.0.1"></a>
364
+
365
+ ## [1.0.1](https://github.com/worktile/ngx-micro-frontend/compare/1.0.0...1.0.1) (2019-09-16)
366
+
367
+ ### Bug Fixes
368
+
369
+ - **application:** should reload last fail app which status is loadError ([a28b97f](https://github.com/worktile/ngx-micro-frontend/commit/a28b97f))
370
+ - **application:** should trigger next route change when last throw error ([75b3ca3](https://github.com/worktile/ngx-micro-frontend/commit/75b3ca3))
371
+
372
+ <a name="1.0.0"></a>
373
+
374
+ # [1.0.0](https://github.com/worktile/ngx-micro-frontend/compare/0.0.11...1.0.0) (2019-09-16)
375
+
376
+ ### Bug Fixes
377
+
378
+ - **application:** cancel bootstrapped app when next change [#264544](https://github.com/worktile/ngx-micro-frontend/issues/264544) ([8a997a9](https://github.com/worktile/ngx-micro-frontend/commit/8a997a9))
379
+
380
+ ### Features
381
+
382
+ - **application:** support simultaneous load and rendering multiple applications
383
+ - **application:** cancel last app loader which asserts is loading when next route change ([d737713](https://github.com/worktile/ngx-micro-frontend/commit/d737713))
384
+
385
+ <a name="0.0.11"></a>
386
+
387
+ ## [0.0.11](https://github.com/worktile/ngx-micro-frontend/compare/0.0.10...0.0.11) (2019-08-16)
388
+
389
+ ### Features
390
+
391
+ - **manifest:** load manifest file don't use resource prefix ([40dee5f](https://github.com/worktile/ngx-micro-frontend/commit/40dee5f))
@@ -0,0 +1,76 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, sex characteristics, gender identity and expression,
9
+ level of experience, education, socio-economic status, nationality, personal
10
+ appearance, race, religion, or sexual identity and orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at why520crazy@163.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
72
+
73
+ [homepage]: https://www.contributor-covenant.org
74
+
75
+ For answers to common questions about this code of conduct, see
76
+ https://www.contributor-covenant.org/faq
package/Dockerfile ADDED
@@ -0,0 +1,11 @@
1
+ FROM nginx:mainline-alpine
2
+ RUN rm /etc/nginx/conf.d/*
3
+
4
+ ADD nginx.conf /etc/nginx/conf.d/
5
+ RUN mkdir -p /etc/nginx/html/static/app1
6
+ RUN mkdir -p /etc/nginx/html/static/app2
7
+ RUN mkdir -p /etc/nginx/html/static/portal
8
+
9
+ COPY dist/app1 /etc/nginx/html/static/app1/
10
+ COPY dist/app2 /etc/nginx/html/static/app2/
11
+ COPY dist/portal /etc/nginx/html/static/portal/
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License
2
+
3
+ Copyright (c) 2018 - 2019 Worktile Inc. https://worktile.com
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.