@rxap/plugin-angular 16.1.0-dev.5 → 16.1.0-dev.50

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 (107) hide show
  1. package/CHANGELOG.md +396 -0
  2. package/LICENSE.md +621 -0
  3. package/README.md +50 -1
  4. package/generators.json +37 -0
  5. package/package.json +65 -46
  6. package/src/generators/fix-schematic/index.d.ts +2 -0
  7. package/src/generators/fix-schematic/index.js +7 -0
  8. package/src/generators/fix-schematic/index.js.map +1 -0
  9. package/src/generators/init/generator.js +13 -7
  10. package/src/generators/init/generator.js.map +1 -1
  11. package/src/generators/init/index.d.ts +2 -0
  12. package/src/generators/init/index.js +7 -0
  13. package/src/generators/init/index.js.map +1 -0
  14. package/src/generators/init/schema.d.ts +2 -0
  15. package/src/generators/init/schema.json +10 -0
  16. package/src/generators/init-application/files/app/app.navigation.ts.template +11 -0
  17. package/src/generators/init-application/files/app/app.routes.ts.template +14 -0
  18. package/src/generators/init-application/files/app/layout.routes.ts.template +33 -0
  19. package/src/generators/init-application/files/assets/icons/create-pwa-icons.sh +11 -0
  20. package/src/generators/init-application/files/assets/icons/icon-114x114.png +0 -0
  21. package/src/generators/init-application/files/assets/icons/icon-120x120.png +0 -0
  22. package/src/generators/init-application/files/assets/icons/icon-128x128.png +0 -0
  23. package/src/generators/init-application/files/assets/icons/icon-144x144.png +0 -0
  24. package/src/generators/init-application/files/assets/icons/icon-152x152.png +0 -0
  25. package/src/generators/init-application/files/assets/icons/icon-16x16.png +0 -0
  26. package/src/generators/init-application/files/assets/icons/icon-180x180.png +0 -0
  27. package/src/generators/init-application/files/assets/icons/icon-192x192.png +0 -0
  28. package/src/generators/init-application/files/assets/icons/icon-32x32.png +0 -0
  29. package/src/generators/init-application/files/assets/icons/icon-384x384.png +0 -0
  30. package/src/generators/init-application/files/assets/icons/icon-512x512.png +0 -0
  31. package/src/generators/init-application/files/assets/icons/icon-57x57.png +0 -0
  32. package/src/generators/init-application/files/assets/icons/icon-60x60.png +0 -0
  33. package/src/generators/init-application/files/assets/icons/icon-72x72.png +0 -0
  34. package/src/generators/init-application/files/assets/icons/icon-76x76.png +0 -0
  35. package/src/generators/init-application/files/assets/icons/icon-96x96.png +0 -0
  36. package/src/generators/init-application/files/assets/icons/icon.png +0 -0
  37. package/src/generators/init-application/files/assets/icons/icon.svg +43 -0
  38. package/src/generators/init-application/files/assets/logo.png +0 -0
  39. package/src/generators/init-application/files/assets/logo.svg +63 -0
  40. package/src/generators/init-application/files/monolithic/app/app.navigation.ts.template +11 -0
  41. package/src/generators/init-application/files/monolithic/app/app.routes.ts.template +14 -0
  42. package/src/generators/init-application/files/monolithic/app/layout.routes.ts.template +32 -0
  43. package/src/generators/init-application/files/monolithic/index.html.template +165 -0
  44. package/src/generators/init-application/files/monolithic/styles.scss.template +3 -0
  45. package/src/generators/init-application/files/oauth/silent-refresh.html +42 -0
  46. package/src/generators/init-application/files/service-worker/manifest.webmanifest +52 -0
  47. package/src/generators/init-application/files/shared/Dockerfile +29 -0
  48. package/src/generators/init-application/files/shared/assets/build.json +1 -0
  49. package/src/generators/init-application/files/shared/ngsw-config.json +2 -14
  50. package/src/generators/init-application/files/styles/_fonts.scss +9 -0
  51. package/src/generators/init-application/files/styles/_index.scss +10 -0
  52. package/src/generators/init-application/files/styles/_loading-animation.scss +200 -0
  53. package/src/generators/init-application/files/styles/_palette.scss +98 -0
  54. package/src/generators/init-application/files/styles/_table.scss +45 -0
  55. package/src/generators/init-application/files/styles/_theme.scss +14 -0
  56. package/src/generators/init-application/files/styles/_utilities.scss +112 -0
  57. package/src/generators/init-application/files/styles/_variables.scss +77 -0
  58. package/src/generators/init-application/files/styles/fonts/_croissant-one.scss +7 -0
  59. package/src/generators/init-application/files/styles/fonts/_fuggles.scss +7 -0
  60. package/src/generators/init-application/files/styles/fonts/_inclusive-sans.scss +7 -0
  61. package/src/generators/init-application/files/styles/fonts/_material-icons.scss +20 -0
  62. package/src/generators/init-application/files/styles/fonts/_mooli.scss +7 -0
  63. package/src/generators/init-application/files/styles/fonts/_pixelify-sans.scss +7 -0
  64. package/src/generators/init-application/files/styles/fonts/_roboto-mono.scss +7 -0
  65. package/src/generators/init-application/files/styles/fonts/_roboto.scss +95 -0
  66. package/src/generators/init-application/files/styles/fonts/_young-serif.scss +7 -0
  67. package/src/generators/init-application/files/styles/fonts/croissant-one.ttf +0 -0
  68. package/src/generators/init-application/files/styles/fonts/fuggles.ttf +0 -0
  69. package/src/generators/init-application/files/styles/fonts/inclusive-sans.ttf +0 -0
  70. package/src/generators/init-application/files/styles/fonts/material-icons.ttf +0 -0
  71. package/src/generators/init-application/files/styles/fonts/molli.ttf +0 -0
  72. package/src/generators/init-application/files/styles/fonts/pixelify-sans.ttf +0 -0
  73. package/src/generators/init-application/files/styles/fonts/roboto-mono.ttf +0 -0
  74. package/src/generators/init-application/files/styles/fonts/young-serif.ttf +0 -0
  75. package/src/generators/init-application/generator.js +446 -82
  76. package/src/generators/init-application/generator.js.map +1 -1
  77. package/src/generators/init-application/index.d.ts +2 -0
  78. package/src/generators/init-application/index.js +7 -0
  79. package/src/generators/init-application/index.js.map +1 -0
  80. package/src/generators/init-application/schema.d.ts +8 -0
  81. package/src/generators/init-application/schema.json +54 -8
  82. package/src/generators/init-feature/files/feature/__name__/routes.ts.template +10 -0
  83. package/src/generators/init-feature/generator.d.ts +11 -0
  84. package/src/generators/init-feature/generator.js +106 -0
  85. package/src/generators/init-feature/generator.js.map +1 -0
  86. package/src/generators/init-feature/index.d.ts +2 -0
  87. package/src/generators/init-feature/index.js +7 -0
  88. package/src/generators/init-feature/index.js.map +1 -0
  89. package/src/generators/init-feature/schema.d.ts +4 -0
  90. package/src/generators/init-feature/schema.json +20 -0
  91. package/src/generators/init-library/generator.js +88 -15
  92. package/src/generators/init-library/generator.js.map +1 -1
  93. package/src/generators/init-library/index.d.ts +2 -0
  94. package/src/generators/init-library/index.js +7 -0
  95. package/src/generators/init-library/index.js.map +1 -0
  96. package/src/generators/init-library/schema.d.ts +2 -0
  97. package/src/generators/init-library/schema.json +10 -0
  98. package/src/generators/schematic/index.d.ts +2 -0
  99. package/src/generators/schematic/index.js +7 -0
  100. package/src/generators/schematic/index.js.map +1 -0
  101. package/src/lib/skip-project.js +3 -3
  102. package/src/lib/skip-project.js.map +1 -1
  103. package/src/generators/init-application/files/shared/assets/Dockerfile +0 -5
  104. package/src/generators/init-application/files/shared/assets/nginx.conf +0 -74
  105. package/src/generators/init-application/files/shared/configuration/.gitkeep +0 -0
  106. package/src/generators/init-application/files/shared/i18n.index.html.hbs +0 -40
  107. /package/src/generators/init-application/files/{shared → assets}/.gitkeep +0 -0
package/CHANGELOG.md CHANGED
@@ -3,6 +3,402 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # 16.1.0-dev.50 (2023-10-11)
7
+
8
+ ### Bug Fixes
9
+
10
+ - adapt to new layout routing concept ([91f237b](https://gitlab.com/rxap/packages/commit/91f237b75bb1f1969ecaa6670e1b81f345eafa6a))
11
+ - add browser-tailwind as imp dep if project has tailwind configuration ([3d90660](https://gitlab.com/rxap/packages/commit/3d906604470f4f26d157f4683afe72b3dd8baae3))
12
+ - add build tailwind default inputs and outputs ([a3e44a0](https://gitlab.com/rxap/packages/commit/a3e44a00eb3d7acb6428016c59bf777cb5bd2263))
13
+ - add cypress configuration after library and application init ([3143462](https://gitlab.com/rxap/packages/commit/31434629003638f3b22a7e6e7e7d28d6d9c1bd18))
14
+ - add default build json ([11786f8](https://gitlab.com/rxap/packages/commit/11786f8ecbafc453750a31a0b7bc7fad9baf2345))
15
+ - add dialog update service ([7ca4a04](https://gitlab.com/rxap/packages/commit/7ca4a04062a24b6f26e5ffb7d36a078652627517))
16
+ - add docker file option to angular docker targets ([67ce088](https://gitlab.com/rxap/packages/commit/67ce08874138c76385cec290544190cc4f8e7ca9))
17
+ - add licence file to publishable packages ([d7de1cb](https://gitlab.com/rxap/packages/commit/d7de1cb9db1bd1628f37084e3b0ffd1755aa75f6))
18
+ - add logo.png to application assets if not exists ([e195e49](https://gitlab.com/rxap/packages/commit/e195e498128d7b2b705877b33e040049be1f1821))
19
+ - add missing files for localazy if not exists ([6a90429](https://gitlab.com/rxap/packages/commit/6a90429504cd46605460491acdf50473e411b192))
20
+ - add missing imports ([cbe7198](https://gitlab.com/rxap/packages/commit/cbe719810cf2dade49d12a50f27620fe9adb0205))
21
+ - add missing options schema ([a678d8f](https://gitlab.com/rxap/packages/commit/a678d8f80f2d17e5609ead5572eb5d5026c0c8e0))
22
+ - add missing package installations ([bd00a4a](https://gitlab.com/rxap/packages/commit/bd00a4a77cf6ff0783be707ca4d13d91e1e0775f))
23
+ - add missing polyfills default and prevent replacement ([e6ccb83](https://gitlab.com/rxap/packages/commit/e6ccb8306309b07ace354557e56c349062189a68))
24
+ - add missing providers ([cf63eed](https://gitlab.com/rxap/packages/commit/cf63eed3bcfd9cdd9df24e27f956115d298e850f))
25
+ - add newline after file content ([d1debff](https://gitlab.com/rxap/packages/commit/d1debff4103c58960b7d972684d64b9f013f7305))
26
+ - add project ts-morph ([fda78f5](https://gitlab.com/rxap/packages/commit/fda78f5ed61caac6dc5c4d9a70afd3aced6a05fa))
27
+ - add required scripts for markdown parsing ([a5bd1df](https://gitlab.com/rxap/packages/commit/a5bd1df3636b496ab5fc8be97de96a9e8ccf3c77))
28
+ - add service worker files ([7d41c99](https://gitlab.com/rxap/packages/commit/7d41c99d60e22b0c1e0e8f9b299eb125bb366414))
29
+ - add skip-projects flag ([e1f31ed](https://gitlab.com/rxap/packages/commit/e1f31ed837646f605ced82a52749e62af07ba939))
30
+ - animation loading issue ([10ee4ec](https://gitlab.com/rxap/packages/commit/10ee4ec53c837e724be8e813d3a7ad1e3e097a9d))
31
+ - change from commonjs to es2022 ([cf675a7](https://gitlab.com/rxap/packages/commit/cf675a7254de9ce4b269264df59794dd42fcbd8b))
32
+ - create default application configuration folder ([5b9242e](https://gitlab.com/rxap/packages/commit/5b9242ebb710c6565685319ec40dd8f8d6e0be0e))
33
+ - create shared folder structure if Dockerfile does not exist ([0cd6dfc](https://gitlab.com/rxap/packages/commit/0cd6dfc3e8d721fdcf9f77236dfc9346370ca136))
34
+ - ensure all required cacheable operations are defined ([d9ded9c](https://gitlab.com/rxap/packages/commit/d9ded9c5e150d9781ce490ad7ac292194d09bf2a))
35
+ - ensure overwrite option is passed to sub schematics ([0c8a19b](https://gitlab.com/rxap/packages/commit/0c8a19b5166f804aa335f739a00a5415bd97f61a))
36
+ - ensure project tags ([4a59b94](https://gitlab.com/rxap/packages/commit/4a59b94526ea0ed16216b1b8001a694ac7a8bea4))
37
+ - ensure projects are buildable or publishable ([354400b](https://gitlab.com/rxap/packages/commit/354400bd7b012e67801f8986ae4a05b40ef44d4a))
38
+ - ensure the generate-open-api target is run before building or serving a angular application ([dd1d915](https://gitlab.com/rxap/packages/commit/dd1d9156d98642f69d6f3783db758688a556304d))
39
+ - ensure the localize init polyfill is added ([95159a9](https://gitlab.com/rxap/packages/commit/95159a91fe507d77bf1215c7ca3ef05e62071f7d))
40
+ - ensure the project name is not included in the project tag list ([46d4479](https://gitlab.com/rxap/packages/commit/46d44798258ea1b20df9d4408b9c0809f55027b2))
41
+ - expose generators as schematics ([8a58d07](https://gitlab.com/rxap/packages/commit/8a58d07c2f1dcfff75e724a418d7c3bddb2d0bbc))
42
+ - generate readme with peer dependencies to install ([27c2cd7](https://gitlab.com/rxap/packages/commit/27c2cd7d98f0c8a499b8c30719f49d69e4970ae9))
43
+ - if the application is monolithic then open-api is required ([6e757fb](https://gitlab.com/rxap/packages/commit/6e757fb4ee962e9dda3c603a8e98d83e77bca42c))
44
+ - improve dynamic theme handling ([77c62df](https://gitlab.com/rxap/packages/commit/77c62dfe77a38bdc00da6a176b09f99c38de2147))
45
+ - init index html file ([285fe1f](https://gitlab.com/rxap/packages/commit/285fe1f1069c9296d82302558f33bf0198a7a5ab))
46
+ - **init-library:** add check version executor to angular libraries ([e2b82e3](https://gitlab.com/rxap/packages/commit/e2b82e3f81076a35a4c2b7984cc813fc62dbcfda))
47
+ - install required dependencies ([a416b24](https://gitlab.com/rxap/packages/commit/a416b24af4cedbb63218de1402e5cbb2ccaf68d9))
48
+ - install required dependencies ([423352a](https://gitlab.com/rxap/packages/commit/423352a191224e098fea5691ed10304cbeb9e71e))
49
+ - install required dependencies ([85d4206](https://gitlab.com/rxap/packages/commit/85d4206beff2fb102539d0353a8b5bed9552de61))
50
+ - install required dependencies ([687d23d](https://gitlab.com/rxap/packages/commit/687d23d1dd0a026ec9284ccacec6a04d6affa3c2))
51
+ - introduce Is\*Project functions ([3c9f251](https://gitlab.com/rxap/packages/commit/3c9f251f1d7be46ca366171e79e86ef2764fa3b0))
52
+ - only add oauth files if oauth flag used ([bd558a1](https://gitlab.com/rxap/packages/commit/bd558a1f745d8b029f12f4cb4123b0022f51e9e3))
53
+ - only add specific eslint to project in the rxap repo ([bb96a9d](https://gitlab.com/rxap/packages/commit/bb96a9d4072a1dc02a3ff56467fbae80fbfda56d))
54
+ - **options:** disable generate main by default ([ee99cab](https://gitlab.com/rxap/packages/commit/ee99cab840b24480767d432c34f9873750c9d524))
55
+ - peer dependency issue ([ee95415](https://gitlab.com/rxap/packages/commit/ee95415370d9ef2396916d6c25061a0df791034a))
56
+ - remove nx dependency ([b2b98b0](https://gitlab.com/rxap/packages/commit/b2b98b01438e9439f9743fb27629c7e96072df45))
57
+ - remove support for open-api client sdk packages ([0015878](https://gitlab.com/rxap/packages/commit/0015878e53cba42943d37354ef5c7d5f17828fd7))
58
+ - remove the default angular project files ([b4384c1](https://gitlab.com/rxap/packages/commit/b4384c1bc77cc0b2e536b63cecd5c50bd574c6b5))
59
+ - remove unused folders ([7bf40fe](https://gitlab.com/rxap/packages/commit/7bf40fe891b98fb4edbf34e486cf78d0550b252f))
60
+ - resolve font import issues ([fccfb73](https://gitlab.com/rxap/packages/commit/fccfb73d5834a933a735e0088a61cd646cfc4c52))
61
+ - restructure angular shared files ([4dcf11f](https://gitlab.com/rxap/packages/commit/4dcf11f4e763a3a42f01b1068d787dfb64743670))
62
+ - run gitlab ci generators on application init ([84f804f](https://gitlab.com/rxap/packages/commit/84f804fb533ac84f80a708cff8c1b8c78f23707c))
63
+ - run the update target defaults function independent of any project ([d204e3e](https://gitlab.com/rxap/packages/commit/d204e3ecfc81d35e25865d459aadb30ab6805e3f))
64
+ - set background ([03430d7](https://gitlab.com/rxap/packages/commit/03430d7c498e5ea8d9b608a4042aad73ab3c89ae))
65
+ - set correct default publishable library package json version ([c942e51](https://gitlab.com/rxap/packages/commit/c942e5152a19e33cf9881106879eb2df20ef723b))
66
+ - set default traefik docker labels ([1506252](https://gitlab.com/rxap/packages/commit/150625287908f4db1e1ba0571b90a0776832e8a3))
67
+ - set initial budget to 2mb ([524187e](https://gitlab.com/rxap/packages/commit/524187e27e81de5a4f65939e11748853c327e326))
68
+ - skip plugin or schematic projects ([8953299](https://gitlab.com/rxap/packages/commit/89532993198c32bc25e5008748db385f6cee25a7))
69
+ - split app and layout routes ([278dab0](https://gitlab.com/rxap/packages/commit/278dab0adc91bc8ab648d704c411f773f8e597d0))
70
+ - support oauth ([4d355d3](https://gitlab.com/rxap/packages/commit/4d355d3114d38799fb4a9aa4fc78a50d568ecf85))
71
+ - support open api legacy init ([7f569f7](https://gitlab.com/rxap/packages/commit/7f569f7cd7105fbd856679ce3d9b9d4a359d9e61))
72
+ - use CoerceFilesStructure function ([51f13e0](https://gitlab.com/rxap/packages/commit/51f13e0e261e1a93a95f5a96fe8ec4a0597d4ad3))
73
+ - use CoerceFilesStructure utility function ([2b5ac92](https://gitlab.com/rxap/packages/commit/2b5ac92dcffd7f54e4fd2181d6ecd7a5a5537e57))
74
+ - use language code instead of lang ([1208cbc](https://gitlab.com/rxap/packages/commit/1208cbc5dce8f5ba8ce0d6abb2c2b9e2c033bc53))
75
+ - use new angular bootstrap utility class ([c832b38](https://gitlab.com/rxap/packages/commit/c832b38d74851a1dfa304ff721044be66336069e))
76
+ - use new error providers and interceptors ([f5ab21a](https://gitlab.com/rxap/packages/commit/f5ab21a16328f2c99d98d56fcfa005589d5edd30))
77
+ - use utility docker image for frontend containers ([2ac2eda](https://gitlab.com/rxap/packages/commit/2ac2eda7670f9b682964e868ef1e7161bbff4465))
78
+ - use utility function to coerce default target dependencies ([d8db29f](https://gitlab.com/rxap/packages/commit/d8db29f8bd66057455ee10e695df217f03dd6792))
79
+
80
+ ### Features
81
+
82
+ - add cleanup generator ([96e58f4](https://gitlab.com/rxap/packages/commit/96e58f4da21c573c6baa5858af891a15f825d2c1))
83
+ - add init-feature generator ([9aa57c1](https://gitlab.com/rxap/packages/commit/9aa57c1e6a0f5a58f780ec4ca31d0d7dafbe1acb))
84
+ - add localazyReadKey option ([427917e](https://gitlab.com/rxap/packages/commit/427917e3d469357dcaf3d1a9667ae0719c9c6cde))
85
+ - add new executor check-ng-package ([4fbdc87](https://gitlab.com/rxap/packages/commit/4fbdc875d31ed2731d4277cb4d4b93210384227c))
86
+ - add ProvideEnvironment function ([63e17e0](https://gitlab.com/rxap/packages/commit/63e17e04f25eac4411afd148c47c38bfb106a250))
87
+ - add support for monolithic angular init ([6e15f9f](https://gitlab.com/rxap/packages/commit/6e15f9fef0ca1238cc3d53451178f635a098954c))
88
+ - add tailwind generator ([bee09c3](https://gitlab.com/rxap/packages/commit/bee09c32bd612cff4c9c220a2cd77ecdc2e39dff))
89
+ - add the mdi asset ([a6ed4ef](https://gitlab.com/rxap/packages/commit/a6ed4ef273d577571610bd25caa7cfab1ac7f582))
90
+ - coerce default application environments ([54a990d](https://gitlab.com/rxap/packages/commit/54a990d57e290c553ef782426f91ad7be81325b1))
91
+ - enforce that every sec entrypoint is include in the tsconfig ([98dc957](https://gitlab.com/rxap/packages/commit/98dc957906ed46c0552759609a3f64d32350958a))
92
+ - init application styles ([e04eb54](https://gitlab.com/rxap/packages/commit/e04eb548a1b012f801ec68b7bf5554d334dde213))
93
+ - support dynamic app config generation ([5185d97](https://gitlab.com/rxap/packages/commit/5185d976bd45c535024a3dc7ce82203165fb6521))
94
+ - support dynamic font families and theme density ([6a54998](https://gitlab.com/rxap/packages/commit/6a549982461755f4470123ce90f9fb70990ee206))
95
+ - use new angular bootstrap utility class ([5eb4f8b](https://gitlab.com/rxap/packages/commit/5eb4f8b6ccaab0512ca23fbebe821d24e26980b1))
96
+
97
+ ### Reverts
98
+
99
+ - change from commonjs to es2022 ([50eca61](https://gitlab.com/rxap/packages/commit/50eca61e9a89388d1cfeefb8b1029b302b6f307e))
100
+
101
+ # [16.1.0-dev.49](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.48...@rxap/plugin-angular@16.1.0-dev.49) (2023-10-10)
102
+
103
+ ### Bug Fixes
104
+
105
+ - remove unused folders ([fd6c10a](https://gitlab.com/rxap/packages/commit/fd6c10ad043399b3548f3f538e547f16aad6633c))
106
+ - set default traefik docker labels ([f1bb5c6](https://gitlab.com/rxap/packages/commit/f1bb5c6e6d9a78c9ce78d8af97f14ff2abcc3cf4))
107
+ - use CoerceFilesStructure utility function ([4a048af](https://gitlab.com/rxap/packages/commit/4a048af4cdbf74c010de20115d21affa37995637))
108
+
109
+ # [16.1.0-dev.48](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.47...@rxap/plugin-angular@16.1.0-dev.48) (2023-10-03)
110
+
111
+ ### Bug Fixes
112
+
113
+ - ensure all required cacheable operations are defined ([49a9199](https://gitlab.com/rxap/packages/commit/49a9199cd2592cf8550650dc17f9995e4f6727f8))
114
+
115
+ # [16.1.0-dev.47](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.46...@rxap/plugin-angular@16.1.0-dev.47) (2023-10-02)
116
+
117
+ ### Bug Fixes
118
+
119
+ - only add specific eslint to project in the rxap repo ([8f59c18](https://gitlab.com/rxap/packages/commit/8f59c1882fdc5eb37a098fdd526acb3fec644444))
120
+ - set correct default publishable library package json version ([32c032d](https://gitlab.com/rxap/packages/commit/32c032dd47552dc53f5adbc39af0ef2a074beea6))
121
+
122
+ # [16.1.0-dev.46](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.45...@rxap/plugin-angular@16.1.0-dev.46) (2023-10-02)
123
+
124
+ ### Bug Fixes
125
+
126
+ - add cypress configuration after library and application init ([d7fc370](https://gitlab.com/rxap/packages/commit/d7fc370493c66e070ba4bf3bf8a0bf27d18e7094))
127
+ - introduce Is\*Project functions ([0f4a53a](https://gitlab.com/rxap/packages/commit/0f4a53a2a68c7f854d819c005a30957d8b1cb3c6))
128
+ - remove the default angular project files ([90ec712](https://gitlab.com/rxap/packages/commit/90ec712a656379696540db3d7b59a3257db76917))
129
+
130
+ # [16.1.0-dev.45](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.44...@rxap/plugin-angular@16.1.0-dev.45) (2023-10-02)
131
+
132
+ ### Bug Fixes
133
+
134
+ - add missing polyfills default and prevent replacement ([6cda814](https://gitlab.com/rxap/packages/commit/6cda814b4b35b7efd2efce85685c2e25011b8c25))
135
+ - run the update target defaults function independent of any project ([9948b6c](https://gitlab.com/rxap/packages/commit/9948b6c5f158d10021eafa93ec828da731444d3c))
136
+
137
+ # [16.1.0-dev.44](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.43...@rxap/plugin-angular@16.1.0-dev.44) (2023-10-02)
138
+
139
+ ### Bug Fixes
140
+
141
+ - ensure the generate-open-api target is run before building or serving a angular application ([931b545](https://gitlab.com/rxap/packages/commit/931b545e035ef027ea8149672becb086b2c373e8))
142
+
143
+ # [16.1.0-dev.43](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.42...@rxap/plugin-angular@16.1.0-dev.43) (2023-09-28)
144
+
145
+ ### Bug Fixes
146
+
147
+ - resolve font import issues ([1800e50](https://gitlab.com/rxap/packages/commit/1800e50b1abed5403ffc3c0f75e3ba282b2730c7))
148
+
149
+ # [16.1.0-dev.42](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.41...@rxap/plugin-angular@16.1.0-dev.42) (2023-09-28)
150
+
151
+ ### Bug Fixes
152
+
153
+ - improve dynamic theme handling ([7ffd28b](https://gitlab.com/rxap/packages/commit/7ffd28b0a6d86cd6690cac1d750bda104108fb74))
154
+
155
+ # [16.1.0-dev.41](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.40...@rxap/plugin-angular@16.1.0-dev.41) (2023-09-28)
156
+
157
+ ### Features
158
+
159
+ - support dynamic font families and theme density ([a212366](https://gitlab.com/rxap/packages/commit/a21236669cfe89f51b5946cd2d28e72411481dc9))
160
+
161
+ # [16.1.0-dev.40](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.39...@rxap/plugin-angular@16.1.0-dev.40) (2023-09-27)
162
+
163
+ ### Bug Fixes
164
+
165
+ - use CoerceFilesStructure function ([4bc088e](https://gitlab.com/rxap/packages/commit/4bc088eefdc1d2cf8444c395c7d8e648330b7f6f))
166
+
167
+ # [16.1.0-dev.39](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.38...@rxap/plugin-angular@16.1.0-dev.39) (2023-09-22)
168
+
169
+ **Note:** Version bump only for package @rxap/plugin-angular
170
+
171
+ # [16.1.0-dev.38](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.37...@rxap/plugin-angular@16.1.0-dev.38) (2023-09-21)
172
+
173
+ ### Bug Fixes
174
+
175
+ - only add oauth files if oauth flag used ([b187248](https://gitlab.com/rxap/packages/commit/b1872487e2cef343327daff0dd25f9525301db04))
176
+
177
+ # [16.1.0-dev.37](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.36...@rxap/plugin-angular@16.1.0-dev.37) (2023-09-21)
178
+
179
+ ### Bug Fixes
180
+
181
+ - add skip-projects flag ([0f45987](https://gitlab.com/rxap/packages/commit/0f45987bc9dd927b1ede9eb53256125fa0e33674))
182
+
183
+ # [16.1.0-dev.36](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.35...@rxap/plugin-angular@16.1.0-dev.36) (2023-09-20)
184
+
185
+ ### Bug Fixes
186
+
187
+ - add missing options schema ([215c930](https://gitlab.com/rxap/packages/commit/215c930875b28d98d2252c9ad735406c810eb295))
188
+ - add missing package installations ([c12a2d0](https://gitlab.com/rxap/packages/commit/c12a2d01c45a7d4fe33f550e2e40de83f80625ca))
189
+
190
+ # [16.1.0-dev.35](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.34...@rxap/plugin-angular@16.1.0-dev.35) (2023-09-19)
191
+
192
+ ### Bug Fixes
193
+
194
+ - add dialog update service ([984ad4b](https://gitlab.com/rxap/packages/commit/984ad4bd1907ef80f60f0af5ae709baeebd9628b))
195
+
196
+ ### Features
197
+
198
+ - support dynamic app config generation ([06616ad](https://gitlab.com/rxap/packages/commit/06616ad816961b5fc3724992dd2b6b0d7aafc716))
199
+
200
+ # [16.1.0-dev.34](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.33...@rxap/plugin-angular@16.1.0-dev.34) (2023-09-19)
201
+
202
+ ### Bug Fixes
203
+
204
+ - support oauth ([a5c1d0d](https://gitlab.com/rxap/packages/commit/a5c1d0d32a6e874c5ad505e46c6803f451664585))
205
+
206
+ # [16.1.0-dev.33](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.32...@rxap/plugin-angular@16.1.0-dev.33) (2023-09-18)
207
+
208
+ ### Bug Fixes
209
+
210
+ - add default build json ([3b492c1](https://gitlab.com/rxap/packages/commit/3b492c14934fecd8da3215fb7ce72858bc52bcb1))
211
+ - add required scripts for markdown parsing ([3d08acc](https://gitlab.com/rxap/packages/commit/3d08accd00b0c60cbdd9bb294edb8cfe931ab424))
212
+ - install required dependencies ([1eafe46](https://gitlab.com/rxap/packages/commit/1eafe462bcc0797340b52e3853ddffb49a5e584e))
213
+
214
+ # [16.1.0-dev.32](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.31...@rxap/plugin-angular@16.1.0-dev.32) (2023-09-18)
215
+
216
+ ### Bug Fixes
217
+
218
+ - ensure project tags ([f644ed7](https://gitlab.com/rxap/packages/commit/f644ed7191bb89fa6d45ae53ed61c7ff0f36ab8a))
219
+
220
+ ### Features
221
+
222
+ - add localazyReadKey option ([912b428](https://gitlab.com/rxap/packages/commit/912b4288b37adafb1fae7ffe01dc2934baa4fd26))
223
+
224
+ # [16.1.0-dev.31](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.30...@rxap/plugin-angular@16.1.0-dev.31) (2023-09-18)
225
+
226
+ ### Bug Fixes
227
+
228
+ - add service worker files ([073e1a3](https://gitlab.com/rxap/packages/commit/073e1a3a95aa1a56e75b6950ebfe56c8599eb0f0))
229
+ - init index html file ([3bdefa9](https://gitlab.com/rxap/packages/commit/3bdefa98115cc3fc3bbd069227780a8887b6e518))
230
+
231
+ # [16.1.0-dev.30](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.29...@rxap/plugin-angular@16.1.0-dev.30) (2023-09-18)
232
+
233
+ ### Bug Fixes
234
+
235
+ - set initial budget to 2mb ([bbb7bb0](https://gitlab.com/rxap/packages/commit/bbb7bb044319f0c46964cc6322328b9222161080))
236
+
237
+ # [16.1.0-dev.29](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.28...@rxap/plugin-angular@16.1.0-dev.29) (2023-09-18)
238
+
239
+ ### Bug Fixes
240
+
241
+ - create shared folder structure if Dockerfile does not exist ([42f5ab9](https://gitlab.com/rxap/packages/commit/42f5ab9f612ca8f3b6dab49171e551d827816918))
242
+
243
+ # [16.1.0-dev.28](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.27...@rxap/plugin-angular@16.1.0-dev.28) (2023-09-18)
244
+
245
+ ### Bug Fixes
246
+
247
+ - install required dependencies ([fe27dc6](https://gitlab.com/rxap/packages/commit/fe27dc6b7ef65b80cffac5793c8e503dcbbe736a))
248
+
249
+ # [16.1.0-dev.27](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.26...@rxap/plugin-angular@16.1.0-dev.27) (2023-09-18)
250
+
251
+ ### Bug Fixes
252
+
253
+ - install required dependencies ([88274b5](https://gitlab.com/rxap/packages/commit/88274b570bd35c80bd479f4f3b98666b1f60a8fb))
254
+
255
+ # [16.1.0-dev.26](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.25...@rxap/plugin-angular@16.1.0-dev.26) (2023-09-18)
256
+
257
+ ### Bug Fixes
258
+
259
+ - install required dependencies ([1a4b04c](https://gitlab.com/rxap/packages/commit/1a4b04c5b9c7c44a9d57f93b491de9e7ef93685a))
260
+
261
+ # [16.1.0-dev.25](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.24...@rxap/plugin-angular@16.1.0-dev.25) (2023-09-18)
262
+
263
+ ### Bug Fixes
264
+
265
+ - add missing providers ([f526c6c](https://gitlab.com/rxap/packages/commit/f526c6c01354e84fb04bbf1d256c992a6663941e))
266
+
267
+ # [16.1.0-dev.24](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.23...@rxap/plugin-angular@16.1.0-dev.24) (2023-09-15)
268
+
269
+ ### Features
270
+
271
+ - add ProvideEnvironment function ([4574202](https://gitlab.com/rxap/packages/commit/45742021f40ac859408619b796eaaab7ab3c6e49))
272
+
273
+ # [16.1.0-dev.23](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.22...@rxap/plugin-angular@16.1.0-dev.23) (2023-09-14)
274
+
275
+ ### Bug Fixes
276
+
277
+ - set background ([ff59d7b](https://gitlab.com/rxap/packages/commit/ff59d7bcd3731f29e89a8c486127e7450dfd7989))
278
+
279
+ # [16.1.0-dev.22](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.21...@rxap/plugin-angular@16.1.0-dev.22) (2023-09-12)
280
+
281
+ ### Bug Fixes
282
+
283
+ - peer dependency issue ([e67e2b8](https://gitlab.com/rxap/packages/commit/e67e2b8eb884b598536d16c2c544a9ad9be5b53e))
284
+
285
+ # [16.1.0-dev.21](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.20...@rxap/plugin-angular@16.1.0-dev.21) (2023-09-12)
286
+
287
+ ### Bug Fixes
288
+
289
+ - restructure angular shared files ([20cfdb2](https://gitlab.com/rxap/packages/commit/20cfdb268ce02ad10ceafb56ce031e330563c3c2))
290
+ - use language code instead of lang ([d31d77f](https://gitlab.com/rxap/packages/commit/d31d77f3f82680c5ebaf2784061eec9437bc4f3f))
291
+
292
+ # [16.1.0-dev.20](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.19...@rxap/plugin-angular@16.1.0-dev.20) (2023-09-09)
293
+
294
+ ### Bug Fixes
295
+
296
+ - add missing files for localazy if not exists ([d49ffd4](https://gitlab.com/rxap/packages/commit/d49ffd4a90552d9b4b801d86e243be984fbdfb5d))
297
+
298
+ # [16.1.0-dev.19](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.18...@rxap/plugin-angular@16.1.0-dev.19) (2023-09-08)
299
+
300
+ ### Bug Fixes
301
+
302
+ - add missing imports ([a325205](https://gitlab.com/rxap/packages/commit/a325205c43a8936ba37587a991f3b74071cd942a))
303
+ - support open api legacy init ([caea342](https://gitlab.com/rxap/packages/commit/caea3426d68b25e28f2dd85465553fd8af664088))
304
+
305
+ # [16.1.0-dev.18](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.17...@rxap/plugin-angular@16.1.0-dev.18) (2023-09-08)
306
+
307
+ ### Bug Fixes
308
+
309
+ - use new error providers and interceptors ([328ecba](https://gitlab.com/rxap/packages/commit/328ecba3505e22ea71268e33f780eefb3f653f6b))
310
+
311
+ # [16.1.0-dev.17](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.16...@rxap/plugin-angular@16.1.0-dev.17) (2023-09-07)
312
+
313
+ **Note:** Version bump only for package @rxap/plugin-angular
314
+
315
+ # [16.1.0-dev.16](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.15...@rxap/plugin-angular@16.1.0-dev.16) (2023-09-03)
316
+
317
+ **Note:** Version bump only for package @rxap/plugin-angular
318
+
319
+ # [16.1.0-dev.15](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.14...@rxap/plugin-angular@16.1.0-dev.15) (2023-09-03)
320
+
321
+ ### Bug Fixes
322
+
323
+ - add newline after file content ([0d05f70](https://gitlab.com/rxap/packages/commit/0d05f70f8f41208ec25bb0dba570d0f6cb763ac6))
324
+
325
+ ### Features
326
+
327
+ - enforce that every sec entrypoint is include in the tsconfig ([f1e84da](https://gitlab.com/rxap/packages/commit/f1e84da6ceecea92fdca19b69d8a308e1d07dfd7))
328
+
329
+ # [16.1.0-dev.14](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.13...@rxap/plugin-angular@16.1.0-dev.14) (2023-09-03)
330
+
331
+ ### Bug Fixes
332
+
333
+ - adapt to new layout routing concept ([f068b7e](https://gitlab.com/rxap/packages/commit/f068b7ed9261c92082913e5ecd87084633b434a6))
334
+ - add logo.png to application assets if not exists ([c0e7a73](https://gitlab.com/rxap/packages/commit/c0e7a73046bf1af007fa7d24da83d9917451bb35))
335
+ - animation loading issue ([5e241ed](https://gitlab.com/rxap/packages/commit/5e241ed4b9e83575b881f06214255c6f1d2937ce))
336
+ - ensure the localize init polyfill is added ([ee44428](https://gitlab.com/rxap/packages/commit/ee44428279261e6068979f8d6a669ad83cb545ff))
337
+ - if the application is monolithic then open-api is required ([dc2227f](https://gitlab.com/rxap/packages/commit/dc2227f460df2bb27c4e58dd27f70d5ba7eccef1))
338
+ - remove support for open-api client sdk packages ([ace153f](https://gitlab.com/rxap/packages/commit/ace153f977690e7714c3c4110600e2a8916a0d52))
339
+ - split app and layout routes ([1e7c540](https://gitlab.com/rxap/packages/commit/1e7c54055ed8f7fc4fb4dc710097783cab761813))
340
+
341
+ ### Features
342
+
343
+ - add the mdi asset ([4e973c2](https://gitlab.com/rxap/packages/commit/4e973c23866ca1771d428f0382085614da29a801))
344
+ - init application styles ([5963c4d](https://gitlab.com/rxap/packages/commit/5963c4df5f41d023f234abcde444183972e2157f))
345
+
346
+ # [16.1.0-dev.13](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.12...@rxap/plugin-angular@16.1.0-dev.13) (2023-09-02)
347
+
348
+ ### Features
349
+
350
+ - add cleanup generator ([844d050](https://gitlab.com/rxap/packages/commit/844d0504ea65e41d22f4cd90b2b9c266ee93f489))
351
+ - add init-feature generator ([8925c31](https://gitlab.com/rxap/packages/commit/8925c31b1a2f396b5b5e753a71786b10d45afe57))
352
+ - add support for monolithic angular init ([270e1e2](https://gitlab.com/rxap/packages/commit/270e1e2ce27b427615ee97f5bb72fb5dad1fe095))
353
+
354
+ # [16.1.0-dev.12](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.11...@rxap/plugin-angular@16.1.0-dev.12) (2023-08-31)
355
+
356
+ ### Bug Fixes
357
+
358
+ - add project ts-morph ([f17725d](https://gitlab.com/rxap/packages/commit/f17725dccf31d3f5fab9087e103e19ad5df43246))
359
+ - ensure overwrite option is passed to sub schematics ([8472aab](https://gitlab.com/rxap/packages/commit/8472aab8814227c851fab9ae4c1b9ec3019d6f4e))
360
+ - ensure the project name is not included in the project tag list ([b131ac3](https://gitlab.com/rxap/packages/commit/b131ac3bd92b3b8799d62f15bbd30a1997d7c753))
361
+
362
+ ### Features
363
+
364
+ - coerce default application environments ([6608a7e](https://gitlab.com/rxap/packages/commit/6608a7e8e074ce207a1a405906cc07d0f1e4a8d8))
365
+
366
+ # [16.1.0-dev.11](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.10...@rxap/plugin-angular@16.1.0-dev.11) (2023-08-17)
367
+
368
+ ### Reverts
369
+
370
+ - change from commonjs to es2022 ([747a381](https://gitlab.com/rxap/packages/commit/747a381a090f0a276cf363da61bb19ed0c9cb5b7))
371
+
372
+ # [16.1.0-dev.10](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.9...@rxap/plugin-angular@16.1.0-dev.10) (2023-08-16)
373
+
374
+ ### Bug Fixes
375
+
376
+ - change from commonjs to es2022 ([fd0f2ba](https://gitlab.com/rxap/packages/commit/fd0f2bae24eae7c854e96f630076cd5598c30be6))
377
+
378
+ # [16.1.0-dev.9](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.8...@rxap/plugin-angular@16.1.0-dev.9) (2023-08-15)
379
+
380
+ ### Bug Fixes
381
+
382
+ - add docker file option to angular docker targets ([d3abdfa](https://gitlab.com/rxap/packages/commit/d3abdfa312c549ee7a43bba741360b4e7d943268))
383
+
384
+ # [16.1.0-dev.8](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.7...@rxap/plugin-angular@16.1.0-dev.8) (2023-08-14)
385
+
386
+ ### Bug Fixes
387
+
388
+ - use utility docker image for frontend containers ([bb1ca18](https://gitlab.com/rxap/packages/commit/bb1ca18661b4624de822bf5468ee4d090fc6112c))
389
+
390
+ # [16.1.0-dev.7](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.6...@rxap/plugin-angular@16.1.0-dev.7) (2023-08-06)
391
+
392
+ ### Bug Fixes
393
+
394
+ - expose generators as schematics ([679ca36](https://gitlab.com/rxap/packages/commit/679ca36d3712a11e4dc838762bca2f7c471e1e04))
395
+
396
+ # [16.1.0-dev.6](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.5...@rxap/plugin-angular@16.1.0-dev.6) (2023-08-04)
397
+
398
+ ### Bug Fixes
399
+
400
+ - add licence file to publishable packages ([ca6d4d5](https://gitlab.com/rxap/packages/commit/ca6d4d509a743b89bad5ed7ae935d3007231705a))
401
+
6
402
  # [16.1.0-dev.5](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.4...@rxap/plugin-angular@16.1.0-dev.5) (2023-08-04)
7
403
 
8
404
  ### Bug Fixes