@eui/showcase 23.0.0-alpha.5 → 23.0.0-alpha.7
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/fesm2022/eui-showcase.mjs +638 -858
- package/fesm2022/eui-showcase.mjs.map +1 -1
- package/package.json +3 -3
- package/types/eui-showcase.d.ts +304 -286
- package/types/eui-showcase.d.ts.map +1 -1
package/types/eui-showcase.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import { Signal,
|
|
3
|
-
import { SafeResourceUrl
|
|
1
|
+
import * as _angular_core from '@angular/core';
|
|
2
|
+
import { Signal, OnInit, AfterViewInit } from '@angular/core';
|
|
3
|
+
import { SafeResourceUrl } from '@angular/platform-browser';
|
|
4
4
|
import { EuiTabComponent, EuiTabsComponent } from '@eui/components/eui-tabs';
|
|
5
|
+
import { EuiMenuItem } from '@eui/base';
|
|
5
6
|
import { EuiAppShellService } from '@eui/core';
|
|
6
7
|
import { EuiDialogComponent } from '@eui/components/eui-dialog';
|
|
7
8
|
import { ProjectDependencies } from '@stackblitz/sdk';
|
|
@@ -44,22 +45,21 @@ declare class ConfigurationService<T extends Configuration> {
|
|
|
44
45
|
* returns the configuration state as a readonly signal
|
|
45
46
|
*/
|
|
46
47
|
get configuration(): Signal<T>;
|
|
47
|
-
static ɵfac:
|
|
48
|
-
static ɵprov:
|
|
48
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ConfigurationService<any>, never>;
|
|
49
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ConfigurationService<any>>;
|
|
49
50
|
}
|
|
50
51
|
|
|
51
52
|
declare class DocPageCodeComponent {
|
|
52
|
-
codeFolder: string
|
|
53
|
-
showcase: string
|
|
53
|
+
readonly codeFolder: _angular_core.InputSignal<string>;
|
|
54
|
+
readonly showcase: _angular_core.InputSignal<string>;
|
|
54
55
|
onOpenCode(): void;
|
|
55
|
-
static ɵfac:
|
|
56
|
-
static ɵcmp:
|
|
56
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageCodeComponent, never>;
|
|
57
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DocPageCodeComponent, "eui-showcase-doc-page-code", never, { "codeFolder": { "alias": "codeFolder"; "required": false; "isSignal": true; }; "showcase": { "alias": "showcase"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
57
58
|
}
|
|
58
59
|
|
|
59
|
-
declare class DocPageDevGuideComponent implements
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
showcaseName: string;
|
|
60
|
+
declare class DocPageDevGuideComponent implements OnInit, AfterViewInit {
|
|
61
|
+
readonly rootDocsFolder: _angular_core.InputSignal<string>;
|
|
62
|
+
readonly showcaseName: _angular_core.InputSignal<string>;
|
|
63
63
|
markdown: string;
|
|
64
64
|
isFirst: boolean;
|
|
65
65
|
headers: Array<{
|
|
@@ -68,26 +68,24 @@ declare class DocPageDevGuideComponent implements OnDestroy, OnInit, AfterViewIn
|
|
|
68
68
|
level: number;
|
|
69
69
|
}>;
|
|
70
70
|
fragmentId: string;
|
|
71
|
-
private subscription;
|
|
72
71
|
private markdownService;
|
|
73
72
|
private http;
|
|
74
73
|
private router;
|
|
75
74
|
private route;
|
|
76
75
|
private cdRef;
|
|
76
|
+
constructor();
|
|
77
77
|
ngOnInit(): void;
|
|
78
78
|
ngAfterViewInit(): void;
|
|
79
|
-
ngOnDestroy(): void;
|
|
80
79
|
onNavClick(fragmentId: string): void;
|
|
81
80
|
private _loadMdContent;
|
|
82
81
|
private _scrollToFragment;
|
|
83
|
-
static ɵfac:
|
|
84
|
-
static ɵcmp:
|
|
82
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageDevGuideComponent, never>;
|
|
83
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DocPageDevGuideComponent, "eui-showcase-doc-page-dev-guide", never, { "rootDocsFolder": { "alias": "rootDocsFolder"; "required": false; "isSignal": true; }; "showcaseName": { "alias": "showcaseName"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
85
84
|
}
|
|
86
85
|
|
|
87
|
-
declare class DocPageDevGuideComponentV2 implements
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
showcaseName: string;
|
|
86
|
+
declare class DocPageDevGuideComponentV2 implements OnInit, AfterViewInit {
|
|
87
|
+
readonly rootDocsFolder: _angular_core.InputSignal<string>;
|
|
88
|
+
readonly showcaseName: _angular_core.InputSignal<string>;
|
|
91
89
|
markdown: string;
|
|
92
90
|
isFirst: boolean;
|
|
93
91
|
headers: Array<{
|
|
@@ -96,32 +94,30 @@ declare class DocPageDevGuideComponentV2 implements OnDestroy, OnInit, AfterView
|
|
|
96
94
|
level: number;
|
|
97
95
|
}>;
|
|
98
96
|
fragmentId: string;
|
|
99
|
-
private subscription;
|
|
100
97
|
private markdownService;
|
|
101
98
|
private http;
|
|
102
99
|
private router;
|
|
103
100
|
private route;
|
|
101
|
+
constructor();
|
|
104
102
|
ngOnInit(): void;
|
|
105
103
|
ngAfterViewInit(): void;
|
|
106
|
-
ngOnDestroy(): void;
|
|
107
104
|
onNavClick(fragmentId: string): void;
|
|
108
105
|
private _loadMdContent;
|
|
109
106
|
private _scrollToFragment;
|
|
110
|
-
static ɵfac:
|
|
111
|
-
static ɵcmp:
|
|
107
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageDevGuideComponentV2, never>;
|
|
108
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DocPageDevGuideComponentV2, "eui-showcase-doc-page-dev-guide-v2", never, { "rootDocsFolder": { "alias": "rootDocsFolder"; "required": false; "isSignal": true; }; "showcaseName": { "alias": "showcaseName"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
112
109
|
}
|
|
113
110
|
|
|
114
|
-
declare class DocSampleComponent
|
|
115
|
-
id: string
|
|
116
|
-
label: string
|
|
117
|
-
category: any
|
|
118
|
-
description: any
|
|
119
|
-
defaultValue: any
|
|
120
|
-
styleClass: string
|
|
121
|
-
renderPlayground:
|
|
122
|
-
isCodeButtonVisible: boolean
|
|
123
|
-
isInnerSection: boolean
|
|
124
|
-
classes: string;
|
|
111
|
+
declare class DocSampleComponent {
|
|
112
|
+
readonly id: _angular_core.InputSignal<string>;
|
|
113
|
+
readonly label: _angular_core.InputSignal<string>;
|
|
114
|
+
readonly category: _angular_core.InputSignal<any>;
|
|
115
|
+
readonly description: _angular_core.InputSignal<any>;
|
|
116
|
+
readonly defaultValue: _angular_core.InputSignal<any>;
|
|
117
|
+
readonly styleClass: _angular_core.InputSignal<string>;
|
|
118
|
+
readonly renderPlayground: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
119
|
+
readonly isCodeButtonVisible: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
120
|
+
readonly isInnerSection: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
125
121
|
isCodeLoaded: boolean;
|
|
126
122
|
isCodeLoading: boolean;
|
|
127
123
|
isCodeExpanded: boolean;
|
|
@@ -142,7 +138,6 @@ declare class DocSampleComponent implements AfterContentInit {
|
|
|
142
138
|
private growlService;
|
|
143
139
|
private clipboard;
|
|
144
140
|
private router;
|
|
145
|
-
ngAfterContentInit(): void;
|
|
146
141
|
copyCurrentUrlToClipboard(id: string): void;
|
|
147
142
|
onToggleCode(): void;
|
|
148
143
|
/**
|
|
@@ -178,51 +173,56 @@ declare class DocSampleComponent implements AfterContentInit {
|
|
|
178
173
|
private getFileLabel;
|
|
179
174
|
getCodeLanguage(type: string): string;
|
|
180
175
|
/**
|
|
181
|
-
* filter out the content between the pattern below in both html and ts files.
|
|
182
|
-
* exclude some part of the code from being rendered in the code sample or stackblitz but we still want to keep
|
|
183
|
-
* it in the actual file for other purposes (e.g. for testing, or for rendering in the playground but not in the code sample)
|
|
176
|
+
* filter out the content between the pattern below in both html and ts files.
|
|
184
177
|
* @param content the content of the file to filter out the exclude content
|
|
185
178
|
*/
|
|
186
179
|
private filterOutExcludeContent;
|
|
187
|
-
static ɵfac:
|
|
188
|
-
static ɵcmp:
|
|
189
|
-
static ngAcceptInputType_renderPlayground: unknown;
|
|
190
|
-
static ngAcceptInputType_isCodeButtonVisible: unknown;
|
|
191
|
-
static ngAcceptInputType_isInnerSection: unknown;
|
|
180
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocSampleComponent, never>;
|
|
181
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DocSampleComponent, "eui-showcase-doc-sample", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "category": { "alias": "category"; "required": false; "isSignal": true; }; "description": { "alias": "description"; "required": false; "isSignal": true; }; "defaultValue": { "alias": "defaultValue"; "required": false; "isSignal": true; }; "styleClass": { "alias": "styleClass"; "required": false; "isSignal": true; }; "renderPlayground": { "alias": "renderPlayground"; "required": false; "isSignal": true; }; "isCodeButtonVisible": { "alias": "isCodeButtonVisible"; "required": false; "isSignal": true; }; "isInnerSection": { "alias": "isInnerSection"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
192
182
|
}
|
|
193
183
|
|
|
194
|
-
declare class DocSectionComponent
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DocSectionComponent, never>;
|
|
201
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DocSectionComponent, "eui-showcase-doc-section", never, { "id": { "alias": "id"; "required": false; }; "label": { "alias": "label"; "required": false; }; "styleClass": { "alias": "styleClass"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
184
|
+
declare class DocSectionComponent {
|
|
185
|
+
readonly id: _angular_core.InputSignal<string>;
|
|
186
|
+
readonly label: _angular_core.InputSignal<string>;
|
|
187
|
+
readonly styleClass: _angular_core.InputSignal<string>;
|
|
188
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocSectionComponent, never>;
|
|
189
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DocSectionComponent, "eui-showcase-doc-section", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "styleClass": { "alias": "styleClass"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
202
190
|
}
|
|
203
191
|
|
|
192
|
+
type ComponentStatus$1 = EuiMenuItem & {
|
|
193
|
+
name: string;
|
|
194
|
+
cmpReplacement: string;
|
|
195
|
+
cmpReplacementUrl: string;
|
|
196
|
+
cmpReplacementNote: string;
|
|
197
|
+
alternateApiCategory: string;
|
|
198
|
+
alternateId: string;
|
|
199
|
+
status: string;
|
|
200
|
+
metadata: any;
|
|
201
|
+
};
|
|
204
202
|
declare class DocPageComponent implements OnInit, AfterViewInit {
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
203
|
+
readonly id: _angular_core.InputSignal<any>;
|
|
204
|
+
readonly label: _angular_core.InputSignal<string>;
|
|
205
|
+
readonly subLabel: _angular_core.InputSignal<string>;
|
|
206
|
+
readonly isNotReadyInput: _angular_core.InputSignal<boolean>;
|
|
207
|
+
readonly isDeprecatedInput: _angular_core.InputSignal<boolean>;
|
|
208
|
+
readonly isLegacyInput: _angular_core.InputSignal<boolean>;
|
|
209
|
+
readonly codeFolder: _angular_core.InputSignal<string>;
|
|
210
|
+
readonly showcase: _angular_core.InputSignal<string>;
|
|
211
|
+
readonly isNavigationVisible: _angular_core.InputSignal<boolean>;
|
|
212
|
+
readonly hasApi: _angular_core.InputSignal<boolean>;
|
|
213
|
+
readonly hasA11y: _angular_core.InputSignal<boolean>;
|
|
214
|
+
readonly customApiUrl: _angular_core.InputSignal<string>;
|
|
215
|
+
readonly isNotReady: _angular_core.WritableSignal<boolean>;
|
|
216
|
+
readonly isDeprecated: _angular_core.WritableSignal<boolean>;
|
|
217
|
+
readonly isLegacy: _angular_core.WritableSignal<boolean>;
|
|
218
|
+
stateTypeClass: string;
|
|
219
|
+
stateLabel: string;
|
|
220
|
+
cmp: ComponentStatus$1;
|
|
221
|
+
fragmentId: string;
|
|
222
|
+
cmpImportModule: string;
|
|
223
|
+
cmpImportStandalone: string;
|
|
224
|
+
cmpImportStandaloneCmp: string;
|
|
225
|
+
cmpStandalone: string;
|
|
226
226
|
appMetadata: any;
|
|
227
227
|
apiUrlSafe: SafeResourceUrl;
|
|
228
228
|
apiUrl: string;
|
|
@@ -230,97 +230,117 @@ declare class DocPageComponent implements OnInit, AfterViewInit {
|
|
|
230
230
|
isLoading: boolean;
|
|
231
231
|
isNavClicked: boolean;
|
|
232
232
|
hasCategories: boolean;
|
|
233
|
-
categories:
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
233
|
+
categories: {
|
|
234
|
+
name: string;
|
|
235
|
+
samples: DocSampleComponent[];
|
|
236
|
+
}[];
|
|
237
|
+
private scrollHandler;
|
|
238
|
+
private scrollContainer;
|
|
239
|
+
readonly samples: _angular_core.Signal<readonly DocSampleComponent[]>;
|
|
240
|
+
readonly sections: _angular_core.Signal<readonly DocSectionComponent[]>;
|
|
241
|
+
readonly pageOverviewContent: _angular_core.Signal<readonly any[]>;
|
|
242
|
+
readonly pageOverviewDefaultContent: _angular_core.Signal<readonly any[]>;
|
|
243
|
+
readonly pageSamplesContent: _angular_core.Signal<readonly any[]>;
|
|
244
|
+
readonly pageSectionsContent: _angular_core.Signal<readonly any[]>;
|
|
245
|
+
readonly pageInteractiveContent: _angular_core.Signal<readonly any[]>;
|
|
246
|
+
readonly pageAccessibilityContent: _angular_core.Signal<readonly any[]>;
|
|
247
|
+
readonly pageApiContent: _angular_core.Signal<readonly any[]>;
|
|
248
|
+
readonly pageThemingContent: _angular_core.Signal<readonly any[]>;
|
|
249
|
+
readonly tabsContent: _angular_core.Signal<EuiTabsComponent>;
|
|
250
|
+
private sanitizer;
|
|
248
251
|
private location;
|
|
249
252
|
private router;
|
|
250
253
|
private route;
|
|
251
254
|
private asService;
|
|
255
|
+
private destroyRef;
|
|
256
|
+
private readonly TABS_DEF;
|
|
257
|
+
private readonly CATEGORIES_DEF;
|
|
252
258
|
ngOnInit(): void;
|
|
253
259
|
ngAfterViewInit(): void;
|
|
254
260
|
getCategoryIndex(name: string): number;
|
|
261
|
+
private setupScrollSpy;
|
|
255
262
|
onNavClick(fragmentId: string, tabIndex: number): void;
|
|
256
263
|
onTabActivate(event: {
|
|
257
264
|
tab: EuiTabComponent;
|
|
258
265
|
index: number;
|
|
259
266
|
}): void;
|
|
267
|
+
private _buildCategories;
|
|
260
268
|
private _scrollToFragment;
|
|
261
269
|
private _getComponentStatus;
|
|
262
270
|
private _getApiUrl;
|
|
263
271
|
private _camelCaseString;
|
|
264
|
-
static ɵfac:
|
|
265
|
-
static ɵcmp:
|
|
272
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageComponent, never>;
|
|
273
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DocPageComponent, "eui-showcase-doc-page", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "subLabel": { "alias": "subLabel"; "required": false; "isSignal": true; }; "isNotReadyInput": { "alias": "isNotReady"; "required": false; "isSignal": true; }; "isDeprecatedInput": { "alias": "isDeprecated"; "required": false; "isSignal": true; }; "isLegacyInput": { "alias": "isLegacy"; "required": false; "isSignal": true; }; "codeFolder": { "alias": "codeFolder"; "required": false; "isSignal": true; }; "showcase": { "alias": "showcase"; "required": false; "isSignal": true; }; "isNavigationVisible": { "alias": "isNavigationVisible"; "required": false; "isSignal": true; }; "hasApi": { "alias": "hasApi"; "required": false; "isSignal": true; }; "hasA11y": { "alias": "hasA11y"; "required": false; "isSignal": true; }; "customApiUrl": { "alias": "customApiUrl"; "required": false; "isSignal": true; }; }, {}, ["samples", "sections", "pageOverviewContent", "pageOverviewDefaultContent", "pageSamplesContent", "pageSectionsContent", "pageInteractiveContent", "pageAccessibilityContent", "pageApiContent", "pageThemingContent"], ["docPageOverview", "docPageOverviewDefault", "docPageSamples", "docPageAccessibility", "docPageTheming", "docPageInteractive", "docPageSections"], true, never>;
|
|
266
274
|
}
|
|
267
275
|
declare class DocPageOverviewContentDirective {
|
|
268
|
-
static ɵfac:
|
|
269
|
-
static ɵdir:
|
|
276
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageOverviewContentDirective, never>;
|
|
277
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocPageOverviewContentDirective, "docPageOverview", never, {}, {}, never, never, true, never>;
|
|
270
278
|
}
|
|
271
279
|
declare class DocPageOverviewDefaultContentDirective {
|
|
272
|
-
static ɵfac:
|
|
273
|
-
static ɵdir:
|
|
280
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageOverviewDefaultContentDirective, never>;
|
|
281
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocPageOverviewDefaultContentDirective, "docPageOverviewDefault", never, {}, {}, never, never, true, never>;
|
|
274
282
|
}
|
|
275
283
|
declare class DocPageInteractiveContentDirective {
|
|
276
|
-
title: string
|
|
277
|
-
subTitle: string
|
|
278
|
-
static ɵfac:
|
|
279
|
-
static ɵdir:
|
|
284
|
+
readonly title: _angular_core.InputSignal<string>;
|
|
285
|
+
readonly subTitle: _angular_core.InputSignal<string>;
|
|
286
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageInteractiveContentDirective, never>;
|
|
287
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocPageInteractiveContentDirective, "docPageInteractive", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "subTitle": { "alias": "subTitle"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
280
288
|
}
|
|
281
289
|
declare class DocPageSamplesContentDirective {
|
|
282
|
-
static ɵfac:
|
|
283
|
-
static ɵdir:
|
|
290
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageSamplesContentDirective, never>;
|
|
291
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocPageSamplesContentDirective, "docPageSamples", never, {}, {}, never, never, true, never>;
|
|
284
292
|
}
|
|
285
293
|
declare class DocPageSectionsContentDirective {
|
|
286
|
-
static ɵfac:
|
|
287
|
-
static ɵdir:
|
|
294
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageSectionsContentDirective, never>;
|
|
295
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocPageSectionsContentDirective, "docPageSections", never, {}, {}, never, never, true, never>;
|
|
288
296
|
}
|
|
289
297
|
declare class DocPageAccessibilityContentDirective {
|
|
290
|
-
static ɵfac:
|
|
291
|
-
static ɵdir:
|
|
298
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageAccessibilityContentDirective, never>;
|
|
299
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocPageAccessibilityContentDirective, "docPageAccessibility", never, {}, {}, never, never, true, never>;
|
|
292
300
|
}
|
|
293
301
|
declare class DocPageApiContentDirective {
|
|
294
|
-
static ɵfac:
|
|
295
|
-
static ɵdir:
|
|
302
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageApiContentDirective, never>;
|
|
303
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocPageApiContentDirective, "docPageApi", never, {}, {}, never, never, true, never>;
|
|
296
304
|
}
|
|
297
305
|
declare class DocPageThemingContentDirective {
|
|
298
|
-
static ɵfac:
|
|
299
|
-
static ɵdir:
|
|
306
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageThemingContentDirective, never>;
|
|
307
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocPageThemingContentDirective, "docPageTheming", never, {}, {}, never, never, true, never>;
|
|
300
308
|
}
|
|
301
309
|
|
|
310
|
+
type ComponentStatus = EuiMenuItem & {
|
|
311
|
+
name: string;
|
|
312
|
+
cmpReplacement: string;
|
|
313
|
+
cmpReplacementUrl: string;
|
|
314
|
+
cmpReplacementNote: string;
|
|
315
|
+
alternateApiCategory: string;
|
|
316
|
+
alternateId: string;
|
|
317
|
+
status: string;
|
|
318
|
+
metadata: any;
|
|
319
|
+
};
|
|
302
320
|
declare class DocPageComponentV2 implements OnInit, AfterViewInit {
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
321
|
+
readonly id: _angular_core.InputSignal<any>;
|
|
322
|
+
readonly label: _angular_core.InputSignal<string>;
|
|
323
|
+
readonly subLabel: _angular_core.InputSignal<string>;
|
|
324
|
+
readonly isNotReadyInput: _angular_core.InputSignal<boolean>;
|
|
325
|
+
readonly isDeprecatedInput: _angular_core.InputSignal<boolean>;
|
|
326
|
+
readonly isLegacyInput: _angular_core.InputSignal<boolean>;
|
|
327
|
+
readonly codeFolder: _angular_core.InputSignal<string>;
|
|
328
|
+
readonly showcase: _angular_core.InputSignal<string>;
|
|
329
|
+
readonly isNavigationVisible: _angular_core.InputSignal<boolean>;
|
|
330
|
+
readonly hasApi: _angular_core.InputSignal<boolean>;
|
|
331
|
+
readonly hasA11y: _angular_core.InputSignal<boolean>;
|
|
332
|
+
readonly customApiUrl: _angular_core.InputSignal<string>;
|
|
333
|
+
readonly isNotReady: _angular_core.WritableSignal<boolean>;
|
|
334
|
+
readonly isDeprecated: _angular_core.WritableSignal<boolean>;
|
|
335
|
+
readonly isLegacy: _angular_core.WritableSignal<boolean>;
|
|
336
|
+
stateTypeClass: string;
|
|
337
|
+
stateLabel: string;
|
|
338
|
+
cmp: ComponentStatus;
|
|
339
|
+
fragmentId: string;
|
|
340
|
+
cmpImportModule: string;
|
|
341
|
+
cmpImportStandalone: string;
|
|
342
|
+
cmpImportStandaloneCmp: string;
|
|
343
|
+
cmpStandalone: string;
|
|
324
344
|
appMetadata: any;
|
|
325
345
|
apiUrlSafe: SafeResourceUrl;
|
|
326
346
|
apiUrl: string;
|
|
@@ -328,25 +348,28 @@ declare class DocPageComponentV2 implements OnInit, AfterViewInit {
|
|
|
328
348
|
isLoading: boolean;
|
|
329
349
|
isNavClicked: boolean;
|
|
330
350
|
hasCategories: boolean;
|
|
331
|
-
categories:
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
351
|
+
categories: {
|
|
352
|
+
name: string;
|
|
353
|
+
samples: DocSampleComponent[];
|
|
354
|
+
}[];
|
|
355
|
+
readonly samples: _angular_core.Signal<readonly DocSampleComponent[]>;
|
|
356
|
+
readonly sections: _angular_core.Signal<readonly DocSectionComponent[]>;
|
|
357
|
+
readonly pageOverviewContent: _angular_core.Signal<readonly any[]>;
|
|
358
|
+
readonly pageOverviewDefaultContent: _angular_core.Signal<readonly any[]>;
|
|
359
|
+
readonly pageSamplesContent: _angular_core.Signal<readonly any[]>;
|
|
360
|
+
readonly pageSectionsContent: _angular_core.Signal<readonly any[]>;
|
|
361
|
+
readonly pageInteractiveContent: _angular_core.Signal<readonly any[]>;
|
|
362
|
+
readonly pageAccessibilityContent: _angular_core.Signal<readonly any[]>;
|
|
363
|
+
readonly pageApiContent: _angular_core.Signal<readonly any[]>;
|
|
364
|
+
readonly pageThemingContent: _angular_core.Signal<readonly any[]>;
|
|
365
|
+
readonly tabsContent: _angular_core.Signal<EuiTabsComponent>;
|
|
366
|
+
private sanitizer;
|
|
346
367
|
private location;
|
|
347
368
|
private router;
|
|
348
369
|
private route;
|
|
349
370
|
private asService;
|
|
371
|
+
private readonly TABS_DEF;
|
|
372
|
+
private readonly CATEGORIES_DEF;
|
|
350
373
|
ngOnInit(): void;
|
|
351
374
|
ngAfterViewInit(): void;
|
|
352
375
|
getCategoryIndex(name: string): number;
|
|
@@ -355,259 +378,254 @@ declare class DocPageComponentV2 implements OnInit, AfterViewInit {
|
|
|
355
378
|
tab: EuiTabComponent;
|
|
356
379
|
index: number;
|
|
357
380
|
}): void;
|
|
381
|
+
private _buildCategories;
|
|
358
382
|
private _scrollToFragment;
|
|
359
383
|
private _getComponentStatus;
|
|
360
384
|
private _getApiUrl;
|
|
361
385
|
private _camelCaseString;
|
|
362
|
-
static ɵfac:
|
|
363
|
-
static ɵcmp:
|
|
386
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageComponentV2, never>;
|
|
387
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DocPageComponentV2, "eui-showcase-doc-page-v2", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "subLabel": { "alias": "subLabel"; "required": false; "isSignal": true; }; "isNotReadyInput": { "alias": "isNotReady"; "required": false; "isSignal": true; }; "isDeprecatedInput": { "alias": "isDeprecated"; "required": false; "isSignal": true; }; "isLegacyInput": { "alias": "isLegacy"; "required": false; "isSignal": true; }; "codeFolder": { "alias": "codeFolder"; "required": false; "isSignal": true; }; "showcase": { "alias": "showcase"; "required": false; "isSignal": true; }; "isNavigationVisible": { "alias": "isNavigationVisible"; "required": false; "isSignal": true; }; "hasApi": { "alias": "hasApi"; "required": false; "isSignal": true; }; "hasA11y": { "alias": "hasA11y"; "required": false; "isSignal": true; }; "customApiUrl": { "alias": "customApiUrl"; "required": false; "isSignal": true; }; }, {}, ["samples", "sections", "pageOverviewContent", "pageOverviewDefaultContent", "pageSamplesContent", "pageSectionsContent", "pageInteractiveContent", "pageAccessibilityContent", "pageApiContent", "pageThemingContent"], ["docPageOverviewV2", "docPageOverviewDefaultV2", "docPageSamplesV2", "docPageAccessibilityV2", "docPageThemingV2", "docPageInteractiveV2", "docPageSectionsV2"], true, never>;
|
|
364
388
|
}
|
|
365
389
|
declare class DocPageOverviewContentDirectiveV2 {
|
|
366
|
-
static ɵfac:
|
|
367
|
-
static ɵdir:
|
|
390
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageOverviewContentDirectiveV2, never>;
|
|
391
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocPageOverviewContentDirectiveV2, "docPageOverviewV2", never, {}, {}, never, never, true, never>;
|
|
368
392
|
}
|
|
369
393
|
declare class DocPageOverviewDefaultContentDirectiveV2 {
|
|
370
|
-
static ɵfac:
|
|
371
|
-
static ɵdir:
|
|
394
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageOverviewDefaultContentDirectiveV2, never>;
|
|
395
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocPageOverviewDefaultContentDirectiveV2, "docPageOverviewDefaultV2", never, {}, {}, never, never, true, never>;
|
|
372
396
|
}
|
|
373
397
|
declare class DocPageInteractiveContentDirectiveV2 {
|
|
374
|
-
title: string
|
|
375
|
-
subTitle: string
|
|
376
|
-
static ɵfac:
|
|
377
|
-
static ɵdir:
|
|
398
|
+
readonly title: _angular_core.InputSignal<string>;
|
|
399
|
+
readonly subTitle: _angular_core.InputSignal<string>;
|
|
400
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageInteractiveContentDirectiveV2, never>;
|
|
401
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocPageInteractiveContentDirectiveV2, "docPageInteractiveV2", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "subTitle": { "alias": "subTitle"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
378
402
|
}
|
|
379
403
|
declare class DocPageSamplesContentDirectiveV2 {
|
|
380
|
-
static ɵfac:
|
|
381
|
-
static ɵdir:
|
|
404
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageSamplesContentDirectiveV2, never>;
|
|
405
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocPageSamplesContentDirectiveV2, "docPageSamplesV2", never, {}, {}, never, never, true, never>;
|
|
382
406
|
}
|
|
383
407
|
declare class DocPageSectionsContentDirectiveV2 {
|
|
384
|
-
static ɵfac:
|
|
385
|
-
static ɵdir:
|
|
408
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageSectionsContentDirectiveV2, never>;
|
|
409
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocPageSectionsContentDirectiveV2, "docPageSectionsV2", never, {}, {}, never, never, true, never>;
|
|
386
410
|
}
|
|
387
411
|
declare class DocPageAccessibilityContentDirectiveV2 {
|
|
388
|
-
static ɵfac:
|
|
389
|
-
static ɵdir:
|
|
412
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageAccessibilityContentDirectiveV2, never>;
|
|
413
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocPageAccessibilityContentDirectiveV2, "docPageAccessibilityV2", never, {}, {}, never, never, true, never>;
|
|
390
414
|
}
|
|
391
415
|
declare class DocPageApiContentDirectiveV2 {
|
|
392
|
-
static ɵfac:
|
|
393
|
-
static ɵdir:
|
|
416
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageApiContentDirectiveV2, never>;
|
|
417
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocPageApiContentDirectiveV2, "docPageApiV2", never, {}, {}, never, never, true, never>;
|
|
394
418
|
}
|
|
395
419
|
declare class DocPageThemingContentDirectiveV2 {
|
|
396
|
-
static ɵfac:
|
|
397
|
-
static ɵdir:
|
|
420
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageThemingContentDirectiveV2, never>;
|
|
421
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocPageThemingContentDirectiveV2, "docPageThemingV2", never, {}, {}, never, never, true, never>;
|
|
398
422
|
}
|
|
399
423
|
|
|
400
424
|
declare class DocPageCodeFabComponent {
|
|
401
|
-
codeFolder: string
|
|
402
|
-
showcase: string
|
|
403
|
-
hasContentDialog: boolean
|
|
404
|
-
dialog: EuiDialogComponent
|
|
425
|
+
readonly codeFolder: _angular_core.InputSignal<string>;
|
|
426
|
+
readonly showcase: _angular_core.InputSignal<string>;
|
|
427
|
+
readonly hasContentDialog: _angular_core.InputSignal<boolean>;
|
|
428
|
+
readonly dialog: _angular_core.Signal<EuiDialogComponent>;
|
|
405
429
|
asService: EuiAppShellService;
|
|
406
430
|
toggleCode(): void;
|
|
407
431
|
onClose(): void;
|
|
408
432
|
onOpenCode(): void;
|
|
409
|
-
static ɵfac:
|
|
410
|
-
static ɵcmp:
|
|
433
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageCodeFabComponent, never>;
|
|
434
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DocPageCodeFabComponent, "eui-showcase-doc-page-code-fab", never, { "codeFolder": { "alias": "codeFolder"; "required": false; "isSignal": true; }; "showcase": { "alias": "showcase"; "required": false; "isSignal": true; }; "hasContentDialog": { "alias": "hasContentDialog"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
411
435
|
}
|
|
412
436
|
|
|
413
437
|
declare class DocPageCodeModalComponent {
|
|
414
|
-
width: string
|
|
415
|
-
dialog: EuiDialogComponent
|
|
438
|
+
readonly width: _angular_core.InputSignal<string>;
|
|
439
|
+
readonly dialog: _angular_core.Signal<EuiDialogComponent>;
|
|
416
440
|
asService: EuiAppShellService;
|
|
417
441
|
toggleCode(): void;
|
|
418
442
|
onClose(): void;
|
|
419
|
-
static ɵfac:
|
|
420
|
-
static ɵcmp:
|
|
443
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageCodeModalComponent, never>;
|
|
444
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DocPageCodeModalComponent, "eui-showcase-doc-page-code-modal", never, { "width": { "alias": "width"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
421
445
|
}
|
|
422
446
|
|
|
423
447
|
declare class DocPagePatternSampleDirective {
|
|
424
|
-
static ɵfac:
|
|
425
|
-
static ɵdir:
|
|
448
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPagePatternSampleDirective, never>;
|
|
449
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocPagePatternSampleDirective, "docPagePatternSample", never, {}, {}, never, never, true, never>;
|
|
426
450
|
}
|
|
427
451
|
declare class DocPagePatternDocDirective {
|
|
428
|
-
static ɵfac:
|
|
429
|
-
static ɵdir:
|
|
452
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPagePatternDocDirective, never>;
|
|
453
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocPagePatternDocDirective, "docPagePatternDoc", never, {}, {}, never, never, true, never>;
|
|
430
454
|
}
|
|
431
455
|
declare class DocPagePatternComponent {
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
sourceUrl: string;
|
|
442
|
-
figmaUrl: string;
|
|
443
|
-
figmaEmbedSrc: string;
|
|
456
|
+
readonly id: _angular_core.InputSignal<string>;
|
|
457
|
+
readonly label: _angular_core.InputSignal<string>;
|
|
458
|
+
readonly anatomyImage: _angular_core.InputSignal<string>;
|
|
459
|
+
readonly docEntries: _angular_core.InputSignal<any[]>;
|
|
460
|
+
readonly dos: _angular_core.InputSignal<any[]>;
|
|
461
|
+
readonly donts: _angular_core.InputSignal<any[]>;
|
|
462
|
+
readonly sourceUrl: _angular_core.InputSignal<string>;
|
|
463
|
+
readonly figmaUrl: _angular_core.InputSignal<string>;
|
|
464
|
+
readonly figmaEmbedSrc: _angular_core.InputSignal<string>;
|
|
444
465
|
urlSafe: SafeResourceUrl;
|
|
445
466
|
isShowGoTop: boolean;
|
|
446
467
|
topPosToStartShowing: number;
|
|
447
468
|
tabSelectedIndex: number;
|
|
448
|
-
checkScroll(): void;
|
|
449
469
|
private sanitizer;
|
|
450
|
-
|
|
451
|
-
|
|
470
|
+
constructor();
|
|
471
|
+
checkScroll(): void;
|
|
472
|
+
onNavigateToCode(): void;
|
|
452
473
|
onTabActivate(event: {
|
|
453
474
|
tab: EuiTabComponent;
|
|
454
475
|
index: number;
|
|
455
476
|
}): void;
|
|
456
477
|
gotoTop(): void;
|
|
457
|
-
static ɵfac:
|
|
458
|
-
static ɵcmp:
|
|
478
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPagePatternComponent, never>;
|
|
479
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DocPagePatternComponent, "eui-showcase-doc-page-pattern", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "anatomyImage": { "alias": "anatomyImage"; "required": false; "isSignal": true; }; "docEntries": { "alias": "docEntries"; "required": false; "isSignal": true; }; "dos": { "alias": "dos"; "required": false; "isSignal": true; }; "donts": { "alias": "donts"; "required": false; "isSignal": true; }; "sourceUrl": { "alias": "sourceUrl"; "required": false; "isSignal": true; }; "figmaUrl": { "alias": "figmaUrl"; "required": false; "isSignal": true; }; "figmaEmbedSrc": { "alias": "figmaEmbedSrc"; "required": false; "isSignal": true; }; }, {}, never, ["docPagePatternDoc", "docPagePatternSample"], true, never>;
|
|
459
480
|
}
|
|
460
481
|
|
|
461
482
|
declare class DocPagePatternSampleRefsComponent {
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
static
|
|
466
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DocPagePatternSampleRefsComponent, "eui-showcase-doc-pattern-sample-refs", never, { "docEntries": { "alias": "docEntries"; "required": false; }; "codeFolder": { "alias": "codeFolder"; "required": false; }; }, {}, never, never, true, never>;
|
|
483
|
+
readonly docEntries: _angular_core.InputSignal<any[]>;
|
|
484
|
+
readonly codeFolder: _angular_core.InputSignal<string>;
|
|
485
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPagePatternSampleRefsComponent, never>;
|
|
486
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DocPagePatternSampleRefsComponent, "eui-showcase-doc-pattern-sample-refs", never, { "docEntries": { "alias": "docEntries"; "required": false; "isSignal": true; }; "codeFolder": { "alias": "codeFolder"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
467
487
|
}
|
|
468
488
|
|
|
469
489
|
declare class DocPagePatternSampleDocDirective {
|
|
470
|
-
static ɵfac:
|
|
471
|
-
static ɵdir:
|
|
490
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPagePatternSampleDocDirective, never>;
|
|
491
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocPagePatternSampleDocDirective, "eui-showcase-doc-pattern-sample-doc", never, {}, {}, never, never, true, never>;
|
|
472
492
|
}
|
|
473
493
|
declare class DocPagePatternSampleComponent {
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
docContent: QueryList<DocPagePatternSampleDocDirective>;
|
|
494
|
+
readonly label: _angular_core.InputSignal<string>;
|
|
495
|
+
readonly docEntries: _angular_core.InputSignal<any[]>;
|
|
496
|
+
readonly codeFolder: _angular_core.InputSignal<string>;
|
|
497
|
+
readonly refsImage: _angular_core.InputSignal<string>;
|
|
498
|
+
readonly refsImage2: _angular_core.InputSignal<string>;
|
|
499
|
+
readonly figmaLink: _angular_core.InputSignal<string>;
|
|
500
|
+
readonly aiLink: _angular_core.InputSignal<string>;
|
|
501
|
+
readonly isSmall: _angular_core.InputSignal<boolean>;
|
|
502
|
+
readonly isTiny: _angular_core.InputSignal<boolean>;
|
|
503
|
+
readonly isMedium: _angular_core.InputSignal<boolean>;
|
|
504
|
+
readonly isLarge: _angular_core.InputSignal<boolean>;
|
|
505
|
+
readonly isExtraLarge: _angular_core.InputSignal<boolean>;
|
|
506
|
+
readonly hasAutoHeight: _angular_core.InputSignal<boolean>;
|
|
507
|
+
readonly docContent: _angular_core.Signal<any>;
|
|
489
508
|
openCode(): void;
|
|
490
|
-
static ɵfac:
|
|
491
|
-
static ɵcmp:
|
|
509
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPagePatternSampleComponent, never>;
|
|
510
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DocPagePatternSampleComponent, "eui-showcase-doc-pattern-sample", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "docEntries": { "alias": "docEntries"; "required": false; "isSignal": true; }; "codeFolder": { "alias": "codeFolder"; "required": false; "isSignal": true; }; "refsImage": { "alias": "refsImage"; "required": false; "isSignal": true; }; "refsImage2": { "alias": "refsImage2"; "required": false; "isSignal": true; }; "figmaLink": { "alias": "figmaLink"; "required": false; "isSignal": true; }; "aiLink": { "alias": "aiLink"; "required": false; "isSignal": true; }; "isSmall": { "alias": "isSmall"; "required": false; "isSignal": true; }; "isTiny": { "alias": "isTiny"; "required": false; "isSignal": true; }; "isMedium": { "alias": "isMedium"; "required": false; "isSignal": true; }; "isLarge": { "alias": "isLarge"; "required": false; "isSignal": true; }; "isExtraLarge": { "alias": "isExtraLarge"; "required": false; "isSignal": true; }; "hasAutoHeight": { "alias": "hasAutoHeight"; "required": false; "isSignal": true; }; }, {}, ["docContent"], ["eui-showcase-doc-pattern-sample-doc", "*"], true, never>;
|
|
492
511
|
}
|
|
493
512
|
|
|
494
513
|
declare class DocPagePatternSimpleDocDirective {
|
|
495
|
-
static ɵfac:
|
|
496
|
-
static ɵdir:
|
|
514
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPagePatternSimpleDocDirective, never>;
|
|
515
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocPagePatternSimpleDocDirective, "docPagePatternDoc", never, {}, {}, never, never, true, never>;
|
|
497
516
|
}
|
|
498
517
|
declare class DocPagePatternSimpleComponent {
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
figmaEmbedSrc: string;
|
|
518
|
+
readonly docContent: _angular_core.Signal<any>;
|
|
519
|
+
readonly id: _angular_core.InputSignal<string>;
|
|
520
|
+
readonly label: _angular_core.InputSignal<string>;
|
|
521
|
+
readonly anatomyImage: _angular_core.InputSignal<string>;
|
|
522
|
+
readonly docEntries: _angular_core.InputSignal<any[]>;
|
|
523
|
+
readonly dos: _angular_core.InputSignal<any[]>;
|
|
524
|
+
readonly donts: _angular_core.InputSignal<any[]>;
|
|
525
|
+
readonly sourceUrl: _angular_core.InputSignal<string>;
|
|
526
|
+
readonly figmaUrl: _angular_core.InputSignal<string>;
|
|
527
|
+
readonly figmaEmbedSrc: _angular_core.InputSignal<string>;
|
|
510
528
|
urlSafe: SafeResourceUrl;
|
|
511
529
|
isShowGoTop: boolean;
|
|
512
530
|
topPosToStartShowing: number;
|
|
513
531
|
tabSelectedIndex: number;
|
|
514
|
-
checkScroll(): void;
|
|
515
532
|
private sanitizer;
|
|
516
|
-
|
|
517
|
-
|
|
533
|
+
constructor();
|
|
534
|
+
checkScroll(): void;
|
|
535
|
+
onNavigateToCode(): void;
|
|
518
536
|
onTabSelect(event: {
|
|
519
537
|
tab: EuiTabComponent;
|
|
520
538
|
index: number;
|
|
521
539
|
}): void;
|
|
522
540
|
gotoTop(): void;
|
|
523
|
-
static ɵfac:
|
|
524
|
-
static ɵcmp:
|
|
541
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPagePatternSimpleComponent, never>;
|
|
542
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DocPagePatternSimpleComponent, "eui-showcase-doc-page-pattern-simple", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "anatomyImage": { "alias": "anatomyImage"; "required": false; "isSignal": true; }; "docEntries": { "alias": "docEntries"; "required": false; "isSignal": true; }; "dos": { "alias": "dos"; "required": false; "isSignal": true; }; "donts": { "alias": "donts"; "required": false; "isSignal": true; }; "sourceUrl": { "alias": "sourceUrl"; "required": false; "isSignal": true; }; "figmaUrl": { "alias": "figmaUrl"; "required": false; "isSignal": true; }; "figmaEmbedSrc": { "alias": "figmaEmbedSrc"; "required": false; "isSignal": true; }; }, {}, ["docContent"], ["docPagePatternDoc"], true, never>;
|
|
525
543
|
}
|
|
526
544
|
|
|
527
545
|
declare class DocSampleApiComponent {
|
|
528
|
-
static ɵfac:
|
|
529
|
-
static ɵcmp:
|
|
546
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocSampleApiComponent, never>;
|
|
547
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DocSampleApiComponent, "eui-showcase-doc-sample-api", never, {}, {}, never, never, true, never>;
|
|
530
548
|
}
|
|
531
549
|
|
|
532
550
|
declare class DocSectionCodeComponent {
|
|
533
|
-
label: string
|
|
534
|
-
content: string
|
|
535
|
-
styleClass: string
|
|
536
|
-
versionLabel: string
|
|
537
|
-
isDeprecated: boolean
|
|
538
|
-
isCodeExpanded: boolean
|
|
539
|
-
sectionDescription:
|
|
540
|
-
sectionCodeHTML:
|
|
541
|
-
sectionCodeTS:
|
|
542
|
-
sectionCodeSERVICE:
|
|
543
|
-
sectionCodeCSS:
|
|
544
|
-
sectionCodeDOC:
|
|
551
|
+
readonly label: _angular_core.InputSignal<string>;
|
|
552
|
+
readonly content: _angular_core.InputSignal<string>;
|
|
553
|
+
readonly styleClass: _angular_core.InputSignal<string>;
|
|
554
|
+
readonly versionLabel: _angular_core.InputSignal<string>;
|
|
555
|
+
readonly isDeprecated: _angular_core.InputSignal<boolean>;
|
|
556
|
+
readonly isCodeExpanded: _angular_core.WritableSignal<boolean>;
|
|
557
|
+
readonly sectionDescription: _angular_core.Signal<any>;
|
|
558
|
+
readonly sectionCodeHTML: _angular_core.Signal<any>;
|
|
559
|
+
readonly sectionCodeTS: _angular_core.Signal<any>;
|
|
560
|
+
readonly sectionCodeSERVICE: _angular_core.Signal<any>;
|
|
561
|
+
readonly sectionCodeCSS: _angular_core.Signal<any>;
|
|
562
|
+
readonly sectionCodeDOC: _angular_core.Signal<any>;
|
|
545
563
|
toggleCode(): void;
|
|
546
564
|
isDefined(object: any): boolean;
|
|
547
|
-
static ɵfac:
|
|
548
|
-
static ɵcmp:
|
|
565
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocSectionCodeComponent, never>;
|
|
566
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DocSectionCodeComponent, "eui-showcase-doc-section-code", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "content": { "alias": "content"; "required": false; "isSignal": true; }; "styleClass": { "alias": "styleClass"; "required": false; "isSignal": true; }; "versionLabel": { "alias": "versionLabel"; "required": false; "isSignal": true; }; "isDeprecated": { "alias": "isDeprecated"; "required": false; "isSignal": true; }; }, {}, ["sectionDescription", "sectionCodeHTML", "sectionCodeTS", "sectionCodeSERVICE", "sectionCodeCSS", "sectionCodeDOC"], ["sectionDescription", "sectionCodeHTML", "sectionCodeTS", "sectionCodeSERVICE", "sectionCodeCSS", "sectionCodeDOC", "*"], true, never>;
|
|
549
567
|
}
|
|
550
568
|
declare class DocSectionCodeDescriptionTagDirective {
|
|
551
|
-
static ɵfac:
|
|
552
|
-
static ɵdir:
|
|
569
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocSectionCodeDescriptionTagDirective, never>;
|
|
570
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocSectionCodeDescriptionTagDirective, "sectionDescription", never, {}, {}, never, never, true, never>;
|
|
553
571
|
}
|
|
554
572
|
declare class DocSectionCodeHtmlTagDirective {
|
|
555
|
-
static ɵfac:
|
|
556
|
-
static ɵdir:
|
|
573
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocSectionCodeHtmlTagDirective, never>;
|
|
574
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocSectionCodeHtmlTagDirective, "sectionCodeHTML", never, {}, {}, never, never, true, never>;
|
|
557
575
|
}
|
|
558
576
|
declare class DocSectionCodeTsTagDirective {
|
|
559
|
-
static ɵfac:
|
|
560
|
-
static ɵdir:
|
|
577
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocSectionCodeTsTagDirective, never>;
|
|
578
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocSectionCodeTsTagDirective, "sectionCodeTS", never, {}, {}, never, never, true, never>;
|
|
561
579
|
}
|
|
562
580
|
declare class DocSectionCodeServiceTagDirective {
|
|
563
|
-
static ɵfac:
|
|
564
|
-
static ɵdir:
|
|
581
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocSectionCodeServiceTagDirective, never>;
|
|
582
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocSectionCodeServiceTagDirective, "sectionCodeSERVICE", never, {}, {}, never, never, true, never>;
|
|
565
583
|
}
|
|
566
584
|
declare class DocSectionCodeCssTagDirective {
|
|
567
|
-
static ɵfac:
|
|
568
|
-
static ɵdir:
|
|
585
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocSectionCodeCssTagDirective, never>;
|
|
586
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocSectionCodeCssTagDirective, "sectionCodeCSS", never, {}, {}, never, never, true, never>;
|
|
569
587
|
}
|
|
570
588
|
declare class DocSectionCodeDocTagDirective {
|
|
571
|
-
static ɵfac:
|
|
572
|
-
static ɵdir:
|
|
589
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocSectionCodeDocTagDirective, never>;
|
|
590
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocSectionCodeDocTagDirective, "sectionCodeDOC", never, {}, {}, never, never, true, never>;
|
|
573
591
|
}
|
|
574
592
|
|
|
575
593
|
declare class EuiCodeHighlighterDirective implements AfterViewInit {
|
|
576
|
-
code:
|
|
594
|
+
code: _angular_core.InputSignal<unknown>;
|
|
577
595
|
private el;
|
|
578
596
|
private renderer;
|
|
579
597
|
constructor();
|
|
580
598
|
ngAfterViewInit(): void;
|
|
581
599
|
private highlight;
|
|
582
|
-
static ɵfac:
|
|
583
|
-
static ɵdir:
|
|
600
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<EuiCodeHighlighterDirective, never>;
|
|
601
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<EuiCodeHighlighterDirective, "[euiCode]", never, { "code": { "alias": "code"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
584
602
|
}
|
|
585
603
|
|
|
586
604
|
declare class LoremIpsumSampleComponent {
|
|
587
|
-
textSize:
|
|
588
|
-
static ɵfac:
|
|
589
|
-
static ɵcmp:
|
|
605
|
+
readonly textSize: _angular_core.InputSignal<"small" | "medium" | "large">;
|
|
606
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LoremIpsumSampleComponent, never>;
|
|
607
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LoremIpsumSampleComponent, "eui-showcase-doc-lorem-ipsum", never, { "textSize": { "alias": "textSize"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
590
608
|
}
|
|
591
609
|
|
|
592
|
-
declare class PlaygroundComponent
|
|
593
|
-
title: string
|
|
594
|
-
htmlContent: string
|
|
595
|
-
sampleId: string
|
|
596
|
-
typescriptContent: string
|
|
597
|
-
activated: boolean
|
|
598
|
-
modules: [{
|
|
610
|
+
declare class PlaygroundComponent {
|
|
611
|
+
readonly title: _angular_core.InputSignal<string>;
|
|
612
|
+
readonly htmlContent: _angular_core.InputSignal<string>;
|
|
613
|
+
readonly sampleId: _angular_core.InputSignal<string>;
|
|
614
|
+
readonly typescriptContent: _angular_core.InputSignal<string>;
|
|
615
|
+
readonly activated: _angular_core.InputSignal<boolean>;
|
|
616
|
+
readonly modules: _angular_core.InputSignal<[{
|
|
599
617
|
name: string;
|
|
600
618
|
path: string;
|
|
601
|
-
}]
|
|
619
|
+
}]>;
|
|
602
620
|
isLoaded: boolean;
|
|
603
|
-
private stackblitzElWrapper;
|
|
621
|
+
private readonly stackblitzElWrapper;
|
|
604
622
|
/** instance that holds the stackblitz VM object */
|
|
605
623
|
private stackblitzInstance;
|
|
606
624
|
private sb;
|
|
607
|
-
|
|
625
|
+
constructor();
|
|
608
626
|
private initStackblitz;
|
|
609
|
-
static ɵfac:
|
|
610
|
-
static ɵcmp:
|
|
627
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PlaygroundComponent, never>;
|
|
628
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PlaygroundComponent, "eui-playground", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "htmlContent": { "alias": "htmlContent"; "required": false; "isSignal": true; }; "sampleId": { "alias": "sampleId"; "required": false; "isSignal": true; }; "typescriptContent": { "alias": "typescriptContent"; "required": false; "isSignal": true; }; "activated": { "alias": "activated"; "required": false; "isSignal": true; }; "modules": { "alias": "modules"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
611
629
|
}
|
|
612
630
|
|
|
613
631
|
declare const polyfillsFile = "import 'zone.js';";
|
|
@@ -701,8 +719,8 @@ declare class StackblitzService {
|
|
|
701
719
|
* @private
|
|
702
720
|
*/
|
|
703
721
|
private getCurrentShowcaseEuiVersion;
|
|
704
|
-
static ɵfac:
|
|
705
|
-
static ɵprov:
|
|
722
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<StackblitzService, never>;
|
|
723
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<StackblitzService>;
|
|
706
724
|
}
|
|
707
725
|
|
|
708
726
|
declare const EUI_SHOWCASE: readonly [typeof DocPageAccessibilityContentDirective, typeof DocPageApiContentDirective, typeof DocPageCodeComponent, typeof DocPageComponent, typeof DocPageDevGuideComponent, typeof DocPageInteractiveContentDirective, typeof DocPageOverviewContentDirective, typeof DocPageOverviewDefaultContentDirective, typeof DocPageSamplesContentDirective, typeof DocPageSectionsContentDirective, typeof DocPageThemingContentDirective, typeof DocPageCodeFabComponent, typeof DocPageCodeModalComponent, typeof DocPagePatternComponent, typeof DocPagePatternDocDirective, typeof DocPagePatternSampleDirective, typeof DocPagePatternSampleComponent, typeof DocPagePatternSampleDocDirective, typeof DocPagePatternSampleRefsComponent, typeof DocPagePatternSimpleComponent, typeof DocPagePatternSimpleDocDirective, typeof DocSampleComponent, typeof DocSampleApiComponent, typeof DocSectionComponent, typeof DocSectionCodeComponent, typeof DocSectionCodeCssTagDirective, typeof DocSectionCodeDescriptionTagDirective, typeof DocSectionCodeDocTagDirective, typeof DocSectionCodeHtmlTagDirective, typeof DocSectionCodeServiceTagDirective, typeof DocSectionCodeTsTagDirective, typeof EuiCodeHighlighterDirective, typeof LoremIpsumSampleComponent, typeof PlaygroundComponent];
|