@eui/showcase 21.0.0-alpha.14 → 21.0.0-alpha.16
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 +746 -747
- package/fesm2022/eui-showcase.mjs.map +1 -1
- package/index.d.ts +250 -179
- package/index.d.ts.map +1 -1
- package/package.json +4 -4
package/index.d.ts
CHANGED
|
@@ -1,30 +1,11 @@
|
|
|
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
|
+
import * as _eui_showcase from '@eui/showcase';
|
|
3
4
|
import { SafeResourceUrl, DomSanitizer } from '@angular/platform-browser';
|
|
4
|
-
import * as i20 from '@eui/components/eui-tabs';
|
|
5
5
|
import { EuiTabComponent, EuiTabsComponent } from '@eui/components/eui-tabs';
|
|
6
6
|
import { EuiAppShellService } from '@eui/core';
|
|
7
|
-
import * as i23 from '@eui/components/eui-dialog';
|
|
8
7
|
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
|
-
}
|
|
8
|
+
import { ProjectDependencies } from '@stackblitz/sdk';
|
|
28
9
|
|
|
29
10
|
/**
|
|
30
11
|
* This interface describes the basis of the configuration structure of the
|
|
@@ -68,6 +49,41 @@ declare class ConfigurationService<T extends Configuration> {
|
|
|
68
49
|
static ɵprov: i0.ɵɵInjectableDeclaration<ConfigurationService<any>>;
|
|
69
50
|
}
|
|
70
51
|
|
|
52
|
+
declare class DocPageCodeComponent {
|
|
53
|
+
codeFolder: string;
|
|
54
|
+
showcase: string;
|
|
55
|
+
onOpenCode(): void;
|
|
56
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocPageCodeComponent, never>;
|
|
57
|
+
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>;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
declare class DocPageDevGuideComponent implements OnDestroy, OnInit, AfterViewInit {
|
|
61
|
+
cssClass: string;
|
|
62
|
+
rootDocsFolder: string;
|
|
63
|
+
showcaseName: string;
|
|
64
|
+
markdown: string;
|
|
65
|
+
isFirst: boolean;
|
|
66
|
+
headers: Array<{
|
|
67
|
+
id: string;
|
|
68
|
+
label: string;
|
|
69
|
+
level: number;
|
|
70
|
+
}>;
|
|
71
|
+
fragmentId: string;
|
|
72
|
+
private subscription;
|
|
73
|
+
private markdownService;
|
|
74
|
+
private http;
|
|
75
|
+
private router;
|
|
76
|
+
private route;
|
|
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
|
+
|
|
71
87
|
declare class DocSampleComponent implements AfterContentInit {
|
|
72
88
|
id: string;
|
|
73
89
|
label: string;
|
|
@@ -126,7 +142,7 @@ declare class DocSampleComponent implements AfterContentInit {
|
|
|
126
142
|
private flatten;
|
|
127
143
|
private loadCodeFiles;
|
|
128
144
|
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, ["*"],
|
|
145
|
+
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
146
|
static ngAcceptInputType_renderPlayground: unknown;
|
|
131
147
|
static ngAcceptInputType_isCodeButtonVisible: unknown;
|
|
132
148
|
static ngAcceptInputType_isInnerSection: unknown;
|
|
@@ -139,7 +155,7 @@ declare class DocSectionComponent implements AfterContentInit {
|
|
|
139
155
|
styleClass: string;
|
|
140
156
|
ngAfterContentInit(): void;
|
|
141
157
|
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, ["*"],
|
|
158
|
+
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
159
|
}
|
|
144
160
|
|
|
145
161
|
declare class DocPageComponent implements OnInit, AfterViewInit {
|
|
@@ -203,77 +219,44 @@ declare class DocPageComponent implements OnInit, AfterViewInit {
|
|
|
203
219
|
private _getApiUrl;
|
|
204
220
|
private _camelCaseString;
|
|
205
221
|
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"],
|
|
222
|
+
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
223
|
}
|
|
208
224
|
declare class DocPageOverviewContentDirective {
|
|
209
225
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocPageOverviewContentDirective, never>;
|
|
210
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageOverviewContentDirective, "docPageOverview", never, {}, {}, never, never,
|
|
226
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageOverviewContentDirective, "docPageOverview", never, {}, {}, never, never, true, never>;
|
|
211
227
|
}
|
|
212
228
|
declare class DocPageOverviewDefaultContentDirective {
|
|
213
229
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocPageOverviewDefaultContentDirective, never>;
|
|
214
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageOverviewDefaultContentDirective, "docPageOverviewDefault", never, {}, {}, never, never,
|
|
230
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageOverviewDefaultContentDirective, "docPageOverviewDefault", never, {}, {}, never, never, true, never>;
|
|
215
231
|
}
|
|
216
232
|
declare class DocPageInteractiveContentDirective {
|
|
217
233
|
title: string;
|
|
218
234
|
subTitle: string;
|
|
219
235
|
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,
|
|
236
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageInteractiveContentDirective, "docPageInteractive", never, { "title": { "alias": "title"; "required": false; }; "subTitle": { "alias": "subTitle"; "required": false; }; }, {}, never, never, true, never>;
|
|
221
237
|
}
|
|
222
238
|
declare class DocPageSamplesContentDirective {
|
|
223
239
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocPageSamplesContentDirective, never>;
|
|
224
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageSamplesContentDirective, "docPageSamples", never, {}, {}, never, never,
|
|
240
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageSamplesContentDirective, "docPageSamples", never, {}, {}, never, never, true, never>;
|
|
225
241
|
}
|
|
226
242
|
declare class DocPageSectionsContentDirective {
|
|
227
243
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocPageSectionsContentDirective, never>;
|
|
228
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageSectionsContentDirective, "docPageSections", never, {}, {}, never, never,
|
|
244
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageSectionsContentDirective, "docPageSections", never, {}, {}, never, never, true, never>;
|
|
229
245
|
}
|
|
230
246
|
declare class DocPageAccessibilityContentDirective {
|
|
231
247
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocPageAccessibilityContentDirective, never>;
|
|
232
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageAccessibilityContentDirective, "docPageAccessibility", never, {}, {}, never, never,
|
|
248
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageAccessibilityContentDirective, "docPageAccessibility", never, {}, {}, never, never, true, never>;
|
|
233
249
|
}
|
|
234
250
|
declare class DocPageApiContentDirective {
|
|
235
251
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocPageApiContentDirective, never>;
|
|
236
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageApiContentDirective, "docPageApi", never, {}, {}, never, never,
|
|
252
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageApiContentDirective, "docPageApi", never, {}, {}, never, never, true, never>;
|
|
237
253
|
}
|
|
238
254
|
declare class DocPageThemingContentDirective {
|
|
239
255
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocPageThemingContentDirective, never>;
|
|
240
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageThemingContentDirective, "docPageTheming", never, {}, {}, never, never,
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
declare class DocPageDevGuideComponent implements OnDestroy, OnInit, AfterViewInit {
|
|
244
|
-
cssClass: string;
|
|
245
|
-
rootDocsFolder: string;
|
|
246
|
-
showcaseName: string;
|
|
247
|
-
markdown: string;
|
|
248
|
-
isFirst: boolean;
|
|
249
|
-
headers: Array<{
|
|
250
|
-
id: string;
|
|
251
|
-
label: string;
|
|
252
|
-
level: number;
|
|
253
|
-
}>;
|
|
254
|
-
fragmentId: string;
|
|
255
|
-
private subscription;
|
|
256
|
-
private markdownService;
|
|
257
|
-
private http;
|
|
258
|
-
private router;
|
|
259
|
-
private route;
|
|
260
|
-
ngOnInit(): void;
|
|
261
|
-
ngAfterViewInit(): void;
|
|
262
|
-
ngOnDestroy(): void;
|
|
263
|
-
onNavClick(fragmentId: string): void;
|
|
264
|
-
private _loadMdContent;
|
|
265
|
-
private _scrollToFragment;
|
|
266
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DocPageDevGuideComponent, never>;
|
|
267
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DocPageDevGuideComponent, "eui-showcase-doc-page-dev-guide", never, { "rootDocsFolder": { "alias": "rootDocsFolder"; "required": false; }; "showcaseName": { "alias": "showcaseName"; "required": false; }; }, {}, never, never, false, never>;
|
|
256
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPageThemingContentDirective, "docPageTheming", never, {}, {}, never, never, true, never>;
|
|
268
257
|
}
|
|
269
258
|
|
|
270
|
-
declare
|
|
271
|
-
codeFolder: string;
|
|
272
|
-
showcase: string;
|
|
273
|
-
onOpenCode(): void;
|
|
274
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<DocPageCodeComponent, never>;
|
|
275
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DocPageCodeComponent, "eui-showcase-doc-page-code", never, { "codeFolder": { "alias": "codeFolder"; "required": false; }; "showcase": { "alias": "showcase"; "required": false; }; }, {}, never, never, false, never>;
|
|
276
|
-
}
|
|
259
|
+
declare const EUI_SHOWCASE_DOC_PAGE: readonly [typeof DocPageAccessibilityContentDirective, typeof DocPageApiContentDirective, typeof DocPageCodeComponent, typeof DocPageComponent, typeof DocPageDevGuideComponent, typeof DocPageInteractiveContentDirective, typeof DocPageOverviewContentDirective, typeof DocPageOverviewDefaultContentDirective, typeof DocPageSamplesContentDirective, typeof DocPageSectionsContentDirective, typeof DocPageThemingContentDirective];
|
|
277
260
|
|
|
278
261
|
declare class DocPageCodeFabComponent {
|
|
279
262
|
codeFolder: string;
|
|
@@ -285,9 +268,11 @@ declare class DocPageCodeFabComponent {
|
|
|
285
268
|
onClose(): void;
|
|
286
269
|
onOpenCode(): void;
|
|
287
270
|
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, ["*"],
|
|
271
|
+
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
272
|
}
|
|
290
273
|
|
|
274
|
+
declare const EUI_SHOWCASE_DOC_PAGE_CODE_FAB: readonly [typeof DocPageCodeFabComponent];
|
|
275
|
+
|
|
291
276
|
declare class DocPageCodeModalComponent {
|
|
292
277
|
width: string;
|
|
293
278
|
dialog: EuiDialogComponent;
|
|
@@ -295,91 +280,18 @@ declare class DocPageCodeModalComponent {
|
|
|
295
280
|
toggleCode(): void;
|
|
296
281
|
onClose(): void;
|
|
297
282
|
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, ["*"],
|
|
283
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocPageCodeModalComponent, "eui-showcase-doc-page-code-modal", never, { "width": { "alias": "width"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
299
284
|
}
|
|
300
285
|
|
|
301
|
-
declare
|
|
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>;
|
|
374
|
-
}
|
|
286
|
+
declare const EUI_SHOWCASE_DOC_PAGE_CODE_MODAL: readonly [typeof DocPageCodeModalComponent];
|
|
375
287
|
|
|
376
288
|
declare class DocPagePatternSampleDirective {
|
|
377
289
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocPagePatternSampleDirective, never>;
|
|
378
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPagePatternSampleDirective, "docPagePatternSample", never, {}, {}, never, never,
|
|
290
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPagePatternSampleDirective, "docPagePatternSample", never, {}, {}, never, never, true, never>;
|
|
379
291
|
}
|
|
380
292
|
declare class DocPagePatternDocDirective {
|
|
381
293
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocPagePatternDocDirective, never>;
|
|
382
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPagePatternDocDirective, "docPagePatternDoc", never, {}, {}, never, never,
|
|
294
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPagePatternDocDirective, "docPagePatternDoc", never, {}, {}, never, never, true, never>;
|
|
383
295
|
}
|
|
384
296
|
declare class DocPagePatternComponent {
|
|
385
297
|
get cssClasses(): string;
|
|
@@ -408,12 +320,48 @@ declare class DocPagePatternComponent {
|
|
|
408
320
|
}): void;
|
|
409
321
|
gotoTop(): void;
|
|
410
322
|
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"],
|
|
323
|
+
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>;
|
|
412
324
|
}
|
|
413
325
|
|
|
326
|
+
declare const EUI_SHOWCASE_DOC_PAGE_PATTERN: readonly [typeof DocPagePatternComponent, typeof DocPagePatternDocDirective, typeof DocPagePatternSampleDirective];
|
|
327
|
+
|
|
328
|
+
declare class DocPagePatternSampleDocDirective {
|
|
329
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocPagePatternSampleDocDirective, never>;
|
|
330
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPagePatternSampleDocDirective, "eui-showcase-doc-pattern-sample-doc", never, {}, {}, never, never, true, never>;
|
|
331
|
+
}
|
|
332
|
+
declare class DocPagePatternSampleComponent {
|
|
333
|
+
get cssClasses(): string;
|
|
334
|
+
label: string;
|
|
335
|
+
docEntries: any[];
|
|
336
|
+
codeFolder: string;
|
|
337
|
+
refsImage: string;
|
|
338
|
+
refsImage2: string;
|
|
339
|
+
figmaLink: string;
|
|
340
|
+
isSmall: boolean;
|
|
341
|
+
isTiny: boolean;
|
|
342
|
+
isMedium: boolean;
|
|
343
|
+
isLarge: boolean;
|
|
344
|
+
isExtraLarge: boolean;
|
|
345
|
+
hasAutoHeight: boolean;
|
|
346
|
+
docContent: QueryList<DocPagePatternSampleDocDirective>;
|
|
347
|
+
openCode(): void;
|
|
348
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocPagePatternSampleComponent, never>;
|
|
349
|
+
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>;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
declare class DocPagePatternSampleRefsComponent {
|
|
353
|
+
string: string;
|
|
354
|
+
docEntries: any[];
|
|
355
|
+
codeFolder: string;
|
|
356
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocPagePatternSampleRefsComponent, never>;
|
|
357
|
+
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>;
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
declare const EUI_SHOWCASE_DOC_PAGE_PATTERN_SAMPLE: readonly [typeof DocPagePatternSampleComponent, typeof DocPagePatternSampleDocDirective, typeof DocPagePatternSampleRefsComponent];
|
|
361
|
+
|
|
414
362
|
declare class DocPagePatternSimpleDocDirective {
|
|
415
363
|
static ɵfac: i0.ɵɵFactoryDeclaration<DocPagePatternSimpleDocDirective, never>;
|
|
416
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPagePatternSimpleDocDirective, "docPagePatternDoc", never, {}, {}, never, never,
|
|
364
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocPagePatternSimpleDocDirective, "docPagePatternDoc", never, {}, {}, never, never, true, never>;
|
|
417
365
|
}
|
|
418
366
|
declare class DocPagePatternSimpleComponent {
|
|
419
367
|
get cssClasses(): string;
|
|
@@ -441,45 +389,103 @@ declare class DocPagePatternSimpleComponent {
|
|
|
441
389
|
}): void;
|
|
442
390
|
gotoTop(): void;
|
|
443
391
|
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"],
|
|
392
|
+
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
393
|
}
|
|
446
394
|
|
|
447
|
-
declare
|
|
448
|
-
|
|
449
|
-
|
|
395
|
+
declare const EUI_SHOWCASE_DOC_PAGE_PATTERN_SIMPLE: readonly [typeof DocPagePatternSimpleComponent, typeof DocPagePatternSimpleDocDirective];
|
|
396
|
+
|
|
397
|
+
declare const EUI_SHOWCASE_DOC_SAMPLE: readonly [typeof DocSampleComponent];
|
|
398
|
+
|
|
399
|
+
declare class DocSampleApiComponent {
|
|
400
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocSampleApiComponent, never>;
|
|
401
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DocSampleApiComponent, "eui-showcase-doc-sample-api", never, {}, {}, never, never, true, never>;
|
|
450
402
|
}
|
|
451
|
-
|
|
452
|
-
|
|
403
|
+
|
|
404
|
+
declare const EUI_SHOWCASE_DOC_SAMPLE_API: readonly [typeof DocSampleApiComponent];
|
|
405
|
+
|
|
406
|
+
declare const EUI_SHOWCASE_DOC_SECTION: readonly [typeof DocSectionComponent];
|
|
407
|
+
|
|
408
|
+
declare class DocSectionCodeComponent {
|
|
453
409
|
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<
|
|
410
|
+
content: string;
|
|
411
|
+
styleClass: string;
|
|
412
|
+
versionLabel: string;
|
|
413
|
+
isDeprecated: boolean;
|
|
414
|
+
isCodeExpanded: boolean;
|
|
415
|
+
sectionDescription: QueryList<DocSectionCodeDescriptionTagDirective>;
|
|
416
|
+
sectionCodeHTML: QueryList<DocSectionCodeHtmlTagDirective>;
|
|
417
|
+
sectionCodeTS: QueryList<DocSectionCodeTsTagDirective>;
|
|
418
|
+
sectionCodeSERVICE: QueryList<DocSectionCodeServiceTagDirective>;
|
|
419
|
+
sectionCodeCSS: QueryList<DocSectionCodeCssTagDirective>;
|
|
420
|
+
sectionCodeDOC: QueryList<DocSectionCodeDocTagDirective>;
|
|
421
|
+
toggleCode(): void;
|
|
422
|
+
isDefined(object: any): boolean;
|
|
423
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocSectionCodeComponent, never>;
|
|
424
|
+
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>;
|
|
425
|
+
}
|
|
426
|
+
declare class DocSectionCodeDescriptionTagDirective {
|
|
427
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocSectionCodeDescriptionTagDirective, never>;
|
|
428
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocSectionCodeDescriptionTagDirective, "sectionDescription", never, {}, {}, never, never, true, never>;
|
|
429
|
+
}
|
|
430
|
+
declare class DocSectionCodeHtmlTagDirective {
|
|
431
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocSectionCodeHtmlTagDirective, never>;
|
|
432
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocSectionCodeHtmlTagDirective, "sectionCodeHTML", never, {}, {}, never, never, true, never>;
|
|
433
|
+
}
|
|
434
|
+
declare class DocSectionCodeTsTagDirective {
|
|
435
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocSectionCodeTsTagDirective, never>;
|
|
436
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocSectionCodeTsTagDirective, "sectionCodeTS", never, {}, {}, never, never, true, never>;
|
|
437
|
+
}
|
|
438
|
+
declare class DocSectionCodeServiceTagDirective {
|
|
439
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocSectionCodeServiceTagDirective, never>;
|
|
440
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocSectionCodeServiceTagDirective, "sectionCodeSERVICE", never, {}, {}, never, never, true, never>;
|
|
441
|
+
}
|
|
442
|
+
declare class DocSectionCodeCssTagDirective {
|
|
443
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocSectionCodeCssTagDirective, never>;
|
|
444
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocSectionCodeCssTagDirective, "sectionCodeCSS", never, {}, {}, never, never, true, never>;
|
|
445
|
+
}
|
|
446
|
+
declare class DocSectionCodeDocTagDirective {
|
|
447
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DocSectionCodeDocTagDirective, never>;
|
|
448
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DocSectionCodeDocTagDirective, "sectionCodeDOC", never, {}, {}, never, never, true, never>;
|
|
469
449
|
}
|
|
470
450
|
|
|
471
|
-
declare
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
static
|
|
451
|
+
declare const EUI_SHOWCASE_DOC_SECTION_CODE: readonly [typeof DocSectionCodeComponent, typeof DocSectionCodeCssTagDirective, typeof DocSectionCodeDescriptionTagDirective, typeof DocSectionCodeDocTagDirective, typeof DocSectionCodeHtmlTagDirective, typeof DocSectionCodeServiceTagDirective, typeof DocSectionCodeTsTagDirective];
|
|
452
|
+
|
|
453
|
+
declare class EuiCodeHighlighterDirective implements AfterViewInit {
|
|
454
|
+
el: ElementRef<any>;
|
|
455
|
+
ngAfterViewInit(): void;
|
|
456
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<EuiCodeHighlighterDirective, never>;
|
|
457
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<EuiCodeHighlighterDirective, "[euiCode]", never, {}, {}, never, never, true, never>;
|
|
477
458
|
}
|
|
478
459
|
|
|
479
|
-
declare
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
460
|
+
declare const EUI_SHOWCASE_CODE_HIGHLIGHTER: readonly [typeof EuiCodeHighlighterDirective];
|
|
461
|
+
|
|
462
|
+
declare class LoremIpsumSampleComponent {
|
|
463
|
+
textSize: 'small' | 'medium' | 'large';
|
|
464
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LoremIpsumSampleComponent, never>;
|
|
465
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoremIpsumSampleComponent, "eui-showcase-doc-lorem-ipsum", never, { "textSize": { "alias": "textSize"; "required": false; }; }, {}, never, never, true, never>;
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
declare const EUI_SHOWCASE_LOREM_IPSUM: readonly [typeof LoremIpsumSampleComponent];
|
|
469
|
+
|
|
470
|
+
declare class PlaygroundComponent implements OnChanges {
|
|
471
|
+
title: string;
|
|
472
|
+
htmlContent: string;
|
|
473
|
+
sampleId: string;
|
|
474
|
+
typescriptContent: string;
|
|
475
|
+
activated: boolean;
|
|
476
|
+
modules: [{
|
|
477
|
+
name: string;
|
|
478
|
+
path: string;
|
|
479
|
+
}];
|
|
480
|
+
isLoaded: boolean;
|
|
481
|
+
private stackblitzElWrapper;
|
|
482
|
+
/** instance that holds the stackblitz VM object */
|
|
483
|
+
private stackblitzInstance;
|
|
484
|
+
private sb;
|
|
485
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
486
|
+
private initStackblitz;
|
|
487
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PlaygroundComponent, never>;
|
|
488
|
+
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
489
|
}
|
|
484
490
|
|
|
485
491
|
declare const polyfillsFile = "import 'zone.js';";
|
|
@@ -506,6 +512,71 @@ declare const PACKAGE_JSON: {
|
|
|
506
512
|
};
|
|
507
513
|
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
514
|
|
|
509
|
-
|
|
515
|
+
declare class StackblitzService {
|
|
516
|
+
private http;
|
|
517
|
+
/**
|
|
518
|
+
* extract the name of the component class name and selector name from the typescript content
|
|
519
|
+
*
|
|
520
|
+
* @param contents
|
|
521
|
+
* @private
|
|
522
|
+
*/
|
|
523
|
+
extractComponentMetadata(contents: string): {
|
|
524
|
+
selector: string;
|
|
525
|
+
className: string;
|
|
526
|
+
};
|
|
527
|
+
/**
|
|
528
|
+
* extract module class name from the typescript content
|
|
529
|
+
*
|
|
530
|
+
* @param contents
|
|
531
|
+
* @private
|
|
532
|
+
*/
|
|
533
|
+
extractModuleName(contents: string): string;
|
|
534
|
+
/**
|
|
535
|
+
* extract the name of the component class name and selector name from the typescript content
|
|
536
|
+
*
|
|
537
|
+
* @param contents
|
|
538
|
+
* @private
|
|
539
|
+
*/
|
|
540
|
+
extractComponentName(contents: string): string;
|
|
541
|
+
appendVitalNgModules(contents: string): string;
|
|
542
|
+
/**
|
|
543
|
+
* Open a stackblitz project in a new browser TAB with the given html and typescript content
|
|
544
|
+
* @param htmlContent
|
|
545
|
+
* @param typescriptContent
|
|
546
|
+
* @param title
|
|
547
|
+
* @param sampleId
|
|
548
|
+
*/
|
|
549
|
+
openStackBlitz(htmlContent: string, typescriptContent: string, title: string, sampleId: string): void;
|
|
550
|
+
/**
|
|
551
|
+
* Retrieve only the dependencies that stackblitz will need filtered from @eui/deps-base
|
|
552
|
+
*
|
|
553
|
+
* @private
|
|
554
|
+
*/
|
|
555
|
+
getStackblitzDependencies(): Promise<{
|
|
556
|
+
dependencies: ProjectDependencies;
|
|
557
|
+
devDependencies: ProjectDependencies;
|
|
558
|
+
}>;
|
|
559
|
+
/**
|
|
560
|
+
* Retrieve the dependencies from the package.json file of @eui/deps-base for the given version.
|
|
561
|
+
*
|
|
562
|
+
* @param version
|
|
563
|
+
* @private
|
|
564
|
+
*/
|
|
565
|
+
private retrievePackageDependencies;
|
|
566
|
+
/**
|
|
567
|
+
* Retrieve the eUI version used to build the showcase from application app-metadata.json
|
|
568
|
+
*
|
|
569
|
+
* @private
|
|
570
|
+
*/
|
|
571
|
+
private getCurrentShowcaseEuiVersion;
|
|
572
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StackblitzService, never>;
|
|
573
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<StackblitzService>;
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
declare const EUI_SHOWCASE_PLAYGROUND: readonly [typeof PlaygroundComponent];
|
|
577
|
+
|
|
578
|
+
declare const EUI_SHOWCASE: readonly [typeof _eui_showcase.DocPageAccessibilityContentDirective, typeof _eui_showcase.DocPageApiContentDirective, typeof _eui_showcase.DocPageCodeComponent, typeof _eui_showcase.DocPageComponent, typeof _eui_showcase.DocPageDevGuideComponent, typeof _eui_showcase.DocPageInteractiveContentDirective, typeof _eui_showcase.DocPageOverviewContentDirective, typeof _eui_showcase.DocPageOverviewDefaultContentDirective, typeof _eui_showcase.DocPageSamplesContentDirective, typeof _eui_showcase.DocPageSectionsContentDirective, typeof _eui_showcase.DocPageThemingContentDirective, typeof _eui_showcase.DocPageCodeFabComponent, typeof _eui_showcase.DocPageCodeModalComponent, typeof _eui_showcase.DocPagePatternComponent, typeof _eui_showcase.DocPagePatternDocDirective, typeof _eui_showcase.DocPagePatternSampleDirective, typeof _eui_showcase.DocPagePatternSampleComponent, typeof _eui_showcase.DocPagePatternSampleDocDirective, typeof _eui_showcase.DocPagePatternSampleRefsComponent, typeof _eui_showcase.DocPagePatternSimpleComponent, typeof _eui_showcase.DocPagePatternSimpleDocDirective, typeof _eui_showcase.DocSampleComponent, typeof _eui_showcase.DocSampleApiComponent, typeof _eui_showcase.DocSectionComponent, typeof _eui_showcase.DocSectionCodeComponent, typeof _eui_showcase.DocSectionCodeCssTagDirective, typeof _eui_showcase.DocSectionCodeDescriptionTagDirective, typeof _eui_showcase.DocSectionCodeDocTagDirective, typeof _eui_showcase.DocSectionCodeHtmlTagDirective, typeof _eui_showcase.DocSectionCodeServiceTagDirective, typeof _eui_showcase.DocSectionCodeTsTagDirective, typeof _eui_showcase.EuiCodeHighlighterDirective, typeof _eui_showcase.LoremIpsumSampleComponent, typeof _eui_showcase.PlaygroundComponent];
|
|
579
|
+
|
|
580
|
+
export { ConfigurationService, DocPageAccessibilityContentDirective, DocPageApiContentDirective, DocPageCodeComponent, DocPageCodeFabComponent, DocPageCodeModalComponent, DocPageComponent, DocPageDevGuideComponent, DocPageInteractiveContentDirective, DocPageOverviewContentDirective, DocPageOverviewDefaultContentDirective, DocPagePatternComponent, DocPagePatternDocDirective, DocPagePatternSampleComponent, DocPagePatternSampleDirective, DocPagePatternSampleDocDirective, DocPagePatternSampleRefsComponent, DocPagePatternSimpleComponent, DocPagePatternSimpleDocDirective, DocPageSamplesContentDirective, DocPageSectionsContentDirective, DocPageThemingContentDirective, DocSampleApiComponent, DocSampleComponent, DocSectionCodeComponent, DocSectionCodeCssTagDirective, DocSectionCodeDescriptionTagDirective, DocSectionCodeDocTagDirective, DocSectionCodeHtmlTagDirective, DocSectionCodeServiceTagDirective, DocSectionCodeTsTagDirective, DocSectionComponent, EUI_SHOWCASE, EUI_SHOWCASE_CODE_HIGHLIGHTER, EUI_SHOWCASE_DOC_PAGE, EUI_SHOWCASE_DOC_PAGE_CODE_FAB, EUI_SHOWCASE_DOC_PAGE_CODE_MODAL, EUI_SHOWCASE_DOC_PAGE_PATTERN, EUI_SHOWCASE_DOC_PAGE_PATTERN_SAMPLE, EUI_SHOWCASE_DOC_PAGE_PATTERN_SIMPLE, EUI_SHOWCASE_DOC_SAMPLE, EUI_SHOWCASE_DOC_SAMPLE_API, EUI_SHOWCASE_DOC_SECTION, EUI_SHOWCASE_DOC_SECTION_CODE, EUI_SHOWCASE_LOREM_IPSUM, EUI_SHOWCASE_PLAYGROUND, EuiCodeHighlighterDirective, LoremIpsumSampleComponent, PACKAGE_JSON, PlaygroundComponent, StackblitzService, angularJsonFile, indexHtmlFile, mainFile, moduleFile, polyfillsFile, tsConfig };
|
|
510
581
|
export type { Configuration };
|
|
511
582
|
//# sourceMappingURL=index.d.ts.map
|
package/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sources":["../src/lib/components/
|
|
1
|
+
{"version":3,"file":"index.d.ts","sources":["../src/lib/configuration.service.ts","../src/lib/components/doc-page/doc-page-code.component.ts","../src/lib/components/doc-page/doc-page-dev-guide.component.ts","../src/lib/components/doc-sample/doc-sample.component.ts","../src/lib/components/doc-section/doc-section.component.ts","../src/lib/components/doc-page/doc-page.component.ts","../src/lib/components/doc-page/index.ts","../src/lib/components/doc-page-code-fab/doc-page-code-fab.component.ts","../src/lib/components/doc-page-code-fab/index.ts","../src/lib/components/doc-page-code-modal/doc-page-code-modal.component.ts","../src/lib/components/doc-page-code-modal/index.ts","../src/lib/components/doc-page-pattern/doc-page-pattern.component.ts","../src/lib/components/doc-page-pattern/index.ts","../src/lib/components/doc-page-pattern-sample/doc-page-pattern-sample.component.ts","../src/lib/components/doc-page-pattern-sample/doc-page-pattern-sample-refs.component.ts","../src/lib/components/doc-page-pattern-sample/index.ts","../src/lib/components/doc-page-pattern-simple/doc-page-pattern-simple.component.ts","../src/lib/components/doc-page-pattern-simple/index.ts","../src/lib/components/doc-sample/index.ts","../src/lib/components/doc-sample-api/doc-sample-api.component.ts","../src/lib/components/doc-sample-api/index.ts","../src/lib/components/doc-section/index.ts","../src/lib/components/doc-section-code/doc-section-code.component.ts","../src/lib/components/doc-section-code/index.ts","../src/lib/components/eui-code-highlighter/eui-code-highlighter.component.ts","../src/lib/components/eui-code-highlighter/index.ts","../src/lib/components/lorem-ipsum/lorem-ipsum-sample.component.ts","../src/lib/components/lorem-ipsum/index.ts","../src/lib/components/playground/playground.component.ts","../src/lib/components/playground/stackblitz.files.ts","../src/lib/components/playground/stackblitz.service.ts","../src/lib/components/playground/index.ts","../src/lib/components/index.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null],"names":[],"mappings":";;;;;;;;;AAEA;;;AAGG;;AAEC;;AAEG;;AAEN;AAED;;AAEG;AACH;AAII;;;;;AAKG;;AAGH;;;;;;;;;;;AAWG;;AAKH;;AAEG;AACH;;;AAGH;;AC/CD;AAQa;AACA;AAET;;;AAKH;;ACTD;AAY0B;AAEb;AACA;;;;;;;AAIkD;;;;;;;AAQ3D;AAyBA;AAYA;AAMA;AAIA;AA6BA;;;AAcH;;ACpGD;AAea;AACA;AACA;AACA;AACA;AACA;AAC+B;AACA;AACA;AAElB;AAEtB;AACA;AACA;AACA;AAEA;AACA;;;;;;;;;AAUA;AAMO;AAaP;AAiBA;;;;;;;AAOG;;;;AAC4D;AAI/D;;;;AAIG;AACH;AAYA;;AAEG;AACH;AAQA;;AAEG;;AAOH;AAOA;AAiBA;;;;;;AA0DH;;AC3OD;AAO0B;AAEb;AACA;AACA;AAET;;;AAKH;;ACkBD;AAiB0B;AAEb;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAGT;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;AAIA;AAEA;AACA;AAEA;AACA;AAGA;AAEA;AAGA;AAGA;AAGA;AAGA;AAGA;AAGA;AAGA;AAGA;;AAIA;;;;;;;AA0BA;AAcA;AA6FA;;;;;AAW4D;AAQ5D;AA6BA;AAqCA;AAiGA;;;AAoBH;AAGD;;;AAC+C;AAC/C;;;AACsD;AACtD;AAEa;AACA;;;AACZ;AACD;;;AAC8C;AAC9C;;;AAC+C;AAC/C;;;AACoD;AACpD;;;AAC0C;AAE1C;;;AAC8C;;AC5c9C;;ACZA;AAUa;AACA;AACA;;AAIT;AAEO;AAIA;AAIA;;;AAMV;;AClCD;;ACEA;AAUa;;AAIT;AAEO;AAIA;;;AAGV;;ACzBD;;ACmBA;;;AAC8C;AAC9C;;;AAC2C;AAE3C;;AAsBI;AAEA;;;;AAKS;AACA;AACA;;;;;;AAOF;AACA;;;;;;;;AA0B4D;;;;AAWtE;;ACpGD;;ACCA;;;AACiD;AAEjD;;;AAmBa;;;;;AAKA;AACA;AACA;AACA;AACA;AACA;AAGT;AAEA;;;AAKH;;AC1CD;AAY0B;AAEb;;;;AAEZ;;ACfD;;ACiBA;;;AACiD;AAEjD;;AAsBI;;;;AAKS;AACA;AACA;;;;;;AAOF;AACA;;;;;;;;AA0B0D;;;;AAWpE;;AChGD;;ACAA;;ACFA;;;AAIqC;;ACFrC;;ACAA;;ACGA;;;;;AAgBa;AACA;AAGT;AAEA;AAEA;AAEA;AAEA;AAEA;AAEA;AAKA;;;AAGH;AAGD;;;AACqD;AAErD;;;AAC8C;AAE9C;;;AAC4C;AAE5C;;;AACiD;AAEjD;;;AAC6C;AAE7C;;;AAC6C;;AC3D7C;;ACLA;AAII;AAEA;;;AAKH;;ACTD;;ACDA;AAQa;;;AACZ;;ACRD;;ACEA;AASW;;;;AAQA;AAEA;;;AAAwC;AACxC;;;;;AAOP;AAUA;;;AAqDH;;AChGD;AACA;AAmFA;;;;AA8DA;AA0EA;AAKA;;;;;;;;;;;;;;AAcA;;ACzOA;;AAMI;;;;;AAKG;AACH;;;AAGC;AAaD;;;;;AAKG;AACH;AAKA;;;;;AAKG;AACH;AAUA;AAcA;;;;;;AAMG;AACI;AAiDP;;;;AAIG;;;;;AA0DH;;;;;AAKG;AACH;AAMA;;;;AAIG;AACH;;;AAMH;;AClND;;ACsBA;;;"}
|