@eui/showcase 23.0.0-alpha.10 → 23.0.0-alpha.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eui/showcase",
3
- "version": "23.0.0-alpha.10",
3
+ "version": "23.0.0-alpha.11",
4
4
  "tag": "next",
5
5
  "description": "eUI showcase components for internal use",
6
6
  "author": "ec.europa.eui@gmail.com",
@@ -9,8 +9,8 @@
9
9
  "url": "https://sdlc.webcloud.ec.europa.eu/csdr/eui/eui.git"
10
10
  },
11
11
  "peerDependencies": {
12
- "@eui/core": "23.0.0-alpha.10",
13
- "@eui/components": "23.0.0-alpha.10",
12
+ "@eui/core": "23.0.0-alpha.11",
13
+ "@eui/components": "23.0.0-alpha.11",
14
14
  "@angular/core": "^21.0.0 || ^22.0.0",
15
15
  "@angular/common": "^21.0.0 || ^22.0.0",
16
16
  "@angular/cdk": "^21.0.0 || ^22.0.0",
@@ -1,6 +1,6 @@
1
1
  import * as _angular_core from '@angular/core';
2
- import { Signal, OnInit, AfterViewInit } from '@angular/core';
3
- import { SafeResourceUrl } from '@angular/platform-browser';
2
+ import { Signal, OnInit, AfterViewInit, QueryList, ElementRef } from '@angular/core';
3
+ import { SafeResourceUrl, DomSanitizer } from '@angular/platform-browser';
4
4
  import { EuiTabComponent, EuiTabsComponent } from '@eui/components/eui-tabs';
5
5
  import { EuiMenuItem } from '@eui/base';
6
6
  import { EuiAppShellService } from '@eui/core';
@@ -83,31 +83,6 @@ declare class DocPageDevGuideComponent implements OnInit, AfterViewInit {
83
83
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DocPageDevGuideComponent, "eui-showcase-doc-page-dev-guide", never, { "rootDocsFolder": { "alias": "rootDocsFolder"; "required": false; "isSignal": true; }; "showcaseName": { "alias": "showcaseName"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
84
84
  }
85
85
 
86
- declare class DocPageDevGuideComponentV2 implements OnInit, AfterViewInit {
87
- readonly rootDocsFolder: _angular_core.InputSignal<string>;
88
- readonly showcaseName: _angular_core.InputSignal<string>;
89
- markdown: string;
90
- isFirst: boolean;
91
- headers: Array<{
92
- id: string;
93
- label: string;
94
- level: number;
95
- }>;
96
- fragmentId: string;
97
- private markdownService;
98
- private http;
99
- private router;
100
- private route;
101
- constructor();
102
- ngOnInit(): void;
103
- ngAfterViewInit(): void;
104
- onNavClick(fragmentId: string): void;
105
- private _loadMdContent;
106
- private _scrollToFragment;
107
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageDevGuideComponentV2, never>;
108
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DocPageDevGuideComponentV2, "eui-showcase-doc-page-dev-guide-v2", never, { "rootDocsFolder": { "alias": "rootDocsFolder"; "required": false; "isSignal": true; }; "showcaseName": { "alias": "showcaseName"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
109
- }
110
-
111
86
  declare class DocSampleComponent {
112
87
  readonly id: _angular_core.InputSignal<string>;
113
88
  readonly label: _angular_core.InputSignal<string>;
@@ -189,7 +164,7 @@ declare class DocSectionComponent {
189
164
  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>;
190
165
  }
191
166
 
192
- type ComponentStatus$1 = EuiMenuItem & {
167
+ type ComponentStatus = EuiMenuItem & {
193
168
  name: string;
194
169
  cmpReplacement: string;
195
170
  cmpReplacementUrl: string;
@@ -217,7 +192,7 @@ declare class DocPageComponent implements OnInit, AfterViewInit {
217
192
  readonly isLegacy: _angular_core.WritableSignal<boolean>;
218
193
  stateTypeClass: string;
219
194
  stateLabel: string;
220
- cmp: ComponentStatus$1;
195
+ cmp: ComponentStatus;
221
196
  fragmentId: string;
222
197
  cmpImportModule: string;
223
198
  cmpImportStandalone: string;
@@ -247,21 +222,26 @@ declare class DocPageComponent implements OnInit, AfterViewInit {
247
222
  readonly pageAccessibilityContent: _angular_core.Signal<readonly any[]>;
248
223
  readonly pageApiContent: _angular_core.Signal<readonly any[]>;
249
224
  readonly pageThemingContent: _angular_core.Signal<readonly any[]>;
225
+ pageVisualSpecsContent: QueryList<DocPageApiContentDirective>;
226
+ pagePlaygroundContent: QueryList<DocPagePlaygroundContentDirective>;
250
227
  readonly tabsContent: _angular_core.Signal<EuiTabsComponent>;
251
- private sanitizer;
228
+ navContent: ElementRef<HTMLElement>;
229
+ sanitizer: DomSanitizer;
230
+ private scrollObserver;
231
+ private readonly CATEGORIES_DEF;
252
232
  private location;
253
233
  private router;
254
234
  private route;
255
235
  private asService;
256
- private cd;
236
+ private cdr;
237
+ private ngZone;
257
238
  private destroyRef;
258
239
  private injector;
259
- private readonly TABS_DEF;
260
- private readonly CATEGORIES_DEF;
261
240
  ngOnInit(): void;
262
241
  ngAfterViewInit(): void;
263
242
  getCategoryIndex(name: string): number;
264
- private setupScrollSpy;
243
+ ngOnDestroy(): void;
244
+ onTabNavClick(tabId: string): void;
265
245
  onNavClick(fragmentId: string, tabIndex: number): void;
266
246
  onTabActivate(event: {
267
247
  tab: EuiTabComponent;
@@ -269,11 +249,13 @@ declare class DocPageComponent implements OnInit, AfterViewInit {
269
249
  }): void;
270
250
  private _buildCategories;
271
251
  private _scrollToFragment;
252
+ private _scrollNavToSelectedItem;
253
+ private _getScrollParent;
272
254
  private _getComponentStatus;
273
255
  private _getApiUrl;
274
256
  private _camelCaseString;
275
257
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageComponent, never>;
276
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DocPageComponent, "eui-showcase-doc-page", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "subLabel": { "alias": "subLabel"; "required": false; "isSignal": true; }; "isNotReadyInput": { "alias": "isNotReady"; "required": false; "isSignal": true; }; "isDeprecatedInput": { "alias": "isDeprecated"; "required": false; "isSignal": true; }; "isLegacyInput": { "alias": "isLegacy"; "required": false; "isSignal": true; }; "codeFolder": { "alias": "codeFolder"; "required": false; "isSignal": true; }; "showcase": { "alias": "showcase"; "required": false; "isSignal": true; }; "isNavigationVisible": { "alias": "isNavigationVisible"; "required": false; "isSignal": true; }; "hasApi": { "alias": "hasApi"; "required": false; "isSignal": true; }; "hasA11y": { "alias": "hasA11y"; "required": false; "isSignal": true; }; "customApiUrl": { "alias": "customApiUrl"; "required": false; "isSignal": true; }; }, { "isNavigationVisible": "isNavigationVisibleChange"; }, ["samples", "sections", "pageOverviewContent", "pageOverviewDefaultContent", "pageSamplesContent", "pageSectionsContent", "pageInteractiveContent", "pageAccessibilityContent", "pageApiContent", "pageThemingContent"], ["docPageOverview", "docPageOverviewDefault", "docPageSamples", "docPageAccessibility", "docPageTheming", "docPageInteractive", "docPageSections"], true, never>;
258
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<DocPageComponent, "eui-showcase-doc-page", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "subLabel": { "alias": "subLabel"; "required": false; "isSignal": true; }; "isNotReadyInput": { "alias": "isNotReady"; "required": false; "isSignal": true; }; "isDeprecatedInput": { "alias": "isDeprecated"; "required": false; "isSignal": true; }; "isLegacyInput": { "alias": "isLegacy"; "required": false; "isSignal": true; }; "codeFolder": { "alias": "codeFolder"; "required": false; "isSignal": true; }; "showcase": { "alias": "showcase"; "required": false; "isSignal": true; }; "isNavigationVisible": { "alias": "isNavigationVisible"; "required": false; "isSignal": true; }; "hasApi": { "alias": "hasApi"; "required": false; "isSignal": true; }; "hasA11y": { "alias": "hasA11y"; "required": false; "isSignal": true; }; "customApiUrl": { "alias": "customApiUrl"; "required": false; "isSignal": true; }; }, { "isNavigationVisible": "isNavigationVisibleChange"; }, ["samples", "sections", "pageOverviewContent", "pageOverviewDefaultContent", "pageSamplesContent", "pageSectionsContent", "pageInteractiveContent", "pageAccessibilityContent", "pageApiContent", "pageThemingContent", "pageVisualSpecsContent", "pagePlaygroundContent"], ["docPageOverview", "docPageOverviewDefault", "docPageSamples", "docPageAccessibility", "docPageVisualSpecs", "docPagePlayground", "docPageTheming", "docPageInteractive", "docPageSections"], true, never>;
277
259
  }
278
260
  declare class DocPageOverviewContentDirective {
279
261
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageOverviewContentDirective, never>;
@@ -305,125 +287,19 @@ declare class DocPageApiContentDirective {
305
287
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageApiContentDirective, never>;
306
288
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocPageApiContentDirective, "docPageApi", never, {}, {}, never, never, true, never>;
307
289
  }
290
+ declare class DocPageVisualSpecsContentDirective {
291
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageVisualSpecsContentDirective, never>;
292
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocPageVisualSpecsContentDirective, "docPageVisualSpecs", never, {}, {}, never, never, true, never>;
293
+ }
294
+ declare class DocPagePlaygroundContentDirective {
295
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPagePlaygroundContentDirective, never>;
296
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocPagePlaygroundContentDirective, "docPagePlayground", never, {}, {}, never, never, true, never>;
297
+ }
308
298
  declare class DocPageThemingContentDirective {
309
299
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageThemingContentDirective, never>;
310
300
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocPageThemingContentDirective, "docPageTheming", never, {}, {}, never, never, true, never>;
311
301
  }
312
302
 
313
- type ComponentStatus = EuiMenuItem & {
314
- name: string;
315
- cmpReplacement: string;
316
- cmpReplacementUrl: string;
317
- cmpReplacementNote: string;
318
- alternateApiCategory: string;
319
- alternateId: string;
320
- status: string;
321
- metadata: any;
322
- };
323
- declare class DocPageComponentV2 implements OnInit, AfterViewInit {
324
- readonly id: _angular_core.InputSignal<any>;
325
- readonly label: _angular_core.InputSignal<string>;
326
- readonly subLabel: _angular_core.InputSignal<string>;
327
- readonly isNotReadyInput: _angular_core.InputSignal<boolean>;
328
- readonly isDeprecatedInput: _angular_core.InputSignal<boolean>;
329
- readonly isLegacyInput: _angular_core.InputSignal<boolean>;
330
- readonly codeFolder: _angular_core.InputSignal<string>;
331
- readonly showcase: _angular_core.InputSignal<string>;
332
- readonly isNavigationVisible: _angular_core.InputSignal<boolean>;
333
- readonly hasApi: _angular_core.InputSignal<boolean>;
334
- readonly hasA11y: _angular_core.InputSignal<boolean>;
335
- readonly customApiUrl: _angular_core.InputSignal<string>;
336
- readonly isNotReady: _angular_core.WritableSignal<boolean>;
337
- readonly isDeprecated: _angular_core.WritableSignal<boolean>;
338
- readonly isLegacy: _angular_core.WritableSignal<boolean>;
339
- stateTypeClass: string;
340
- stateLabel: string;
341
- cmp: ComponentStatus;
342
- fragmentId: string;
343
- cmpImportModule: string;
344
- cmpImportStandalone: string;
345
- cmpImportStandaloneCmp: string;
346
- cmpStandalone: string;
347
- appMetadata: any;
348
- apiUrlSafe: SafeResourceUrl;
349
- apiUrl: string;
350
- iFrameContent: any;
351
- isLoading: boolean;
352
- isNavClicked: boolean;
353
- hasCategories: boolean;
354
- categories: {
355
- name: string;
356
- samples: DocSampleComponent[];
357
- }[];
358
- readonly samples: _angular_core.Signal<readonly DocSampleComponent[]>;
359
- readonly sections: _angular_core.Signal<readonly DocSectionComponent[]>;
360
- readonly pageOverviewContent: _angular_core.Signal<readonly any[]>;
361
- readonly pageOverviewDefaultContent: _angular_core.Signal<readonly any[]>;
362
- readonly pageSamplesContent: _angular_core.Signal<readonly any[]>;
363
- readonly pageSectionsContent: _angular_core.Signal<readonly any[]>;
364
- readonly pageInteractiveContent: _angular_core.Signal<readonly any[]>;
365
- readonly pageAccessibilityContent: _angular_core.Signal<readonly any[]>;
366
- readonly pageApiContent: _angular_core.Signal<readonly any[]>;
367
- readonly pageThemingContent: _angular_core.Signal<readonly any[]>;
368
- readonly tabsContent: _angular_core.Signal<EuiTabsComponent>;
369
- private sanitizer;
370
- private location;
371
- private router;
372
- private route;
373
- private asService;
374
- private readonly TABS_DEF;
375
- private readonly CATEGORIES_DEF;
376
- ngOnInit(): void;
377
- ngAfterViewInit(): void;
378
- getCategoryIndex(name: string): number;
379
- onNavClick(fragmentId: string, tabIndex: number): void;
380
- onTabActivate(event: {
381
- tab: EuiTabComponent;
382
- index: number;
383
- }): void;
384
- private _buildCategories;
385
- private _scrollToFragment;
386
- private _getComponentStatus;
387
- private _getApiUrl;
388
- private _camelCaseString;
389
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageComponentV2, never>;
390
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<DocPageComponentV2, "eui-showcase-doc-page-v2", never, { "id": { "alias": "id"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "subLabel": { "alias": "subLabel"; "required": false; "isSignal": true; }; "isNotReadyInput": { "alias": "isNotReady"; "required": false; "isSignal": true; }; "isDeprecatedInput": { "alias": "isDeprecated"; "required": false; "isSignal": true; }; "isLegacyInput": { "alias": "isLegacy"; "required": false; "isSignal": true; }; "codeFolder": { "alias": "codeFolder"; "required": false; "isSignal": true; }; "showcase": { "alias": "showcase"; "required": false; "isSignal": true; }; "isNavigationVisible": { "alias": "isNavigationVisible"; "required": false; "isSignal": true; }; "hasApi": { "alias": "hasApi"; "required": false; "isSignal": true; }; "hasA11y": { "alias": "hasA11y"; "required": false; "isSignal": true; }; "customApiUrl": { "alias": "customApiUrl"; "required": false; "isSignal": true; }; }, {}, ["samples", "sections", "pageOverviewContent", "pageOverviewDefaultContent", "pageSamplesContent", "pageSectionsContent", "pageInteractiveContent", "pageAccessibilityContent", "pageApiContent", "pageThemingContent"], ["docPageOverviewV2", "docPageOverviewDefaultV2", "docPageSamplesV2", "docPageAccessibilityV2", "docPageThemingV2", "docPageInteractiveV2", "docPageSectionsV2"], true, never>;
391
- }
392
- declare class DocPageOverviewContentDirectiveV2 {
393
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageOverviewContentDirectiveV2, never>;
394
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocPageOverviewContentDirectiveV2, "docPageOverviewV2", never, {}, {}, never, never, true, never>;
395
- }
396
- declare class DocPageOverviewDefaultContentDirectiveV2 {
397
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageOverviewDefaultContentDirectiveV2, never>;
398
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocPageOverviewDefaultContentDirectiveV2, "docPageOverviewDefaultV2", never, {}, {}, never, never, true, never>;
399
- }
400
- declare class DocPageInteractiveContentDirectiveV2 {
401
- readonly title: _angular_core.InputSignal<string>;
402
- readonly subTitle: _angular_core.InputSignal<string>;
403
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageInteractiveContentDirectiveV2, never>;
404
- 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>;
405
- }
406
- declare class DocPageSamplesContentDirectiveV2 {
407
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageSamplesContentDirectiveV2, never>;
408
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocPageSamplesContentDirectiveV2, "docPageSamplesV2", never, {}, {}, never, never, true, never>;
409
- }
410
- declare class DocPageSectionsContentDirectiveV2 {
411
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageSectionsContentDirectiveV2, never>;
412
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocPageSectionsContentDirectiveV2, "docPageSectionsV2", never, {}, {}, never, never, true, never>;
413
- }
414
- declare class DocPageAccessibilityContentDirectiveV2 {
415
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageAccessibilityContentDirectiveV2, never>;
416
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocPageAccessibilityContentDirectiveV2, "docPageAccessibilityV2", never, {}, {}, never, never, true, never>;
417
- }
418
- declare class DocPageApiContentDirectiveV2 {
419
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageApiContentDirectiveV2, never>;
420
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocPageApiContentDirectiveV2, "docPageApiV2", never, {}, {}, never, never, true, never>;
421
- }
422
- declare class DocPageThemingContentDirectiveV2 {
423
- static ɵfac: _angular_core.ɵɵFactoryDeclaration<DocPageThemingContentDirectiveV2, never>;
424
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DocPageThemingContentDirectiveV2, "docPageThemingV2", never, {}, {}, never, never, true, never>;
425
- }
426
-
427
303
  declare class DocPageCodeFabComponent {
428
304
  readonly codeFolder: _angular_core.InputSignal<string>;
429
305
  readonly showcase: _angular_core.InputSignal<string>;
@@ -726,8 +602,8 @@ declare class StackblitzService {
726
602
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<StackblitzService>;
727
603
  }
728
604
 
729
- 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];
605
+ 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 DocPageVisualSpecsContentDirective, typeof DocPagePlaygroundContentDirective, 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];
730
606
 
731
- export { ConfigurationService, DocPageAccessibilityContentDirective, DocPageAccessibilityContentDirectiveV2, DocPageApiContentDirective, DocPageApiContentDirectiveV2, DocPageCodeComponent, DocPageCodeFabComponent, DocPageCodeModalComponent, DocPageComponent, DocPageComponentV2, DocPageDevGuideComponent, DocPageDevGuideComponentV2, DocPageInteractiveContentDirective, DocPageInteractiveContentDirectiveV2, DocPageOverviewContentDirective, DocPageOverviewContentDirectiveV2, DocPageOverviewDefaultContentDirective, DocPageOverviewDefaultContentDirectiveV2, DocPagePatternComponent, DocPagePatternDocDirective, DocPagePatternSampleComponent, DocPagePatternSampleDirective, DocPagePatternSampleDocDirective, DocPagePatternSampleRefsComponent, DocPagePatternSimpleComponent, DocPagePatternSimpleDocDirective, DocPageSamplesContentDirective, DocPageSamplesContentDirectiveV2, DocPageSectionsContentDirective, DocPageSectionsContentDirectiveV2, DocPageThemingContentDirective, DocPageThemingContentDirectiveV2, DocSampleApiComponent, DocSampleComponent, DocSectionCodeComponent, DocSectionCodeCssTagDirective, DocSectionCodeDescriptionTagDirective, DocSectionCodeDocTagDirective, DocSectionCodeHtmlTagDirective, DocSectionCodeServiceTagDirective, DocSectionCodeTsTagDirective, DocSectionComponent, EUI_SHOWCASE, EuiCodeHighlighterDirective, LoremIpsumSampleComponent, PACKAGE_JSON, PlaygroundComponent, StackblitzService, angularJsonFile, indexHtmlFile, mainFile, moduleFile, polyfillsFile, tsConfig };
607
+ export { ConfigurationService, DocPageAccessibilityContentDirective, DocPageApiContentDirective, DocPageCodeComponent, DocPageCodeFabComponent, DocPageCodeModalComponent, DocPageComponent, DocPageDevGuideComponent, DocPageInteractiveContentDirective, DocPageOverviewContentDirective, DocPageOverviewDefaultContentDirective, DocPagePatternComponent, DocPagePatternDocDirective, DocPagePatternSampleComponent, DocPagePatternSampleDirective, DocPagePatternSampleDocDirective, DocPagePatternSampleRefsComponent, DocPagePatternSimpleComponent, DocPagePatternSimpleDocDirective, DocPagePlaygroundContentDirective, DocPageSamplesContentDirective, DocPageSectionsContentDirective, DocPageThemingContentDirective, DocPageVisualSpecsContentDirective, DocSampleApiComponent, DocSampleComponent, DocSectionCodeComponent, DocSectionCodeCssTagDirective, DocSectionCodeDescriptionTagDirective, DocSectionCodeDocTagDirective, DocSectionCodeHtmlTagDirective, DocSectionCodeServiceTagDirective, DocSectionCodeTsTagDirective, DocSectionComponent, EUI_SHOWCASE, EuiCodeHighlighterDirective, LoremIpsumSampleComponent, PACKAGE_JSON, PlaygroundComponent, StackblitzService, angularJsonFile, indexHtmlFile, mainFile, moduleFile, polyfillsFile, tsConfig };
732
608
  export type { Configuration };
733
609
  //# sourceMappingURL=eui-showcase.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"eui-showcase.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-page/doc-page-dev-guide-v2.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/doc-page-v2.component.ts","../../src/lib/components/doc-page-code-fab/doc-page-code-fab.component.ts","../../src/lib/components/doc-page-code-modal/doc-page-code-modal.component.ts","../../src/lib/components/doc-page-pattern/doc-page-pattern.component.ts","../../src/lib/components/doc-page-pattern-sample/doc-page-pattern-sample-refs.component.ts","../../src/lib/components/doc-page-pattern-sample/doc-page-pattern-sample.component.ts","../../src/lib/components/doc-page-pattern-simple/doc-page-pattern-simple.component.ts","../../src/lib/components/doc-sample-api/doc-sample-api.component.ts","../../src/lib/components/doc-section-code/doc-section-code.component.ts","../../src/lib/components/eui-code-highlighter/eui-code-highlighter.component.ts","../../src/lib/components/lorem-ipsum/lorem-ipsum-sample.component.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/index.ts"],"mappings":"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","names":["ComponentStatus"]}
1
+ {"version":3,"file":"eui-showcase.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-code-fab/doc-page-code-fab.component.ts","../../src/lib/components/doc-page-code-modal/doc-page-code-modal.component.ts","../../src/lib/components/doc-page-pattern/doc-page-pattern.component.ts","../../src/lib/components/doc-page-pattern-sample/doc-page-pattern-sample-refs.component.ts","../../src/lib/components/doc-page-pattern-sample/doc-page-pattern-sample.component.ts","../../src/lib/components/doc-page-pattern-simple/doc-page-pattern-simple.component.ts","../../src/lib/components/doc-sample-api/doc-sample-api.component.ts","../../src/lib/components/doc-section-code/doc-section-code.component.ts","../../src/lib/components/eui-code-highlighter/eui-code-highlighter.component.ts","../../src/lib/components/lorem-ipsum/lorem-ipsum-sample.component.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/index.ts"],"mappings":"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","names":[]}