@eui/ecl 18.0.0-next.21 → 18.0.0-next.22
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/docs/components/EclGalleryComponent.html +25 -142
- package/docs/components/EclGalleryFooterComponent.html +1 -1
- package/docs/components/EclGalleryItemComponent.html +2 -90
- package/docs/components/EclInpageNavigationComponent.html +102 -1
- package/docs/components/EclInpageNavigationItemComponent.html +1 -1
- package/docs/dependencies.html +1 -1
- package/docs/index.html +1 -1
- package/docs/js/menu-wc.js +3 -6
- package/docs/js/menu-wc_es5.js +1 -1
- package/docs/js/search/search_index.js +2 -2
- package/esm2022/lib/components/ecl-gallery/ecl-gallery-footer.component.mjs +5 -6
- package/esm2022/lib/components/ecl-gallery/ecl-gallery-item.component.mjs +8 -27
- package/esm2022/lib/components/ecl-gallery/ecl-gallery.component.mjs +18 -76
- package/esm2022/lib/components/ecl-icon/ecl-icon.component.mjs +2 -2
- package/esm2022/lib/components/ecl-inpage-navigation/ecl-inpage-navigation-item.component.mjs +3 -3
- package/esm2022/lib/components/ecl-inpage-navigation/ecl-inpage-navigation.component.mjs +33 -15
- package/esm2022/lib/components/ecl-inpage-navigation/ecl-inpage-navigation.module.mjs +5 -5
- package/esm2022/lib/components/ecl-link/ecl-link.directive.mjs +2 -2
- package/fesm2022/eui-ecl.mjs +564 -629
- package/fesm2022/eui-ecl.mjs.map +4 -4
- package/lib/components/ecl-gallery/ecl-gallery-item.component.d.ts +4 -10
- package/lib/components/ecl-gallery/ecl-gallery-item.component.d.ts.map +1 -1
- package/lib/components/ecl-gallery/ecl-gallery.component.d.ts +15 -38
- package/lib/components/ecl-gallery/ecl-gallery.component.d.ts.map +1 -1
- package/lib/components/ecl-icon/ecl-icon.component.d.ts.map +1 -1
- package/lib/components/ecl-inpage-navigation/ecl-inpage-navigation.component.d.ts +10 -2
- package/lib/components/ecl-inpage-navigation/ecl-inpage-navigation.component.d.ts.map +1 -1
- package/lib/components/ecl-link/ecl-link.directive.d.ts.map +1 -1
- package/package.json +1 -1
- package/docs/classes/EclGalleryDownloadEvent.html +0 -382
package/fesm2022/eui-ecl.mjs
CHANGED
|
@@ -511,7 +511,7 @@ var EclIconComponent = class _EclIconComponent extends ECLBaseDirective {
|
|
|
511
511
|
if (this.svgEl) {
|
|
512
512
|
const hostParentEl = this.svgEl.nativeElement.parentElement;
|
|
513
513
|
if (hostParentEl) {
|
|
514
|
-
hostParentEl.removeChild(this.svgEl);
|
|
514
|
+
hostParentEl.removeChild(this.svgEl.nativeElement);
|
|
515
515
|
}
|
|
516
516
|
}
|
|
517
517
|
} catch (e) {
|
|
@@ -1175,7 +1175,7 @@ var EclLinkDirective = class _EclLinkDirective extends ECLBaseDirective {
|
|
|
1175
1175
|
if (this.eclIconComponents) {
|
|
1176
1176
|
setTimeout(() => {
|
|
1177
1177
|
this.eclIconComponents.forEach((icn) => {
|
|
1178
|
-
icn.class = icn.class + " ecl-link__icon";
|
|
1178
|
+
icn.class = icn.class ? icn.class + " ecl-link__icon" : "ecl-link__icon";
|
|
1179
1179
|
});
|
|
1180
1180
|
});
|
|
1181
1181
|
}
|
|
@@ -7526,9 +7526,105 @@ i0112.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
7526
7526
|
}]
|
|
7527
7527
|
}] });
|
|
7528
7528
|
|
|
7529
|
+
// lib/components/ecl-gallery/ecl-gallery-footer.component.mjs
|
|
7530
|
+
import { Component as Component50, EventEmitter as EventEmitter18, Output as Output18 } from "@angular/core";
|
|
7531
|
+
import * as i0113 from "@angular/core";
|
|
7532
|
+
import * as i211 from "@ngx-translate/core";
|
|
7533
|
+
var EclGalleryToggleItemsEvent = class extends EclBaseEvent {
|
|
7534
|
+
constructor(expandAll) {
|
|
7535
|
+
super();
|
|
7536
|
+
this.expandAll = expandAll;
|
|
7537
|
+
}
|
|
7538
|
+
};
|
|
7539
|
+
var EclGalleryFooterComponent = class _EclGalleryFooterComponent {
|
|
7540
|
+
constructor() {
|
|
7541
|
+
this.toggleItems = new EventEmitter18();
|
|
7542
|
+
this._isExpanded = false;
|
|
7543
|
+
this._isShowToggleBtn = false;
|
|
7544
|
+
}
|
|
7545
|
+
get isExpanded() {
|
|
7546
|
+
return this._isExpanded;
|
|
7547
|
+
}
|
|
7548
|
+
set isExpanded(value) {
|
|
7549
|
+
this._isExpanded = value;
|
|
7550
|
+
}
|
|
7551
|
+
get itemsCount() {
|
|
7552
|
+
return this._itemsCount;
|
|
7553
|
+
}
|
|
7554
|
+
set itemsCount(value) {
|
|
7555
|
+
this._itemsCount = value;
|
|
7556
|
+
}
|
|
7557
|
+
get isShowToggleBtn() {
|
|
7558
|
+
return this._isShowToggleBtn;
|
|
7559
|
+
}
|
|
7560
|
+
set isShowToggleBtn(value) {
|
|
7561
|
+
this._isShowToggleBtn = value;
|
|
7562
|
+
}
|
|
7563
|
+
onToggle() {
|
|
7564
|
+
this._isExpanded = !this._isExpanded;
|
|
7565
|
+
this.toggleItems.next(new EclGalleryToggleItemsEvent(this.isExpanded));
|
|
7566
|
+
}
|
|
7567
|
+
static {
|
|
7568
|
+
this.ɵfac = i0113.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0113, type: _EclGalleryFooterComponent, deps: [], target: i0113.ɵɵFactoryTarget.Component });
|
|
7569
|
+
}
|
|
7570
|
+
static {
|
|
7571
|
+
this.ɵcmp = i0113.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.3", type: _EclGalleryFooterComponent, selector: "ecl-gallery-footer", outputs: { toggleItems: "toggleItems" }, ngImport: i0113, template: `<div class="ecl-gallery__footer">
|
|
7572
|
+
<div class="ecl-gallery__info">
|
|
7573
|
+
<div class="ecl-gallery__info-total">
|
|
7574
|
+
<strong>{{ itemsCount }}</strong>{{ 'ecl.gallery.MEDIA-FILES-COUNT' | translate }}
|
|
7575
|
+
</div>
|
|
7576
|
+
@if(isShowToggleBtn) {
|
|
7577
|
+
@if(!isExpanded) {
|
|
7578
|
+
<button eclButton variant="ghost" class="ecl-gallery__view-all" (click)="onToggle()">
|
|
7579
|
+
{{ 'ecl.gallery.VIEW-ALL' | translate }}
|
|
7580
|
+
</button>
|
|
7581
|
+
} @else {
|
|
7582
|
+
<button eclButton variant="ghost" class="ecl-gallery__view-all" (click)="onToggle()">
|
|
7583
|
+
{{ 'ecl.common.COLLAPSE' | translate }}
|
|
7584
|
+
</button>
|
|
7585
|
+
}
|
|
7586
|
+
}
|
|
7587
|
+
</div>
|
|
7588
|
+
<hr class="ecl-gallery__footer-divider" />
|
|
7589
|
+
<div class="ecl-gallery__footer-link">
|
|
7590
|
+
<ng-content></ng-content>
|
|
7591
|
+
</div>
|
|
7592
|
+
</div>
|
|
7593
|
+
`, dependencies: [{ kind: "component", type: EclButtonComponent, selector: "button[eclButton], button[ecl-button], a[eclButton]", inputs: ["isIconOnly", "variant", "containerStyleClass"] }, { kind: "pipe", type: i211.TranslatePipe, name: "translate" }] });
|
|
7594
|
+
}
|
|
7595
|
+
};
|
|
7596
|
+
i0113.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0113, type: EclGalleryFooterComponent, decorators: [{
|
|
7597
|
+
type: Component50,
|
|
7598
|
+
args: [{ selector: "ecl-gallery-footer", template: `<div class="ecl-gallery__footer">
|
|
7599
|
+
<div class="ecl-gallery__info">
|
|
7600
|
+
<div class="ecl-gallery__info-total">
|
|
7601
|
+
<strong>{{ itemsCount }}</strong>{{ 'ecl.gallery.MEDIA-FILES-COUNT' | translate }}
|
|
7602
|
+
</div>
|
|
7603
|
+
@if(isShowToggleBtn) {
|
|
7604
|
+
@if(!isExpanded) {
|
|
7605
|
+
<button eclButton variant="ghost" class="ecl-gallery__view-all" (click)="onToggle()">
|
|
7606
|
+
{{ 'ecl.gallery.VIEW-ALL' | translate }}
|
|
7607
|
+
</button>
|
|
7608
|
+
} @else {
|
|
7609
|
+
<button eclButton variant="ghost" class="ecl-gallery__view-all" (click)="onToggle()">
|
|
7610
|
+
{{ 'ecl.common.COLLAPSE' | translate }}
|
|
7611
|
+
</button>
|
|
7612
|
+
}
|
|
7613
|
+
}
|
|
7614
|
+
</div>
|
|
7615
|
+
<hr class="ecl-gallery__footer-divider" />
|
|
7616
|
+
<div class="ecl-gallery__footer-link">
|
|
7617
|
+
<ng-content></ng-content>
|
|
7618
|
+
</div>
|
|
7619
|
+
</div>
|
|
7620
|
+
` }]
|
|
7621
|
+
}], propDecorators: { toggleItems: [{
|
|
7622
|
+
type: Output18
|
|
7623
|
+
}] } });
|
|
7624
|
+
|
|
7529
7625
|
// lib/components/ecl-gallery/ecl-gallery-media.directive.mjs
|
|
7530
7626
|
import { Directive as Directive31, HostBinding as HostBinding78, Input as Input43 } from "@angular/core";
|
|
7531
|
-
import * as
|
|
7627
|
+
import * as i0114 from "@angular/core";
|
|
7532
7628
|
var EclGalleryMediaSource = class {
|
|
7533
7629
|
};
|
|
7534
7630
|
var EclGalleryMediaTrack = class {
|
|
@@ -7566,18 +7662,18 @@ var EclGalleryMediaDirective = class _EclGalleryMediaDirective extends ECLBaseDi
|
|
|
7566
7662
|
return this.el.nativeElement;
|
|
7567
7663
|
}
|
|
7568
7664
|
static {
|
|
7569
|
-
this.ɵfac =
|
|
7665
|
+
this.ɵfac = i0114.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0114, type: _EclGalleryMediaDirective, deps: [{ token: i0114.ElementRef }], target: i0114.ɵɵFactoryTarget.Directive });
|
|
7570
7666
|
}
|
|
7571
7667
|
static {
|
|
7572
|
-
this.ɵdir =
|
|
7668
|
+
this.ɵdir = i0114.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclGalleryMediaDirective, selector: "[eclGalleryMedia], [eclGalleryImage]", inputs: { poster: "poster" }, host: { properties: { "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0114 });
|
|
7573
7669
|
}
|
|
7574
7670
|
};
|
|
7575
|
-
|
|
7671
|
+
i0114.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0114, type: EclGalleryMediaDirective, decorators: [{
|
|
7576
7672
|
type: Directive31,
|
|
7577
7673
|
args: [{
|
|
7578
7674
|
selector: "[eclGalleryMedia], [eclGalleryImage]"
|
|
7579
7675
|
}]
|
|
7580
|
-
}], ctorParameters: () => [{ type:
|
|
7676
|
+
}], ctorParameters: () => [{ type: i0114.ElementRef }], propDecorators: { poster: [{
|
|
7581
7677
|
type: Input43
|
|
7582
7678
|
}], cssClasses: [{
|
|
7583
7679
|
type: HostBinding78,
|
|
@@ -7588,13 +7684,13 @@ var EclGalleryPictureDirective = class _EclGalleryPictureDirective extends ECLBa
|
|
|
7588
7684
|
return [super.getCssClasses("ecl-picture ecl-gallery__picture")].join(" ").trim();
|
|
7589
7685
|
}
|
|
7590
7686
|
static {
|
|
7591
|
-
this.ɵfac =
|
|
7687
|
+
this.ɵfac = i0114.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0114, type: _EclGalleryPictureDirective, deps: null, target: i0114.ɵɵFactoryTarget.Directive });
|
|
7592
7688
|
}
|
|
7593
7689
|
static {
|
|
7594
|
-
this.ɵdir =
|
|
7690
|
+
this.ɵdir = i0114.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclGalleryPictureDirective, selector: "picture[eclGalleryPicture]", host: { properties: { "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0114 });
|
|
7595
7691
|
}
|
|
7596
7692
|
};
|
|
7597
|
-
|
|
7693
|
+
i0114.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0114, type: EclGalleryPictureDirective, decorators: [{
|
|
7598
7694
|
type: Directive31,
|
|
7599
7695
|
args: [{
|
|
7600
7696
|
selector: "picture[eclGalleryPicture]"
|
|
@@ -7605,12 +7701,9 @@ i0113.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
7605
7701
|
}] } });
|
|
7606
7702
|
|
|
7607
7703
|
// lib/components/ecl-gallery/ecl-gallery-item.component.mjs
|
|
7608
|
-
import {
|
|
7609
|
-
import
|
|
7610
|
-
import { coerceBoolean as coerceBoolean8 } from "@eui/base";
|
|
7611
|
-
import * as i0114 from "@angular/core";
|
|
7704
|
+
import { Component as Component51, ContentChild as ContentChild16, EventEmitter as EventEmitter19, HostBinding as HostBinding79, HostListener as HostListener9, Input as Input44, Output as Output19, booleanAttribute as booleanAttribute15 } from "@angular/core";
|
|
7705
|
+
import * as i0115 from "@angular/core";
|
|
7612
7706
|
import * as i119 from "@angular/platform-browser";
|
|
7613
|
-
import * as i211 from "@angular/common";
|
|
7614
7707
|
var EclGalleryItemClickEvent = class extends EclBaseEvent {
|
|
7615
7708
|
};
|
|
7616
7709
|
var EclGalleryItemComponent = class _EclGalleryItemComponent extends ECLBaseDirective {
|
|
@@ -7623,7 +7716,7 @@ var EclGalleryItemComponent = class _EclGalleryItemComponent extends ECLBaseDire
|
|
|
7623
7716
|
this.el = el;
|
|
7624
7717
|
this.isShareable = true;
|
|
7625
7718
|
this.mediaType = "image";
|
|
7626
|
-
this.itemClick = new
|
|
7719
|
+
this.itemClick = new EventEmitter19();
|
|
7627
7720
|
this.role = "listitem";
|
|
7628
7721
|
this._isNoOverlay = false;
|
|
7629
7722
|
this._isHidden = false;
|
|
@@ -7659,90 +7752,58 @@ var EclGalleryItemComponent = class _EclGalleryItemComponent extends ECLBaseDire
|
|
|
7659
7752
|
get isExternalVideo() {
|
|
7660
7753
|
return this.mediaType === "externalVideo";
|
|
7661
7754
|
}
|
|
7662
|
-
/**
|
|
7663
|
-
* @deprecated
|
|
7664
|
-
* The name 'isDownloadable' is deprecated and should be removed as of version 18.
|
|
7665
|
-
*/
|
|
7666
|
-
get isDownloadable() {
|
|
7667
|
-
return this.mediaType !== "externalVideo";
|
|
7668
|
-
}
|
|
7669
7755
|
get isOpenInFullScreenPossible() {
|
|
7670
7756
|
return this.mediaType !== "externalVideo";
|
|
7671
7757
|
}
|
|
7672
|
-
get hasPictureChild() {
|
|
7673
|
-
return !!this.pictureChild;
|
|
7674
|
-
}
|
|
7675
7758
|
static {
|
|
7676
|
-
this.ɵfac =
|
|
7759
|
+
this.ɵfac = i0115.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0115, type: _EclGalleryItemComponent, deps: [{ token: i119.DomSanitizer }, { token: i0115.ElementRef }], target: i0115.ɵɵFactoryTarget.Component });
|
|
7677
7760
|
}
|
|
7678
7761
|
static {
|
|
7679
|
-
this.ɵcmp =
|
|
7762
|
+
this.ɵcmp = i0115.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.3", type: _EclGalleryItemComponent, selector: "ecl-gallery-item", inputs: { isShareable: ["isShareable", "isShareable", booleanAttribute15], mediaType: "mediaType", src: "src", label: "label", meta: "meta", description: "description", icon: "icon" }, outputs: { itemClick: "itemClick" }, host: { listeners: { "click": "onItemClick($event)" }, properties: { "class": "this.cssClasses", "attr.role": "this.role" } }, queries: [{ propertyName: "mediaChild", first: true, predicate: EclGalleryMediaDirective, descendants: true }], usesInheritance: true, ngImport: i0115, template: `<a [href]="src" class="ecl-gallery__item-link" [attr.aria-label]="label" [class.ecl-gallery__item__link--frozen]="isNoOverlay">
|
|
7680
7763
|
<figure class="ecl-gallery__image-container">
|
|
7681
|
-
|
|
7682
|
-
|
|
7764
|
+
@if(mediaType !== 'image') {
|
|
7765
|
+
<div class="ecl-gallery__item-icon-wrapper">
|
|
7766
|
+
<ecl-icon isInverted class="ecl-gallery__item-icon ecl-icon--inverted" icon="play-filled" size="l"></ecl-icon>
|
|
7683
7767
|
</div>
|
|
7684
|
-
|
|
7685
|
-
<ng-
|
|
7686
|
-
<ng-content select="[eclGalleryPicture]"></ng-content>
|
|
7687
|
-
</ng-container>
|
|
7688
|
-
<ng-container *ngIf="!hasPictureChild">
|
|
7689
|
-
<picture *ngIf="isImage || isExternalVideo" class="ecl-picture ecl-gallery__picture">
|
|
7690
|
-
<ng-content *ngTemplateOutlet="galleryMedia"></ng-content>
|
|
7691
|
-
</picture>
|
|
7692
|
-
<ng-container *ngIf="isVideo"><ng-content *ngTemplateOutlet="galleryMedia"></ng-content></ng-container>
|
|
7693
|
-
</ng-container>
|
|
7694
|
-
<!-- TODO: Remove the above code in 18 version -->
|
|
7768
|
+
}
|
|
7769
|
+
<ng-content select="[eclGalleryPicture], [eclGalleryMedia], [eclGalleryImage]"></ng-content>
|
|
7695
7770
|
<figcaption class="ecl-gallery__description">
|
|
7696
7771
|
{{ description }}
|
|
7697
|
-
|
|
7772
|
+
@if(icon) {
|
|
7773
|
+
<ecl-icon class="ecl-gallery__description-icon" [icon]="icon"></ecl-icon>
|
|
7774
|
+
}
|
|
7698
7775
|
<span class="ecl-gallery__meta">
|
|
7699
7776
|
{{ meta }}
|
|
7700
7777
|
</span>
|
|
7701
7778
|
</figcaption>
|
|
7702
7779
|
</figure>
|
|
7703
|
-
</a
|
|
7704
|
-
<ng-template #galleryMedia>
|
|
7705
|
-
<ng-content select="[eclGalleryMedia], [eclGalleryImage]"></ng-content>
|
|
7706
|
-
</ng-template>
|
|
7707
|
-
`, styles: [".ecl-gallery__description{width:100%}\n"], dependencies: [{ kind: "directive", type: i211.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i211.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }] });
|
|
7780
|
+
</a>`, styles: [".ecl-gallery__description{width:100%}\n"], dependencies: [{ kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }] });
|
|
7708
7781
|
}
|
|
7709
7782
|
};
|
|
7710
|
-
|
|
7711
|
-
|
|
7712
|
-
], EclGalleryItemComponent.prototype, "isShareable", void 0);
|
|
7713
|
-
i0114.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0114, type: EclGalleryItemComponent, decorators: [{
|
|
7714
|
-
type: Component50,
|
|
7783
|
+
i0115.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0115, type: EclGalleryItemComponent, decorators: [{
|
|
7784
|
+
type: Component51,
|
|
7715
7785
|
args: [{ selector: "ecl-gallery-item", template: `<a [href]="src" class="ecl-gallery__item-link" [attr.aria-label]="label" [class.ecl-gallery__item__link--frozen]="isNoOverlay">
|
|
7716
7786
|
<figure class="ecl-gallery__image-container">
|
|
7717
|
-
|
|
7718
|
-
|
|
7787
|
+
@if(mediaType !== 'image') {
|
|
7788
|
+
<div class="ecl-gallery__item-icon-wrapper">
|
|
7789
|
+
<ecl-icon isInverted class="ecl-gallery__item-icon ecl-icon--inverted" icon="play-filled" size="l"></ecl-icon>
|
|
7719
7790
|
</div>
|
|
7720
|
-
|
|
7721
|
-
<ng-
|
|
7722
|
-
<ng-content select="[eclGalleryPicture]"></ng-content>
|
|
7723
|
-
</ng-container>
|
|
7724
|
-
<ng-container *ngIf="!hasPictureChild">
|
|
7725
|
-
<picture *ngIf="isImage || isExternalVideo" class="ecl-picture ecl-gallery__picture">
|
|
7726
|
-
<ng-content *ngTemplateOutlet="galleryMedia"></ng-content>
|
|
7727
|
-
</picture>
|
|
7728
|
-
<ng-container *ngIf="isVideo"><ng-content *ngTemplateOutlet="galleryMedia"></ng-content></ng-container>
|
|
7729
|
-
</ng-container>
|
|
7730
|
-
<!-- TODO: Remove the above code in 18 version -->
|
|
7791
|
+
}
|
|
7792
|
+
<ng-content select="[eclGalleryPicture], [eclGalleryMedia], [eclGalleryImage]"></ng-content>
|
|
7731
7793
|
<figcaption class="ecl-gallery__description">
|
|
7732
7794
|
{{ description }}
|
|
7733
|
-
|
|
7795
|
+
@if(icon) {
|
|
7796
|
+
<ecl-icon class="ecl-gallery__description-icon" [icon]="icon"></ecl-icon>
|
|
7797
|
+
}
|
|
7734
7798
|
<span class="ecl-gallery__meta">
|
|
7735
7799
|
{{ meta }}
|
|
7736
7800
|
</span>
|
|
7737
7801
|
</figcaption>
|
|
7738
7802
|
</figure>
|
|
7739
|
-
</a
|
|
7740
|
-
|
|
7741
|
-
|
|
7742
|
-
|
|
7743
|
-
`, styles: [".ecl-gallery__description{width:100%}\n"] }]
|
|
7744
|
-
}], ctorParameters: () => [{ type: i119.DomSanitizer }, { type: i0114.ElementRef }], propDecorators: { isShareable: [{
|
|
7745
|
-
type: Input44
|
|
7803
|
+
</a>`, styles: [".ecl-gallery__description{width:100%}\n"] }]
|
|
7804
|
+
}], ctorParameters: () => [{ type: i119.DomSanitizer }, { type: i0115.ElementRef }], propDecorators: { isShareable: [{
|
|
7805
|
+
type: Input44,
|
|
7806
|
+
args: [{ transform: booleanAttribute15 }]
|
|
7746
7807
|
}], mediaType: [{
|
|
7747
7808
|
type: Input44
|
|
7748
7809
|
}], src: [{
|
|
@@ -7756,10 +7817,7 @@ i0114.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
7756
7817
|
}], icon: [{
|
|
7757
7818
|
type: Input44
|
|
7758
7819
|
}], itemClick: [{
|
|
7759
|
-
type:
|
|
7760
|
-
}], pictureChild: [{
|
|
7761
|
-
type: ContentChild16,
|
|
7762
|
-
args: [EclGalleryPictureDirective]
|
|
7820
|
+
type: Output19
|
|
7763
7821
|
}], mediaChild: [{
|
|
7764
7822
|
type: ContentChild16,
|
|
7765
7823
|
args: [EclGalleryMediaDirective]
|
|
@@ -7774,116 +7832,19 @@ i0114.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
7774
7832
|
args: ["click", ["$event"]]
|
|
7775
7833
|
}] } });
|
|
7776
7834
|
|
|
7777
|
-
// lib/components/ecl-gallery/ecl-gallery-footer.component.mjs
|
|
7778
|
-
import { Component as Component51, EventEmitter as EventEmitter19, Output as Output19 } from "@angular/core";
|
|
7779
|
-
import * as i0115 from "@angular/core";
|
|
7780
|
-
import * as i120 from "@angular/common";
|
|
7781
|
-
import * as i32 from "@ngx-translate/core";
|
|
7782
|
-
var EclGalleryToggleItemsEvent = class extends EclBaseEvent {
|
|
7783
|
-
constructor(expandAll) {
|
|
7784
|
-
super();
|
|
7785
|
-
this.expandAll = expandAll;
|
|
7786
|
-
}
|
|
7787
|
-
};
|
|
7788
|
-
var EclGalleryFooterComponent = class _EclGalleryFooterComponent {
|
|
7789
|
-
constructor() {
|
|
7790
|
-
this.toggleItems = new EventEmitter19();
|
|
7791
|
-
this._isExpanded = false;
|
|
7792
|
-
this._isShowToggleBtn = false;
|
|
7793
|
-
}
|
|
7794
|
-
get isExpanded() {
|
|
7795
|
-
return this._isExpanded;
|
|
7796
|
-
}
|
|
7797
|
-
set isExpanded(value) {
|
|
7798
|
-
this._isExpanded = value;
|
|
7799
|
-
}
|
|
7800
|
-
get itemsCount() {
|
|
7801
|
-
return this._itemsCount;
|
|
7802
|
-
}
|
|
7803
|
-
set itemsCount(value) {
|
|
7804
|
-
this._itemsCount = value;
|
|
7805
|
-
}
|
|
7806
|
-
get isShowToggleBtn() {
|
|
7807
|
-
return this._isShowToggleBtn;
|
|
7808
|
-
}
|
|
7809
|
-
set isShowToggleBtn(value) {
|
|
7810
|
-
this._isShowToggleBtn = value;
|
|
7811
|
-
}
|
|
7812
|
-
onToggle() {
|
|
7813
|
-
this._isExpanded = !this._isExpanded;
|
|
7814
|
-
this.toggleItems.next(new EclGalleryToggleItemsEvent(this.isExpanded));
|
|
7815
|
-
}
|
|
7816
|
-
static {
|
|
7817
|
-
this.ɵfac = i0115.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0115, type: _EclGalleryFooterComponent, deps: [], target: i0115.ɵɵFactoryTarget.Component });
|
|
7818
|
-
}
|
|
7819
|
-
static {
|
|
7820
|
-
this.ɵcmp = i0115.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclGalleryFooterComponent, selector: "ecl-gallery-footer", outputs: { toggleItems: "toggleItems" }, ngImport: i0115, template: `<div class="ecl-gallery__footer">
|
|
7821
|
-
<div class="ecl-gallery__info">
|
|
7822
|
-
<strong class="ecl-gallery__info-total">{{ itemsCount }}</strong>
|
|
7823
|
-
{{ 'ecl.gallery.MEDIA-FILES-COUNT' | translate }}
|
|
7824
|
-
<ng-container *ngIf="isShowToggleBtn">
|
|
7825
|
-
<button *ngIf="!isExpanded" eclButton variant="ghost" class="ecl-gallery__view-all" (click)="onToggle()">
|
|
7826
|
-
{{ 'ecl.gallery.VIEW-ALL' | translate }}
|
|
7827
|
-
</button>
|
|
7828
|
-
<button *ngIf="isExpanded" eclButton variant="ghost" class="ecl-gallery__view-all" (click)="onToggle()">
|
|
7829
|
-
{{ 'ecl.common.COLLAPSE' | translate }}
|
|
7830
|
-
</button>
|
|
7831
|
-
</ng-container>
|
|
7832
|
-
</div>
|
|
7833
|
-
<hr class="ecl-gallery__footer-divider" />
|
|
7834
|
-
<div class="ecl-gallery__footer-link">
|
|
7835
|
-
<ng-content></ng-content>
|
|
7836
|
-
</div>
|
|
7837
|
-
</div>
|
|
7838
|
-
`, dependencies: [{ kind: "directive", type: i120.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: EclButtonComponent, selector: "button[eclButton], button[ecl-button], a[eclButton]", inputs: ["isIconOnly", "variant", "containerStyleClass"] }, { kind: "pipe", type: i32.TranslatePipe, name: "translate" }] });
|
|
7839
|
-
}
|
|
7840
|
-
};
|
|
7841
|
-
i0115.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0115, type: EclGalleryFooterComponent, decorators: [{
|
|
7842
|
-
type: Component51,
|
|
7843
|
-
args: [{ selector: "ecl-gallery-footer", template: `<div class="ecl-gallery__footer">
|
|
7844
|
-
<div class="ecl-gallery__info">
|
|
7845
|
-
<strong class="ecl-gallery__info-total">{{ itemsCount }}</strong>
|
|
7846
|
-
{{ 'ecl.gallery.MEDIA-FILES-COUNT' | translate }}
|
|
7847
|
-
<ng-container *ngIf="isShowToggleBtn">
|
|
7848
|
-
<button *ngIf="!isExpanded" eclButton variant="ghost" class="ecl-gallery__view-all" (click)="onToggle()">
|
|
7849
|
-
{{ 'ecl.gallery.VIEW-ALL' | translate }}
|
|
7850
|
-
</button>
|
|
7851
|
-
<button *ngIf="isExpanded" eclButton variant="ghost" class="ecl-gallery__view-all" (click)="onToggle()">
|
|
7852
|
-
{{ 'ecl.common.COLLAPSE' | translate }}
|
|
7853
|
-
</button>
|
|
7854
|
-
</ng-container>
|
|
7855
|
-
</div>
|
|
7856
|
-
<hr class="ecl-gallery__footer-divider" />
|
|
7857
|
-
<div class="ecl-gallery__footer-link">
|
|
7858
|
-
<ng-content></ng-content>
|
|
7859
|
-
</div>
|
|
7860
|
-
</div>
|
|
7861
|
-
` }]
|
|
7862
|
-
}], propDecorators: { toggleItems: [{
|
|
7863
|
-
type: Output19
|
|
7864
|
-
}] } });
|
|
7865
|
-
|
|
7866
7835
|
// lib/components/ecl-gallery/ecl-gallery.component.mjs
|
|
7867
|
-
import {
|
|
7868
|
-
import { Component as Component52,
|
|
7836
|
+
import { Breakpoints } from "@angular/cdk/layout";
|
|
7837
|
+
import { Component as Component52, ContentChild as ContentChild17, ContentChildren as ContentChildren12, EventEmitter as EventEmitter20, HostBinding as HostBinding80, HostListener as HostListener10, Input as Input45, Output as Output20, ViewChild as ViewChild7, booleanAttribute as booleanAttribute16, numberAttribute as numberAttribute3 } from "@angular/core";
|
|
7869
7838
|
import { Subject as Subject13, delay } from "rxjs";
|
|
7870
7839
|
import { takeUntil as takeUntil13 } from "rxjs/operators";
|
|
7871
|
-
import { Breakpoints } from "@angular/cdk/layout";
|
|
7872
|
-
import { coerceBoolean as coerceBoolean9, coerceNumber } from "@eui/base";
|
|
7873
7840
|
import * as i0116 from "@angular/core";
|
|
7874
|
-
import * as
|
|
7841
|
+
import * as i120 from "@angular/cdk/layout";
|
|
7875
7842
|
import * as i212 from "@angular/common";
|
|
7876
7843
|
import * as i82 from "@ngx-translate/core";
|
|
7877
7844
|
var EclGalleryShowEvent = class extends EclBaseEvent {
|
|
7878
7845
|
};
|
|
7879
7846
|
var EclGalleryHideEvent = class extends EclBaseEvent {
|
|
7880
7847
|
};
|
|
7881
|
-
var EclGalleryDownloadEvent = class extends EclBaseEvent {
|
|
7882
|
-
constructor(galleryItem) {
|
|
7883
|
-
super();
|
|
7884
|
-
this.galleryItem = galleryItem;
|
|
7885
|
-
}
|
|
7886
|
-
};
|
|
7887
7848
|
var EclGalleryFullScreenEvent = class extends EclBaseEvent {
|
|
7888
7849
|
constructor(galleryItem) {
|
|
7889
7850
|
super();
|
|
@@ -7909,14 +7870,12 @@ var EclGalleryComponent = class _EclGalleryComponent extends ECLBaseDirective {
|
|
|
7909
7870
|
constructor(cdkBreakpointObserver) {
|
|
7910
7871
|
super();
|
|
7911
7872
|
this.cdkBreakpointObserver = cdkBreakpointObserver;
|
|
7912
|
-
this.isDownloadable = true;
|
|
7913
7873
|
this.isOpenInFullScreenPossible = true;
|
|
7914
7874
|
this.isShareable = true;
|
|
7915
7875
|
this.isFullWidth = false;
|
|
7916
7876
|
this.isNoOverlay = false;
|
|
7917
7877
|
this.show = new EventEmitter20();
|
|
7918
7878
|
this.hide = new EventEmitter20();
|
|
7919
|
-
this.download = new EventEmitter20();
|
|
7920
7879
|
this.openFullScreen = new EventEmitter20();
|
|
7921
7880
|
this.share = new EventEmitter20();
|
|
7922
7881
|
this.itemSwitch = new EventEmitter20();
|
|
@@ -7949,13 +7908,6 @@ var EclGalleryComponent = class _EclGalleryComponent extends ECLBaseDirective {
|
|
|
7949
7908
|
this.isDialogVisible = false;
|
|
7950
7909
|
this.hide.next(new EclGalleryHideEvent());
|
|
7951
7910
|
}
|
|
7952
|
-
/**
|
|
7953
|
-
* @deprecated
|
|
7954
|
-
* The name 'onDownload' is deprecated and should be removed as of version 18.
|
|
7955
|
-
*/
|
|
7956
|
-
onDownload(evt) {
|
|
7957
|
-
this.download.next(new EclGalleryDownloadEvent(this.item));
|
|
7958
|
-
}
|
|
7959
7911
|
onFullScreenOpen(evt) {
|
|
7960
7912
|
this.openFullScreen.next(new EclGalleryFullScreenEvent(this.item));
|
|
7961
7913
|
}
|
|
@@ -7999,13 +7951,6 @@ var EclGalleryComponent = class _EclGalleryComponent extends ECLBaseDirective {
|
|
|
7999
7951
|
this.destroy$.next(true);
|
|
8000
7952
|
this.destroy$.unsubscribe();
|
|
8001
7953
|
}
|
|
8002
|
-
/**
|
|
8003
|
-
* @deprecated
|
|
8004
|
-
* The name 'canBeDownloaded' is deprecated and should be removed as of version 18.
|
|
8005
|
-
*/
|
|
8006
|
-
canBeDownloaded() {
|
|
8007
|
-
return this.isDownloadable && this.item?.isDownloadable;
|
|
8008
|
-
}
|
|
8009
7954
|
canBeOpenInFullScreen() {
|
|
8010
7955
|
return this.isOpenInFullScreenPossible && this.item?.isOpenInFullScreenPossible;
|
|
8011
7956
|
}
|
|
@@ -8115,124 +8060,100 @@ var EclGalleryComponent = class _EclGalleryComponent extends ECLBaseDirective {
|
|
|
8115
8060
|
return this.galleryItems.filter((item, cnt) => cnt < this.maxVisibleItems);
|
|
8116
8061
|
}
|
|
8117
8062
|
static {
|
|
8118
|
-
this.ɵfac = i0116.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0116, type: _EclGalleryComponent, deps: [{ token:
|
|
8063
|
+
this.ɵfac = i0116.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0116, type: _EclGalleryComponent, deps: [{ token: i120.BreakpointObserver }], target: i0116.ɵɵFactoryTarget.Component });
|
|
8119
8064
|
}
|
|
8120
8065
|
static {
|
|
8121
|
-
this.ɵcmp = i0116.ɵɵngDeclareComponent({ minVersion: "
|
|
8066
|
+
this.ɵcmp = i0116.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.3", type: _EclGalleryComponent, selector: "ecl-gallery", inputs: { isOpenInFullScreenPossible: ["isOpenInFullScreenPossible", "isOpenInFullScreenPossible", booleanAttribute16], isShareable: ["isShareable", "isShareable", booleanAttribute16], isFullWidth: ["isFullWidth", "isFullWidth", booleanAttribute16], isNoOverlay: ["isNoOverlay", "isNoOverlay", booleanAttribute16], maxVisibleItems: ["maxVisibleItems", "maxVisibleItems", numberAttribute3] }, outputs: { show: "show", hide: "hide", openFullScreen: "openFullScreen", share: "share", itemSwitch: "itemSwitch" }, host: { listeners: { "document:keydown.escape": "onEscapeKeydownHandler($event)", "window:resize": "iframeResize($event)" }, properties: { "class": "this.cssClasses", "attr.role": "this.role" } }, queries: [{ propertyName: "galleryFooter", first: true, predicate: EclGalleryFooterComponent, descendants: true }, { propertyName: "galleryItems", predicate: EclGalleryItemComponent }], viewQueries: [{ propertyName: "videoChild", first: true, predicate: ["video"], descendants: true }, { propertyName: "imageChild", first: true, predicate: ["image"], descendants: true }, { propertyName: "externalVideoChild", first: true, predicate: ["externalVideo"], descendants: true }, { propertyName: "overlayChild", first: true, predicate: ["overlay"], descendants: true }, { propertyName: "headerChild", first: true, predicate: ["header"], descendants: true }, { propertyName: "footerChild", first: true, predicate: ["footer"], descendants: true }], usesInheritance: true, ngImport: i0116, template: `<ul class="ecl-gallery__list">
|
|
8122
8067
|
<ng-content></ng-content>
|
|
8123
8068
|
</ul>
|
|
8124
8069
|
|
|
8125
8070
|
<ng-content select="ecl-gallery-footer"></ng-content>
|
|
8126
8071
|
|
|
8127
|
-
<dialog
|
|
8128
|
-
#overlay
|
|
8129
|
-
[attr.open]="isDialogVisible || null"
|
|
8130
|
-
class="ecl-gallery__overlay"
|
|
8072
|
+
<dialog #overlay [attr.open]="isDialogVisible || null" class="ecl-gallery__overlay"
|
|
8131
8073
|
[attr.aria-label]="'ecl.gallery.FULL-SIZE-DISPLAY' | translate">
|
|
8132
8074
|
<header #header class="ecl-gallery__close">
|
|
8133
|
-
<button (click)="onClose($event)" eclButton class="ecl-gallery__close-button" variant="ghost">
|
|
8075
|
+
<button (click)="onClose($event)" eclButton class="ecl-gallery__close-button" isIconOnly variant="ghost">
|
|
8134
8076
|
<span eclButtonLabel>
|
|
8135
8077
|
{{ 'ecl.common.CLOSE' | translate }}
|
|
8136
8078
|
</span>
|
|
8137
|
-
<ecl-icon icon="close
|
|
8079
|
+
<ecl-icon icon="close" size="m"></ecl-icon>
|
|
8138
8080
|
</button>
|
|
8139
8081
|
</header>
|
|
8140
8082
|
<section class="ecl-gallery__slider">
|
|
8141
8083
|
<div class="ecl-gallery__slider-media-container">
|
|
8142
|
-
|
|
8143
|
-
|
|
8144
|
-
|
|
8145
|
-
[style.
|
|
8146
|
-
[style.height.px]="getIframeHeight()"
|
|
8147
|
-
frameborder="0">
|
|
8084
|
+
@if(item?.isExternalVideo) {
|
|
8085
|
+
<div #externalVideo class="ecl-gallery__slider-embed">
|
|
8086
|
+
<iframe [src]="item?.getUrlExternalVideo()" [style.width.px]="getIframeWidth()"
|
|
8087
|
+
[style.height.px]="getIframeHeight()" frameborder="0">
|
|
8148
8088
|
</iframe>
|
|
8149
8089
|
</div>
|
|
8150
|
-
|
|
8090
|
+
}
|
|
8091
|
+
@if(item?.isImage) {
|
|
8092
|
+
<picture #image class="ecl-picture ecl-gallery__picture ecl-gallery__slider-image">
|
|
8151
8093
|
<img [attr.alt]="item?.label || null" [src]="item?.src" />
|
|
8152
8094
|
</picture>
|
|
8153
|
-
|
|
8154
|
-
|
|
8155
|
-
|
|
8156
|
-
controls="controls"
|
|
8157
|
-
class="ecl-gallery__slider-video"
|
|
8095
|
+
}
|
|
8096
|
+
@if(item?.isVideo) {
|
|
8097
|
+
<video #video controls="controls" class="ecl-gallery__slider-video"
|
|
8158
8098
|
[attr.poster]="item.mediaChild?.poster">
|
|
8159
|
-
|
|
8160
|
-
<
|
|
8161
|
-
|
|
8162
|
-
|
|
8163
|
-
|
|
8164
|
-
[attr.srcLang]="
|
|
8165
|
-
|
|
8099
|
+
@for (el of item.mediaChild?.sources; track el.src) {
|
|
8100
|
+
<source [attr.src]="el.src" [attr.type]="el.type" />
|
|
8101
|
+
}
|
|
8102
|
+
@for (elem of item.mediaChild?.tracks; track elem.src) {
|
|
8103
|
+
<track [attr.src]="elem.src" [attr.kind]="elem.kind"
|
|
8104
|
+
[attr.srcLang]="elem.srcLang" [attr.label]="elem.label" />
|
|
8105
|
+
}
|
|
8166
8106
|
</video>
|
|
8107
|
+
}
|
|
8167
8108
|
</div>
|
|
8168
8109
|
</section>
|
|
8169
8110
|
<footer #footer class="ecl-gallery__detail">
|
|
8170
8111
|
<div class="ecl-container">
|
|
8171
|
-
<div class="ecl-gallery__detail-actions">
|
|
8172
|
-
<!-- @deprecated [download]="item?.src" -->
|
|
8173
|
-
<a
|
|
8174
|
-
*ngIf="canBeDownloaded()"
|
|
8175
|
-
eclLink
|
|
8176
|
-
variant="standalone"
|
|
8177
|
-
class="ecl-gallery__download"
|
|
8178
|
-
[href]="item?.getDownloadLink()"
|
|
8179
|
-
[download]="item?.src"
|
|
8180
|
-
target="_blank"
|
|
8181
|
-
(click)="onDownload($event)">
|
|
8182
|
-
<span eclLinkLabel>{{ 'ecl.gallery.VIEW-ORIGINAL' | translate }}</span>
|
|
8183
|
-
<ecl-icon icon="fullscreen" transform="fluid" focusable="false"></ecl-icon>
|
|
8184
|
-
</a>
|
|
8185
|
-
<a *ngIf="canBeShared()" eclLink variant="standalone" class="ecl-gallery__share" href="" (click)="onShare($event)">
|
|
8186
|
-
<span eclLinkLabel>{{ 'ecl.common.SHARE' | translate }}</span>
|
|
8187
|
-
<ecl-icon icon="share" transform="fluid" focusable="false"></ecl-icon>
|
|
8188
|
-
</a>
|
|
8189
|
-
</div>
|
|
8190
|
-
|
|
8191
|
-
<div *ngIf="item?.description" class="ecl-gallery__detail-description">{{ item?.description }}</div>
|
|
8192
|
-
|
|
8193
|
-
<div *ngIf="item?.meta" class="ecl-gallery__detail-meta">{{ item?.meta }}</div>
|
|
8194
|
-
|
|
8195
8112
|
<div class="ecl-gallery__pager">
|
|
8196
|
-
<button eclButton class="ecl-gallery__slider-previous" variant="
|
|
8113
|
+
<button eclButton class="ecl-gallery__slider-previous" variant="tertiary" isIconOnly
|
|
8114
|
+
(click)="onPrevious($event)">
|
|
8197
8115
|
<ecl-icon icon="corner-arrow" size="m" transform="rotate-270"></ecl-icon>
|
|
8198
|
-
<span eclButtonLabel
|
|
8116
|
+
<span eclButtonLabel>
|
|
8199
8117
|
{{ 'ecl.common.PREVIOUS' | translate }}
|
|
8200
8118
|
</span>
|
|
8201
8119
|
</button>
|
|
8202
8120
|
<div class="ecl-gallery__detail-counter">
|
|
8203
8121
|
<span>{{ itemIndex }}</span> {{ 'ecl.common.OF' | translate }} <span>{{ itemsCount }}</span>
|
|
8204
8122
|
</div>
|
|
8205
|
-
<button eclButton class="ecl-gallery__slider-next" variant="
|
|
8206
|
-
|
|
8123
|
+
<button eclButton class="ecl-gallery__slider-next" variant="tertiary" isIconOnly
|
|
8124
|
+
(click)="onNext($event)">
|
|
8125
|
+
<span eclButtonLabel>
|
|
8207
8126
|
{{ 'ecl.common.NEXT' | translate }}
|
|
8208
8127
|
</span>
|
|
8209
8128
|
<ecl-icon icon="corner-arrow" size="m" transform="rotate-90"></ecl-icon>
|
|
8210
8129
|
</button>
|
|
8211
8130
|
</div>
|
|
8131
|
+
<div class="ecl-gallery__detail-actions">
|
|
8132
|
+
@if(canBeOpenInFullScreen()) {
|
|
8133
|
+
<a eclLink variant="standalone" class="ecl-gallery__download" [href]="item?.getDownloadLink()"
|
|
8134
|
+
target="_blank" (click)="onFullScreenOpen($event)" isInverted>
|
|
8135
|
+
<span eclLinkLabel>{{ 'ecl.gallery.VIEW-ORIGINAL' | translate }}</span>
|
|
8136
|
+
<ecl-icon icon="fullscreen" size="fluid" focusable="false"></ecl-icon>
|
|
8137
|
+
</a>
|
|
8138
|
+
}
|
|
8139
|
+
@if(canBeShared()) {
|
|
8140
|
+
<a eclLink variant="standalone" isInverted class="ecl-gallery__share" href="" (click)="onShare($event)">
|
|
8141
|
+
<span eclLinkLabel>{{ 'ecl.common.SHARE' | translate }}</span>
|
|
8142
|
+
<ecl-icon icon="share" size="fluid" focusable="false"></ecl-icon>
|
|
8143
|
+
</a>
|
|
8144
|
+
}
|
|
8145
|
+
</div>
|
|
8146
|
+
@if(item?.description) {
|
|
8147
|
+
<div *ngIf="item?.description" class="ecl-gallery__detail-description">{{ item?.description }}</div>
|
|
8148
|
+
}
|
|
8149
|
+
@if(item?.meta) {
|
|
8150
|
+
<div *ngIf="item?.meta" class="ecl-gallery__detail-meta">{{ item?.meta }}</div>
|
|
8151
|
+
}
|
|
8212
8152
|
</div>
|
|
8213
8153
|
</footer>
|
|
8214
|
-
</dialog
|
|
8215
|
-
`, styles: [":host{display:block}\n"], dependencies: [{ kind: "directive", type: i212.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i212.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: EclButtonComponent, selector: "button[eclButton], button[ecl-button], a[eclButton]", inputs: ["isIconOnly", "variant", "containerStyleClass"] }, { kind: "directive", type: EclButtonLabelDirective, selector: "[eclButtonLabel]" }, { kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "directive", type: EclLinkDirective, selector: "[eclLink]", inputs: ["isInverted", "isHiddenLabel", "isNoVisited", "variant"] }, { kind: "directive", type: EclLinkLabelDirective, selector: "[eclLinkLabel]" }, { kind: "pipe", type: i82.TranslatePipe, name: "translate" }] });
|
|
8154
|
+
</dialog>`, styles: [":host{display:block}\n"], dependencies: [{ kind: "directive", type: i212.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: EclButtonComponent, selector: "button[eclButton], button[ecl-button], a[eclButton]", inputs: ["isIconOnly", "variant", "containerStyleClass"] }, { kind: "directive", type: EclButtonLabelDirective, selector: "[eclButtonLabel]" }, { kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "directive", type: EclLinkDirective, selector: "[eclLink]", inputs: ["isInverted", "isHiddenLabel", "isNoVisited", "variant"] }, { kind: "directive", type: EclLinkLabelDirective, selector: "[eclLinkLabel]" }, { kind: "pipe", type: i82.TranslatePipe, name: "translate" }] });
|
|
8216
8155
|
}
|
|
8217
8156
|
};
|
|
8218
|
-
__decorate11([
|
|
8219
|
-
coerceBoolean9
|
|
8220
|
-
], EclGalleryComponent.prototype, "isDownloadable", void 0);
|
|
8221
|
-
__decorate11([
|
|
8222
|
-
coerceBoolean9
|
|
8223
|
-
], EclGalleryComponent.prototype, "isOpenInFullScreenPossible", void 0);
|
|
8224
|
-
__decorate11([
|
|
8225
|
-
coerceBoolean9
|
|
8226
|
-
], EclGalleryComponent.prototype, "isShareable", void 0);
|
|
8227
|
-
__decorate11([
|
|
8228
|
-
coerceBoolean9
|
|
8229
|
-
], EclGalleryComponent.prototype, "isFullWidth", void 0);
|
|
8230
|
-
__decorate11([
|
|
8231
|
-
coerceBoolean9
|
|
8232
|
-
], EclGalleryComponent.prototype, "isNoOverlay", void 0);
|
|
8233
|
-
__decorate11([
|
|
8234
|
-
coerceNumber
|
|
8235
|
-
], EclGalleryComponent.prototype, "maxVisibleItems", void 0);
|
|
8236
8157
|
i0116.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0116, type: EclGalleryComponent, decorators: [{
|
|
8237
8158
|
type: Component52,
|
|
8238
8159
|
args: [{ selector: "ecl-gallery", template: `<ul class="ecl-gallery__list">
|
|
@@ -8241,113 +8162,108 @@ i0116.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
8241
8162
|
|
|
8242
8163
|
<ng-content select="ecl-gallery-footer"></ng-content>
|
|
8243
8164
|
|
|
8244
|
-
<dialog
|
|
8245
|
-
#overlay
|
|
8246
|
-
[attr.open]="isDialogVisible || null"
|
|
8247
|
-
class="ecl-gallery__overlay"
|
|
8165
|
+
<dialog #overlay [attr.open]="isDialogVisible || null" class="ecl-gallery__overlay"
|
|
8248
8166
|
[attr.aria-label]="'ecl.gallery.FULL-SIZE-DISPLAY' | translate">
|
|
8249
8167
|
<header #header class="ecl-gallery__close">
|
|
8250
|
-
<button (click)="onClose($event)" eclButton class="ecl-gallery__close-button" variant="ghost">
|
|
8168
|
+
<button (click)="onClose($event)" eclButton class="ecl-gallery__close-button" isIconOnly variant="ghost">
|
|
8251
8169
|
<span eclButtonLabel>
|
|
8252
8170
|
{{ 'ecl.common.CLOSE' | translate }}
|
|
8253
8171
|
</span>
|
|
8254
|
-
<ecl-icon icon="close
|
|
8172
|
+
<ecl-icon icon="close" size="m"></ecl-icon>
|
|
8255
8173
|
</button>
|
|
8256
8174
|
</header>
|
|
8257
8175
|
<section class="ecl-gallery__slider">
|
|
8258
8176
|
<div class="ecl-gallery__slider-media-container">
|
|
8259
|
-
|
|
8260
|
-
|
|
8261
|
-
|
|
8262
|
-
[style.
|
|
8263
|
-
[style.height.px]="getIframeHeight()"
|
|
8264
|
-
frameborder="0">
|
|
8177
|
+
@if(item?.isExternalVideo) {
|
|
8178
|
+
<div #externalVideo class="ecl-gallery__slider-embed">
|
|
8179
|
+
<iframe [src]="item?.getUrlExternalVideo()" [style.width.px]="getIframeWidth()"
|
|
8180
|
+
[style.height.px]="getIframeHeight()" frameborder="0">
|
|
8265
8181
|
</iframe>
|
|
8266
8182
|
</div>
|
|
8267
|
-
|
|
8183
|
+
}
|
|
8184
|
+
@if(item?.isImage) {
|
|
8185
|
+
<picture #image class="ecl-picture ecl-gallery__picture ecl-gallery__slider-image">
|
|
8268
8186
|
<img [attr.alt]="item?.label || null" [src]="item?.src" />
|
|
8269
8187
|
</picture>
|
|
8270
|
-
|
|
8271
|
-
|
|
8272
|
-
|
|
8273
|
-
controls="controls"
|
|
8274
|
-
class="ecl-gallery__slider-video"
|
|
8188
|
+
}
|
|
8189
|
+
@if(item?.isVideo) {
|
|
8190
|
+
<video #video controls="controls" class="ecl-gallery__slider-video"
|
|
8275
8191
|
[attr.poster]="item.mediaChild?.poster">
|
|
8276
|
-
|
|
8277
|
-
<
|
|
8278
|
-
|
|
8279
|
-
|
|
8280
|
-
|
|
8281
|
-
[attr.srcLang]="
|
|
8282
|
-
|
|
8192
|
+
@for (el of item.mediaChild?.sources; track el.src) {
|
|
8193
|
+
<source [attr.src]="el.src" [attr.type]="el.type" />
|
|
8194
|
+
}
|
|
8195
|
+
@for (elem of item.mediaChild?.tracks; track elem.src) {
|
|
8196
|
+
<track [attr.src]="elem.src" [attr.kind]="elem.kind"
|
|
8197
|
+
[attr.srcLang]="elem.srcLang" [attr.label]="elem.label" />
|
|
8198
|
+
}
|
|
8283
8199
|
</video>
|
|
8200
|
+
}
|
|
8284
8201
|
</div>
|
|
8285
8202
|
</section>
|
|
8286
8203
|
<footer #footer class="ecl-gallery__detail">
|
|
8287
8204
|
<div class="ecl-container">
|
|
8288
|
-
<div class="ecl-gallery__detail-actions">
|
|
8289
|
-
<!-- @deprecated [download]="item?.src" -->
|
|
8290
|
-
<a
|
|
8291
|
-
*ngIf="canBeDownloaded()"
|
|
8292
|
-
eclLink
|
|
8293
|
-
variant="standalone"
|
|
8294
|
-
class="ecl-gallery__download"
|
|
8295
|
-
[href]="item?.getDownloadLink()"
|
|
8296
|
-
[download]="item?.src"
|
|
8297
|
-
target="_blank"
|
|
8298
|
-
(click)="onDownload($event)">
|
|
8299
|
-
<span eclLinkLabel>{{ 'ecl.gallery.VIEW-ORIGINAL' | translate }}</span>
|
|
8300
|
-
<ecl-icon icon="fullscreen" transform="fluid" focusable="false"></ecl-icon>
|
|
8301
|
-
</a>
|
|
8302
|
-
<a *ngIf="canBeShared()" eclLink variant="standalone" class="ecl-gallery__share" href="" (click)="onShare($event)">
|
|
8303
|
-
<span eclLinkLabel>{{ 'ecl.common.SHARE' | translate }}</span>
|
|
8304
|
-
<ecl-icon icon="share" transform="fluid" focusable="false"></ecl-icon>
|
|
8305
|
-
</a>
|
|
8306
|
-
</div>
|
|
8307
|
-
|
|
8308
|
-
<div *ngIf="item?.description" class="ecl-gallery__detail-description">{{ item?.description }}</div>
|
|
8309
|
-
|
|
8310
|
-
<div *ngIf="item?.meta" class="ecl-gallery__detail-meta">{{ item?.meta }}</div>
|
|
8311
|
-
|
|
8312
8205
|
<div class="ecl-gallery__pager">
|
|
8313
|
-
<button eclButton class="ecl-gallery__slider-previous" variant="
|
|
8206
|
+
<button eclButton class="ecl-gallery__slider-previous" variant="tertiary" isIconOnly
|
|
8207
|
+
(click)="onPrevious($event)">
|
|
8314
8208
|
<ecl-icon icon="corner-arrow" size="m" transform="rotate-270"></ecl-icon>
|
|
8315
|
-
<span eclButtonLabel
|
|
8209
|
+
<span eclButtonLabel>
|
|
8316
8210
|
{{ 'ecl.common.PREVIOUS' | translate }}
|
|
8317
8211
|
</span>
|
|
8318
8212
|
</button>
|
|
8319
8213
|
<div class="ecl-gallery__detail-counter">
|
|
8320
8214
|
<span>{{ itemIndex }}</span> {{ 'ecl.common.OF' | translate }} <span>{{ itemsCount }}</span>
|
|
8321
8215
|
</div>
|
|
8322
|
-
<button eclButton class="ecl-gallery__slider-next" variant="
|
|
8323
|
-
|
|
8216
|
+
<button eclButton class="ecl-gallery__slider-next" variant="tertiary" isIconOnly
|
|
8217
|
+
(click)="onNext($event)">
|
|
8218
|
+
<span eclButtonLabel>
|
|
8324
8219
|
{{ 'ecl.common.NEXT' | translate }}
|
|
8325
8220
|
</span>
|
|
8326
8221
|
<ecl-icon icon="corner-arrow" size="m" transform="rotate-90"></ecl-icon>
|
|
8327
8222
|
</button>
|
|
8328
8223
|
</div>
|
|
8224
|
+
<div class="ecl-gallery__detail-actions">
|
|
8225
|
+
@if(canBeOpenInFullScreen()) {
|
|
8226
|
+
<a eclLink variant="standalone" class="ecl-gallery__download" [href]="item?.getDownloadLink()"
|
|
8227
|
+
target="_blank" (click)="onFullScreenOpen($event)" isInverted>
|
|
8228
|
+
<span eclLinkLabel>{{ 'ecl.gallery.VIEW-ORIGINAL' | translate }}</span>
|
|
8229
|
+
<ecl-icon icon="fullscreen" size="fluid" focusable="false"></ecl-icon>
|
|
8230
|
+
</a>
|
|
8231
|
+
}
|
|
8232
|
+
@if(canBeShared()) {
|
|
8233
|
+
<a eclLink variant="standalone" isInverted class="ecl-gallery__share" href="" (click)="onShare($event)">
|
|
8234
|
+
<span eclLinkLabel>{{ 'ecl.common.SHARE' | translate }}</span>
|
|
8235
|
+
<ecl-icon icon="share" size="fluid" focusable="false"></ecl-icon>
|
|
8236
|
+
</a>
|
|
8237
|
+
}
|
|
8238
|
+
</div>
|
|
8239
|
+
@if(item?.description) {
|
|
8240
|
+
<div *ngIf="item?.description" class="ecl-gallery__detail-description">{{ item?.description }}</div>
|
|
8241
|
+
}
|
|
8242
|
+
@if(item?.meta) {
|
|
8243
|
+
<div *ngIf="item?.meta" class="ecl-gallery__detail-meta">{{ item?.meta }}</div>
|
|
8244
|
+
}
|
|
8329
8245
|
</div>
|
|
8330
8246
|
</footer>
|
|
8331
|
-
</dialog
|
|
8332
|
-
|
|
8333
|
-
|
|
8334
|
-
|
|
8335
|
-
}], isOpenInFullScreenPossible: [{
|
|
8336
|
-
type: Input45
|
|
8247
|
+
</dialog>`, styles: [":host{display:block}\n"] }]
|
|
8248
|
+
}], ctorParameters: () => [{ type: i120.BreakpointObserver }], propDecorators: { isOpenInFullScreenPossible: [{
|
|
8249
|
+
type: Input45,
|
|
8250
|
+
args: [{ transform: booleanAttribute16 }]
|
|
8337
8251
|
}], isShareable: [{
|
|
8338
|
-
type: Input45
|
|
8252
|
+
type: Input45,
|
|
8253
|
+
args: [{ transform: booleanAttribute16 }]
|
|
8339
8254
|
}], isFullWidth: [{
|
|
8340
|
-
type: Input45
|
|
8255
|
+
type: Input45,
|
|
8256
|
+
args: [{ transform: booleanAttribute16 }]
|
|
8341
8257
|
}], isNoOverlay: [{
|
|
8342
|
-
type: Input45
|
|
8258
|
+
type: Input45,
|
|
8259
|
+
args: [{ transform: booleanAttribute16 }]
|
|
8343
8260
|
}], maxVisibleItems: [{
|
|
8344
|
-
type: Input45
|
|
8261
|
+
type: Input45,
|
|
8262
|
+
args: [{ transform: numberAttribute3 }]
|
|
8345
8263
|
}], show: [{
|
|
8346
8264
|
type: Output20
|
|
8347
8265
|
}], hide: [{
|
|
8348
8266
|
type: Output20
|
|
8349
|
-
}], download: [{
|
|
8350
|
-
type: Output20
|
|
8351
8267
|
}], openFullScreen: [{
|
|
8352
8268
|
type: Output20
|
|
8353
8269
|
}], share: [{
|
|
@@ -8487,12 +8403,12 @@ var EclInpageNavigationItemComponent = class _EclInpageNavigationItemComponent e
|
|
|
8487
8403
|
this.ɵfac = i0119.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0119, type: _EclInpageNavigationItemComponent, deps: null, target: i0119.ɵɵFactoryTarget.Component });
|
|
8488
8404
|
}
|
|
8489
8405
|
static {
|
|
8490
|
-
this.ɵcmp = i0119.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclInpageNavigationItemComponent, selector: "ecl-inpage-navigation-item", inputs: { label: "label", sectionId: "sectionId", isActive: "isActive" }, outputs: { itemClick: "itemClick" }, host: { properties: { "class.ecl-inpage-navigation__item": "this.cmpClass", "class.ecl-inpage-navigation__item--active": "this.isActive" } }, usesInheritance: true, ngImport: i0119, template: '<a eclLink (click)="onItemClick($event)"
|
|
8406
|
+
this.ɵcmp = i0119.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclInpageNavigationItemComponent, selector: "ecl-inpage-navigation-item", inputs: { label: "label", sectionId: "sectionId", isActive: "isActive" }, outputs: { itemClick: "itemClick" }, host: { properties: { "class.ecl-inpage-navigation__item": "this.cmpClass", "class.ecl-inpage-navigation__item--active": "this.isActive" } }, usesInheritance: true, ngImport: i0119, template: '<a eclLink (click)="onItemClick($event)" href="#" class="ecl-inpage-navigation__link">\n {{ label }}\n</a>\n', styles: [":host{display:list-item}\n"], dependencies: [{ kind: "directive", type: EclLinkDirective, selector: "[eclLink]", inputs: ["isInverted", "isHiddenLabel", "isNoVisited", "variant"] }] });
|
|
8491
8407
|
}
|
|
8492
8408
|
};
|
|
8493
8409
|
i0119.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0119, type: EclInpageNavigationItemComponent, decorators: [{
|
|
8494
8410
|
type: Component53,
|
|
8495
|
-
args: [{ selector: "ecl-inpage-navigation-item", template: '<a eclLink (click)="onItemClick($event)"
|
|
8411
|
+
args: [{ selector: "ecl-inpage-navigation-item", template: '<a eclLink (click)="onItemClick($event)" href="#" class="ecl-inpage-navigation__link">\n {{ label }}\n</a>\n', styles: [":host{display:list-item}\n"] }]
|
|
8496
8412
|
}], propDecorators: { cmpClass: [{
|
|
8497
8413
|
type: HostBinding81,
|
|
8498
8414
|
args: ["class.ecl-inpage-navigation__item"]
|
|
@@ -8510,11 +8426,11 @@ i0119.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
8510
8426
|
}] } });
|
|
8511
8427
|
|
|
8512
8428
|
// lib/components/ecl-sticky-container/ecl-sticky-container.component.mjs
|
|
8513
|
-
import { Component as Component54, HostBinding as HostBinding82, Input as Input47, booleanAttribute as
|
|
8429
|
+
import { Component as Component54, HostBinding as HostBinding82, Input as Input47, booleanAttribute as booleanAttribute17 } from "@angular/core";
|
|
8514
8430
|
import { Subject as Subject14, delay as delay2 } from "rxjs";
|
|
8515
8431
|
import { takeUntil as takeUntil14 } from "rxjs/operators";
|
|
8516
8432
|
import * as i0120 from "@angular/core";
|
|
8517
|
-
import * as
|
|
8433
|
+
import * as i121 from "@angular/cdk/layout";
|
|
8518
8434
|
var EclStickyContainerComponent = class _EclStickyContainerComponent extends ECLBaseDirective {
|
|
8519
8435
|
get cssClasses() {
|
|
8520
8436
|
return [super.getCssClasses("ecl-sticky-container"), !this.isEnabled ? "ecl-sticky-container--disabled" : ""].join(" ").trim();
|
|
@@ -8553,18 +8469,18 @@ var EclStickyContainerComponent = class _EclStickyContainerComponent extends ECL
|
|
|
8553
8469
|
});
|
|
8554
8470
|
}
|
|
8555
8471
|
static {
|
|
8556
|
-
this.ɵfac = i0120.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0120, type: _EclStickyContainerComponent, deps: [{ token:
|
|
8472
|
+
this.ɵfac = i0120.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0120, type: _EclStickyContainerComponent, deps: [{ token: i121.BreakpointObserver }, { token: i0120.Renderer2 }, { token: i0120.ElementRef }], target: i0120.ɵɵFactoryTarget.Component });
|
|
8557
8473
|
}
|
|
8558
8474
|
static {
|
|
8559
|
-
this.ɵcmp = i0120.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.0-next.3", type: _EclStickyContainerComponent, selector: "ecl-sticky-container", inputs: { isEnabled: ["isEnabled", "isEnabled",
|
|
8475
|
+
this.ɵcmp = i0120.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.0-next.3", type: _EclStickyContainerComponent, selector: "ecl-sticky-container", inputs: { isEnabled: ["isEnabled", "isEnabled", booleanAttribute17], marginTop: "marginTop", marginBottom: "marginBottom" }, host: { properties: { "class": "this.cssClasses", "style.top.px": "this.top", "style.bottom.px": "this.bottom" } }, usesInheritance: true, ngImport: i0120, template: "<ng-content></ng-content>\n", styles: [":host{display:block;align-self:flex-start;top:0;position:sticky;position:-webkit-sticky}:host.ecl-sticky-container--disabled{position:static}\n"] });
|
|
8560
8476
|
}
|
|
8561
8477
|
};
|
|
8562
8478
|
i0120.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0120, type: EclStickyContainerComponent, decorators: [{
|
|
8563
8479
|
type: Component54,
|
|
8564
8480
|
args: [{ selector: "ecl-sticky-container", template: "<ng-content></ng-content>\n", styles: [":host{display:block;align-self:flex-start;top:0;position:sticky;position:-webkit-sticky}:host.ecl-sticky-container--disabled{position:static}\n"] }]
|
|
8565
|
-
}], ctorParameters: () => [{ type:
|
|
8481
|
+
}], ctorParameters: () => [{ type: i121.BreakpointObserver }, { type: i0120.Renderer2 }, { type: i0120.ElementRef }], propDecorators: { isEnabled: [{
|
|
8566
8482
|
type: Input47,
|
|
8567
|
-
args: [{ transform:
|
|
8483
|
+
args: [{ transform: booleanAttribute17 }]
|
|
8568
8484
|
}], marginTop: [{
|
|
8569
8485
|
type: Input47
|
|
8570
8486
|
}], marginBottom: [{
|
|
@@ -8609,7 +8525,7 @@ import { EventEmitter as EventEmitter22, Component as Component55, Input as Inpu
|
|
|
8609
8525
|
import { Subject as Subject15, fromEvent as fromEvent2 } from "rxjs";
|
|
8610
8526
|
import { takeUntil as takeUntil15 } from "rxjs/operators";
|
|
8611
8527
|
import * as i0122 from "@angular/core";
|
|
8612
|
-
import * as
|
|
8528
|
+
import * as i46 from "@ngx-translate/core";
|
|
8613
8529
|
var EclInpageNavigationSectionEnterEvent = class extends EclBaseEvent {
|
|
8614
8530
|
constructor(sectionId) {
|
|
8615
8531
|
super();
|
|
@@ -8617,14 +8533,26 @@ var EclInpageNavigationSectionEnterEvent = class extends EclBaseEvent {
|
|
|
8617
8533
|
}
|
|
8618
8534
|
};
|
|
8619
8535
|
var EclInpageNavigationComponent = class _EclInpageNavigationComponent extends ECLBaseDirective {
|
|
8620
|
-
|
|
8621
|
-
|
|
8536
|
+
get currentNavigationLinkItem() {
|
|
8537
|
+
return this.eclNavigationLinkItems.find((item) => item.sectionElement === this.currentSectionElement);
|
|
8538
|
+
}
|
|
8539
|
+
constructor(eclThemeService, renderer) {
|
|
8540
|
+
super();
|
|
8541
|
+
this.eclThemeService = eclThemeService;
|
|
8542
|
+
this.renderer = renderer;
|
|
8622
8543
|
this.sectionEnter = new EventEmitter22();
|
|
8623
8544
|
this.isButtonExpanded = false;
|
|
8545
|
+
this.ICON_SIZE_FOR_EC_THEME_ON = "xs";
|
|
8546
|
+
this.ICON_SIZE_FOR_EU_THEME_ON = "s";
|
|
8547
|
+
this.HEADING_ACTIVATED_CLASS = "ecl-inpage-navigation__heading--active";
|
|
8624
8548
|
this.destroy$ = new Subject15();
|
|
8625
8549
|
}
|
|
8626
|
-
get
|
|
8627
|
-
|
|
8550
|
+
get sizeIcon() {
|
|
8551
|
+
if (this.eclThemeService.isECTheme()) {
|
|
8552
|
+
return this.ICON_SIZE_FOR_EC_THEME_ON;
|
|
8553
|
+
} else {
|
|
8554
|
+
return this.ICON_SIZE_FOR_EU_THEME_ON;
|
|
8555
|
+
}
|
|
8628
8556
|
}
|
|
8629
8557
|
ngAfterContentInit() {
|
|
8630
8558
|
this.handleNavigationItemsScroll();
|
|
@@ -8664,8 +8592,12 @@ var EclInpageNavigationComponent = class _EclInpageNavigationComponent extends E
|
|
|
8664
8592
|
handleNavigationLinksHighlight(sectionElements) {
|
|
8665
8593
|
const currentSectionElement = this.findActiveSectionElement(sectionElements);
|
|
8666
8594
|
if (currentSectionElement !== this.currentSectionElement) {
|
|
8667
|
-
this.currentSectionElement
|
|
8668
|
-
|
|
8595
|
+
if (this.currentSectionElement) {
|
|
8596
|
+
this.renderer.removeClass(this.currentSectionElement, this.HEADING_ACTIVATED_CLASS);
|
|
8597
|
+
}
|
|
8598
|
+
if (currentSectionElement) {
|
|
8599
|
+
this.renderer.addClass(currentSectionElement, this.HEADING_ACTIVATED_CLASS);
|
|
8600
|
+
}
|
|
8669
8601
|
this.currentSectionElement = currentSectionElement;
|
|
8670
8602
|
this.onSectionScrollTrigger(currentSectionElement);
|
|
8671
8603
|
const sectionId = this.currentNavigationLinkItem ? this.currentNavigationLinkItem.sectionId : void 0;
|
|
@@ -8693,7 +8625,7 @@ var EclInpageNavigationComponent = class _EclInpageNavigationComponent extends E
|
|
|
8693
8625
|
return window.pageYOffset + window.innerHeight === document.documentElement.scrollHeight;
|
|
8694
8626
|
}
|
|
8695
8627
|
static {
|
|
8696
|
-
this.ɵfac = i0122.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0122, type: _EclInpageNavigationComponent, deps:
|
|
8628
|
+
this.ɵfac = i0122.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0122, type: _EclInpageNavigationComponent, deps: [{ token: EclThemeService }, { token: i0122.Renderer2 }], target: i0122.ɵɵFactoryTarget.Component });
|
|
8697
8629
|
}
|
|
8698
8630
|
static {
|
|
8699
8631
|
this.ɵcmp = i0122.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclInpageNavigationComponent, selector: "ecl-inpage-navigation", inputs: { eclTitle: "eclTitle", marginTop: "marginTop", marginBottom: "marginBottom" }, outputs: { sectionEnter: "sectionEnter" }, queries: [{ propertyName: "eclNavigationLinkItems", predicate: EclInpageNavigationItemComponent }], usesInheritance: true, ngImport: i0122, template: `<ecl-sticky-container [marginTop]="marginTop" [marginBottom]="marginBottom">
|
|
@@ -8705,18 +8637,20 @@ var EclInpageNavigationComponent = class _EclInpageNavigationComponent extends E
|
|
|
8705
8637
|
{{ eclTitle || 'ecl.inpage-navigation.PAGE-CONTENTS' | translate }}
|
|
8706
8638
|
</div>
|
|
8707
8639
|
<div class="ecl-inpage-navigation__body">
|
|
8708
|
-
<
|
|
8709
|
-
|
|
8710
|
-
|
|
8711
|
-
|
|
8712
|
-
|
|
8713
|
-
|
|
8714
|
-
|
|
8715
|
-
|
|
8716
|
-
|
|
8717
|
-
|
|
8718
|
-
|
|
8719
|
-
|
|
8640
|
+
<div class="ecl-inpage-navigation__trigger-wrapper">
|
|
8641
|
+
<button
|
|
8642
|
+
id="ecl-inpage-navigation-default-trigger"
|
|
8643
|
+
type="button"
|
|
8644
|
+
class="ecl-inpage-navigation__trigger"
|
|
8645
|
+
aria-controls="ecl-inpage-navigation-list"
|
|
8646
|
+
[attr.aria-expanded]="isButtonExpanded"
|
|
8647
|
+
(click)="onExpandButtonClick($event)">
|
|
8648
|
+
<span class="ecl-inpage-navigation__trigger-current">
|
|
8649
|
+
{{ currentNavigationLinkItem?.label }}
|
|
8650
|
+
</span>
|
|
8651
|
+
<ecl-icon icon="corner-arrow" [size]="sizeIcon" transform="rotate-180" class="ecl-inpage-navigation__trigger-icon"> </ecl-icon>
|
|
8652
|
+
</button>
|
|
8653
|
+
</div>
|
|
8720
8654
|
<ul
|
|
8721
8655
|
id="ecl-inpage-navigation-default-list"
|
|
8722
8656
|
class="ecl-inpage-navigation__list"
|
|
@@ -8728,7 +8662,7 @@ var EclInpageNavigationComponent = class _EclInpageNavigationComponent extends E
|
|
|
8728
8662
|
</div>
|
|
8729
8663
|
</nav>
|
|
8730
8664
|
</ecl-sticky-container>
|
|
8731
|
-
`, styles: ["@media (min-width: 996px){.ecl-inpage-navigation__list{display:block!important}}\n"], dependencies: [{ kind: "component", type: EclStickyContainerComponent, selector: "ecl-sticky-container", inputs: ["isEnabled", "marginTop", "marginBottom"] }, { kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "pipe", type:
|
|
8665
|
+
`, styles: ["@media (min-width: 996px){.ecl-inpage-navigation__list{display:block!important}}\n"], dependencies: [{ kind: "component", type: EclStickyContainerComponent, selector: "ecl-sticky-container", inputs: ["isEnabled", "marginTop", "marginBottom"] }, { kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "pipe", type: i46.TranslatePipe, name: "translate" }] });
|
|
8732
8666
|
}
|
|
8733
8667
|
};
|
|
8734
8668
|
i0122.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0122, type: EclInpageNavigationComponent, decorators: [{
|
|
@@ -8742,18 +8676,20 @@ i0122.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
8742
8676
|
{{ eclTitle || 'ecl.inpage-navigation.PAGE-CONTENTS' | translate }}
|
|
8743
8677
|
</div>
|
|
8744
8678
|
<div class="ecl-inpage-navigation__body">
|
|
8745
|
-
<
|
|
8746
|
-
|
|
8747
|
-
|
|
8748
|
-
|
|
8749
|
-
|
|
8750
|
-
|
|
8751
|
-
|
|
8752
|
-
|
|
8753
|
-
|
|
8754
|
-
|
|
8755
|
-
|
|
8756
|
-
|
|
8679
|
+
<div class="ecl-inpage-navigation__trigger-wrapper">
|
|
8680
|
+
<button
|
|
8681
|
+
id="ecl-inpage-navigation-default-trigger"
|
|
8682
|
+
type="button"
|
|
8683
|
+
class="ecl-inpage-navigation__trigger"
|
|
8684
|
+
aria-controls="ecl-inpage-navigation-list"
|
|
8685
|
+
[attr.aria-expanded]="isButtonExpanded"
|
|
8686
|
+
(click)="onExpandButtonClick($event)">
|
|
8687
|
+
<span class="ecl-inpage-navigation__trigger-current">
|
|
8688
|
+
{{ currentNavigationLinkItem?.label }}
|
|
8689
|
+
</span>
|
|
8690
|
+
<ecl-icon icon="corner-arrow" [size]="sizeIcon" transform="rotate-180" class="ecl-inpage-navigation__trigger-icon"> </ecl-icon>
|
|
8691
|
+
</button>
|
|
8692
|
+
</div>
|
|
8757
8693
|
<ul
|
|
8758
8694
|
id="ecl-inpage-navigation-default-list"
|
|
8759
8695
|
class="ecl-inpage-navigation__list"
|
|
@@ -8766,7 +8702,7 @@ i0122.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
8766
8702
|
</nav>
|
|
8767
8703
|
</ecl-sticky-container>
|
|
8768
8704
|
`, styles: ["@media (min-width: 996px){.ecl-inpage-navigation__list{display:block!important}}\n"] }]
|
|
8769
|
-
}], propDecorators: { eclTitle: [{
|
|
8705
|
+
}], ctorParameters: () => [{ type: EclThemeService }, { type: i0122.Renderer2 }], propDecorators: { eclTitle: [{
|
|
8770
8706
|
type: Input48
|
|
8771
8707
|
}], marginTop: [{
|
|
8772
8708
|
type: Input48
|
|
@@ -8807,7 +8743,7 @@ i0123.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
8807
8743
|
// lib/components/ecl-list-illustration/ecl-list-illustration-item.component.mjs
|
|
8808
8744
|
import { Component as Component56, ContentChildren as ContentChildren14, forwardRef as forwardRef33, HostBinding as HostBinding83, Input as Input49 } from "@angular/core";
|
|
8809
8745
|
import * as i0124 from "@angular/core";
|
|
8810
|
-
import * as
|
|
8746
|
+
import * as i122 from "@angular/common";
|
|
8811
8747
|
var EclListIllustrationItemComponent = class _EclListIllustrationItemComponent extends ECLBaseDirective {
|
|
8812
8748
|
constructor() {
|
|
8813
8749
|
super(...arguments);
|
|
@@ -8825,7 +8761,7 @@ var EclListIllustrationItemComponent = class _EclListIllustrationItemComponent e
|
|
|
8825
8761
|
this.ɵfac = i0124.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0124, type: _EclListIllustrationItemComponent, deps: null, target: i0124.ɵɵFactoryTarget.Component });
|
|
8826
8762
|
}
|
|
8827
8763
|
static {
|
|
8828
|
-
this.ɵcmp = i0124.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclListIllustrationItemComponent, selector: "ecl-list-illustration-item", inputs: { eclTitle: "eclTitle", eclValue: "eclValue" }, host: { properties: { "class.ecl-list-illustration__item": "this.className" } }, queries: [{ propertyName: "eclIllustrationIcons", predicate: i0124.forwardRef(() => EclListIllustrationIconDirective) }], usesInheritance: true, ngImport: i0124, template: '<ng-content select="[eclListIllustrationImage],[eclListIllustrationPicture]"></ng-content>\n<div class="ecl-list-illustration__detail">\n <div *ngIf="hasTitle || hasValue" class="ecl-list-illustration__title-container">\n <ng-content select="[eclListIllustrationIcon]"></ng-content>\n <div *ngIf="hasValue" class="ecl-list-illustration__value">{{ eclValue }}</div>\n <div class="ecl-list-illustration__title">{{ eclTitle }}</div>\n </div>\n <div class="ecl-list-illustration__description">\n <ng-content></ng-content>\n </div>\n</div>\n', dependencies: [{ kind: "directive", type:
|
|
8764
|
+
this.ɵcmp = i0124.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclListIllustrationItemComponent, selector: "ecl-list-illustration-item", inputs: { eclTitle: "eclTitle", eclValue: "eclValue" }, host: { properties: { "class.ecl-list-illustration__item": "this.className" } }, queries: [{ propertyName: "eclIllustrationIcons", predicate: i0124.forwardRef(() => EclListIllustrationIconDirective) }], usesInheritance: true, ngImport: i0124, template: '<ng-content select="[eclListIllustrationImage],[eclListIllustrationPicture]"></ng-content>\n<div class="ecl-list-illustration__detail">\n <div *ngIf="hasTitle || hasValue" class="ecl-list-illustration__title-container">\n <ng-content select="[eclListIllustrationIcon]"></ng-content>\n <div *ngIf="hasValue" class="ecl-list-illustration__value">{{ eclValue }}</div>\n <div class="ecl-list-illustration__title">{{ eclTitle }}</div>\n </div>\n <div class="ecl-list-illustration__description">\n <ng-content></ng-content>\n </div>\n</div>\n', dependencies: [{ kind: "directive", type: i122.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
8829
8765
|
}
|
|
8830
8766
|
};
|
|
8831
8767
|
i0124.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0124, type: EclListIllustrationItemComponent, decorators: [{
|
|
@@ -8869,7 +8805,7 @@ i0125.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
8869
8805
|
}] } });
|
|
8870
8806
|
|
|
8871
8807
|
// lib/components/ecl-list-illustration/ecl-list-illustration-picture.directive.mjs
|
|
8872
|
-
import { Directive as Directive33, HostBinding as HostBinding85, Input as Input50, booleanAttribute as
|
|
8808
|
+
import { Directive as Directive33, HostBinding as HostBinding85, Input as Input50, booleanAttribute as booleanAttribute18 } from "@angular/core";
|
|
8873
8809
|
import * as i0126 from "@angular/core";
|
|
8874
8810
|
var EclListIllustrationPictureDirective = class _EclListIllustrationPictureDirective extends ECLBaseDirective {
|
|
8875
8811
|
get cssClasses() {
|
|
@@ -8908,7 +8844,7 @@ var EclListIllustrationImageDirective = class _EclListIllustrationImageDirective
|
|
|
8908
8844
|
this.ɵfac = i0126.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0126, type: _EclListIllustrationImageDirective, deps: null, target: i0126.ɵɵFactoryTarget.Directive });
|
|
8909
8845
|
}
|
|
8910
8846
|
static {
|
|
8911
|
-
this.ɵdir = i0126.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.0.0-next.3", type: _EclListIllustrationImageDirective, selector: "img[eclListIllustrationImage]", inputs: { isSquare: ["isSquare", "isSquare",
|
|
8847
|
+
this.ɵdir = i0126.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.0.0-next.3", type: _EclListIllustrationImageDirective, selector: "img[eclListIllustrationImage]", inputs: { isSquare: ["isSquare", "isSquare", booleanAttribute18], size: "size" }, host: { properties: { "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0126 });
|
|
8912
8848
|
}
|
|
8913
8849
|
};
|
|
8914
8850
|
i0126.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0126, type: EclListIllustrationImageDirective, decorators: [{
|
|
@@ -8918,7 +8854,7 @@ i0126.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
8918
8854
|
}]
|
|
8919
8855
|
}], propDecorators: { isSquare: [{
|
|
8920
8856
|
type: Input50,
|
|
8921
|
-
args: [{ transform:
|
|
8857
|
+
args: [{ transform: booleanAttribute18 }]
|
|
8922
8858
|
}], size: [{
|
|
8923
8859
|
type: Input50
|
|
8924
8860
|
}], cssClasses: [{
|
|
@@ -8927,7 +8863,7 @@ i0126.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
8927
8863
|
}] } });
|
|
8928
8864
|
|
|
8929
8865
|
// lib/components/ecl-list-illustration/ecl-list-illustration.component.mjs
|
|
8930
|
-
import { Component as Component57, HostBinding as HostBinding86, Input as Input51, booleanAttribute as
|
|
8866
|
+
import { Component as Component57, HostBinding as HostBinding86, Input as Input51, booleanAttribute as booleanAttribute19, numberAttribute as numberAttribute4 } from "@angular/core";
|
|
8931
8867
|
import * as i0127 from "@angular/core";
|
|
8932
8868
|
var EclListIllustrationComponent = class _EclListIllustrationComponent extends ECLBaseDirective {
|
|
8933
8869
|
constructor() {
|
|
@@ -8946,7 +8882,7 @@ var EclListIllustrationComponent = class _EclListIllustrationComponent extends E
|
|
|
8946
8882
|
this.ɵfac = i0127.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0127, type: _EclListIllustrationComponent, deps: null, target: i0127.ɵɵFactoryTarget.Component });
|
|
8947
8883
|
}
|
|
8948
8884
|
static {
|
|
8949
|
-
this.ɵcmp = i0127.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.0-next.3", type: _EclListIllustrationComponent, selector: "ecl-list-illustration", inputs: { isZebra: ["isZebra", "isZebra",
|
|
8885
|
+
this.ɵcmp = i0127.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.0-next.3", type: _EclListIllustrationComponent, selector: "ecl-list-illustration", inputs: { isZebra: ["isZebra", "isZebra", booleanAttribute19], horizontalColumns: ["horizontalColumns", "horizontalColumns", numberAttribute4] }, host: { properties: { "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0127, template: "<ng-content></ng-content>\n" });
|
|
8950
8886
|
}
|
|
8951
8887
|
};
|
|
8952
8888
|
i0127.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0127, type: EclListIllustrationComponent, decorators: [{
|
|
@@ -8954,10 +8890,10 @@ i0127.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
8954
8890
|
args: [{ selector: "ecl-list-illustration", template: "<ng-content></ng-content>\n" }]
|
|
8955
8891
|
}], propDecorators: { isZebra: [{
|
|
8956
8892
|
type: Input51,
|
|
8957
|
-
args: [{ transform:
|
|
8893
|
+
args: [{ transform: booleanAttribute19 }]
|
|
8958
8894
|
}], horizontalColumns: [{
|
|
8959
8895
|
type: Input51,
|
|
8960
|
-
args: [{ transform:
|
|
8896
|
+
args: [{ transform: numberAttribute4 }]
|
|
8961
8897
|
}], cssClasses: [{
|
|
8962
8898
|
type: HostBinding86,
|
|
8963
8899
|
args: ["class"]
|
|
@@ -9147,7 +9083,7 @@ i0130.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
9147
9083
|
}] } });
|
|
9148
9084
|
|
|
9149
9085
|
// lib/components/ecl-list/ecl-list.directive.mjs
|
|
9150
|
-
import { ContentChildren as ContentChildren16, Directive as Directive35, HostBinding as HostBinding89, Input as Input53, booleanAttribute as
|
|
9086
|
+
import { ContentChildren as ContentChildren16, Directive as Directive35, HostBinding as HostBinding89, Input as Input53, booleanAttribute as booleanAttribute20, numberAttribute as numberAttribute5 } from "@angular/core";
|
|
9151
9087
|
import * as i0131 from "@angular/core";
|
|
9152
9088
|
var EclOrderedListDirective = class _EclOrderedListDirective extends ECLBaseDirective {
|
|
9153
9089
|
constructor() {
|
|
@@ -9202,7 +9138,7 @@ var EclUnorderedListDirective = class _EclUnorderedListDirective extends ECLBase
|
|
|
9202
9138
|
this.ɵfac = i0131.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0131, type: _EclUnorderedListDirective, deps: null, target: i0131.ɵɵFactoryTarget.Directive });
|
|
9203
9139
|
}
|
|
9204
9140
|
static {
|
|
9205
|
-
this.ɵdir = i0131.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.0.0-next.3", type: _EclUnorderedListDirective, selector: "[eclUnorderedList]", inputs: { isDivider: ["isDivider", "isDivider",
|
|
9141
|
+
this.ɵdir = i0131.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.0.0-next.3", type: _EclUnorderedListDirective, selector: "[eclUnorderedList]", inputs: { isDivider: ["isDivider", "isDivider", booleanAttribute20], isNoMarker: ["isNoMarker", "isNoMarker", booleanAttribute20] }, host: { properties: { "class.ecl-unordered-list": "this.cmpClass", "class.ecl-unordered-list--divider": "this.isDivider", "class.ecl-unordered-list--no-marker": "this.isNoMarker" } }, usesInheritance: true, ngImport: i0131 });
|
|
9206
9142
|
}
|
|
9207
9143
|
};
|
|
9208
9144
|
i0131.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0131, type: EclUnorderedListDirective, decorators: [{
|
|
@@ -9215,13 +9151,13 @@ i0131.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
9215
9151
|
args: ["class.ecl-unordered-list"]
|
|
9216
9152
|
}], isDivider: [{
|
|
9217
9153
|
type: Input53,
|
|
9218
|
-
args: [{ transform:
|
|
9154
|
+
args: [{ transform: booleanAttribute20 }]
|
|
9219
9155
|
}, {
|
|
9220
9156
|
type: HostBinding89,
|
|
9221
9157
|
args: ["class.ecl-unordered-list--divider"]
|
|
9222
9158
|
}], isNoMarker: [{
|
|
9223
9159
|
type: Input53,
|
|
9224
|
-
args: [{ transform:
|
|
9160
|
+
args: [{ transform: booleanAttribute20 }]
|
|
9225
9161
|
}, {
|
|
9226
9162
|
type: HostBinding89,
|
|
9227
9163
|
args: ["class.ecl-unordered-list--no-marker"]
|
|
@@ -9267,7 +9203,7 @@ var EclDescriptionListDirective = class _EclDescriptionListDirective extends ECL
|
|
|
9267
9203
|
this.ɵfac = i0131.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0131, type: _EclDescriptionListDirective, deps: [{ token: i0131.ChangeDetectorRef }], target: i0131.ɵɵFactoryTarget.Directive });
|
|
9268
9204
|
}
|
|
9269
9205
|
static {
|
|
9270
|
-
this.ɵdir = i0131.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.0.0-next.3", type: _EclDescriptionListDirective, selector: "[eclDescriptionList]", inputs: { isHorizontal: ["isHorizontal", "isHorizontal",
|
|
9206
|
+
this.ɵdir = i0131.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.0.0-next.3", type: _EclDescriptionListDirective, selector: "[eclDescriptionList]", inputs: { isHorizontal: ["isHorizontal", "isHorizontal", booleanAttribute20], maxVisibleItems: ["maxVisibleItems", "maxVisibleItems", numberAttribute5] }, host: { properties: { "class.ecl-description-list--horizontal": "this.isHorizontal", "class": "this.cssClasses" } }, queries: [{ propertyName: "eclListItems", predicate: EclDescriptionListDefinitionComponent }], usesInheritance: true, ngImport: i0131 });
|
|
9271
9207
|
}
|
|
9272
9208
|
};
|
|
9273
9209
|
i0131.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0131, type: EclDescriptionListDirective, decorators: [{
|
|
@@ -9277,13 +9213,13 @@ i0131.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
9277
9213
|
}]
|
|
9278
9214
|
}], ctorParameters: () => [{ type: i0131.ChangeDetectorRef }], propDecorators: { isHorizontal: [{
|
|
9279
9215
|
type: Input53,
|
|
9280
|
-
args: [{ transform:
|
|
9216
|
+
args: [{ transform: booleanAttribute20 }]
|
|
9281
9217
|
}, {
|
|
9282
9218
|
type: HostBinding89,
|
|
9283
9219
|
args: ["class.ecl-description-list--horizontal"]
|
|
9284
9220
|
}], maxVisibleItems: [{
|
|
9285
9221
|
type: Input53,
|
|
9286
|
-
args: [{ transform:
|
|
9222
|
+
args: [{ transform: numberAttribute5 }]
|
|
9287
9223
|
}], eclListItems: [{
|
|
9288
9224
|
type: ContentChildren16,
|
|
9289
9225
|
args: [EclDescriptionListDefinitionComponent]
|
|
@@ -9419,12 +9355,12 @@ var EclMenuItemParentFocusEvent = class {
|
|
|
9419
9355
|
};
|
|
9420
9356
|
|
|
9421
9357
|
// lib/components/ecl-menu/ecl-menu-mega/ecl-menu-mega-item.component.mjs
|
|
9422
|
-
import { __decorate as
|
|
9358
|
+
import { __decorate as __decorate10 } from "tslib";
|
|
9423
9359
|
import { Component as Component59, Input as Input54, HostBinding as HostBinding90, Output as Output23, EventEmitter as EventEmitter23, HostListener as HostListener11, ContentChildren as ContentChildren17, forwardRef as forwardRef35, ViewChild as ViewChild8 } from "@angular/core";
|
|
9424
|
-
import { coerceBoolean as
|
|
9360
|
+
import { coerceBoolean as coerceBoolean8 } from "@eui/base";
|
|
9425
9361
|
import { ENTER } from "@angular/cdk/keycodes";
|
|
9426
9362
|
import * as i0133 from "@angular/core";
|
|
9427
|
-
import * as
|
|
9363
|
+
import * as i123 from "@angular/common";
|
|
9428
9364
|
import * as i214 from "@angular/router";
|
|
9429
9365
|
var EclMenuMegaItemComponent = class _EclMenuMegaItemComponent extends ECLBaseDirective {
|
|
9430
9366
|
constructor() {
|
|
@@ -9473,11 +9409,11 @@ var EclMenuMegaItemComponent = class _EclMenuMegaItemComponent extends ECLBaseDi
|
|
|
9473
9409
|
this.ɵfac = i0133.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0133, type: _EclMenuMegaItemComponent, deps: null, target: i0133.ɵɵFactoryTarget.Component });
|
|
9474
9410
|
}
|
|
9475
9411
|
static {
|
|
9476
|
-
this.ɵcmp = i0133.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclMenuMegaItemComponent, selector: "ecl-menu-mega-item", inputs: { id: "id", label: "label", routerLink: "routerLink", queryParams: "queryParams", queryParamsHandling: "queryParamsHandling", href: "href", target: "target", isCurrent: "isCurrent" }, outputs: { menuItemSelect: "menuItemSelect", menuItemKeydown: "menuItemKeydown" }, host: { listeners: { "click": "onHostClick($event)" }, properties: { "class.ecl-menu__subitem": "this.cmpClass", "attr.role": "this.role", "class.ecl-menu__subitem--current": "this.isCurrent" } }, queries: [{ propertyName: "iconComponents", predicate: i0133.forwardRef(() => EclIconComponent) }], viewQueries: [{ propertyName: "megaMenuLink", first: true, predicate: ["megaMenuLink"], descendants: true }], usesInheritance: true, ngImport: i0133, template: '<a #megaMenuLink\n *ngIf="href"\n [href]="href"\n [target]="target"\n class="ecl-menu__sublink"\n [class.ecl-menu__sublink--current]="isCurrent"\n (click)="onItemClick($event)"\n (keydown)="onKeydown($event)">\n {{ label }}\n <ng-container *ngTemplateOutlet="content"></ng-container>\n</a>\n\n<a #megaMenuLink\n *ngIf="!href"\n tabindex="0"\n [routerLink]="routerLink"\n [queryParams]="queryParams"\n [queryParamsHandling]="queryParamsHandling"\n class="ecl-menu__sublink"\n [class.ecl-menu__sublink--current]="isCurrent"\n (click)="onItemClick($event)"\n (keydown)="onKeydown($event)">\n {{ label }}\n <ng-container *ngTemplateOutlet="content"></ng-container>\n</a>\n\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>\n', styles: [":host{display:list-item}\n"], dependencies: [{ kind: "directive", type:
|
|
9412
|
+
this.ɵcmp = i0133.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclMenuMegaItemComponent, selector: "ecl-menu-mega-item", inputs: { id: "id", label: "label", routerLink: "routerLink", queryParams: "queryParams", queryParamsHandling: "queryParamsHandling", href: "href", target: "target", isCurrent: "isCurrent" }, outputs: { menuItemSelect: "menuItemSelect", menuItemKeydown: "menuItemKeydown" }, host: { listeners: { "click": "onHostClick($event)" }, properties: { "class.ecl-menu__subitem": "this.cmpClass", "attr.role": "this.role", "class.ecl-menu__subitem--current": "this.isCurrent" } }, queries: [{ propertyName: "iconComponents", predicate: i0133.forwardRef(() => EclIconComponent) }], viewQueries: [{ propertyName: "megaMenuLink", first: true, predicate: ["megaMenuLink"], descendants: true }], usesInheritance: true, ngImport: i0133, template: '<a #megaMenuLink\n *ngIf="href"\n [href]="href"\n [target]="target"\n class="ecl-menu__sublink"\n [class.ecl-menu__sublink--current]="isCurrent"\n (click)="onItemClick($event)"\n (keydown)="onKeydown($event)">\n {{ label }}\n <ng-container *ngTemplateOutlet="content"></ng-container>\n</a>\n\n<a #megaMenuLink\n *ngIf="!href"\n tabindex="0"\n [routerLink]="routerLink"\n [queryParams]="queryParams"\n [queryParamsHandling]="queryParamsHandling"\n class="ecl-menu__sublink"\n [class.ecl-menu__sublink--current]="isCurrent"\n (click)="onItemClick($event)"\n (keydown)="onKeydown($event)">\n {{ label }}\n <ng-container *ngTemplateOutlet="content"></ng-container>\n</a>\n\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>\n', styles: [":host{display:list-item}\n"], dependencies: [{ kind: "directive", type: i123.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i123.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i214.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }] });
|
|
9477
9413
|
}
|
|
9478
9414
|
};
|
|
9479
|
-
|
|
9480
|
-
|
|
9415
|
+
__decorate10([
|
|
9416
|
+
coerceBoolean8
|
|
9481
9417
|
], EclMenuMegaItemComponent.prototype, "isCurrent", void 0);
|
|
9482
9418
|
i0133.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0133, type: EclMenuMegaItemComponent, decorators: [{
|
|
9483
9419
|
type: Component59,
|
|
@@ -9523,11 +9459,11 @@ i0133.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
9523
9459
|
}] } });
|
|
9524
9460
|
|
|
9525
9461
|
// lib/components/ecl-menu/ecl-menu-mega/ecl-menu-mega.component.mjs
|
|
9526
|
-
import { __decorate as
|
|
9462
|
+
import { __decorate as __decorate11 } from "tslib";
|
|
9527
9463
|
import { Component as Component60, Input as Input55, ContentChildren as ContentChildren18, Output as Output24, EventEmitter as EventEmitter24, HostBinding as HostBinding91 } from "@angular/core";
|
|
9528
9464
|
import { Subject as Subject16, of as of2 } from "rxjs";
|
|
9529
9465
|
import { takeUntil as takeUntil16, mergeWith } from "rxjs/operators";
|
|
9530
|
-
import { coerceBoolean as
|
|
9466
|
+
import { coerceBoolean as coerceBoolean9 } from "@eui/base";
|
|
9531
9467
|
import * as i0134 from "@angular/core";
|
|
9532
9468
|
var EclMenuMegaComponent = class _EclMenuMegaComponent extends ECLBaseDirective {
|
|
9533
9469
|
get cssClasses() {
|
|
@@ -9645,8 +9581,8 @@ var EclMenuMegaComponent = class _EclMenuMegaComponent extends ECLBaseDirective
|
|
|
9645
9581
|
this.ɵcmp = i0134.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclMenuMegaComponent, selector: "ecl-menu-mega", inputs: { isRtl: "isRtl" }, outputs: { menuItemSelect: "menuItemSelect", menuMegaItemParentFocus: "menuMegaItemParentFocus" }, host: { properties: { "class.ecl-menu__mega--rtl": "this.isRtlDisplay", "style.left.px": "this.offsetLeft", "style.right.px": "this.offsetRight", "class": "this.cssClasses" } }, queries: [{ propertyName: "eclMenuMegaItems", predicate: EclMenuMegaItemComponent }], usesInheritance: true, ngImport: i0134, template: '<ul class="ecl-menu__sublist">\n <ng-content></ng-content>\n</ul>\n' });
|
|
9646
9582
|
}
|
|
9647
9583
|
};
|
|
9648
|
-
|
|
9649
|
-
|
|
9584
|
+
__decorate11([
|
|
9585
|
+
coerceBoolean9
|
|
9650
9586
|
], EclMenuMegaComponent.prototype, "isRtl", void 0);
|
|
9651
9587
|
i0134.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0134, type: EclMenuMegaComponent, decorators: [{
|
|
9652
9588
|
type: Component60,
|
|
@@ -9680,8 +9616,8 @@ import { Subject as Subject17 } from "rxjs";
|
|
|
9680
9616
|
import { takeUntil as takeUntil17 } from "rxjs/operators";
|
|
9681
9617
|
import { Breakpoints as Breakpoints2 } from "@angular/cdk/layout";
|
|
9682
9618
|
import * as i0135 from "@angular/core";
|
|
9683
|
-
import * as
|
|
9684
|
-
import * as
|
|
9619
|
+
import * as i124 from "@angular/cdk/layout";
|
|
9620
|
+
import * as i47 from "@angular/common";
|
|
9685
9621
|
import * as i53 from "@angular/router";
|
|
9686
9622
|
var EclMenuItemComponent = class _EclMenuItemComponent extends ECLBaseDirective {
|
|
9687
9623
|
get cssClasses() {
|
|
@@ -9953,7 +9889,7 @@ var EclMenuItemComponent = class _EclMenuItemComponent extends ECLBaseDirective
|
|
|
9953
9889
|
});
|
|
9954
9890
|
}
|
|
9955
9891
|
static {
|
|
9956
|
-
this.ɵfac = i0135.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0135, type: _EclMenuItemComponent, deps: [{ token: i0135.ElementRef }, { token: i0135.Renderer2 }, { token: i0135.ApplicationRef }, { token:
|
|
9892
|
+
this.ɵfac = i0135.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0135, type: _EclMenuItemComponent, deps: [{ token: i0135.ElementRef }, { token: i0135.Renderer2 }, { token: i0135.ApplicationRef }, { token: i124.BreakpointObserver }], target: i0135.ɵɵFactoryTarget.Component });
|
|
9957
9893
|
}
|
|
9958
9894
|
static {
|
|
9959
9895
|
this.ɵcmp = i0135.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclMenuItemComponent, selector: "ecl-menu-item", inputs: { id: "id", label: "label", routerLink: "routerLink", queryParams: "queryParams", queryParamsHandling: "queryParamsHandling", href: "href", target: "target", isCurrent: "isCurrent" }, outputs: { menuItemSelect: "menuItemSelect", menuItemCaret: "menuItemCaret", menuItemHover: "menuItemHover", menuItemHoverOut: "menuItemHoverOut", menuMegaItemSelect: "menuMegaItemSelect", menuItemFocus: "menuItemFocus", menuItemKeydown: "menuItemKeydown" }, host: { listeners: { "mouseenter": "onItemMouseEnter($event)", "mouseleave": "onItemMouseLeave($event)" }, properties: { "attr.role": "this.role", "class": "this.cssClasses", "class.ecl-menu__item--has-children": "this.hasEclChildrenDataAttribute", "attr.aria-haspopup": "this.hasEclChildrenDataAttribute", "attr.aria-expanded": "this.isAriaExpanded" } }, queries: [{ propertyName: "submenu", first: true, predicate: i0135.forwardRef(() => EclMenuMegaComponent), descendants: true }], viewQueries: [{ propertyName: "menuLink", first: true, predicate: ["menuLink"], descendants: true }, { propertyName: "menuButton", first: true, predicate: EclButtonComponent, descendants: true }], usesInheritance: true, ngImport: i0135, template: `<a
|
|
@@ -10011,7 +9947,7 @@ var EclMenuItemComponent = class _EclMenuItemComponent extends ECLBaseDirective
|
|
|
10011
9947
|
<ng-template #content>
|
|
10012
9948
|
<ng-content></ng-content>
|
|
10013
9949
|
</ng-template>
|
|
10014
|
-
`, dependencies: [{ kind: "component", type: EclButtonComponent, selector: "button[eclButton], button[ecl-button], a[eclButton]", inputs: ["isIconOnly", "variant", "containerStyleClass"] }, { kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "directive", type:
|
|
9950
|
+
`, dependencies: [{ kind: "component", type: EclButtonComponent, selector: "button[eclButton], button[ecl-button], a[eclButton]", inputs: ["isIconOnly", "variant", "containerStyleClass"] }, { kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "directive", type: i47.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i47.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i53.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }], encapsulation: i0135.ViewEncapsulation.None });
|
|
10015
9951
|
}
|
|
10016
9952
|
};
|
|
10017
9953
|
i0135.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0135, type: EclMenuItemComponent, decorators: [{
|
|
@@ -10072,7 +10008,7 @@ i0135.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
10072
10008
|
<ng-content></ng-content>
|
|
10073
10009
|
</ng-template>
|
|
10074
10010
|
` }]
|
|
10075
|
-
}], ctorParameters: () => [{ type: i0135.ElementRef }, { type: i0135.Renderer2 }, { type: i0135.ApplicationRef }, { type:
|
|
10011
|
+
}], ctorParameters: () => [{ type: i0135.ElementRef }, { type: i0135.Renderer2 }, { type: i0135.ApplicationRef }, { type: i124.BreakpointObserver }], propDecorators: { id: [{
|
|
10076
10012
|
type: Input56
|
|
10077
10013
|
}], label: [{
|
|
10078
10014
|
type: Input56
|
|
@@ -10135,15 +10071,15 @@ i0135.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
10135
10071
|
}] } });
|
|
10136
10072
|
|
|
10137
10073
|
// lib/components/ecl-menu/ecl-menu/ecl-menu.component.mjs
|
|
10138
|
-
import { __decorate as
|
|
10074
|
+
import { __decorate as __decorate12 } from "tslib";
|
|
10139
10075
|
import { Breakpoints as Breakpoints3 } from "@angular/cdk/layout";
|
|
10140
10076
|
import { Component as Component62, ContentChildren as ContentChildren19, EventEmitter as EventEmitter26, HostBinding as HostBinding93, HostListener as HostListener13, Input as Input57, Output as Output26, ViewChild as ViewChild10 } from "@angular/core";
|
|
10141
|
-
import { coerceNumber
|
|
10077
|
+
import { coerceNumber } from "@eui/base";
|
|
10142
10078
|
import Hammer from "hammerjs";
|
|
10143
10079
|
import { Subject as Subject18, of as of3 } from "rxjs";
|
|
10144
10080
|
import { mergeWith as mergeWith2, takeUntil as takeUntil18 } from "rxjs/operators";
|
|
10145
10081
|
import * as i0136 from "@angular/core";
|
|
10146
|
-
import * as
|
|
10082
|
+
import * as i125 from "@angular/cdk/layout";
|
|
10147
10083
|
import * as i72 from "@ngx-translate/core";
|
|
10148
10084
|
var EclMenuComponent = class _EclMenuComponent extends ECLBaseDirective {
|
|
10149
10085
|
get cssClasses() {
|
|
@@ -10634,7 +10570,7 @@ var EclMenuComponent = class _EclMenuComponent extends ECLBaseDirective {
|
|
|
10634
10570
|
});
|
|
10635
10571
|
}
|
|
10636
10572
|
static {
|
|
10637
|
-
this.ɵfac = i0136.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0136, type: _EclMenuComponent, deps: [{ token: i0136.ElementRef }, { token: i0136.IterableDiffers }, { token:
|
|
10573
|
+
this.ɵfac = i0136.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0136, type: _EclMenuComponent, deps: [{ token: i0136.ElementRef }, { token: i0136.IterableDiffers }, { token: i125.BreakpointObserver }, { token: i0136.Renderer2 }, { token: EclRtlService }], target: i0136.ɵɵFactoryTarget.Component });
|
|
10638
10574
|
}
|
|
10639
10575
|
static {
|
|
10640
10576
|
this.ɵcmp = i0136.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclMenuComponent, selector: "ecl-menu", inputs: { group: "group", maxLines: "maxLines" }, outputs: { menuItemSelect: "menuItemSelect" }, host: { listeners: { "keydown": "keyEvent($event)", "window:resize": "onResize()" }, properties: { "class": "this.cssClasses", "attr.aria-expanded": "this.isHamburgerMenuOpened", "attr.role": "this.role", "class.ecl-menu--forced-mobile": "this.isMobileBreakpoint", "class.ecl-menu--forced-close": "this.isMenuHidden" } }, queries: [{ propertyName: "eclRootMenuItems", predicate: EclMenuItemComponent }], viewQueries: [{ propertyName: "innerSection", first: true, predicate: ["innerSection"], descendants: true }, { propertyName: "itemsList", first: true, predicate: ["itemsList"], descendants: true }, { propertyName: "btnPrevious", first: true, predicate: ["btnPrevious"], descendants: true }, { propertyName: "btnNext", first: true, predicate: ["btnNext"], descendants: true }], usesInheritance: true, ngImport: i0136, template: `<div class="ecl-menu__overlay" (click)="onOverlayClick()"></div>
|
|
@@ -10698,8 +10634,8 @@ var EclMenuComponent = class _EclMenuComponent extends ECLBaseDirective {
|
|
|
10698
10634
|
`, styles: [":host{display:block}\n"], dependencies: [{ kind: "component", type: EclButtonComponent, selector: "button[eclButton], button[ecl-button], a[eclButton]", inputs: ["isIconOnly", "variant", "containerStyleClass"] }, { kind: "directive", type: EclButtonLabelDirective, selector: "[eclButtonLabel]" }, { kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "directive", type: EclLinkDirective, selector: "[eclLink]", inputs: ["isInverted", "isHiddenLabel", "isNoVisited", "variant"] }, { kind: "pipe", type: i72.TranslatePipe, name: "translate" }] });
|
|
10699
10635
|
}
|
|
10700
10636
|
};
|
|
10701
|
-
|
|
10702
|
-
|
|
10637
|
+
__decorate12([
|
|
10638
|
+
coerceNumber
|
|
10703
10639
|
], EclMenuComponent.prototype, "maxLines", void 0);
|
|
10704
10640
|
i0136.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0136, type: EclMenuComponent, decorators: [{
|
|
10705
10641
|
type: Component62,
|
|
@@ -10762,7 +10698,7 @@ i0136.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
10762
10698
|
</section>
|
|
10763
10699
|
</div>
|
|
10764
10700
|
`, styles: [":host{display:block}\n"] }]
|
|
10765
|
-
}], ctorParameters: () => [{ type: i0136.ElementRef }, { type: i0136.IterableDiffers }, { type:
|
|
10701
|
+
}], ctorParameters: () => [{ type: i0136.ElementRef }, { type: i0136.IterableDiffers }, { type: i125.BreakpointObserver }, { type: i0136.Renderer2 }, { type: EclRtlService }], propDecorators: { group: [{
|
|
10766
10702
|
type: Input57
|
|
10767
10703
|
}], maxLines: [{
|
|
10768
10704
|
type: Input57
|
|
@@ -11066,9 +11002,9 @@ i0140.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
11066
11002
|
}] } });
|
|
11067
11003
|
|
|
11068
11004
|
// lib/components/ecl-modal/ecl-modal-body.component.mjs
|
|
11069
|
-
import { Component as Component65, HostBinding as HostBinding96, Input as Input61, booleanAttribute as
|
|
11005
|
+
import { Component as Component65, HostBinding as HostBinding96, Input as Input61, booleanAttribute as booleanAttribute21 } from "@angular/core";
|
|
11070
11006
|
import * as i0141 from "@angular/core";
|
|
11071
|
-
import * as
|
|
11007
|
+
import * as i126 from "@angular/common";
|
|
11072
11008
|
var EclModalBodyComponent = class _EclModalBodyComponent extends ECLBaseDirective {
|
|
11073
11009
|
constructor() {
|
|
11074
11010
|
super(...arguments);
|
|
@@ -11084,7 +11020,7 @@ var EclModalBodyComponent = class _EclModalBodyComponent extends ECLBaseDirectiv
|
|
|
11084
11020
|
this.ɵfac = i0141.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0141, type: _EclModalBodyComponent, deps: null, target: i0141.ɵɵFactoryTarget.Component });
|
|
11085
11021
|
}
|
|
11086
11022
|
static {
|
|
11087
|
-
this.ɵcmp = i0141.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.3", type: _EclModalBodyComponent, selector: "[eclModalBody]", inputs: { isScrollable: ["isScrollable", "isScrollable",
|
|
11023
|
+
this.ɵcmp = i0141.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.3", type: _EclModalBodyComponent, selector: "[eclModalBody]", inputs: { isScrollable: ["isScrollable", "isScrollable", booleanAttribute21] }, host: { properties: { "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0141, template: '@if (isScrollable) {\n<div class="ecl-modal__body-scroll">\n <ng-container *ngTemplateOutlet="content"></ng-container>\n</div>\n<div class="ecl-modal__body-overflow" aria-hidden="true"></div>\n<ng-content select="[eclModalBodyFixedContent]"></ng-content>\n} @else {\n<ng-container *ngTemplateOutlet="content"></ng-container>\n}\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>', dependencies: [{ kind: "directive", type: i126.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] });
|
|
11088
11024
|
}
|
|
11089
11025
|
};
|
|
11090
11026
|
i0141.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0141, type: EclModalBodyComponent, decorators: [{
|
|
@@ -11092,7 +11028,7 @@ i0141.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
11092
11028
|
args: [{ selector: "[eclModalBody]", template: '@if (isScrollable) {\n<div class="ecl-modal__body-scroll">\n <ng-container *ngTemplateOutlet="content"></ng-container>\n</div>\n<div class="ecl-modal__body-overflow" aria-hidden="true"></div>\n<ng-content select="[eclModalBodyFixedContent]"></ng-content>\n} @else {\n<ng-container *ngTemplateOutlet="content"></ng-container>\n}\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>' }]
|
|
11093
11029
|
}], propDecorators: { isScrollable: [{
|
|
11094
11030
|
type: Input61,
|
|
11095
|
-
args: [{ transform:
|
|
11031
|
+
args: [{ transform: booleanAttribute21 }]
|
|
11096
11032
|
}], cssClasses: [{
|
|
11097
11033
|
type: HostBinding96,
|
|
11098
11034
|
args: ["class"]
|
|
@@ -11272,9 +11208,9 @@ i0146.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
11272
11208
|
}] });
|
|
11273
11209
|
|
|
11274
11210
|
// lib/components/ecl-multiselect/ecl-multiselect-option/ecl-multiselect-option.component.mjs
|
|
11275
|
-
import { __decorate as
|
|
11211
|
+
import { __decorate as __decorate13 } from "tslib";
|
|
11276
11212
|
import { Component as Component67, EventEmitter as EventEmitter30, HostBinding as HostBinding99, Input as Input63, Output as Output30, ViewChild as ViewChild11 } from "@angular/core";
|
|
11277
|
-
import { coerceBoolean as
|
|
11213
|
+
import { coerceBoolean as coerceBoolean10 } from "@eui/base";
|
|
11278
11214
|
import { Subject as Subject20 } from "rxjs";
|
|
11279
11215
|
import { v4 as uuidgen3 } from "uuid";
|
|
11280
11216
|
import * as i0147 from "@angular/core";
|
|
@@ -11363,8 +11299,8 @@ var EclMultiselectOptionComponent = class _EclMultiselectOptionComponent extends
|
|
|
11363
11299
|
this.ɵcmp = i0147.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclMultiselectOptionComponent, selector: "div[eclMultiselectOption]", inputs: { value: "value", label: "label", disabled: "disabled", isChecked: "isChecked" }, outputs: { optionClick: "optionClick", optionKeydown: "optionKeydown" }, host: { properties: { "class.ecl-checkbox--disabled": "this.disabled", "attr.disabled": "this.disabled", "style.display": "this.display", "class": "this.cssClasses" } }, viewQueries: [{ propertyName: "eclCheckboxInput", first: true, predicate: ["checkboxInput"], descendants: true }], usesInheritance: true, usesOnChanges: true, hostDirectives: [{ directive: EclCheckboxDirective }], ngImport: i0147, template: '<input\n eclCheckboxInput\n type="checkbox"\n [id]="id"\n [value]="value"\n (click)="onOptionClick()"\n (keydown)="onOptionKeydown($event)"\n [checked]="isChecked"\n [disabled]="disabled"\n #checkboxInput />\n<label [for]="id" eclCheckboxLabel><span [innerHTML]="label | boldText: keyword"></span></label>\n', dependencies: [{ kind: "component", type: EclCheckboxLabelComponent, selector: "label[eclCheckboxLabel]", inputs: ["isInvalid", "isDisabled"] }, { kind: "directive", type: EclCheckboxInputDirective, selector: "input[eclCheckboxInput]" }, { kind: "pipe", type: BoldTextPipe, name: "boldText" }] });
|
|
11364
11300
|
}
|
|
11365
11301
|
};
|
|
11366
|
-
|
|
11367
|
-
|
|
11302
|
+
__decorate13([
|
|
11303
|
+
coerceBoolean10
|
|
11368
11304
|
], EclMultiselectOptionComponent.prototype, "disabled", void 0);
|
|
11369
11305
|
i0147.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0147, type: EclMultiselectOptionComponent, decorators: [{
|
|
11370
11306
|
type: Component67,
|
|
@@ -11410,9 +11346,9 @@ i0147.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
11410
11346
|
} });
|
|
11411
11347
|
|
|
11412
11348
|
// lib/components/ecl-multiselect/ecl-multiselect-input/ecl-multiselect-input.component.mjs
|
|
11413
|
-
import { __decorate as
|
|
11349
|
+
import { __decorate as __decorate14 } from "tslib";
|
|
11414
11350
|
import { Component as Component68, EventEmitter as EventEmitter31, HostBinding as HostBinding100, Input as Input64, Output as Output31, ViewChild as ViewChild12 } from "@angular/core";
|
|
11415
|
-
import { coerceBoolean as
|
|
11351
|
+
import { coerceBoolean as coerceBoolean11 } from "@eui/base";
|
|
11416
11352
|
import * as i0148 from "@angular/core";
|
|
11417
11353
|
var EclMultiselectMainInputClickEvent = class {
|
|
11418
11354
|
constructor(event) {
|
|
@@ -11469,11 +11405,11 @@ var EclMultiselectInputComponent = class _EclMultiselectInputComponent extends E
|
|
|
11469
11405
|
this.ɵcmp = i0148.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclMultiselectInputComponent, selector: "div[eclMultiselectInput]", inputs: { eclSize: "eclSize", toggleId: "toggleId", isDisabled: "isDisabled", isInvalid: "isInvalid", inputPlaceholder: "inputPlaceholder", selectedItems: "selectedItems", isDropdownExpanded: "isDropdownExpanded", ariaControls: "ariaControls", ariaDescribedby: "ariaDescribedby", ariaLabeledby: "ariaLabeledby" }, outputs: { mainInputClick: "mainInputClick", mainInputKeydown: "mainInputKeydown" }, host: { properties: { "class.ecl-select__container--disabled": "this.isDisabled", "class.ecl-select__container--invalid": "this.isInvalid", "class": "this.cssClasses" } }, viewQueries: [{ propertyName: "inputMultiselect", first: true, predicate: ["inputMultiselect"], descendants: true }], usesInheritance: true, ngImport: i0148, template: '<div [class.ecl-select-multiple-selections-counter--visible]="isShowCounter" class="ecl-select-multiple-selections-counter">\n <span>{{ selectedItemsCount }}</span>\n</div>\n<button\n class="ecl-select ecl-select__multiple-toggle"\n #inputMultiselect\n type="button"\n [id]="toggleId"\n [attr.aria-expanded]="isDropdownExpanded"\n [attr.aria-controls]="ariaControls"\n [attr.disabled]="isDisabled ? true : undefined"\n [attr.aria-labelledby]="ariaLabeledby"\n [attr.aria-describedby]="ariaDescribedby"\n (keydown)="onKeydown($event)"\n (click)="onClick($event)"> {{ buttonText }}\n</button>\n<div class="ecl-select__icon">\n <ecl-icon icon="corner-arrow" size="s" class="ecl-select__icon-shape" transform="rotate-180"></ecl-icon>\n</div>\n', dependencies: [{ kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }] });
|
|
11470
11406
|
}
|
|
11471
11407
|
};
|
|
11472
|
-
|
|
11473
|
-
|
|
11408
|
+
__decorate14([
|
|
11409
|
+
coerceBoolean11
|
|
11474
11410
|
], EclMultiselectInputComponent.prototype, "isDisabled", void 0);
|
|
11475
|
-
|
|
11476
|
-
|
|
11411
|
+
__decorate14([
|
|
11412
|
+
coerceBoolean11
|
|
11477
11413
|
], EclMultiselectInputComponent.prototype, "isInvalid", void 0);
|
|
11478
11414
|
i0148.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0148, type: EclMultiselectInputComponent, decorators: [{
|
|
11479
11415
|
type: Component68,
|
|
@@ -11552,14 +11488,14 @@ i0149.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
11552
11488
|
}] } });
|
|
11553
11489
|
|
|
11554
11490
|
// lib/components/ecl-multiselect/ecl-multiselect-dropdown/ecl-multiselect-dropdown.component.mjs
|
|
11555
|
-
import { __decorate as
|
|
11491
|
+
import { __decorate as __decorate15 } from "tslib";
|
|
11556
11492
|
import { Component as Component70, ElementRef as ElementRef24, EventEmitter as EventEmitter32, forwardRef as forwardRef43, HostBinding as HostBinding102, HostListener as HostListener17, Input as Input66, Output as Output32, ViewChild as ViewChild13, ViewChildren as ViewChildren2 } from "@angular/core";
|
|
11557
11493
|
import { NG_VALUE_ACCESSOR as NG_VALUE_ACCESSOR4 } from "@angular/forms";
|
|
11558
|
-
import { coerceBoolean as
|
|
11494
|
+
import { coerceBoolean as coerceBoolean12 } from "@eui/base";
|
|
11559
11495
|
import { Subject as Subject21 } from "rxjs";
|
|
11560
11496
|
import { v4 as uuidgen4 } from "uuid";
|
|
11561
11497
|
import * as i0150 from "@angular/core";
|
|
11562
|
-
import * as
|
|
11498
|
+
import * as i127 from "@angular/common";
|
|
11563
11499
|
import * as i9 from "@ngx-translate/core";
|
|
11564
11500
|
var EclMultiselectDropdownComponent = class _EclMultiselectDropdownComponent extends ECLBaseDirective {
|
|
11565
11501
|
get isInvalid() {
|
|
@@ -12026,14 +11962,14 @@ var EclMultiselectDropdownComponent = class _EclMultiselectDropdownComponent ext
|
|
|
12026
11962
|
</button>
|
|
12027
11963
|
</div>
|
|
12028
11964
|
</div>
|
|
12029
|
-
`, dependencies: [{ kind: "directive", type:
|
|
11965
|
+
`, dependencies: [{ kind: "directive", type: i127.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i127.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: EclCheckboxDirective, selector: "[eclCheckbox]", inputs: ["isDisabled", "isInvalid"] }, { kind: "component", type: EclCheckboxLabelComponent, selector: "label[eclCheckboxLabel]", inputs: ["isInvalid", "isDisabled"] }, { kind: "directive", type: EclCheckboxInputDirective, selector: "input[eclCheckboxInput]" }, { kind: "component", type: EclButtonComponent, selector: "button[eclButton], button[ecl-button], a[eclButton]", inputs: ["isIconOnly", "variant", "containerStyleClass"] }, { kind: "component", type: EclMultiselectOptionComponent, selector: "div[eclMultiselectOption]", inputs: ["value", "label", "disabled", "isChecked"], outputs: ["optionClick", "optionKeydown"] }, { kind: "component", type: EclMultiselectInputComponent, selector: "div[eclMultiselectInput]", inputs: ["eclSize", "toggleId", "isDisabled", "isInvalid", "inputPlaceholder", "selectedItems", "isDropdownExpanded", "ariaControls", "ariaDescribedby", "ariaLabeledby"], outputs: ["mainInputClick", "mainInputKeydown"] }, { kind: "component", type: EclMultiselectOptgroupComponent, selector: "fieldset[eclMultiselectOptgroup]", inputs: ["label"] }, { kind: "pipe", type: i9.TranslatePipe, name: "translate" }] });
|
|
12030
11966
|
}
|
|
12031
11967
|
};
|
|
12032
|
-
|
|
12033
|
-
|
|
11968
|
+
__decorate15([
|
|
11969
|
+
coerceBoolean12
|
|
12034
11970
|
], EclMultiselectDropdownComponent.prototype, "isInvalid", null);
|
|
12035
|
-
|
|
12036
|
-
|
|
11971
|
+
__decorate15([
|
|
11972
|
+
coerceBoolean12
|
|
12037
11973
|
], EclMultiselectDropdownComponent.prototype, "disabled", null);
|
|
12038
11974
|
i0150.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0150, type: EclMultiselectDropdownComponent, decorators: [{
|
|
12039
11975
|
type: Component70,
|
|
@@ -12237,11 +12173,11 @@ i0151.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
12237
12173
|
}] } });
|
|
12238
12174
|
|
|
12239
12175
|
// lib/components/ecl-multiselect/ecl-multiselect.component.mjs
|
|
12240
|
-
import { __decorate as
|
|
12176
|
+
import { __decorate as __decorate16 } from "tslib";
|
|
12241
12177
|
import { coerceBooleanProperty as coerceBooleanProperty3 } from "@angular/cdk/coercion";
|
|
12242
12178
|
import { Component as Component71, ContentChildren as ContentChildren23, EventEmitter as EventEmitter33, forwardRef as forwardRef44, HostBinding as HostBinding104, Input as Input68, Output as Output33, ViewEncapsulation as ViewEncapsulation9 } from "@angular/core";
|
|
12243
12179
|
import { NG_VALUE_ACCESSOR as NG_VALUE_ACCESSOR5, NgControl as NgControl4 } from "@angular/forms";
|
|
12244
|
-
import { coerceBoolean as
|
|
12180
|
+
import { coerceBoolean as coerceBoolean13 } from "@eui/base";
|
|
12245
12181
|
import { Subject as Subject23, takeUntil as takeUntil20 } from "rxjs";
|
|
12246
12182
|
import * as i0152 from "@angular/core";
|
|
12247
12183
|
var EclMultiselectComponent = class _EclMultiselectComponent extends ECLBaseDirective {
|
|
@@ -12377,8 +12313,8 @@ var EclMultiselectComponent = class _EclMultiselectComponent extends ECLBaseDire
|
|
|
12377
12313
|
], queries: [{ propertyName: "eclOptionItems", predicate: i0152.forwardRef(() => EclMultiselectOptionDirective) }], usesInheritance: true, ngImport: i0152, template: "<ng-content></ng-content>\n", encapsulation: i0152.ViewEncapsulation.None });
|
|
12378
12314
|
}
|
|
12379
12315
|
};
|
|
12380
|
-
|
|
12381
|
-
|
|
12316
|
+
__decorate16([
|
|
12317
|
+
coerceBoolean13
|
|
12382
12318
|
], EclMultiselectComponent.prototype, "isInvalid", null);
|
|
12383
12319
|
i0152.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0152, type: EclMultiselectComponent, decorators: [{
|
|
12384
12320
|
type: Component71,
|
|
@@ -12520,9 +12456,9 @@ i0154.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
12520
12456
|
}] } });
|
|
12521
12457
|
|
|
12522
12458
|
// lib/components/ecl-navigation-list/ecl-navigation-list.component.mjs
|
|
12523
|
-
import { __decorate as
|
|
12459
|
+
import { __decorate as __decorate17 } from "tslib";
|
|
12524
12460
|
import { Component as Component73, HostBinding as HostBinding106, Input as Input70 } from "@angular/core";
|
|
12525
|
-
import { coerceNumber as
|
|
12461
|
+
import { coerceNumber as coerceNumber2 } from "@eui/base";
|
|
12526
12462
|
import * as i0155 from "@angular/core";
|
|
12527
12463
|
var EclNavigationListComponent = class _EclNavigationListComponent extends ECLBaseDirective {
|
|
12528
12464
|
constructor() {
|
|
@@ -12539,8 +12475,8 @@ var EclNavigationListComponent = class _EclNavigationListComponent extends ECLBa
|
|
|
12539
12475
|
this.ɵcmp = i0155.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclNavigationListComponent, selector: "ecl-navigation-list", inputs: { columns: "columns" }, host: { properties: { "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0155, template: "<ng-content></ng-content>\n" });
|
|
12540
12476
|
}
|
|
12541
12477
|
};
|
|
12542
|
-
|
|
12543
|
-
|
|
12478
|
+
__decorate17([
|
|
12479
|
+
coerceNumber2
|
|
12544
12480
|
], EclNavigationListComponent.prototype, "columns", void 0);
|
|
12545
12481
|
i0155.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0155, type: EclNavigationListComponent, decorators: [{
|
|
12546
12482
|
type: Component73,
|
|
@@ -12745,7 +12681,7 @@ i0159.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
12745
12681
|
}] } });
|
|
12746
12682
|
|
|
12747
12683
|
// lib/components/ecl-news-ticker/ecl-news-ticker.component.mjs
|
|
12748
|
-
import { Component as Component76, ContentChildren as ContentChildren24, EventEmitter as EventEmitter35, HostBinding as HostBinding110, HostListener as HostListener18, Input as Input72, Output as Output35, ViewChild as ViewChild14, booleanAttribute as
|
|
12684
|
+
import { Component as Component76, ContentChildren as ContentChildren24, EventEmitter as EventEmitter35, HostBinding as HostBinding110, HostListener as HostListener18, Input as Input72, Output as Output35, ViewChild as ViewChild14, booleanAttribute as booleanAttribute22 } from "@angular/core";
|
|
12749
12685
|
import { Subject as Subject25, takeUntil as takeUntil22 } from "rxjs";
|
|
12750
12686
|
import * as i0160 from "@angular/core";
|
|
12751
12687
|
import * as i54 from "@ngx-translate/core";
|
|
@@ -12936,7 +12872,7 @@ var EclNewsTickerComponent = class _EclNewsTickerComponent extends ECLBaseDirect
|
|
|
12936
12872
|
this.ɵfac = i0160.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0160, type: _EclNewsTickerComponent, deps: [{ token: i0160.Renderer2 }], target: i0160.ɵɵFactoryTarget.Component });
|
|
12937
12873
|
}
|
|
12938
12874
|
static {
|
|
12939
|
-
this.ɵcmp = i0160.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.3", type: _EclNewsTickerComponent, selector: "ecl-news-ticker", inputs: { isAutoplay: ["isAutoplay", "isAutoplay",
|
|
12875
|
+
this.ɵcmp = i0160.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.3", type: _EclNewsTickerComponent, selector: "ecl-news-ticker", inputs: { isAutoplay: ["isAutoplay", "isAutoplay", booleanAttribute22] }, outputs: { itemSwitch: "itemSwitch" }, host: { listeners: { "window:resize": "onResize($event)" }, properties: { "class": "this.cssClasses" } }, queries: [{ propertyName: "newsTickerItems", predicate: EclNewsTickerItemComponent }], viewQueries: [{ propertyName: "firstHiddenItem", first: true, predicate: ["firstHiddenItem"], descendants: true }, { propertyName: "lastHiddenItem", first: true, predicate: ["lastHiddenItem"], descendants: true }, { propertyName: "slidesContainer", first: true, predicate: ["slidesContainer"], descendants: true }], usesInheritance: true, ngImport: i0160, template: `<div class="ecl-news-ticker__container" [style.height.px]="containerHeight">
|
|
12940
12876
|
<ecl-icon icon="information" size="m" class="ecl-news-ticker__icon"></ecl-icon>
|
|
12941
12877
|
<div class="ecl-news-ticker__content" [style.height.px]="contentHeight">
|
|
12942
12878
|
<ul
|
|
@@ -13050,7 +12986,7 @@ i0160.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
13050
12986
|
}` }]
|
|
13051
12987
|
}], ctorParameters: () => [{ type: i0160.Renderer2 }], propDecorators: { isAutoplay: [{
|
|
13052
12988
|
type: Input72,
|
|
13053
|
-
args: [{ transform:
|
|
12989
|
+
args: [{ transform: booleanAttribute22 }]
|
|
13054
12990
|
}], itemSwitch: [{
|
|
13055
12991
|
type: Output35
|
|
13056
12992
|
}], newsTickerItems: [{
|
|
@@ -13099,7 +13035,7 @@ i0161.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
13099
13035
|
}] });
|
|
13100
13036
|
|
|
13101
13037
|
// lib/components/ecl-notification/ecl-notification.component.mjs
|
|
13102
|
-
import { Component as Component77, Input as Input73, Output as Output36, EventEmitter as EventEmitter36, HostBinding as HostBinding111, booleanAttribute as
|
|
13038
|
+
import { Component as Component77, Input as Input73, Output as Output36, EventEmitter as EventEmitter36, HostBinding as HostBinding111, booleanAttribute as booleanAttribute23 } from "@angular/core";
|
|
13103
13039
|
import * as i0162 from "@angular/core";
|
|
13104
13040
|
import * as i55 from "@angular/common";
|
|
13105
13041
|
import * as i6 from "@ngx-translate/core";
|
|
@@ -13145,7 +13081,7 @@ var EclNotificationComponent = class _EclNotificationComponent extends ECLBaseDi
|
|
|
13145
13081
|
this.ɵfac = i0162.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0162, type: _EclNotificationComponent, deps: [{ token: EclThemeService }], target: i0162.ɵɵFactoryTarget.Component });
|
|
13146
13082
|
}
|
|
13147
13083
|
static {
|
|
13148
|
-
this.ɵcmp = i0162.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.3", type: _EclNotificationComponent, selector: "ecl-notification", inputs: { notificationTitle: "notificationTitle", variant: "variant", isVisible: ["isVisible", "isVisible",
|
|
13084
|
+
this.ɵcmp = i0162.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.3", type: _EclNotificationComponent, selector: "ecl-notification", inputs: { notificationTitle: "notificationTitle", variant: "variant", isVisible: ["isVisible", "isVisible", booleanAttribute23], isCloseable: ["isCloseable", "isCloseable", booleanAttribute23] }, outputs: { close: "close" }, host: { properties: { "attr.role": "this.role", "class.ecl-u-d-none": "this.isHidden", "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0162, template: `@if( eclThemeService.isEC$ | async ){
|
|
13149
13085
|
<ecl-icon size="l" class="ecl-notification__icon" [icon]="icon" [ariaHidden]="false" role="img">
|
|
13150
13086
|
<title>{{ icon | titlecase }}</title>
|
|
13151
13087
|
</ecl-icon>
|
|
@@ -13221,10 +13157,10 @@ i0162.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
13221
13157
|
type: Input73
|
|
13222
13158
|
}], isVisible: [{
|
|
13223
13159
|
type: Input73,
|
|
13224
|
-
args: [{ transform:
|
|
13160
|
+
args: [{ transform: booleanAttribute23 }]
|
|
13225
13161
|
}], isCloseable: [{
|
|
13226
13162
|
type: Input73,
|
|
13227
|
-
args: [{ transform:
|
|
13163
|
+
args: [{ transform: booleanAttribute23 }]
|
|
13228
13164
|
}], close: [{
|
|
13229
13165
|
type: Output36
|
|
13230
13166
|
}], role: [{
|
|
@@ -13263,9 +13199,9 @@ i0163.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
13263
13199
|
}] } });
|
|
13264
13200
|
|
|
13265
13201
|
// lib/components/ecl-site-footer/ecl-footer-elements/ecl-site-footer-section.directive.mjs
|
|
13266
|
-
import { __decorate as
|
|
13202
|
+
import { __decorate as __decorate18 } from "tslib";
|
|
13267
13203
|
import { Directive as Directive42, HostBinding as HostBinding113, Input as Input74 } from "@angular/core";
|
|
13268
|
-
import { coerceBoolean as
|
|
13204
|
+
import { coerceBoolean as coerceBoolean14 } from "@eui/base";
|
|
13269
13205
|
import * as i0164 from "@angular/core";
|
|
13270
13206
|
var EclSiteFooterSectionDirective = class _EclSiteFooterSectionDirective extends ECLBaseDirective {
|
|
13271
13207
|
constructor() {
|
|
@@ -13283,17 +13219,17 @@ var EclSiteFooterSectionDirective = class _EclSiteFooterSectionDirective extends
|
|
|
13283
13219
|
this.ɵdir = i0164.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclSiteFooterSectionDirective, selector: "[eclSiteFooterSection]", inputs: { isCondensed: "isCondensed", isSiteInfo: "isSiteInfo", isSplitList: "isSplitList", hasSeparator: "hasSeparator" }, host: { properties: { "class.ecl-site-footer__section": "this.cmpClass", "class.ecl-site-footer__section--condensed": "this.isCondensed", "class.ecl-site-footer__section--site-info": "this.isSiteInfo", "class.ecl-site-footer__section--split-list": "this.isSplitList", "class.ecl-site-footer__section--separator": "this.hasSeparator" } }, usesInheritance: true, ngImport: i0164 });
|
|
13284
13220
|
}
|
|
13285
13221
|
};
|
|
13286
|
-
|
|
13287
|
-
|
|
13222
|
+
__decorate18([
|
|
13223
|
+
coerceBoolean14
|
|
13288
13224
|
], EclSiteFooterSectionDirective.prototype, "isCondensed", void 0);
|
|
13289
|
-
|
|
13290
|
-
|
|
13225
|
+
__decorate18([
|
|
13226
|
+
coerceBoolean14
|
|
13291
13227
|
], EclSiteFooterSectionDirective.prototype, "isSiteInfo", void 0);
|
|
13292
|
-
|
|
13293
|
-
|
|
13228
|
+
__decorate18([
|
|
13229
|
+
coerceBoolean14
|
|
13294
13230
|
], EclSiteFooterSectionDirective.prototype, "isSplitList", void 0);
|
|
13295
|
-
|
|
13296
|
-
|
|
13231
|
+
__decorate18([
|
|
13232
|
+
coerceBoolean14
|
|
13297
13233
|
], EclSiteFooterSectionDirective.prototype, "hasSeparator", void 0);
|
|
13298
13234
|
i0164.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0164, type: EclSiteFooterSectionDirective, decorators: [{
|
|
13299
13235
|
type: Directive42,
|
|
@@ -13326,9 +13262,9 @@ i0164.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
13326
13262
|
}] } });
|
|
13327
13263
|
|
|
13328
13264
|
// lib/components/ecl-site-footer/ecl-footer-elements/ecl-site-footer-title.directive.mjs
|
|
13329
|
-
import { __decorate as
|
|
13265
|
+
import { __decorate as __decorate19 } from "tslib";
|
|
13330
13266
|
import { Directive as Directive43, HostBinding as HostBinding114, Input as Input75 } from "@angular/core";
|
|
13331
|
-
import { coerceBoolean as
|
|
13267
|
+
import { coerceBoolean as coerceBoolean15 } from "@eui/base";
|
|
13332
13268
|
import * as i0165 from "@angular/core";
|
|
13333
13269
|
var EclSiteFooterTitleDirective = class _EclSiteFooterTitleDirective extends ECLBaseDirective {
|
|
13334
13270
|
constructor() {
|
|
@@ -13343,8 +13279,8 @@ var EclSiteFooterTitleDirective = class _EclSiteFooterTitleDirective extends ECL
|
|
|
13343
13279
|
this.ɵdir = i0165.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclSiteFooterTitleDirective, selector: "[eclSiteFooterTitle]", inputs: { isSeparator: "isSeparator" }, host: { properties: { "class.ecl-site-footer__title": "this.cmpClass", "class.ecl-site-footer__title--separator": "this.isSeparator" } }, usesInheritance: true, ngImport: i0165 });
|
|
13344
13280
|
}
|
|
13345
13281
|
};
|
|
13346
|
-
|
|
13347
|
-
|
|
13282
|
+
__decorate19([
|
|
13283
|
+
coerceBoolean15
|
|
13348
13284
|
], EclSiteFooterTitleDirective.prototype, "isSeparator", void 0);
|
|
13349
13285
|
i0165.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0165, type: EclSiteFooterTitleDirective, decorators: [{
|
|
13350
13286
|
type: Directive43,
|
|
@@ -13408,9 +13344,9 @@ i0166.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
13408
13344
|
}] } });
|
|
13409
13345
|
|
|
13410
13346
|
// lib/components/ecl-site-footer/ecl-footer-elements/ecl-site-footer-list.directive.mjs
|
|
13411
|
-
import { __decorate as
|
|
13347
|
+
import { __decorate as __decorate20 } from "tslib";
|
|
13412
13348
|
import { Directive as Directive45, HostBinding as HostBinding116, Input as Input76 } from "@angular/core";
|
|
13413
|
-
import { coerceBoolean as
|
|
13349
|
+
import { coerceBoolean as coerceBoolean16 } from "@eui/base";
|
|
13414
13350
|
import * as i0167 from "@angular/core";
|
|
13415
13351
|
var EclSiteFooterListDirective = class _EclSiteFooterListDirective extends ECLBaseDirective {
|
|
13416
13352
|
constructor() {
|
|
@@ -13424,11 +13360,11 @@ var EclSiteFooterListDirective = class _EclSiteFooterListDirective extends ECLBa
|
|
|
13424
13360
|
this.ɵdir = i0167.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclSiteFooterListDirective, selector: "[eclSiteFooterList]", inputs: { isInline: "isInline", isColumns: "isColumns" }, host: { properties: { "class.ecl-site-footer__list": "this.cmpClass", "class.ecl-site-footer__list--inline": "this.isInline", "class.ecl-site-footer__list--columns": "this.isColumns" } }, usesInheritance: true, ngImport: i0167 });
|
|
13425
13361
|
}
|
|
13426
13362
|
};
|
|
13427
|
-
|
|
13428
|
-
|
|
13363
|
+
__decorate20([
|
|
13364
|
+
coerceBoolean16
|
|
13429
13365
|
], EclSiteFooterListDirective.prototype, "isInline", void 0);
|
|
13430
|
-
|
|
13431
|
-
|
|
13366
|
+
__decorate20([
|
|
13367
|
+
coerceBoolean16
|
|
13432
13368
|
], EclSiteFooterListDirective.prototype, "isColumns", void 0);
|
|
13433
13369
|
i0167.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0167, type: EclSiteFooterListDirective, decorators: [{
|
|
13434
13370
|
type: Directive45,
|
|
@@ -13711,12 +13647,12 @@ i0169.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
13711
13647
|
}] } });
|
|
13712
13648
|
|
|
13713
13649
|
// lib/components/ecl-site-footer/ecl-footer-elements/ec/ecl-site-footer-fixed-content.mjs
|
|
13714
|
-
import { __decorate as
|
|
13650
|
+
import { __decorate as __decorate21 } from "tslib";
|
|
13715
13651
|
import { Component as Component78, Input as Input77 } from "@angular/core";
|
|
13716
|
-
import { coerceBoolean as
|
|
13652
|
+
import { coerceBoolean as coerceBoolean17 } from "@eui/base";
|
|
13717
13653
|
import * as i0170 from "@angular/core";
|
|
13718
|
-
import * as
|
|
13719
|
-
import * as
|
|
13654
|
+
import * as i128 from "@ngx-translate/core";
|
|
13655
|
+
import * as i32 from "@angular/common";
|
|
13720
13656
|
var EclSiteFooterFixedContentECComponent = class _EclSiteFooterFixedContentECComponent extends ECLBaseDirective {
|
|
13721
13657
|
constructor(translateService, eclLanguageService) {
|
|
13722
13658
|
super();
|
|
@@ -13725,7 +13661,7 @@ var EclSiteFooterFixedContentECComponent = class _EclSiteFooterFixedContentECCom
|
|
|
13725
13661
|
this.isCore = false;
|
|
13726
13662
|
}
|
|
13727
13663
|
static {
|
|
13728
|
-
this.ɵfac = i0170.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0170, type: _EclSiteFooterFixedContentECComponent, deps: [{ token:
|
|
13664
|
+
this.ɵfac = i0170.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0170, type: _EclSiteFooterFixedContentECComponent, deps: [{ token: i128.TranslateService }, { token: EclLanguageService }], target: i0170.ɵɵFactoryTarget.Component });
|
|
13729
13665
|
}
|
|
13730
13666
|
static {
|
|
13731
13667
|
this.ɵcmp = i0170.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclSiteFooterFixedContentECComponent, selector: "ecl-site-footer-fixed-content-ec", inputs: { isCore: "isCore", languageCode: "languageCode", ecLogoLanguageCode: "ecLogoLanguageCode", content: "content" }, usesInheritance: true, ngImport: i0170, template: `<ng-container *ngIf="isCore">
|
|
@@ -14146,11 +14082,11 @@ var EclSiteFooterFixedContentECComponent = class _EclSiteFooterFixedContentECCom
|
|
|
14146
14082
|
</div>
|
|
14147
14083
|
</div>
|
|
14148
14084
|
</ng-container>
|
|
14149
|
-
`, dependencies: [{ kind: "directive", type:
|
|
14085
|
+
`, dependencies: [{ kind: "directive", type: i32.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i32.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: EclLinkDirective, selector: "[eclLink]", inputs: ["isInverted", "isHiddenLabel", "isNoVisited", "variant"] }, { kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "directive", type: EclSiteFooterSectionDirective, selector: "[eclSiteFooterSection]", inputs: ["isCondensed", "isSiteInfo", "isSplitList", "hasSeparator"] }, { kind: "directive", type: EclSiteFooterTitleDirective, selector: "[eclSiteFooterTitle]", inputs: ["isSeparator"] }, { kind: "directive", type: EclSiteFooterListDirective, selector: "[eclSiteFooterList]", inputs: ["isInline", "isColumns"] }, { kind: "directive", type: EclSiteFooterLinkDirective, selector: "[eclSiteFooterLink]" }, { kind: "directive", type: EclSiteFooterColumnDirective, selector: "[eclSiteFooterColumn]" }, { kind: "directive", type: EclSiteFooterListItemDirective, selector: "[eclSiteFooterListItem]" }, { kind: "directive", type: EclSiteFooterRowDirective, selector: "[eclSiteFooterRow]" }, { kind: "directive", type: EclSiteFooterTitleLinkDirective, selector: "[eclSiteFooterTitleLink]" }, { kind: "directive", type: EclSiteFooterLogoLinkDirective, selector: "[eclSiteFooterLogoLink]" }, { kind: "directive", type: EclSiteFooterPictureDirective, selector: "picture[eclSiteFooterPicture]" }, { kind: "directive", type: EclSiteFooterLogoImageDirective, selector: "img[eclSiteFooterLogoImage]" }, { kind: "pipe", type: i128.TranslatePipe, name: "translate" }] });
|
|
14150
14086
|
}
|
|
14151
14087
|
};
|
|
14152
|
-
|
|
14153
|
-
|
|
14088
|
+
__decorate21([
|
|
14089
|
+
coerceBoolean17
|
|
14154
14090
|
], EclSiteFooterFixedContentECComponent.prototype, "isCore", void 0);
|
|
14155
14091
|
i0170.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0170, type: EclSiteFooterFixedContentECComponent, decorators: [{
|
|
14156
14092
|
type: Component78,
|
|
@@ -14573,7 +14509,7 @@ i0170.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
14573
14509
|
</div>
|
|
14574
14510
|
</ng-container>
|
|
14575
14511
|
` }]
|
|
14576
|
-
}], ctorParameters: () => [{ type:
|
|
14512
|
+
}], ctorParameters: () => [{ type: i128.TranslateService }, { type: EclLanguageService }], propDecorators: { isCore: [{
|
|
14577
14513
|
type: Input77
|
|
14578
14514
|
}], languageCode: [{
|
|
14579
14515
|
type: Input77
|
|
@@ -14584,12 +14520,12 @@ i0170.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
14584
14520
|
}] } });
|
|
14585
14521
|
|
|
14586
14522
|
// lib/components/ecl-site-footer/ecl-footer-elements/eu/ecl-site-footer-fixed-content.mjs
|
|
14587
|
-
import { __decorate as
|
|
14523
|
+
import { __decorate as __decorate22 } from "tslib";
|
|
14588
14524
|
import { Component as Component79, Input as Input78 } from "@angular/core";
|
|
14589
|
-
import { coerceBoolean as
|
|
14525
|
+
import { coerceBoolean as coerceBoolean18 } from "@eui/base";
|
|
14590
14526
|
import * as i0171 from "@angular/core";
|
|
14591
|
-
import * as
|
|
14592
|
-
import * as
|
|
14527
|
+
import * as i129 from "@ngx-translate/core";
|
|
14528
|
+
import * as i33 from "@angular/common";
|
|
14593
14529
|
var EclSiteFooterFixedContentEUComponent = class _EclSiteFooterFixedContentEUComponent extends ECLBaseDirective {
|
|
14594
14530
|
constructor(translateService, eclLanguageService) {
|
|
14595
14531
|
super();
|
|
@@ -14607,7 +14543,7 @@ var EclSiteFooterFixedContentEUComponent = class _EclSiteFooterFixedContentEUCom
|
|
|
14607
14543
|
}
|
|
14608
14544
|
}
|
|
14609
14545
|
static {
|
|
14610
|
-
this.ɵfac = i0171.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0171, type: _EclSiteFooterFixedContentEUComponent, deps: [{ token:
|
|
14546
|
+
this.ɵfac = i0171.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0171, type: _EclSiteFooterFixedContentEUComponent, deps: [{ token: i129.TranslateService }, { token: EclLanguageService }], target: i0171.ɵɵFactoryTarget.Component });
|
|
14611
14547
|
}
|
|
14612
14548
|
static {
|
|
14613
14549
|
this.ɵcmp = i0171.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclSiteFooterFixedContentEUComponent, selector: "ecl-site-footer-fixed-content-eu", inputs: { isCore: "isCore", languageCode: "languageCode", ecLogoLanguageCode: "ecLogoLanguageCode", content: "content" }, usesInheritance: true, ngImport: i0171, template: `<ng-container *ngIf="isCore">
|
|
@@ -15264,11 +15200,11 @@ var EclSiteFooterFixedContentEUComponent = class _EclSiteFooterFixedContentEUCom
|
|
|
15264
15200
|
</div>
|
|
15265
15201
|
</div>
|
|
15266
15202
|
</ng-container>
|
|
15267
|
-
`, dependencies: [{ kind: "directive", type:
|
|
15203
|
+
`, dependencies: [{ kind: "directive", type: i33.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i33.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: EclLinkDirective, selector: "[eclLink]", inputs: ["isInverted", "isHiddenLabel", "isNoVisited", "variant"] }, { kind: "directive", type: EclSiteFooterSectionDirective, selector: "[eclSiteFooterSection]", inputs: ["isCondensed", "isSiteInfo", "isSplitList", "hasSeparator"] }, { kind: "directive", type: EclSiteFooterTitleDirective, selector: "[eclSiteFooterTitle]", inputs: ["isSeparator"] }, { kind: "directive", type: EclSiteFooterListDirective, selector: "[eclSiteFooterList]", inputs: ["isInline", "isColumns"] }, { kind: "directive", type: EclSiteFooterLinkDirective, selector: "[eclSiteFooterLink]" }, { kind: "directive", type: EclSiteFooterColumnDirective, selector: "[eclSiteFooterColumn]" }, { kind: "directive", type: EclSiteFooterListItemDirective, selector: "[eclSiteFooterListItem]" }, { kind: "directive", type: EclSiteFooterRowDirective, selector: "[eclSiteFooterRow]" }, { kind: "directive", type: EclSiteFooterLogoLinkDirective, selector: "[eclSiteFooterLogoLink]" }, { kind: "directive", type: EclSiteFooterPictureDirective, selector: "picture[eclSiteFooterPicture]" }, { kind: "directive", type: EclSiteFooterLogoImageDirective, selector: "img[eclSiteFooterLogoImage]" }, { kind: "pipe", type: i129.TranslatePipe, name: "translate" }] });
|
|
15268
15204
|
}
|
|
15269
15205
|
};
|
|
15270
|
-
|
|
15271
|
-
|
|
15206
|
+
__decorate22([
|
|
15207
|
+
coerceBoolean18
|
|
15272
15208
|
], EclSiteFooterFixedContentEUComponent.prototype, "isCore", void 0);
|
|
15273
15209
|
i0171.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0171, type: EclSiteFooterFixedContentEUComponent, decorators: [{
|
|
15274
15210
|
type: Component79,
|
|
@@ -15927,7 +15863,7 @@ i0171.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
15927
15863
|
</div>
|
|
15928
15864
|
</ng-container>
|
|
15929
15865
|
` }]
|
|
15930
|
-
}], ctorParameters: () => [{ type:
|
|
15866
|
+
}], ctorParameters: () => [{ type: i129.TranslateService }, { type: EclLanguageService }], propDecorators: { isCore: [{
|
|
15931
15867
|
type: Input78
|
|
15932
15868
|
}], languageCode: [{
|
|
15933
15869
|
type: Input78
|
|
@@ -15938,12 +15874,12 @@ i0171.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
15938
15874
|
}] } });
|
|
15939
15875
|
|
|
15940
15876
|
// lib/components/ecl-site-footer/ecl-site-footer.component.mjs
|
|
15941
|
-
import { __decorate as
|
|
15877
|
+
import { __decorate as __decorate23 } from "tslib";
|
|
15942
15878
|
import { Component as Component80, HostBinding as HostBinding119, Input as Input79 } from "@angular/core";
|
|
15943
|
-
import { coerceBoolean as
|
|
15879
|
+
import { coerceBoolean as coerceBoolean19 } from "@eui/base";
|
|
15944
15880
|
import * as i0172 from "@angular/core";
|
|
15945
|
-
import * as
|
|
15946
|
-
import * as
|
|
15881
|
+
import * as i130 from "@ngx-translate/core";
|
|
15882
|
+
import * as i34 from "@angular/common";
|
|
15947
15883
|
var EclSiteFooterComponent = class _EclSiteFooterComponent extends ECLBaseDirective {
|
|
15948
15884
|
get cssClasses() {
|
|
15949
15885
|
return [super.getCssClasses("ecl-site-footer"), this.isCore ? "ecl-site-footer--split-columns" : ""].join(" ").trim();
|
|
@@ -15969,19 +15905,19 @@ var EclSiteFooterComponent = class _EclSiteFooterComponent extends ECLBaseDirect
|
|
|
15969
15905
|
});
|
|
15970
15906
|
}
|
|
15971
15907
|
static {
|
|
15972
|
-
this.ɵfac = i0172.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0172, type: _EclSiteFooterComponent, deps: [{ token:
|
|
15908
|
+
this.ɵfac = i0172.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0172, type: _EclSiteFooterComponent, deps: [{ token: i130.TranslateService }, { token: EclLanguageService }, { token: EclThemeService }], target: i0172.ɵɵFactoryTarget.Component });
|
|
15973
15909
|
}
|
|
15974
15910
|
static {
|
|
15975
|
-
this.ɵcmp = i0172.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclSiteFooterComponent, selector: "ecl-site-footer", inputs: { isCore: "isCore" }, host: { properties: { "class": "this.cssClasses", "attr.role": "this.role" } }, usesInheritance: true, ngImport: i0172, template: '<div class="ecl-container ecl-site-footer__container">\n <ecl-site-footer-fixed-content-ec\n *ngIf="eclThemeService.isEC$ | async"\n [isCore]="isCore"\n [languageCode]="languageCode"\n [ecLogoLanguageCode]="getLanguageCode()"\n [content]="content">\n </ecl-site-footer-fixed-content-ec>\n\n <ecl-site-footer-fixed-content-eu\n *ngIf="eclThemeService.isEU$ | async"\n [isCore]="isCore"\n [languageCode]="languageCode"\n [ecLogoLanguageCode]="getLanguageCode()"\n [content]="content">\n </ecl-site-footer-fixed-content-eu>\n\n <ng-template #content>\n <ng-content></ng-content>\n </ng-template>\n</div>\n', dependencies: [{ kind: "directive", type:
|
|
15911
|
+
this.ɵcmp = i0172.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclSiteFooterComponent, selector: "ecl-site-footer", inputs: { isCore: "isCore" }, host: { properties: { "class": "this.cssClasses", "attr.role": "this.role" } }, usesInheritance: true, ngImport: i0172, template: '<div class="ecl-container ecl-site-footer__container">\n <ecl-site-footer-fixed-content-ec\n *ngIf="eclThemeService.isEC$ | async"\n [isCore]="isCore"\n [languageCode]="languageCode"\n [ecLogoLanguageCode]="getLanguageCode()"\n [content]="content">\n </ecl-site-footer-fixed-content-ec>\n\n <ecl-site-footer-fixed-content-eu\n *ngIf="eclThemeService.isEU$ | async"\n [isCore]="isCore"\n [languageCode]="languageCode"\n [ecLogoLanguageCode]="getLanguageCode()"\n [content]="content">\n </ecl-site-footer-fixed-content-eu>\n\n <ng-template #content>\n <ng-content></ng-content>\n </ng-template>\n</div>\n', dependencies: [{ kind: "directive", type: i34.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: EclSiteFooterFixedContentECComponent, selector: "ecl-site-footer-fixed-content-ec", inputs: ["isCore", "languageCode", "ecLogoLanguageCode", "content"] }, { kind: "component", type: EclSiteFooterFixedContentEUComponent, selector: "ecl-site-footer-fixed-content-eu", inputs: ["isCore", "languageCode", "ecLogoLanguageCode", "content"] }, { kind: "pipe", type: i34.AsyncPipe, name: "async" }] });
|
|
15976
15912
|
}
|
|
15977
15913
|
};
|
|
15978
|
-
|
|
15979
|
-
|
|
15914
|
+
__decorate23([
|
|
15915
|
+
coerceBoolean19
|
|
15980
15916
|
], EclSiteFooterComponent.prototype, "isCore", void 0);
|
|
15981
15917
|
i0172.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0172, type: EclSiteFooterComponent, decorators: [{
|
|
15982
15918
|
type: Component80,
|
|
15983
15919
|
args: [{ selector: "ecl-site-footer", template: '<div class="ecl-container ecl-site-footer__container">\n <ecl-site-footer-fixed-content-ec\n *ngIf="eclThemeService.isEC$ | async"\n [isCore]="isCore"\n [languageCode]="languageCode"\n [ecLogoLanguageCode]="getLanguageCode()"\n [content]="content">\n </ecl-site-footer-fixed-content-ec>\n\n <ecl-site-footer-fixed-content-eu\n *ngIf="eclThemeService.isEU$ | async"\n [isCore]="isCore"\n [languageCode]="languageCode"\n [ecLogoLanguageCode]="getLanguageCode()"\n [content]="content">\n </ecl-site-footer-fixed-content-eu>\n\n <ng-template #content>\n <ng-content></ng-content>\n </ng-template>\n</div>\n' }]
|
|
15984
|
-
}], ctorParameters: () => [{ type:
|
|
15920
|
+
}], ctorParameters: () => [{ type: i130.TranslateService }, { type: EclLanguageService }, { type: EclThemeService }], propDecorators: { isCore: [{
|
|
15985
15921
|
type: Input79
|
|
15986
15922
|
}], cssClasses: [{
|
|
15987
15923
|
type: HostBinding119,
|
|
@@ -16293,11 +16229,11 @@ i0178.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
16293
16229
|
}] } });
|
|
16294
16230
|
|
|
16295
16231
|
// lib/components/ecl-page-header/ecl-page-header.component.mjs
|
|
16296
|
-
import { __decorate as
|
|
16232
|
+
import { __decorate as __decorate24 } from "tslib";
|
|
16297
16233
|
import { Component as Component81, ContentChild as ContentChild22, HostBinding as HostBinding124, Input as Input80 } from "@angular/core";
|
|
16298
|
-
import { coerceBoolean as
|
|
16234
|
+
import { coerceBoolean as coerceBoolean20 } from "@eui/base";
|
|
16299
16235
|
import * as i0179 from "@angular/core";
|
|
16300
|
-
import * as
|
|
16236
|
+
import * as i131 from "@angular/common";
|
|
16301
16237
|
var EclPageHeaderComponent = class _EclPageHeaderComponent extends ECLBaseDirective {
|
|
16302
16238
|
constructor() {
|
|
16303
16239
|
super(...arguments);
|
|
@@ -16322,11 +16258,11 @@ var EclPageHeaderComponent = class _EclPageHeaderComponent extends ECLBaseDirect
|
|
|
16322
16258
|
this.ɵfac = i0179.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0179, type: _EclPageHeaderComponent, deps: null, target: i0179.ɵɵFactoryTarget.Component });
|
|
16323
16259
|
}
|
|
16324
16260
|
static {
|
|
16325
|
-
this.ɵcmp = i0179.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclPageHeaderComponent, selector: "ecl-page-header", inputs: { backgroundImage: "backgroundImage", isNegative: "isNegative" }, host: { properties: { "class.ecl-page-header--negative": "this.isNegative", "class": "this.cssClasses" } }, queries: [{ propertyName: "eclBreadcrumbComponent", first: true, predicate: EclBreadcrumbComponent, descendants: true }, { propertyName: "eclBackgroundPicture", first: true, predicate: EclPageHeaderBackgroundPictureDirective, descendants: true }], usesInheritance: true, ngImport: i0179, template: '<div *ngIf="hasBackgroundImage" class="ecl-page-header__background-container" aria-hidden="true">\n <picture eclPageHeaderBackgroundPicture>\n <img eclPageHeaderBackgroundImage [src]="backgroundImage" />\n </picture>\n</div>\n\n<div *ngIf="hasPicture" class="ecl-page-header__background-container" aria-hidden="true">\n <ng-content select="[eclPageHeaderBackgroundPicture]"></ng-content>\n</div>\n\n<div class="ecl-container">\n <ng-container *ngTemplateOutlet="content"> </ng-container>\n</div>\n\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>\n', styles: [":host{display:block}\n"], dependencies: [{ kind: "directive", type:
|
|
16261
|
+
this.ɵcmp = i0179.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclPageHeaderComponent, selector: "ecl-page-header", inputs: { backgroundImage: "backgroundImage", isNegative: "isNegative" }, host: { properties: { "class.ecl-page-header--negative": "this.isNegative", "class": "this.cssClasses" } }, queries: [{ propertyName: "eclBreadcrumbComponent", first: true, predicate: EclBreadcrumbComponent, descendants: true }, { propertyName: "eclBackgroundPicture", first: true, predicate: EclPageHeaderBackgroundPictureDirective, descendants: true }], usesInheritance: true, ngImport: i0179, template: '<div *ngIf="hasBackgroundImage" class="ecl-page-header__background-container" aria-hidden="true">\n <picture eclPageHeaderBackgroundPicture>\n <img eclPageHeaderBackgroundImage [src]="backgroundImage" />\n </picture>\n</div>\n\n<div *ngIf="hasPicture" class="ecl-page-header__background-container" aria-hidden="true">\n <ng-content select="[eclPageHeaderBackgroundPicture]"></ng-content>\n</div>\n\n<div class="ecl-container">\n <ng-container *ngTemplateOutlet="content"> </ng-container>\n</div>\n\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>\n', styles: [":host{display:block}\n"], dependencies: [{ kind: "directive", type: i131.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i131.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: EclPageHeaderBackgroundPictureDirective, selector: "[eclPageHeaderBackgroundPicture]" }, { kind: "directive", type: EclPageHeaderBackgroundImageDirective, selector: "[eclPageHeaderBackgroundImage]" }] });
|
|
16326
16262
|
}
|
|
16327
16263
|
};
|
|
16328
|
-
|
|
16329
|
-
|
|
16264
|
+
__decorate24([
|
|
16265
|
+
coerceBoolean20
|
|
16330
16266
|
], EclPageHeaderComponent.prototype, "isNegative", void 0);
|
|
16331
16267
|
i0179.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0179, type: EclPageHeaderComponent, decorators: [{
|
|
16332
16268
|
type: Component81,
|
|
@@ -16352,7 +16288,7 @@ i0179.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
16352
16288
|
// lib/components/ecl-page-header/ecl-page-header-description/ecl-page-header-description.component.mjs
|
|
16353
16289
|
import { Component as Component82, ContentChild as ContentChild23, HostBinding as HostBinding125 } from "@angular/core";
|
|
16354
16290
|
import * as i0180 from "@angular/core";
|
|
16355
|
-
import * as
|
|
16291
|
+
import * as i132 from "@angular/common";
|
|
16356
16292
|
var EclPageHeaderDescriptionContainerComponent = class _EclPageHeaderDescriptionContainerComponent extends ECLBaseDirective {
|
|
16357
16293
|
constructor() {
|
|
16358
16294
|
super(...arguments);
|
|
@@ -16374,7 +16310,7 @@ var EclPageHeaderDescriptionContainerComponent = class _EclPageHeaderDescription
|
|
|
16374
16310
|
this.ɵfac = i0180.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0180, type: _EclPageHeaderDescriptionContainerComponent, deps: null, target: i0180.ɵɵFactoryTarget.Component });
|
|
16375
16311
|
}
|
|
16376
16312
|
static {
|
|
16377
|
-
this.ɵcmp = i0180.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclPageHeaderDescriptionContainerComponent, selector: "[eclPageHeaderDescriptionContainer]", host: { properties: { "class.ecl-page-header__description-container": "this.className" } }, queries: [{ propertyName: "thumbnail", first: true, predicate: EclPageHeaderDescriptionThumbnailDirective, descendants: true }, { propertyName: "eclDescriptionPicture", first: true, predicate: EclPageHeaderDescriptionPictureDirective, descendants: true }, { propertyName: "eclImage", first: true, predicate: EclPageHeaderDescriptionThumbnailDirective, descendants: true }], usesInheritance: true, ngImport: i0180, template: '<ng-container *ngIf="isAddingPictureTagRequired">\n <picture eclPageHeaderDescriptionPicture>\n <ng-content select="[eclPageHeaderDescriptionThumbnail]"></ng-content>\n </picture>\n</ng-container>\n<ng-container *ngTemplateOutlet="content"> </ng-container>\n\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>\n', dependencies: [{ kind: "directive", type:
|
|
16313
|
+
this.ɵcmp = i0180.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclPageHeaderDescriptionContainerComponent, selector: "[eclPageHeaderDescriptionContainer]", host: { properties: { "class.ecl-page-header__description-container": "this.className" } }, queries: [{ propertyName: "thumbnail", first: true, predicate: EclPageHeaderDescriptionThumbnailDirective, descendants: true }, { propertyName: "eclDescriptionPicture", first: true, predicate: EclPageHeaderDescriptionPictureDirective, descendants: true }, { propertyName: "eclImage", first: true, predicate: EclPageHeaderDescriptionThumbnailDirective, descendants: true }], usesInheritance: true, ngImport: i0180, template: '<ng-container *ngIf="isAddingPictureTagRequired">\n <picture eclPageHeaderDescriptionPicture>\n <ng-content select="[eclPageHeaderDescriptionThumbnail]"></ng-content>\n </picture>\n</ng-container>\n<ng-container *ngTemplateOutlet="content"> </ng-container>\n\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>\n', dependencies: [{ kind: "directive", type: i132.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i132.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: EclPageHeaderDescriptionPictureDirective, selector: "[eclPageHeaderDescriptionPicture]" }] });
|
|
16378
16314
|
}
|
|
16379
16315
|
};
|
|
16380
16316
|
i0180.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0180, type: EclPageHeaderDescriptionContainerComponent, decorators: [{
|
|
@@ -16453,11 +16389,11 @@ i0181.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
16453
16389
|
}] });
|
|
16454
16390
|
|
|
16455
16391
|
// lib/components/ecl-pagination/ecl-pagination-item.component.mjs
|
|
16456
|
-
import { __decorate as
|
|
16392
|
+
import { __decorate as __decorate25 } from "tslib";
|
|
16457
16393
|
import { Component as Component83, EventEmitter as EventEmitter37, HostBinding as HostBinding126, Input as Input81, Output as Output37, ViewEncapsulation as ViewEncapsulation11 } from "@angular/core";
|
|
16458
|
-
import { coerceBoolean as
|
|
16394
|
+
import { coerceBoolean as coerceBoolean21 } from "@eui/base";
|
|
16459
16395
|
import * as i0182 from "@angular/core";
|
|
16460
|
-
import * as
|
|
16396
|
+
import * as i133 from "@angular/common";
|
|
16461
16397
|
import * as i215 from "@angular/router";
|
|
16462
16398
|
import * as i62 from "@ngx-translate/core";
|
|
16463
16399
|
var EclPaginationItemClickEvent = class extends EclBaseEvent {
|
|
@@ -16541,17 +16477,17 @@ var EclPaginationItemComponent = class _EclPaginationItemComponent extends ECLBa
|
|
|
16541
16477
|
<span class="ecl-pagination__text ecl-pagination__text--full" aria-current="true">
|
|
16542
16478
|
{{ 'ecl.pagination.PAGE' | translate: { pageNumber: label } }}
|
|
16543
16479
|
</span>
|
|
16544
|
-
}`, dependencies: [{ kind: "directive", type:
|
|
16480
|
+
}`, dependencies: [{ kind: "directive", type: i133.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i215.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "directive", type: EclLinkDirective, selector: "[eclLink]", inputs: ["isInverted", "isHiddenLabel", "isNoVisited", "variant"] }, { kind: "directive", type: EclLinkLabelDirective, selector: "[eclLinkLabel]" }, { kind: "pipe", type: i62.TranslatePipe, name: "translate" }], encapsulation: i0182.ViewEncapsulation.None });
|
|
16545
16481
|
}
|
|
16546
16482
|
};
|
|
16547
|
-
|
|
16548
|
-
|
|
16483
|
+
__decorate25([
|
|
16484
|
+
coerceBoolean21
|
|
16549
16485
|
], EclPaginationItemComponent.prototype, "isCurrent", void 0);
|
|
16550
|
-
|
|
16551
|
-
|
|
16486
|
+
__decorate25([
|
|
16487
|
+
coerceBoolean21
|
|
16552
16488
|
], EclPaginationItemComponent.prototype, "isNext", void 0);
|
|
16553
|
-
|
|
16554
|
-
|
|
16489
|
+
__decorate25([
|
|
16490
|
+
coerceBoolean21
|
|
16555
16491
|
], EclPaginationItemComponent.prototype, "isPrevious", void 0);
|
|
16556
16492
|
i0182.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0182, type: EclPaginationItemComponent, decorators: [{
|
|
16557
16493
|
type: Component83,
|
|
@@ -16617,12 +16553,12 @@ i0182.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
16617
16553
|
}] } });
|
|
16618
16554
|
|
|
16619
16555
|
// lib/components/ecl-pagination/ecl-pagination.component.mjs
|
|
16620
|
-
import { __decorate as
|
|
16556
|
+
import { __decorate as __decorate26 } from "tslib";
|
|
16621
16557
|
import { Component as Component84, EventEmitter as EventEmitter38, HostBinding as HostBinding127, Input as Input82, Output as Output38 } from "@angular/core";
|
|
16622
16558
|
import { DefaultConfig, EuiPagination } from "@eui/base";
|
|
16623
|
-
import { coerceNumber as
|
|
16559
|
+
import { coerceNumber as coerceNumber3 } from "@eui/base";
|
|
16624
16560
|
import * as i0183 from "@angular/core";
|
|
16625
|
-
import * as
|
|
16561
|
+
import * as i134 from "@angular/common";
|
|
16626
16562
|
var EclPaginationEvent = class extends EclBaseEvent {
|
|
16627
16563
|
constructor(page, showingFrom, showingTo) {
|
|
16628
16564
|
super();
|
|
@@ -16684,20 +16620,20 @@ var EclPaginationComponent = class _EclPaginationComponent extends ECLBaseDirect
|
|
|
16684
16620
|
this.ɵfac = i0183.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0183, type: _EclPaginationComponent, deps: null, target: i0183.ɵɵFactoryTarget.Component });
|
|
16685
16621
|
}
|
|
16686
16622
|
static {
|
|
16687
|
-
this.ɵcmp = i0183.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclPaginationComponent, selector: "ecl-pagination", inputs: { mode: "mode", totalItems: "totalItems", pageSize: "pageSize", currentPage: "currentPage", pageWindowSize: "pageWindowSize" }, outputs: { page: "page" }, host: { properties: { "class.ecl-pagination": "this.cmpClass", "attr.role": "this.role" } }, usesInheritance: true, usesOnChanges: true, ngImport: i0183, template: '<ul class="ecl-pagination__list">\n <ng-container *ngIf="isModeAuto()">\n <ecl-pagination-item *ngIf="model.hasPreviousPage()" [isPrevious]="true" (pageClick)="onPreviousPage()"> </ecl-pagination-item>\n\n <ecl-pagination-item\n *ngFor="let page of model.getPages()"\n [label]="page.toString()"\n [isCurrent]="model.getCurrentPage() === page"\n (pageClick)="onPage(page)">\n </ecl-pagination-item>\n\n <ecl-pagination-item *ngIf="model.hasNextPage()" [isNext]="true" (pageClick)="onNextPage()"> </ecl-pagination-item>\n </ng-container>\n\n <ng-container *ngIf="!isModeAuto()">\n <ng-content></ng-content>\n </ng-container>\n</ul>\n', styles: [":host{display:block}\n"], dependencies: [{ kind: "directive", type:
|
|
16623
|
+
this.ɵcmp = i0183.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclPaginationComponent, selector: "ecl-pagination", inputs: { mode: "mode", totalItems: "totalItems", pageSize: "pageSize", currentPage: "currentPage", pageWindowSize: "pageWindowSize" }, outputs: { page: "page" }, host: { properties: { "class.ecl-pagination": "this.cmpClass", "attr.role": "this.role" } }, usesInheritance: true, usesOnChanges: true, ngImport: i0183, template: '<ul class="ecl-pagination__list">\n <ng-container *ngIf="isModeAuto()">\n <ecl-pagination-item *ngIf="model.hasPreviousPage()" [isPrevious]="true" (pageClick)="onPreviousPage()"> </ecl-pagination-item>\n\n <ecl-pagination-item\n *ngFor="let page of model.getPages()"\n [label]="page.toString()"\n [isCurrent]="model.getCurrentPage() === page"\n (pageClick)="onPage(page)">\n </ecl-pagination-item>\n\n <ecl-pagination-item *ngIf="model.hasNextPage()" [isNext]="true" (pageClick)="onNextPage()"> </ecl-pagination-item>\n </ng-container>\n\n <ng-container *ngIf="!isModeAuto()">\n <ng-content></ng-content>\n </ng-container>\n</ul>\n', styles: [":host{display:block}\n"], dependencies: [{ kind: "directive", type: i134.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i134.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: EclPaginationItemComponent, selector: "ecl-pagination-item", inputs: ["label", "ariaLabel", "isCurrent", "isNext", "isPrevious", "routerLink", "queryParams", "queryParamsHandling", "href"], outputs: ["pageClick"] }] });
|
|
16688
16624
|
}
|
|
16689
16625
|
};
|
|
16690
|
-
|
|
16691
|
-
|
|
16626
|
+
__decorate26([
|
|
16627
|
+
coerceNumber3
|
|
16692
16628
|
], EclPaginationComponent.prototype, "totalItems", void 0);
|
|
16693
|
-
|
|
16694
|
-
|
|
16629
|
+
__decorate26([
|
|
16630
|
+
coerceNumber3
|
|
16695
16631
|
], EclPaginationComponent.prototype, "pageSize", void 0);
|
|
16696
|
-
|
|
16697
|
-
|
|
16632
|
+
__decorate26([
|
|
16633
|
+
coerceNumber3
|
|
16698
16634
|
], EclPaginationComponent.prototype, "currentPage", void 0);
|
|
16699
|
-
|
|
16700
|
-
|
|
16635
|
+
__decorate26([
|
|
16636
|
+
coerceNumber3
|
|
16701
16637
|
], EclPaginationComponent.prototype, "pageWindowSize", void 0);
|
|
16702
16638
|
i0183.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0183, type: EclPaginationComponent, decorators: [{
|
|
16703
16639
|
type: Component84,
|
|
@@ -17079,9 +17015,9 @@ i0188.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
17079
17015
|
}] });
|
|
17080
17016
|
|
|
17081
17017
|
// lib/components/ecl-radio/ecl-radio-help.component.mjs
|
|
17082
|
-
import { __decorate as
|
|
17018
|
+
import { __decorate as __decorate27 } from "tslib";
|
|
17083
17019
|
import { Component as Component86, HostBinding as HostBinding131, Input as Input83 } from "@angular/core";
|
|
17084
|
-
import { coerceBoolean as
|
|
17020
|
+
import { coerceBoolean as coerceBoolean22 } from "@eui/base";
|
|
17085
17021
|
import * as i0189 from "@angular/core";
|
|
17086
17022
|
var EclRadioHelpComponent = class _EclRadioHelpComponent extends ECLBaseDirective {
|
|
17087
17023
|
constructor() {
|
|
@@ -17098,8 +17034,8 @@ var EclRadioHelpComponent = class _EclRadioHelpComponent extends ECLBaseDirectiv
|
|
|
17098
17034
|
this.ɵcmp = i0189.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclRadioHelpComponent, selector: "[eclRadioHelp]", inputs: { isDisabled: "isDisabled" }, host: { properties: { "class.ecl-radio__help--disabled": "this.isDisabled", "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0189, template: "<ng-content></ng-content>\n" });
|
|
17099
17035
|
}
|
|
17100
17036
|
};
|
|
17101
|
-
|
|
17102
|
-
|
|
17037
|
+
__decorate27([
|
|
17038
|
+
coerceBoolean22
|
|
17103
17039
|
], EclRadioHelpComponent.prototype, "isDisabled", void 0);
|
|
17104
17040
|
i0189.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0189, type: EclRadioHelpComponent, decorators: [{
|
|
17105
17041
|
type: Component86,
|
|
@@ -17115,9 +17051,9 @@ i0189.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
17115
17051
|
}] } });
|
|
17116
17052
|
|
|
17117
17053
|
// lib/components/ecl-radio/ecl-radio-label.component.mjs
|
|
17118
|
-
import { __decorate as
|
|
17054
|
+
import { __decorate as __decorate28 } from "tslib";
|
|
17119
17055
|
import { Component as Component87, HostBinding as HostBinding132, Input as Input84, ViewEncapsulation as ViewEncapsulation13 } from "@angular/core";
|
|
17120
|
-
import { coerceBoolean as
|
|
17056
|
+
import { coerceBoolean as coerceBoolean23 } from "@eui/base";
|
|
17121
17057
|
import * as i0190 from "@angular/core";
|
|
17122
17058
|
var EclRadioLabelComponent = class _EclRadioLabelComponent extends ECLBaseDirective {
|
|
17123
17059
|
constructor() {
|
|
@@ -17135,11 +17071,11 @@ var EclRadioLabelComponent = class _EclRadioLabelComponent extends ECLBaseDirect
|
|
|
17135
17071
|
this.ɵcmp = i0190.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclRadioLabelComponent, selector: "[eclRadioLabel]", inputs: { isInvalid: "isInvalid", isDisabled: "isDisabled" }, host: { properties: { "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0190, template: '<span class="ecl-radio__box" [class.ecl-radio__box--disabled]="isDisabled" [class.ecl-radio__box--invalid]="isInvalid">\n <span class="ecl-radio__box-inner"></span>\n</span>\n\n<ng-content></ng-content>\n', encapsulation: i0190.ViewEncapsulation.None });
|
|
17136
17072
|
}
|
|
17137
17073
|
};
|
|
17138
|
-
|
|
17139
|
-
|
|
17074
|
+
__decorate28([
|
|
17075
|
+
coerceBoolean23
|
|
17140
17076
|
], EclRadioLabelComponent.prototype, "isInvalid", void 0);
|
|
17141
|
-
|
|
17142
|
-
|
|
17077
|
+
__decorate28([
|
|
17078
|
+
coerceBoolean23
|
|
17143
17079
|
], EclRadioLabelComponent.prototype, "isDisabled", void 0);
|
|
17144
17080
|
i0190.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0190, type: EclRadioLabelComponent, decorators: [{
|
|
17145
17081
|
type: Component87,
|
|
@@ -17154,9 +17090,9 @@ i0190.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
17154
17090
|
}] } });
|
|
17155
17091
|
|
|
17156
17092
|
// lib/components/ecl-radio/ecl-radio.directive.mjs
|
|
17157
|
-
import { __decorate as
|
|
17093
|
+
import { __decorate as __decorate29 } from "tslib";
|
|
17158
17094
|
import { ContentChild as ContentChild25, Directive as Directive54, forwardRef as forwardRef48, HostBinding as HostBinding133, Input as Input85 } from "@angular/core";
|
|
17159
|
-
import { coerceBoolean as
|
|
17095
|
+
import { coerceBoolean as coerceBoolean24 } from "@eui/base";
|
|
17160
17096
|
import * as i0191 from "@angular/core";
|
|
17161
17097
|
var EclRadioDirective = class _EclRadioDirective extends ECLBaseDirective {
|
|
17162
17098
|
constructor() {
|
|
@@ -17186,14 +17122,14 @@ var EclRadioDirective = class _EclRadioDirective extends ECLBaseDirective {
|
|
|
17186
17122
|
this.ɵdir = i0191.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclRadioDirective, selector: "[eclRadio]", inputs: { isBinary: "isBinary", isDisabled: "isDisabled", isInvalid: "isInvalid" }, host: { properties: { "class.ecl-radio--disabled": "this.isDisabled", "class.ecl-radio--invalid": "this.isInvalid", "class": "this.cssClasses" } }, queries: [{ propertyName: "eclRadioLabelComponent", first: true, predicate: i0191.forwardRef(() => EclRadioLabelComponent), descendants: true }, { propertyName: "eclRadioHelpComponent", first: true, predicate: i0191.forwardRef(() => EclRadioHelpComponent), descendants: true }], usesInheritance: true, ngImport: i0191 });
|
|
17187
17123
|
}
|
|
17188
17124
|
};
|
|
17189
|
-
|
|
17190
|
-
|
|
17125
|
+
__decorate29([
|
|
17126
|
+
coerceBoolean24
|
|
17191
17127
|
], EclRadioDirective.prototype, "isBinary", void 0);
|
|
17192
|
-
|
|
17193
|
-
|
|
17128
|
+
__decorate29([
|
|
17129
|
+
coerceBoolean24
|
|
17194
17130
|
], EclRadioDirective.prototype, "isDisabled", void 0);
|
|
17195
|
-
|
|
17196
|
-
|
|
17131
|
+
__decorate29([
|
|
17132
|
+
coerceBoolean24
|
|
17197
17133
|
], EclRadioDirective.prototype, "isInvalid", void 0);
|
|
17198
17134
|
i0191.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0191, type: EclRadioDirective, decorators: [{
|
|
17199
17135
|
type: Directive54,
|
|
@@ -17226,7 +17162,7 @@ i0191.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
17226
17162
|
// lib/components/ecl-radio/ecl-radio-input.directive.mjs
|
|
17227
17163
|
import { Directive as Directive55, HostBinding as HostBinding134, Optional as Optional6, Self as Self4, Inject as Inject5, forwardRef as forwardRef50 } from "@angular/core";
|
|
17228
17164
|
import * as i0192 from "@angular/core";
|
|
17229
|
-
import * as
|
|
17165
|
+
import * as i135 from "@angular/forms";
|
|
17230
17166
|
var EclRadioInputDirective = class _EclRadioInputDirective extends ECLBaseDirective {
|
|
17231
17167
|
get cssClasses() {
|
|
17232
17168
|
return [super.getCssClasses("ecl-radio__input")].join(" ").trim();
|
|
@@ -17246,7 +17182,7 @@ var EclRadioInputDirective = class _EclRadioInputDirective extends ECLBaseDirect
|
|
|
17246
17182
|
}
|
|
17247
17183
|
}
|
|
17248
17184
|
static {
|
|
17249
|
-
this.ɵfac = i0192.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0192, type: _EclRadioInputDirective, deps: [{ token: forwardRef50(() => EclRadioDirective) }, { token:
|
|
17185
|
+
this.ɵfac = i0192.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0192, type: _EclRadioInputDirective, deps: [{ token: forwardRef50(() => EclRadioDirective) }, { token: i135.NgControl, optional: true, self: true }, { token: i0192.ChangeDetectorRef }], target: i0192.ɵɵFactoryTarget.Directive });
|
|
17250
17186
|
}
|
|
17251
17187
|
static {
|
|
17252
17188
|
this.ɵdir = i0192.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclRadioInputDirective, selector: "input[eclRadioInput]", host: { properties: { "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0192 });
|
|
@@ -17260,7 +17196,7 @@ i0192.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
17260
17196
|
}], ctorParameters: () => [{ type: EclRadioDirective, decorators: [{
|
|
17261
17197
|
type: Inject5,
|
|
17262
17198
|
args: [forwardRef50(() => EclRadioDirective)]
|
|
17263
|
-
}] }, { type:
|
|
17199
|
+
}] }, { type: i135.NgControl, decorators: [{
|
|
17264
17200
|
type: Optional6
|
|
17265
17201
|
}, {
|
|
17266
17202
|
type: Self4
|
|
@@ -17294,12 +17230,12 @@ i0193.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
17294
17230
|
}] });
|
|
17295
17231
|
|
|
17296
17232
|
// lib/components/ecl-rating-field/ecl-rating-field.component.mjs
|
|
17297
|
-
import { __decorate as
|
|
17233
|
+
import { __decorate as __decorate30 } from "tslib";
|
|
17298
17234
|
import { Component as Component88, EventEmitter as EventEmitter40, forwardRef as forwardRef51, HostBinding as HostBinding135, Input as Input86, Output as Output40 } from "@angular/core";
|
|
17299
17235
|
import { NG_VALUE_ACCESSOR as NG_VALUE_ACCESSOR6 } from "@angular/forms";
|
|
17300
|
-
import { coerceBoolean as
|
|
17236
|
+
import { coerceBoolean as coerceBoolean25, coerceNumber as coerceNumber4 } from "@eui/base";
|
|
17301
17237
|
import * as i0194 from "@angular/core";
|
|
17302
|
-
import * as
|
|
17238
|
+
import * as i136 from "@angular/common";
|
|
17303
17239
|
var EclRatingChangeEvent = class extends EclBaseEvent {
|
|
17304
17240
|
constructor(value) {
|
|
17305
17241
|
super();
|
|
@@ -17353,17 +17289,17 @@ var EclRatingFieldComponent = class _EclRatingFieldComponent extends ECLBaseDire
|
|
|
17353
17289
|
this.ɵfac = i0194.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0194, type: _EclRatingFieldComponent, deps: [], target: i0194.ɵɵFactoryTarget.Component });
|
|
17354
17290
|
}
|
|
17355
17291
|
static {
|
|
17356
|
-
this.ɵcmp = i0194.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclRatingFieldComponent, selector: "ecl-rating-field", inputs: { name: "name", numberOfStars: "numberOfStars", rating: "rating", disabled: "disabled" }, outputs: { ratingChange: "ratingChange" }, host: { properties: { "attr.disabled": "this.disabled", "class": "this.cssClasses" } }, providers: [ECL_RATINGFIELD_VALUE_ACCESSOR], usesInheritance: true, ngImport: i0194, template: '<ng-container *ngFor="let n of numbers">\n <input\n type="radio"\n id="{{ name }}-{{ n }}"\n [name]="name"\n class="ecl-rating-field__input"\n [value]="n"\n required=""\n [attr.checked]="rating === n ? true : undefined"\n [attr.disabled]="disabled ? true : undefined"\n (click)="onRadioClick(n)" />\n <label class="ecl-rating-field__label" for="{{ name }}-{{ n }}">\n <span class="ecl-u-sr-only">{{ n }} stars</span>\n <ecl-icon icon="star-filled" class="ecl-rating-field__icon-filled" size="m"> </ecl-icon>\n <ecl-icon icon="star-outline" class="ecl-rating-field__icon-outline" size="m"> </ecl-icon>\n </label>\n</ng-container>\n', dependencies: [{ kind: "directive", type:
|
|
17292
|
+
this.ɵcmp = i0194.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclRatingFieldComponent, selector: "ecl-rating-field", inputs: { name: "name", numberOfStars: "numberOfStars", rating: "rating", disabled: "disabled" }, outputs: { ratingChange: "ratingChange" }, host: { properties: { "attr.disabled": "this.disabled", "class": "this.cssClasses" } }, providers: [ECL_RATINGFIELD_VALUE_ACCESSOR], usesInheritance: true, ngImport: i0194, template: '<ng-container *ngFor="let n of numbers">\n <input\n type="radio"\n id="{{ name }}-{{ n }}"\n [name]="name"\n class="ecl-rating-field__input"\n [value]="n"\n required=""\n [attr.checked]="rating === n ? true : undefined"\n [attr.disabled]="disabled ? true : undefined"\n (click)="onRadioClick(n)" />\n <label class="ecl-rating-field__label" for="{{ name }}-{{ n }}">\n <span class="ecl-u-sr-only">{{ n }} stars</span>\n <ecl-icon icon="star-filled" class="ecl-rating-field__icon-filled" size="m"> </ecl-icon>\n <ecl-icon icon="star-outline" class="ecl-rating-field__icon-outline" size="m"> </ecl-icon>\n </label>\n</ng-container>\n', dependencies: [{ kind: "directive", type: i136.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }] });
|
|
17357
17293
|
}
|
|
17358
17294
|
};
|
|
17359
|
-
|
|
17360
|
-
|
|
17295
|
+
__decorate30([
|
|
17296
|
+
coerceNumber4
|
|
17361
17297
|
], EclRatingFieldComponent.prototype, "numberOfStars", void 0);
|
|
17362
|
-
|
|
17363
|
-
|
|
17298
|
+
__decorate30([
|
|
17299
|
+
coerceNumber4
|
|
17364
17300
|
], EclRatingFieldComponent.prototype, "rating", void 0);
|
|
17365
|
-
|
|
17366
|
-
|
|
17301
|
+
__decorate30([
|
|
17302
|
+
coerceBoolean25
|
|
17367
17303
|
], EclRatingFieldComponent.prototype, "disabled", void 0);
|
|
17368
17304
|
i0194.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0194, type: EclRatingFieldComponent, decorators: [{
|
|
17369
17305
|
type: Component88,
|
|
@@ -17422,7 +17358,7 @@ i0195.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
17422
17358
|
// lib/components/ecl-range/ecl-range-value.component.mjs
|
|
17423
17359
|
import { Component as Component89, HostBinding as HostBinding136, Input as Input87 } from "@angular/core";
|
|
17424
17360
|
import * as i0196 from "@angular/core";
|
|
17425
|
-
import * as
|
|
17361
|
+
import * as i137 from "@ngx-translate/core";
|
|
17426
17362
|
var EclRangeValueComponent = class _EclRangeValueComponent extends ECLBaseDirective {
|
|
17427
17363
|
get cssClasses() {
|
|
17428
17364
|
return [super.getCssClasses("ecl-range__value")].join(" ").trim();
|
|
@@ -17432,7 +17368,7 @@ var EclRangeValueComponent = class _EclRangeValueComponent extends ECLBaseDirect
|
|
|
17432
17368
|
}
|
|
17433
17369
|
static {
|
|
17434
17370
|
this.ɵcmp = i0196.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclRangeValueComponent, selector: "ecl-range-value", inputs: { value: "value" }, host: { properties: { "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0196, template: `{{ 'ecl.common.VALUE' | translate }}: <span class="ecl-range__value-current"> {{ value }} </span>
|
|
17435
|
-
`, styles: [":host{display:block}\n"], dependencies: [{ kind: "pipe", type:
|
|
17371
|
+
`, styles: [":host{display:block}\n"], dependencies: [{ kind: "pipe", type: i137.TranslatePipe, name: "translate" }] });
|
|
17436
17372
|
}
|
|
17437
17373
|
};
|
|
17438
17374
|
i0196.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0196, type: EclRangeValueComponent, decorators: [{
|
|
@@ -17447,12 +17383,12 @@ i0196.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
17447
17383
|
}] } });
|
|
17448
17384
|
|
|
17449
17385
|
// lib/components/ecl-range/ecl-range.directive.mjs
|
|
17450
|
-
import { __decorate as
|
|
17386
|
+
import { __decorate as __decorate31 } from "tslib";
|
|
17451
17387
|
import { Directive as Directive56, EventEmitter as EventEmitter41, HostBinding as HostBinding137, HostListener as HostListener21, Input as Input88, Optional as Optional7, Output as Output41, Self as Self5 } from "@angular/core";
|
|
17452
|
-
import { coerceBoolean as
|
|
17388
|
+
import { coerceBoolean as coerceBoolean26 } from "@eui/base";
|
|
17453
17389
|
import { distinctUntilChanged } from "rxjs";
|
|
17454
17390
|
import * as i0197 from "@angular/core";
|
|
17455
|
-
import * as
|
|
17391
|
+
import * as i138 from "@angular/forms";
|
|
17456
17392
|
var EclRangeEvent = class extends EclBaseEvent {
|
|
17457
17393
|
constructor(value) {
|
|
17458
17394
|
super();
|
|
@@ -17501,21 +17437,21 @@ var EclRangeDirective = class _EclRangeDirective extends ECLBaseDirective {
|
|
|
17501
17437
|
this.rangeChange.next(new EclRangeEvent(numberValue));
|
|
17502
17438
|
}
|
|
17503
17439
|
static {
|
|
17504
|
-
this.ɵfac = i0197.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0197, type: _EclRangeDirective, deps: [{ token: i0197.ViewContainerRef }, { token:
|
|
17440
|
+
this.ɵfac = i0197.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0197, type: _EclRangeDirective, deps: [{ token: i0197.ViewContainerRef }, { token: i138.NgControl, optional: true, self: true }], target: i0197.ɵɵFactoryTarget.Directive });
|
|
17505
17441
|
}
|
|
17506
17442
|
static {
|
|
17507
17443
|
this.ɵdir = i0197.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclRangeDirective, selector: "input[eclRange]", inputs: { eclSize: "eclSize", value: "value", hasValueLabel: "hasValueLabel" }, outputs: { rangeChange: "rangeChange" }, host: { listeners: { "input": "onInput($event)" }, properties: { "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0197 });
|
|
17508
17444
|
}
|
|
17509
17445
|
};
|
|
17510
|
-
|
|
17511
|
-
|
|
17446
|
+
__decorate31([
|
|
17447
|
+
coerceBoolean26
|
|
17512
17448
|
], EclRangeDirective.prototype, "hasValueLabel", void 0);
|
|
17513
17449
|
i0197.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0197, type: EclRangeDirective, decorators: [{
|
|
17514
17450
|
type: Directive56,
|
|
17515
17451
|
args: [{
|
|
17516
17452
|
selector: "input[eclRange]"
|
|
17517
17453
|
}]
|
|
17518
|
-
}], ctorParameters: () => [{ type: i0197.ViewContainerRef }, { type:
|
|
17454
|
+
}], ctorParameters: () => [{ type: i0197.ViewContainerRef }, { type: i138.NgControl, decorators: [{
|
|
17519
17455
|
type: Optional7
|
|
17520
17456
|
}, {
|
|
17521
17457
|
type: Self5
|
|
@@ -17599,11 +17535,11 @@ i0199.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
17599
17535
|
}] } });
|
|
17600
17536
|
|
|
17601
17537
|
// lib/components/ecl-select/ecl-select.directive.mjs
|
|
17602
|
-
import { __decorate as
|
|
17538
|
+
import { __decorate as __decorate32 } from "tslib";
|
|
17603
17539
|
import { Directive as Directive57, HostBinding as HostBinding139, Input as Input90, Optional as Optional8, Self as Self6 } from "@angular/core";
|
|
17604
|
-
import { coerceBoolean as
|
|
17540
|
+
import { coerceBoolean as coerceBoolean27 } from "@eui/base";
|
|
17605
17541
|
import * as i0200 from "@angular/core";
|
|
17606
|
-
import * as
|
|
17542
|
+
import * as i139 from "@angular/forms";
|
|
17607
17543
|
var EclSelectDirective = class _EclSelectDirective extends ECLBaseDirective {
|
|
17608
17544
|
get cssClasses() {
|
|
17609
17545
|
return [super.getCssClasses("ecl-select")].join(" ").trim();
|
|
@@ -17645,24 +17581,24 @@ var EclSelectDirective = class _EclSelectDirective extends ECLBaseDirective {
|
|
|
17645
17581
|
this.containerComponent.isInvalid = this.isInvalidState;
|
|
17646
17582
|
}
|
|
17647
17583
|
static {
|
|
17648
|
-
this.ɵfac = i0200.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0200, type: _EclSelectDirective, deps: [{ token:
|
|
17584
|
+
this.ɵfac = i0200.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0200, type: _EclSelectDirective, deps: [{ token: i139.NgControl, optional: true, self: true }, { token: i0200.ElementRef }, { token: i0200.ViewContainerRef }], target: i0200.ɵɵFactoryTarget.Directive });
|
|
17649
17585
|
}
|
|
17650
17586
|
static {
|
|
17651
17587
|
this.ɵdir = i0200.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclSelectDirective, selector: "select[eclSelect]", inputs: { disabled: "disabled", isInvalid: "isInvalid", eclSize: "eclSize" }, host: { properties: { "attr.disabled": "this.isDisabled", "class": "this.cssClasses", "class.ecl-select--invalid": "this.isInvalidState" } }, usesInheritance: true, ngImport: i0200 });
|
|
17652
17588
|
}
|
|
17653
17589
|
};
|
|
17654
|
-
|
|
17655
|
-
|
|
17590
|
+
__decorate32([
|
|
17591
|
+
coerceBoolean27
|
|
17656
17592
|
], EclSelectDirective.prototype, "disabled", void 0);
|
|
17657
|
-
|
|
17658
|
-
|
|
17593
|
+
__decorate32([
|
|
17594
|
+
coerceBoolean27
|
|
17659
17595
|
], EclSelectDirective.prototype, "isInvalid", void 0);
|
|
17660
17596
|
i0200.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0200, type: EclSelectDirective, decorators: [{
|
|
17661
17597
|
type: Directive57,
|
|
17662
17598
|
args: [{
|
|
17663
17599
|
selector: "select[eclSelect]"
|
|
17664
17600
|
}]
|
|
17665
|
-
}], ctorParameters: () => [{ type:
|
|
17601
|
+
}], ctorParameters: () => [{ type: i139.NgControl, decorators: [{
|
|
17666
17602
|
type: Optional8
|
|
17667
17603
|
}, {
|
|
17668
17604
|
type: Self6
|
|
@@ -17712,9 +17648,9 @@ i0201.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
17712
17648
|
}] });
|
|
17713
17649
|
|
|
17714
17650
|
// lib/components/ecl-social-media-follow/ecl-social-media-follow.component.mjs
|
|
17715
|
-
import { Component as Component91, HostBinding as HostBinding140, Input as Input91, booleanAttribute as
|
|
17651
|
+
import { Component as Component91, HostBinding as HostBinding140, Input as Input91, booleanAttribute as booleanAttribute24 } from "@angular/core";
|
|
17716
17652
|
import * as i0202 from "@angular/core";
|
|
17717
|
-
import * as
|
|
17653
|
+
import * as i140 from "@angular/common";
|
|
17718
17654
|
var EclSocialMediaFollowComponent = class _EclSocialMediaFollowComponent extends ECLBaseDirective {
|
|
17719
17655
|
constructor() {
|
|
17720
17656
|
super(...arguments);
|
|
@@ -17727,7 +17663,7 @@ var EclSocialMediaFollowComponent = class _EclSocialMediaFollowComponent extends
|
|
|
17727
17663
|
this.ɵfac = i0202.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0202, type: _EclSocialMediaFollowComponent, deps: null, target: i0202.ɵɵFactoryTarget.Component });
|
|
17728
17664
|
}
|
|
17729
17665
|
static {
|
|
17730
|
-
this.ɵcmp = i0202.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.0-next.3", type: _EclSocialMediaFollowComponent, selector: "ecl-social-media-follow", inputs: { description: "description", isVertical: ["isVertical", "isVertical",
|
|
17666
|
+
this.ɵcmp = i0202.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.0-next.3", type: _EclSocialMediaFollowComponent, selector: "ecl-social-media-follow", inputs: { description: "description", isVertical: ["isVertical", "isVertical", booleanAttribute24] }, host: { properties: { "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0202, template: '<p *ngIf="description" class="ecl-social-media-follow__description">{{ description }}</p>\n<ul class="ecl-social-media-follow__list">\n <ng-content></ng-content>\n</ul>\n', styles: [":host{display:block}\n"], dependencies: [{ kind: "directive", type: i140.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
17731
17667
|
}
|
|
17732
17668
|
};
|
|
17733
17669
|
i0202.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0202, type: EclSocialMediaFollowComponent, decorators: [{
|
|
@@ -17737,7 +17673,7 @@ i0202.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
17737
17673
|
type: Input91
|
|
17738
17674
|
}], isVertical: [{
|
|
17739
17675
|
type: Input91,
|
|
17740
|
-
args: [{ transform:
|
|
17676
|
+
args: [{ transform: booleanAttribute24 }]
|
|
17741
17677
|
}], cssClasses: [{
|
|
17742
17678
|
type: HostBinding140,
|
|
17743
17679
|
args: ["class"]
|
|
@@ -17746,7 +17682,7 @@ i0202.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
17746
17682
|
// lib/components/ecl-social-media-follow/ecl-social-media-follow-item.component.mjs
|
|
17747
17683
|
import { Component as Component92, EventEmitter as EventEmitter42, HostBinding as HostBinding141, Input as Input92, Output as Output42 } from "@angular/core";
|
|
17748
17684
|
import * as i0203 from "@angular/core";
|
|
17749
|
-
import * as
|
|
17685
|
+
import * as i141 from "@angular/common";
|
|
17750
17686
|
import * as i216 from "@angular/router";
|
|
17751
17687
|
var EclSocialMediaFollowItemClickEvent = class extends EclBaseEvent {
|
|
17752
17688
|
};
|
|
@@ -17773,7 +17709,7 @@ var EclSocialMediaFollowItemComponent = class _EclSocialMediaFollowItemComponent
|
|
|
17773
17709
|
this.ɵfac = i0203.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0203, type: _EclSocialMediaFollowItemComponent, deps: null, target: i0203.ɵɵFactoryTarget.Component });
|
|
17774
17710
|
}
|
|
17775
17711
|
static {
|
|
17776
|
-
this.ɵcmp = i0203.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.3", type: _EclSocialMediaFollowItemComponent, selector: "ecl-social-media-follow-item", inputs: { icon: "icon", iconSet: "iconSet", href: "href", routerLink: "routerLink", target: "target", size: "size" }, outputs: { itemClick: "itemClick" }, host: { properties: { "attr.role": "this.role", "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0203, template: '@if(href) {\n<a eclLink (click)="onItemClick($event)" variant="standalone" [href]="href" [attr.target]="target"\n class="ecl-social-media-follow__link">\n @if(icon) {\n <ecl-icon [iconSet]="iconSet" icon="{{ icon }}" [size]="size" class="ecl-social-media-follow__icon"> </ecl-icon>\n }\n <span eclLinkLabel>\n <ng-container *ngTemplateOutlet="content"></ng-container>\n </span>\n</a>\n}\n\n@if(!href && routerLink) {\n<a eclLink (click)="onItemClick($event)" variant="standalone" [routerLink]="routerLink" [attr.target]="target"\n class="ecl-social-media-follow__link">\n @if(icon) {\n <ecl-icon [iconSet]="iconSet" icon="{{ icon }}" [size]="size" class="ecl-social-media-follow__icon"> </ecl-icon>\n }\n <span eclLinkLabel>\n <ng-container *ngTemplateOutlet="content"></ng-container>\n </span>\n</a>\n}\n\n@if(!href && !routerLink) {\n<ng-container *ngTemplateOutlet="content"></ng-container>\n}\n\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>', dependencies: [{ kind: "directive", type:
|
|
17712
|
+
this.ɵcmp = i0203.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.3", type: _EclSocialMediaFollowItemComponent, selector: "ecl-social-media-follow-item", inputs: { icon: "icon", iconSet: "iconSet", href: "href", routerLink: "routerLink", target: "target", size: "size" }, outputs: { itemClick: "itemClick" }, host: { properties: { "attr.role": "this.role", "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0203, template: '@if(href) {\n<a eclLink (click)="onItemClick($event)" variant="standalone" [href]="href" [attr.target]="target"\n class="ecl-social-media-follow__link">\n @if(icon) {\n <ecl-icon [iconSet]="iconSet" icon="{{ icon }}" [size]="size" class="ecl-social-media-follow__icon"> </ecl-icon>\n }\n <span eclLinkLabel>\n <ng-container *ngTemplateOutlet="content"></ng-container>\n </span>\n</a>\n}\n\n@if(!href && routerLink) {\n<a eclLink (click)="onItemClick($event)" variant="standalone" [routerLink]="routerLink" [attr.target]="target"\n class="ecl-social-media-follow__link">\n @if(icon) {\n <ecl-icon [iconSet]="iconSet" icon="{{ icon }}" [size]="size" class="ecl-social-media-follow__icon"> </ecl-icon>\n }\n <span eclLinkLabel>\n <ng-container *ngTemplateOutlet="content"></ng-container>\n </span>\n</a>\n}\n\n@if(!href && !routerLink) {\n<ng-container *ngTemplateOutlet="content"></ng-container>\n}\n\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>', dependencies: [{ kind: "directive", type: i141.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i216.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "directive", type: EclLinkDirective, selector: "[eclLink]", inputs: ["isInverted", "isHiddenLabel", "isNoVisited", "variant"] }, { kind: "directive", type: EclLinkLabelDirective, selector: "[eclLinkLabel]" }] });
|
|
17777
17713
|
}
|
|
17778
17714
|
};
|
|
17779
17715
|
i0203.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0203, type: EclSocialMediaFollowItemComponent, decorators: [{
|
|
@@ -17860,9 +17796,9 @@ i0205.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
17860
17796
|
}] });
|
|
17861
17797
|
|
|
17862
17798
|
// lib/components/ecl-social-media-share/ecl-social-media-share.component.mjs
|
|
17863
|
-
import { __decorate as
|
|
17799
|
+
import { __decorate as __decorate33 } from "tslib";
|
|
17864
17800
|
import { Component as Component93, HostBinding as HostBinding143, Input as Input93 } from "@angular/core";
|
|
17865
|
-
import { coerceBoolean as
|
|
17801
|
+
import { coerceBoolean as coerceBoolean28 } from "@eui/base";
|
|
17866
17802
|
import * as i0206 from "@angular/core";
|
|
17867
17803
|
var EclSocialMediaShareComponent = class _EclSocialMediaShareComponent extends ECLBaseDirective {
|
|
17868
17804
|
constructor() {
|
|
@@ -17879,8 +17815,8 @@ var EclSocialMediaShareComponent = class _EclSocialMediaShareComponent extends E
|
|
|
17879
17815
|
this.ɵcmp = i0206.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclSocialMediaShareComponent, selector: "ecl-social-media-share", inputs: { description: "description", isVertical: "isVertical" }, host: { properties: { "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0206, template: '<p class="ecl-social-media-share__description">{{ description }}</p>\n<ul class="ecl-social-media-share__list">\n <ng-content></ng-content>\n</ul>\n', styles: [":host{display:block}\n"] });
|
|
17880
17816
|
}
|
|
17881
17817
|
};
|
|
17882
|
-
|
|
17883
|
-
|
|
17818
|
+
__decorate33([
|
|
17819
|
+
coerceBoolean28
|
|
17884
17820
|
], EclSocialMediaShareComponent.prototype, "isVertical", void 0);
|
|
17885
17821
|
i0206.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0206, type: EclSocialMediaShareComponent, decorators: [{
|
|
17886
17822
|
type: Component93,
|
|
@@ -17897,7 +17833,7 @@ i0206.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
17897
17833
|
// lib/components/ecl-social-media-share/ecl-social-media-share-item.component.mjs
|
|
17898
17834
|
import { Component as Component94, EventEmitter as EventEmitter43, HostBinding as HostBinding144, Input as Input94, Output as Output43 } from "@angular/core";
|
|
17899
17835
|
import * as i0207 from "@angular/core";
|
|
17900
|
-
import * as
|
|
17836
|
+
import * as i142 from "@angular/common";
|
|
17901
17837
|
var EclSocialMediaShareItemClickEvent = class extends EclBaseEvent {
|
|
17902
17838
|
};
|
|
17903
17839
|
var EclSocialMediaShareItemComponent = class _EclSocialMediaShareItemComponent extends ECLBaseDirective {
|
|
@@ -17922,7 +17858,7 @@ var EclSocialMediaShareItemComponent = class _EclSocialMediaShareItemComponent e
|
|
|
17922
17858
|
this.ɵfac = i0207.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0207, type: _EclSocialMediaShareItemComponent, deps: null, target: i0207.ɵɵFactoryTarget.Component });
|
|
17923
17859
|
}
|
|
17924
17860
|
static {
|
|
17925
|
-
this.ɵcmp = i0207.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclSocialMediaShareItemComponent, selector: "ecl-social-media-share-item", inputs: { icon: "icon", iconSet: "iconSet", size: "size", href: "href", target: "target" }, outputs: { itemClick: "itemClick" }, host: { properties: { "attr.role": "this.role", "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0207, template: '<a\n eclLink\n *ngIf="href"\n (click)="onItemClick($event)"\n variant="standalone"\n [href]="href"\n [attr.target]="target"\n class="ecl-social-media-share__link">\n <ecl-icon *ngIf="icon" [iconSet]="iconSet" icon="{{ icon }}" [size]="size" class="ecl-social-media-share__icon"> </ecl-icon>\n\n <span eclLinkLabel>\n <ng-container *ngTemplateOutlet="content"></ng-container>\n </span>\n</a>\n\n<ng-container *ngIf="!href">\n <ng-container *ngTemplateOutlet="content"></ng-container>\n</ng-container>\n\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>\n', dependencies: [{ kind: "directive", type:
|
|
17861
|
+
this.ɵcmp = i0207.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclSocialMediaShareItemComponent, selector: "ecl-social-media-share-item", inputs: { icon: "icon", iconSet: "iconSet", size: "size", href: "href", target: "target" }, outputs: { itemClick: "itemClick" }, host: { properties: { "attr.role": "this.role", "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0207, template: '<a\n eclLink\n *ngIf="href"\n (click)="onItemClick($event)"\n variant="standalone"\n [href]="href"\n [attr.target]="target"\n class="ecl-social-media-share__link">\n <ecl-icon *ngIf="icon" [iconSet]="iconSet" icon="{{ icon }}" [size]="size" class="ecl-social-media-share__icon"> </ecl-icon>\n\n <span eclLinkLabel>\n <ng-container *ngTemplateOutlet="content"></ng-container>\n </span>\n</a>\n\n<ng-container *ngIf="!href">\n <ng-container *ngTemplateOutlet="content"></ng-container>\n</ng-container>\n\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>\n', dependencies: [{ kind: "directive", type: i142.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i142.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: EclLinkDirective, selector: "[eclLink]", inputs: ["isInverted", "isHiddenLabel", "isNoVisited", "variant"] }, { kind: "directive", type: EclLinkLabelDirective, selector: "[eclLinkLabel]" }, { kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }] });
|
|
17926
17862
|
}
|
|
17927
17863
|
};
|
|
17928
17864
|
i0207.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0207, type: EclSocialMediaShareItemComponent, decorators: [{
|
|
@@ -18006,7 +17942,7 @@ i0209.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
18006
17942
|
}] });
|
|
18007
17943
|
|
|
18008
17944
|
// lib/components/ecl-loading-indicator/ecl-loading-indicator.component.mjs
|
|
18009
|
-
import { Component as Component95, HostBinding as HostBinding146, Input as Input95, booleanAttribute as
|
|
17945
|
+
import { Component as Component95, HostBinding as HostBinding146, Input as Input95, booleanAttribute as booleanAttribute25 } from "@angular/core";
|
|
18010
17946
|
import * as i0210 from "@angular/core";
|
|
18011
17947
|
var EclLoadingIndicatorComponent = class _EclLoadingIndicatorComponent extends ECLBaseDirective {
|
|
18012
17948
|
constructor() {
|
|
@@ -18029,7 +17965,7 @@ var EclLoadingIndicatorComponent = class _EclLoadingIndicatorComponent extends E
|
|
|
18029
17965
|
this.ɵfac = i0210.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0210, type: _EclLoadingIndicatorComponent, deps: null, target: i0210.ɵɵFactoryTarget.Component });
|
|
18030
17966
|
}
|
|
18031
17967
|
static {
|
|
18032
|
-
this.ɵcmp = i0210.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.0-next.3", type: _EclLoadingIndicatorComponent, selector: "ecl-loading-indicator", inputs: { size: "size", variant: "variant", isCentered: ["isCentered", "isCentered",
|
|
17968
|
+
this.ɵcmp = i0210.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.0-next.3", type: _EclLoadingIndicatorComponent, selector: "ecl-loading-indicator", inputs: { size: "size", variant: "variant", isCentered: ["isCentered", "isCentered", booleanAttribute25], isVisible: ["isVisible", "isVisible", booleanAttribute25] }, host: { properties: { "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0210, template: '<svg class="ecl-spinner__loader" viewBox="25 25 50 50">\n <circle\n class="ecl-spinner__circle"\n cx="50"\n cy="50"\n r="20"\n fill="none"\n stroke-width="4px"\n stroke-miterlimit="10"\n vector-effect="non-scaling-stroke"></circle>\n</svg>\n<ng-content></ng-content>\n' });
|
|
18033
17969
|
}
|
|
18034
17970
|
};
|
|
18035
17971
|
i0210.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0210, type: EclLoadingIndicatorComponent, decorators: [{
|
|
@@ -18044,10 +17980,10 @@ i0210.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
18044
17980
|
type: Input95
|
|
18045
17981
|
}], isCentered: [{
|
|
18046
17982
|
type: Input95,
|
|
18047
|
-
args: [{ transform:
|
|
17983
|
+
args: [{ transform: booleanAttribute25 }]
|
|
18048
17984
|
}], isVisible: [{
|
|
18049
17985
|
type: Input95,
|
|
18050
|
-
args: [{ transform:
|
|
17986
|
+
args: [{ transform: booleanAttribute25 }]
|
|
18051
17987
|
}] } });
|
|
18052
17988
|
|
|
18053
17989
|
// lib/components/ecl-loading-indicator/ecl-loading-indicator-label.directive.mjs
|
|
@@ -18126,7 +18062,7 @@ i0213.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
18126
18062
|
// lib/components/ecl-table/ecl-table-sort-button.component.mjs
|
|
18127
18063
|
import { Component as Component96, HostBinding as HostBinding149 } from "@angular/core";
|
|
18128
18064
|
import * as i0214 from "@angular/core";
|
|
18129
|
-
import * as
|
|
18065
|
+
import * as i35 from "@angular/common";
|
|
18130
18066
|
var EclTableSortButtonComponent = class _EclTableSortButtonComponent extends ECLBaseDirective {
|
|
18131
18067
|
constructor(eclThemeService) {
|
|
18132
18068
|
super();
|
|
@@ -18142,7 +18078,7 @@ var EclTableSortButtonComponent = class _EclTableSortButtonComponent extends ECL
|
|
|
18142
18078
|
static {
|
|
18143
18079
|
this.ɵcmp = i0214.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclTableSortButtonComponent, selector: "button[eclTableSortButton]", host: { properties: { "attr.aria-label": "this.ariaLabel", "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0214, template: `<ecl-icon icon="solid-arrow" class="ecl-table__icon ecl-table__icon-up" [size]="(eclThemeService.isEC$ | async) ? 'xs' : 'm'"> </ecl-icon>
|
|
18144
18080
|
<ecl-icon icon="solid-arrow" class="ecl-table__icon ecl-table__icon-down" [size]="(eclThemeService.isEC$ | async) ? 'xs' : 'm'"> </ecl-icon>
|
|
18145
|
-
`, dependencies: [{ kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "pipe", type:
|
|
18081
|
+
`, dependencies: [{ kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "pipe", type: i35.AsyncPipe, name: "async" }] });
|
|
18146
18082
|
}
|
|
18147
18083
|
};
|
|
18148
18084
|
i0214.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0214, type: EclTableSortButtonComponent, decorators: [{
|
|
@@ -18159,7 +18095,7 @@ i0214.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
18159
18095
|
}] } });
|
|
18160
18096
|
|
|
18161
18097
|
// lib/components/ecl-table/ecl-table.directive.mjs
|
|
18162
|
-
import { ContentChildren as ContentChildren25, Directive as Directive62, EventEmitter as EventEmitter44, forwardRef as forwardRef52, HostBinding as HostBinding150, HostListener as HostListener22, Input as Input96, Output as Output44, booleanAttribute as
|
|
18098
|
+
import { ContentChildren as ContentChildren25, Directive as Directive62, EventEmitter as EventEmitter44, forwardRef as forwardRef52, HostBinding as HostBinding150, HostListener as HostListener22, Input as Input96, Output as Output44, booleanAttribute as booleanAttribute26 } from "@angular/core";
|
|
18163
18099
|
import { Subject as Subject27 } from "rxjs";
|
|
18164
18100
|
import { takeUntil as takeUntil24 } from "rxjs/operators";
|
|
18165
18101
|
import * as i0215 from "@angular/core";
|
|
@@ -18205,7 +18141,7 @@ var EclTableDirective = class _EclTableDirective extends ECLBaseDirective {
|
|
|
18205
18141
|
this.ɵfac = i0215.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0215, type: _EclTableDirective, deps: [{ token: i0215.IterableDiffers }], target: i0215.ɵɵFactoryTarget.Directive });
|
|
18206
18142
|
}
|
|
18207
18143
|
static {
|
|
18208
|
-
this.ɵdir = i0215.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.0.0-next.3", type: _EclTableDirective, selector: "[eclTable]", inputs: { isZebra: ["isZebra", "isZebra",
|
|
18144
|
+
this.ɵdir = i0215.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.0.0-next.3", type: _EclTableDirective, selector: "[eclTable]", inputs: { isZebra: ["isZebra", "isZebra", booleanAttribute26] }, outputs: { sort: "sort" }, host: { properties: { "class.ecl-table--zebra": "this.isZebra", "class": "this.cssClasses" } }, queries: [{ propertyName: "eclTableHeaders", predicate: i0215.forwardRef(() => EclTableHeaderDirective), descendants: true }], usesInheritance: true, ngImport: i0215 });
|
|
18209
18145
|
}
|
|
18210
18146
|
};
|
|
18211
18147
|
i0215.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0215, type: EclTableDirective, decorators: [{
|
|
@@ -18215,7 +18151,7 @@ i0215.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
18215
18151
|
}]
|
|
18216
18152
|
}], ctorParameters: () => [{ type: i0215.IterableDiffers }], propDecorators: { isZebra: [{
|
|
18217
18153
|
type: Input96,
|
|
18218
|
-
args: [{ transform:
|
|
18154
|
+
args: [{ transform: booleanAttribute26 }]
|
|
18219
18155
|
}, {
|
|
18220
18156
|
type: HostBinding150,
|
|
18221
18157
|
args: ["class.ecl-table--zebra"]
|
|
@@ -18551,9 +18487,9 @@ i0217.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
18551
18487
|
}], ctorParameters: () => [{ type: i0217.ElementRef }] });
|
|
18552
18488
|
|
|
18553
18489
|
// lib/components/ecl-tabs/ecl-tab.component.mjs
|
|
18554
|
-
import { __decorate as
|
|
18490
|
+
import { __decorate as __decorate34 } from "tslib";
|
|
18555
18491
|
import { Component as Component98, ContentChild as ContentChild28, EventEmitter as EventEmitter45, HostBinding as HostBinding151, Input as Input97, Output as Output45, ViewChild as ViewChild16 } from "@angular/core";
|
|
18556
|
-
import { coerceBoolean as
|
|
18492
|
+
import { coerceBoolean as coerceBoolean29 } from "@eui/base";
|
|
18557
18493
|
import * as i0218 from "@angular/core";
|
|
18558
18494
|
var EclTabSelectEvent = class extends EclBaseEvent {
|
|
18559
18495
|
constructor(tab) {
|
|
@@ -18611,11 +18547,11 @@ var EclTabComponent = class _EclTabComponent extends ECLBaseDirective {
|
|
|
18611
18547
|
this.ɵcmp = i0218.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclTabComponent, selector: "ecl-tab, li[eclTab]", inputs: { id: "id", isHidden: "isHidden", isActive: "isActive" }, outputs: { selectTab: "selectTab", keydownTab: "keydownTab" }, host: { properties: { "attr.aria-hidden": "this.isHidden", "attr.role": "this.role", "class": "this.cssClasses" } }, queries: [{ propertyName: "label", first: true, predicate: EclTabLabelComponent, descendants: true }], viewQueries: [{ propertyName: "contentTemplate", first: true, predicate: ["content"], descendants: true }, { propertyName: "link", first: true, predicate: EclLinkDirective, descendants: true }], usesInheritance: true, ngImport: i0218, template: '<a\n eclLink\n role="tab"\n class="ecl-tabs__link"\n [class.ecl-tabs__link--active]="isActive"\n [attr.aria-selected]="isActive"\n tabindex="0"\n (keydown)="onKeydown($event)"\n (click)="onTabClick()">\n <ng-content select="ecl-tab-label"></ng-content>\n</a>\n\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>\n', dependencies: [{ kind: "directive", type: EclLinkDirective, selector: "[eclLink]", inputs: ["isInverted", "isHiddenLabel", "isNoVisited", "variant"] }] });
|
|
18612
18548
|
}
|
|
18613
18549
|
};
|
|
18614
|
-
|
|
18615
|
-
|
|
18550
|
+
__decorate34([
|
|
18551
|
+
coerceBoolean29
|
|
18616
18552
|
], EclTabComponent.prototype, "isHidden", void 0);
|
|
18617
|
-
|
|
18618
|
-
|
|
18553
|
+
__decorate34([
|
|
18554
|
+
coerceBoolean29
|
|
18619
18555
|
], EclTabComponent.prototype, "isActive", void 0);
|
|
18620
18556
|
i0218.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0218, type: EclTabComponent, decorators: [{
|
|
18621
18557
|
type: Component98,
|
|
@@ -18651,9 +18587,9 @@ i0218.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
18651
18587
|
}] } });
|
|
18652
18588
|
|
|
18653
18589
|
// lib/components/ecl-tabs/ecl-tab-more.component.mjs
|
|
18654
|
-
import { __decorate as
|
|
18590
|
+
import { __decorate as __decorate35 } from "tslib";
|
|
18655
18591
|
import { Component as Component99, HostBinding as HostBinding152, Input as Input98 } from "@angular/core";
|
|
18656
|
-
import { coerceBoolean as
|
|
18592
|
+
import { coerceBoolean as coerceBoolean30 } from "@eui/base";
|
|
18657
18593
|
import * as i0219 from "@angular/core";
|
|
18658
18594
|
var EclTabMoreComponent = class _EclTabMoreComponent extends ECLBaseDirective {
|
|
18659
18595
|
constructor() {
|
|
@@ -18671,8 +18607,8 @@ var EclTabMoreComponent = class _EclTabMoreComponent extends ECLBaseDirective {
|
|
|
18671
18607
|
this.ɵcmp = i0219.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclTabMoreComponent, selector: "ecl-tab-more", inputs: { isHidden: "isHidden" }, host: { properties: { "attr.aria-hidden": "this.isHidden", "attr.role": "this.role", "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0219, template: "<ng-content></ng-content>\n", styles: [":host{display:list-item}\n"] });
|
|
18672
18608
|
}
|
|
18673
18609
|
};
|
|
18674
|
-
|
|
18675
|
-
|
|
18610
|
+
__decorate35([
|
|
18611
|
+
coerceBoolean30
|
|
18676
18612
|
], EclTabMoreComponent.prototype, "isHidden", void 0);
|
|
18677
18613
|
i0219.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0219, type: EclTabMoreComponent, decorators: [{
|
|
18678
18614
|
type: Component99,
|
|
@@ -18695,8 +18631,8 @@ import { Component as Component100, ContentChildren as ContentChildren26, EventE
|
|
|
18695
18631
|
import { of as of4, Subject as Subject28 } from "rxjs";
|
|
18696
18632
|
import { mergeWith as mergeWith3, takeUntil as takeUntil25 } from "rxjs/operators";
|
|
18697
18633
|
import * as i0220 from "@angular/core";
|
|
18698
|
-
import * as
|
|
18699
|
-
import * as
|
|
18634
|
+
import * as i143 from "@angular/cdk/layout";
|
|
18635
|
+
import * as i36 from "@angular/common";
|
|
18700
18636
|
import * as i10 from "@ngx-translate/core";
|
|
18701
18637
|
var ShiftDirection;
|
|
18702
18638
|
(function(ShiftDirection2) {
|
|
@@ -19100,7 +19036,7 @@ var EclTabsComponent = class _EclTabsComponent extends ECLBaseDirective {
|
|
|
19100
19036
|
this.index = 0;
|
|
19101
19037
|
}
|
|
19102
19038
|
static {
|
|
19103
|
-
this.ɵfac = i0220.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0220, type: _EclTabsComponent, deps: [{ token: i0220.IterableDiffers }, { token:
|
|
19039
|
+
this.ɵfac = i0220.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0220, type: _EclTabsComponent, deps: [{ token: i0220.IterableDiffers }, { token: i143.BreakpointObserver }, { token: i0220.ChangeDetectorRef }, { token: i0220.ElementRef }, { token: EclRtlService }], target: i0220.ɵɵFactoryTarget.Component });
|
|
19104
19040
|
}
|
|
19105
19041
|
static {
|
|
19106
19042
|
this.ɵcmp = i0220.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclTabsComponent, selector: "nav[eclTabs], ecl-tabs", inputs: { bodyClass: "bodyClass", direction: "direction" }, outputs: { tabSelect: "tabSelect" }, host: { listeners: { "document:click": "onClick($event.target)", "window:resize": "onWindowResize($event)" } }, queries: [{ propertyName: "tabs", predicate: i0220.forwardRef(() => EclTabComponent) }], viewQueries: [{ propertyName: "tabsList", first: true, predicate: ["tabsList"], descendants: true }, { propertyName: "moreButton", first: true, predicate: ["moreButton"], descendants: true }, { propertyName: "btnPrev", first: true, predicate: ["btnPrev"], descendants: true }, { propertyName: "btnNext", first: true, predicate: ["btnNext"], descendants: true }, { propertyName: "dropdownList", first: true, predicate: ["dropdownList"], descendants: true }], usesInheritance: true, ngImport: i0220, template: `<nav class="ecl-tabs">
|
|
@@ -19187,7 +19123,7 @@ var EclTabsComponent = class _EclTabsComponent extends ECLBaseDirective {
|
|
|
19187
19123
|
<ng-container *ngTemplateOutlet="tab.contentTemplate"></ng-container>
|
|
19188
19124
|
</div>
|
|
19189
19125
|
</ng-container>
|
|
19190
|
-
`, dependencies: [{ kind: "directive", type:
|
|
19126
|
+
`, dependencies: [{ kind: "directive", type: i36.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i36.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i36.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: EclButtonComponent, selector: "button[eclButton], button[ecl-button], a[eclButton]", inputs: ["isIconOnly", "variant", "containerStyleClass"] }, { kind: "directive", type: EclButtonLabelDirective, selector: "[eclButtonLabel]" }, { kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "component", type: EclTabComponent, selector: "ecl-tab, li[eclTab]", inputs: ["id", "isHidden", "isActive"], outputs: ["selectTab", "keydownTab"] }, { kind: "component", type: EclTabLabelComponent, selector: "ecl-tab-label" }, { kind: "component", type: EclTabMoreComponent, selector: "ecl-tab-more", inputs: ["isHidden"] }, { kind: "pipe", type: i10.TranslatePipe, name: "translate" }], encapsulation: i0220.ViewEncapsulation.None });
|
|
19191
19127
|
}
|
|
19192
19128
|
};
|
|
19193
19129
|
i0220.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0220, type: EclTabsComponent, decorators: [{
|
|
@@ -19277,7 +19213,7 @@ i0220.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
19277
19213
|
</div>
|
|
19278
19214
|
</ng-container>
|
|
19279
19215
|
` }]
|
|
19280
|
-
}], ctorParameters: () => [{ type: i0220.IterableDiffers }, { type:
|
|
19216
|
+
}], ctorParameters: () => [{ type: i0220.IterableDiffers }, { type: i143.BreakpointObserver }, { type: i0220.ChangeDetectorRef }, { type: i0220.ElementRef }, { type: EclRtlService }], propDecorators: { bodyClass: [{
|
|
19281
19217
|
type: Input99
|
|
19282
19218
|
}], direction: [{
|
|
19283
19219
|
type: Input99
|
|
@@ -19356,7 +19292,7 @@ i0221.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
19356
19292
|
}] });
|
|
19357
19293
|
|
|
19358
19294
|
// lib/components/ecl-tag/ecl-tag.component.mjs
|
|
19359
|
-
import { Component as Component101, Input as Input100, HostBinding as HostBinding153, Output as Output47, EventEmitter as EventEmitter47, booleanAttribute as
|
|
19295
|
+
import { Component as Component101, Input as Input100, HostBinding as HostBinding153, Output as Output47, EventEmitter as EventEmitter47, booleanAttribute as booleanAttribute27 } from "@angular/core";
|
|
19360
19296
|
import * as i0222 from "@angular/core";
|
|
19361
19297
|
import * as i217 from "@angular/common";
|
|
19362
19298
|
var EclTagRemoveEvent = class extends EclBaseEvent {
|
|
@@ -19393,7 +19329,7 @@ var EclTagComponent = class _EclTagComponent extends ECLBaseDirective {
|
|
|
19393
19329
|
this.ɵfac = i0222.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0222, type: _EclTagComponent, deps: null, target: i0222.ɵɵFactoryTarget.Component });
|
|
19394
19330
|
}
|
|
19395
19331
|
static {
|
|
19396
|
-
this.ɵcmp = i0222.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.3", type: _EclTagComponent, selector: "ecl-tag, [eclTag]", inputs: { variant: "variant", isWrapped: ["isWrapped", "isWrapped",
|
|
19332
|
+
this.ɵcmp = i0222.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.3", type: _EclTagComponent, selector: "ecl-tag, [eclTag]", inputs: { variant: "variant", isWrapped: ["isWrapped", "isWrapped", booleanAttribute27] }, outputs: { remove: "remove" }, host: { properties: { "attr.hidden": "this.isHidden", "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0222, template: '<ng-content></ng-content>\n@if(isRemovable) {\n <span class="ecl-tag__icon" (click)="onRemoveClick($event)">\n <ecl-icon icon="close-outline" class="ecl-tag__icon-close" role="img">\n <title>{{title | titlecase}}</title>\n </ecl-icon>\n</span>\n}\n', dependencies: [{ kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "pipe", type: i217.TitleCasePipe, name: "titlecase" }] });
|
|
19397
19333
|
}
|
|
19398
19334
|
};
|
|
19399
19335
|
i0222.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0222, type: EclTagComponent, decorators: [{
|
|
@@ -19403,7 +19339,7 @@ i0222.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
19403
19339
|
type: Input100
|
|
19404
19340
|
}], isWrapped: [{
|
|
19405
19341
|
type: Input100,
|
|
19406
|
-
args: [{ transform:
|
|
19342
|
+
args: [{ transform: booleanAttribute27 }]
|
|
19407
19343
|
}], remove: [{
|
|
19408
19344
|
type: Output47
|
|
19409
19345
|
}], isHidden: [{
|
|
@@ -19463,11 +19399,11 @@ i0224.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
19463
19399
|
}] });
|
|
19464
19400
|
|
|
19465
19401
|
// lib/components/ecl-text-area/ecl-text-area.directive.mjs
|
|
19466
|
-
import { __decorate as
|
|
19402
|
+
import { __decorate as __decorate36 } from "tslib";
|
|
19467
19403
|
import { Directive as Directive64, HostBinding as HostBinding155, Input as Input101, Optional as Optional9, Self as Self7 } from "@angular/core";
|
|
19468
|
-
import { coerceBoolean as
|
|
19404
|
+
import { coerceBoolean as coerceBoolean31 } from "@eui/base";
|
|
19469
19405
|
import * as i0225 from "@angular/core";
|
|
19470
|
-
import * as
|
|
19406
|
+
import * as i144 from "@angular/forms";
|
|
19471
19407
|
var EclTextAreaDirective = class _EclTextAreaDirective extends ECLBaseDirective {
|
|
19472
19408
|
get cssClasses() {
|
|
19473
19409
|
return [super.getCssClasses("ecl-text-area"), this.eclSize ? `ecl-text-area--${this.eclSize}` : ""].join(" ").trim();
|
|
@@ -19486,21 +19422,21 @@ var EclTextAreaDirective = class _EclTextAreaDirective extends ECLBaseDirective
|
|
|
19486
19422
|
this.isInvalid = false;
|
|
19487
19423
|
}
|
|
19488
19424
|
static {
|
|
19489
|
-
this.ɵfac = i0225.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0225, type: _EclTextAreaDirective, deps: [{ token:
|
|
19425
|
+
this.ɵfac = i0225.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0225, type: _EclTextAreaDirective, deps: [{ token: i144.NgControl, optional: true, self: true }], target: i0225.ɵɵFactoryTarget.Directive });
|
|
19490
19426
|
}
|
|
19491
19427
|
static {
|
|
19492
19428
|
this.ɵdir = i0225.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclTextAreaDirective, selector: "textarea[eclTextArea]", inputs: { eclSize: "eclSize", isInvalid: "isInvalid" }, host: { properties: { "class": "this.cssClasses", "class.ecl-text-area--invalid": "this.invalidState" } }, usesInheritance: true, ngImport: i0225 });
|
|
19493
19429
|
}
|
|
19494
19430
|
};
|
|
19495
|
-
|
|
19496
|
-
|
|
19431
|
+
__decorate36([
|
|
19432
|
+
coerceBoolean31
|
|
19497
19433
|
], EclTextAreaDirective.prototype, "isInvalid", void 0);
|
|
19498
19434
|
i0225.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0225, type: EclTextAreaDirective, decorators: [{
|
|
19499
19435
|
type: Directive64,
|
|
19500
19436
|
args: [{
|
|
19501
19437
|
selector: "textarea[eclTextArea]"
|
|
19502
19438
|
}]
|
|
19503
|
-
}], ctorParameters: () => [{ type:
|
|
19439
|
+
}], ctorParameters: () => [{ type: i144.NgControl, decorators: [{
|
|
19504
19440
|
type: Optional9
|
|
19505
19441
|
}, {
|
|
19506
19442
|
type: Self7
|
|
@@ -19617,13 +19553,13 @@ i0229.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
19617
19553
|
}] } });
|
|
19618
19554
|
|
|
19619
19555
|
// lib/components/ecl-timeline/ecl-timeline-item.component.mjs
|
|
19620
|
-
import { __decorate as
|
|
19556
|
+
import { __decorate as __decorate37 } from "tslib";
|
|
19621
19557
|
import { Component as Component103, Input as Input102, HostBinding as HostBinding158, ViewEncapsulation as ViewEncapsulation17, Output as Output49, EventEmitter as EventEmitter49, ContentChild as ContentChild29, forwardRef as forwardRef56 } from "@angular/core";
|
|
19622
|
-
import { coerceBoolean as
|
|
19558
|
+
import { coerceBoolean as coerceBoolean32 } from "@eui/base";
|
|
19623
19559
|
import { Subject as Subject29 } from "rxjs";
|
|
19624
19560
|
import { takeUntil as takeUntil26 } from "rxjs/operators";
|
|
19625
19561
|
import * as i0230 from "@angular/core";
|
|
19626
|
-
import * as
|
|
19562
|
+
import * as i145 from "@angular/common";
|
|
19627
19563
|
import * as i56 from "@ngx-translate/core";
|
|
19628
19564
|
var EclTimelineItemToggleEvent = class extends EclBaseEvent {
|
|
19629
19565
|
constructor(isExpanded, toggleGroup) {
|
|
@@ -19716,11 +19652,11 @@ var EclTimelineItemComponent = class _EclTimelineItemComponent extends ECLBaseDi
|
|
|
19716
19652
|
|
|
19717
19653
|
<ng-template #content>
|
|
19718
19654
|
<ng-content></ng-content>
|
|
19719
|
-
</ng-template>`, styles: ["ecl-timeline-item{display:list-item}\n"], dependencies: [{ kind: "directive", type:
|
|
19655
|
+
</ng-template>`, styles: ["ecl-timeline-item{display:list-item}\n"], dependencies: [{ kind: "directive", type: i145.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i145.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: EclButtonComponent, selector: "button[eclButton], button[ecl-button], a[eclButton]", inputs: ["isIconOnly", "variant", "containerStyleClass"] }, { kind: "directive", type: EclButtonLabelDirective, selector: "[eclButtonLabel]" }, { kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "pipe", type: i56.TranslatePipe, name: "translate" }], encapsulation: i0230.ViewEncapsulation.None });
|
|
19720
19656
|
}
|
|
19721
19657
|
};
|
|
19722
|
-
|
|
19723
|
-
|
|
19658
|
+
__decorate37([
|
|
19659
|
+
coerceBoolean32
|
|
19724
19660
|
], EclTimelineItemComponent.prototype, "isTogglerExpanded", void 0);
|
|
19725
19661
|
i0230.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0230, type: EclTimelineItemComponent, decorators: [{
|
|
19726
19662
|
type: Component103,
|
|
@@ -20283,7 +20219,6 @@ export {
|
|
|
20283
20219
|
EclFormLabelComponentModule,
|
|
20284
20220
|
EclGalleryComponent,
|
|
20285
20221
|
EclGalleryComponentModule,
|
|
20286
|
-
EclGalleryDownloadEvent,
|
|
20287
20222
|
EclGalleryFooterComponent,
|
|
20288
20223
|
EclGalleryFullScreenEvent,
|
|
20289
20224
|
EclGalleryHideEvent,
|