@rxap/plugin-angular 16.1.0-dev.3 → 16.1.0-dev.30

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 (69) hide show
  1. package/CHANGELOG.md +190 -0
  2. package/LICENSE.md +621 -0
  3. package/README.md +64 -1
  4. package/executors.json +5 -0
  5. package/generators.json +37 -0
  6. package/package.json +58 -45
  7. package/src/executors/check-ng-package/executor.d.ts +5 -0
  8. package/src/executors/check-ng-package/executor.js +30 -0
  9. package/src/executors/check-ng-package/executor.js.map +1 -0
  10. package/src/executors/check-ng-package/schema.d.ts +1 -0
  11. package/src/executors/check-ng-package/schema.json +9 -0
  12. package/src/generators/fix-schematic/index.d.ts +2 -0
  13. package/src/generators/fix-schematic/index.js +7 -0
  14. package/src/generators/fix-schematic/index.js.map +1 -0
  15. package/src/generators/init/index.d.ts +2 -0
  16. package/src/generators/init/index.js +7 -0
  17. package/src/generators/init/index.js.map +1 -0
  18. package/src/generators/init/schema.d.ts +1 -0
  19. package/src/generators/init/schema.json +5 -0
  20. package/src/generators/init-application/files/app/app.navigation.ts.template +11 -0
  21. package/src/generators/init-application/files/app/app.routes.ts.template +14 -0
  22. package/src/generators/init-application/files/app/layout.routes.ts.template +33 -0
  23. package/src/generators/init-application/files/monolithic/app/app.config.ts.template +35 -0
  24. package/src/generators/init-application/files/monolithic/app/app.navigation.ts.template +11 -0
  25. package/src/generators/init-application/files/monolithic/app/app.routes.ts.template +14 -0
  26. package/src/generators/init-application/files/monolithic/app/layout.routes.ts.template +32 -0
  27. package/src/generators/init-application/files/monolithic/styles.scss.template +3 -0
  28. package/src/generators/init-application/files/shared/Dockerfile +3 -0
  29. package/src/generators/init-application/files/shared/configuration/.gitkeep +0 -0
  30. package/src/generators/init-application/files/shared/ngsw-config.json +0 -12
  31. package/src/generators/init-application/files/styles/_fonts.scss +1 -0
  32. package/src/generators/init-application/files/styles/_index.scss +10 -0
  33. package/src/generators/init-application/files/styles/_loading-animation.scss +200 -0
  34. package/src/generators/init-application/files/styles/_palette.scss +98 -0
  35. package/src/generators/init-application/files/styles/_table.scss +45 -0
  36. package/src/generators/init-application/files/styles/_theme.scss +102 -0
  37. package/src/generators/init-application/files/styles/_variables.scss +63 -0
  38. package/src/generators/init-application/files/styles/fonts/_material-icons.scss +20 -0
  39. package/src/generators/init-application/files/styles/fonts/material-icons.ttf +0 -0
  40. package/src/generators/init-application/generator.js +278 -61
  41. package/src/generators/init-application/generator.js.map +1 -1
  42. package/src/generators/init-application/index.d.ts +2 -0
  43. package/src/generators/init-application/index.js +7 -0
  44. package/src/generators/init-application/index.js.map +1 -0
  45. package/src/generators/init-application/schema.d.ts +4 -0
  46. package/src/generators/init-application/schema.json +35 -8
  47. package/src/generators/init-feature/files/feature/__name__/routes.ts.template +10 -0
  48. package/src/generators/init-feature/generator.d.ts +11 -0
  49. package/src/generators/init-feature/generator.js +106 -0
  50. package/src/generators/init-feature/generator.js.map +1 -0
  51. package/src/generators/init-feature/index.d.ts +2 -0
  52. package/src/generators/init-feature/index.js +7 -0
  53. package/src/generators/init-feature/index.js.map +1 -0
  54. package/src/generators/init-feature/schema.d.ts +4 -0
  55. package/src/generators/init-feature/schema.json +20 -0
  56. package/src/generators/init-library/generator.js +68 -40
  57. package/src/generators/init-library/generator.js.map +1 -1
  58. package/src/generators/init-library/index.d.ts +2 -0
  59. package/src/generators/init-library/index.js +7 -0
  60. package/src/generators/init-library/index.js.map +1 -0
  61. package/src/generators/init-library/schema.d.ts +1 -0
  62. package/src/generators/init-library/schema.json +5 -0
  63. package/src/generators/schematic/index.d.ts +2 -0
  64. package/src/generators/schematic/index.js +7 -0
  65. package/src/generators/schematic/index.js.map +1 -0
  66. package/src/generators/init-application/files/shared/assets/Dockerfile +0 -5
  67. package/src/generators/init-application/files/shared/assets/nginx.conf +0 -74
  68. package/src/generators/init-application/files/shared/i18n.index.html.hbs +0 -40
  69. /package/src/generators/init-application/files/shared/{.gitkeep → changelog/.gitkeep} +0 -0
package/CHANGELOG.md CHANGED
@@ -3,6 +3,196 @@
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.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)
7
+
8
+ ### Bug Fixes
9
+
10
+ - set initial budget to 2mb ([bbb7bb0](https://gitlab.com/rxap/packages/commit/bbb7bb044319f0c46964cc6322328b9222161080))
11
+
12
+ # [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)
13
+
14
+ ### Bug Fixes
15
+
16
+ - create shared folder structure if Dockerfile does not exist ([42f5ab9](https://gitlab.com/rxap/packages/commit/42f5ab9f612ca8f3b6dab49171e551d827816918))
17
+
18
+ # [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)
19
+
20
+ ### Bug Fixes
21
+
22
+ - install required dependencies ([fe27dc6](https://gitlab.com/rxap/packages/commit/fe27dc6b7ef65b80cffac5793c8e503dcbbe736a))
23
+
24
+ # [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)
25
+
26
+ ### Bug Fixes
27
+
28
+ - install required dependencies ([88274b5](https://gitlab.com/rxap/packages/commit/88274b570bd35c80bd479f4f3b98666b1f60a8fb))
29
+
30
+ # [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)
31
+
32
+ ### Bug Fixes
33
+
34
+ - install required dependencies ([1a4b04c](https://gitlab.com/rxap/packages/commit/1a4b04c5b9c7c44a9d57f93b491de9e7ef93685a))
35
+
36
+ # [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)
37
+
38
+ ### Bug Fixes
39
+
40
+ - add missing providers ([f526c6c](https://gitlab.com/rxap/packages/commit/f526c6c01354e84fb04bbf1d256c992a6663941e))
41
+
42
+ # [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)
43
+
44
+ ### Features
45
+
46
+ - add ProvideEnvironment function ([4574202](https://gitlab.com/rxap/packages/commit/45742021f40ac859408619b796eaaab7ab3c6e49))
47
+
48
+ # [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)
49
+
50
+ ### Bug Fixes
51
+
52
+ - set background ([ff59d7b](https://gitlab.com/rxap/packages/commit/ff59d7bcd3731f29e89a8c486127e7450dfd7989))
53
+
54
+ # [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)
55
+
56
+ ### Bug Fixes
57
+
58
+ - peer dependency issue ([e67e2b8](https://gitlab.com/rxap/packages/commit/e67e2b8eb884b598536d16c2c544a9ad9be5b53e))
59
+
60
+ # [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)
61
+
62
+ ### Bug Fixes
63
+
64
+ - restructure angular shared files ([20cfdb2](https://gitlab.com/rxap/packages/commit/20cfdb268ce02ad10ceafb56ce031e330563c3c2))
65
+ - use language code instead of lang ([d31d77f](https://gitlab.com/rxap/packages/commit/d31d77f3f82680c5ebaf2784061eec9437bc4f3f))
66
+
67
+ # [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)
68
+
69
+ ### Bug Fixes
70
+
71
+ - add missing files for localazy if not exists ([d49ffd4](https://gitlab.com/rxap/packages/commit/d49ffd4a90552d9b4b801d86e243be984fbdfb5d))
72
+
73
+ # [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)
74
+
75
+ ### Bug Fixes
76
+
77
+ - add missing imports ([a325205](https://gitlab.com/rxap/packages/commit/a325205c43a8936ba37587a991f3b74071cd942a))
78
+ - support open api legacy init ([caea342](https://gitlab.com/rxap/packages/commit/caea3426d68b25e28f2dd85465553fd8af664088))
79
+
80
+ # [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)
81
+
82
+ ### Bug Fixes
83
+
84
+ - use new error providers and interceptors ([328ecba](https://gitlab.com/rxap/packages/commit/328ecba3505e22ea71268e33f780eefb3f653f6b))
85
+
86
+ # [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)
87
+
88
+ **Note:** Version bump only for package @rxap/plugin-angular
89
+
90
+ # [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)
91
+
92
+ **Note:** Version bump only for package @rxap/plugin-angular
93
+
94
+ # [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)
95
+
96
+ ### Bug Fixes
97
+
98
+ - add newline after file content ([0d05f70](https://gitlab.com/rxap/packages/commit/0d05f70f8f41208ec25bb0dba570d0f6cb763ac6))
99
+
100
+ ### Features
101
+
102
+ - enforce that every sec entrypoint is include in the tsconfig ([f1e84da](https://gitlab.com/rxap/packages/commit/f1e84da6ceecea92fdca19b69d8a308e1d07dfd7))
103
+
104
+ # [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)
105
+
106
+ ### Bug Fixes
107
+
108
+ - adapt to new layout routing concept ([f068b7e](https://gitlab.com/rxap/packages/commit/f068b7ed9261c92082913e5ecd87084633b434a6))
109
+ - add logo.png to application assets if not exists ([c0e7a73](https://gitlab.com/rxap/packages/commit/c0e7a73046bf1af007fa7d24da83d9917451bb35))
110
+ - animation loading issue ([5e241ed](https://gitlab.com/rxap/packages/commit/5e241ed4b9e83575b881f06214255c6f1d2937ce))
111
+ - ensure the localize init polyfill is added ([ee44428](https://gitlab.com/rxap/packages/commit/ee44428279261e6068979f8d6a669ad83cb545ff))
112
+ - if the application is monolithic then open-api is required ([dc2227f](https://gitlab.com/rxap/packages/commit/dc2227f460df2bb27c4e58dd27f70d5ba7eccef1))
113
+ - remove support for open-api client sdk packages ([ace153f](https://gitlab.com/rxap/packages/commit/ace153f977690e7714c3c4110600e2a8916a0d52))
114
+ - split app and layout routes ([1e7c540](https://gitlab.com/rxap/packages/commit/1e7c54055ed8f7fc4fb4dc710097783cab761813))
115
+
116
+ ### Features
117
+
118
+ - add the mdi asset ([4e973c2](https://gitlab.com/rxap/packages/commit/4e973c23866ca1771d428f0382085614da29a801))
119
+ - init application styles ([5963c4d](https://gitlab.com/rxap/packages/commit/5963c4df5f41d023f234abcde444183972e2157f))
120
+
121
+ # [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)
122
+
123
+ ### Features
124
+
125
+ - add cleanup generator ([844d050](https://gitlab.com/rxap/packages/commit/844d0504ea65e41d22f4cd90b2b9c266ee93f489))
126
+ - add init-feature generator ([8925c31](https://gitlab.com/rxap/packages/commit/8925c31b1a2f396b5b5e753a71786b10d45afe57))
127
+ - add support for monolithic angular init ([270e1e2](https://gitlab.com/rxap/packages/commit/270e1e2ce27b427615ee97f5bb72fb5dad1fe095))
128
+
129
+ # [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)
130
+
131
+ ### Bug Fixes
132
+
133
+ - add project ts-morph ([f17725d](https://gitlab.com/rxap/packages/commit/f17725dccf31d3f5fab9087e103e19ad5df43246))
134
+ - ensure overwrite option is passed to sub schematics ([8472aab](https://gitlab.com/rxap/packages/commit/8472aab8814227c851fab9ae4c1b9ec3019d6f4e))
135
+ - ensure the project name is not included in the project tag list ([b131ac3](https://gitlab.com/rxap/packages/commit/b131ac3bd92b3b8799d62f15bbd30a1997d7c753))
136
+
137
+ ### Features
138
+
139
+ - coerce default application environments ([6608a7e](https://gitlab.com/rxap/packages/commit/6608a7e8e074ce207a1a405906cc07d0f1e4a8d8))
140
+
141
+ # [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)
142
+
143
+ ### Reverts
144
+
145
+ - change from commonjs to es2022 ([747a381](https://gitlab.com/rxap/packages/commit/747a381a090f0a276cf363da61bb19ed0c9cb5b7))
146
+
147
+ # [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)
148
+
149
+ ### Bug Fixes
150
+
151
+ - change from commonjs to es2022 ([fd0f2ba](https://gitlab.com/rxap/packages/commit/fd0f2bae24eae7c854e96f630076cd5598c30be6))
152
+
153
+ # [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)
154
+
155
+ ### Bug Fixes
156
+
157
+ - add docker file option to angular docker targets ([d3abdfa](https://gitlab.com/rxap/packages/commit/d3abdfa312c549ee7a43bba741360b4e7d943268))
158
+
159
+ # [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)
160
+
161
+ ### Bug Fixes
162
+
163
+ - use utility docker image for frontend containers ([bb1ca18](https://gitlab.com/rxap/packages/commit/bb1ca18661b4624de822bf5468ee4d090fc6112c))
164
+
165
+ # [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)
166
+
167
+ ### Bug Fixes
168
+
169
+ - expose generators as schematics ([679ca36](https://gitlab.com/rxap/packages/commit/679ca36d3712a11e4dc838762bca2f7c471e1e04))
170
+
171
+ # [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)
172
+
173
+ ### Bug Fixes
174
+
175
+ - add licence file to publishable packages ([ca6d4d5](https://gitlab.com/rxap/packages/commit/ca6d4d509a743b89bad5ed7ae935d3007231705a))
176
+
177
+ # [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)
178
+
179
+ ### Bug Fixes
180
+
181
+ - ensure projects are buildable or publishable ([781a8b7](https://gitlab.com/rxap/packages/commit/781a8b77d9e7f74493347516b5e678a42e1e32df))
182
+ - remove nx dependency ([5cc2200](https://gitlab.com/rxap/packages/commit/5cc2200ca3f12ef39bb959f98730975978b5194e))
183
+ - run gitlab ci generators on application init ([9a15981](https://gitlab.com/rxap/packages/commit/9a15981fd5b573db47259014b2582373867179f2))
184
+
185
+ # [16.1.0-dev.4](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.3...@rxap/plugin-angular@16.1.0-dev.4) (2023-08-03)
186
+
187
+ ### Bug Fixes
188
+
189
+ - add build tailwind default inputs and outputs ([07b5e8f](https://gitlab.com/rxap/packages/commit/07b5e8f7a3db4b3fbc6d5e742785144de58971e1))
190
+ - create default application configuration folder ([eae2d9d](https://gitlab.com/rxap/packages/commit/eae2d9d009cd94487a0edb55b0100f1d32c1eea7))
191
+
192
+ ### Features
193
+
194
+ - add new executor check-ng-package ([871a3e5](https://gitlab.com/rxap/packages/commit/871a3e5a3bae51009046f915c5db36e9f7062f0d))
195
+
6
196
  # [16.1.0-dev.3](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.2...@rxap/plugin-angular@16.1.0-dev.3) (2023-08-01)
7
197
 
8
198
  ### Bug Fixes