@eui/components 18.0.0-rc.34 → 18.0.0-rc.35
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/docs/components/EuiAppComponent.html +13 -1
- package/docs/components/EuiAppHeaderComponent.html +13 -1
- package/docs/components/EuiAppSidebarComponent.html +13 -1
- package/docs/components/EuiAppTopMessageComponent.html +13 -1
- package/docs/dependencies.html +1 -1
- package/docs/js/search/search_index.js +2 -2
- package/esm2022/layout/eui-app/eui-app-header/header.component.mjs +11 -6
- package/esm2022/layout/eui-app/eui-app-sidebar/sidebar.component.mjs +10 -5
- package/esm2022/layout/eui-app/eui-app-top-message/top-message.component.mjs +12 -7
- package/esm2022/layout/eui-app/eui-app.component.mjs +10 -6
- package/fesm2022/eui-components-layout.mjs +34 -18
- package/fesm2022/eui-components-layout.mjs.map +1 -1
- package/layout/eui-app/eui-app-header/header.component.d.ts +2 -1
- package/layout/eui-app/eui-app-header/header.component.d.ts.map +1 -1
- package/layout/eui-app/eui-app-sidebar/sidebar.component.d.ts +3 -2
- package/layout/eui-app/eui-app-sidebar/sidebar.component.d.ts.map +1 -1
- package/layout/eui-app/eui-app-top-message/top-message.component.d.ts +2 -1
- package/layout/eui-app/eui-app-top-message/top-message.component.d.ts.map +1 -1
- package/layout/eui-app/eui-app.component.d.ts +2 -1
- package/layout/eui-app/eui-app.component.d.ts.map +1 -1
- package/package.json +3 -3
@@ -8,6 +8,7 @@ export declare class EuiAppHeaderComponent implements OnInit, OnDestroy {
|
|
8
8
|
private zone;
|
9
9
|
private viewportRuler;
|
10
10
|
private scrollDispatcher;
|
11
|
+
private document;
|
11
12
|
get cssClasses(): string;
|
12
13
|
role: string;
|
13
14
|
get isShrinkHeaderActive(): boolean;
|
@@ -15,7 +16,7 @@ export declare class EuiAppHeaderComponent implements OnInit, OnDestroy {
|
|
15
16
|
private _isShrinkHeaderActive;
|
16
17
|
private isHeaderShrinked;
|
17
18
|
private destroy$;
|
18
|
-
constructor(asService: EuiAppShellService, zone: NgZone, viewportRuler: ViewportRuler, scrollDispatcher: ScrollDispatcher);
|
19
|
+
constructor(asService: EuiAppShellService, zone: NgZone, viewportRuler: ViewportRuler, scrollDispatcher: ScrollDispatcher, document: Document);
|
19
20
|
ngOnInit(): void;
|
20
21
|
ngOnDestroy(): void;
|
21
22
|
private getCssClasses;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"header.component.d.ts","sourceRoot":"","sources":["../../../../layout/eui-app/eui-app-header/header.component.ts"],"names":[],"mappings":"AAAA,OAAO,
|
1
|
+
{"version":3,"file":"header.component.d.ts","sourceRoot":"","sources":["../../../../layout/eui-app/eui-app-header/header.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAKH,MAAM,EACN,SAAS,EAET,MAAM,EAET,MAAM,eAAe,CAAC;AACvB,OAAO,EAAyB,YAAY,EAAE,MAAM,uBAAuB,CAAC;AAC5E,OAAO,EAAE,gBAAgB,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;AACzE,OAAO,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAC;;AAO/C,qBAOa,qBAAsB,YAAW,MAAM,EAAE,SAAS;IAoBhD,SAAS,EAAE,kBAAkB;IACpC,OAAO,CAAC,IAAI;IACZ,OAAO,CAAC,aAAa;IACrB,OAAO,CAAC,gBAAgB;IACN,OAAO,CAAC,QAAQ;IAvBtC,IACI,UAAU,IAAI,MAAM,CAEvB;IACyB,IAAI,SAAY;IAE1C,IACI,oBAAoB,IAAI,OAAO,CAElC;IACD,IAAI,oBAAoB,CAAC,KAAK,EAAE,YAAY,EAE3C;IACD,OAAO,CAAC,qBAAqB,CAAS;IAEtC,OAAO,CAAC,gBAAgB,CAAS;IACjC,OAAO,CAAC,QAAQ,CAA4C;gBAGjD,SAAS,EAAE,kBAAkB,EAC5B,IAAI,EAAE,MAAM,EACZ,aAAa,EAAE,aAAa,EAC5B,gBAAgB,EAAE,gBAAgB,EAChB,QAAQ,EAAE,QAAQ;IAGhD,QAAQ,IAAI,IAAI;IAwBhB,WAAW,IAAI,IAAI;IAWnB,OAAO,CAAC,aAAa;yCA9DZ,qBAAqB;2CAArB,qBAAqB;CAiEjC"}
|
@@ -3,13 +3,14 @@ import { EuiAppShellService } from '@eui/core';
|
|
3
3
|
import * as i0 from "@angular/core";
|
4
4
|
export declare class EuiAppSidebarComponent implements OnInit, OnDestroy {
|
5
5
|
asService: EuiAppShellService;
|
6
|
+
private document;
|
6
7
|
string: string;
|
7
8
|
private subscriptions;
|
8
|
-
constructor(asService: EuiAppShellService);
|
9
|
+
constructor(asService: EuiAppShellService, document: Document);
|
9
10
|
close(): void;
|
10
11
|
ngOnInit(): void;
|
11
12
|
ngOnDestroy(): void;
|
12
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EuiAppSidebarComponent, [{ optional: true; }]>;
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EuiAppSidebarComponent, [{ optional: true; }, null]>;
|
13
14
|
static ɵcmp: i0.ɵɵComponentDeclaration<EuiAppSidebarComponent, "eui-app-sidebar", never, {}, {}, never, ["eui-app-sidebar-header-user-profile", "eui-app-sidebar-header", "eui-app-sidebar-body", "eui-app-sidebar-footer", "eui-app-sidebar-drawer"], false, never>;
|
14
15
|
}
|
15
16
|
//# sourceMappingURL=sidebar.component.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"sidebar.component.d.ts","sourceRoot":"","sources":["../../../../layout/eui-app/eui-app-sidebar/sidebar.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAKH,MAAM,EAEN,SAAS,
|
1
|
+
{"version":3,"file":"sidebar.component.d.ts","sourceRoot":"","sources":["../../../../layout/eui-app/eui-app-sidebar/sidebar.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAKH,MAAM,EAEN,SAAS,EAGZ,MAAM,eAAe,CAAC;AAIvB,OAAO,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAC;;AAG/C,qBAOa,sBAAuB,YAAW,MAAM,EAAE,SAAS;IAK7B,SAAS,EAAE,kBAAkB;IAAoB,OAAO,CAAC,QAAQ;IAJ1E,MAAM,SAAqB;IAEjD,OAAO,CAAC,aAAa,CAAsB;gBAEZ,SAAS,EAAE,kBAAkB,EAA4B,QAAQ,EAAE,QAAQ;IAG1G,KAAK,IAAI,IAAI;IASb,QAAQ,IAAI,IAAI;IAgBhB,WAAW,IAAI,IAAI;yCAjCV,sBAAsB;2CAAtB,sBAAsB;CAyClC"}
|
@@ -11,6 +11,7 @@ export declare class EuiAppTopMessageComponent implements AfterViewInit, OnDestr
|
|
11
11
|
private cd;
|
12
12
|
private obs;
|
13
13
|
protected baseStatesDirective: BaseStatesDirective;
|
14
|
+
private document;
|
14
15
|
get cssClasses(): string;
|
15
16
|
role: string;
|
16
17
|
appTopMessage: ElementRef;
|
@@ -21,7 +22,7 @@ export declare class EuiAppTopMessageComponent implements AfterViewInit, OnDestr
|
|
21
22
|
get isVisible(): boolean;
|
22
23
|
topMessageClose: EventEmitter<null>;
|
23
24
|
private _isVisible;
|
24
|
-
constructor(asService: EuiAppShellService, elRef: ElementRef, cd: ChangeDetectorRef, obs: ContentObserver, baseStatesDirective: BaseStatesDirective);
|
25
|
+
constructor(asService: EuiAppShellService, elRef: ElementRef, cd: ChangeDetectorRef, obs: ContentObserver, baseStatesDirective: BaseStatesDirective, document: Document);
|
25
26
|
ngAfterViewInit(): void;
|
26
27
|
ngOnDestroy(): void;
|
27
28
|
onCloseClick(): void;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"top-message.component.d.ts","sourceRoot":"","sources":["../../../../layout/eui-app/eui-app-top-message/top-message.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAKH,UAAU,EACV,aAAa,EAGb,YAAY,EACZ,SAAS,EACT,iBAAiB,
|
1
|
+
{"version":3,"file":"top-message.component.d.ts","sourceRoot":"","sources":["../../../../layout/eui-app/eui-app-top-message/top-message.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAKH,UAAU,EACV,aAAa,EAGb,YAAY,EACZ,SAAS,EACT,iBAAiB,EAIpB,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAC;AAC/C,OAAO,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;AAC7D,OAAO,EAAa,YAAY,EAAE,MAAM,MAAM,CAAC;AAC/C,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;;;AAIzD,qBAqBa,yBAA0B,YAAW,aAAa,EAAE,SAAS;IA+B3D,SAAS,EAAE,kBAAkB;IACpC,OAAO,CAAC,KAAK;IACb,OAAO,CAAC,EAAE;IACV,OAAO,CAAC,GAAG;IACX,SAAS,CAAC,mBAAmB,EAAE,mBAAmB;IAChC,OAAO,CAAC,QAAQ;IAnCtC,IACI,UAAU,IAAI,MAAM,CAMvB;IACyB,IAAI,SAAY;IAEd,aAAa,EAAE,UAAU,CAAC;IACtD,oBAAoB,EAAE,YAAY,CAAC;IAEK,WAAW,UAAS;IACpB,gBAAgB,UAAS;IAEjE,IACI,SAAS,CAAC,KAAK,EAAE,OAAO,EAG3B;IAED,IAAI,SAAS,IAAI,OAAO,CAEvB;IACS,eAAe,qBAA4B;IAErD,OAAO,CAAC,UAAU,CAAQ;gBAGf,SAAS,EAAE,kBAAkB,EAC5B,KAAK,EAAE,UAAU,EACjB,EAAE,EAAE,iBAAiB,EACrB,GAAG,EAAE,eAAe,EAClB,mBAAmB,EAAE,mBAAmB,EACxB,QAAQ,EAAE,QAAQ;IAIhD,eAAe,IAAI,IAAI;IAQvB,WAAW,IAAI,IAAI;IASnB,YAAY,IAAI,IAAI;IAMpB,OAAO,CAAC,gBAAgB;yCA/Df,yBAAyB;2CAAzB,yBAAyB;0CAuE8txB,OAAQ;+CAAR,OAAQ;CAD3wxB"}
|
@@ -8,6 +8,7 @@ export declare class EuiAppComponent implements OnInit, OnDestroy, OnChanges, Af
|
|
8
8
|
euiGrowlService: EuiGrowlService;
|
9
9
|
private cdRef;
|
10
10
|
private platformId;
|
11
|
+
private document;
|
11
12
|
cssClasses: string;
|
12
13
|
appSubTitle: string;
|
13
14
|
themeClass: string;
|
@@ -20,7 +21,7 @@ export declare class EuiAppComponent implements OnInit, OnDestroy, OnChanges, Af
|
|
20
21
|
customPageWrapper: EuiAppPageWrapperDirective;
|
21
22
|
appToolbar: EuiAppToolbarComponent;
|
22
23
|
private destroy$;
|
23
|
-
constructor(asService: EuiAppShellService, euiGrowlService: EuiGrowlService, cdRef: ChangeDetectorRef, platformId: object);
|
24
|
+
constructor(asService: EuiAppShellService, euiGrowlService: EuiGrowlService, cdRef: ChangeDetectorRef, platformId: object, document: Document);
|
24
25
|
ngAfterContentInit(): void;
|
25
26
|
ngOnInit(): void;
|
26
27
|
ngOnChanges(changes: SimpleChanges): void;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"eui-app.component.d.ts","sourceRoot":"","sources":["../../../layout/eui-app/eui-app.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAKH,MAAM,EACN,SAAS,EAIT,SAAS,EACT,aAAa,EACb,iBAAiB,EACjB,gBAAgB,EAInB,MAAM,eAAe,CAAC;AAMvB,OAAO,EAAE,kBAAkB,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AAChE,OAAO,EAAE,sBAAsB,EAAE,MAAM,mBAAmB,CAAC;AAC3D,OAAO,EAAE,sBAAsB,EAAE,MAAM,mBAAmB,CAAC;;AAG3D,qBAMa,eAAgB,YAAW,MAAM,EAAE,SAAS,EAAE,SAAS,EAAE,gBAAgB;IA0BvE,SAAS,EAAE,kBAAkB;IAC7B,eAAe,EAAE,eAAe;IACvC,OAAO,CAAC,KAAK;IACQ,OAAO,CAAC,UAAU;
|
1
|
+
{"version":3,"file":"eui-app.component.d.ts","sourceRoot":"","sources":["../../../layout/eui-app/eui-app.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAKH,MAAM,EACN,SAAS,EAIT,SAAS,EACT,aAAa,EACb,iBAAiB,EACjB,gBAAgB,EAInB,MAAM,eAAe,CAAC;AAMvB,OAAO,EAAE,kBAAkB,EAAE,eAAe,EAAE,MAAM,WAAW,CAAC;AAChE,OAAO,EAAE,sBAAsB,EAAE,MAAM,mBAAmB,CAAC;AAC3D,OAAO,EAAE,sBAAsB,EAAE,MAAM,mBAAmB,CAAC;;AAG3D,qBAMa,eAAgB,YAAW,MAAM,EAAE,SAAS,EAAE,SAAS,EAAE,gBAAgB;IA0BvE,SAAS,EAAE,kBAAkB;IAC7B,eAAe,EAAE,eAAe;IACvC,OAAO,CAAC,KAAK;IACQ,OAAO,CAAC,UAAU;IACrB,OAAO,CAAC,QAAQ;IA7BhB,UAAU,SAAa;IAEpC,WAAW,SAAM;IACjB,UAAU,SAAM;IAEzB,gBAAgB,UAAS;IAEzB,YAAY,EAAE,OAAO,CAAC;IAEkB,aAAa,UAAQ;IACrB,oBAAoB,UAAQ;IAC5B,eAAe,UAAS;IAGhE,UAAU,EAAE,sBAAsB,CAAC;IAGnC,iBAAiB,EAAE,0BAA0B,CAAC;IAG9C,UAAU,EAAE,sBAAsB,CAAC;IAEnC,OAAO,CAAC,QAAQ,CAA4C;gBAGjD,SAAS,EAAE,kBAAkB,EAC7B,eAAe,EAAE,eAAe,EAC/B,KAAK,EAAE,iBAAiB,EACH,UAAU,EAAE,MAAM,EACrB,QAAQ,EAAE,QAAQ;IAGhD,kBAAkB,IAAI,IAAI;IAK1B,QAAQ,IAAI,IAAI;IA6ChB,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;IAezC,WAAW,IAAI,IAAI;yCAlGV,eAAe;2CAAf,eAAe;4CA4GmuvB,OAAQ;mDAAR,OAAQ;8CAAR,OAAQ;CANtwvB;AAGD,qBACa,0BAA0B;yCAA1B,0BAA0B;2CAA1B,0BAA0B;CAAI"}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@eui/components",
|
3
|
-
"version": "18.0.0-rc.
|
3
|
+
"version": "18.0.0-rc.35",
|
4
4
|
"tag": "next",
|
5
5
|
"description": "eUI components package",
|
6
6
|
"homepage": "https://eui.ecdevops.eu",
|
@@ -10,8 +10,8 @@
|
|
10
10
|
"url": "https://citnet.tech.ec.europa.eu/CITnet/stash/projects/CSDR/repos/eui"
|
11
11
|
},
|
12
12
|
"peerDependencies": {
|
13
|
-
"@eui/core": "18.0.0-rc.
|
14
|
-
"@eui/base": "18.0.0-rc.
|
13
|
+
"@eui/core": "18.0.0-rc.35",
|
14
|
+
"@eui/base": "18.0.0-rc.35",
|
15
15
|
"@angular/common": "^18.0.0",
|
16
16
|
"@angular/core": "^18.0.0",
|
17
17
|
"@angular/forms": "^18.0.0",
|