@eui/cli 21.0.0-alpha.13 → 21.0.0-alpha.15
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/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 +16 -16
- 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 +16 -16
- package/lib/skeletons/_angular/options/ecl-eu/src/app/features/home/home.component.ts +4 -4
- package/lib/skeletons/_angular/options/ecl-eu/src/app/shared/shared.module.ts +1 -5
- package/lib/skeletons/web-symfony/myapp-web/package.json +2 -2
- package/package.json +2 -2
- package/.version.properties +0 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-angular-app",
|
|
3
|
-
"version": "21.0.0-alpha.
|
|
3
|
+
"version": "21.0.0-alpha.15",
|
|
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": "21.0.0-alpha.
|
|
24
|
+
"@eui/deps-base": "21.0.0-alpha.15"
|
|
25
25
|
},
|
|
26
26
|
"resolutions": {
|
|
27
27
|
"js-yaml": ">=3.13.1",
|
|
@@ -4,14 +4,14 @@ import {
|
|
|
4
4
|
UserService,
|
|
5
5
|
UserState,
|
|
6
6
|
} from '@eui/core';
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import { EclSiteHeaderLoginEvent,
|
|
7
|
+
import { EUI_ECL_APP } from '@eui/ecl/components/ecl-app';
|
|
8
|
+
import { EUI_ECL_BREADCRUMB } from '@eui/ecl/components/ecl-breadcrumb';
|
|
9
|
+
import { EUI_ECL_ICON } from '@eui/ecl/components/ecl-icon';
|
|
10
|
+
import { EUI_ECL_LINK } from '@eui/ecl/components/ecl-link';
|
|
11
|
+
import { EclMenuItemSelectEvent, EUI_ECL_MENU } from '@eui/ecl/components/ecl-menu';
|
|
12
|
+
import { EUI_ECL_PAGE_HEADER } from '@eui/ecl/components/ecl-page-header';
|
|
13
|
+
import { EUI_ECL_SITE_FOOTER } from '@eui/ecl/components/ecl-site-footer';
|
|
14
|
+
import { EclSiteHeaderLoginEvent, EclSiteHeaderSearchEvent, EUI_ECL_SITE_HEADER } from '@eui/ecl/components/ecl-site-header';
|
|
15
15
|
import { TranslateModule } from '@ngx-translate/core';
|
|
16
16
|
|
|
17
17
|
@Component({
|
|
@@ -19,14 +19,14 @@ import { TranslateModule } from '@ngx-translate/core';
|
|
|
19
19
|
templateUrl: './app.component.html',
|
|
20
20
|
standalone: true,
|
|
21
21
|
imports: [
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
22
|
+
...EUI_ECL_APP,
|
|
23
|
+
...EUI_ECL_BREADCRUMB,
|
|
24
|
+
...EUI_ECL_ICON,
|
|
25
|
+
...EUI_ECL_LINK,
|
|
26
|
+
...EUI_ECL_MENU,
|
|
27
|
+
...EUI_ECL_PAGE_HEADER,
|
|
28
|
+
...EUI_ECL_SITE_HEADER,
|
|
29
|
+
...EUI_ECL_SITE_FOOTER,
|
|
30
30
|
RouterOutlet,
|
|
31
31
|
TranslateModule,
|
|
32
32
|
]
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { Component, Inject } from '@angular/core';
|
|
2
2
|
import { CONFIG_TOKEN, EuiAppConfig } from '@eui/core';
|
|
3
|
+
import { EUI_ECL_LINK } from '@eui/ecl/components/ecl-link';
|
|
4
|
+
import { EUI_ECL_LIST } from '@eui/ecl/components/ecl-list';
|
|
3
5
|
import { TranslateModule } from '@ngx-translate/core';
|
|
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
|
+
...EUI_ECL_LINK,
|
|
13
|
+
...EUI_ECL_LIST,
|
|
14
14
|
],
|
|
15
15
|
})
|
|
16
16
|
export class HomeComponent {
|
|
@@ -4,14 +4,14 @@ import {
|
|
|
4
4
|
UserService,
|
|
5
5
|
UserState,
|
|
6
6
|
} from '@eui/core';
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import { EclSiteHeaderLoginEvent,
|
|
7
|
+
import { EUI_ECL_APP } from '@eui/ecl/components/ecl-app';
|
|
8
|
+
import { EUI_ECL_BREADCRUMB } from '@eui/ecl/components/ecl-breadcrumb';
|
|
9
|
+
import { EUI_ECL_ICON } from '@eui/ecl/components/ecl-icon';
|
|
10
|
+
import { EUI_ECL_LINK } from '@eui/ecl/components/ecl-link';
|
|
11
|
+
import { EclMenuItemSelectEvent, EUI_ECL_MENU } from '@eui/ecl/components/ecl-menu';
|
|
12
|
+
import { EUI_ECL_PAGE_HEADER } from '@eui/ecl/components/ecl-page-header';
|
|
13
|
+
import { EUI_ECL_SITE_FOOTER } from '@eui/ecl/components/ecl-site-footer';
|
|
14
|
+
import { EclSiteHeaderLoginEvent, EclSiteHeaderSearchEvent, EUI_ECL_SITE_HEADER } from '@eui/ecl/components/ecl-site-header';
|
|
15
15
|
import { TranslateModule } from '@ngx-translate/core';
|
|
16
16
|
|
|
17
17
|
@Component({
|
|
@@ -19,14 +19,14 @@ import { TranslateModule } from '@ngx-translate/core';
|
|
|
19
19
|
templateUrl: './app.component.html',
|
|
20
20
|
standalone: true,
|
|
21
21
|
imports: [
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
22
|
+
...EUI_ECL_APP,
|
|
23
|
+
...EUI_ECL_BREADCRUMB,
|
|
24
|
+
...EUI_ECL_ICON,
|
|
25
|
+
...EUI_ECL_LINK,
|
|
26
|
+
...EUI_ECL_MENU,
|
|
27
|
+
...EUI_ECL_PAGE_HEADER,
|
|
28
|
+
...EUI_ECL_SITE_HEADER,
|
|
29
|
+
...EUI_ECL_SITE_FOOTER,
|
|
30
30
|
RouterOutlet,
|
|
31
31
|
TranslateModule,
|
|
32
32
|
]
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
import { Component, Inject } from '@angular/core';
|
|
2
2
|
import { CONFIG_TOKEN, EuiAppConfig } from '@eui/core';
|
|
3
|
+
import { EUI_ECL_LINK } from '@eui/ecl/components/ecl-link';
|
|
4
|
+
import { EUI_ECL_LIST } from '@eui/ecl/components/ecl-list';
|
|
3
5
|
import { TranslateModule } from '@ngx-translate/core';
|
|
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
|
+
...EUI_ECL_LINK,
|
|
13
|
+
...EUI_ECL_LIST,
|
|
14
14
|
],
|
|
15
15
|
})
|
|
16
16
|
export class HomeComponent {
|
|
@@ -1,19 +1,15 @@
|
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
1
2
|
import { NgModule } from '@angular/core';
|
|
2
3
|
import { RouterModule } from '@angular/router';
|
|
3
|
-
import { CommonModule } from '@angular/common';
|
|
4
4
|
import { TranslateModule } from '@ngx-translate/core';
|
|
5
5
|
|
|
6
|
-
import { EclAllModule } from '@eui/ecl';
|
|
7
|
-
|
|
8
6
|
const MODULES = [
|
|
9
7
|
RouterModule,
|
|
10
|
-
EclAllModule,
|
|
11
8
|
TranslateModule,
|
|
12
9
|
CommonModule,
|
|
13
10
|
];
|
|
14
11
|
@NgModule({
|
|
15
12
|
imports: [...MODULES],
|
|
16
|
-
declarations: [],
|
|
17
13
|
exports: [...MODULES],
|
|
18
14
|
})
|
|
19
15
|
export class SharedModule {}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-angular-app",
|
|
3
|
-
"version": "21.0.0-alpha.
|
|
3
|
+
"version": "21.0.0-alpha.15",
|
|
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": "21.0.0-alpha.
|
|
21
|
+
"@eui/deps-base": "21.0.0-alpha.15"
|
|
22
22
|
}
|
|
23
23
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eui/cli",
|
|
3
|
-
"version": "21.0.0-alpha.
|
|
3
|
+
"version": "21.0.0-alpha.15",
|
|
4
4
|
"tag": "next",
|
|
5
5
|
"license": "EUPL-1.1",
|
|
6
6
|
"description": "eUI CLI app generator",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"main": "./lib/cli.js",
|
|
11
11
|
"repository": {
|
|
12
12
|
"type": "git",
|
|
13
|
-
"url": "https://
|
|
13
|
+
"url": "https://sdlc.webcloud.ec.europa.eu/csdr/eui/eui.git"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
16
|
"@eui/tools": "6.21.124"
|
package/.version.properties
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
19.3.2
|