@rxap/layout 18.2.0-dev.1 → 18.2.0-dev.2
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 +4 -0
- package/generators.json +9 -0
- package/migrations.json +24 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
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
|
+
# [18.2.0-dev.2](https://gitlab.com/rxap/packages/compare/@rxap/layout@18.2.0-dev.1...@rxap/layout@18.2.0-dev.2) (2024-07-25)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @rxap/layout
|
|
9
|
+
|
|
6
10
|
# [18.2.0-dev.1](https://gitlab.com/rxap/packages/compare/@rxap/layout@18.2.0-dev.0...@rxap/layout@18.2.0-dev.1) (2024-07-24)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @rxap/layout
|
package/generators.json
ADDED
package/migrations.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"generators": {
|
|
3
|
+
"add-user-theme-provider-to-layout-providers": {
|
|
4
|
+
"version": "18.2.0",
|
|
5
|
+
"description": "Ensure the provideUserTheme function is called in the layout providers",
|
|
6
|
+
"implementation": "./src/migrations/18.0.0/add-user-theme-provider-to-layout-providers/add-user-theme-provider-to-layout-providers"
|
|
7
|
+
},
|
|
8
|
+
"add-theme-provider-to-app-config": {
|
|
9
|
+
"version": "18.2.0",
|
|
10
|
+
"description": "Ensure the provideTheme function is called in the app config if the application uses the LayoutComponent",
|
|
11
|
+
"implementation": "./src/migrations/18.0.0/add-theme-provider-to-app-config/add-theme-provider-to-app-config"
|
|
12
|
+
},
|
|
13
|
+
"add-with-user-profile-provider": {
|
|
14
|
+
"version": "18.2.0",
|
|
15
|
+
"description": "Ensure the withUserProfileDataSource function is called in the layout routes provideLayout function",
|
|
16
|
+
"implementation": "./src/migrations/18.0.0/add-with-user-profile-provider/add-with-user-profile-provider"
|
|
17
|
+
},
|
|
18
|
+
"add-seperate-external-apps-provider": {
|
|
19
|
+
"version": "18.2.0",
|
|
20
|
+
"description": "Migration for v18.2.0",
|
|
21
|
+
"implementation": "./src/migrations/18.0.0/add-seperate-external-apps-provider/add-seperate-external-apps-provider"
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "18.2.0-dev.
|
|
2
|
+
"version": "18.2.0-dev.2",
|
|
3
3
|
"name": "@rxap/layout",
|
|
4
4
|
"license": "GPL-3.0-or-later",
|
|
5
5
|
"dependencies": {
|
|
@@ -151,7 +151,7 @@
|
|
|
151
151
|
"directory": "packages/angular/layout"
|
|
152
152
|
},
|
|
153
153
|
"sideEffects": false,
|
|
154
|
-
"gitHead": "
|
|
154
|
+
"gitHead": "915dce5e90d6633f881f0bcaafbeb8e5395821d4",
|
|
155
155
|
"module": "fesm2022/rxap-layout.mjs",
|
|
156
156
|
"typings": "index.d.ts",
|
|
157
157
|
"exports": {
|