@eui/components 21.0.0-alpha.18 → 21.0.0-alpha.19
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/changelog.html +60 -0
- package/docs/components/EuiAppComponent.html +7 -3
- package/docs/components/EuiAppHeaderComponent.html +1 -1
- package/docs/components/EuiAppToolbarComponent.html +1 -1
- package/docs/js/search/search_index.js +2 -2
- package/docs/miscellaneous/variables.html +48 -506
- package/docs/properties.html +1 -1
- package/fesm2022/eui-components-layout.mjs +2358 -15
- package/fesm2022/eui-components-layout.mjs.map +1 -1
- package/fesm2022/eui-components.mjs +1 -146
- package/fesm2022/eui-components.mjs.map +1 -1
- package/index.d.ts +1 -69
- package/index.d.ts.map +1 -1
- package/layout/index.d.ts +743 -9
- package/layout/index.d.ts.map +1 -1
- package/package.json +28 -56
- package/fesm2022/eui-components-layout-eui-app.mjs +0 -841
- package/fesm2022/eui-components-layout-eui-app.mjs.map +0 -1
- package/fesm2022/eui-components-layout-eui-footer.mjs +0 -37
- package/fesm2022/eui-components-layout-eui-footer.mjs.map +0 -1
- package/fesm2022/eui-components-layout-eui-header.mjs +0 -420
- package/fesm2022/eui-components-layout-eui-header.mjs.map +0 -1
- package/fesm2022/eui-components-layout-eui-notifications-v2.mjs +0 -264
- package/fesm2022/eui-components-layout-eui-notifications-v2.mjs.map +0 -1
- package/fesm2022/eui-components-layout-eui-notifications.mjs +0 -277
- package/fesm2022/eui-components-layout-eui-notifications.mjs.map +0 -1
- package/fesm2022/eui-components-layout-eui-sidebar-toggle.mjs +0 -57
- package/fesm2022/eui-components-layout-eui-sidebar-toggle.mjs.map +0 -1
- package/fesm2022/eui-components-layout-eui-toolbar.mjs +0 -621
- package/fesm2022/eui-components-layout-eui-toolbar.mjs.map +0 -1
- package/layout/eui-app/index.d.ts +0 -259
- package/layout/eui-app/index.d.ts.map +0 -1
- package/layout/eui-app/package.json +0 -3
- package/layout/eui-footer/index.d.ts +0 -14
- package/layout/eui-footer/index.d.ts.map +0 -1
- package/layout/eui-footer/package.json +0 -3
- package/layout/eui-header/index.d.ts +0 -136
- package/layout/eui-header/index.d.ts.map +0 -1
- package/layout/eui-header/package.json +0 -3
- package/layout/eui-notifications/index.d.ts +0 -99
- package/layout/eui-notifications/index.d.ts.map +0 -1
- package/layout/eui-notifications/package.json +0 -3
- package/layout/eui-notifications-v2/index.d.ts +0 -88
- package/layout/eui-notifications-v2/index.d.ts.map +0 -1
- package/layout/eui-notifications-v2/package.json +0 -3
- package/layout/eui-sidebar-toggle/index.d.ts +0 -17
- package/layout/eui-sidebar-toggle/index.d.ts.map +0 -1
- package/layout/eui-sidebar-toggle/package.json +0 -3
- package/layout/eui-toolbar/index.d.ts +0 -193
- package/layout/eui-toolbar/index.d.ts.map +0 -1
- package/layout/eui-toolbar/package.json +0 -3
@@ -1,99 +0,0 @@
|
|
1
|
-
import * as i0 from '@angular/core';
|
2
|
-
import { EventEmitter, OnInit, OnChanges, SimpleChanges } from '@angular/core';
|
3
|
-
import { UxLinkLegacy } from '@eui/core';
|
4
|
-
import { UxLinkLegacy as UxLinkLegacy$1 } from '@eui/base';
|
5
|
-
|
6
|
-
interface NotificationMetadata {
|
7
|
-
read?: boolean;
|
8
|
-
urlExternal?: string;
|
9
|
-
urlExternalTarget?: string;
|
10
|
-
important?: boolean;
|
11
|
-
new?: boolean;
|
12
|
-
url?: string;
|
13
|
-
date?: Date | string | number;
|
14
|
-
}
|
15
|
-
declare class EuiNotificationItemComponent {
|
16
|
-
string: string;
|
17
|
-
itemClick: EventEmitter<UxLinkLegacy<NotificationMetadata>>;
|
18
|
-
itemMarkAsRead: EventEmitter<UxLinkLegacy<NotificationMetadata>>;
|
19
|
-
markAsReadLabel: string;
|
20
|
-
item: UxLinkLegacy<NotificationMetadata>;
|
21
|
-
dateFormat: string;
|
22
|
-
tooltipSize: string;
|
23
|
-
isShowMarkAsRead: boolean;
|
24
|
-
onItemClick(): void;
|
25
|
-
onItemMarkAsRead(event: Event): void;
|
26
|
-
get iconColor(): string;
|
27
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EuiNotificationItemComponent, never>;
|
28
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EuiNotificationItemComponent, "eui-notification-item", never, { "markAsReadLabel": { "alias": "markAsReadLabel"; "required": false; }; "item": { "alias": "item"; "required": false; }; "dateFormat": { "alias": "dateFormat"; "required": false; }; "isShowMarkAsRead": { "alias": "isShowMarkAsRead"; "required": false; }; }, { "itemClick": "itemClick"; "itemMarkAsRead": "itemMarkAsRead"; }, never, never, true, never>;
|
29
|
-
static ngAcceptInputType_isShowMarkAsRead: unknown;
|
30
|
-
}
|
31
|
-
|
32
|
-
declare class EuiNotificationsComponent implements OnInit, OnChanges {
|
33
|
-
refreshClick: EventEmitter<void>;
|
34
|
-
notificationsClick: EventEmitter<void>;
|
35
|
-
viewAllClick: EventEmitter<void>;
|
36
|
-
settingsClick: EventEmitter<MouseEvent>;
|
37
|
-
markAllAsReadClick: EventEmitter<MouseEvent>;
|
38
|
-
noNotificationFoundClick: EventEmitter<void>;
|
39
|
-
itemClick: EventEmitter<UxLinkLegacy$1<NotificationMetadata>>;
|
40
|
-
itemMarkAsReadClick: EventEmitter<UxLinkLegacy$1<NotificationMetadata>>;
|
41
|
-
isOverlayActive: boolean;
|
42
|
-
currentDayNotifications: any[];
|
43
|
-
oldestNotifications: any[];
|
44
|
-
unreadNotifications: any[];
|
45
|
-
today: Date;
|
46
|
-
string: string;
|
47
|
-
count: number;
|
48
|
-
items: any[];
|
49
|
-
unreadLabel: string;
|
50
|
-
totalLabel: string;
|
51
|
-
markAsReadLabel: string;
|
52
|
-
markAsUnReadLabel: string;
|
53
|
-
markAllAsReadLabel: string;
|
54
|
-
settingsLabel: string;
|
55
|
-
refreshLabel: string;
|
56
|
-
viewAllNotificationsLabel: string;
|
57
|
-
headerTitleLabel: string;
|
58
|
-
noNotificationFoundLabel: string;
|
59
|
-
nbUnreadCount: number;
|
60
|
-
dateFormat: string;
|
61
|
-
noNotificationFoundLink: boolean;
|
62
|
-
isShowMarkAsRead: boolean;
|
63
|
-
isShowViewAllAction: boolean;
|
64
|
-
isHidePanelOnViewAllAction: boolean;
|
65
|
-
customUnreadCount: boolean;
|
66
|
-
isShowMarkAllAsReadButton: boolean;
|
67
|
-
isShowSettingsButton: boolean;
|
68
|
-
isShowRefreshButton: boolean;
|
69
|
-
onClicked(event: MouseEvent | Event): void;
|
70
|
-
ngOnChanges(changes: SimpleChanges): void;
|
71
|
-
ngOnInit(): void;
|
72
|
-
onRefresh(event: Event): void;
|
73
|
-
onItemClick(link: UxLinkLegacy$1<NotificationMetadata>): void;
|
74
|
-
onViewAllClick(event: Event): void;
|
75
|
-
onNoNotificationFoundClick(): void;
|
76
|
-
onItemMarkAsRead(link: UxLinkLegacy$1<NotificationMetadata>): void;
|
77
|
-
onMarkAllAsRead(e: MouseEvent): void;
|
78
|
-
onSettings(e: MouseEvent): void;
|
79
|
-
protected trackByFn(index: number, item: UxLinkLegacy$1<NotificationMetadata>): string;
|
80
|
-
protected updateActiveState(isActive: boolean): void;
|
81
|
-
protected getAriaLabel(): string;
|
82
|
-
private _getUnreadCount;
|
83
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EuiNotificationsComponent, never>;
|
84
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EuiNotificationsComponent, "eui-notifications", never, { "count": { "alias": "count"; "required": false; }; "items": { "alias": "items"; "required": false; }; "unreadLabel": { "alias": "unreadLabel"; "required": false; }; "totalLabel": { "alias": "totalLabel"; "required": false; }; "markAsReadLabel": { "alias": "markAsReadLabel"; "required": false; }; "markAsUnReadLabel": { "alias": "markAsUnReadLabel"; "required": false; }; "markAllAsReadLabel": { "alias": "markAllAsReadLabel"; "required": false; }; "settingsLabel": { "alias": "settingsLabel"; "required": false; }; "refreshLabel": { "alias": "refreshLabel"; "required": false; }; "viewAllNotificationsLabel": { "alias": "viewAllNotificationsLabel"; "required": false; }; "headerTitleLabel": { "alias": "headerTitleLabel"; "required": false; }; "noNotificationFoundLabel": { "alias": "noNotificationFoundLabel"; "required": false; }; "nbUnreadCount": { "alias": "nbUnreadCount"; "required": false; }; "dateFormat": { "alias": "dateFormat"; "required": false; }; "noNotificationFoundLink": { "alias": "noNotificationFoundLink"; "required": false; }; "isShowMarkAsRead": { "alias": "isShowMarkAsRead"; "required": false; }; "isShowViewAllAction": { "alias": "isShowViewAllAction"; "required": false; }; "isHidePanelOnViewAllAction": { "alias": "isHidePanelOnViewAllAction"; "required": false; }; "customUnreadCount": { "alias": "customUnreadCount"; "required": false; }; "isShowMarkAllAsReadButton": { "alias": "isShowMarkAllAsReadButton"; "required": false; }; "isShowSettingsButton": { "alias": "isShowSettingsButton"; "required": false; }; "isShowRefreshButton": { "alias": "isShowRefreshButton"; "required": false; }; }, { "refreshClick": "refreshClick"; "notificationsClick": "notificationsClick"; "viewAllClick": "viewAllClick"; "settingsClick": "settingsClick"; "markAllAsReadClick": "markAllAsReadClick"; "noNotificationFoundClick": "noNotificationFoundClick"; "itemClick": "itemClick"; "itemMarkAsReadClick": "itemMarkAsReadClick"; }, never, never, true, never>;
|
85
|
-
static ngAcceptInputType_noNotificationFoundLink: unknown;
|
86
|
-
static ngAcceptInputType_isShowMarkAsRead: unknown;
|
87
|
-
static ngAcceptInputType_isShowViewAllAction: unknown;
|
88
|
-
static ngAcceptInputType_isHidePanelOnViewAllAction: unknown;
|
89
|
-
static ngAcceptInputType_customUnreadCount: unknown;
|
90
|
-
static ngAcceptInputType_isShowMarkAllAsReadButton: unknown;
|
91
|
-
static ngAcceptInputType_isShowSettingsButton: unknown;
|
92
|
-
static ngAcceptInputType_isShowRefreshButton: unknown;
|
93
|
-
}
|
94
|
-
|
95
|
-
declare const EUI_NOTIFICATIONS: readonly [typeof EuiNotificationsComponent, typeof EuiNotificationItemComponent];
|
96
|
-
|
97
|
-
export { EUI_NOTIFICATIONS, EuiNotificationItemComponent, EuiNotificationsComponent };
|
98
|
-
export type { NotificationMetadata };
|
99
|
-
//# sourceMappingURL=index.d.ts.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sources":["../../../layout/eui-notifications/eui-notification-item.component.ts","../../../layout/eui-notifications/eui-notifications.component.ts","../../../layout/eui-notifications/index.ts"],"sourcesContent":[null,null,null],"names":[],"mappings":";;;;;;;;;;;;AAeI;AACH;AAED;AAY0B;;;;AAIb;AACA;AACT;AACuC;AAEvC;AAIA;;;;;AAYH;;AChCD;AAiBc;AACA;AACA;AACA;AACA;AACA;;;AAIV;AACA;AACA;AACA;;AAGsB;;AAGb;;;;;;;;;;;;AAYA;AAC+B;AACA;AACA;AACD;AACC;AACA;AACA;AACA;AAExC;AAMA;AASA;AAMA;;AAUA;AAOA;;AAQA;AAKA;AAKA;AAIA;;AAaA;;;;;;;;;;;AASH;;AC5JD;;;"}
|
@@ -1,88 +0,0 @@
|
|
1
|
-
import * as i0 from '@angular/core';
|
2
|
-
import { EventEmitter } from '@angular/core';
|
3
|
-
import { UxLinkLegacy } from '@eui/core';
|
4
|
-
import { NotificationMetadata } from '@eui/components/layout/eui-notifications';
|
5
|
-
|
6
|
-
declare class EuiNotificationItemV2Component {
|
7
|
-
string: string;
|
8
|
-
itemClick: EventEmitter<UxLinkLegacy>;
|
9
|
-
itemMarkAsRead: EventEmitter<UxLinkLegacy>;
|
10
|
-
markAsReadLabel: string;
|
11
|
-
item: UxLinkLegacy<NotificationMetadata>;
|
12
|
-
dateFormat: string;
|
13
|
-
tooltipSize: string;
|
14
|
-
isShowMarkAsRead: boolean;
|
15
|
-
get iconColor(): string;
|
16
|
-
onItemClick(): void;
|
17
|
-
onItemMarkAsRead(event: Event): void;
|
18
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EuiNotificationItemV2Component, never>;
|
19
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EuiNotificationItemV2Component, "eui-notification-item-v2", never, { "markAsReadLabel": { "alias": "markAsReadLabel"; "required": false; }; "item": { "alias": "item"; "required": false; }; "dateFormat": { "alias": "dateFormat"; "required": false; }; "isShowMarkAsRead": { "alias": "isShowMarkAsRead"; "required": false; }; }, { "itemClick": "itemClick"; "itemMarkAsRead": "itemMarkAsRead"; }, never, never, true, never>;
|
20
|
-
static ngAcceptInputType_isShowMarkAsRead: unknown;
|
21
|
-
}
|
22
|
-
|
23
|
-
declare class EuiNotificationsV2Component {
|
24
|
-
refreshClick: EventEmitter<Event>;
|
25
|
-
notificationsClick: EventEmitter<KeyboardEvent | MouseEvent>;
|
26
|
-
viewAllClick: EventEmitter<Event>;
|
27
|
-
markAllAsReadClick: EventEmitter<MouseEvent>;
|
28
|
-
noNotificationFoundClick: EventEmitter<void>;
|
29
|
-
itemClick: EventEmitter<UxLinkLegacy>;
|
30
|
-
itemMarkAsReadClick: EventEmitter<UxLinkLegacy>;
|
31
|
-
isOverlayActive: boolean;
|
32
|
-
currentDayNotifications: any[];
|
33
|
-
oldestNotifications: any[];
|
34
|
-
unreadNotifications: any[];
|
35
|
-
today: Date;
|
36
|
-
string: string;
|
37
|
-
count: number;
|
38
|
-
unreadCount: number;
|
39
|
-
unreadSinceLastCheckCount: number;
|
40
|
-
items: any[];
|
41
|
-
unreadLabel: string;
|
42
|
-
totalLabel: string;
|
43
|
-
markAsReadLabel: string;
|
44
|
-
markAsUnReadLabel: string;
|
45
|
-
markAllAsReadLabel: string;
|
46
|
-
settingsLabel: string;
|
47
|
-
refreshLabel: string;
|
48
|
-
viewAllNotificationsLabel: string;
|
49
|
-
headerTitleLabel: string;
|
50
|
-
headerHideLabel: string;
|
51
|
-
headerUnreadSinceLastCheckCountLabel: string;
|
52
|
-
headerUnreadCountLabel: string;
|
53
|
-
noNotificationFoundLabel: string;
|
54
|
-
dateFormat: string;
|
55
|
-
noNotificationFoundLink: boolean;
|
56
|
-
isShowMarkAsRead: boolean;
|
57
|
-
isShowViewAllAction: boolean;
|
58
|
-
isHidePanelOnViewAllAction: boolean;
|
59
|
-
isShowMarkAllAsReadButton: boolean;
|
60
|
-
isShowSettingsButton: boolean;
|
61
|
-
isShowRefreshButton: boolean;
|
62
|
-
get isShowUnreadSinceLastCheckCount(): boolean;
|
63
|
-
onHide(): void;
|
64
|
-
onClicked(event: Event): void;
|
65
|
-
onRefresh(event: Event): void;
|
66
|
-
onItemClick(link: UxLinkLegacy): void;
|
67
|
-
onViewAllClick(event: Event): void;
|
68
|
-
onNoNotificationFoundClick(): void;
|
69
|
-
onItemMarkAsRead(link: UxLinkLegacy): void;
|
70
|
-
onMarkAllAsRead(e: MouseEvent): void;
|
71
|
-
trackByFn(index: number, item: any): void;
|
72
|
-
protected updateActiveState(isActive: boolean): void;
|
73
|
-
protected getAriaLabel(): string;
|
74
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EuiNotificationsV2Component, never>;
|
75
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EuiNotificationsV2Component, "eui-notifications-v2", never, { "count": { "alias": "count"; "required": false; }; "unreadCount": { "alias": "unreadCount"; "required": false; }; "unreadSinceLastCheckCount": { "alias": "unreadSinceLastCheckCount"; "required": false; }; "items": { "alias": "items"; "required": false; }; "unreadLabel": { "alias": "unreadLabel"; "required": false; }; "totalLabel": { "alias": "totalLabel"; "required": false; }; "markAsReadLabel": { "alias": "markAsReadLabel"; "required": false; }; "markAsUnReadLabel": { "alias": "markAsUnReadLabel"; "required": false; }; "markAllAsReadLabel": { "alias": "markAllAsReadLabel"; "required": false; }; "settingsLabel": { "alias": "settingsLabel"; "required": false; }; "refreshLabel": { "alias": "refreshLabel"; "required": false; }; "viewAllNotificationsLabel": { "alias": "viewAllNotificationsLabel"; "required": false; }; "headerTitleLabel": { "alias": "headerTitleLabel"; "required": false; }; "headerHideLabel": { "alias": "headerHideLabel"; "required": false; }; "headerUnreadSinceLastCheckCountLabel": { "alias": "headerUnreadSinceLastCheckCountLabel"; "required": false; }; "headerUnreadCountLabel": { "alias": "headerUnreadCountLabel"; "required": false; }; "noNotificationFoundLabel": { "alias": "noNotificationFoundLabel"; "required": false; }; "dateFormat": { "alias": "dateFormat"; "required": false; }; "noNotificationFoundLink": { "alias": "noNotificationFoundLink"; "required": false; }; "isShowMarkAsRead": { "alias": "isShowMarkAsRead"; "required": false; }; "isShowViewAllAction": { "alias": "isShowViewAllAction"; "required": false; }; "isHidePanelOnViewAllAction": { "alias": "isHidePanelOnViewAllAction"; "required": false; }; "isShowMarkAllAsReadButton": { "alias": "isShowMarkAllAsReadButton"; "required": false; }; "isShowSettingsButton": { "alias": "isShowSettingsButton"; "required": false; }; "isShowRefreshButton": { "alias": "isShowRefreshButton"; "required": false; }; }, { "refreshClick": "refreshClick"; "notificationsClick": "notificationsClick"; "viewAllClick": "viewAllClick"; "markAllAsReadClick": "markAllAsReadClick"; "noNotificationFoundClick": "noNotificationFoundClick"; "itemClick": "itemClick"; "itemMarkAsReadClick": "itemMarkAsReadClick"; }, never, never, true, never>;
|
76
|
-
static ngAcceptInputType_noNotificationFoundLink: unknown;
|
77
|
-
static ngAcceptInputType_isShowMarkAsRead: unknown;
|
78
|
-
static ngAcceptInputType_isShowViewAllAction: unknown;
|
79
|
-
static ngAcceptInputType_isHidePanelOnViewAllAction: unknown;
|
80
|
-
static ngAcceptInputType_isShowMarkAllAsReadButton: unknown;
|
81
|
-
static ngAcceptInputType_isShowSettingsButton: unknown;
|
82
|
-
static ngAcceptInputType_isShowRefreshButton: unknown;
|
83
|
-
}
|
84
|
-
|
85
|
-
declare const EUI_NOTIFICATIONS_V2: readonly [typeof EuiNotificationsV2Component, typeof EuiNotificationItemV2Component];
|
86
|
-
|
87
|
-
export { EUI_NOTIFICATIONS_V2, EuiNotificationItemV2Component, EuiNotificationsV2Component };
|
88
|
-
//# sourceMappingURL=index.d.ts.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sources":["../../../layout/eui-notifications-v2/eui-notification-item.component.ts","../../../layout/eui-notifications-v2/eui-notifications.component.ts","../../../layout/eui-notifications-v2/index.ts"],"sourcesContent":[null,null,null],"names":[],"mappings":";;;;;AASA,cAAA,8BAAA;AAY0B;AACZ,eAAA,YAAA,CAAA,YAAA;AACA,oBAAA,YAAA,CAAA,YAAA;;AAED,UAAA,YAAA,CAAA,oBAAA;AACA;AACT;AACwC;;AAMxC;AAIA,4BAAA,KAAA;;;;AAOH;;AC1BD,cAAA,2BAAA;AAiBc,kBAAA,YAAA,CAAA,KAAA;AACA,wBAAA,YAAA,CAAA,aAAA,GAAA,UAAA;AACA,kBAAA,YAAA,CAAA,KAAA;AAEA,wBAAA,YAAA,CAAA,UAAA;AACA,8BAAA,YAAA;AACA,eAAA,YAAA,CAAA,YAAA;AACA,yBAAA,YAAA,CAAA,YAAA;AAEV;AACA;AACA;AACA;;AAGsB;;;;AAKb;;;;;;;;;;;;;;AAcA;AAC+B;AACA;AACA;AACA;AACA;AACA;AACA;;AAMxC;AAIA,qBAAA,KAAA;AAMA,qBAAA,KAAA;AAKA,sBAAA,YAAA;AAKA,0BAAA,KAAA;AAOA;AAIA,2BAAA,YAAA;AAIA,uBAAA,UAAA;;AAWA;;;;;;;;;;;AAYH;;ACvID,cAAA,oBAAA,mBAAA,2BAAA,SAAA,8BAAA;;;;"}
|
@@ -1,17 +0,0 @@
|
|
1
|
-
import { EuiAppShellService } from '@eui/core';
|
2
|
-
import * as i0 from '@angular/core';
|
3
|
-
|
4
|
-
declare class EuiSidebarToggleComponent {
|
5
|
-
e2eAttr: string;
|
6
|
-
name: string;
|
7
|
-
iconSvgFillColor: any;
|
8
|
-
asService: EuiAppShellService;
|
9
|
-
onToggleSidebar(event: Event): void;
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EuiSidebarToggleComponent, never>;
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EuiSidebarToggleComponent, "eui-sidebar-toggle", never, { "e2eAttr": { "alias": "e2eAttr"; "required": false; }; "iconSvgFillColor": { "alias": "iconSvgFillColor"; "required": false; }; }, {}, never, never, true, never>;
|
12
|
-
}
|
13
|
-
|
14
|
-
declare const EUI_SIDEBAR_TOGGLE: readonly [typeof EuiSidebarToggleComponent];
|
15
|
-
|
16
|
-
export { EUI_SIDEBAR_TOGGLE, EuiSidebarToggleComponent };
|
17
|
-
//# sourceMappingURL=index.d.ts.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sources":["../../../layout/eui-sidebar-toggle/sidebar-toggle.component.ts","../../../layout/eui-sidebar-toggle/index.ts"],"sourcesContent":[null,null],"names":[],"mappings":";;;AAKA,cAAA,yBAAA;AAU2C;AACjB;AAEb;AACT,eAAA,kBAAA;AAEA,2BAAA,KAAA;;;AAYH;;AC7BD,cAAA,kBAAA,mBAAA,yBAAA;;;;"}
|
@@ -1,193 +0,0 @@
|
|
1
|
-
import * as i0 from '@angular/core';
|
2
|
-
import { OnInit, OnDestroy, OnChanges, SimpleChanges, AfterContentInit, AfterViewInit, EventEmitter, QueryList, TemplateRef } from '@angular/core';
|
3
|
-
import { EuiMenuItem, EuiAppShellService } from '@eui/core';
|
4
|
-
import { EuiAutoCompleteItem } from '@eui/components/eui-autocomplete';
|
5
|
-
import { EuiTemplateDirective } from '@eui/components/directives';
|
6
|
-
|
7
|
-
declare class EuiToolbarAppComponent {
|
8
|
-
class: string;
|
9
|
-
appName: string;
|
10
|
-
appSubTitle: string;
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EuiToolbarAppComponent, never>;
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EuiToolbarAppComponent, "eui-toolbar-app", never, { "appName": { "alias": "appName"; "required": false; }; "appSubTitle": { "alias": "appSubTitle"; "required": false; }; }, {}, never, never, true, never>;
|
13
|
-
}
|
14
|
-
|
15
|
-
declare class EuiToolbarCenterComponent {
|
16
|
-
string: string;
|
17
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EuiToolbarCenterComponent, never>;
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EuiToolbarCenterComponent, "eui-toolbar-center", never, {}, {}, never, ["*"], true, never>;
|
19
|
-
}
|
20
|
-
|
21
|
-
declare class EuiToolbarEnvironmentComponent {
|
22
|
-
class: string;
|
23
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EuiToolbarEnvironmentComponent, never>;
|
24
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EuiToolbarEnvironmentComponent, "eui-toolbar-environment", never, {}, {}, never, ["*"], true, never>;
|
25
|
-
}
|
26
|
-
|
27
|
-
declare class EuiToolbarItemComponent {
|
28
|
-
string: string;
|
29
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EuiToolbarItemComponent, never>;
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EuiToolbarItemComponent, "eui-toolbar-item", never, {}, {}, never, ["*"], true, never>;
|
31
|
-
}
|
32
|
-
|
33
|
-
declare class EuiToolbarItemsComponent {
|
34
|
-
get cssClasses(): string;
|
35
|
-
euiEnd: boolean;
|
36
|
-
euiPositionRight: boolean;
|
37
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EuiToolbarItemsComponent, never>;
|
38
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EuiToolbarItemsComponent, "eui-toolbar-items", never, { "euiEnd": { "alias": "euiEnd"; "required": false; }; "euiPositionRight": { "alias": "euiPositionRight"; "required": false; }; }, {}, never, ["*"], true, never>;
|
39
|
-
static ngAcceptInputType_euiEnd: unknown;
|
40
|
-
static ngAcceptInputType_euiPositionRight: unknown;
|
41
|
-
}
|
42
|
-
|
43
|
-
declare class EuiToolbarLogoComponent implements OnInit {
|
44
|
-
class: string;
|
45
|
-
homeUrl: string;
|
46
|
-
logoUrl: string;
|
47
|
-
logoHeight: string;
|
48
|
-
logoWidth: string;
|
49
|
-
protected logoUrlGenerated: any;
|
50
|
-
protected logoStyle: any;
|
51
|
-
private router;
|
52
|
-
private config;
|
53
|
-
onClick(): void;
|
54
|
-
ngOnInit(): void;
|
55
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EuiToolbarLogoComponent, never>;
|
56
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EuiToolbarLogoComponent, "eui-toolbar-logo", never, { "homeUrl": { "alias": "homeUrl"; "required": false; }; "logoUrl": { "alias": "logoUrl"; "required": false; }; "logoHeight": { "alias": "logoHeight"; "required": false; }; "logoWidth": { "alias": "logoWidth"; "required": false; }; }, {}, never, never, true, never>;
|
57
|
-
}
|
58
|
-
|
59
|
-
declare class EuiToolbarMegaMenuComponent<Items = EuiMenuItem> implements OnInit, OnDestroy, OnChanges {
|
60
|
-
string: string;
|
61
|
-
role: string;
|
62
|
-
items: Items[];
|
63
|
-
protected megaMenuItems: Items[];
|
64
|
-
protected megaMenuItemsGrouped: {
|
65
|
-
[parentIndex: number]: {
|
66
|
-
[colIndex: string]: {
|
67
|
-
[colLabel: string]: Items[];
|
68
|
-
};
|
69
|
-
};
|
70
|
-
};
|
71
|
-
protected activeMenu: number;
|
72
|
-
private asService;
|
73
|
-
private document;
|
74
|
-
private subs;
|
75
|
-
constructor();
|
76
|
-
ngOnInit(): void;
|
77
|
-
ngOnChanges(changes: SimpleChanges): void;
|
78
|
-
ngOnDestroy(): void;
|
79
|
-
closeMenu(): void;
|
80
|
-
openMenu(menuIndex: number): void;
|
81
|
-
groupByColIdPerParent(items: Items[]): {
|
82
|
-
[parentIndex: number]: {
|
83
|
-
[colIndex: string]: {
|
84
|
-
[colLabel: string]: Items[];
|
85
|
-
};
|
86
|
-
};
|
87
|
-
};
|
88
|
-
private filterMegaMenuItems;
|
89
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EuiToolbarMegaMenuComponent<any>, never>;
|
90
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EuiToolbarMegaMenuComponent<any>, "eui-toolbar-mega-menu", never, { "items": { "alias": "items"; "required": false; }; }, {}, never, never, true, never>;
|
91
|
-
}
|
92
|
-
|
93
|
-
declare class EuiToolbarNavbarComponent implements AfterContentInit, AfterViewInit {
|
94
|
-
class: string;
|
95
|
-
itemClick: EventEmitter<string>;
|
96
|
-
items: QueryList<EuiToolbarNavbarItemComponent>;
|
97
|
-
asService: EuiAppShellService;
|
98
|
-
baseItemSelected: EuiToolbarNavbarItemComponent;
|
99
|
-
isDropdownView: boolean;
|
100
|
-
private elementRef;
|
101
|
-
ngAfterContentInit(): void;
|
102
|
-
ngAfterViewInit(): void;
|
103
|
-
itemSelected(id: string): void;
|
104
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EuiToolbarNavbarComponent, never>;
|
105
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EuiToolbarNavbarComponent, "eui-toolbar-navbar", never, {}, { "itemClick": "itemClick"; }, ["items"], ["*"], true, never>;
|
106
|
-
}
|
107
|
-
|
108
|
-
declare class EuiToolbarNavbarItemComponent {
|
109
|
-
get cssClasses(): string;
|
110
|
-
tabindex: number;
|
111
|
-
id: string;
|
112
|
-
label: string;
|
113
|
-
isActive: boolean;
|
114
|
-
navBarComponentParent: EuiToolbarNavbarComponent;
|
115
|
-
constructor();
|
116
|
-
protected onClick(): void;
|
117
|
-
protected onKeydown(event: KeyboardEvent): void;
|
118
|
-
private _click;
|
119
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EuiToolbarNavbarItemComponent, never>;
|
120
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EuiToolbarNavbarItemComponent, "eui-toolbar-navbar-item", never, { "id": { "alias": "id"; "required": false; }; "label": { "alias": "label"; "required": false; }; "isActive": { "alias": "isActive"; "required": false; }; }, {}, never, never, true, never>;
|
121
|
-
static ngAcceptInputType_isActive: unknown;
|
122
|
-
}
|
123
|
-
|
124
|
-
declare class EuiToolbarSearchComponent implements AfterViewInit, AfterContentInit {
|
125
|
-
get cssClasses(): string;
|
126
|
-
isInputFocus: boolean;
|
127
|
-
searchTerm: string;
|
128
|
-
searchInput: string;
|
129
|
-
resultItemTemplate: TemplateRef<{
|
130
|
-
$implicit: EuiAutoCompleteItem;
|
131
|
-
}>;
|
132
|
-
placeholderLabel: string;
|
133
|
-
panelWidth: string;
|
134
|
-
searchResults: EuiAutoCompleteItem[];
|
135
|
-
isAutocomplete: boolean;
|
136
|
-
isInputText: boolean;
|
137
|
-
hasSearchButton: boolean;
|
138
|
-
hasExpandAnimation: boolean;
|
139
|
-
search: EventEmitter<string>;
|
140
|
-
selectionChange: EventEmitter<EuiAutoCompleteItem[]>;
|
141
|
-
searchClick: EventEmitter<string>;
|
142
|
-
inputFocus: EventEmitter<Event>;
|
143
|
-
inputBlur: EventEmitter<Event>;
|
144
|
-
templates: QueryList<EuiTemplateDirective>;
|
145
|
-
protected asService: EuiAppShellService;
|
146
|
-
ngAfterContentInit(): void;
|
147
|
-
ngAfterViewInit(): void;
|
148
|
-
onSelectionChange(items: EuiAutoCompleteItem[]): void;
|
149
|
-
onInputFocus(): void;
|
150
|
-
onInputBlur(): void;
|
151
|
-
onSearch(e: string): void;
|
152
|
-
onSearchInput(e: KeyboardEvent): void;
|
153
|
-
onSearchClick(isIconOnly: boolean): void;
|
154
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EuiToolbarSearchComponent, never>;
|
155
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EuiToolbarSearchComponent, "eui-toolbar-search", never, { "placeholderLabel": { "alias": "placeholderLabel"; "required": false; }; "panelWidth": { "alias": "panelWidth"; "required": false; }; "searchResults": { "alias": "searchResults"; "required": false; }; "isAutocomplete": { "alias": "isAutocomplete"; "required": false; }; "isInputText": { "alias": "isInputText"; "required": false; }; "hasSearchButton": { "alias": "hasSearchButton"; "required": false; }; "hasExpandAnimation": { "alias": "hasExpandAnimation"; "required": false; }; }, { "search": "search"; "selectionChange": "selectionChange"; "searchClick": "searchClick"; "inputFocus": "inputFocus"; "inputBlur": "inputBlur"; }, ["templates"], never, true, never>;
|
156
|
-
static ngAcceptInputType_isAutocomplete: unknown;
|
157
|
-
static ngAcceptInputType_isInputText: unknown;
|
158
|
-
static ngAcceptInputType_hasSearchButton: unknown;
|
159
|
-
static ngAcceptInputType_hasExpandAnimation: unknown;
|
160
|
-
}
|
161
|
-
|
162
|
-
declare class EuiToolbarSelectorComponent {
|
163
|
-
class: string;
|
164
|
-
label: string;
|
165
|
-
iconSvgName: string;
|
166
|
-
euiDisabled: boolean;
|
167
|
-
selectorClick: EventEmitter<boolean>;
|
168
|
-
protected asService: EuiAppShellService;
|
169
|
-
onClick(): void;
|
170
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EuiToolbarSelectorComponent, never>;
|
171
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EuiToolbarSelectorComponent, "eui-toolbar-selector", never, { "label": { "alias": "label"; "required": false; }; "iconSvgName": { "alias": "iconSvgName"; "required": false; }; "euiDisabled": { "alias": "euiDisabled"; "required": false; }; }, { "selectorClick": "selectorClick"; }, never, never, true, never>;
|
172
|
-
static ngAcceptInputType_euiDisabled: unknown;
|
173
|
-
}
|
174
|
-
|
175
|
-
declare class EuiToolbarComponent implements OnInit, AfterViewInit {
|
176
|
-
get cssClasses(): string;
|
177
|
-
euiSecondary: boolean;
|
178
|
-
euiPrimary: boolean;
|
179
|
-
hasMegaMenu: EuiToolbarMegaMenuComponent;
|
180
|
-
asService: EuiAppShellService;
|
181
|
-
private elRef;
|
182
|
-
ngOnInit(): void;
|
183
|
-
ngAfterViewInit(): void;
|
184
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EuiToolbarComponent, never>;
|
185
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EuiToolbarComponent, "eui-toolbar", never, { "euiSecondary": { "alias": "euiSecondary"; "required": false; }; "euiPrimary": { "alias": "euiPrimary"; "required": false; }; }, {}, ["hasMegaMenu"], ["eui-toolbar-logo", "eui-toolbar-app", "eui-toolbar-environment", "eui-toolbar-center", "eui-toolbar-items", "eui-toolbar-navbar", "eui-toolbar-mega-menu", "eui-language-selector"], true, never>;
|
186
|
-
static ngAcceptInputType_euiSecondary: unknown;
|
187
|
-
static ngAcceptInputType_euiPrimary: unknown;
|
188
|
-
}
|
189
|
-
|
190
|
-
declare const EUI_TOOLBAR: readonly [typeof EuiToolbarComponent, typeof EuiToolbarAppComponent, typeof EuiToolbarEnvironmentComponent, typeof EuiToolbarItemsComponent, typeof EuiToolbarItemComponent, typeof EuiToolbarCenterComponent, typeof EuiToolbarLogoComponent, typeof EuiToolbarSelectorComponent, typeof EuiToolbarNavbarComponent, typeof EuiToolbarNavbarItemComponent, typeof EuiToolbarSearchComponent, typeof EuiToolbarMegaMenuComponent];
|
191
|
-
|
192
|
-
export { EUI_TOOLBAR, EuiToolbarAppComponent, EuiToolbarCenterComponent, EuiToolbarComponent, EuiToolbarEnvironmentComponent, EuiToolbarItemComponent, EuiToolbarItemsComponent, EuiToolbarLogoComponent, EuiToolbarMegaMenuComponent, EuiToolbarNavbarComponent, EuiToolbarNavbarItemComponent, EuiToolbarSearchComponent, EuiToolbarSelectorComponent };
|
193
|
-
//# sourceMappingURL=index.d.ts.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sources":["../../../layout/eui-toolbar/toolbar-app/toolbar-app.component.ts","../../../layout/eui-toolbar/toolbar-center/toolbar-center.component.ts","../../../layout/eui-toolbar/toolbar-environment/toolbar-environment.component.ts","../../../layout/eui-toolbar/toolbar-item/toolbar-item.component.ts","../../../layout/eui-toolbar/toolbar-items/toolbar-items.component.ts","../../../layout/eui-toolbar/toolbar-logo/toolbar-logo.component.ts","../../../layout/eui-toolbar/toolbar-mega-menu/toolbar-mega-menu.component.ts","../../../layout/eui-toolbar/toolbar-navbar/toolbar-navbar.component.ts","../../../layout/eui-toolbar/toolbar-navbar-item/toolbar-navbar-item.component.ts","../../../layout/eui-toolbar/toolbar-search/toolbar-search.component.ts","../../../layout/eui-toolbar/toolbar-selector/toolbar-selector.component.ts","../../../layout/eui-toolbar/toolbar.component.ts","../../../layout/eui-toolbar/index.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,null,null,null,null,null],"names":[],"mappings":";;;;;;AAEA,cAAA,sBAAA;AAMmB;;;;;AAIlB;;ACVD,cAAA,yBAAA;AAK0B;;;AACzB;;ACND,cAAA,8BAAA;AAMmB;;;AAClB;;ACPD,cAAA,uBAAA;AAK0B;;;AACzB;;ACND,cAAA,wBAAA;;AAe4C;AACA;;;;;AAC3C;;ACfD,cAAA,uBAAA,YAAA,MAAA;AAOmB;AAEN;;AAEA;AACA;;;;;AAQT;AAIA;;;AAcH;;ACjCD,cAAA,2BAAA,SAAA,WAAA,aAAA,MAAA,EAAA,SAAA,EAAA,SAAA;AAS0B;AACI;;AAI1B;;;;AACiF;;;;AACjF;;;;;AAUA;AAcA,yBAAA,aAAA;AASA;AAQA;AAIA;AAIA;;;AAAwF;;;AAAiC;AA2BzH;;;AAWH;;AC1FD,cAAA,yBAAA,YAAA,gBAAA,EAAA,aAAA;AAcmB;AAEL,eAAA,YAAA;AAEwD,WAAA,SAAA,CAAA,6BAAA;AAElE,eAAA,kBAAA;;AAEO;;AAGP;AAIA;AAaO;;;AAUV;;AC/DD,cAAA,6BAAA;;AAckC;;;AAIU;;;;AAgBxC,+BAAA,aAAA;AAWA;;;;AAGH;;AChCD,cAAA,yBAAA,YAAA,aAAA,EAAA,gBAAA;;AA8BI;;AAEA;;;AAEyE;;AAGhE;;AAG+B;AACA;AACA;AACA;AAG9B,YAAA,YAAA;AACA,qBAAA,YAAA,CAAA,mBAAA;AACA,iBAAA,YAAA;AACA,gBAAA,YAAA,CAAA,KAAA;AACA,eAAA,YAAA,CAAA,KAAA;AAE6B,eAAA,SAAA,CAAA,oBAAA;;AAGvC;AAcA;AAQA,6BAAA,mBAAA;AAIA;AAKA;AAOA;AAKA,qBAAA,aAAA;AAOA;;;;;;;AAUH;;AC7HD,cAAA,2BAAA;AAcmB;;;AAKyB;AAE9B,mBAAA,YAAA;;AAGV;;;;AAGH;;ACnBD,cAAA,mBAAA,YAAA,MAAA,EAAA,aAAA;;AA0B4C;AACA;;AAKxC,eAAA,kBAAA;;AAGA;AAMA;;;;;AASH;;ACjDD,cAAA,WAAA,mBAAA,mBAAA,SAAA,sBAAA,SAAA,8BAAA,SAAA,wBAAA,SAAA,uBAAA,SAAA,yBAAA,SAAA,uBAAA,SAAA,2BAAA,SAAA,yBAAA,SAAA,6BAAA,SAAA,yBAAA,SAAA,2BAAA;;;;"}
|