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

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