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