@eui/cli 23.0.0-alpha.2 → 23.0.0-alpha.4
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/src/app/app.component.spec.ts +5 -5
- package/lib/skeletons/_angular/base/src/app/app.component.ts +2 -2
- package/lib/skeletons/_angular/base/src/app/app.config.ts +2 -2
- package/lib/skeletons/_angular/base/src/app/features/home/home.component.ts +2 -2
- package/lib/skeletons/_angular/base-mobile/package.json +1 -1
- package/lib/skeletons/_angular/base-mobile/src/app/core/core.module.ts +2 -2
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/about.component.ts +2 -2
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/change-log/changelog.component.ts +2 -2
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/help-support/help-support.component.ts +2 -2
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/legal-notice/legal-notice.component.ts +2 -2
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/licence-details/licence-details.component.ts +2 -2
- package/lib/skeletons/_angular/base-mobile/src/app/features/about/opensource-licences/opensource-licences.component.ts +2 -2
- package/lib/skeletons/_angular/options/ecl-ec/src/app/app.component.ts +2 -2
- package/lib/skeletons/_angular/options/ecl-ec/src/app/app.config.ts +2 -2
- package/lib/skeletons/_angular/options/ecl-ec/src/app/features/home/home.component.ts +1 -3
- package/lib/skeletons/_angular/options/ecl-eu/src/app/app.component.ts +2 -2
- package/lib/skeletons/_angular/options/ecl-eu/src/app/app.config.ts +2 -2
- package/lib/skeletons/_angular/options/ecl-eu/src/app/features/home/home.component.ts +1 -3
- package/lib/skeletons/_angular/options/ecl-eu/src/app/shared/shared.module.ts +2 -2
- package/lib/skeletons/_angular/options/pnpm/package.json +7 -7
- package/package.json +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-angular-app",
|
|
3
|
-
"version": "23.0.0-alpha.
|
|
3
|
+
"version": "23.0.0-alpha.4",
|
|
4
4
|
"license": "EUPL-1.1",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"ng": "ng",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
},
|
|
21
21
|
"private": true,
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@eui/deps-base": "23.0.0-alpha.
|
|
23
|
+
"@eui/deps-base": "23.0.0-alpha.4"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"npm-run-all": "4.1.5",
|
|
@@ -6,10 +6,10 @@ import { routes } from './app.routes';
|
|
|
6
6
|
import { provideHttpClientTesting } from '@angular/common/http/testing';
|
|
7
7
|
import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http';
|
|
8
8
|
import { AppStarterService } from './app-starter.service';
|
|
9
|
-
import { CONFIG_TOKEN, I18nService, I18nState, UserService} from '@eui/core';
|
|
9
|
+
import { CONFIG_TOKEN, I18nService, I18nState, translateConfig, UserService } from '@eui/core';
|
|
10
10
|
import { EuiAppConfig } from '@eui/core';
|
|
11
11
|
import { Observable, of } from 'rxjs';
|
|
12
|
-
import {
|
|
12
|
+
import { provideTranslateService } from '@ngx-translate/core';
|
|
13
13
|
import { describe, it, beforeEach, expect, vi } from 'vitest';
|
|
14
14
|
|
|
15
15
|
// eslint-disable-next-line
|
|
@@ -26,8 +26,8 @@ describe('AppComponent', () => {
|
|
|
26
26
|
type GetStateReturnType<T> = T extends keyof I18nState ? Observable<I18nState[T]> : Observable<I18nState>;
|
|
27
27
|
|
|
28
28
|
userServiceMock = { init: vi.fn() } as SpyObj<UserService>;
|
|
29
|
-
i18nServiceMock = {
|
|
30
|
-
init: vi.fn(),
|
|
29
|
+
i18nServiceMock = {
|
|
30
|
+
init: vi.fn(),
|
|
31
31
|
getState: vi.fn(<K extends keyof I18nState>(key?: K): GetStateReturnType<K> => {
|
|
32
32
|
if (typeof key === 'string') {
|
|
33
33
|
return of({ activeLang: 'en' }[key]) as GetStateReturnType<K>;
|
|
@@ -41,7 +41,7 @@ describe('AppComponent', () => {
|
|
|
41
41
|
imports: [
|
|
42
42
|
RouterModule.forRoot(routes),
|
|
43
43
|
...EUI_LAYOUT,
|
|
44
|
-
|
|
44
|
+
provideTranslateService(translateConfig),
|
|
45
45
|
],
|
|
46
46
|
providers: [
|
|
47
47
|
provideHttpClient(withInterceptorsFromDi()),
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Component } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { TranslatePipe } from '@ngx-translate/core';
|
|
3
3
|
import { EUI_LANGUAGE_SELECTOR } from '@eui/components/eui-language-selector';
|
|
4
4
|
import { EUI_USER_PROFILE } from '@eui/components/eui-user-profile';
|
|
5
5
|
import { EUI_ICON } from '@eui/components/eui-icon';
|
|
@@ -10,7 +10,7 @@ import { EUI_LAYOUT } from '@eui/components/layout';
|
|
|
10
10
|
selector: 'app-root',
|
|
11
11
|
templateUrl: './app.component.html',
|
|
12
12
|
imports: [
|
|
13
|
-
|
|
13
|
+
TranslatePipe,
|
|
14
14
|
...EUI_LAYOUT,
|
|
15
15
|
...EUI_ICON,
|
|
16
16
|
...EUI_USER_PROFILE,
|
|
@@ -6,7 +6,7 @@ import { Observable } from 'rxjs';
|
|
|
6
6
|
import { routes } from './app.routes';
|
|
7
7
|
import { AppStarterService } from './app-starter.service';
|
|
8
8
|
|
|
9
|
-
import {
|
|
9
|
+
import { provideTranslateService } from '@ngx-translate/core';
|
|
10
10
|
|
|
11
11
|
import { HTTP_INTERCEPTORS, provideHttpClient, withInterceptorsFromDi } from '@angular/common/http';
|
|
12
12
|
import {
|
|
@@ -75,8 +75,8 @@ export const appConfig: ApplicationConfig = {
|
|
|
75
75
|
provideHttpClient(withInterceptorsFromDi()),
|
|
76
76
|
importProvidersFrom(
|
|
77
77
|
EuiCoreModule.forRoot(),
|
|
78
|
-
TranslateModule.forRoot(translateConfig)
|
|
79
78
|
),
|
|
79
|
+
provideTranslateService(translateConfig),
|
|
80
80
|
AppStarterService,
|
|
81
81
|
provideRouter(routes),
|
|
82
82
|
provideAnimations(),
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { Component, inject } from '@angular/core';
|
|
2
2
|
import { CONFIG_TOKEN, EuiAppConfig } from '@eui/core';
|
|
3
3
|
import { EUI_PAGE } from '@eui/components/eui-page';
|
|
4
|
-
import {
|
|
4
|
+
import { TranslatePipe } from '@ngx-translate/core';
|
|
5
5
|
|
|
6
6
|
@Component({
|
|
7
7
|
templateUrl: './home.component.html',
|
|
8
8
|
imports: [
|
|
9
|
-
|
|
9
|
+
TranslatePipe,
|
|
10
10
|
...EUI_PAGE,
|
|
11
11
|
],
|
|
12
12
|
})
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { NgModule } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { provideTranslateService } from '@ngx-translate/core';
|
|
3
3
|
|
|
4
4
|
import { HTTP_INTERCEPTORS, HttpClientModule } from '@angular/common/http';
|
|
5
5
|
|
|
@@ -25,7 +25,6 @@ import { SharedModule } from '@shared/shared.module';
|
|
|
25
25
|
HttpClientModule,
|
|
26
26
|
SharedModule,
|
|
27
27
|
EuiCoreModule.forRoot(),
|
|
28
|
-
TranslateModule.forRoot(translateConfig),
|
|
29
28
|
IonicModule.forRoot({mode: 'md'}),
|
|
30
29
|
],
|
|
31
30
|
declarations: [
|
|
@@ -34,6 +33,7 @@ import { SharedModule } from '@shared/shared.module';
|
|
|
34
33
|
SharedModule,
|
|
35
34
|
],
|
|
36
35
|
providers: [
|
|
36
|
+
provideTranslateService(translateConfig),
|
|
37
37
|
{
|
|
38
38
|
provide: EUI_CONFIG_TOKEN,
|
|
39
39
|
useValue: { appConfig: appConfig, environment: environment }
|
|
@@ -2,11 +2,11 @@ import { Component } from '@angular/core';
|
|
|
2
2
|
import { NavController } from '@ionic/angular';
|
|
3
3
|
import { EuimChipSelectorComponentModule, EuimAboutModule, EuimHeaderDetailsModule, EuimToolbarQrcodeModule, EuimToolbarComponentModule, EuimLabelModule } from '@eui/mobile-core';
|
|
4
4
|
import { IonToolbar, IonHeader, IonContent, IonButtons, IonList, IonListHeader, IonItem, IonLabel, IonIcon, IonButton } from '@ionic/angular/standalone';
|
|
5
|
-
import {
|
|
5
|
+
import { TranslatePipe } from '@ngx-translate/core';
|
|
6
6
|
|
|
7
7
|
@Component({
|
|
8
8
|
templateUrl: './about.component.html',
|
|
9
|
-
imports: [
|
|
9
|
+
imports: [TranslatePipe, IonToolbar, IonHeader, IonButtons, IonContent, IonList, IonListHeader, IonItem, IonLabel, IonIcon, IonButton, EuimChipSelectorComponentModule, EuimAboutModule, EuimHeaderDetailsModule, EuimToolbarQrcodeModule, EuimToolbarComponentModule, EuimLabelModule ]
|
|
10
10
|
})
|
|
11
11
|
export class AboutComponent {
|
|
12
12
|
showCode = false;
|
package/lib/skeletons/_angular/base-mobile/src/app/features/about/change-log/changelog.component.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { Component } from '@angular/core';
|
|
2
2
|
import { EuimAboutModule, EuimToolbarComponentModule } from '@eui/mobile-core';
|
|
3
3
|
import { IonToolbar, IonHeader, IonContent } from '@ionic/angular/standalone';
|
|
4
|
-
import {
|
|
4
|
+
import { TranslatePipe } from '@ngx-translate/core';
|
|
5
5
|
@Component({
|
|
6
6
|
templateUrl: './changelog.component.html',
|
|
7
|
-
imports: [
|
|
7
|
+
imports: [TranslatePipe, EuimAboutModule, IonToolbar, IonHeader, IonContent, EuimToolbarComponentModule]
|
|
8
8
|
})
|
|
9
9
|
export class ChangeLogComponent {
|
|
10
10
|
changeLogs = [
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { Component } from '@angular/core';
|
|
2
2
|
import { EuimAboutModule, EuimAlertMessageModule, EuimToolbarComponentModule } from '@eui/mobile-core';
|
|
3
3
|
import { IonToolbar, IonHeader, IonContent, IonIcon, IonButton } from '@ionic/angular/standalone';
|
|
4
|
-
import {
|
|
4
|
+
import { TranslatePipe } from '@ngx-translate/core';
|
|
5
5
|
|
|
6
6
|
@Component({
|
|
7
7
|
templateUrl: './help-support.component.html',
|
|
8
|
-
imports: [
|
|
8
|
+
imports: [TranslatePipe, IonToolbar, IonIcon, IonButton, EuimAboutModule, EuimAlertMessageModule, IonHeader, IonContent, EuimToolbarComponentModule]
|
|
9
9
|
})
|
|
10
10
|
export class HelpSupportComponent {
|
|
11
11
|
alertInfos = {
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { Component } from '@angular/core';
|
|
2
2
|
import { EuimAboutModule, EuimPdfViewerModule, EuimToolbarComponentModule } from '@eui/mobile-core';
|
|
3
3
|
import { IonToolbar, IonHeader, IonContent } from '@ionic/angular/standalone';
|
|
4
|
-
import {
|
|
4
|
+
import { TranslatePipe } from '@ngx-translate/core';
|
|
5
5
|
|
|
6
6
|
@Component({
|
|
7
7
|
templateUrl: './legal-notice.component.html',
|
|
8
|
-
imports: [
|
|
8
|
+
imports: [TranslatePipe, IonToolbar, EuimAboutModule, EuimPdfViewerModule, IonHeader, IonContent, EuimToolbarComponentModule]
|
|
9
9
|
})
|
|
10
10
|
export class LegalNoticeComponent {}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { Component } from '@angular/core';
|
|
2
2
|
import { EuimAboutModule, EuimToolbarComponentModule } from '@eui/mobile-core';
|
|
3
3
|
import { IonToolbar, IonHeader, IonContent } from '@ionic/angular/standalone';
|
|
4
|
-
import {
|
|
4
|
+
import { TranslatePipe } from '@ngx-translate/core';
|
|
5
5
|
|
|
6
6
|
@Component({
|
|
7
7
|
templateUrl: './licence-details.component.html',
|
|
8
|
-
imports: [
|
|
8
|
+
imports: [TranslatePipe, IonToolbar, EuimAboutModule, IonHeader, IonContent, EuimToolbarComponentModule]
|
|
9
9
|
})
|
|
10
10
|
export class LicenceDetailsComponent {}
|
|
@@ -2,11 +2,11 @@ import { Component } from '@angular/core';
|
|
|
2
2
|
import { NavController } from '@ionic/angular';
|
|
3
3
|
import { EuimAboutModule, EuimToolbarComponentModule } from '@eui/mobile-core';
|
|
4
4
|
import { IonToolbar, IonHeader, IonContent } from '@ionic/angular/standalone';
|
|
5
|
-
import {
|
|
5
|
+
import { TranslatePipe } from '@ngx-translate/core';
|
|
6
6
|
|
|
7
7
|
@Component({
|
|
8
8
|
templateUrl: './opensource-licences.component.html',
|
|
9
|
-
imports: [
|
|
9
|
+
imports: [TranslatePipe, IonToolbar, EuimAboutModule, IonHeader, IonContent, EuimToolbarComponentModule]
|
|
10
10
|
})
|
|
11
11
|
export class OpensourceLicencesComponent {
|
|
12
12
|
constructor(
|
|
@@ -13,7 +13,7 @@ import { EUI_ECL_PAGE_HEADER } from '@eui/ecl/components/ecl-page-header';
|
|
|
13
13
|
import { EUI_ECL_SOCIAL_MEDIA_FOLLOW } from '@eui/ecl/components/ecl-social-media-follow';
|
|
14
14
|
import { EUI_ECL_SITE_FOOTER } from '@eui/ecl/components/ecl-site-footer';
|
|
15
15
|
import { EclSiteHeaderLoginEvent, EclSiteHeaderSearchEvent, EUI_ECL_SITE_HEADER } from '@eui/ecl/components/ecl-site-header';
|
|
16
|
-
import {
|
|
16
|
+
import { TranslatePipe } from '@ngx-translate/core';
|
|
17
17
|
|
|
18
18
|
@Component({
|
|
19
19
|
selector: 'app-root',
|
|
@@ -30,7 +30,7 @@ import { TranslateModule } from '@ngx-translate/core';
|
|
|
30
30
|
...EUI_ECL_SITE_FOOTER,
|
|
31
31
|
...EUI_ECL_SOCIAL_MEDIA_FOLLOW,
|
|
32
32
|
RouterOutlet,
|
|
33
|
-
|
|
33
|
+
TranslatePipe,
|
|
34
34
|
]
|
|
35
35
|
})
|
|
36
36
|
export class AppComponent implements OnInit {
|
|
@@ -6,7 +6,7 @@ import { Observable } from 'rxjs';
|
|
|
6
6
|
import { routes } from './app.routes';
|
|
7
7
|
import { AppStarterService } from './app-starter.service';
|
|
8
8
|
|
|
9
|
-
import {
|
|
9
|
+
import { provideTranslateService } from '@ngx-translate/core';
|
|
10
10
|
|
|
11
11
|
import { HTTP_INTERCEPTORS, provideHttpClient, withInterceptorsFromDi } from '@angular/common/http';
|
|
12
12
|
import {
|
|
@@ -75,8 +75,8 @@ export const appConfig: ApplicationConfig = {
|
|
|
75
75
|
provideHttpClient(withInterceptorsFromDi()),
|
|
76
76
|
importProvidersFrom(
|
|
77
77
|
EuiCoreModule.forRoot(),
|
|
78
|
-
TranslateModule.forRoot(translateConfig)
|
|
79
78
|
),
|
|
79
|
+
provideTranslateService(translateConfig),
|
|
80
80
|
AppStarterService,
|
|
81
81
|
provideRouter(routes),
|
|
82
82
|
provideAnimations(),
|
|
@@ -2,20 +2,18 @@ import { Component, inject } from '@angular/core';
|
|
|
2
2
|
import { CONFIG_TOKEN, EuiAppConfig } from '@eui/core';
|
|
3
3
|
import { EUI_ECL_LINK } from '@eui/ecl/components/ecl-link';
|
|
4
4
|
import { EUI_ECL_LIST } from '@eui/ecl/components/ecl-list';
|
|
5
|
-
import { TranslateModule } from '@ngx-translate/core';
|
|
6
5
|
|
|
7
6
|
@Component({
|
|
8
7
|
templateUrl: './home.component.html',
|
|
9
8
|
standalone: true,
|
|
10
9
|
imports: [
|
|
11
|
-
TranslateModule,
|
|
12
10
|
...EUI_ECL_LINK,
|
|
13
11
|
...EUI_ECL_LIST,
|
|
14
12
|
],
|
|
15
13
|
})
|
|
16
14
|
export class HomeComponent {
|
|
17
15
|
protected config: EuiAppConfig = inject(CONFIG_TOKEN);
|
|
18
|
-
|
|
16
|
+
|
|
19
17
|
constructor() {
|
|
20
18
|
console.log(this.config);
|
|
21
19
|
}
|
|
@@ -12,7 +12,7 @@ import { EclMenuItemSelectEvent, EUI_ECL_MENU } from '@eui/ecl/components/ecl-me
|
|
|
12
12
|
import { EUI_ECL_PAGE_HEADER } from '@eui/ecl/components/ecl-page-header';
|
|
13
13
|
import { EUI_ECL_SITE_FOOTER } from '@eui/ecl/components/ecl-site-footer';
|
|
14
14
|
import { EclSiteHeaderLoginEvent, EclSiteHeaderSearchEvent, EUI_ECL_SITE_HEADER } from '@eui/ecl/components/ecl-site-header';
|
|
15
|
-
import {
|
|
15
|
+
import { TranslatePipe } from '@ngx-translate/core';
|
|
16
16
|
|
|
17
17
|
@Component({
|
|
18
18
|
selector: 'app-root',
|
|
@@ -28,7 +28,7 @@ import { TranslateModule } from '@ngx-translate/core';
|
|
|
28
28
|
...EUI_ECL_SITE_HEADER,
|
|
29
29
|
...EUI_ECL_SITE_FOOTER,
|
|
30
30
|
RouterOutlet,
|
|
31
|
-
|
|
31
|
+
TranslatePipe,
|
|
32
32
|
]
|
|
33
33
|
})
|
|
34
34
|
export class AppComponent implements OnInit {
|
|
@@ -6,7 +6,7 @@ import { Observable } from 'rxjs';
|
|
|
6
6
|
import { routes } from './app.routes';
|
|
7
7
|
import { AppStarterService } from './app-starter.service';
|
|
8
8
|
|
|
9
|
-
import {
|
|
9
|
+
import { provideTranslateService } from '@ngx-translate/core';
|
|
10
10
|
|
|
11
11
|
import { HTTP_INTERCEPTORS, provideHttpClient, withInterceptorsFromDi } from '@angular/common/http';
|
|
12
12
|
import {
|
|
@@ -75,8 +75,8 @@ export const appConfig: ApplicationConfig = {
|
|
|
75
75
|
provideHttpClient(withInterceptorsFromDi()),
|
|
76
76
|
importProvidersFrom(
|
|
77
77
|
EuiCoreModule.forRoot(),
|
|
78
|
-
TranslateModule.forRoot(translateConfig)
|
|
79
78
|
),
|
|
79
|
+
provideTranslateService(translateConfig),
|
|
80
80
|
AppStarterService,
|
|
81
81
|
provideRouter(routes),
|
|
82
82
|
provideAnimations(),
|
|
@@ -2,20 +2,18 @@ import { Component, inject } from '@angular/core';
|
|
|
2
2
|
import { CONFIG_TOKEN, EuiAppConfig } from '@eui/core';
|
|
3
3
|
import { EUI_ECL_LINK } from '@eui/ecl/components/ecl-link';
|
|
4
4
|
import { EUI_ECL_LIST } from '@eui/ecl/components/ecl-list';
|
|
5
|
-
import { TranslateModule } from '@ngx-translate/core';
|
|
6
5
|
|
|
7
6
|
@Component({
|
|
8
7
|
templateUrl: './home.component.html',
|
|
9
8
|
standalone: true,
|
|
10
9
|
imports: [
|
|
11
|
-
TranslateModule,
|
|
12
10
|
...EUI_ECL_LINK,
|
|
13
11
|
...EUI_ECL_LIST,
|
|
14
12
|
],
|
|
15
13
|
})
|
|
16
14
|
export class HomeComponent {
|
|
17
15
|
protected config: EuiAppConfig = inject(CONFIG_TOKEN);
|
|
18
|
-
|
|
16
|
+
|
|
19
17
|
constructor() {
|
|
20
18
|
console.log(this.config);
|
|
21
19
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import { CommonModule } from '@angular/common';
|
|
2
2
|
import { NgModule } from '@angular/core';
|
|
3
3
|
import { RouterModule } from '@angular/router';
|
|
4
|
-
import {
|
|
4
|
+
import { TranslatePipe } from '@ngx-translate/core';
|
|
5
5
|
|
|
6
6
|
const MODULES = [
|
|
7
7
|
RouterModule,
|
|
8
|
-
|
|
8
|
+
TranslatePipe,
|
|
9
9
|
CommonModule,
|
|
10
10
|
];
|
|
11
11
|
@NgModule({
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eui-angular-app",
|
|
3
|
-
"version": "23.0.0-alpha.
|
|
3
|
+
"version": "23.0.0-alpha.4",
|
|
4
4
|
"license": "EUPL-1.1",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"ng": "ng",
|
|
@@ -46,18 +46,18 @@
|
|
|
46
46
|
"pikaday": "1.8.2",
|
|
47
47
|
"lodash-es": "4.17.23",
|
|
48
48
|
"localforage": "1.10.0",
|
|
49
|
-
"@eui/base": "23.0.0-alpha.
|
|
50
|
-
"@eui/core": "23.0.0-alpha.
|
|
51
|
-
"@eui/styles": "23.0.0-alpha.
|
|
52
|
-
"@eui/components": "23.0.0-alpha.
|
|
53
|
-
"@eui/ecl": "23.0.0-alpha.
|
|
49
|
+
"@eui/base": "23.0.0-alpha.4",
|
|
50
|
+
"@eui/core": "23.0.0-alpha.4",
|
|
51
|
+
"@eui/styles": "23.0.0-alpha.4",
|
|
52
|
+
"@eui/components": "23.0.0-alpha.4",
|
|
53
|
+
"@eui/ecl": "23.0.0-alpha.4"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@angular/compiler-cli": "21.2.5",
|
|
57
57
|
"@angular/build": "21.2.3",
|
|
58
58
|
"@angular/cli": "21.2.3",
|
|
59
59
|
"ng-packagr": "23.0.0-alpha.1",
|
|
60
|
-
"@eui/cli": "23.0.0-alpha.
|
|
60
|
+
"@eui/cli": "23.0.0-alpha.4",
|
|
61
61
|
"typescript": "~6.0.2",
|
|
62
62
|
"npm-run-all": "4.1.5",
|
|
63
63
|
"json-server": "1.0.0-beta.3",
|