@eui/showcase 21.0.0-alpha.8 → 21.0.0-next.1
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 +1202 -682
- package/fesm2022/eui-showcase.mjs.map +1 -1
- package/package.json +40 -41
- package/{index.d.ts → types/eui-showcase.d.ts} +345 -176
- package/types/eui-showcase.d.ts.map +1 -0
- package/index.d.ts.map +0 -1
|
@@ -1,30 +1,10 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { Signal, OnDestroy, OnInit, AfterViewInit, AfterContentInit, QueryList, ElementRef, OnChanges, SimpleChanges } from '@angular/core';
|
|
3
3
|
import { SafeResourceUrl, DomSanitizer } from '@angular/platform-browser';
|
|
4
|
-
import * as i20 from '@eui/components/eui-tabs';
|
|
5
4
|
import { EuiTabComponent, EuiTabsComponent } from '@eui/components/eui-tabs';
|
|
6
5
|
import { EuiAppShellService } from '@eui/core';
|
|
7
|
-
import * as i23 from '@eui/components/eui-dialog';
|
|
8
6
|
import { EuiDialogComponent } from '@eui/components/eui-dialog';
|
|
9
|
-
import
|
|
10
|
-
import * as i18 from '@eui/components/eui-card';
|
|
11
|
-
import * as i19 from '@eui/components/eui-button';
|
|
12
|
-
import * as i21 from '@eui/components/eui-page';
|
|
13
|
-
import * as i22 from '@eui/components/eui-chip';
|
|
14
|
-
import * as i24 from '@eui/components/eui-alert';
|
|
15
|
-
import * as i25 from '@eui/components/eui-block-content';
|
|
16
|
-
import * as i26 from '@eui/components/eui-badge';
|
|
17
|
-
import * as i27 from '@eui/components/eui-icon';
|
|
18
|
-
import * as i28 from '@eui/components/eui-label';
|
|
19
|
-
import * as i29 from '@eui/components/eui-avatar';
|
|
20
|
-
import * as i30 from 'ngx-markdown';
|
|
21
|
-
|
|
22
|
-
declare class EuiCodeHighlighterDirective implements AfterViewInit {
|
|
23
|
-
el: ElementRef<any>;
|
|
24
|
-
ngAfterViewInit(): void;
|
|
25
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<EuiCodeHighlighterDirective, never>;
|
|
26
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<EuiCodeHighlighterDirective, "[euiCode]", never, {}, {}, never, never, false, never>;
|
|
27
|
-
}
|
|
7
|
+
import { ProjectDependencies } from '@stackblitz/sdk';
|
|
28
8
|
|
|
29
9
|
/**
|
|
30
10
|
* This interface describes the basis of the configuration structure of the
|
|
@@ -68,6 +48,68 @@ declare class ConfigurationService<T extends Configuration> {
|
|
|
68
48
|
static ɵprov: i0.ɵɵInjectableDeclaration<ConfigurationService<any>>;
|
|
69
49
|
}
|
|
70
50
|
|
|
51
|
+
declare class DocPageCodeComponent {
|
|
52
|
+
codeFolder: string;
|
|
53
|
+
showcase: string;
|
|
54
|
+
onOpenCode(): void;
|
|
55
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocPageCodeComponent, never>;
|
|
56
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocPageCodeComponent, "eui-showcase-doc-page-code", never, { "codeFolder": { "alias": "codeFolder"; "required": false; }; "showcase": { "alias": "showcase"; "required": false; }; }, {}, never, never, true, never>;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
declare class DocPageDevGuideComponent implements OnDestroy, OnInit, AfterViewInit {
|
|
60
|
+
cssClass: string;
|
|
61
|
+
rootDocsFolder: string;
|
|
62
|
+
showcaseName: string;
|
|
63
|
+
markdown: string;
|
|
64
|
+
isFirst: boolean;
|
|
65
|
+
headers: Array<{
|
|
66
|
+
id: string;
|
|
67
|
+
label: string;
|
|
68
|
+
level: number;
|
|
69
|
+
}>;
|
|
70
|
+
fragmentId: string;
|
|
71
|
+
private subscription;
|
|
72
|
+
private markdownService;
|
|
73
|
+
private http;
|
|
74
|
+
private router;
|
|
75
|
+
private route;
|
|
76
|
+
ngOnInit(): void;
|
|
77
|
+
ngAfterViewInit(): void;
|
|
78
|
+
ngOnDestroy(): void;
|
|
79
|
+
onNavClick(fragmentId: string): void;
|
|
80
|
+
private _loadMdContent;
|
|
81
|
+
private _scrollToFragment;
|
|
82
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocPageDevGuideComponent, never>;
|
|
83
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocPageDevGuideComponent, "eui-showcase-doc-page-dev-guide", never, { "rootDocsFolder": { "alias": "rootDocsFolder"; "required": false; }; "showcaseName": { "alias": "showcaseName"; "required": false; }; }, {}, never, never, true, never>;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
declare class DocPageDevGuideComponentV2 implements OnDestroy, OnInit, AfterViewInit {
|
|
87
|
+
cssClass: string;
|
|
88
|
+
rootDocsFolder: string;
|
|
89
|
+
showcaseName: string;
|
|
90
|
+
markdown: string;
|
|
91
|
+
isFirst: boolean;
|
|
92
|
+
headers: Array<{
|
|
93
|
+
id: string;
|
|
94
|
+
label: string;
|
|
95
|
+
level: number;
|
|
96
|
+
}>;
|
|
97
|
+
fragmentId: string;
|
|
98
|
+
private subscription;
|
|
99
|
+
private markdownService;
|
|
100
|
+
private http;
|
|
101
|
+
private router;
|
|
102
|
+
private route;
|
|
103
|
+
ngOnInit(): void;
|
|
104
|
+
ngAfterViewInit(): void;
|
|
105
|
+
ngOnDestroy(): void;
|
|
106
|
+
onNavClick(fragmentId: string): void;
|
|
107
|
+
private _loadMdContent;
|
|
108
|
+
private _scrollToFragment;
|
|
109
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocPageDevGuideComponentV2, never>;
|
|
110
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocPageDevGuideComponentV2, "eui-showcase-doc-page-dev-guide-v2", never, { "rootDocsFolder": { "alias": "rootDocsFolder"; "required": false; }; "showcaseName": { "alias": "showcaseName"; "required": false; }; }, {}, never, never, true, never>;
|
|
111
|
+
}
|
|
112
|
+
|
|
71
113
|
declare class DocSampleComponent implements AfterContentInit {
|
|
72
114
|
id: string;
|
|
73
115
|
label: string;
|
|
@@ -104,7 +146,7 @@ declare class DocSampleComponent implements AfterContentInit {
|
|
|
104
146
|
*
|
|
105
147
|
* @param selected The selected tab component reference and its index in the tabs array.
|
|
106
148
|
*/
|
|
107
|
-
|
|
149
|
+
onTabActivate(selected: {
|
|
108
150
|
tab: EuiTabComponent;
|
|
109
151
|
index: number;
|
|
110
152
|
}): void;
|
|
@@ -126,7 +168,7 @@ declare class DocSampleComponent implements AfterContentInit {
|
|
|
126
168
|
private flatten;
|
|
127
169
|
private loadCodeFiles;
|
|
128
170
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocSampleComponent, never>;
|
|
129
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DocSampleComponent, "eui-showcase-doc-sample", never, { "id": { "alias": "id"; "required": false; }; "label": { "alias": "label"; "required": false; }; "category": { "alias": "category"; "required": false; }; "description": { "alias": "description"; "required": false; }; "defaultValue": { "alias": "defaultValue"; "required": false; }; "styleClass": { "alias": "styleClass"; "required": false; }; "renderPlayground": { "alias": "renderPlayground"; "required": false; }; "isCodeButtonVisible": { "alias": "isCodeButtonVisible"; "required": false; }; "isInnerSection": { "alias": "isInnerSection"; "required": false; }; }, {}, never, ["*"],
|
|
171
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocSampleComponent, "eui-showcase-doc-sample", never, { "id": { "alias": "id"; "required": false; }; "label": { "alias": "label"; "required": false; }; "category": { "alias": "category"; "required": false; }; "description": { "alias": "description"; "required": false; }; "defaultValue": { "alias": "defaultValue"; "required": false; }; "styleClass": { "alias": "styleClass"; "required": false; }; "renderPlayground": { "alias": "renderPlayground"; "required": false; }; "isCodeButtonVisible": { "alias": "isCodeButtonVisible"; "required": false; }; "isInnerSection": { "alias": "isInnerSection"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
130
172
|
static ngAcceptInputType_renderPlayground: unknown;
|
|
131
173
|
static ngAcceptInputType_isCodeButtonVisible: unknown;
|
|
132
174
|
static ngAcceptInputType_isInnerSection: unknown;
|
|
@@ -139,7 +181,7 @@ declare class DocSectionComponent implements AfterContentInit {
|
|
|
139
181
|
styleClass: string;
|
|
140
182
|
ngAfterContentInit(): void;
|
|
141
183
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocSectionComponent, never>;
|
|
142
|
-
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, ["*"],
|
|
184
|
+
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>;
|
|
143
185
|
}
|
|
144
186
|
|
|
145
187
|
declare class DocPageComponent implements OnInit, AfterViewInit {
|
|
@@ -194,7 +236,7 @@ declare class DocPageComponent implements OnInit, AfterViewInit {
|
|
|
194
236
|
ngAfterViewInit(): void;
|
|
195
237
|
getCategoryIndex(name: string): number;
|
|
196
238
|
onNavClick(fragmentId: string, tabIndex: number): void;
|
|
197
|
-
|
|
239
|
+
onTabActivate(event: {
|
|
198
240
|
tab: EuiTabComponent;
|
|
199
241
|
index: number;
|
|
200
242
|
}): void;
|
|
@@ -203,76 +245,139 @@ declare class DocPageComponent implements OnInit, AfterViewInit {
|
|
|
203
245
|
private _getApiUrl;
|
|
204
246
|
private _camelCaseString;
|
|
205
247
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocPageComponent, never>;
|
|
206
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DocPageComponent, "eui-showcase-doc-page", never, { "id": { "alias": "id"; "required": false; }; "label": { "alias": "label"; "required": false; }; "subLabel": { "alias": "subLabel"; "required": false; }; "isNotReady": { "alias": "isNotReady"; "required": false; }; "isDeprecated": { "alias": "isDeprecated"; "required": false; }; "isLegacy": { "alias": "isLegacy"; "required": false; }; "codeFolder": { "alias": "codeFolder"; "required": false; }; "showcase": { "alias": "showcase"; "required": false; }; "isNavigationVisible": { "alias": "isNavigationVisible"; "required": false; }; "hasApi": { "alias": "hasApi"; "required": false; }; "hasA11y": { "alias": "hasA11y"; "required": false; }; "customApiUrl": { "alias": "customApiUrl"; "required": false; }; }, {}, ["samples", "sections", "pageOverviewContent", "pageOverviewDefaultContent", "pageSamplesContent", "pageSectionsContent", "pageInteractiveContent", "pageAccessibilityContent", "pageApiContent", "pageThemingContent"], ["docPageOverview", "docPageOverviewDefault", "docPageSamples", "docPageAccessibility", "docPageTheming", "docPageInteractive", "docPageSections"],
|
|
248
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocPageComponent, "eui-showcase-doc-page", never, { "id": { "alias": "id"; "required": false; }; "label": { "alias": "label"; "required": false; }; "subLabel": { "alias": "subLabel"; "required": false; }; "isNotReady": { "alias": "isNotReady"; "required": false; }; "isDeprecated": { "alias": "isDeprecated"; "required": false; }; "isLegacy": { "alias": "isLegacy"; "required": false; }; "codeFolder": { "alias": "codeFolder"; "required": false; }; "showcase": { "alias": "showcase"; "required": false; }; "isNavigationVisible": { "alias": "isNavigationVisible"; "required": false; }; "hasApi": { "alias": "hasApi"; "required": false; }; "hasA11y": { "alias": "hasA11y"; "required": false; }; "customApiUrl": { "alias": "customApiUrl"; "required": false; }; }, {}, ["samples", "sections", "pageOverviewContent", "pageOverviewDefaultContent", "pageSamplesContent", "pageSectionsContent", "pageInteractiveContent", "pageAccessibilityContent", "pageApiContent", "pageThemingContent"], ["docPageOverview", "docPageOverviewDefault", "docPageSamples", "docPageAccessibility", "docPageTheming", "docPageInteractive", "docPageSections"], true, never>;
|
|
207
249
|
}
|
|
208
250
|
declare class DocPageOverviewContentDirective {
|
|
209
251
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocPageOverviewContentDirective, never>;
|
|
210
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageOverviewContentDirective, "docPageOverview", never, {}, {}, never, never,
|
|
252
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageOverviewContentDirective, "docPageOverview", never, {}, {}, never, never, true, never>;
|
|
211
253
|
}
|
|
212
254
|
declare class DocPageOverviewDefaultContentDirective {
|
|
213
255
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocPageOverviewDefaultContentDirective, never>;
|
|
214
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageOverviewDefaultContentDirective, "docPageOverviewDefault", never, {}, {}, never, never,
|
|
256
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageOverviewDefaultContentDirective, "docPageOverviewDefault", never, {}, {}, never, never, true, never>;
|
|
215
257
|
}
|
|
216
258
|
declare class DocPageInteractiveContentDirective {
|
|
217
259
|
title: string;
|
|
218
260
|
subTitle: string;
|
|
219
261
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocPageInteractiveContentDirective, never>;
|
|
220
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageInteractiveContentDirective, "docPageInteractive", never, { "title": { "alias": "title"; "required": false; }; "subTitle": { "alias": "subTitle"; "required": false; }; }, {}, never, never,
|
|
262
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageInteractiveContentDirective, "docPageInteractive", never, { "title": { "alias": "title"; "required": false; }; "subTitle": { "alias": "subTitle"; "required": false; }; }, {}, never, never, true, never>;
|
|
221
263
|
}
|
|
222
264
|
declare class DocPageSamplesContentDirective {
|
|
223
265
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocPageSamplesContentDirective, never>;
|
|
224
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageSamplesContentDirective, "docPageSamples", never, {}, {}, never, never,
|
|
266
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageSamplesContentDirective, "docPageSamples", never, {}, {}, never, never, true, never>;
|
|
225
267
|
}
|
|
226
268
|
declare class DocPageSectionsContentDirective {
|
|
227
269
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocPageSectionsContentDirective, never>;
|
|
228
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageSectionsContentDirective, "docPageSections", never, {}, {}, never, never,
|
|
270
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageSectionsContentDirective, "docPageSections", never, {}, {}, never, never, true, never>;
|
|
229
271
|
}
|
|
230
272
|
declare class DocPageAccessibilityContentDirective {
|
|
231
273
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocPageAccessibilityContentDirective, never>;
|
|
232
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageAccessibilityContentDirective, "docPageAccessibility", never, {}, {}, never, never,
|
|
274
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageAccessibilityContentDirective, "docPageAccessibility", never, {}, {}, never, never, true, never>;
|
|
233
275
|
}
|
|
234
276
|
declare class DocPageApiContentDirective {
|
|
235
277
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocPageApiContentDirective, never>;
|
|
236
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageApiContentDirective, "docPageApi", never, {}, {}, never, never,
|
|
278
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageApiContentDirective, "docPageApi", never, {}, {}, never, never, true, never>;
|
|
237
279
|
}
|
|
238
280
|
declare class DocPageThemingContentDirective {
|
|
239
281
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocPageThemingContentDirective, never>;
|
|
240
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageThemingContentDirective, "docPageTheming", never, {}, {}, never, never,
|
|
282
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageThemingContentDirective, "docPageTheming", never, {}, {}, never, never, true, never>;
|
|
241
283
|
}
|
|
242
284
|
|
|
243
|
-
declare class
|
|
285
|
+
declare class DocPageComponentV2 implements OnInit, AfterViewInit {
|
|
244
286
|
cssClass: string;
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
287
|
+
id: any;
|
|
288
|
+
label: any;
|
|
289
|
+
subLabel: string;
|
|
290
|
+
isNotReady: boolean;
|
|
291
|
+
isDeprecated: boolean;
|
|
292
|
+
isLegacy: boolean;
|
|
293
|
+
codeFolder: string;
|
|
294
|
+
showcase: string;
|
|
295
|
+
isNavigationVisible: boolean;
|
|
296
|
+
hasApi: boolean;
|
|
297
|
+
hasA11y: boolean;
|
|
298
|
+
customApiUrl: string;
|
|
299
|
+
stateTypeClass: any;
|
|
300
|
+
stateLabel: any;
|
|
301
|
+
cmp: any;
|
|
302
|
+
fragmentId: any;
|
|
303
|
+
cmpImportModule: any;
|
|
304
|
+
cmpImportStandalone: any;
|
|
305
|
+
cmpImportStandaloneCmp: any;
|
|
306
|
+
cmpStandalone: any;
|
|
307
|
+
appMetadata: any;
|
|
308
|
+
apiUrlSafe: SafeResourceUrl;
|
|
309
|
+
apiUrl: string;
|
|
310
|
+
iFrameContent: any;
|
|
311
|
+
isLoading: boolean;
|
|
312
|
+
isNavClicked: boolean;
|
|
313
|
+
hasCategories: boolean;
|
|
314
|
+
categories: any[];
|
|
315
|
+
samples: QueryList<DocSampleComponent>;
|
|
316
|
+
sections: QueryList<DocSectionComponent>;
|
|
317
|
+
pageOverviewContent: QueryList<DocPageOverviewContentDirectiveV2>;
|
|
318
|
+
pageOverviewDefaultContent: QueryList<DocPageOverviewDefaultContentDirectiveV2>;
|
|
319
|
+
pageSamplesContent: QueryList<DocPageSamplesContentDirectiveV2>;
|
|
320
|
+
pageSectionsContent: QueryList<DocPageSectionsContentDirectiveV2>;
|
|
321
|
+
pageInteractiveContent: QueryList<DocPageInteractiveContentDirectiveV2>;
|
|
322
|
+
pageAccessibilityContent: QueryList<DocPageAccessibilityContentDirectiveV2>;
|
|
323
|
+
pageApiContent: QueryList<DocPageApiContentDirectiveV2>;
|
|
324
|
+
pageThemingContent: QueryList<DocPageThemingContentDirectiveV2>;
|
|
325
|
+
tabsContent: EuiTabsComponent;
|
|
326
|
+
sanitizer: DomSanitizer;
|
|
327
|
+
private TABS_DEF;
|
|
328
|
+
private CATEGORIES_DEF;
|
|
329
|
+
private location;
|
|
258
330
|
private router;
|
|
259
331
|
private route;
|
|
332
|
+
private asService;
|
|
260
333
|
ngOnInit(): void;
|
|
261
334
|
ngAfterViewInit(): void;
|
|
262
|
-
|
|
263
|
-
onNavClick(fragmentId: string): void;
|
|
264
|
-
|
|
335
|
+
getCategoryIndex(name: string): number;
|
|
336
|
+
onNavClick(fragmentId: string, tabIndex: number): void;
|
|
337
|
+
onTabActivate(event: {
|
|
338
|
+
tab: EuiTabComponent;
|
|
339
|
+
index: number;
|
|
340
|
+
}): void;
|
|
265
341
|
private _scrollToFragment;
|
|
266
|
-
|
|
267
|
-
|
|
342
|
+
private _getComponentStatus;
|
|
343
|
+
private _getApiUrl;
|
|
344
|
+
private _camelCaseString;
|
|
345
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocPageComponentV2, never>;
|
|
346
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocPageComponentV2, "eui-showcase-doc-page-v2", never, { "id": { "alias": "id"; "required": false; }; "label": { "alias": "label"; "required": false; }; "subLabel": { "alias": "subLabel"; "required": false; }; "isNotReady": { "alias": "isNotReady"; "required": false; }; "isDeprecated": { "alias": "isDeprecated"; "required": false; }; "isLegacy": { "alias": "isLegacy"; "required": false; }; "codeFolder": { "alias": "codeFolder"; "required": false; }; "showcase": { "alias": "showcase"; "required": false; }; "isNavigationVisible": { "alias": "isNavigationVisible"; "required": false; }; "hasApi": { "alias": "hasApi"; "required": false; }; "hasA11y": { "alias": "hasA11y"; "required": false; }; "customApiUrl": { "alias": "customApiUrl"; "required": false; }; }, {}, ["samples", "sections", "pageOverviewContent", "pageOverviewDefaultContent", "pageSamplesContent", "pageSectionsContent", "pageInteractiveContent", "pageAccessibilityContent", "pageApiContent", "pageThemingContent"], ["docPageOverview", "docPageOverviewDefault", "docPageSamples", "docPageAccessibility", "docPageTheming", "docPageInteractive", "docPageSections"], true, never>;
|
|
268
347
|
}
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
275
|
-
static
|
|
348
|
+
declare class DocPageOverviewContentDirectiveV2 {
|
|
349
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocPageOverviewContentDirectiveV2, never>;
|
|
350
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageOverviewContentDirectiveV2, "docPageOverviewV2", never, {}, {}, never, never, true, never>;
|
|
351
|
+
}
|
|
352
|
+
declare class DocPageOverviewDefaultContentDirectiveV2 {
|
|
353
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocPageOverviewDefaultContentDirectiveV2, never>;
|
|
354
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageOverviewDefaultContentDirectiveV2, "docPageOverviewDefaultV2", never, {}, {}, never, never, true, never>;
|
|
355
|
+
}
|
|
356
|
+
declare class DocPageInteractiveContentDirectiveV2 {
|
|
357
|
+
title: string;
|
|
358
|
+
subTitle: string;
|
|
359
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocPageInteractiveContentDirectiveV2, never>;
|
|
360
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageInteractiveContentDirectiveV2, "docPageInteractiveV2", never, { "title": { "alias": "title"; "required": false; }; "subTitle": { "alias": "subTitle"; "required": false; }; }, {}, never, never, true, never>;
|
|
361
|
+
}
|
|
362
|
+
declare class DocPageSamplesContentDirectiveV2 {
|
|
363
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocPageSamplesContentDirectiveV2, never>;
|
|
364
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageSamplesContentDirectiveV2, "docPageSamplesV2", never, {}, {}, never, never, true, never>;
|
|
365
|
+
}
|
|
366
|
+
declare class DocPageSectionsContentDirectiveV2 {
|
|
367
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocPageSectionsContentDirectiveV2, never>;
|
|
368
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageSectionsContentDirectiveV2, "docPageSectionsV2", never, {}, {}, never, never, true, never>;
|
|
369
|
+
}
|
|
370
|
+
declare class DocPageAccessibilityContentDirectiveV2 {
|
|
371
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocPageAccessibilityContentDirectiveV2, never>;
|
|
372
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageAccessibilityContentDirectiveV2, "docPageAccessibilityV2", never, {}, {}, never, never, true, never>;
|
|
373
|
+
}
|
|
374
|
+
declare class DocPageApiContentDirectiveV2 {
|
|
375
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocPageApiContentDirectiveV2, never>;
|
|
376
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageApiContentDirectiveV2, "docPageApiV2", never, {}, {}, never, never, true, never>;
|
|
377
|
+
}
|
|
378
|
+
declare class DocPageThemingContentDirectiveV2 {
|
|
379
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocPageThemingContentDirectiveV2, never>;
|
|
380
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageThemingContentDirectiveV2, "docPageThemingV2", never, {}, {}, never, never, true, never>;
|
|
276
381
|
}
|
|
277
382
|
|
|
278
383
|
declare class DocPageCodeFabComponent {
|
|
@@ -285,7 +390,7 @@ declare class DocPageCodeFabComponent {
|
|
|
285
390
|
onClose(): void;
|
|
286
391
|
onOpenCode(): void;
|
|
287
392
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocPageCodeFabComponent, never>;
|
|
288
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DocPageCodeFabComponent, "eui-showcase-doc-page-code-fab", never, { "codeFolder": { "alias": "codeFolder"; "required": false; }; "showcase": { "alias": "showcase"; "required": false; }; "hasContentDialog": { "alias": "hasContentDialog"; "required": false; }; }, {}, never, ["*"],
|
|
393
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocPageCodeFabComponent, "eui-showcase-doc-page-code-fab", never, { "codeFolder": { "alias": "codeFolder"; "required": false; }; "showcase": { "alias": "showcase"; "required": false; }; "hasContentDialog": { "alias": "hasContentDialog"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
289
394
|
}
|
|
290
395
|
|
|
291
396
|
declare class DocPageCodeModalComponent {
|
|
@@ -295,91 +400,16 @@ declare class DocPageCodeModalComponent {
|
|
|
295
400
|
toggleCode(): void;
|
|
296
401
|
onClose(): void;
|
|
297
402
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocPageCodeModalComponent, never>;
|
|
298
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DocPageCodeModalComponent, "eui-showcase-doc-page-code-modal", never, { "width": { "alias": "width"; "required": false; }; }, {}, never, ["*"],
|
|
299
|
-
}
|
|
300
|
-
|
|
301
|
-
declare class DocSampleApiComponent {
|
|
302
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DocSampleApiComponent, never>;
|
|
303
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DocSampleApiComponent, "eui-showcase-doc-sample-api", never, {}, {}, never, never, false, never>;
|
|
304
|
-
}
|
|
305
|
-
|
|
306
|
-
declare class DocSectionCodeComponent {
|
|
307
|
-
label: string;
|
|
308
|
-
content: string;
|
|
309
|
-
styleClass: string;
|
|
310
|
-
versionLabel: string;
|
|
311
|
-
isDeprecated: boolean;
|
|
312
|
-
isCodeExpanded: boolean;
|
|
313
|
-
sectionDescription: QueryList<DocSectionCodeDescriptionTagDirective>;
|
|
314
|
-
sectionCodeHTML: QueryList<DocSectionCodeHtmlTagDirective>;
|
|
315
|
-
sectionCodeTS: QueryList<DocSectionCodeTsTagDirective>;
|
|
316
|
-
sectionCodeSERVICE: QueryList<DocSectionCodeServiceTagDirective>;
|
|
317
|
-
sectionCodeCSS: QueryList<DocSectionCodeCssTagDirective>;
|
|
318
|
-
sectionCodeDOC: QueryList<DocSectionCodeDocTagDirective>;
|
|
319
|
-
toggleCode(): void;
|
|
320
|
-
isDefined(object: any): boolean;
|
|
321
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DocSectionCodeComponent, never>;
|
|
322
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DocSectionCodeComponent, "eui-showcase-doc-section-code", never, { "label": { "alias": "label"; "required": false; }; "content": { "alias": "content"; "required": false; }; "styleClass": { "alias": "styleClass"; "required": false; }; "versionLabel": { "alias": "versionLabel"; "required": false; }; "isDeprecated": { "alias": "isDeprecated"; "required": false; }; "isCodeExpanded": { "alias": "isCodeExpanded"; "required": false; }; }, {}, ["sectionDescription", "sectionCodeHTML", "sectionCodeTS", "sectionCodeSERVICE", "sectionCodeCSS", "sectionCodeDOC"], ["sectionDescription", "sectionCodeHTML", "sectionCodeTS", "sectionCodeSERVICE", "sectionCodeCSS", "sectionCodeDOC", "*"], false, never>;
|
|
323
|
-
}
|
|
324
|
-
declare class DocSectionCodeDescriptionTagDirective {
|
|
325
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DocSectionCodeDescriptionTagDirective, never>;
|
|
326
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DocSectionCodeDescriptionTagDirective, "sectionDescription", never, {}, {}, never, never, false, never>;
|
|
327
|
-
}
|
|
328
|
-
declare class DocSectionCodeHtmlTagDirective {
|
|
329
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DocSectionCodeHtmlTagDirective, never>;
|
|
330
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DocSectionCodeHtmlTagDirective, "sectionCodeHTML", never, {}, {}, never, never, false, never>;
|
|
331
|
-
}
|
|
332
|
-
declare class DocSectionCodeTsTagDirective {
|
|
333
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DocSectionCodeTsTagDirective, never>;
|
|
334
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DocSectionCodeTsTagDirective, "sectionCodeTS", never, {}, {}, never, never, false, never>;
|
|
335
|
-
}
|
|
336
|
-
declare class DocSectionCodeServiceTagDirective {
|
|
337
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DocSectionCodeServiceTagDirective, never>;
|
|
338
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DocSectionCodeServiceTagDirective, "sectionCodeSERVICE", never, {}, {}, never, never, false, never>;
|
|
339
|
-
}
|
|
340
|
-
declare class DocSectionCodeCssTagDirective {
|
|
341
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DocSectionCodeCssTagDirective, never>;
|
|
342
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DocSectionCodeCssTagDirective, "sectionCodeCSS", never, {}, {}, never, never, false, never>;
|
|
343
|
-
}
|
|
344
|
-
declare class DocSectionCodeDocTagDirective {
|
|
345
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DocSectionCodeDocTagDirective, never>;
|
|
346
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DocSectionCodeDocTagDirective, "sectionCodeDOC", never, {}, {}, never, never, false, never>;
|
|
347
|
-
}
|
|
348
|
-
|
|
349
|
-
declare class LoremIpsumSampleComponent {
|
|
350
|
-
textSize: 'small' | 'medium' | 'large';
|
|
351
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LoremIpsumSampleComponent, never>;
|
|
352
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LoremIpsumSampleComponent, "eui-showcase-doc-lorem-ipsum", never, { "textSize": { "alias": "textSize"; "required": false; }; }, {}, never, never, false, never>;
|
|
353
|
-
}
|
|
354
|
-
|
|
355
|
-
declare class PlaygroundComponent implements OnChanges {
|
|
356
|
-
title: string;
|
|
357
|
-
htmlContent: string;
|
|
358
|
-
sampleId: string;
|
|
359
|
-
typescriptContent: string;
|
|
360
|
-
activated: boolean;
|
|
361
|
-
modules: [{
|
|
362
|
-
name: string;
|
|
363
|
-
path: string;
|
|
364
|
-
}];
|
|
365
|
-
isLoaded: boolean;
|
|
366
|
-
private stackblitzElWrapper;
|
|
367
|
-
/** instance that holds the stackblitz VM object */
|
|
368
|
-
private stackblitzInstance;
|
|
369
|
-
private sb;
|
|
370
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
371
|
-
private initStackblitz;
|
|
372
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<PlaygroundComponent, never>;
|
|
373
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PlaygroundComponent, "eui-playground", never, { "title": { "alias": "title"; "required": false; }; "htmlContent": { "alias": "htmlContent"; "required": false; }; "sampleId": { "alias": "sampleId"; "required": false; }; "typescriptContent": { "alias": "typescriptContent"; "required": false; }; "activated": { "alias": "activated"; "required": false; }; "modules": { "alias": "modules"; "required": false; }; }, {}, never, never, false, never>;
|
|
403
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocPageCodeModalComponent, "eui-showcase-doc-page-code-modal", never, { "width": { "alias": "width"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
374
404
|
}
|
|
375
405
|
|
|
376
406
|
declare class DocPagePatternSampleDirective {
|
|
377
407
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocPagePatternSampleDirective, never>;
|
|
378
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPagePatternSampleDirective, "docPagePatternSample", never, {}, {}, never, never,
|
|
408
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPagePatternSampleDirective, "docPagePatternSample", never, {}, {}, never, never, true, never>;
|
|
379
409
|
}
|
|
380
410
|
declare class DocPagePatternDocDirective {
|
|
381
411
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocPagePatternDocDirective, never>;
|
|
382
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPagePatternDocDirective, "docPagePatternDoc", never, {}, {}, never, never,
|
|
412
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPagePatternDocDirective, "docPagePatternDoc", never, {}, {}, never, never, true, never>;
|
|
383
413
|
}
|
|
384
414
|
declare class DocPagePatternComponent {
|
|
385
415
|
get cssClasses(): string;
|
|
@@ -402,18 +432,50 @@ declare class DocPagePatternComponent {
|
|
|
402
432
|
private sanitizer;
|
|
403
433
|
ngOnInit(): void;
|
|
404
434
|
onNavigateToCode(event: any): void;
|
|
405
|
-
|
|
435
|
+
onTabActivate(event: {
|
|
406
436
|
tab: EuiTabComponent;
|
|
407
437
|
index: number;
|
|
408
438
|
}): void;
|
|
409
439
|
gotoTop(): void;
|
|
410
440
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocPagePatternComponent, never>;
|
|
411
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DocPagePatternComponent, "eui-showcase-doc-page-pattern", never, { "id": { "alias": "id"; "required": false; }; "label": { "alias": "label"; "required": false; }; "anatomyImage": { "alias": "anatomyImage"; "required": false; }; "docEntries": { "alias": "docEntries"; "required": false; }; "dos": { "alias": "dos"; "required": false; }; "donts": { "alias": "donts"; "required": false; }; "sourceUrl": { "alias": "sourceUrl"; "required": false; }; "figmaUrl": { "alias": "figmaUrl"; "required": false; }; "figmaEmbedSrc": { "alias": "figmaEmbedSrc"; "required": false; }; }, {}, ["sampleContent", "docContent"], ["docPagePatternDoc", "docPagePatternSample"],
|
|
441
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocPagePatternComponent, "eui-showcase-doc-page-pattern", never, { "id": { "alias": "id"; "required": false; }; "label": { "alias": "label"; "required": false; }; "anatomyImage": { "alias": "anatomyImage"; "required": false; }; "docEntries": { "alias": "docEntries"; "required": false; }; "dos": { "alias": "dos"; "required": false; }; "donts": { "alias": "donts"; "required": false; }; "sourceUrl": { "alias": "sourceUrl"; "required": false; }; "figmaUrl": { "alias": "figmaUrl"; "required": false; }; "figmaEmbedSrc": { "alias": "figmaEmbedSrc"; "required": false; }; }, {}, ["sampleContent", "docContent"], ["docPagePatternDoc", "docPagePatternSample"], true, never>;
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
declare class DocPagePatternSampleRefsComponent {
|
|
445
|
+
string: string;
|
|
446
|
+
docEntries: any[];
|
|
447
|
+
codeFolder: string;
|
|
448
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocPagePatternSampleRefsComponent, never>;
|
|
449
|
+
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>;
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
declare class DocPagePatternSampleDocDirective {
|
|
453
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocPagePatternSampleDocDirective, never>;
|
|
454
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPagePatternSampleDocDirective, "eui-showcase-doc-pattern-sample-doc", never, {}, {}, never, never, true, never>;
|
|
455
|
+
}
|
|
456
|
+
declare class DocPagePatternSampleComponent {
|
|
457
|
+
get cssClasses(): string;
|
|
458
|
+
label: string;
|
|
459
|
+
docEntries: any[];
|
|
460
|
+
codeFolder: string;
|
|
461
|
+
refsImage: string;
|
|
462
|
+
refsImage2: string;
|
|
463
|
+
figmaLink: string;
|
|
464
|
+
isSmall: boolean;
|
|
465
|
+
isTiny: boolean;
|
|
466
|
+
isMedium: boolean;
|
|
467
|
+
isLarge: boolean;
|
|
468
|
+
isExtraLarge: boolean;
|
|
469
|
+
hasAutoHeight: boolean;
|
|
470
|
+
docContent: QueryList<DocPagePatternSampleDocDirective>;
|
|
471
|
+
openCode(): void;
|
|
472
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocPagePatternSampleComponent, never>;
|
|
473
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocPagePatternSampleComponent, "eui-showcase-doc-pattern-sample", never, { "label": { "alias": "label"; "required": false; }; "docEntries": { "alias": "docEntries"; "required": false; }; "codeFolder": { "alias": "codeFolder"; "required": false; }; "refsImage": { "alias": "refsImage"; "required": false; }; "refsImage2": { "alias": "refsImage2"; "required": false; }; "figmaLink": { "alias": "figmaLink"; "required": false; }; "isSmall": { "alias": "isSmall"; "required": false; }; "isTiny": { "alias": "isTiny"; "required": false; }; "isMedium": { "alias": "isMedium"; "required": false; }; "isLarge": { "alias": "isLarge"; "required": false; }; "isExtraLarge": { "alias": "isExtraLarge"; "required": false; }; "hasAutoHeight": { "alias": "hasAutoHeight"; "required": false; }; }, {}, ["docContent"], ["eui-showcase-doc-pattern-sample-doc", "*"], true, never>;
|
|
412
474
|
}
|
|
413
475
|
|
|
414
476
|
declare class DocPagePatternSimpleDocDirective {
|
|
415
477
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocPagePatternSimpleDocDirective, never>;
|
|
416
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPagePatternSimpleDocDirective, "docPagePatternDoc", never, {}, {}, never, never,
|
|
478
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPagePatternSimpleDocDirective, "docPagePatternDoc", never, {}, {}, never, never, true, never>;
|
|
417
479
|
}
|
|
418
480
|
declare class DocPagePatternSimpleComponent {
|
|
419
481
|
get cssClasses(): string;
|
|
@@ -441,45 +503,89 @@ declare class DocPagePatternSimpleComponent {
|
|
|
441
503
|
}): void;
|
|
442
504
|
gotoTop(): void;
|
|
443
505
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocPagePatternSimpleComponent, never>;
|
|
444
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DocPagePatternSimpleComponent, "eui-showcase-doc-page-pattern-simple", never, { "id": { "alias": "id"; "required": false; }; "label": { "alias": "label"; "required": false; }; "anatomyImage": { "alias": "anatomyImage"; "required": false; }; "docEntries": { "alias": "docEntries"; "required": false; }; "dos": { "alias": "dos"; "required": false; }; "donts": { "alias": "donts"; "required": false; }; "sourceUrl": { "alias": "sourceUrl"; "required": false; }; "figmaUrl": { "alias": "figmaUrl"; "required": false; }; "figmaEmbedSrc": { "alias": "figmaEmbedSrc"; "required": false; }; }, {}, ["docContent"], ["docPagePatternDoc"],
|
|
506
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocPagePatternSimpleComponent, "eui-showcase-doc-page-pattern-simple", never, { "id": { "alias": "id"; "required": false; }; "label": { "alias": "label"; "required": false; }; "anatomyImage": { "alias": "anatomyImage"; "required": false; }; "docEntries": { "alias": "docEntries"; "required": false; }; "dos": { "alias": "dos"; "required": false; }; "donts": { "alias": "donts"; "required": false; }; "sourceUrl": { "alias": "sourceUrl"; "required": false; }; "figmaUrl": { "alias": "figmaUrl"; "required": false; }; "figmaEmbedSrc": { "alias": "figmaEmbedSrc"; "required": false; }; }, {}, ["docContent"], ["docPagePatternDoc"], true, never>;
|
|
445
507
|
}
|
|
446
508
|
|
|
447
|
-
declare class
|
|
448
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
449
|
-
static
|
|
509
|
+
declare class DocSampleApiComponent {
|
|
510
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocSampleApiComponent, never>;
|
|
511
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocSampleApiComponent, "eui-showcase-doc-sample-api", never, {}, {}, never, never, true, never>;
|
|
450
512
|
}
|
|
451
|
-
|
|
452
|
-
|
|
513
|
+
|
|
514
|
+
declare class DocSectionCodeComponent {
|
|
453
515
|
label: string;
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
468
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
516
|
+
content: string;
|
|
517
|
+
styleClass: string;
|
|
518
|
+
versionLabel: string;
|
|
519
|
+
isDeprecated: boolean;
|
|
520
|
+
isCodeExpanded: boolean;
|
|
521
|
+
sectionDescription: QueryList<DocSectionCodeDescriptionTagDirective>;
|
|
522
|
+
sectionCodeHTML: QueryList<DocSectionCodeHtmlTagDirective>;
|
|
523
|
+
sectionCodeTS: QueryList<DocSectionCodeTsTagDirective>;
|
|
524
|
+
sectionCodeSERVICE: QueryList<DocSectionCodeServiceTagDirective>;
|
|
525
|
+
sectionCodeCSS: QueryList<DocSectionCodeCssTagDirective>;
|
|
526
|
+
sectionCodeDOC: QueryList<DocSectionCodeDocTagDirective>;
|
|
527
|
+
toggleCode(): void;
|
|
528
|
+
isDefined(object: any): boolean;
|
|
529
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocSectionCodeComponent, never>;
|
|
530
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocSectionCodeComponent, "eui-showcase-doc-section-code", never, { "label": { "alias": "label"; "required": false; }; "content": { "alias": "content"; "required": false; }; "styleClass": { "alias": "styleClass"; "required": false; }; "versionLabel": { "alias": "versionLabel"; "required": false; }; "isDeprecated": { "alias": "isDeprecated"; "required": false; }; "isCodeExpanded": { "alias": "isCodeExpanded"; "required": false; }; }, {}, ["sectionDescription", "sectionCodeHTML", "sectionCodeTS", "sectionCodeSERVICE", "sectionCodeCSS", "sectionCodeDOC"], ["sectionDescription", "sectionCodeHTML", "sectionCodeTS", "sectionCodeSERVICE", "sectionCodeCSS", "sectionCodeDOC", "*"], true, never>;
|
|
531
|
+
}
|
|
532
|
+
declare class DocSectionCodeDescriptionTagDirective {
|
|
533
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocSectionCodeDescriptionTagDirective, never>;
|
|
534
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocSectionCodeDescriptionTagDirective, "sectionDescription", never, {}, {}, never, never, true, never>;
|
|
535
|
+
}
|
|
536
|
+
declare class DocSectionCodeHtmlTagDirective {
|
|
537
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocSectionCodeHtmlTagDirective, never>;
|
|
538
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocSectionCodeHtmlTagDirective, "sectionCodeHTML", never, {}, {}, never, never, true, never>;
|
|
539
|
+
}
|
|
540
|
+
declare class DocSectionCodeTsTagDirective {
|
|
541
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocSectionCodeTsTagDirective, never>;
|
|
542
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocSectionCodeTsTagDirective, "sectionCodeTS", never, {}, {}, never, never, true, never>;
|
|
543
|
+
}
|
|
544
|
+
declare class DocSectionCodeServiceTagDirective {
|
|
545
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocSectionCodeServiceTagDirective, never>;
|
|
546
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocSectionCodeServiceTagDirective, "sectionCodeSERVICE", never, {}, {}, never, never, true, never>;
|
|
547
|
+
}
|
|
548
|
+
declare class DocSectionCodeCssTagDirective {
|
|
549
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocSectionCodeCssTagDirective, never>;
|
|
550
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocSectionCodeCssTagDirective, "sectionCodeCSS", never, {}, {}, never, never, true, never>;
|
|
551
|
+
}
|
|
552
|
+
declare class DocSectionCodeDocTagDirective {
|
|
553
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocSectionCodeDocTagDirective, never>;
|
|
554
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocSectionCodeDocTagDirective, "sectionCodeDOC", never, {}, {}, never, never, true, never>;
|
|
469
555
|
}
|
|
470
556
|
|
|
471
|
-
declare class
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
static
|
|
476
|
-
|
|
557
|
+
declare class EuiCodeHighlighterDirective implements AfterViewInit {
|
|
558
|
+
el: ElementRef<any>;
|
|
559
|
+
ngAfterViewInit(): void;
|
|
560
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EuiCodeHighlighterDirective, never>;
|
|
561
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EuiCodeHighlighterDirective, "[euiCode]", never, {}, {}, never, never, true, never>;
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
declare class LoremIpsumSampleComponent {
|
|
565
|
+
textSize: 'small' | 'medium' | 'large';
|
|
566
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoremIpsumSampleComponent, never>;
|
|
567
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoremIpsumSampleComponent, "eui-showcase-doc-lorem-ipsum", never, { "textSize": { "alias": "textSize"; "required": false; }; }, {}, never, never, true, never>;
|
|
477
568
|
}
|
|
478
569
|
|
|
479
|
-
declare class
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
570
|
+
declare class PlaygroundComponent implements OnChanges {
|
|
571
|
+
title: string;
|
|
572
|
+
htmlContent: string;
|
|
573
|
+
sampleId: string;
|
|
574
|
+
typescriptContent: string;
|
|
575
|
+
activated: boolean;
|
|
576
|
+
modules: [{
|
|
577
|
+
name: string;
|
|
578
|
+
path: string;
|
|
579
|
+
}];
|
|
580
|
+
isLoaded: boolean;
|
|
581
|
+
private stackblitzElWrapper;
|
|
582
|
+
/** instance that holds the stackblitz VM object */
|
|
583
|
+
private stackblitzInstance;
|
|
584
|
+
private sb;
|
|
585
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
586
|
+
private initStackblitz;
|
|
587
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PlaygroundComponent, never>;
|
|
588
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PlaygroundComponent, "eui-playground", never, { "title": { "alias": "title"; "required": false; }; "htmlContent": { "alias": "htmlContent"; "required": false; }; "sampleId": { "alias": "sampleId"; "required": false; }; "typescriptContent": { "alias": "typescriptContent"; "required": false; }; "activated": { "alias": "activated"; "required": false; }; "modules": { "alias": "modules"; "required": false; }; }, {}, never, never, true, never>;
|
|
483
589
|
}
|
|
484
590
|
|
|
485
591
|
declare const polyfillsFile = "import 'zone.js';";
|
|
@@ -506,6 +612,69 @@ declare const PACKAGE_JSON: {
|
|
|
506
612
|
};
|
|
507
613
|
declare const tsConfig = "\n/* To learn more about this file see: https://angular.io/config/tsconfig. */\n{\n \"compileOnSave\": false,\n \"compilerOptions\": {\n \"outDir\": \"./out-tsc/app\",\n \"target\": \"ES2022\",\n \"module\": \"ES2022\",\n \"useDefineForClassFields\": false,\n \"lib\": [\"ES2022\", \"dom\"],\n \"declaration\": true,\n \"declarationMap\": true,\n \"inlineSources\": true,\n \"emitDecoratorMetadata\": false,\n \"types\": [],\n \"esModuleInterop\": true,\n \"sourceMap\": true,\n \"experimentalDecorators\": true,\n \"moduleResolution\": \"bundler\",\n \"importHelpers\": true\n },\n \"angularCompilerOptions\": {\n \"compilationMode\": \"partial\",\n \"enableI18nLegacyMessageIdFormat\": false,\n \"strictInputAccessModifiers\": true,\n \"strictMetadataEmit\": true,\n \"strictTemplates\": true,\n \"annotateForClosureCompiler\": true,\n \"skipTemplateCodegen\": true,\n \"fullTemplateTypeCheck\": true\n },\n \"exclude\": [\"src/test.ts\", \"**/*.spec.ts\"],\n \"files\": [\"src/main.ts\"],\n \"include\": [\"src/**/*.d.ts\"]\n}";
|
|
508
614
|
|
|
509
|
-
|
|
615
|
+
declare class StackblitzService {
|
|
616
|
+
private http;
|
|
617
|
+
/**
|
|
618
|
+
* extract the name of the component class name and selector name from the typescript content
|
|
619
|
+
*
|
|
620
|
+
* @param contents
|
|
621
|
+
* @private
|
|
622
|
+
*/
|
|
623
|
+
extractComponentMetadata(contents: string): {
|
|
624
|
+
selector: string;
|
|
625
|
+
className: string;
|
|
626
|
+
};
|
|
627
|
+
/**
|
|
628
|
+
* extract module class name from the typescript content
|
|
629
|
+
*
|
|
630
|
+
* @param contents
|
|
631
|
+
* @private
|
|
632
|
+
*/
|
|
633
|
+
extractModuleName(contents: string): string;
|
|
634
|
+
/**
|
|
635
|
+
* extract the name of the component class name and selector name from the typescript content
|
|
636
|
+
*
|
|
637
|
+
* @param contents
|
|
638
|
+
* @private
|
|
639
|
+
*/
|
|
640
|
+
extractComponentName(contents: string): string;
|
|
641
|
+
appendVitalNgModules(contents: string): string;
|
|
642
|
+
/**
|
|
643
|
+
* Open a stackblitz project in a new browser TAB with the given html and typescript content
|
|
644
|
+
* @param htmlContent
|
|
645
|
+
* @param typescriptContent
|
|
646
|
+
* @param title
|
|
647
|
+
* @param sampleId
|
|
648
|
+
*/
|
|
649
|
+
openStackBlitz(htmlContent: string, typescriptContent: string, title: string, sampleId: string): void;
|
|
650
|
+
/**
|
|
651
|
+
* Retrieve only the dependencies that stackblitz will need filtered from @eui/deps-base
|
|
652
|
+
*
|
|
653
|
+
* @private
|
|
654
|
+
*/
|
|
655
|
+
getStackblitzDependencies(): Promise<{
|
|
656
|
+
dependencies: ProjectDependencies;
|
|
657
|
+
devDependencies: ProjectDependencies;
|
|
658
|
+
}>;
|
|
659
|
+
/**
|
|
660
|
+
* Retrieve the dependencies from the package.json file of @eui/deps-base for the given version.
|
|
661
|
+
*
|
|
662
|
+
* @param version
|
|
663
|
+
* @private
|
|
664
|
+
*/
|
|
665
|
+
private retrievePackageDependencies;
|
|
666
|
+
/**
|
|
667
|
+
* Retrieve the eUI version used to build the showcase from application app-metadata.json
|
|
668
|
+
*
|
|
669
|
+
* @private
|
|
670
|
+
*/
|
|
671
|
+
private getCurrentShowcaseEuiVersion;
|
|
672
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StackblitzService, never>;
|
|
673
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<StackblitzService>;
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
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];
|
|
677
|
+
|
|
678
|
+
export { ConfigurationService, DocPageAccessibilityContentDirective, DocPageAccessibilityContentDirectiveV2, DocPageApiContentDirective, DocPageApiContentDirectiveV2, DocPageCodeComponent, DocPageCodeFabComponent, DocPageCodeModalComponent, DocPageComponent, DocPageComponentV2, DocPageDevGuideComponent, DocPageDevGuideComponentV2, DocPageInteractiveContentDirective, DocPageInteractiveContentDirectiveV2, DocPageOverviewContentDirective, DocPageOverviewContentDirectiveV2, DocPageOverviewDefaultContentDirective, DocPageOverviewDefaultContentDirectiveV2, DocPagePatternComponent, DocPagePatternDocDirective, DocPagePatternSampleComponent, DocPagePatternSampleDirective, DocPagePatternSampleDocDirective, DocPagePatternSampleRefsComponent, DocPagePatternSimpleComponent, DocPagePatternSimpleDocDirective, DocPageSamplesContentDirective, DocPageSamplesContentDirectiveV2, DocPageSectionsContentDirective, DocPageSectionsContentDirectiveV2, DocPageThemingContentDirective, DocPageThemingContentDirectiveV2, DocSampleApiComponent, DocSampleComponent, DocSectionCodeComponent, DocSectionCodeCssTagDirective, DocSectionCodeDescriptionTagDirective, DocSectionCodeDocTagDirective, DocSectionCodeHtmlTagDirective, DocSectionCodeServiceTagDirective, DocSectionCodeTsTagDirective, DocSectionComponent, EUI_SHOWCASE, EuiCodeHighlighterDirective, LoremIpsumSampleComponent, PACKAGE_JSON, PlaygroundComponent, StackblitzService, angularJsonFile, indexHtmlFile, mainFile, moduleFile, polyfillsFile, tsConfig };
|
|
510
679
|
export type { Configuration };
|
|
511
|
-
//# sourceMappingURL=
|
|
680
|
+
//# sourceMappingURL=eui-showcase.d.ts.map
|