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