@eui/cli 15.0.0-rc.14 → 15.0.0-rc.16

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.
@@ -1 +1 @@
1
- 15.0.0-rc.14
1
+ 15.0.0-rc.16
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eui-angular-app",
3
- "version": "15.0.0-rc.14",
3
+ "version": "15.0.0-rc.16",
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": "15.0.0-rc.14"
23
+ "@eui/deps-base": "15.0.0-rc.16"
24
24
  }
25
25
  }
@@ -14,6 +14,7 @@ import {
14
14
  CoreModuleEffects,
15
15
  EUI_CONFIG_TOKEN,
16
16
  } from '@eui/core';
17
+ import { EuiLayoutModule } from '@eui/components/layout';
17
18
 
18
19
  import { appConfig } from '../../config/index';
19
20
  import { environment } from '../../environments/environment';
@@ -24,6 +25,7 @@ import { SharedModule } from '@shared/shared.module';
24
25
 
25
26
  @NgModule({
26
27
  imports: [
28
+ EuiLayoutModule,
27
29
  SharedModule,
28
30
  HttpClientModule,
29
31
  EuiCoreModule.forRoot(),
@@ -35,6 +37,7 @@ import { SharedModule } from '@shared/shared.module';
35
37
  declarations: [
36
38
  ],
37
39
  exports: [
40
+ EuiLayoutModule,
38
41
  SharedModule,
39
42
  ],
40
43
  providers: [
@@ -1,16 +1,17 @@
1
+ // Angular
1
2
  import { NgModule } from '@angular/core';
2
3
  import { CommonModule } from '@angular/common';
4
+ import { FormsModule, ReactiveFormsModule } from '@angular/forms';
3
5
 
4
6
  // Common 3rd party module used accross the app
5
7
  import { TranslateModule } from '@ngx-translate/core';
6
8
 
7
9
  // eUI specific modules - commonly used accross the app - prefered way
8
10
  // keep here to avoid imports within features modules
9
- import { EuiLayoutModule } from '@eui/components/layout';
10
11
  import { EuiPageModule } from '@eui/components/eui-page';
11
12
  import { EuiIconModule } from '@eui/components/eui-icon';
12
13
 
13
- // import ALL eUI components (Warning : increase bundle size)
14
+ // import ALL eUI components
14
15
  // import { EuiAllModule } from '@eui/components';
15
16
 
16
17
  // if declared, add eui-legacy.css + eui-legacy-utilities.css in angular.json styles config
@@ -18,12 +19,15 @@ import { EuiIconModule } from '@eui/components/eui-icon';
18
19
 
19
20
  const MODULES = [
20
21
  CommonModule,
22
+ FormsModule, ReactiveFormsModule,
23
+
21
24
  TranslateModule,
22
25
 
23
- EuiLayoutModule,
26
+ // put here commonly used eUI modules components throughout the application
24
27
  EuiPageModule,
25
28
  EuiIconModule,
26
29
 
30
+ // in case of you really want to import all eUI components, see commented imports above
27
31
  // EuiAllModule,
28
32
  // UxAllModule,
29
33
  ];
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eui-angular-app",
3
- "version": "15.0.0-rc.14",
3
+ "version": "15.0.0-rc.16",
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": "15.0.0-rc.14",
24
- "@eui/mobile-core": "14.1.0-snapshot-1668448302349",
25
- "@eui/mobile-styles": "14.1.0-snapshot-1668448302349"
23
+ "@eui/deps-base": "15.0.0-rc.16",
24
+ "@eui/mobile-core": "14.1.0-snapshot-1669733720401",
25
+ "@eui/mobile-styles": "14.1.0-snapshot-1669733720401"
26
26
  },
27
27
  "browserslist": [
28
28
  "last 2 chrome versions",
@@ -1,23 +1,23 @@
1
1
  {
2
2
  "name": "eui-angular-app",
3
- "version": "15.0.0-rc.14",
3
+ "version": "15.0.0-rc.16",
4
4
  "license": "EUPL-1.1",
5
5
  "scripts": {
6
6
  "ng": "ng",
7
7
  "start-mock-server": "nodemon --watch ./mock ./mock/server.js",
8
- "start-serve": "eui-scripts serve-app --openid",
8
+ "start-serve": "eui-scripts serve-app --configuration=proxy-mock",
9
9
  "start": "npm-run-all --parallel start-mock-server start-serve",
10
10
  "start-proxy": "eui-scripts serve-app --openid",
11
11
  "start-openid": "eui-scripts serve-app --openid --configEnvTarget=local",
12
12
  "build": "eui-scripts build-app",
13
- "build-prod-openid-dev": "eui-scripts build-app --configuration=production-optimized --openid --configEnvTarget=dev",
14
- "build-prod-openid-prd": "eui-scripts build-app --configuration=production-optimized --openid --configEnvTarget=prod",
13
+ "build-openid-dev": "eui-scripts build-app --configuration=production-optimized --openid --configEnvTarget=dev",
14
+ "build-openid-prod": "eui-scripts build-app --configuration=production-optimized --openid --configEnvTarget=prod",
15
15
  "app:build": "eui-scripts build-app",
16
16
  "app:inject-config": "eui-scripts inject-config-app",
17
17
  "generate-changelog": "eui-scripts generate-changelog"
18
18
  },
19
19
  "private": true,
20
20
  "dependencies": {
21
- "@eui/deps-base": "15.0.0-rc.14"
21
+ "@eui/deps-base": "15.0.0-rc.16"
22
22
  }
23
23
  }
@@ -3,8 +3,8 @@ import { TranslateModule } from '@ngx-translate/core';
3
3
  import { StoreModule } from '@ngrx/store';
4
4
  import { EffectsModule } from '@ngrx/effects';
5
5
  import { StoreDevtoolsModule } from '@ngrx/store-devtools';
6
+ import { HTTP_INTERCEPTORS, HttpClientModule } from '@angular/common/http';
6
7
 
7
- import { HTTP_INTERCEPTORS } from '@angular/common/http';
8
8
  import {
9
9
  CachePreventionInterceptor,
10
10
  CorsSecurityInterceptor,
@@ -27,6 +27,7 @@ import { SharedModule } from '@shared/shared.module';
27
27
  @NgModule({
28
28
  imports: [
29
29
  SharedModule,
30
+ HttpClientModule,
30
31
  EuiCoreModule.forRoot(),
31
32
  EffectsModule.forRoot([...CoreModuleEffects]),
32
33
  TranslateModule.forRoot(translateConfig),
@@ -46,7 +47,7 @@ import { SharedModule } from '@shared/shared.module';
46
47
  },
47
48
  {
48
49
  provide: EUI_CONFIG_TOKEN,
49
- useValue: { appConfig: appConfig, environment: environment }
50
+ useValue: { appConfig, environment },
50
51
  },
51
52
  {
52
53
  // Sets the withCredentials on Ajax Request to send the JSESSIONID cookie to another domain.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eui-angular-app",
3
- "version": "15.0.0-rc.14",
3
+ "version": "15.0.0-rc.16",
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": "15.0.0-rc.14"
22
+ "@eui/deps-base": "15.0.0-rc.16"
23
23
  }
24
24
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/cli",
3
- "version": "15.0.0-rc.14",
3
+ "version": "15.0.0-rc.16",
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.2.40"
16
+ "@eui/tools": "6.2.42"
17
17
  },
18
18
  "preferGlobal": true,
19
19
  "homepage": "https://eui.ecdevops.eu",