@eui/cli 16.0.0-next.1 → 16.0.0-next.3
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/package.json +2 -2
- package/lib/skeletons/_angular/base/src/.eslintrc.json +5 -3
- package/lib/skeletons/_angular/base-mobile/package.json +4 -4
- package/lib/skeletons/_angular/options/ecl/src/app/shared/shared.module.ts +10 -12
- package/lib/skeletons/_angular/options/openid-jwt/package.json +2 -2
- package/lib/skeletons/_angular/options/openid-jwt/src/app/core/core.module.ts +3 -0
- package/lib/skeletons/web-symfony/myapp-web/package.json +2 -2
- package/package.json +2 -2
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
16.0.0-next.
|
|
1
|
+
16.0.0-next.3
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-angular-app",
|
|
3
|
-
"version": "16.0.0-next.
|
|
3
|
+
"version": "16.0.0-next.3",
|
|
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": "16.0.0-next.
|
|
23
|
+
"@eui/deps-base": "16.0.0-next.3"
|
|
24
24
|
}
|
|
25
25
|
}
|
|
@@ -20,9 +20,11 @@
|
|
|
20
20
|
"createDefaultProgram": true
|
|
21
21
|
},
|
|
22
22
|
"extends": [
|
|
23
|
-
"
|
|
24
|
-
"plugin:@
|
|
25
|
-
"plugin:@angular-eslint/
|
|
23
|
+
"eslint:recommended",
|
|
24
|
+
"plugin:@typescript-eslint/recommended",
|
|
25
|
+
"plugin:@angular-eslint/recommended",
|
|
26
|
+
"plugin:@angular-eslint/template/process-inline-templates",
|
|
27
|
+
"plugin:prettier/recommended"
|
|
26
28
|
],
|
|
27
29
|
"rules": {
|
|
28
30
|
"@angular-eslint/component-selector": [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-angular-app",
|
|
3
|
-
"version": "16.0.0-next.
|
|
3
|
+
"version": "16.0.0-next.3",
|
|
4
4
|
"license": "EUPL-1.1",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"ng": "ng",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
},
|
|
21
21
|
"private": true,
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@eui/deps-base": "16.0.0-next.
|
|
24
|
-
"@eui/mobile-core": "
|
|
25
|
-
"@eui/mobile-styles": "
|
|
23
|
+
"@eui/deps-base": "16.0.0-next.3",
|
|
24
|
+
"@eui/mobile-core": "15.1.0",
|
|
25
|
+
"@eui/mobile-styles": "15.1.0",
|
|
26
26
|
"@eui/ecl-core": "14.1.4"
|
|
27
27
|
},
|
|
28
28
|
"resolutions": {}
|
|
@@ -1,21 +1,19 @@
|
|
|
1
1
|
import { NgModule } from '@angular/core';
|
|
2
2
|
import { RouterModule } from '@angular/router';
|
|
3
|
+
import { CommonModule } from '@angular/common';
|
|
3
4
|
import { TranslateModule } from '@ngx-translate/core';
|
|
4
5
|
|
|
5
6
|
import { EclAllModule } from '@eui/ecl';
|
|
6
7
|
|
|
8
|
+
const MODULES = [
|
|
9
|
+
RouterModule,
|
|
10
|
+
EclAllModule,
|
|
11
|
+
TranslateModule,
|
|
12
|
+
CommonModule,
|
|
13
|
+
];
|
|
7
14
|
@NgModule({
|
|
8
|
-
imports: [
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
TranslateModule,
|
|
12
|
-
],
|
|
13
|
-
declarations: [
|
|
14
|
-
],
|
|
15
|
-
exports: [
|
|
16
|
-
RouterModule,
|
|
17
|
-
EclAllModule,
|
|
18
|
-
TranslateModule,
|
|
19
|
-
],
|
|
15
|
+
imports: [...MODULES],
|
|
16
|
+
declarations: [],
|
|
17
|
+
exports: [...MODULES],
|
|
20
18
|
})
|
|
21
19
|
export class SharedModule {}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-angular-app",
|
|
3
|
-
"version": "16.0.0-next.
|
|
3
|
+
"version": "16.0.0-next.3",
|
|
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": "16.0.0-next.
|
|
21
|
+
"@eui/deps-base": "16.0.0-next.3"
|
|
22
22
|
}
|
|
23
23
|
}
|
|
@@ -16,6 +16,7 @@ import {
|
|
|
16
16
|
CoreModuleEffects,
|
|
17
17
|
EUI_CONFIG_TOKEN,
|
|
18
18
|
} from '@eui/core';
|
|
19
|
+
import { EuiLayoutModule } from '@eui/components/layout';
|
|
19
20
|
|
|
20
21
|
import { appConfig } from '../../config/index';
|
|
21
22
|
import { environment } from '../../environments/environment';
|
|
@@ -26,6 +27,7 @@ import { SharedModule } from '@shared/shared.module';
|
|
|
26
27
|
|
|
27
28
|
@NgModule({
|
|
28
29
|
imports: [
|
|
30
|
+
EuiLayoutModule,
|
|
29
31
|
SharedModule,
|
|
30
32
|
HttpClientModule,
|
|
31
33
|
EuiCoreModule.forRoot(),
|
|
@@ -37,6 +39,7 @@ import { SharedModule } from '@shared/shared.module';
|
|
|
37
39
|
declarations: [
|
|
38
40
|
],
|
|
39
41
|
exports: [
|
|
42
|
+
EuiLayoutModule,
|
|
40
43
|
SharedModule,
|
|
41
44
|
],
|
|
42
45
|
providers: [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-angular-app",
|
|
3
|
-
"version": "16.0.0-next.
|
|
3
|
+
"version": "16.0.0-next.3",
|
|
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": "16.0.0-next.
|
|
22
|
+
"@eui/deps-base": "16.0.0-next.3"
|
|
23
23
|
}
|
|
24
24
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eui/cli",
|
|
3
|
-
"version": "16.0.0-next.
|
|
3
|
+
"version": "16.0.0-next.3",
|
|
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.
|
|
16
|
+
"@eui/tools": "6.11.19"
|
|
17
17
|
},
|
|
18
18
|
"preferGlobal": true,
|
|
19
19
|
"homepage": "https://eui.ecdevops.eu",
|