@eui/showcase 21.0.0-alpha.19 → 21.0.0-alpha.20

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.
@@ -1375,20 +1375,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.0-next.3",
1375
1375
  args: [{ selector: 'docPageTheming' }]
1376
1376
  }] });
1377
1377
 
1378
- const EUI_SHOWCASE_DOC_PAGE = [
1379
- DocPageComponent,
1380
- DocPageCodeComponent,
1381
- DocPageDevGuideComponent,
1382
- DocPageApiContentDirective,
1383
- DocPageAccessibilityContentDirective,
1384
- DocPageInteractiveContentDirective,
1385
- DocPageOverviewContentDirective,
1386
- DocPageOverviewDefaultContentDirective,
1387
- DocPageSamplesContentDirective,
1388
- DocPageSectionsContentDirective,
1389
- DocPageThemingContentDirective,
1390
- ];
1391
-
1392
1378
  class DocPageCodeFabComponent {
1393
1379
  constructor() {
1394
1380
  this.codeFolder = '';
@@ -1429,10 +1415,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.0-next.3",
1429
1415
  args: ['dialog']
1430
1416
  }] } });
1431
1417
 
1432
- const EUI_SHOWCASE_DOC_PAGE_CODE_FAB = [
1433
- DocPageCodeFabComponent,
1434
- ];
1435
-
1436
1418
  class DocPageCodeModalComponent {
1437
1419
  constructor() {
1438
1420
  this.width = '95vw';
@@ -1461,10 +1443,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.0-next.3",
1461
1443
  args: ['dialog']
1462
1444
  }] } });
1463
1445
 
1464
- const EUI_SHOWCASE_DOC_PAGE_CODE_MODAL = [
1465
- DocPageCodeModalComponent,
1466
- ];
1467
-
1468
1446
  /* eslint-disable max-len */
1469
1447
  /* eslint-disable */
1470
1448
  class DocPagePatternSampleDirective {
@@ -1572,11 +1550,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.0-next.3",
1572
1550
  args: ['window:scroll']
1573
1551
  }] } });
1574
1552
 
1575
- const EUI_SHOWCASE_DOC_PAGE_PATTERN = [
1576
- DocPagePatternComponent,
1577
- DocPagePatternDocDirective,
1578
- DocPagePatternSampleDirective,
1579
- ];
1553
+ class DocPagePatternSampleRefsComponent {
1554
+ constructor() {
1555
+ this.string = 'eui-showcase-doc-page-pattern-sample-refs';
1556
+ this.docEntries = [];
1557
+ }
1558
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.0-next.3", ngImport: i0, type: DocPagePatternSampleRefsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1559
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.0.0-next.3", type: DocPagePatternSampleRefsComponent, isStandalone: true, selector: "eui-showcase-doc-pattern-sample-refs", inputs: { docEntries: "docEntries", codeFolder: "codeFolder" }, host: { properties: { "class": "this.string" } }, ngImport: i0, template: "<h4 class=\"eui-u-mt-3xl eui-u-text-h4\">Design system references</h4>\n\n<div class=\"row\">\n <div class=\"col-md-6 eui-u-mb-3xl\" *ngFor=\"let ref of docEntries\">\n <eui-card class=\"eui-u-height-100\">\n <eui-card-header>\n <eui-card-header-title>\n <div class=\"eui-u-flex\">\n <eui-badge *ngIf=\"ref?.id\" [euiDanger]=\"ref.mandatory\" [euiPrimary]=\"!ref.mandatory\" class=\"eui-u-mr-s\">{{ ref.id }}</eui-badge>\n <span class=\"eui-u-f-l\">{{ ref.name }}</span>\n <eui-chip [euiDanger]=\"ref.mandatory\" [euiInfo]=\"!ref.mandatory\" class=\"eui-u-ml-m\">\n <span *ngIf=\"ref.mandatory\" euiLabel><strong> Mandatory </strong></span>\n <span *ngIf=\"!ref.mandatory\" euiLabel><strong> Optional </strong></span>\n </eui-chip> \n </div>\n </eui-card-header-title>\n </eui-card-header>\n <eui-card-content class=\"eui-u-display-flex eui-u-flex-column eui-u-flex-gap-s\">\n <div class=\"eui-u-f-bold\">Description</div>\n <div class=\"html\" [innerHTML]=\"ref.description\"></div>\n\n <ng-container *ngIf=\"ref.whenToUse\">\n <div class=\"eui-u-f-bold\">When to use ?</div>\n <div class=\"html\" [innerHTML]=\"ref.whenToUse\"></div>\n </ng-container>\n <ng-container *ngIf=\"ref.whenNotToUse\">\n <div class=\"eui-u-f-bold\">When to not use ?</div>\n <div class=\"html\" [innerHTML]=\"ref.whenNotToUse\"></div>\n </ng-container>\n <div class=\"row eui-u-mt-l\">\n <div class=\"col-md-6\">\n <ng-container *ngIf=\"ref.dos && ref.dos.length !== 0\">\n <div class=\"eui-u-c-bg-success eui-u-p-xs\"></div>\n <div class=\"eui-u-c-s-success eui-u-f-bold eui-u-mt-s eui-u-mb-xs\">Do's</div>\n <li *ngFor=\"let do of ref.dos\">{{ do }}</li>\n </ng-container>\n </div>\n <div class=\"col-md-6\">\n <ng-container *ngIf=\"ref.donts && ref.donts.length !== 0\">\n <div class=\"eui-u-c-bg-danger eui-u-p-xs\"></div>\n <div class=\"eui-u-c-s-danger eui-u-mt-s eui-u-mb-xs eui-u-f-bold\">Dont's</div>\n <li *ngFor=\"let dont of ref.donts\">{{ dont }}</li>\n </ng-container>\n </div>\n </div>\n </eui-card-content>\n </eui-card>\n </div>\n</div>\n\n\n", styles: [":host{display:flex;flex-direction:column;padding:var(--eui-s-xl) var(--eui-s-xl) 0 var(--eui-s-xl)}:host .doc-page-section-title{margin-top:var(--eui-s-3xl);margin-bottom:var(--eui-s-xl);color:var(--eui-c-primary);letter-spacing:-1px;font:var(--eui-f-l-bold)}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i5.EuiChipComponent, selector: "eui-chip, span[euiChip], li[euiChip]", inputs: ["ariaLabel", "e2eAttr", "euiInternalId", "tooltipMessage", "id", "data", "isChipRemovable", "isSquared", "isFilled"], outputs: ["remove"] }, { kind: "component", type: i4$1.EuiCardComponent, selector: "eui-card", inputs: ["e2eAttr", "euiSelected", "euiCollapsible", "euiCollapsed", "euiUrgent", "euiNoShadow", "euiNoContentPadding", "euiHoverable"], outputs: ["collapse"] }, { kind: "component", type: i4$1.EuiCardHeaderComponent, selector: "eui-card-header", inputs: ["expandLabel", "collapseLabel", "hasBottomExpander", "hasFullTitle", "isHeaderMultilines"], outputs: ["collapse"] }, { kind: "component", type: i4$1.EuiCardHeaderTitleComponent, selector: "eui-card-header-title" }, { kind: "component", type: i4$1.EuiCardContentComponent, selector: "eui-card-content" }, { kind: "component", type: i6$1.EuiBadgeComponent, selector: "div[euiBadge], span[euiBadge], eui-badge", inputs: ["e2eAttr", "aria-label", "maxCharCount", "charReplacement", "euiIconBadge", "euiDottedBadge"] }] }); }
1560
+ }
1561
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.0-next.3", ngImport: i0, type: DocPagePatternSampleRefsComponent, decorators: [{
1562
+ type: Component,
1563
+ args: [{ selector: 'eui-showcase-doc-pattern-sample-refs', imports: [
1564
+ CommonModule,
1565
+ ...EUI_CHIP,
1566
+ ...EUI_CARD,
1567
+ ...EUI_BADGE,
1568
+ ], template: "<h4 class=\"eui-u-mt-3xl eui-u-text-h4\">Design system references</h4>\n\n<div class=\"row\">\n <div class=\"col-md-6 eui-u-mb-3xl\" *ngFor=\"let ref of docEntries\">\n <eui-card class=\"eui-u-height-100\">\n <eui-card-header>\n <eui-card-header-title>\n <div class=\"eui-u-flex\">\n <eui-badge *ngIf=\"ref?.id\" [euiDanger]=\"ref.mandatory\" [euiPrimary]=\"!ref.mandatory\" class=\"eui-u-mr-s\">{{ ref.id }}</eui-badge>\n <span class=\"eui-u-f-l\">{{ ref.name }}</span>\n <eui-chip [euiDanger]=\"ref.mandatory\" [euiInfo]=\"!ref.mandatory\" class=\"eui-u-ml-m\">\n <span *ngIf=\"ref.mandatory\" euiLabel><strong> Mandatory </strong></span>\n <span *ngIf=\"!ref.mandatory\" euiLabel><strong> Optional </strong></span>\n </eui-chip> \n </div>\n </eui-card-header-title>\n </eui-card-header>\n <eui-card-content class=\"eui-u-display-flex eui-u-flex-column eui-u-flex-gap-s\">\n <div class=\"eui-u-f-bold\">Description</div>\n <div class=\"html\" [innerHTML]=\"ref.description\"></div>\n\n <ng-container *ngIf=\"ref.whenToUse\">\n <div class=\"eui-u-f-bold\">When to use ?</div>\n <div class=\"html\" [innerHTML]=\"ref.whenToUse\"></div>\n </ng-container>\n <ng-container *ngIf=\"ref.whenNotToUse\">\n <div class=\"eui-u-f-bold\">When to not use ?</div>\n <div class=\"html\" [innerHTML]=\"ref.whenNotToUse\"></div>\n </ng-container>\n <div class=\"row eui-u-mt-l\">\n <div class=\"col-md-6\">\n <ng-container *ngIf=\"ref.dos && ref.dos.length !== 0\">\n <div class=\"eui-u-c-bg-success eui-u-p-xs\"></div>\n <div class=\"eui-u-c-s-success eui-u-f-bold eui-u-mt-s eui-u-mb-xs\">Do's</div>\n <li *ngFor=\"let do of ref.dos\">{{ do }}</li>\n </ng-container>\n </div>\n <div class=\"col-md-6\">\n <ng-container *ngIf=\"ref.donts && ref.donts.length !== 0\">\n <div class=\"eui-u-c-bg-danger eui-u-p-xs\"></div>\n <div class=\"eui-u-c-s-danger eui-u-mt-s eui-u-mb-xs eui-u-f-bold\">Dont's</div>\n <li *ngFor=\"let dont of ref.donts\">{{ dont }}</li>\n </ng-container>\n </div>\n </div>\n </eui-card-content>\n </eui-card>\n </div>\n</div>\n\n\n", styles: [":host{display:flex;flex-direction:column;padding:var(--eui-s-xl) var(--eui-s-xl) 0 var(--eui-s-xl)}:host .doc-page-section-title{margin-top:var(--eui-s-3xl);margin-bottom:var(--eui-s-xl);color:var(--eui-c-primary);letter-spacing:-1px;font:var(--eui-f-l-bold)}\n"] }]
1569
+ }], propDecorators: { string: [{
1570
+ type: HostBinding,
1571
+ args: ['class']
1572
+ }], docEntries: [{
1573
+ type: Input
1574
+ }], codeFolder: [{
1575
+ type: Input
1576
+ }] } });
1580
1577
 
1581
1578
  /* eslint-disable */
1582
1579
  class DocPagePatternSampleDocDirective {
@@ -1649,37 +1646,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.0-next.3",
1649
1646
  args: [forwardRef(() => DocPagePatternSampleDocDirective)]
1650
1647
  }] } });
1651
1648
 
1652
- class DocPagePatternSampleRefsComponent {
1653
- constructor() {
1654
- this.string = 'eui-showcase-doc-page-pattern-sample-refs';
1655
- this.docEntries = [];
1656
- }
1657
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.0-next.3", ngImport: i0, type: DocPagePatternSampleRefsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1658
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.0.0-next.3", type: DocPagePatternSampleRefsComponent, isStandalone: true, selector: "eui-showcase-doc-pattern-sample-refs", inputs: { docEntries: "docEntries", codeFolder: "codeFolder" }, host: { properties: { "class": "this.string" } }, ngImport: i0, template: "<h4 class=\"eui-u-mt-3xl eui-u-text-h4\">Design system references</h4>\n\n<div class=\"row\">\n <div class=\"col-md-6 eui-u-mb-3xl\" *ngFor=\"let ref of docEntries\">\n <eui-card class=\"eui-u-height-100\">\n <eui-card-header>\n <eui-card-header-title>\n <div class=\"eui-u-flex\">\n <eui-badge *ngIf=\"ref?.id\" [euiDanger]=\"ref.mandatory\" [euiPrimary]=\"!ref.mandatory\" class=\"eui-u-mr-s\">{{ ref.id }}</eui-badge>\n <span class=\"eui-u-f-l\">{{ ref.name }}</span>\n <eui-chip [euiDanger]=\"ref.mandatory\" [euiInfo]=\"!ref.mandatory\" class=\"eui-u-ml-m\">\n <span *ngIf=\"ref.mandatory\" euiLabel><strong> Mandatory </strong></span>\n <span *ngIf=\"!ref.mandatory\" euiLabel><strong> Optional </strong></span>\n </eui-chip> \n </div>\n </eui-card-header-title>\n </eui-card-header>\n <eui-card-content class=\"eui-u-display-flex eui-u-flex-column eui-u-flex-gap-s\">\n <div class=\"eui-u-f-bold\">Description</div>\n <div class=\"html\" [innerHTML]=\"ref.description\"></div>\n\n <ng-container *ngIf=\"ref.whenToUse\">\n <div class=\"eui-u-f-bold\">When to use ?</div>\n <div class=\"html\" [innerHTML]=\"ref.whenToUse\"></div>\n </ng-container>\n <ng-container *ngIf=\"ref.whenNotToUse\">\n <div class=\"eui-u-f-bold\">When to not use ?</div>\n <div class=\"html\" [innerHTML]=\"ref.whenNotToUse\"></div>\n </ng-container>\n <div class=\"row eui-u-mt-l\">\n <div class=\"col-md-6\">\n <ng-container *ngIf=\"ref.dos && ref.dos.length !== 0\">\n <div class=\"eui-u-c-bg-success eui-u-p-xs\"></div>\n <div class=\"eui-u-c-s-success eui-u-f-bold eui-u-mt-s eui-u-mb-xs\">Do's</div>\n <li *ngFor=\"let do of ref.dos\">{{ do }}</li>\n </ng-container>\n </div>\n <div class=\"col-md-6\">\n <ng-container *ngIf=\"ref.donts && ref.donts.length !== 0\">\n <div class=\"eui-u-c-bg-danger eui-u-p-xs\"></div>\n <div class=\"eui-u-c-s-danger eui-u-mt-s eui-u-mb-xs eui-u-f-bold\">Dont's</div>\n <li *ngFor=\"let dont of ref.donts\">{{ dont }}</li>\n </ng-container>\n </div>\n </div>\n </eui-card-content>\n </eui-card>\n </div>\n</div>\n\n\n", styles: [":host{display:flex;flex-direction:column;padding:var(--eui-s-xl) var(--eui-s-xl) 0 var(--eui-s-xl)}:host .doc-page-section-title{margin-top:var(--eui-s-3xl);margin-bottom:var(--eui-s-xl);color:var(--eui-c-primary);letter-spacing:-1px;font:var(--eui-f-l-bold)}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i5.EuiChipComponent, selector: "eui-chip, span[euiChip], li[euiChip]", inputs: ["ariaLabel", "e2eAttr", "euiInternalId", "tooltipMessage", "id", "data", "isChipRemovable", "isSquared", "isFilled"], outputs: ["remove"] }, { kind: "component", type: i4$1.EuiCardComponent, selector: "eui-card", inputs: ["e2eAttr", "euiSelected", "euiCollapsible", "euiCollapsed", "euiUrgent", "euiNoShadow", "euiNoContentPadding", "euiHoverable"], outputs: ["collapse"] }, { kind: "component", type: i4$1.EuiCardHeaderComponent, selector: "eui-card-header", inputs: ["expandLabel", "collapseLabel", "hasBottomExpander", "hasFullTitle", "isHeaderMultilines"], outputs: ["collapse"] }, { kind: "component", type: i4$1.EuiCardHeaderTitleComponent, selector: "eui-card-header-title" }, { kind: "component", type: i4$1.EuiCardContentComponent, selector: "eui-card-content" }, { kind: "component", type: i6$1.EuiBadgeComponent, selector: "div[euiBadge], span[euiBadge], eui-badge", inputs: ["e2eAttr", "aria-label", "maxCharCount", "charReplacement", "euiIconBadge", "euiDottedBadge"] }] }); }
1659
- }
1660
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.0-next.3", ngImport: i0, type: DocPagePatternSampleRefsComponent, decorators: [{
1661
- type: Component,
1662
- args: [{ selector: 'eui-showcase-doc-pattern-sample-refs', imports: [
1663
- CommonModule,
1664
- ...EUI_CHIP,
1665
- ...EUI_CARD,
1666
- ...EUI_BADGE,
1667
- ], template: "<h4 class=\"eui-u-mt-3xl eui-u-text-h4\">Design system references</h4>\n\n<div class=\"row\">\n <div class=\"col-md-6 eui-u-mb-3xl\" *ngFor=\"let ref of docEntries\">\n <eui-card class=\"eui-u-height-100\">\n <eui-card-header>\n <eui-card-header-title>\n <div class=\"eui-u-flex\">\n <eui-badge *ngIf=\"ref?.id\" [euiDanger]=\"ref.mandatory\" [euiPrimary]=\"!ref.mandatory\" class=\"eui-u-mr-s\">{{ ref.id }}</eui-badge>\n <span class=\"eui-u-f-l\">{{ ref.name }}</span>\n <eui-chip [euiDanger]=\"ref.mandatory\" [euiInfo]=\"!ref.mandatory\" class=\"eui-u-ml-m\">\n <span *ngIf=\"ref.mandatory\" euiLabel><strong> Mandatory </strong></span>\n <span *ngIf=\"!ref.mandatory\" euiLabel><strong> Optional </strong></span>\n </eui-chip> \n </div>\n </eui-card-header-title>\n </eui-card-header>\n <eui-card-content class=\"eui-u-display-flex eui-u-flex-column eui-u-flex-gap-s\">\n <div class=\"eui-u-f-bold\">Description</div>\n <div class=\"html\" [innerHTML]=\"ref.description\"></div>\n\n <ng-container *ngIf=\"ref.whenToUse\">\n <div class=\"eui-u-f-bold\">When to use ?</div>\n <div class=\"html\" [innerHTML]=\"ref.whenToUse\"></div>\n </ng-container>\n <ng-container *ngIf=\"ref.whenNotToUse\">\n <div class=\"eui-u-f-bold\">When to not use ?</div>\n <div class=\"html\" [innerHTML]=\"ref.whenNotToUse\"></div>\n </ng-container>\n <div class=\"row eui-u-mt-l\">\n <div class=\"col-md-6\">\n <ng-container *ngIf=\"ref.dos && ref.dos.length !== 0\">\n <div class=\"eui-u-c-bg-success eui-u-p-xs\"></div>\n <div class=\"eui-u-c-s-success eui-u-f-bold eui-u-mt-s eui-u-mb-xs\">Do's</div>\n <li *ngFor=\"let do of ref.dos\">{{ do }}</li>\n </ng-container>\n </div>\n <div class=\"col-md-6\">\n <ng-container *ngIf=\"ref.donts && ref.donts.length !== 0\">\n <div class=\"eui-u-c-bg-danger eui-u-p-xs\"></div>\n <div class=\"eui-u-c-s-danger eui-u-mt-s eui-u-mb-xs eui-u-f-bold\">Dont's</div>\n <li *ngFor=\"let dont of ref.donts\">{{ dont }}</li>\n </ng-container>\n </div>\n </div>\n </eui-card-content>\n </eui-card>\n </div>\n</div>\n\n\n", styles: [":host{display:flex;flex-direction:column;padding:var(--eui-s-xl) var(--eui-s-xl) 0 var(--eui-s-xl)}:host .doc-page-section-title{margin-top:var(--eui-s-3xl);margin-bottom:var(--eui-s-xl);color:var(--eui-c-primary);letter-spacing:-1px;font:var(--eui-f-l-bold)}\n"] }]
1668
- }], propDecorators: { string: [{
1669
- type: HostBinding,
1670
- args: ['class']
1671
- }], docEntries: [{
1672
- type: Input
1673
- }], codeFolder: [{
1674
- type: Input
1675
- }] } });
1676
-
1677
- const EUI_SHOWCASE_DOC_PAGE_PATTERN_SAMPLE = [
1678
- DocPagePatternSampleComponent,
1679
- DocPagePatternSampleDocDirective,
1680
- DocPagePatternSampleRefsComponent,
1681
- ];
1682
-
1683
1649
  /* eslint-disable max-len */
1684
1650
  /* eslint-disable */
1685
1651
  class DocPagePatternSimpleDocDirective {
@@ -1776,15 +1742,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.0-next.3",
1776
1742
  args: ['window:scroll']
1777
1743
  }] } });
1778
1744
 
1779
- const EUI_SHOWCASE_DOC_PAGE_PATTERN_SIMPLE = [
1780
- DocPagePatternSimpleComponent,
1781
- DocPagePatternSimpleDocDirective,
1782
- ];
1783
-
1784
- const EUI_SHOWCASE_DOC_SAMPLE = [
1785
- DocSampleComponent,
1786
- ];
1787
-
1788
1745
  class DocSampleApiComponent {
1789
1746
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "21.0.0-next.3", ngImport: i0, type: DocSampleApiComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
1790
1747
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "21.0.0-next.3", type: DocSampleApiComponent, isStandalone: true, selector: "eui-showcase-doc-sample-api", ngImport: i0, template: "" }); }
@@ -1794,14 +1751,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.0-next.3",
1794
1751
  args: [{ selector: 'eui-showcase-doc-sample-api', template: "" }]
1795
1752
  }] });
1796
1753
 
1797
- const EUI_SHOWCASE_DOC_SAMPLE_API = [
1798
- DocSampleApiComponent,
1799
- ];
1800
-
1801
- const EUI_SHOWCASE_DOC_SECTION = [
1802
- DocSectionComponent,
1803
- ];
1804
-
1805
1754
  class DocSectionCodeComponent {
1806
1755
  constructor() {
1807
1756
  this.isDeprecated = false;
@@ -1906,16 +1855,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.0-next.3",
1906
1855
  args: [{ selector: 'sectionCodeDOC' }]
1907
1856
  }] });
1908
1857
 
1909
- const EUI_SHOWCASE_DOC_SECTION_CODE = [
1910
- DocSectionCodeComponent,
1911
- DocSectionCodeCssTagDirective,
1912
- DocSectionCodeDescriptionTagDirective,
1913
- DocSectionCodeDocTagDirective,
1914
- DocSectionCodeHtmlTagDirective,
1915
- DocSectionCodeServiceTagDirective,
1916
- DocSectionCodeTsTagDirective,
1917
- ];
1918
-
1919
1858
  class EuiCodeHighlighterDirective {
1920
1859
  constructor() {
1921
1860
  this.el = inject(ElementRef);
@@ -1935,10 +1874,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.0-next.3",
1935
1874
  }]
1936
1875
  }] });
1937
1876
 
1938
- const EUI_SHOWCASE_CODE_HIGHLIGHTER = [
1939
- EuiCodeHighlighterDirective,
1940
- ];
1941
-
1942
1877
  class LoremIpsumSampleComponent {
1943
1878
  constructor() {
1944
1879
  this.textSize = 'large';
@@ -1955,10 +1890,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.0-next.3",
1955
1890
  type: Input
1956
1891
  }] } });
1957
1892
 
1958
- const EUI_SHOWCASE_LOREM_IPSUM = [
1959
- LoremIpsumSampleComponent,
1960
- ];
1961
-
1962
1893
  class PlaygroundComponent {
1963
1894
  constructor() {
1964
1895
  this.title = 'eUI Playground';
@@ -2044,29 +1975,46 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.0.0-next.3",
2044
1975
  args: ['container', { read: ElementRef, static: true }]
2045
1976
  }] } });
2046
1977
 
2047
- const EUI_SHOWCASE_PLAYGROUND = [
2048
- PlaygroundComponent,
2049
- ];
2050
-
2051
1978
  const EUI_SHOWCASE = [
2052
- ...EUI_SHOWCASE_DOC_PAGE,
2053
- ...EUI_SHOWCASE_DOC_PAGE_CODE_FAB,
2054
- ...EUI_SHOWCASE_DOC_PAGE_CODE_MODAL,
2055
- ...EUI_SHOWCASE_DOC_PAGE_PATTERN,
2056
- ...EUI_SHOWCASE_DOC_PAGE_PATTERN_SAMPLE,
2057
- ...EUI_SHOWCASE_DOC_PAGE_PATTERN_SIMPLE,
2058
- ...EUI_SHOWCASE_DOC_SAMPLE,
2059
- ...EUI_SHOWCASE_DOC_SAMPLE_API,
2060
- ...EUI_SHOWCASE_DOC_SECTION,
2061
- ...EUI_SHOWCASE_DOC_SECTION_CODE,
2062
- ...EUI_SHOWCASE_CODE_HIGHLIGHTER,
2063
- ...EUI_SHOWCASE_LOREM_IPSUM,
2064
- ...EUI_SHOWCASE_PLAYGROUND,
1979
+ DocPageAccessibilityContentDirective,
1980
+ DocPageApiContentDirective,
1981
+ DocPageCodeComponent,
1982
+ DocPageComponent,
1983
+ DocPageDevGuideComponent,
1984
+ DocPageInteractiveContentDirective,
1985
+ DocPageOverviewContentDirective,
1986
+ DocPageOverviewDefaultContentDirective,
1987
+ DocPageSamplesContentDirective,
1988
+ DocPageSectionsContentDirective,
1989
+ DocPageThemingContentDirective,
1990
+ DocPageCodeFabComponent,
1991
+ DocPageCodeModalComponent,
1992
+ DocPagePatternComponent,
1993
+ DocPagePatternDocDirective,
1994
+ DocPagePatternSampleDirective,
1995
+ DocPagePatternSampleComponent,
1996
+ DocPagePatternSampleDocDirective,
1997
+ DocPagePatternSampleRefsComponent,
1998
+ DocPagePatternSimpleComponent,
1999
+ DocPagePatternSimpleDocDirective,
2000
+ DocSampleComponent,
2001
+ DocSampleApiComponent,
2002
+ DocSectionComponent,
2003
+ DocSectionCodeComponent,
2004
+ DocSectionCodeCssTagDirective,
2005
+ DocSectionCodeDescriptionTagDirective,
2006
+ DocSectionCodeDocTagDirective,
2007
+ DocSectionCodeHtmlTagDirective,
2008
+ DocSectionCodeServiceTagDirective,
2009
+ DocSectionCodeTsTagDirective,
2010
+ EuiCodeHighlighterDirective,
2011
+ LoremIpsumSampleComponent,
2012
+ PlaygroundComponent,
2065
2013
  ];
2066
2014
 
2067
2015
  /**
2068
2016
  * Generated bundle index. Do not edit.
2069
2017
  */
2070
2018
 
2071
- 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 };
2019
+ 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, EuiCodeHighlighterDirective, LoremIpsumSampleComponent, PACKAGE_JSON, PlaygroundComponent, StackblitzService, angularJsonFile, indexHtmlFile, mainFile, moduleFile, polyfillsFile, tsConfig };
2072
2020
  //# sourceMappingURL=eui-showcase.mjs.map