@eui/cli 19.0.0-next.11 → 19.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/package.json +2 -2
- package/lib/skeletons/_angular/base-mobile/package.json +1 -1
- package/lib/skeletons/_angular/options/ecl-ec/src/app/app.component.ts +14 -14
- package/lib/skeletons/_angular/options/ecl-ec/src/app/app.config.ts +1 -6
- package/lib/skeletons/_angular/options/ecl-ec/src/app/features/home/home.component.ts +4 -4
- package/lib/skeletons/_angular/options/ecl-eu/src/app/app.component.ts +14 -14
- package/lib/skeletons/_angular/options/ecl-eu/src/app/app.config.ts +1 -6
- package/lib/skeletons/_angular/options/ecl-eu/src/app/features/home/home.component.ts +4 -4
- package/lib/skeletons/web-symfony/myapp-web/package.json +2 -2
- package/package.json +2 -2
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
19.0.0-next.
|
|
1
|
+
19.0.0-next.13
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-angular-app",
|
|
3
|
-
"version": "19.0.0-next.
|
|
3
|
+
"version": "19.0.0-next.13",
|
|
4
4
|
"license": "EUPL-1.1",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"ng": "ng",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
},
|
|
22
22
|
"private": true,
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@eui/deps-base": "19.0.0-next.
|
|
24
|
+
"@eui/deps-base": "19.0.0-next.13"
|
|
25
25
|
},
|
|
26
26
|
"resolutions": {
|
|
27
27
|
"js-yaml": ">=3.13.1",
|
|
@@ -6,13 +6,13 @@ import {
|
|
|
6
6
|
CoreState,
|
|
7
7
|
} from '@eui/core';
|
|
8
8
|
import { Observable, Subscription } from 'rxjs';
|
|
9
|
-
import {
|
|
10
|
-
import { EclMenuItemSelectEvent,
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
9
|
+
import { EclSiteHeaderModule, EclSiteHeaderLoginEvent, EclSiteHeaderSearchEvent } from '@eui/ecl/components/ecl-site-header';
|
|
10
|
+
import { EclMenuItemSelectEvent, EclMenuModule } from '@eui/ecl/components/ecl-menu';
|
|
11
|
+
import { EclAppModule } from '@eui/ecl/components/ecl-app';
|
|
12
|
+
import { EclIconModule } from '@eui/ecl/components/ecl-icon';
|
|
13
|
+
import { EclSiteFooterModule } from '@eui/ecl/components/ecl-site-footer';
|
|
14
|
+
import { EclBreadcrumbModule } from '@eui/ecl/components/ecl-breadcrumb';
|
|
15
|
+
import { EclPageHeaderModule } from '@eui/ecl/components/ecl-page-header';
|
|
16
16
|
import { RouterOutlet } from '@angular/router';
|
|
17
17
|
import { TranslateModule } from '@ngx-translate/core';
|
|
18
18
|
|
|
@@ -21,13 +21,13 @@ import { TranslateModule } from '@ngx-translate/core';
|
|
|
21
21
|
templateUrl: './app.component.html',
|
|
22
22
|
standalone: true,
|
|
23
23
|
imports: [
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
24
|
+
EclAppModule,
|
|
25
|
+
EclBreadcrumbModule,
|
|
26
|
+
EclIconModule,
|
|
27
|
+
EclMenuModule,
|
|
28
|
+
EclPageHeaderModule,
|
|
29
|
+
EclSiteHeaderModule,
|
|
30
|
+
EclSiteFooterModule,
|
|
31
31
|
RouterOutlet,
|
|
32
32
|
TranslateModule,
|
|
33
33
|
]
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ApplicationConfig, importProvidersFrom } from '@angular/core';
|
|
2
2
|
import { provideRouter } from '@angular/router';
|
|
3
3
|
|
|
4
4
|
import { routes } from './app.routes';
|
|
5
5
|
import { AppStarterService } from './app-starter.service';
|
|
6
|
-
import { EclLanguageService, EclDefaultLanguageService } from '@eui/ecl/core';
|
|
7
6
|
import { TranslateModule } from '@ngx-translate/core';
|
|
8
7
|
|
|
9
8
|
import { HTTP_INTERCEPTORS, provideHttpClient, withInterceptorsFromDi } from '@angular/common/http';
|
|
@@ -60,10 +59,6 @@ export const appConfig: ApplicationConfig = {
|
|
|
60
59
|
},
|
|
61
60
|
|
|
62
61
|
AppStarterService,
|
|
63
|
-
{
|
|
64
|
-
provide: EclLanguageService,
|
|
65
|
-
useClass: EclDefaultLanguageService
|
|
66
|
-
},
|
|
67
62
|
provideRouter(routes),
|
|
68
63
|
],
|
|
69
64
|
};
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { Component, Inject } from '@angular/core';
|
|
2
2
|
import { CONFIG_TOKEN, EuiAppConfig } from '@eui/core';
|
|
3
3
|
import { TranslateModule } from '@ngx-translate/core';
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
4
|
+
import { EclListModule } from '@eui/ecl/components/ecl-list';
|
|
5
|
+
import { EclLinkModule } from '@eui/ecl/components/ecl-link';
|
|
6
6
|
|
|
7
7
|
@Component({
|
|
8
8
|
templateUrl: './home.component.html',
|
|
9
9
|
standalone: true,
|
|
10
10
|
imports: [
|
|
11
11
|
TranslateModule,
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
EclLinkModule,
|
|
13
|
+
EclListModule,
|
|
14
14
|
],
|
|
15
15
|
})
|
|
16
16
|
export class HomeComponent {
|
|
@@ -6,13 +6,13 @@ import {
|
|
|
6
6
|
CoreState,
|
|
7
7
|
} from '@eui/core';
|
|
8
8
|
import { Observable, Subscription } from 'rxjs';
|
|
9
|
-
import {
|
|
10
|
-
import { EclMenuItemSelectEvent,
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
9
|
+
import { EclSiteHeaderModule, EclSiteHeaderLoginEvent, EclSiteHeaderSearchEvent } from '@eui/ecl/components/ecl-site-header';
|
|
10
|
+
import { EclMenuItemSelectEvent, EclMenuModule } from '@eui/ecl/components/ecl-menu';
|
|
11
|
+
import { EclAppModule } from '@eui/ecl/components/ecl-app';
|
|
12
|
+
import { EclIconModule } from '@eui/ecl/components/ecl-icon';
|
|
13
|
+
import { EclSiteFooterModule } from '@eui/ecl/components/ecl-site-footer';
|
|
14
|
+
import { EclBreadcrumbModule } from '@eui/ecl/components/ecl-breadcrumb';
|
|
15
|
+
import { EclPageHeaderModule } from '@eui/ecl/components/ecl-page-header';
|
|
16
16
|
import { RouterOutlet } from '@angular/router';
|
|
17
17
|
import { TranslateModule } from '@ngx-translate/core';
|
|
18
18
|
|
|
@@ -21,13 +21,13 @@ import { TranslateModule } from '@ngx-translate/core';
|
|
|
21
21
|
templateUrl: './app.component.html',
|
|
22
22
|
standalone: true,
|
|
23
23
|
imports: [
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
24
|
+
EclAppModule,
|
|
25
|
+
EclBreadcrumbModule,
|
|
26
|
+
EclIconModule,
|
|
27
|
+
EclMenuModule,
|
|
28
|
+
EclPageHeaderModule,
|
|
29
|
+
EclSiteHeaderModule,
|
|
30
|
+
EclSiteFooterModule,
|
|
31
31
|
RouterOutlet,
|
|
32
32
|
TranslateModule,
|
|
33
33
|
]
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ApplicationConfig, importProvidersFrom } from '@angular/core';
|
|
2
2
|
import { provideRouter } from '@angular/router';
|
|
3
3
|
|
|
4
4
|
import { routes } from './app.routes';
|
|
5
5
|
import { AppStarterService } from './app-starter.service';
|
|
6
|
-
import { EclLanguageService, EclDefaultLanguageService } from '@eui/ecl/core';
|
|
7
6
|
import { TranslateModule } from '@ngx-translate/core';
|
|
8
7
|
|
|
9
8
|
import { HTTP_INTERCEPTORS, provideHttpClient, withInterceptorsFromDi } from '@angular/common/http';
|
|
@@ -60,10 +59,6 @@ export const appConfig: ApplicationConfig = {
|
|
|
60
59
|
},
|
|
61
60
|
|
|
62
61
|
AppStarterService,
|
|
63
|
-
{
|
|
64
|
-
provide: EclLanguageService,
|
|
65
|
-
useClass: EclDefaultLanguageService
|
|
66
|
-
},
|
|
67
62
|
provideRouter(routes),
|
|
68
63
|
],
|
|
69
64
|
};
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { Component, Inject } from '@angular/core';
|
|
2
2
|
import { CONFIG_TOKEN, EuiAppConfig } from '@eui/core';
|
|
3
3
|
import { TranslateModule } from '@ngx-translate/core';
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
4
|
+
import { EclListModule } from '@eui/ecl/components/ecl-list';
|
|
5
|
+
import { EclLinkModule } from '@eui/ecl/components/ecl-link';
|
|
6
6
|
|
|
7
7
|
@Component({
|
|
8
8
|
templateUrl: './home.component.html',
|
|
9
9
|
standalone: true,
|
|
10
10
|
imports: [
|
|
11
11
|
TranslateModule,
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
EclLinkModule,
|
|
13
|
+
EclListModule,
|
|
14
14
|
],
|
|
15
15
|
})
|
|
16
16
|
export class HomeComponent {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-angular-app",
|
|
3
|
-
"version": "19.0.0-next.
|
|
3
|
+
"version": "19.0.0-next.13",
|
|
4
4
|
"license": "EUPL-1.1",
|
|
5
5
|
"description": "eUI JEE Symfony app scripts",
|
|
6
6
|
"scripts": {
|
|
@@ -18,6 +18,6 @@
|
|
|
18
18
|
},
|
|
19
19
|
"private": true,
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@eui/deps-base": "19.0.0-next.
|
|
21
|
+
"@eui/deps-base": "19.0.0-next.13"
|
|
22
22
|
}
|
|
23
23
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eui/cli",
|
|
3
|
-
"version": "19.0.0-next.
|
|
3
|
+
"version": "19.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.21.
|
|
16
|
+
"@eui/tools": "6.21.9"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
19
19
|
"@eui/tools": "^6.0.0",
|