@eui/cli 19.0.0-next.10 → 19.0.0-next.12
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/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/features/home/home.component.ts +4 -4
- package/lib/skeletons/web-symfony/myapp-web/package.json +2 -2
- package/package.json +1 -1
package/.version.properties
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
19.0.0-next.
|
|
1
|
+
19.0.0-next.12
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-angular-app",
|
|
3
|
-
"version": "19.0.0-next.
|
|
3
|
+
"version": "19.0.0-next.12",
|
|
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.12"
|
|
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 { EclSiteHeader, EclSiteHeaderLoginEvent, EclSiteHeaderSearchEvent } from '@eui/ecl/components/ecl-site-header';
|
|
10
|
+
import { EclMenuItemSelectEvent, EclMenu } from '@eui/ecl/components/ecl-menu';
|
|
11
|
+
import { EclApp } from '@eui/ecl/components/ecl-app';
|
|
12
|
+
import { EclIcon } from '@eui/ecl/components/ecl-icon';
|
|
13
|
+
import { EclSiteFooter } from '@eui/ecl/components/ecl-site-footer';
|
|
14
|
+
import { EclBreadcrumb } from '@eui/ecl/components/ecl-breadcrumb';
|
|
15
|
+
import { EclPageHeader } 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
|
+
EclApp,
|
|
25
|
+
EclBreadcrumb,
|
|
26
|
+
EclIcon,
|
|
27
|
+
EclMenu,
|
|
28
|
+
EclPageHeader,
|
|
29
|
+
EclSiteHeader,
|
|
30
|
+
EclSiteFooter,
|
|
31
31
|
RouterOutlet,
|
|
32
32
|
TranslateModule,
|
|
33
33
|
]
|
|
@@ -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 { EclSiteHeader, EclSiteHeaderLoginEvent, EclSiteHeaderSearchEvent } from '@eui/ecl/components/ecl-site-header';
|
|
10
|
+
import { EclMenuItemSelectEvent, EclMenu } from '@eui/ecl/components/ecl-menu';
|
|
11
|
+
import { EclApp } from '@eui/ecl/components/ecl-app';
|
|
12
|
+
import { EclIcon } from '@eui/ecl/components/ecl-icon';
|
|
13
|
+
import { EclSiteFooter } from '@eui/ecl/components/ecl-site-footer';
|
|
14
|
+
import { EclBreadcrumb } from '@eui/ecl/components/ecl-breadcrumb';
|
|
15
|
+
import { EclPageHeader } 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
|
+
EclApp,
|
|
25
|
+
EclBreadcrumb,
|
|
26
|
+
EclIcon,
|
|
27
|
+
EclMenu,
|
|
28
|
+
EclPageHeader,
|
|
29
|
+
EclSiteHeader,
|
|
30
|
+
EclSiteFooter,
|
|
31
31
|
RouterOutlet,
|
|
32
32
|
TranslateModule,
|
|
33
33
|
]
|
|
@@ -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.12",
|
|
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.12"
|
|
22
22
|
}
|
|
23
23
|
}
|