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