@eui/cli 17.0.0-next.11 → 17.0.0-next.13
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/.version.properties +1 -1
- package/lib/skeletons/_angular/base/angular.json +4 -4
- package/lib/skeletons/_angular/base/package.json +2 -2
- package/lib/skeletons/_angular/base/src/app/app.component.ts +1 -1
- package/lib/skeletons/_angular/base/src/app/shared/shared.module.ts +0 -4
- package/lib/skeletons/_angular/base-mobile/angular.json +4 -4
- package/lib/skeletons/_angular/base-mobile/package.json +2 -2
- package/lib/skeletons/_angular/options/ecl-ec/angular.json +4 -4
- package/lib/skeletons/_angular/options/ecl-eu/angular.json +4 -4
- package/lib/skeletons/_angular/options/merged-ecl-openid-jwt/package.json +2 -2
- package/lib/skeletons/_angular/options/openid-jwt/package.json +2 -2
- package/lib/skeletons/web-symfony/myapp-web/package.json +2 -2
- package/package.json +2 -2
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
17.0.0-next.
|
|
1
|
+
17.0.0-next.13
|
|
@@ -107,18 +107,18 @@
|
|
|
107
107
|
"serve": {
|
|
108
108
|
"builder": "@angular-devkit/build-angular:dev-server",
|
|
109
109
|
"options": {
|
|
110
|
-
"
|
|
110
|
+
"buildTarget": "app:build"
|
|
111
111
|
},
|
|
112
112
|
"configurations": {
|
|
113
113
|
"proxy-mock": {
|
|
114
|
-
"
|
|
114
|
+
"buildTarget": "app:build:development",
|
|
115
115
|
"proxyConfig": "proxy-mock.conf.json"
|
|
116
116
|
},
|
|
117
117
|
"production": {
|
|
118
|
-
"
|
|
118
|
+
"buildTarget": "app:build:production"
|
|
119
119
|
},
|
|
120
120
|
"development": {
|
|
121
|
-
"
|
|
121
|
+
"buildTarget": "app:build:development"
|
|
122
122
|
}
|
|
123
123
|
},
|
|
124
124
|
"defaultConfiguration": "development"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-angular-app",
|
|
3
|
-
"version": "17.0.0-next.
|
|
3
|
+
"version": "17.0.0-next.13",
|
|
4
4
|
"license": "EUPL-1.1",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"ng": "ng",
|
|
@@ -20,6 +20,6 @@
|
|
|
20
20
|
},
|
|
21
21
|
"private": true,
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@eui/deps-base": "17.0.0-next.
|
|
23
|
+
"@eui/deps-base": "17.0.0-next.13"
|
|
24
24
|
}
|
|
25
25
|
}
|
|
@@ -33,7 +33,7 @@ export class AppComponent implements OnDestroy {
|
|
|
33
33
|
];
|
|
34
34
|
|
|
35
35
|
constructor(
|
|
36
|
-
private store: Store<
|
|
36
|
+
private store: Store<UserState>,
|
|
37
37
|
) {
|
|
38
38
|
this.userState = this.store.select(getUserState);
|
|
39
39
|
this.subs.push(this.userState.subscribe((user: UserState) => {
|
|
@@ -14,9 +14,6 @@ import { EuiIconModule } from '@eui/components/eui-icon';
|
|
|
14
14
|
// import ALL eUI components
|
|
15
15
|
// import { EuiAllModule } from '@eui/components';
|
|
16
16
|
|
|
17
|
-
// if declared, add eui-legacy.css + eui-legacy-utilities.css in angular.json styles config
|
|
18
|
-
// import { UxAllModule } from '@eui/components/legacy';
|
|
19
|
-
|
|
20
17
|
const MODULES = [
|
|
21
18
|
CommonModule,
|
|
22
19
|
FormsModule, ReactiveFormsModule,
|
|
@@ -29,7 +26,6 @@ const MODULES = [
|
|
|
29
26
|
|
|
30
27
|
// in case of you really want to import all eUI components, see commented imports above
|
|
31
28
|
// EuiAllModule,
|
|
32
|
-
// UxAllModule,
|
|
33
29
|
];
|
|
34
30
|
|
|
35
31
|
@NgModule({
|
|
@@ -117,18 +117,18 @@
|
|
|
117
117
|
"serve": {
|
|
118
118
|
"builder": "@angular-devkit/build-angular:dev-server",
|
|
119
119
|
"options": {
|
|
120
|
-
"
|
|
120
|
+
"buildTarget": "app:build"
|
|
121
121
|
},
|
|
122
122
|
"configurations": {
|
|
123
123
|
"proxy-mock": {
|
|
124
|
-
"
|
|
124
|
+
"buildTarget": "app:build:development",
|
|
125
125
|
"proxyConfig": "proxy-mock.conf.json"
|
|
126
126
|
},
|
|
127
127
|
"production": {
|
|
128
|
-
"
|
|
128
|
+
"buildTarget": "app:build:production"
|
|
129
129
|
},
|
|
130
130
|
"development": {
|
|
131
|
-
"
|
|
131
|
+
"buildTarget": "app:build:development"
|
|
132
132
|
}
|
|
133
133
|
},
|
|
134
134
|
"defaultConfiguration": "development"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-angular-app",
|
|
3
|
-
"version": "17.0.0-next.
|
|
3
|
+
"version": "17.0.0-next.13",
|
|
4
4
|
"license": "EUPL-1.1",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"ng": "ng",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
},
|
|
21
21
|
"private": true,
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@eui/deps-base": "17.0.0-next.
|
|
23
|
+
"@eui/deps-base": "17.0.0-next.13",
|
|
24
24
|
"@eui/mobile-core": "15.1.0",
|
|
25
25
|
"@eui/mobile-styles": "15.1.0"
|
|
26
26
|
}
|
|
@@ -116,18 +116,18 @@
|
|
|
116
116
|
"serve": {
|
|
117
117
|
"builder": "@angular-devkit/build-angular:dev-server",
|
|
118
118
|
"options": {
|
|
119
|
-
"
|
|
119
|
+
"buildTarget": "app:build"
|
|
120
120
|
},
|
|
121
121
|
"configurations": {
|
|
122
122
|
"proxy-mock": {
|
|
123
|
-
"
|
|
123
|
+
"buildTarget": "app:build:development",
|
|
124
124
|
"proxyConfig": "proxy-mock.conf.json"
|
|
125
125
|
},
|
|
126
126
|
"production": {
|
|
127
|
-
"
|
|
127
|
+
"buildTarget": "app:build:production"
|
|
128
128
|
},
|
|
129
129
|
"development": {
|
|
130
|
-
"
|
|
130
|
+
"buildTarget": "app:build:development"
|
|
131
131
|
}
|
|
132
132
|
},
|
|
133
133
|
"defaultConfiguration": "development"
|
|
@@ -107,18 +107,18 @@
|
|
|
107
107
|
"serve": {
|
|
108
108
|
"builder": "@angular-devkit/build-angular:dev-server",
|
|
109
109
|
"options": {
|
|
110
|
-
"
|
|
110
|
+
"buildTarget": "app:build"
|
|
111
111
|
},
|
|
112
112
|
"configurations": {
|
|
113
113
|
"proxy-mock": {
|
|
114
|
-
"
|
|
114
|
+
"buildTarget": "app:build:development",
|
|
115
115
|
"proxyConfig": "proxy-mock.conf.json"
|
|
116
116
|
},
|
|
117
117
|
"production": {
|
|
118
|
-
"
|
|
118
|
+
"buildTarget": "app:build:production"
|
|
119
119
|
},
|
|
120
120
|
"development": {
|
|
121
|
-
"
|
|
121
|
+
"buildTarget": "app:build:development"
|
|
122
122
|
}
|
|
123
123
|
},
|
|
124
124
|
"defaultConfiguration": "development"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-angular-app",
|
|
3
|
-
"version": "17.0.0-next.
|
|
3
|
+
"version": "17.0.0-next.13",
|
|
4
4
|
"license": "EUPL-1.1",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"ng": "ng",
|
|
@@ -21,6 +21,6 @@
|
|
|
21
21
|
},
|
|
22
22
|
"private": true,
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@eui/deps-base": "17.0.0-next.
|
|
24
|
+
"@eui/deps-base": "17.0.0-next.13"
|
|
25
25
|
}
|
|
26
26
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-angular-app",
|
|
3
|
-
"version": "17.0.0-next.
|
|
3
|
+
"version": "17.0.0-next.13",
|
|
4
4
|
"license": "EUPL-1.1",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"ng": "ng",
|
|
@@ -18,6 +18,6 @@
|
|
|
18
18
|
},
|
|
19
19
|
"private": true,
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@eui/deps-base": "17.0.0-next.
|
|
21
|
+
"@eui/deps-base": "17.0.0-next.13"
|
|
22
22
|
}
|
|
23
23
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-angular-app",
|
|
3
|
-
"version": "17.0.0-next.
|
|
3
|
+
"version": "17.0.0-next.13",
|
|
4
4
|
"license": "EUPL-1.1",
|
|
5
5
|
"description": "eUI JEE Symfony app scripts",
|
|
6
6
|
"scripts": {
|
|
@@ -19,6 +19,6 @@
|
|
|
19
19
|
},
|
|
20
20
|
"private": true,
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@eui/deps-base": "17.0.0-next.
|
|
22
|
+
"@eui/deps-base": "17.0.0-next.13"
|
|
23
23
|
}
|
|
24
24
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eui/cli",
|
|
3
|
-
"version": "17.0.0-next.
|
|
3
|
+
"version": "17.0.0-next.13",
|
|
4
4
|
"tag": "next",
|
|
5
5
|
"license": "EUPL-1.1",
|
|
6
6
|
"description": "eUI CLI app generator",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"url": "https://citnet.tech.ec.europa.eu/CITnet/stash/projects/CSDR/repos/eui"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@eui/tools": "6.13.
|
|
16
|
+
"@eui/tools": "6.13.6"
|
|
17
17
|
},
|
|
18
18
|
"preferGlobal": true,
|
|
19
19
|
"homepage": "https://eui.ecdevops.eu",
|