@eui/ecl 18.0.0-next.73 → 18.0.0-next.75
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/EclAccordionComponent.html +41 -141
- package/docs/components/EclAccordionItemComponent.html +39 -121
- package/docs/components/EclCarouselComponent.html +1 -1
- package/docs/components/EclCarouselItemComponent.html +69 -0
- package/docs/components/EclIconComponent.html +36 -121
- package/docs/components/EclMenuItemComponent.html +1 -13
- package/docs/components/EclMenuMegaItemComponent.html +1 -1
- package/docs/dependencies.html +1 -1
- package/docs/directives/ECLBaseDirective.html +4 -0
- package/docs/js/search/search_index.js +2 -2
- package/esm2022/lib/components/ecl-accordion/ecl-accordion-item.component.mjs +15 -10
- package/esm2022/lib/components/ecl-accordion/ecl-accordion.component.mjs +13 -9
- package/esm2022/lib/components/ecl-base.directive.mjs +3 -2
- package/esm2022/lib/components/ecl-button/ecl-button.component.mjs +2 -2
- package/esm2022/lib/components/ecl-carousel/ecl-carousel-item.component.mjs +6 -2
- package/esm2022/lib/components/ecl-carousel/ecl-carousel.component.mjs +6 -32
- package/esm2022/lib/components/ecl-date-picker/ecl-date-picker.directive.mjs +2 -2
- package/esm2022/lib/components/ecl-fact-figures/ecl-fact-figures-item.component.mjs +2 -2
- package/esm2022/lib/components/ecl-feedback-message/ecl-feedback-message.directive.mjs +2 -2
- package/esm2022/lib/components/ecl-icon/ecl-icon.component.mjs +19 -11
- package/esm2022/lib/components/ecl-link/ecl-link.directive.mjs +2 -2
- package/esm2022/lib/components/ecl-menu/ecl-menu/ecl-menu-item.component.mjs +4 -5
- package/esm2022/lib/components/ecl-menu/ecl-menu-mega/ecl-menu-mega-item.component.mjs +4 -4
- package/esm2022/lib/components/ecl-social-media-follow/ecl-social-media-follow-link.directive.mjs +2 -2
- package/esm2022/lib/components/ecl-social-media-share/ecl-social-media-share-link.directive.mjs +2 -2
- package/fesm2022/eui-ecl.mjs +210 -224
- package/fesm2022/eui-ecl.mjs.map +3 -3
- package/lib/components/ecl-accordion/ecl-accordion-item.component.d.ts +5 -3
- package/lib/components/ecl-accordion/ecl-accordion-item.component.d.ts.map +1 -1
- package/lib/components/ecl-accordion/ecl-accordion.component.d.ts +6 -4
- package/lib/components/ecl-accordion/ecl-accordion.component.d.ts.map +1 -1
- package/lib/components/ecl-base.directive.d.ts +1 -1
- package/lib/components/ecl-base.directive.d.ts.map +1 -1
- package/lib/components/ecl-button/ecl-button.component.d.ts.map +1 -1
- package/lib/components/ecl-carousel/ecl-carousel-item.component.d.ts +1 -0
- package/lib/components/ecl-carousel/ecl-carousel-item.component.d.ts.map +1 -1
- package/lib/components/ecl-carousel/ecl-carousel.component.d.ts.map +1 -1
- package/lib/components/ecl-icon/ecl-icon.component.d.ts +5 -3
- package/lib/components/ecl-icon/ecl-icon.component.d.ts.map +1 -1
- package/lib/components/ecl-link/ecl-link.directive.d.ts.map +1 -1
- package/lib/components/ecl-menu/ecl-menu/ecl-menu-item.component.d.ts +2 -3
- package/lib/components/ecl-menu/ecl-menu/ecl-menu-item.component.d.ts.map +1 -1
- package/lib/components/ecl-menu/ecl-menu-mega/ecl-menu-mega-item.component.d.ts.map +1 -1
- package/package.json +1 -1
package/fesm2022/eui-ecl.mjs
CHANGED
|
@@ -19,12 +19,13 @@ var ECLBaseDirective = class _ECLBaseDirective {
|
|
|
19
19
|
this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i0, type: _ECLBaseDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
20
20
|
}
|
|
21
21
|
static {
|
|
22
|
-
this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.0.0-rc.1", type: _ECLBaseDirective, selector: "[eclBase]", inputs: { class: "class", e2eAttr: "e2eAttr", tabindex: ["tabindex", "tabindex", numberAttribute] }, host: { properties: { "attr.data-e2e": "this.e2eAttr", "attr.tabindex": "this.tabindex" } }, ngImport: i0 });
|
|
22
|
+
this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.0.0-rc.1", type: _ECLBaseDirective, isStandalone: true, selector: "[eclBase]", inputs: { class: "class", e2eAttr: "e2eAttr", tabindex: ["tabindex", "tabindex", numberAttribute] }, host: { properties: { "attr.data-e2e": "this.e2eAttr", "attr.tabindex": "this.tabindex" } }, ngImport: i0 });
|
|
23
23
|
}
|
|
24
24
|
};
|
|
25
25
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i0, type: ECLBaseDirective, decorators: [{
|
|
26
26
|
type: Directive,
|
|
27
27
|
args: [{
|
|
28
|
+
standalone: true,
|
|
28
29
|
selector: "[eclBase]"
|
|
29
30
|
}]
|
|
30
31
|
}], propDecorators: { class: [{
|
|
@@ -470,16 +471,15 @@ i04.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1", n
|
|
|
470
471
|
}] }, { type: EclThemeService }, { type: EclDefaultLanguageService }] });
|
|
471
472
|
|
|
472
473
|
// lib/components/ecl-icon/ecl-icon.component.mjs
|
|
473
|
-
import { Component, HostBinding as HostBinding2, Input as Input2, ViewChild, booleanAttribute } from "@angular/core";
|
|
474
|
+
import { Component, HostBinding as HostBinding2, Inject as Inject4, Input as Input2, ViewChild, booleanAttribute, forwardRef } from "@angular/core";
|
|
474
475
|
import { of, switchMap } from "rxjs";
|
|
475
476
|
import * as i05 from "@angular/core";
|
|
476
|
-
import * as
|
|
477
|
-
var EclIconComponent = class _EclIconComponent
|
|
477
|
+
import * as i3 from "@angular/common";
|
|
478
|
+
var EclIconComponent = class _EclIconComponent {
|
|
478
479
|
get isColorInverted() {
|
|
479
480
|
return this.color === "inverted";
|
|
480
481
|
}
|
|
481
|
-
constructor(el, renderer, eclThemeService) {
|
|
482
|
-
super();
|
|
482
|
+
constructor(el, renderer, eclThemeService, baseDirective) {
|
|
483
483
|
this.el = el;
|
|
484
484
|
this.renderer = renderer;
|
|
485
485
|
this.eclThemeService = eclThemeService;
|
|
@@ -488,6 +488,7 @@ var EclIconComponent = class _EclIconComponent extends ECLBaseDirective {
|
|
|
488
488
|
this.color = null;
|
|
489
489
|
this.ariaHidden = true;
|
|
490
490
|
this.focusable = false;
|
|
491
|
+
this.baseDirective = baseDirective;
|
|
491
492
|
}
|
|
492
493
|
ngOnChanges(changes) {
|
|
493
494
|
if (changes["icon"]) {
|
|
@@ -520,7 +521,7 @@ var EclIconComponent = class _EclIconComponent extends ECLBaseDirective {
|
|
|
520
521
|
getClasses() {
|
|
521
522
|
const hostClasses = this.el.nativeElement.classList.toString();
|
|
522
523
|
return {
|
|
523
|
-
[
|
|
524
|
+
[this.baseDirective.getCssClasses("ecl-icon")]: true,
|
|
524
525
|
[`ecl-icon--${this.size}`]: this.size,
|
|
525
526
|
[`ecl-icon--${this.transform}`]: this.transform,
|
|
526
527
|
[`ecl-icon--${this.color}`]: this.color,
|
|
@@ -546,16 +547,23 @@ var EclIconComponent = class _EclIconComponent extends ECLBaseDirective {
|
|
|
546
547
|
}));
|
|
547
548
|
}
|
|
548
549
|
static {
|
|
549
|
-
this.ɵfac = i05.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i05, type: _EclIconComponent, deps: [{ token: i05.ElementRef }, { token: i05.Renderer2 }, { token: EclThemeService }], target: i05.ɵɵFactoryTarget.Component });
|
|
550
|
+
this.ɵfac = i05.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i05, type: _EclIconComponent, deps: [{ token: i05.ElementRef }, { token: i05.Renderer2 }, { token: EclThemeService }, { token: forwardRef(() => ECLBaseDirective) }], target: i05.ɵɵFactoryTarget.Component });
|
|
550
551
|
}
|
|
551
552
|
static {
|
|
552
|
-
this.ɵcmp = i05.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.0-rc.1", type: _EclIconComponent, selector: "ecl-icon", inputs: { iconSet: "iconSet", icon: "icon", size: "size", color: "color", transform: "transform", ariaLabelledby: "ariaLabelledby", role: "role", ariaHidden: ["ariaHidden", "ariaHidden", booleanAttribute], focusable: ["focusable", "focusable", booleanAttribute] }, host: { properties: { "class.ecl-u-bg-dark": "this.isColorInverted" } }, viewQueries: [{ propertyName: "svgEl", first: true, predicate: ["svg"], descendants: true }],
|
|
553
|
+
this.ɵcmp = i05.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.0-rc.1", type: _EclIconComponent, selector: "ecl-icon", inputs: { iconSet: "iconSet", icon: "icon", size: "size", color: "color", transform: "transform", ariaLabelledby: "ariaLabelledby", role: "role", ariaHidden: ["ariaHidden", "ariaHidden", booleanAttribute], focusable: ["focusable", "focusable", booleanAttribute] }, host: { properties: { "class.ecl-u-bg-dark": "this.isColorInverted" } }, viewQueries: [{ propertyName: "svgEl", first: true, predicate: ["svg"], descendants: true }], usesOnChanges: true, hostDirectives: [{ directive: ECLBaseDirective }], ngImport: i05, template: '<svg\n #svg\n [ngClass]="getClasses()"\n [attr.aria-hidden]="ariaHidden"\n [attr.aria-labelledby]="ariaLabelledby || null"\n [attr.role]="role || null"\n [attr.focusable]="focusable">\n <use [attr.xlink:href]="iconUrl$ | async"></use>\n <ng-content></ng-content>\n</svg>\n', dependencies: [{ kind: "directive", type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "pipe", type: i3.AsyncPipe, name: "async" }] });
|
|
553
554
|
}
|
|
554
555
|
};
|
|
555
556
|
i05.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i05, type: EclIconComponent, decorators: [{
|
|
556
557
|
type: Component,
|
|
557
|
-
args: [{ selector: "ecl-icon",
|
|
558
|
-
|
|
558
|
+
args: [{ selector: "ecl-icon", hostDirectives: [
|
|
559
|
+
{
|
|
560
|
+
directive: ECLBaseDirective
|
|
561
|
+
}
|
|
562
|
+
], template: '<svg\n #svg\n [ngClass]="getClasses()"\n [attr.aria-hidden]="ariaHidden"\n [attr.aria-labelledby]="ariaLabelledby || null"\n [attr.role]="role || null"\n [attr.focusable]="focusable">\n <use [attr.xlink:href]="iconUrl$ | async"></use>\n <ng-content></ng-content>\n</svg>\n' }]
|
|
563
|
+
}], ctorParameters: () => [{ type: i05.ElementRef }, { type: i05.Renderer2 }, { type: EclThemeService }, { type: void 0, decorators: [{
|
|
564
|
+
type: Inject4,
|
|
565
|
+
args: [forwardRef(() => ECLBaseDirective)]
|
|
566
|
+
}] }], propDecorators: { iconSet: [{
|
|
559
567
|
type: Input2
|
|
560
568
|
}], icon: [{
|
|
561
569
|
type: Input2
|
|
@@ -593,12 +601,12 @@ var EclAccordionToggleEvent = class extends EclBaseEvent {
|
|
|
593
601
|
this.isExpanded = isExpanded;
|
|
594
602
|
}
|
|
595
603
|
};
|
|
596
|
-
var EclAccordionItemComponent = class _EclAccordionItemComponent
|
|
604
|
+
var EclAccordionItemComponent = class _EclAccordionItemComponent {
|
|
597
605
|
get cssClasses() {
|
|
598
|
-
return [this.getCssClasses("ecl-accordion__item")].join(" ").trim();
|
|
606
|
+
return [this.baseDirective.getCssClasses("ecl-accordion__item")].join(" ").trim();
|
|
599
607
|
}
|
|
600
|
-
constructor(cd) {
|
|
601
|
-
|
|
608
|
+
constructor(baseDirective, cd) {
|
|
609
|
+
this.baseDirective = baseDirective;
|
|
602
610
|
this.cd = cd;
|
|
603
611
|
this.isExpanded = false;
|
|
604
612
|
this.toggle = new EventEmitter();
|
|
@@ -624,16 +632,20 @@ var EclAccordionItemComponent = class _EclAccordionItemComponent extends ECLBase
|
|
|
624
632
|
this.cd.detectChanges();
|
|
625
633
|
}
|
|
626
634
|
static {
|
|
627
|
-
this.ɵfac = i06.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i06, type: _EclAccordionItemComponent, deps: [{ token: i06.ChangeDetectorRef }], target: i06.ɵɵFactoryTarget.Component });
|
|
635
|
+
this.ɵfac = i06.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i06, type: _EclAccordionItemComponent, deps: [{ token: ECLBaseDirective }, { token: i06.ChangeDetectorRef }], target: i06.ɵɵFactoryTarget.Component });
|
|
628
636
|
}
|
|
629
637
|
static {
|
|
630
|
-
this.ɵcmp = i06.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-rc.1", type: _EclAccordionItemComponent, selector: "ecl-accordion-item", inputs: { label: "label", isExpanded: ["isExpanded", "isExpanded", booleanAttribute2] }, outputs: { toggle: "toggle" }, host: { properties: { "class": "this.cssClasses" } },
|
|
638
|
+
this.ɵcmp = i06.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-rc.1", type: _EclAccordionItemComponent, selector: "ecl-accordion-item", inputs: { label: "label", isExpanded: ["isExpanded", "isExpanded", booleanAttribute2] }, outputs: { toggle: "toggle" }, host: { properties: { "class": "this.cssClasses" } }, hostDirectives: [{ directive: ECLBaseDirective }], ngImport: i06, template: '<h3 class="ecl-accordion__title" [id]="titleId">\n <button\n type="button"\n (click)="onItemClick($event)"\n [attr.aria-expanded]="isExpanded"\n class="ecl-accordion__toggle"\n [class.ecl-accordion__toggle--active]="isActive"\n [attr.aria-controls]="contentId">\n <span class="ecl-accordion__toggle-flex">\n <span class="ecl-accordion__toggle-title">{{ label }}</span>\n <span class="ecl-accordion__toggle-indicator">\n @if(!isExpanded) {\n <ecl-icon icon="plus" size="s" class="ecl-accordion__toggle-icon" [attr.aria-hidden]="!isExpanded">\n </ecl-icon>\n } @else {\n <ecl-icon icon="minus" size="s" class="ecl-accordion__toggle-icon" [attr.aria-hidden]="isExpanded">\n </ecl-icon>\n }\n </span>\n </span>\n </button>\n</h3>\n<div class="ecl-accordion__content" [hidden]="!isExpanded" role="region" [attr.aria-labelledby]="titleId" [id]="contentId">\n <ng-content></ng-content>\n</div>\n', styles: [":host{display:block}\n"], dependencies: [{ kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }], changeDetection: i06.ChangeDetectionStrategy.OnPush });
|
|
631
639
|
}
|
|
632
640
|
};
|
|
633
641
|
i06.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i06, type: EclAccordionItemComponent, decorators: [{
|
|
634
642
|
type: Component2,
|
|
635
|
-
args: [{ selector: "ecl-accordion-item", changeDetection: ChangeDetectionStrategy.OnPush,
|
|
636
|
-
|
|
643
|
+
args: [{ selector: "ecl-accordion-item", changeDetection: ChangeDetectionStrategy.OnPush, hostDirectives: [
|
|
644
|
+
{
|
|
645
|
+
directive: ECLBaseDirective
|
|
646
|
+
}
|
|
647
|
+
], template: '<h3 class="ecl-accordion__title" [id]="titleId">\n <button\n type="button"\n (click)="onItemClick($event)"\n [attr.aria-expanded]="isExpanded"\n class="ecl-accordion__toggle"\n [class.ecl-accordion__toggle--active]="isActive"\n [attr.aria-controls]="contentId">\n <span class="ecl-accordion__toggle-flex">\n <span class="ecl-accordion__toggle-title">{{ label }}</span>\n <span class="ecl-accordion__toggle-indicator">\n @if(!isExpanded) {\n <ecl-icon icon="plus" size="s" class="ecl-accordion__toggle-icon" [attr.aria-hidden]="!isExpanded">\n </ecl-icon>\n } @else {\n <ecl-icon icon="minus" size="s" class="ecl-accordion__toggle-icon" [attr.aria-hidden]="isExpanded">\n </ecl-icon>\n }\n </span>\n </span>\n </button>\n</h3>\n<div class="ecl-accordion__content" [hidden]="!isExpanded" role="region" [attr.aria-labelledby]="titleId" [id]="contentId">\n <ng-content></ng-content>\n</div>\n', styles: [":host{display:block}\n"] }]
|
|
648
|
+
}], ctorParameters: () => [{ type: ECLBaseDirective }, { type: i06.ChangeDetectorRef }], propDecorators: { cssClasses: [{
|
|
637
649
|
type: HostBinding3,
|
|
638
650
|
args: ["class"]
|
|
639
651
|
}], label: [{
|
|
@@ -773,16 +785,16 @@ var KeyCode;
|
|
|
773
785
|
})(KeyCode || (KeyCode = {}));
|
|
774
786
|
|
|
775
787
|
// lib/components/ecl-accordion/ecl-accordion.component.mjs
|
|
776
|
-
import { ChangeDetectionStrategy as ChangeDetectionStrategy3, Component as Component3, ContentChildren, HostBinding as HostBinding5, HostListener as HostListener2, forwardRef } from "@angular/core";
|
|
788
|
+
import { ChangeDetectionStrategy as ChangeDetectionStrategy3, Component as Component3, ContentChildren, HostBinding as HostBinding5, HostListener as HostListener2, forwardRef as forwardRef2 } from "@angular/core";
|
|
777
789
|
import { Subject as Subject3 } from "rxjs";
|
|
778
790
|
import { takeUntil as takeUntil3 } from "rxjs/operators";
|
|
779
791
|
import * as i010 from "@angular/core";
|
|
780
|
-
var EclAccordionComponent = class _EclAccordionComponent
|
|
792
|
+
var EclAccordionComponent = class _EclAccordionComponent {
|
|
781
793
|
get cssClasses() {
|
|
782
|
-
return [this.getCssClasses("ecl-accordion")].join(" ").trim();
|
|
794
|
+
return [this.baseDirective.getCssClasses("ecl-accordion")].join(" ").trim();
|
|
783
795
|
}
|
|
784
|
-
constructor(cd, differs) {
|
|
785
|
-
|
|
796
|
+
constructor(baseDirective, cd, differs) {
|
|
797
|
+
this.baseDirective = baseDirective;
|
|
786
798
|
this.cd = cd;
|
|
787
799
|
this.differs = differs;
|
|
788
800
|
this.destroy$ = new Subject3();
|
|
@@ -816,27 +828,30 @@ var EclAccordionComponent = class _EclAccordionComponent extends ECLBaseDirectiv
|
|
|
816
828
|
});
|
|
817
829
|
}
|
|
818
830
|
static {
|
|
819
|
-
this.ɵfac = i010.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i010, type: _EclAccordionComponent, deps: [{ token: i010.ChangeDetectorRef }, { token: i010.IterableDiffers }], target: i010.ɵɵFactoryTarget.Component });
|
|
831
|
+
this.ɵfac = i010.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i010, type: _EclAccordionComponent, deps: [{ token: ECLBaseDirective }, { token: i010.ChangeDetectorRef }, { token: i010.IterableDiffers }], target: i010.ɵɵFactoryTarget.Component });
|
|
820
832
|
}
|
|
821
833
|
static {
|
|
822
|
-
this.ɵcmp = i010.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-rc.1", type: _EclAccordionComponent, selector: "ecl-accordion", host: { listeners: { "eclClickOutside": "onClickOutsideAccordion()" }, properties: { "class": "this.cssClasses" } }, queries: [{ propertyName: "accordionItems", predicate: i010.forwardRef(() => EclAccordionItemComponent) }],
|
|
834
|
+
this.ɵcmp = i010.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-rc.1", type: _EclAccordionComponent, selector: "ecl-accordion", host: { listeners: { "eclClickOutside": "onClickOutsideAccordion()" }, properties: { "class": "this.cssClasses" } }, queries: [{ propertyName: "accordionItems", predicate: i010.forwardRef(() => EclAccordionItemComponent) }], hostDirectives: [{ directive: ECLBaseDirective }, { directive: ECLClickOutsideDirective, outputs: ["eclClickOutside", "eclClickOutside"] }], ngImport: i010, template: "<ng-content></ng-content>\n", styles: [":host{display:block}\n"], changeDetection: i010.ChangeDetectionStrategy.OnPush });
|
|
823
835
|
}
|
|
824
836
|
};
|
|
825
837
|
i010.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i010, type: EclAccordionComponent, decorators: [{
|
|
826
838
|
type: Component3,
|
|
827
839
|
args: [{ selector: "ecl-accordion", changeDetection: ChangeDetectionStrategy3.OnPush, hostDirectives: [
|
|
840
|
+
{
|
|
841
|
+
directive: ECLBaseDirective
|
|
842
|
+
},
|
|
828
843
|
{
|
|
829
844
|
directive: ECLClickOutsideDirective,
|
|
830
845
|
// eslint-disable-next-line @angular-eslint/no-outputs-metadata-property
|
|
831
846
|
outputs: ["eclClickOutside"]
|
|
832
847
|
}
|
|
833
848
|
], template: "<ng-content></ng-content>\n", styles: [":host{display:block}\n"] }]
|
|
834
|
-
}], ctorParameters: () => [{ type: i010.ChangeDetectorRef }, { type: i010.IterableDiffers }], propDecorators: { cssClasses: [{
|
|
849
|
+
}], ctorParameters: () => [{ type: ECLBaseDirective }, { type: i010.ChangeDetectorRef }, { type: i010.IterableDiffers }], propDecorators: { cssClasses: [{
|
|
835
850
|
type: HostBinding5,
|
|
836
851
|
args: ["class"]
|
|
837
852
|
}], accordionItems: [{
|
|
838
853
|
type: ContentChildren,
|
|
839
|
-
args: [
|
|
854
|
+
args: [forwardRef2(() => EclAccordionItemComponent)]
|
|
840
855
|
}], onClickOutsideAccordion: [{
|
|
841
856
|
type: HostListener2,
|
|
842
857
|
args: ["eclClickOutside"]
|
|
@@ -906,7 +921,7 @@ var EclDomEvent = class extends EclBaseEvent {
|
|
|
906
921
|
};
|
|
907
922
|
|
|
908
923
|
// lib/components/ecl-button/ecl-button.component.mjs
|
|
909
|
-
import { booleanAttribute as booleanAttribute3, Component as Component4, ContentChildren as ContentChildren2, forwardRef as
|
|
924
|
+
import { booleanAttribute as booleanAttribute3, Component as Component4, ContentChildren as ContentChildren2, forwardRef as forwardRef4, HostBinding as HostBinding6, Input as Input5 } from "@angular/core";
|
|
910
925
|
import * as i013 from "@angular/core";
|
|
911
926
|
import * as i12 from "@angular/common";
|
|
912
927
|
var EclButtonComponent = class _EclButtonComponent extends ECLBaseDirective {
|
|
@@ -930,7 +945,7 @@ var EclButtonComponent = class _EclButtonComponent extends ECLBaseDirective {
|
|
|
930
945
|
if (this.iconComponents) {
|
|
931
946
|
setTimeout(() => {
|
|
932
947
|
this.iconComponents.forEach((icn) => {
|
|
933
|
-
icn.class = "ecl-button__icon";
|
|
948
|
+
icn.baseDirective.class = "ecl-button__icon";
|
|
934
949
|
});
|
|
935
950
|
});
|
|
936
951
|
}
|
|
@@ -954,7 +969,7 @@ i013.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
954
969
|
type: Input5
|
|
955
970
|
}], iconComponents: [{
|
|
956
971
|
type: ContentChildren2,
|
|
957
|
-
args: [
|
|
972
|
+
args: [forwardRef4(() => EclIconComponent)]
|
|
958
973
|
}], cssClasses: [{
|
|
959
974
|
type: HostBinding6,
|
|
960
975
|
args: ["class"]
|
|
@@ -1141,7 +1156,7 @@ i019.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
1141
1156
|
}] });
|
|
1142
1157
|
|
|
1143
1158
|
// lib/components/ecl-link/ecl-link.directive.mjs
|
|
1144
|
-
import { Directive as Directive5, HostBinding as HostBinding10, Input as Input7, forwardRef as
|
|
1159
|
+
import { Directive as Directive5, HostBinding as HostBinding10, Input as Input7, forwardRef as forwardRef6, ContentChildren as ContentChildren3, booleanAttribute as booleanAttribute5 } from "@angular/core";
|
|
1145
1160
|
import * as i020 from "@angular/core";
|
|
1146
1161
|
var EclLinkDirective = class _EclLinkDirective extends ECLBaseDirective {
|
|
1147
1162
|
get cssClasses() {
|
|
@@ -1163,7 +1178,7 @@ var EclLinkDirective = class _EclLinkDirective extends ECLBaseDirective {
|
|
|
1163
1178
|
if (this.eclIconComponents) {
|
|
1164
1179
|
setTimeout(() => {
|
|
1165
1180
|
this.eclIconComponents.forEach((icn) => {
|
|
1166
|
-
icn.class = icn.class ? icn.class + " ecl-link__icon" : "ecl-link__icon";
|
|
1181
|
+
icn.baseDirective.class = icn.baseDirective.class ? icn.baseDirective.class + " ecl-link__icon" : "ecl-link__icon";
|
|
1167
1182
|
});
|
|
1168
1183
|
});
|
|
1169
1184
|
}
|
|
@@ -1208,7 +1223,7 @@ i020.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
1208
1223
|
type: Input7
|
|
1209
1224
|
}], eclIconComponents: [{
|
|
1210
1225
|
type: ContentChildren3,
|
|
1211
|
-
args: [
|
|
1226
|
+
args: [forwardRef6(() => EclIconComponent)]
|
|
1212
1227
|
}] } });
|
|
1213
1228
|
|
|
1214
1229
|
// lib/components/ecl-link/ecl-link-label.directive.mjs
|
|
@@ -1338,10 +1353,10 @@ i024.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
1338
1353
|
}] });
|
|
1339
1354
|
|
|
1340
1355
|
// lib/components/ecl-search-form/ecl-search-form.component.mjs
|
|
1341
|
-
import { Component as Component7, EventEmitter as EventEmitter3, forwardRef as
|
|
1356
|
+
import { Component as Component7, EventEmitter as EventEmitter3, forwardRef as forwardRef8, HostBinding as HostBinding13, HostListener as HostListener3, Input as Input9, Output as Output3 } from "@angular/core";
|
|
1342
1357
|
import { NG_VALUE_ACCESSOR } from "@angular/forms";
|
|
1343
1358
|
import * as i025 from "@angular/core";
|
|
1344
|
-
import * as
|
|
1359
|
+
import * as i2 from "@angular/forms";
|
|
1345
1360
|
import * as i9 from "@ngx-translate/core";
|
|
1346
1361
|
var EclSearchFormEvent = class extends EclBaseEvent {
|
|
1347
1362
|
constructor(keyword) {
|
|
@@ -1351,7 +1366,7 @@ var EclSearchFormEvent = class extends EclBaseEvent {
|
|
|
1351
1366
|
};
|
|
1352
1367
|
var ECL_SEARCH_FORM_VALUE_ACCESSOR = {
|
|
1353
1368
|
provide: NG_VALUE_ACCESSOR,
|
|
1354
|
-
useExisting:
|
|
1369
|
+
useExisting: forwardRef8(() => EclSearchFormComponent),
|
|
1355
1370
|
multi: true
|
|
1356
1371
|
};
|
|
1357
1372
|
var noop = () => {
|
|
@@ -1417,7 +1432,7 @@ var EclSearchFormComponent = class _EclSearchFormComponent extends ECLBaseDirect
|
|
|
1417
1432
|
{{ searchButtonLabel || 'ecl.common.SEARCH' | translate }}
|
|
1418
1433
|
</span>
|
|
1419
1434
|
</button>
|
|
1420
|
-
`, dependencies: [{ kind: "directive", type:
|
|
1435
|
+
`, dependencies: [{ kind: "directive", type: i2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { 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: EclFormGroupComponent, selector: "[eclFormGroup], ecl-form-group" }, { kind: "component", type: EclFormLabelComponent, selector: "[eclFormLabel]", inputs: ["isOptional", "isInvalid", "isDisabled", "isRequired"] }, { kind: "directive", type: EclTextInputDirective, selector: "input[eclTextInput]", inputs: ["eclSize", "isInvalid"] }, { kind: "directive", type: i2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "pipe", type: i9.TranslatePipe, name: "translate" }] });
|
|
1421
1436
|
}
|
|
1422
1437
|
};
|
|
1423
1438
|
i025.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i025, type: EclSearchFormComponent, decorators: [{
|
|
@@ -2165,7 +2180,7 @@ i032.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
2165
2180
|
// lib/components/ecl-site-header/login/ecl-site-header-login.component.mjs
|
|
2166
2181
|
import { Component as Component13, EventEmitter as EventEmitter6, HostBinding as HostBinding20, Input as Input12, Output as Output6, booleanAttribute as booleanAttribute7 } from "@angular/core";
|
|
2167
2182
|
import * as i033 from "@angular/core";
|
|
2168
|
-
import * as
|
|
2183
|
+
import * as i22 from "@ngx-translate/core";
|
|
2169
2184
|
var EclSiteHeaderLoginEvent = class extends EclBaseEvent {
|
|
2170
2185
|
};
|
|
2171
2186
|
var EclSiteHeaderLoginBoxToggleEvent = class extends EclBaseEvent {
|
|
@@ -2231,7 +2246,7 @@ var EclSiteHeaderLoginComponent = class _EclSiteHeaderLoginComponent extends ECL
|
|
|
2231
2246
|
{{ 'ecl.site-header.LOGIN' | translate }}
|
|
2232
2247
|
</a>
|
|
2233
2248
|
}
|
|
2234
|
-
`, styles: [".ecl-site-header__login-toggle .ecl-site-header__login-arrow{display:inline-flex}\n"], dependencies: [{ kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "pipe", type:
|
|
2249
|
+
`, styles: [".ecl-site-header__login-toggle .ecl-site-header__login-arrow{display:inline-flex}\n"], dependencies: [{ kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "pipe", type: i22.TranslatePipe, name: "translate" }] });
|
|
2235
2250
|
}
|
|
2236
2251
|
};
|
|
2237
2252
|
i033.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i033, type: EclSiteHeaderLoginComponent, decorators: [{
|
|
@@ -2274,7 +2289,7 @@ i033.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
2274
2289
|
}] } });
|
|
2275
2290
|
|
|
2276
2291
|
// lib/components/ecl-site-header/search/ecl-site-header-search.component.mjs
|
|
2277
|
-
import { Component as Component14, EventEmitter as EventEmitter7, forwardRef as
|
|
2292
|
+
import { Component as Component14, EventEmitter as EventEmitter7, forwardRef as forwardRef9, HostBinding as HostBinding21, Input as Input13, Output as Output7 } from "@angular/core";
|
|
2278
2293
|
import { NG_VALUE_ACCESSOR as NG_VALUE_ACCESSOR2 } from "@angular/forms";
|
|
2279
2294
|
import * as i034 from "@angular/core";
|
|
2280
2295
|
import * as i16 from "@angular/forms";
|
|
@@ -2293,7 +2308,7 @@ var EclSiteHeaderSearchToggleEvent = class extends EclBaseEvent {
|
|
|
2293
2308
|
};
|
|
2294
2309
|
var ECL_SITE_HEADER_SEARCH_VALUE_ACCESSOR = {
|
|
2295
2310
|
provide: NG_VALUE_ACCESSOR2,
|
|
2296
|
-
useExisting:
|
|
2311
|
+
useExisting: forwardRef9(() => EclSiteHeaderSearchComponent),
|
|
2297
2312
|
multi: true
|
|
2298
2313
|
};
|
|
2299
2314
|
var noop2 = () => {
|
|
@@ -2409,7 +2424,7 @@ i034.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
2409
2424
|
import { Component as Component15, ContentChild, EventEmitter as EventEmitter8, HostBinding as HostBinding22, Input as Input14, Output as Output8, ViewChild as ViewChild3 } from "@angular/core";
|
|
2410
2425
|
import { Subject as Subject6, takeUntil as takeUntil6 } from "rxjs";
|
|
2411
2426
|
import * as i035 from "@angular/core";
|
|
2412
|
-
import * as
|
|
2427
|
+
import * as i23 from "@ngx-translate/core";
|
|
2413
2428
|
import * as i52 from "@angular/common";
|
|
2414
2429
|
var EclSiteHeaderLogoClickEvent = class extends EclBaseEvent {
|
|
2415
2430
|
};
|
|
@@ -2466,7 +2481,7 @@ var EclSiteHeaderComponent = class _EclSiteHeaderComponent extends ECLBaseDirect
|
|
|
2466
2481
|
return this.eclLanguageService.getEULanguageOrFallback(this.languageCode).code;
|
|
2467
2482
|
}
|
|
2468
2483
|
static {
|
|
2469
|
-
this.ɵfac = i035.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i035, type: _EclSiteHeaderComponent, deps: [{ token: EclLanguageService }, { token:
|
|
2484
|
+
this.ɵfac = i035.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i035, type: _EclSiteHeaderComponent, deps: [{ token: EclLanguageService }, { token: i23.TranslateService }, { token: EclThemeService }], target: i035.ɵɵFactoryTarget.Component });
|
|
2470
2485
|
}
|
|
2471
2486
|
static {
|
|
2472
2487
|
this.ɵcmp = i035.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-rc.1", type: _EclSiteHeaderComponent, selector: "ecl-site-header", inputs: { logoUrl: "logoUrl", siteName: "siteName", languageCode: "languageCode" }, outputs: { logoClick: "logoClick", languageClick: "languageClick" }, host: { properties: { "class": "this.cssClasses" } }, queries: [{ propertyName: "eclLoginComponent", first: true, predicate: EclSiteHeaderLoginComponent, descendants: true }, { propertyName: "eclSearchComponent", first: true, predicate: EclSiteHeaderSearchComponent, descendants: true }, { propertyName: "eclLanguageComponent", first: true, predicate: EclSiteHeaderLanguageComponent, descendants: true }, { propertyName: "eclHeaderLink", first: true, predicate: EclSiteHeaderLinkDirective, descendants: true }], viewQueries: [{ propertyName: "topContainerElement", first: true, predicate: ["topContainer"], descendants: true }], usesInheritance: true, ngImport: i035, template: `<div class="ecl-site-header__background">
|
|
@@ -2524,7 +2539,7 @@ var EclSiteHeaderComponent = class _EclSiteHeaderComponent extends ECLBaseDirect
|
|
|
2524
2539
|
}
|
|
2525
2540
|
|
|
2526
2541
|
<ng-content select="ecl-menu"></ng-content>
|
|
2527
|
-
`, styles: [":host{display:block}\n"], dependencies: [{ kind: "directive", type: EclLinkDirective, selector: "[eclLink]", inputs: ["isInverted", "isIconOnly", "isNoVisited", "variant"] }, { kind: "pipe", type: i52.AsyncPipe, name: "async" }, { kind: "pipe", type:
|
|
2542
|
+
`, styles: [":host{display:block}\n"], dependencies: [{ kind: "directive", type: EclLinkDirective, selector: "[eclLink]", inputs: ["isInverted", "isIconOnly", "isNoVisited", "variant"] }, { kind: "pipe", type: i52.AsyncPipe, name: "async" }, { kind: "pipe", type: i23.TranslatePipe, name: "translate" }] });
|
|
2528
2543
|
}
|
|
2529
2544
|
};
|
|
2530
2545
|
i035.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i035, type: EclSiteHeaderComponent, decorators: [{
|
|
@@ -2585,7 +2600,7 @@ i035.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
2585
2600
|
|
|
2586
2601
|
<ng-content select="ecl-menu"></ng-content>
|
|
2587
2602
|
`, styles: [":host{display:block}\n"] }]
|
|
2588
|
-
}], ctorParameters: () => [{ type: EclLanguageService }, { type:
|
|
2603
|
+
}], ctorParameters: () => [{ type: EclLanguageService }, { type: i23.TranslateService }, { type: EclThemeService }], propDecorators: { logoUrl: [{
|
|
2589
2604
|
type: Input14
|
|
2590
2605
|
}], cssClasses: [{
|
|
2591
2606
|
type: HostBinding22,
|
|
@@ -3107,7 +3122,7 @@ i044.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
3107
3122
|
}] } });
|
|
3108
3123
|
|
|
3109
3124
|
// lib/components/ecl-banner/ecl-banner.component.mjs
|
|
3110
|
-
import { Component as Component18, ContentChild as ContentChild3, ContentChildren as ContentChildren4, HostBinding as HostBinding30, Input as Input15, ViewChild as ViewChild4, booleanAttribute as booleanAttribute8, forwardRef as
|
|
3125
|
+
import { Component as Component18, ContentChild as ContentChild3, ContentChildren as ContentChildren4, HostBinding as HostBinding30, Input as Input15, ViewChild as ViewChild4, booleanAttribute as booleanAttribute8, forwardRef as forwardRef10 } from "@angular/core";
|
|
3111
3126
|
import { Subject as Subject8, delay, takeUntil as takeUntil8 } from "rxjs";
|
|
3112
3127
|
import * as i045 from "@angular/core";
|
|
3113
3128
|
import * as i17 from "@angular/cdk/layout";
|
|
@@ -3239,7 +3254,7 @@ i045.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
3239
3254
|
args: [{ transform: booleanAttribute8 }]
|
|
3240
3255
|
}], eclLinkComponents: [{
|
|
3241
3256
|
type: ContentChildren4,
|
|
3242
|
-
args: [
|
|
3257
|
+
args: [forwardRef10(() => EclLinkDirective)]
|
|
3243
3258
|
}], eclBannerImage: [{
|
|
3244
3259
|
type: ContentChild3,
|
|
3245
3260
|
args: [EclBannerImageDirective]
|
|
@@ -3415,7 +3430,7 @@ i049.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
3415
3430
|
import { Component as Component20, EventEmitter as EventEmitter10, HostBinding as HostBinding33, Input as Input17, Output as Output10, ViewEncapsulation as ViewEncapsulation3, booleanAttribute as booleanAttribute9 } from "@angular/core";
|
|
3416
3431
|
import * as i050 from "@angular/core";
|
|
3417
3432
|
import * as i19 from "@angular/common";
|
|
3418
|
-
import * as
|
|
3433
|
+
import * as i24 from "@angular/router";
|
|
3419
3434
|
var EclBreadcrumbSegmentClickEvent = class extends EclBaseEvent {
|
|
3420
3435
|
};
|
|
3421
3436
|
var EclBreadcrumbSegmentComponent = class _EclBreadcrumbSegmentComponent extends ECLBaseDirective {
|
|
@@ -3451,7 +3466,7 @@ var EclBreadcrumbSegmentComponent = class _EclBreadcrumbSegmentComponent extends
|
|
|
3451
3466
|
this.ɵfac = i050.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i050, type: _EclBreadcrumbSegmentComponent, deps: [{ token: i050.ElementRef }, { token: i050.Renderer2 }], target: i050.ɵɵFactoryTarget.Component });
|
|
3452
3467
|
}
|
|
3453
3468
|
static {
|
|
3454
|
-
this.ɵcmp = i050.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-rc.1", type: _EclBreadcrumbSegmentComponent, selector: "ecl-breadcrumb-segment", inputs: { routerLink: "routerLink", queryParams: "queryParams", href: "href", queryParamsHandling: "queryParamsHandling", isEllipsis: ["isEllipsis", "isEllipsis", booleanAttribute9], isCurrentPage: ["isCurrentPage", "isCurrentPage", booleanAttribute9], isHidden: ["isHidden", "isHidden", booleanAttribute9] }, outputs: { segmentClick: "segmentClick" }, host: { properties: { "attr.tabindex": "this.tabIndex", "attr.role": "this.role", "attr.aria-hidden": "this.isHidden", "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i050, template: '@if (!isEllipsis) {\n@if (!isCurrentPage && href) {\n<a eclLink variant="standalone" [isNoVisited]="true" [href]="href" tabindex="0" (click)="onSegmentClick($event)"\n class="ecl-breadcrumb__link">\n <ng-container *ngTemplateOutlet="content"></ng-container>\n</a>\n}\n@if (!isCurrentPage && !href) {\n<a eclLink [routerLink]="routerLink" [queryParams]="queryParams" [queryParamsHandling]="queryParamsHandling"\n variant="standalone" [isNoVisited]="true" tabindex="0" (click)="onSegmentClick($event)"\n class="ecl-breadcrumb__link">\n <ng-container *ngTemplateOutlet="content"></ng-container>\n</a>\n}\n} @else {\n<ng-container *ngTemplateOutlet="content"></ng-container>\n}\n\n@if (isCurrentPage) {\n<ng-container *ngTemplateOutlet="content"></ng-container>\n} @else {\n<ecl-icon role="presentation" icon="corner-arrow" ariaHidden="true" focusable="false" size="fluid"\n class="ecl-breadcrumb__icon">\n</ecl-icon>\n}\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>', dependencies: [{ kind: "directive", type: i19.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type:
|
|
3469
|
+
this.ɵcmp = i050.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-rc.1", type: _EclBreadcrumbSegmentComponent, selector: "ecl-breadcrumb-segment", inputs: { routerLink: "routerLink", queryParams: "queryParams", href: "href", queryParamsHandling: "queryParamsHandling", isEllipsis: ["isEllipsis", "isEllipsis", booleanAttribute9], isCurrentPage: ["isCurrentPage", "isCurrentPage", booleanAttribute9], isHidden: ["isHidden", "isHidden", booleanAttribute9] }, outputs: { segmentClick: "segmentClick" }, host: { properties: { "attr.tabindex": "this.tabIndex", "attr.role": "this.role", "attr.aria-hidden": "this.isHidden", "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i050, template: '@if (!isEllipsis) {\n@if (!isCurrentPage && href) {\n<a eclLink variant="standalone" [isNoVisited]="true" [href]="href" tabindex="0" (click)="onSegmentClick($event)"\n class="ecl-breadcrumb__link">\n <ng-container *ngTemplateOutlet="content"></ng-container>\n</a>\n}\n@if (!isCurrentPage && !href) {\n<a eclLink [routerLink]="routerLink" [queryParams]="queryParams" [queryParamsHandling]="queryParamsHandling"\n variant="standalone" [isNoVisited]="true" tabindex="0" (click)="onSegmentClick($event)"\n class="ecl-breadcrumb__link">\n <ng-container *ngTemplateOutlet="content"></ng-container>\n</a>\n}\n} @else {\n<ng-container *ngTemplateOutlet="content"></ng-container>\n}\n\n@if (isCurrentPage) {\n<ng-container *ngTemplateOutlet="content"></ng-container>\n} @else {\n<ecl-icon role="presentation" icon="corner-arrow" ariaHidden="true" focusable="false" size="fluid"\n class="ecl-breadcrumb__icon">\n</ecl-icon>\n}\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>', dependencies: [{ kind: "directive", type: i19.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i24.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "directive", type: EclLinkDirective, selector: "[eclLink]", inputs: ["isInverted", "isIconOnly", "isNoVisited", "variant"] }, { kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }], encapsulation: i050.ViewEncapsulation.None });
|
|
3455
3470
|
}
|
|
3456
3471
|
};
|
|
3457
3472
|
i050.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i050, type: EclBreadcrumbSegmentComponent, decorators: [{
|
|
@@ -3491,7 +3506,7 @@ i050.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
3491
3506
|
}] } });
|
|
3492
3507
|
|
|
3493
3508
|
// lib/components/ecl-breadcrumb/ecl-breadcrumb.component.mjs
|
|
3494
|
-
import { Component as Component21, ContentChildren as ContentChildren5, HostBinding as HostBinding34, Input as Input18, ViewChild as ViewChild5, booleanAttribute as booleanAttribute10, forwardRef as
|
|
3509
|
+
import { Component as Component21, ContentChildren as ContentChildren5, HostBinding as HostBinding34, Input as Input18, ViewChild as ViewChild5, booleanAttribute as booleanAttribute10, forwardRef as forwardRef12, HostListener as HostListener5 } from "@angular/core";
|
|
3495
3510
|
import { Subject as Subject9, takeUntil as takeUntil9 } from "rxjs";
|
|
3496
3511
|
import * as i051 from "@angular/core";
|
|
3497
3512
|
import * as i110 from "@ngx-translate/core";
|
|
@@ -3659,7 +3674,7 @@ i051.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
3659
3674
|
args: ["breadcrumbContainer"]
|
|
3660
3675
|
}], eclSegments: [{
|
|
3661
3676
|
type: ContentChildren5,
|
|
3662
|
-
args: [
|
|
3677
|
+
args: [forwardRef12(() => EclBreadcrumbSegmentComponent)]
|
|
3663
3678
|
}], cssClasses: [{
|
|
3664
3679
|
type: HostBinding34,
|
|
3665
3680
|
args: ["class"]
|
|
@@ -4271,7 +4286,7 @@ i059.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
4271
4286
|
}] } });
|
|
4272
4287
|
|
|
4273
4288
|
// lib/components/ecl-card/ecl-card.component.mjs
|
|
4274
|
-
import { Component as Component24, HostBinding as HostBinding40, ContentChild as ContentChild5, forwardRef as
|
|
4289
|
+
import { Component as Component24, HostBinding as HostBinding40, ContentChild as ContentChild5, forwardRef as forwardRef14 } from "@angular/core";
|
|
4275
4290
|
import * as i060 from "@angular/core";
|
|
4276
4291
|
var EclCardComponent = class _EclCardComponent extends ECLBaseDirective {
|
|
4277
4292
|
get cssClasses() {
|
|
@@ -4316,13 +4331,13 @@ i060.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
4316
4331
|
args: ["class"]
|
|
4317
4332
|
}], eclContentBlock: [{
|
|
4318
4333
|
type: ContentChild5,
|
|
4319
|
-
args: [
|
|
4334
|
+
args: [forwardRef14(() => EclContentBlockComponent), { descendants: true }]
|
|
4320
4335
|
}], eclContentBlockTitle: [{
|
|
4321
4336
|
type: ContentChild5,
|
|
4322
|
-
args: [
|
|
4337
|
+
args: [forwardRef14(() => EclContentBlockTitleDirective), { descendants: true }]
|
|
4323
4338
|
}], eclCardImage: [{
|
|
4324
4339
|
type: ContentChild5,
|
|
4325
|
-
args: [
|
|
4340
|
+
args: [forwardRef14(() => EclCardImageDirective), { descendants: true }]
|
|
4326
4341
|
}] } });
|
|
4327
4342
|
|
|
4328
4343
|
// lib/components/ecl-card/ecl-card.module.mjs
|
|
@@ -4360,13 +4375,14 @@ var EclSlideEvent = class extends EclBaseEvent {
|
|
|
4360
4375
|
};
|
|
4361
4376
|
|
|
4362
4377
|
// lib/components/ecl-carousel/ecl-carousel-item.component.mjs
|
|
4363
|
-
import { Component as Component25, EventEmitter as EventEmitter11, HostBinding as HostBinding41, HostListener as HostListener6, Input as Input20, Output as Output11, booleanAttribute as booleanAttribute11, ContentChild as ContentChild6, forwardRef as
|
|
4378
|
+
import { Component as Component25, EventEmitter as EventEmitter11, HostBinding as HostBinding41, HostListener as HostListener6, Input as Input20, Output as Output11, booleanAttribute as booleanAttribute11, ContentChild as ContentChild6, forwardRef as forwardRef16 } from "@angular/core";
|
|
4364
4379
|
import * as i062 from "@angular/core";
|
|
4365
4380
|
var EclCarouselItemComponent = class _EclCarouselItemComponent extends ECLBaseDirective {
|
|
4366
4381
|
constructor(el) {
|
|
4367
4382
|
super();
|
|
4368
4383
|
this.el = el;
|
|
4369
4384
|
this.role = "group";
|
|
4385
|
+
this.roleDescription = "slide";
|
|
4370
4386
|
this.isCurrent = false;
|
|
4371
4387
|
this.slideClick = new EventEmitter11();
|
|
4372
4388
|
}
|
|
@@ -4383,7 +4399,7 @@ var EclCarouselItemComponent = class _EclCarouselItemComponent extends ECLBaseDi
|
|
|
4383
4399
|
this.ɵfac = i062.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i062, type: _EclCarouselItemComponent, deps: [{ token: i062.ElementRef }], target: i062.ɵɵFactoryTarget.Component });
|
|
4384
4400
|
}
|
|
4385
4401
|
static {
|
|
4386
|
-
this.ɵcmp = i062.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.0-rc.1", type: _EclCarouselItemComponent, selector: "ecl-carousel-item", inputs: { id: "id", isCurrent: ["isCurrent", "isCurrent", booleanAttribute11] }, outputs: { slideClick: "slideClick" }, host: { listeners: { "click": "onSlideClick()" }, properties: { "attr.aria-label": "this.ariaLabel", "attr.role": "this.role", "style.width.%": "this.width", "class": "this.cssClasses", "attr.inert": "this.isInert" } }, queries: [{ propertyName: "banner", first: true, predicate: i062.forwardRef(() => EclBannerComponent), descendants: true }], usesInheritance: true, ngImport: i062, template: "<ng-content></ng-content>\n", styles: [":host:before{left:0!important;display:none}\n"] });
|
|
4402
|
+
this.ɵcmp = i062.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.0-rc.1", type: _EclCarouselItemComponent, selector: "ecl-carousel-item", inputs: { id: "id", isCurrent: ["isCurrent", "isCurrent", booleanAttribute11] }, outputs: { slideClick: "slideClick" }, host: { listeners: { "click": "onSlideClick()" }, properties: { "attr.aria-label": "this.ariaLabel", "attr.role": "this.role", "attr.aria-roledescription": "this.roleDescription", "style.width.%": "this.width", "class": "this.cssClasses", "attr.inert": "this.isInert" } }, queries: [{ propertyName: "banner", first: true, predicate: i062.forwardRef(() => EclBannerComponent), descendants: true }], usesInheritance: true, ngImport: i062, template: "<ng-content></ng-content>\n", styles: [":host:before{left:0!important;display:none}\n"] });
|
|
4387
4403
|
}
|
|
4388
4404
|
};
|
|
4389
4405
|
i062.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i062, type: EclCarouselItemComponent, decorators: [{
|
|
@@ -4395,6 +4411,9 @@ i062.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
4395
4411
|
}], role: [{
|
|
4396
4412
|
type: HostBinding41,
|
|
4397
4413
|
args: ["attr.role"]
|
|
4414
|
+
}], roleDescription: [{
|
|
4415
|
+
type: HostBinding41,
|
|
4416
|
+
args: ["attr.aria-roledescription"]
|
|
4398
4417
|
}], width: [{
|
|
4399
4418
|
type: HostBinding41,
|
|
4400
4419
|
args: ["style.width.%"]
|
|
@@ -4407,7 +4426,7 @@ i062.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
4407
4426
|
type: Output11
|
|
4408
4427
|
}], banner: [{
|
|
4409
4428
|
type: ContentChild6,
|
|
4410
|
-
args: [
|
|
4429
|
+
args: [forwardRef16(() => EclBannerComponent)]
|
|
4411
4430
|
}], cssClasses: [{
|
|
4412
4431
|
type: HostBinding41,
|
|
4413
4432
|
args: ["class"]
|
|
@@ -4420,7 +4439,7 @@ i062.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
4420
4439
|
}] } });
|
|
4421
4440
|
|
|
4422
4441
|
// lib/components/ecl-carousel/ecl-carousel.component.mjs
|
|
4423
|
-
import { Component as Component26, ContentChildren as ContentChildren6, EventEmitter as EventEmitter12, HostBinding as HostBinding42, Input as Input21, Output as Output12, ViewChild as ViewChild6, ViewChildren, booleanAttribute as booleanAttribute12, forwardRef as
|
|
4442
|
+
import { Component as Component26, ContentChildren as ContentChildren6, EventEmitter as EventEmitter12, HostBinding as HostBinding42, Input as Input21, Output as Output12, ViewChild as ViewChild6, ViewChildren, booleanAttribute as booleanAttribute12, forwardRef as forwardRef18, numberAttribute as numberAttribute2 } from "@angular/core";
|
|
4424
4443
|
import { Subject as Subject10, Subscription, fromEvent as fromEvent2, interval, switchMap as switchMap2, takeUntil as takeUntil10 } from "rxjs";
|
|
4425
4444
|
import * as i063 from "@angular/core";
|
|
4426
4445
|
import * as i111 from "@angular/cdk/layout";
|
|
@@ -4749,35 +4768,11 @@ var EclCarouselComponent = class _EclCarouselComponent extends ECLBaseDirective
|
|
|
4749
4768
|
this.stopPlaying();
|
|
4750
4769
|
}
|
|
4751
4770
|
}
|
|
4752
|
-
|
|
4753
|
-
if (this.playButton) {
|
|
4754
|
-
this.focusOnButton(this.playButton);
|
|
4755
|
-
}
|
|
4756
|
-
if (this.pauseButton) {
|
|
4757
|
-
this.focusOnButton(this.pauseButton);
|
|
4758
|
-
}
|
|
4759
|
-
} else {
|
|
4760
|
-
setTimeout(() => {
|
|
4761
|
-
this.goToPreviousSlide(false);
|
|
4762
|
-
const button2 = this.navigationButtons.get(this.getCurrentSlideIndex());
|
|
4763
|
-
this.focusOnButton(button2);
|
|
4764
|
-
}, this.TIMEOUT_INTERVAL);
|
|
4765
|
-
}
|
|
4766
|
-
e.preventDefault();
|
|
4771
|
+
this.onNavigationButtonArrowLeft(e, index);
|
|
4767
4772
|
}
|
|
4768
4773
|
onNavigationButtonTab(e, index) {
|
|
4769
|
-
if (this.isLastButton(index)) {
|
|
4770
|
-
|
|
4771
|
-
this.focusOnButton(this.prevButton);
|
|
4772
|
-
e.preventDefault();
|
|
4773
|
-
}
|
|
4774
|
-
} else {
|
|
4775
|
-
setTimeout(() => {
|
|
4776
|
-
this.goToNextSlide(false);
|
|
4777
|
-
const button = this.navigationButtons.get(this.getCurrentSlideIndex());
|
|
4778
|
-
this.focusOnButton(button);
|
|
4779
|
-
}, this.TIMEOUT_INTERVAL);
|
|
4780
|
-
e.preventDefault();
|
|
4774
|
+
if (!this.isLastButton(index)) {
|
|
4775
|
+
this.onNavigationButtonArrowRight(e);
|
|
4781
4776
|
}
|
|
4782
4777
|
}
|
|
4783
4778
|
onNavigationButtonArrowRight(e) {
|
|
@@ -4921,6 +4916,16 @@ var EclCarouselComponent = class _EclCarouselComponent extends ECLBaseDirective
|
|
|
4921
4916
|
<ecl-icon icon="corner-arrow" size="m" transform="rotate-270" class="ecl-button__icon"> </ecl-icon>
|
|
4922
4917
|
</span>
|
|
4923
4918
|
</button>
|
|
4919
|
+
|
|
4920
|
+
<button #nextButton class="ecl-button ecl-button--ghost ecl-carousel__next ecl-button--icon-only" type="button"
|
|
4921
|
+
(click)="onNextSlideClick()">
|
|
4922
|
+
<span class="ecl-button__container">
|
|
4923
|
+
<span class="ecl-button__label">
|
|
4924
|
+
{{ 'ecl.carousel.NEXT-SLIDES' | translate }}
|
|
4925
|
+
</span>
|
|
4926
|
+
<ecl-icon icon="corner-arrow" size="m" transform="rotate-90" class="ecl-button__icon"> </ecl-icon>
|
|
4927
|
+
</span>
|
|
4928
|
+
</button>
|
|
4924
4929
|
}
|
|
4925
4930
|
|
|
4926
4931
|
@if(hasControls()){
|
|
@@ -4937,7 +4942,6 @@ var EclCarouselComponent = class _EclCarouselComponent extends ECLBaseDirective
|
|
|
4937
4942
|
<ecl-icon icon="play-outline" size="m" class="ecl-button__icon ecl-carousel__icon-default">
|
|
4938
4943
|
</ecl-icon>
|
|
4939
4944
|
</span>
|
|
4940
|
-
|
|
4941
4945
|
</button>
|
|
4942
4946
|
|
|
4943
4947
|
<button #pauseButton class="ecl-button ecl-button--ghost ecl-carousel__pause ecl-button--icon-only"
|
|
@@ -4964,20 +4968,7 @@ var EclCarouselComponent = class _EclCarouselComponent extends ECLBaseDirective
|
|
|
4964
4968
|
</div>
|
|
4965
4969
|
</div>
|
|
4966
4970
|
</div>
|
|
4967
|
-
}
|
|
4968
|
-
@if(isButtonNavVisible) {
|
|
4969
|
-
<button #nextButton class="ecl-button ecl-button--ghost ecl-carousel__next ecl-button--icon-only" type="button"
|
|
4970
|
-
(click)="onNextSlideClick()">
|
|
4971
|
-
<span class="ecl-button__container">
|
|
4972
|
-
<span class="ecl-button__label">
|
|
4973
|
-
{{ 'ecl.carousel.NEXT-SLIDES' | translate }}
|
|
4974
|
-
</span>
|
|
4975
|
-
<ecl-icon icon="corner-arrow" size="m" transform="rotate-90" class="ecl-button__icon"> </ecl-icon>
|
|
4976
|
-
</span>
|
|
4977
|
-
|
|
4978
|
-
</button>
|
|
4979
|
-
}
|
|
4980
|
-
`, styles: [":host{display:block}.ecl-carousel__container{width:100%}.ecl-carousel__slides{transition-duration:.4s}\n"], dependencies: [{ kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "component", type: EclCarouselItemComponent, selector: "ecl-carousel-item", inputs: ["id", "isCurrent"], outputs: ["slideClick"] }, { kind: "pipe", type: i53.TranslatePipe, name: "translate" }] });
|
|
4971
|
+
}`, styles: [":host{display:block}.ecl-carousel__container{width:100%}.ecl-carousel__slides{transition-duration:.4s}\n"], dependencies: [{ kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "component", type: EclCarouselItemComponent, selector: "ecl-carousel-item", inputs: ["id", "isCurrent"], outputs: ["slideClick"] }, { kind: "pipe", type: i53.TranslatePipe, name: "translate" }] });
|
|
4981
4972
|
}
|
|
4982
4973
|
};
|
|
4983
4974
|
i063.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i063, type: EclCarouselComponent, decorators: [{
|
|
@@ -5009,6 +5000,16 @@ i063.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
5009
5000
|
<ecl-icon icon="corner-arrow" size="m" transform="rotate-270" class="ecl-button__icon"> </ecl-icon>
|
|
5010
5001
|
</span>
|
|
5011
5002
|
</button>
|
|
5003
|
+
|
|
5004
|
+
<button #nextButton class="ecl-button ecl-button--ghost ecl-carousel__next ecl-button--icon-only" type="button"
|
|
5005
|
+
(click)="onNextSlideClick()">
|
|
5006
|
+
<span class="ecl-button__container">
|
|
5007
|
+
<span class="ecl-button__label">
|
|
5008
|
+
{{ 'ecl.carousel.NEXT-SLIDES' | translate }}
|
|
5009
|
+
</span>
|
|
5010
|
+
<ecl-icon icon="corner-arrow" size="m" transform="rotate-90" class="ecl-button__icon"> </ecl-icon>
|
|
5011
|
+
</span>
|
|
5012
|
+
</button>
|
|
5012
5013
|
}
|
|
5013
5014
|
|
|
5014
5015
|
@if(hasControls()){
|
|
@@ -5025,7 +5026,6 @@ i063.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
5025
5026
|
<ecl-icon icon="play-outline" size="m" class="ecl-button__icon ecl-carousel__icon-default">
|
|
5026
5027
|
</ecl-icon>
|
|
5027
5028
|
</span>
|
|
5028
|
-
|
|
5029
5029
|
</button>
|
|
5030
5030
|
|
|
5031
5031
|
<button #pauseButton class="ecl-button ecl-button--ghost ecl-carousel__pause ecl-button--icon-only"
|
|
@@ -5052,20 +5052,7 @@ i063.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
5052
5052
|
</div>
|
|
5053
5053
|
</div>
|
|
5054
5054
|
</div>
|
|
5055
|
-
}
|
|
5056
|
-
@if(isButtonNavVisible) {
|
|
5057
|
-
<button #nextButton class="ecl-button ecl-button--ghost ecl-carousel__next ecl-button--icon-only" type="button"
|
|
5058
|
-
(click)="onNextSlideClick()">
|
|
5059
|
-
<span class="ecl-button__container">
|
|
5060
|
-
<span class="ecl-button__label">
|
|
5061
|
-
{{ 'ecl.carousel.NEXT-SLIDES' | translate }}
|
|
5062
|
-
</span>
|
|
5063
|
-
<ecl-icon icon="corner-arrow" size="m" transform="rotate-90" class="ecl-button__icon"> </ecl-icon>
|
|
5064
|
-
</span>
|
|
5065
|
-
|
|
5066
|
-
</button>
|
|
5067
|
-
}
|
|
5068
|
-
`, styles: [":host{display:block}.ecl-carousel__container{width:100%}.ecl-carousel__slides{transition-duration:.4s}\n"] }]
|
|
5055
|
+
}`, styles: [":host{display:block}.ecl-carousel__container{width:100%}.ecl-carousel__slides{transition-duration:.4s}\n"] }]
|
|
5069
5056
|
}], ctorParameters: () => [{ type: i111.BreakpointObserver }, { type: i063.ChangeDetectorRef }, { type: i063.Renderer2 }, { type: EclRtlService }], propDecorators: { ariaLabel: [{
|
|
5070
5057
|
type: HostBinding42,
|
|
5071
5058
|
args: ["attr.aria-label"]
|
|
@@ -5088,7 +5075,7 @@ i063.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
5088
5075
|
args: ["carouselContainer"]
|
|
5089
5076
|
}], slides: [{
|
|
5090
5077
|
type: ContentChildren6,
|
|
5091
|
-
args: [
|
|
5078
|
+
args: [forwardRef18(() => EclCarouselItemComponent)]
|
|
5092
5079
|
}], navigationButtons: [{
|
|
5093
5080
|
type: ViewChildren,
|
|
5094
5081
|
args: ["currButton"]
|
|
@@ -5153,7 +5140,7 @@ var EclCategoryFilterItemSelectEvent = class extends EclBaseEvent {
|
|
|
5153
5140
|
};
|
|
5154
5141
|
|
|
5155
5142
|
// lib/components/ecl-category-filter/ecl-category-filter-list/ecl-category-filter-list.component.mjs
|
|
5156
|
-
import { Component as Component27, ContentChildren as ContentChildren7, forwardRef as
|
|
5143
|
+
import { Component as Component27, ContentChildren as ContentChildren7, forwardRef as forwardRef20, HostBinding as HostBinding43 } from "@angular/core";
|
|
5157
5144
|
import * as i065 from "@angular/core";
|
|
5158
5145
|
var EclCategoryFilterListComponent = class _EclCategoryFilterListComponent extends ECLBaseDirective {
|
|
5159
5146
|
constructor() {
|
|
@@ -5200,13 +5187,13 @@ i065.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
5200
5187
|
args: ["attr.aria-controls"]
|
|
5201
5188
|
}], eclCategoryFilterItems: [{
|
|
5202
5189
|
type: ContentChildren7,
|
|
5203
|
-
args: [
|
|
5190
|
+
args: [forwardRef20(() => EclCategoryFilterItemComponent)]
|
|
5204
5191
|
}] } });
|
|
5205
5192
|
|
|
5206
5193
|
// lib/components/ecl-category-filter/ecl-category-filter-list/ecl-category-filter-item.component.mjs
|
|
5207
|
-
import { Component as Component28, ContentChild as ContentChild7, EventEmitter as EventEmitter13, forwardRef as
|
|
5194
|
+
import { Component as Component28, ContentChild as ContentChild7, EventEmitter as EventEmitter13, forwardRef as forwardRef22, HostBinding as HostBinding44, Input as Input22, Output as Output13 } from "@angular/core";
|
|
5208
5195
|
import * as i066 from "@angular/core";
|
|
5209
|
-
import * as
|
|
5196
|
+
import * as i25 from "@angular/common";
|
|
5210
5197
|
var EclCategoryFilterItemComponent = class _EclCategoryFilterItemComponent extends ECLBaseDirective {
|
|
5211
5198
|
constructor() {
|
|
5212
5199
|
super(...arguments);
|
|
@@ -5265,7 +5252,7 @@ var EclCategoryFilterItemComponent = class _EclCategoryFilterItemComponent exten
|
|
|
5265
5252
|
this.ɵfac = i066.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i066, type: _EclCategoryFilterItemComponent, deps: null, target: i066.ɵɵFactoryTarget.Component });
|
|
5266
5253
|
}
|
|
5267
5254
|
static {
|
|
5268
|
-
this.ɵcmp = i066.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-rc.1", type: _EclCategoryFilterItemComponent, selector: "ecl-category-filter-item", inputs: { href: "href", id: "id" }, outputs: { itemSelect: "itemSelect" }, host: { properties: { "class.ecl-category-filter__list-item": "this.className", "attr.role": "this.role", "class.ecl-category-filter__list-item--open": "this.isAriaExpanded" } }, queries: [{ propertyName: "eclCategoryList", first: true, predicate: i066.forwardRef(() => EclCategoryFilterListComponent), descendants: true }], usesInheritance: true, ngImport: i066, template: '@if (hasChildren) {\n <button\n class="ecl-category-filter__item {{ levelClass }}"\n [class.ecl-category-filter__item--has-children]="hasChildren"\n [class.ecl-category-filter__item--current]="isCurrent"\n [attr.aria-current]="isCurrent ? true : null"\n [attr.aria-expanded] = "isExpanded"\n [attr.aria-controls]="id"\n (click)="onItemClick($event)">\n <ng-container *ngTemplateOutlet="content"></ng-container>\n @if(isChildItemWithChildren) {\n <ecl-icon icon="solid-arrow" size="xs" transform="rotate-90" class="ecl-category-filter__item-icon"> </ecl-icon>\n }\n @if(isRootItemWithChildren) {\n <ecl-icon icon="corner-arrow" size="xs" transform="rotate-180" class="ecl-category-filter__item-icon"> </ecl-icon>\n }\n </button>\n} @else {\n <a\n [href]="href"\n class="ecl-category-filter__item {{ levelClass }}"\n [class.ecl-category-filter__item--has-children]="hasChildren"\n (click)="onItemClick($event)">\n @if(isChildItemWithChildren) {\n <ecl-icon icon="solid-arrow" size="xs" transform="rotate-90" class="ecl-category-filter__item-icon"> </ecl-icon>\n }\n <ng-container *ngTemplateOutlet="content"></ng-container>\n @if(isRootItemWithChildren) {\n <ecl-icon icon="corner-arrow" size="xs" transform="rotate-180" class="ecl-category-filter__item-icon"> </ecl-icon>\n }\n </a>\n}\n<ng-content select="ecl-category-filter-list"></ng-content>\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>\n', dependencies: [{ kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "directive", type:
|
|
5255
|
+
this.ɵcmp = i066.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-rc.1", type: _EclCategoryFilterItemComponent, selector: "ecl-category-filter-item", inputs: { href: "href", id: "id" }, outputs: { itemSelect: "itemSelect" }, host: { properties: { "class.ecl-category-filter__list-item": "this.className", "attr.role": "this.role", "class.ecl-category-filter__list-item--open": "this.isAriaExpanded" } }, queries: [{ propertyName: "eclCategoryList", first: true, predicate: i066.forwardRef(() => EclCategoryFilterListComponent), descendants: true }], usesInheritance: true, ngImport: i066, template: '@if (hasChildren) {\n <button\n class="ecl-category-filter__item {{ levelClass }}"\n [class.ecl-category-filter__item--has-children]="hasChildren"\n [class.ecl-category-filter__item--current]="isCurrent"\n [attr.aria-current]="isCurrent ? true : null"\n [attr.aria-expanded] = "isExpanded"\n [attr.aria-controls]="id"\n (click)="onItemClick($event)">\n <ng-container *ngTemplateOutlet="content"></ng-container>\n @if(isChildItemWithChildren) {\n <ecl-icon icon="solid-arrow" size="xs" transform="rotate-90" class="ecl-category-filter__item-icon"> </ecl-icon>\n }\n @if(isRootItemWithChildren) {\n <ecl-icon icon="corner-arrow" size="xs" transform="rotate-180" class="ecl-category-filter__item-icon"> </ecl-icon>\n }\n </button>\n} @else {\n <a\n [href]="href"\n class="ecl-category-filter__item {{ levelClass }}"\n [class.ecl-category-filter__item--has-children]="hasChildren"\n (click)="onItemClick($event)">\n @if(isChildItemWithChildren) {\n <ecl-icon icon="solid-arrow" size="xs" transform="rotate-90" class="ecl-category-filter__item-icon"> </ecl-icon>\n }\n <ng-container *ngTemplateOutlet="content"></ng-container>\n @if(isRootItemWithChildren) {\n <ecl-icon icon="corner-arrow" size="xs" transform="rotate-180" class="ecl-category-filter__item-icon"> </ecl-icon>\n }\n </a>\n}\n<ng-content select="ecl-category-filter-list"></ng-content>\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>\n', dependencies: [{ kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "directive", type: i25.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }] });
|
|
5269
5256
|
}
|
|
5270
5257
|
};
|
|
5271
5258
|
i066.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i066, type: EclCategoryFilterItemComponent, decorators: [{
|
|
@@ -5288,11 +5275,11 @@ i066.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
5288
5275
|
args: ["class.ecl-category-filter__list-item--open"]
|
|
5289
5276
|
}], eclCategoryList: [{
|
|
5290
5277
|
type: ContentChild7,
|
|
5291
|
-
args: [
|
|
5278
|
+
args: [forwardRef22(() => EclCategoryFilterListComponent)]
|
|
5292
5279
|
}] } });
|
|
5293
5280
|
|
|
5294
5281
|
// lib/components/ecl-category-filter/ecl-category-filter/ecl-category-filter.component.mjs
|
|
5295
|
-
import { Component as Component29, ContentChild as ContentChild8, ContentChildren as ContentChildren8, forwardRef as
|
|
5282
|
+
import { Component as Component29, ContentChild as ContentChild8, ContentChildren as ContentChildren8, forwardRef as forwardRef24, HostBinding as HostBinding45, Input as Input23 } from "@angular/core";
|
|
5296
5283
|
import { Subject as Subject11, takeUntil as takeUntil11 } from "rxjs";
|
|
5297
5284
|
import { v4 as uuidgen2 } from "uuid";
|
|
5298
5285
|
import * as i067 from "@angular/core";
|
|
@@ -5404,10 +5391,10 @@ i067.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
5404
5391
|
args: ["aria-label"]
|
|
5405
5392
|
}], eclCategoryList: [{
|
|
5406
5393
|
type: ContentChild8,
|
|
5407
|
-
args: [
|
|
5394
|
+
args: [forwardRef24(() => EclCategoryFilterListComponent)]
|
|
5408
5395
|
}], eclCategoryFilterItemsAll: [{
|
|
5409
5396
|
type: ContentChildren8,
|
|
5410
|
-
args: [
|
|
5397
|
+
args: [forwardRef24(() => EclCategoryFilterItemComponent), { descendants: true }]
|
|
5411
5398
|
}] } });
|
|
5412
5399
|
|
|
5413
5400
|
// lib/components/ecl-category-filter/ecl-category-filter.module.mjs
|
|
@@ -5537,7 +5524,7 @@ i071.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
5537
5524
|
}] } });
|
|
5538
5525
|
|
|
5539
5526
|
// lib/components/ecl-checkbox/ecl-checkbox.directive.mjs
|
|
5540
|
-
import { ContentChild as ContentChild9, Directive as Directive19, HostBinding as HostBinding49, Input as Input27, booleanAttribute as booleanAttribute16, forwardRef as
|
|
5527
|
+
import { ContentChild as ContentChild9, Directive as Directive19, HostBinding as HostBinding49, Input as Input27, booleanAttribute as booleanAttribute16, forwardRef as forwardRef26 } from "@angular/core";
|
|
5541
5528
|
import * as i072 from "@angular/core";
|
|
5542
5529
|
var EclCheckboxDirective = class _EclCheckboxDirective extends ECLBaseDirective {
|
|
5543
5530
|
constructor() {
|
|
@@ -5597,23 +5584,23 @@ i072.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
5597
5584
|
args: ["class.ecl-checkbox--single"]
|
|
5598
5585
|
}], eclCheckboxLabelComponent: [{
|
|
5599
5586
|
type: ContentChild9,
|
|
5600
|
-
args: [
|
|
5587
|
+
args: [forwardRef26(() => EclCheckboxLabelComponent)]
|
|
5601
5588
|
}], eclCheckboxHelpComponent: [{
|
|
5602
5589
|
type: ContentChild9,
|
|
5603
|
-
args: [
|
|
5590
|
+
args: [forwardRef26(() => EclCheckboxHelpComponent)]
|
|
5604
5591
|
}], eclFormLabelDirective: [{
|
|
5605
5592
|
type: ContentChild9,
|
|
5606
|
-
args: [
|
|
5593
|
+
args: [forwardRef26(() => EclFormLabelComponent)]
|
|
5607
5594
|
}], eclHelpBlockDirective: [{
|
|
5608
5595
|
type: ContentChild9,
|
|
5609
|
-
args: [
|
|
5596
|
+
args: [forwardRef26(() => EclHelpBlockDirective)]
|
|
5610
5597
|
}], cssClasses: [{
|
|
5611
5598
|
type: HostBinding49,
|
|
5612
5599
|
args: ["class"]
|
|
5613
5600
|
}] } });
|
|
5614
5601
|
|
|
5615
5602
|
// lib/components/ecl-checkbox/ecl-checkbox-input.directive.mjs
|
|
5616
|
-
import { Directive as Directive20, forwardRef as
|
|
5603
|
+
import { Directive as Directive20, forwardRef as forwardRef28, HostBinding as HostBinding50, Inject as Inject5, Optional as Optional4, Self as Self2 } from "@angular/core";
|
|
5617
5604
|
import * as i073 from "@angular/core";
|
|
5618
5605
|
import * as i112 from "@angular/forms";
|
|
5619
5606
|
var EclCheckboxInputDirective = class _EclCheckboxInputDirective extends ECLBaseDirective {
|
|
@@ -5634,7 +5621,7 @@ var EclCheckboxInputDirective = class _EclCheckboxInputDirective extends ECLBase
|
|
|
5634
5621
|
}
|
|
5635
5622
|
}
|
|
5636
5623
|
static {
|
|
5637
|
-
this.ɵfac = i073.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i073, type: _EclCheckboxInputDirective, deps: [{ token:
|
|
5624
|
+
this.ɵfac = i073.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i073, type: _EclCheckboxInputDirective, deps: [{ token: forwardRef28(() => EclCheckboxDirective) }, { token: i112.NgControl, optional: true, self: true }], target: i073.ɵɵFactoryTarget.Directive });
|
|
5638
5625
|
}
|
|
5639
5626
|
static {
|
|
5640
5627
|
this.ɵdir = i073.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.0-rc.1", type: _EclCheckboxInputDirective, selector: "input[eclCheckboxInput]", host: { properties: { "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i073 });
|
|
@@ -5646,8 +5633,8 @@ i073.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
5646
5633
|
selector: "input[eclCheckboxInput]"
|
|
5647
5634
|
}]
|
|
5648
5635
|
}], ctorParameters: () => [{ type: EclCheckboxDirective, decorators: [{
|
|
5649
|
-
type:
|
|
5650
|
-
args: [
|
|
5636
|
+
type: Inject5,
|
|
5637
|
+
args: [forwardRef28(() => EclCheckboxDirective)]
|
|
5651
5638
|
}] }, { type: i112.NgControl, decorators: [{
|
|
5652
5639
|
type: Optional4
|
|
5653
5640
|
}, {
|
|
@@ -5748,7 +5735,7 @@ import { formatDate } from "@angular/common";
|
|
|
5748
5735
|
import { Component as Component32, Input as Input29, HostBinding as HostBinding52 } from "@angular/core";
|
|
5749
5736
|
import * as i076 from "@angular/core";
|
|
5750
5737
|
import * as i113 from "@ngx-translate/core";
|
|
5751
|
-
import * as
|
|
5738
|
+
import * as i26 from "@angular/common";
|
|
5752
5739
|
var EclDateBlockComponent = class _EclDateBlockComponent extends ECLBaseDirective {
|
|
5753
5740
|
get cssClasses() {
|
|
5754
5741
|
return [super.getCssClasses("ecl-date-block"), this.variant ? `ecl-date-block--${this.variant}` : ""].join(" ").trim();
|
|
@@ -5788,7 +5775,7 @@ var EclDateBlockComponent = class _EclDateBlockComponent extends ECLBaseDirectiv
|
|
|
5788
5775
|
{{ month || (date | date: 'MMM' : '' : locale) }}
|
|
5789
5776
|
</abbr>
|
|
5790
5777
|
<span class="ecl-date-block__year" aria-hidden="true">{{ year || (date | date: 'yyyy') }}</span>
|
|
5791
|
-
`, dependencies: [{ kind: "pipe", type:
|
|
5778
|
+
`, dependencies: [{ kind: "pipe", type: i26.DatePipe, name: "date" }] });
|
|
5792
5779
|
}
|
|
5793
5780
|
};
|
|
5794
5781
|
i076.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i076, type: EclDateBlockComponent, decorators: [{
|
|
@@ -5825,7 +5812,7 @@ i076.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
5825
5812
|
}] } });
|
|
5826
5813
|
|
|
5827
5814
|
// lib/components/ecl-content-item/ecl-content-item.component.mjs
|
|
5828
|
-
import { Component as Component33, ContentChild as ContentChild10, forwardRef as
|
|
5815
|
+
import { Component as Component33, ContentChild as ContentChild10, forwardRef as forwardRef29, HostBinding as HostBinding53 } from "@angular/core";
|
|
5829
5816
|
import * as i077 from "@angular/core";
|
|
5830
5817
|
var EclContentItemComponent = class _EclContentItemComponent extends ECLBaseDirective {
|
|
5831
5818
|
get cssClasses() {
|
|
@@ -5877,19 +5864,19 @@ i077.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
5877
5864
|
args: [{ selector: "ecl-content-item", template: "<ng-content></ng-content>\n" }]
|
|
5878
5865
|
}], ctorParameters: () => [{ type: i077.Renderer2 }], propDecorators: { eclContentBlock: [{
|
|
5879
5866
|
type: ContentChild10,
|
|
5880
|
-
args: [
|
|
5867
|
+
args: [forwardRef29(() => EclContentBlockComponent)]
|
|
5881
5868
|
}], eclDateBlock: [{
|
|
5882
5869
|
type: ContentChild10,
|
|
5883
|
-
args: [
|
|
5870
|
+
args: [forwardRef29(() => EclDateBlockComponent)]
|
|
5884
5871
|
}], eclContentItemPicture: [{
|
|
5885
5872
|
type: ContentChild10,
|
|
5886
|
-
args: [
|
|
5873
|
+
args: [forwardRef29(() => EclContentItemPictureDirective)]
|
|
5887
5874
|
}], eclContentBlockTitle: [{
|
|
5888
5875
|
type: ContentChild10,
|
|
5889
|
-
args: [
|
|
5876
|
+
args: [forwardRef29(() => EclContentBlockTitleDirective), { descendants: true }]
|
|
5890
5877
|
}], eclContentItemImage: [{
|
|
5891
5878
|
type: ContentChild10,
|
|
5892
|
-
args: [
|
|
5879
|
+
args: [forwardRef29(() => EclContentItemImageDirective), { descendants: true }]
|
|
5893
5880
|
}], role: [{
|
|
5894
5881
|
type: HostBinding53,
|
|
5895
5882
|
args: ["attr.role"]
|
|
@@ -5973,7 +5960,7 @@ i079.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
5973
5960
|
}] });
|
|
5974
5961
|
|
|
5975
5962
|
// lib/components/ecl-date-picker/ecl-date-picker.directive.mjs
|
|
5976
|
-
import { Directive as Directive22, HostBinding as HostBinding54, Input as Input30, Output as Output14, EventEmitter as EventEmitter14, forwardRef as
|
|
5963
|
+
import { Directive as Directive22, HostBinding as HostBinding54, Input as Input30, Output as Output14, EventEmitter as EventEmitter14, forwardRef as forwardRef31, HostListener as HostListener7, Inject as Inject6, PLATFORM_ID } from "@angular/core";
|
|
5977
5964
|
import { NG_VALUE_ACCESSOR as NG_VALUE_ACCESSOR3 } from "@angular/forms";
|
|
5978
5965
|
import { isPlatformBrowser } from "@angular/common";
|
|
5979
5966
|
import Pikaday from "pikaday";
|
|
@@ -5995,7 +5982,7 @@ var EclDatePickerDatePickedEvent = class extends EclBaseEvent {
|
|
|
5995
5982
|
};
|
|
5996
5983
|
var ECL_DATE_PICKER_VALUE_ACCESSOR = {
|
|
5997
5984
|
provide: NG_VALUE_ACCESSOR3,
|
|
5998
|
-
useExisting:
|
|
5985
|
+
useExisting: forwardRef31(() => EclDatePickerDirective),
|
|
5999
5986
|
multi: true
|
|
6000
5987
|
};
|
|
6001
5988
|
var noop3 = () => {
|
|
@@ -6136,7 +6123,7 @@ var EclDatePickerDirective = class _EclDatePickerDirective extends ECLBaseDirect
|
|
|
6136
6123
|
const eclIconComponent = this.viewContainerRef.createComponent(EclIconComponent);
|
|
6137
6124
|
eclIconComponent.instance.size = "xs";
|
|
6138
6125
|
eclIconComponent.instance.icon = "calendar";
|
|
6139
|
-
eclIconComponent.instance.class = "ecl-datepicker__icon";
|
|
6126
|
+
eclIconComponent.instance.baseDirective.class = "ecl-datepicker__icon";
|
|
6140
6127
|
return eclIconComponent.location.nativeElement;
|
|
6141
6128
|
}
|
|
6142
6129
|
static {
|
|
@@ -6153,7 +6140,7 @@ i080.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
6153
6140
|
providers: [ECL_DATE_PICKER_VALUE_ACCESSOR]
|
|
6154
6141
|
}]
|
|
6155
6142
|
}], ctorParameters: () => [{ type: i080.ElementRef }, { type: i080.ViewContainerRef }, { type: i114.TranslateService }, { type: EclLanguageService }, { type: i080.Renderer2 }, { type: void 0, decorators: [{
|
|
6156
|
-
type:
|
|
6143
|
+
type: Inject6,
|
|
6157
6144
|
args: [PLATFORM_ID]
|
|
6158
6145
|
}] }], propDecorators: { yearRange: [{
|
|
6159
6146
|
type: Input30
|
|
@@ -6360,7 +6347,7 @@ var EclFactFiguresItemComponent = class _EclFactFiguresItemComponent extends ECL
|
|
|
6360
6347
|
ngAfterContentInit() {
|
|
6361
6348
|
if (this.eclIconComponents) {
|
|
6362
6349
|
this.eclIconComponents.forEach((eclIcon) => {
|
|
6363
|
-
eclIcon.class = [eclIcon.class, "ecl-fact-figures__icon"].join(" ");
|
|
6350
|
+
eclIcon.baseDirective.class = [eclIcon.baseDirective.class, "ecl-fact-figures__icon"].join(" ");
|
|
6364
6351
|
});
|
|
6365
6352
|
}
|
|
6366
6353
|
}
|
|
@@ -6953,7 +6940,7 @@ i0101.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
6953
6940
|
}] });
|
|
6954
6941
|
|
|
6955
6942
|
// lib/components/ecl-feedback-message/ecl-feedback-message.directive.mjs
|
|
6956
|
-
import { ContentChildren as ContentChildren10, Directive as Directive27, forwardRef as
|
|
6943
|
+
import { ContentChildren as ContentChildren10, Directive as Directive27, forwardRef as forwardRef32, HostBinding as HostBinding71 } from "@angular/core";
|
|
6957
6944
|
import * as i0102 from "@angular/core";
|
|
6958
6945
|
var EclFeedbackMessageDirective = class _EclFeedbackMessageDirective extends ECLBaseDirective {
|
|
6959
6946
|
get cssClasses() {
|
|
@@ -6963,7 +6950,7 @@ var EclFeedbackMessageDirective = class _EclFeedbackMessageDirective extends ECL
|
|
|
6963
6950
|
if (this.eclIconComponents) {
|
|
6964
6951
|
setTimeout(() => {
|
|
6965
6952
|
this.eclIconComponents.forEach((icn) => {
|
|
6966
|
-
icn.class = [icn.class, "ecl-feedback-message__icon"].join(" ");
|
|
6953
|
+
icn.baseDirective.class = [icn.baseDirective.class, "ecl-feedback-message__icon"].join(" ");
|
|
6967
6954
|
});
|
|
6968
6955
|
});
|
|
6969
6956
|
}
|
|
@@ -6985,7 +6972,7 @@ i0102.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
6985
6972
|
args: ["class"]
|
|
6986
6973
|
}], eclIconComponents: [{
|
|
6987
6974
|
type: ContentChildren10,
|
|
6988
|
-
args: [
|
|
6975
|
+
args: [forwardRef32(() => EclIconComponent)]
|
|
6989
6976
|
}] } });
|
|
6990
6977
|
|
|
6991
6978
|
// lib/components/ecl-feedback-message/ecl-feedback-message.module.mjs
|
|
@@ -7018,7 +7005,7 @@ import { takeUntil as takeUntil13 } from "rxjs/operators";
|
|
|
7018
7005
|
import { Subject as Subject13 } from "rxjs";
|
|
7019
7006
|
import * as i0104 from "@angular/core";
|
|
7020
7007
|
import * as i115 from "@angular/forms";
|
|
7021
|
-
import * as
|
|
7008
|
+
import * as i27 from "@ngx-translate/core";
|
|
7022
7009
|
var EclFileUploadFileSelectedEvent = class extends EclBaseEvent {
|
|
7023
7010
|
constructor(files) {
|
|
7024
7011
|
super();
|
|
@@ -7177,7 +7164,7 @@ var EclFileUploadDirective = class _EclFileUploadDirective extends ECLBaseDirect
|
|
|
7177
7164
|
return `${parseFloat((bytes / k ** i).toFixed(dm))} ${sizes[i]}`;
|
|
7178
7165
|
}
|
|
7179
7166
|
static {
|
|
7180
|
-
this.ɵfac = i0104.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i0104, type: _EclFileUploadDirective, deps: [{ token: i115.NgControl, optional: true, self: true }, { token: i0104.ElementRef }, { token:
|
|
7167
|
+
this.ɵfac = i0104.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i0104, type: _EclFileUploadDirective, deps: [{ token: i115.NgControl, optional: true, self: true }, { token: i0104.ElementRef }, { token: i27.TranslateService }, { token: i0104.Renderer2 }], target: i0104.ɵɵFactoryTarget.Directive });
|
|
7181
7168
|
}
|
|
7182
7169
|
static {
|
|
7183
7170
|
this.ɵdir = i0104.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.0.0-rc.1", type: _EclFileUploadDirective, selector: "[eclFileUpload]", inputs: { variant: "variant", isInvalid: "isInvalid", id: "id", disabled: ["disabled", "disabled", booleanAttribute20], multiple: ["multiple", "multiple", booleanAttribute20] }, outputs: { filesSelected: "filesSelected" }, host: { listeners: { "click": "onClick($event)", "change": "onFilesSelected($event)" }, properties: { "attr.id": "this.id", "attr.disabled": "this.disabled", "attr.multiple": "this.multiple", "attr.type": "this.type", "class": "this.cssClasses", "class.ecl-file-upload--invalid": "this.invalidState" } }, usesInheritance: true, ngImport: i0104 });
|
|
@@ -7192,7 +7179,7 @@ i0104.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
7192
7179
|
type: Optional5
|
|
7193
7180
|
}, {
|
|
7194
7181
|
type: Self3
|
|
7195
|
-
}] }, { type: i0104.ElementRef }, { type:
|
|
7182
|
+
}] }, { type: i0104.ElementRef }, { type: i27.TranslateService }, { type: i0104.Renderer2 }], propDecorators: { variant: [{
|
|
7196
7183
|
type: Input38
|
|
7197
7184
|
}], isInvalid: [{
|
|
7198
7185
|
type: Input38
|
|
@@ -7634,7 +7621,7 @@ i0112.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
7634
7621
|
// lib/components/ecl-gallery/ecl-gallery-footer.component.mjs
|
|
7635
7622
|
import { Component as Component50, EventEmitter as EventEmitter18, Output as Output18 } from "@angular/core";
|
|
7636
7623
|
import * as i0113 from "@angular/core";
|
|
7637
|
-
import * as
|
|
7624
|
+
import * as i28 from "@ngx-translate/core";
|
|
7638
7625
|
var EclGalleryToggleItemsEvent = class extends EclBaseEvent {
|
|
7639
7626
|
constructor(expandAll) {
|
|
7640
7627
|
super();
|
|
@@ -7695,7 +7682,7 @@ var EclGalleryFooterComponent = class _EclGalleryFooterComponent {
|
|
|
7695
7682
|
<ng-content></ng-content>
|
|
7696
7683
|
</div>
|
|
7697
7684
|
</div>
|
|
7698
|
-
`, dependencies: [{ kind: "component", type: EclButtonComponent, selector: "button[eclButton], button[ecl-button], a[eclButton]", inputs: ["isIconOnly", "variant", "containerStyleClass"] }, { kind: "pipe", type:
|
|
7685
|
+
`, dependencies: [{ kind: "component", type: EclButtonComponent, selector: "button[eclButton], button[ecl-button], a[eclButton]", inputs: ["isIconOnly", "variant", "containerStyleClass"] }, { kind: "pipe", type: i28.TranslatePipe, name: "translate" }] });
|
|
7699
7686
|
}
|
|
7700
7687
|
};
|
|
7701
7688
|
i0113.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i0113, type: EclGalleryFooterComponent, decorators: [{
|
|
@@ -8847,7 +8834,7 @@ i0123.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
8847
8834
|
}] });
|
|
8848
8835
|
|
|
8849
8836
|
// lib/components/ecl-list-illustration/ecl-list-illustration-item.component.mjs
|
|
8850
|
-
import { Component as Component56, ContentChildren as ContentChildren14, forwardRef as
|
|
8837
|
+
import { Component as Component56, ContentChildren as ContentChildren14, forwardRef as forwardRef34, HostBinding as HostBinding84, Input as Input49 } from "@angular/core";
|
|
8851
8838
|
import * as i0124 from "@angular/core";
|
|
8852
8839
|
var EclListIllustrationItemComponent = class _EclListIllustrationItemComponent extends ECLBaseDirective {
|
|
8853
8840
|
constructor() {
|
|
@@ -8881,7 +8868,7 @@ i0124.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
8881
8868
|
args: ["class.ecl-list-illustration__item"]
|
|
8882
8869
|
}], eclIllustrationIcons: [{
|
|
8883
8870
|
type: ContentChildren14,
|
|
8884
|
-
args: [
|
|
8871
|
+
args: [forwardRef34(() => EclListIllustrationIconDirective)]
|
|
8885
8872
|
}] } });
|
|
8886
8873
|
|
|
8887
8874
|
// lib/components/ecl-list-illustration/ecl-list-illustration-icon.directive.mjs
|
|
@@ -9105,7 +9092,7 @@ i0129.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
9105
9092
|
// lib/components/ecl-list/ecl-description-list-definition/ecl-description-list-definition.component.mjs
|
|
9106
9093
|
import { Component as Component58, ContentChildren as ContentChildren15, HostBinding as HostBinding89, Input as Input52 } from "@angular/core";
|
|
9107
9094
|
import * as i0130 from "@angular/core";
|
|
9108
|
-
import * as
|
|
9095
|
+
import * as i29 from "@ngx-translate/core";
|
|
9109
9096
|
var EclDescriptionListDefinitionComponent = class _EclDescriptionListDefinitionComponent extends ECLBaseDirective {
|
|
9110
9097
|
constructor() {
|
|
9111
9098
|
super(...arguments);
|
|
@@ -9166,7 +9153,7 @@ var EclDescriptionListDefinitionComponent = class _EclDescriptionListDefinitionC
|
|
|
9166
9153
|
<a eclLink class="ecl-description-list__see_more" href (click)="onShowAllItems($event)">{{
|
|
9167
9154
|
'ecl.list.SEE-ALL-ITEMS' | translate
|
|
9168
9155
|
}}</a>
|
|
9169
|
-
}`, dependencies: [{ kind: "directive", type: EclLinkDirective, selector: "[eclLink]", inputs: ["isInverted", "isIconOnly", "isNoVisited", "variant"] }, { kind: "pipe", type:
|
|
9156
|
+
}`, dependencies: [{ kind: "directive", type: EclLinkDirective, selector: "[eclLink]", inputs: ["isInverted", "isIconOnly", "isNoVisited", "variant"] }, { kind: "pipe", type: i29.TranslatePipe, name: "translate" }] });
|
|
9170
9157
|
}
|
|
9171
9158
|
};
|
|
9172
9159
|
i0130.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i0130, type: EclDescriptionListDefinitionComponent, decorators: [{
|
|
@@ -9461,10 +9448,10 @@ var EclMenuItemParentFocusEvent = class {
|
|
|
9461
9448
|
|
|
9462
9449
|
// lib/components/ecl-menu/ecl-menu-mega/ecl-menu-mega-item.component.mjs
|
|
9463
9450
|
import { ENTER } from "@angular/cdk/keycodes";
|
|
9464
|
-
import { Component as Component59, ContentChildren as ContentChildren17, EventEmitter as EventEmitter23, HostBinding as HostBinding91, HostListener as HostListener11, Input as Input54, Output as Output23, ViewChild as ViewChild8, booleanAttribute as booleanAttribute29, forwardRef as
|
|
9451
|
+
import { Component as Component59, ContentChildren as ContentChildren17, EventEmitter as EventEmitter23, HostBinding as HostBinding91, HostListener as HostListener11, Input as Input54, Output as Output23, ViewChild as ViewChild8, booleanAttribute as booleanAttribute29, forwardRef as forwardRef36 } from "@angular/core";
|
|
9465
9452
|
import * as i0133 from "@angular/core";
|
|
9466
9453
|
import * as i119 from "@angular/common";
|
|
9467
|
-
import * as
|
|
9454
|
+
import * as i210 from "@angular/router";
|
|
9468
9455
|
var EclMenuMegaItemComponent = class _EclMenuMegaItemComponent extends ECLBaseDirective {
|
|
9469
9456
|
constructor() {
|
|
9470
9457
|
super(...arguments);
|
|
@@ -9508,7 +9495,7 @@ var EclMenuMegaItemComponent = class _EclMenuMegaItemComponent extends ECLBaseDi
|
|
|
9508
9495
|
if (this.iconComponents) {
|
|
9509
9496
|
setTimeout(() => {
|
|
9510
9497
|
this.iconComponents.forEach((icn) => {
|
|
9511
|
-
icn.class = "ecl-menu__sublink-icon";
|
|
9498
|
+
icn.baseDirective.class = "ecl-menu__sublink-icon";
|
|
9512
9499
|
});
|
|
9513
9500
|
});
|
|
9514
9501
|
}
|
|
@@ -9524,12 +9511,12 @@ var EclMenuMegaItemComponent = class _EclMenuMegaItemComponent extends ECLBaseDi
|
|
|
9524
9511
|
this.ɵfac = i0133.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i0133, type: _EclMenuMegaItemComponent, deps: null, target: i0133.ɵɵFactoryTarget.Component });
|
|
9525
9512
|
}
|
|
9526
9513
|
static {
|
|
9527
|
-
this.ɵcmp = i0133.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-rc.1", type: _EclMenuMegaItemComponent, selector: "ecl-menu-mega-item", inputs: { id: "id", label: "label", routerLink: "routerLink", queryParams: "queryParams", queryParamsHandling: "queryParamsHandling", href: "href", target: "target", isCurrent: ["isCurrent", "isCurrent", booleanAttribute29], isSeeAll: ["isSeeAll", "isSeeAll", booleanAttribute29] }, 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", "class.ecl-menu__see-all": "this.isSeeAll" } }, queries: [{ propertyName: "iconComponents", predicate: i0133.forwardRef(() => EclIconComponent) }, { propertyName: "links", predicate: i0133.forwardRef(() => EclLinkDirective) }], viewQueries: [{ propertyName: "megaMenuLink", first: true, predicate: ["megaMenuLink"], descendants: true }], usesInheritance: true, ngImport: i0133, template: '@if (!isSeeAll) {\n @if (href) {\n <a #megaMenuLink\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 } @else {\n <a #megaMenuLink\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} @else {\n <ng-container *ngTemplateOutlet="content"></ng-container>\n}\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>\n', styles: [":host{display:list-item}\n"], dependencies: [{ kind: "directive", type: i119.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type:
|
|
9514
|
+
this.ɵcmp = i0133.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-rc.1", type: _EclMenuMegaItemComponent, selector: "ecl-menu-mega-item", inputs: { id: "id", label: "label", routerLink: "routerLink", queryParams: "queryParams", queryParamsHandling: "queryParamsHandling", href: "href", target: "target", isCurrent: ["isCurrent", "isCurrent", booleanAttribute29], isSeeAll: ["isSeeAll", "isSeeAll", booleanAttribute29] }, 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", "class.ecl-menu__see-all": "this.isSeeAll" } }, queries: [{ propertyName: "iconComponents", predicate: i0133.forwardRef(() => EclIconComponent) }, { propertyName: "links", predicate: i0133.forwardRef(() => EclLinkDirective) }], viewQueries: [{ propertyName: "megaMenuLink", first: true, predicate: ["megaMenuLink"], descendants: true }], usesInheritance: true, ngImport: i0133, template: '@if (!isSeeAll) {\n @if (href) {\n <a #megaMenuLink\n [href]="href"\n [target]="target"\n class="ecl-link ecl-link--standalone 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 } @else {\n <a #megaMenuLink\n tabindex="0"\n [routerLink]="routerLink"\n [queryParams]="queryParams"\n [queryParamsHandling]="queryParamsHandling"\n class="ecl-link ecl-link--standalone 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} @else {\n <ng-container *ngTemplateOutlet="content"></ng-container>\n}\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>\n', styles: [":host{display:list-item}\n"], dependencies: [{ kind: "directive", type: i119.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i210.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }] });
|
|
9528
9515
|
}
|
|
9529
9516
|
};
|
|
9530
9517
|
i0133.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i0133, type: EclMenuMegaItemComponent, decorators: [{
|
|
9531
9518
|
type: Component59,
|
|
9532
|
-
args: [{ selector: "ecl-menu-mega-item", template: '@if (!isSeeAll) {\n @if (href) {\n <a #megaMenuLink\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 } @else {\n <a #megaMenuLink\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} @else {\n <ng-container *ngTemplateOutlet="content"></ng-container>\n}\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>\n', styles: [":host{display:list-item}\n"] }]
|
|
9519
|
+
args: [{ selector: "ecl-menu-mega-item", template: '@if (!isSeeAll) {\n @if (href) {\n <a #megaMenuLink\n [href]="href"\n [target]="target"\n class="ecl-link ecl-link--standalone 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 } @else {\n <a #megaMenuLink\n tabindex="0"\n [routerLink]="routerLink"\n [queryParams]="queryParams"\n [queryParamsHandling]="queryParamsHandling"\n class="ecl-link ecl-link--standalone 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} @else {\n <ng-container *ngTemplateOutlet="content"></ng-container>\n}\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>\n', styles: [":host{display:list-item}\n"] }]
|
|
9533
9520
|
}], propDecorators: { id: [{
|
|
9534
9521
|
type: Input54
|
|
9535
9522
|
}], label: [{
|
|
@@ -9564,10 +9551,10 @@ i0133.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
9564
9551
|
args: ["class.ecl-menu__see-all"]
|
|
9565
9552
|
}], iconComponents: [{
|
|
9566
9553
|
type: ContentChildren17,
|
|
9567
|
-
args: [
|
|
9554
|
+
args: [forwardRef36(() => EclIconComponent)]
|
|
9568
9555
|
}], links: [{
|
|
9569
9556
|
type: ContentChildren17,
|
|
9570
|
-
args: [
|
|
9557
|
+
args: [forwardRef36(() => EclLinkDirective)]
|
|
9571
9558
|
}], megaMenuLink: [{
|
|
9572
9559
|
type: ViewChild8,
|
|
9573
9560
|
args: ["megaMenuLink"]
|
|
@@ -9725,7 +9712,7 @@ i0134.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
9725
9712
|
}] } });
|
|
9726
9713
|
|
|
9727
9714
|
// lib/components/ecl-menu/ecl-menu/ecl-menu-item.component.mjs
|
|
9728
|
-
import { Component as Component61, ContentChild as ContentChild18, EventEmitter as EventEmitter25, forwardRef as
|
|
9715
|
+
import { Component as Component61, ContentChild as ContentChild18, EventEmitter as EventEmitter25, forwardRef as forwardRef38, HostBinding as HostBinding93, HostListener as HostListener12, Input as Input55, Output as Output25, ViewChild as ViewChild9, ViewEncapsulation as ViewEncapsulation7 } from "@angular/core";
|
|
9729
9716
|
import { Subject as Subject18 } from "rxjs";
|
|
9730
9717
|
import { takeUntil as takeUntil18 } from "rxjs/operators";
|
|
9731
9718
|
import { Breakpoints as Breakpoints2 } from "@angular/cdk/layout";
|
|
@@ -9754,11 +9741,10 @@ var EclMenuItemComponent = class _EclMenuItemComponent extends ECLBaseDirective
|
|
|
9754
9741
|
get children() {
|
|
9755
9742
|
return this.hasChildren ? this.submenu.eclMenuMegaItems.toArray() : [];
|
|
9756
9743
|
}
|
|
9757
|
-
constructor(el, renderer,
|
|
9744
|
+
constructor(el, renderer, cdkBreakpointObserver) {
|
|
9758
9745
|
super();
|
|
9759
9746
|
this.el = el;
|
|
9760
9747
|
this.renderer = renderer;
|
|
9761
|
-
this.arf = arf;
|
|
9762
9748
|
this.cdkBreakpointObserver = cdkBreakpointObserver;
|
|
9763
9749
|
this.routerLink = null;
|
|
9764
9750
|
this.queryParams = null;
|
|
@@ -10003,7 +9989,7 @@ var EclMenuItemComponent = class _EclMenuItemComponent extends ECLBaseDirective
|
|
|
10003
9989
|
});
|
|
10004
9990
|
}
|
|
10005
9991
|
static {
|
|
10006
|
-
this.ɵfac = i0135.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i0135, type: _EclMenuItemComponent, deps: [{ token: i0135.ElementRef }, { token: i0135.Renderer2 }, { token:
|
|
9992
|
+
this.ɵfac = i0135.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i0135, type: _EclMenuItemComponent, deps: [{ token: i0135.ElementRef }, { token: i0135.Renderer2 }, { token: i120.BreakpointObserver }], target: i0135.ɵɵFactoryTarget.Component });
|
|
10007
9993
|
}
|
|
10008
9994
|
static {
|
|
10009
9995
|
this.ɵcmp = i0135.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-rc.1", 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: `@if (href) {
|
|
@@ -10142,7 +10128,7 @@ i0135.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
10142
10128
|
<ng-content></ng-content>
|
|
10143
10129
|
</ng-template>
|
|
10144
10130
|
` }]
|
|
10145
|
-
}], ctorParameters: () => [{ type: i0135.ElementRef }, { type: i0135.Renderer2 }, { type:
|
|
10131
|
+
}], ctorParameters: () => [{ type: i0135.ElementRef }, { type: i0135.Renderer2 }, { type: i120.BreakpointObserver }], propDecorators: { id: [{
|
|
10146
10132
|
type: Input55
|
|
10147
10133
|
}], label: [{
|
|
10148
10134
|
type: Input55
|
|
@@ -10166,7 +10152,7 @@ i0135.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
10166
10152
|
args: ["class"]
|
|
10167
10153
|
}], submenu: [{
|
|
10168
10154
|
type: ContentChild18,
|
|
10169
|
-
args: [
|
|
10155
|
+
args: [forwardRef38(() => EclMenuMegaComponent)]
|
|
10170
10156
|
}], menuLink: [{
|
|
10171
10157
|
type: ViewChild9,
|
|
10172
10158
|
args: ["menuLink"]
|
|
@@ -11034,7 +11020,7 @@ i0139.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
11034
11020
|
|
|
11035
11021
|
// lib/components/ecl-modal/ecl-modal.component.mjs
|
|
11036
11022
|
import { coerceBooleanProperty } from "@angular/cdk/coercion";
|
|
11037
|
-
import { Component as Component64, ContentChild as ContentChild19, ContentChildren as ContentChildren20, EventEmitter as EventEmitter29, forwardRef as
|
|
11023
|
+
import { Component as Component64, ContentChild as ContentChild19, ContentChildren as ContentChildren20, EventEmitter as EventEmitter29, forwardRef as forwardRef40, HostBinding as HostBinding96, HostListener as HostListener15, Input as Input59, Output as Output29 } from "@angular/core";
|
|
11038
11024
|
import { Subject as Subject20, takeUntil as takeUntil20 } from "rxjs";
|
|
11039
11025
|
import * as i0140 from "@angular/core";
|
|
11040
11026
|
var EclModalOpenEvent = class extends EclBaseEvent {
|
|
@@ -11134,10 +11120,10 @@ i0140.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
11134
11120
|
type: Output29
|
|
11135
11121
|
}], eclModalHeader: [{
|
|
11136
11122
|
type: ContentChild19,
|
|
11137
|
-
args: [
|
|
11123
|
+
args: [forwardRef40(() => EclModalHeaderComponent)]
|
|
11138
11124
|
}], eclModalCloseComponents: [{
|
|
11139
11125
|
type: ContentChildren20,
|
|
11140
|
-
args: [
|
|
11126
|
+
args: [forwardRef40(() => EclModalCloseDirective), { descendants: true }]
|
|
11141
11127
|
}], isModalOpened: [{
|
|
11142
11128
|
type: HostBinding96,
|
|
11143
11129
|
args: ["attr.open"]
|
|
@@ -11183,7 +11169,7 @@ i0141.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
11183
11169
|
}] } });
|
|
11184
11170
|
|
|
11185
11171
|
// lib/components/ecl-modal/ecl-modal-footer.component.mjs
|
|
11186
|
-
import { Component as Component66, ContentChildren as ContentChildren21, forwardRef as
|
|
11172
|
+
import { Component as Component66, ContentChildren as ContentChildren21, forwardRef as forwardRef42, HostBinding as HostBinding98 } from "@angular/core";
|
|
11187
11173
|
import * as i0142 from "@angular/core";
|
|
11188
11174
|
var EclModalFooterComponent = class _EclModalFooterComponent extends ECLBaseDirective {
|
|
11189
11175
|
get cssClasses() {
|
|
@@ -11210,7 +11196,7 @@ i0142.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
11210
11196
|
args: [{ selector: "[eclModalFooter]", template: '<div class="ecl-modal__footer-content">\n <ng-content></ng-content>\n</div>\n' }]
|
|
11211
11197
|
}], propDecorators: { buttonComponents: [{
|
|
11212
11198
|
type: ContentChildren21,
|
|
11213
|
-
args: [
|
|
11199
|
+
args: [forwardRef42(() => EclButtonComponent), { descendants: true }]
|
|
11214
11200
|
}], cssClasses: [{
|
|
11215
11201
|
type: HostBinding98,
|
|
11216
11202
|
args: ["class"]
|
|
@@ -11684,7 +11670,7 @@ i0149.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
11684
11670
|
}] } });
|
|
11685
11671
|
|
|
11686
11672
|
// lib/components/ecl-multiselect/ecl-multiselect-dropdown/ecl-multiselect-dropdown.component.mjs
|
|
11687
|
-
import { booleanAttribute as booleanAttribute33, Component as Component70, ElementRef as ElementRef24, EventEmitter as EventEmitter32, forwardRef as
|
|
11673
|
+
import { booleanAttribute as booleanAttribute33, Component as Component70, ElementRef as ElementRef24, EventEmitter as EventEmitter32, forwardRef as forwardRef44, HostBinding as HostBinding103, HostListener as HostListener17, Input as Input65, Output as Output32, ViewChild as ViewChild13, ViewChildren as ViewChildren2 } from "@angular/core";
|
|
11688
11674
|
import { NG_VALUE_ACCESSOR as NG_VALUE_ACCESSOR4 } from "@angular/forms";
|
|
11689
11675
|
import { Subject as Subject22 } from "rxjs";
|
|
11690
11676
|
import { v4 as uuidgen4 } from "uuid";
|
|
@@ -12072,7 +12058,7 @@ var EclMultiselectDropdownComponent = class _EclMultiselectDropdownComponent ext
|
|
|
12072
12058
|
this.ɵcmp = i0150.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-rc.1", type: _EclMultiselectDropdownComponent, selector: "div[eclMultiselectDropdown]", inputs: { isInvalid: ["isInvalid", "isInvalid", booleanAttribute33], mainInputPlaceholder: "mainInputPlaceholder", searchFieldPlaceholder: "searchFieldPlaceholder", eclSize: "eclSize", disabled: ["disabled", "disabled", booleanAttribute33] }, outputs: { eclChange: "eclChange" }, host: { listeners: { "document:keyup.escape": "onEscapeKey($event)", "document:click": "onKeyUp($event)" }, properties: { "class": "this.cssClasses", "attr.disabled": "this.disabled" } }, providers: [
|
|
12073
12059
|
{
|
|
12074
12060
|
provide: NG_VALUE_ACCESSOR4,
|
|
12075
|
-
useExisting:
|
|
12061
|
+
useExisting: forwardRef44(() => _EclMultiselectDropdownComponent),
|
|
12076
12062
|
multi: true
|
|
12077
12063
|
}
|
|
12078
12064
|
], viewQueries: [{ propertyName: "searchInput", first: true, predicate: ["searchInput"], descendants: true }, { propertyName: "eclMultiselectInput", first: true, predicate: ["eclMultiselectInput"], descendants: true }, { propertyName: "selectAllCheckbox", first: true, predicate: ["selectAllCheckbox"], descendants: true }, { propertyName: "selectAll", first: true, predicate: ["selectAll"], descendants: true }, { propertyName: "closeBtn", first: true, predicate: ["closeBtn"], descendants: true, read: ElementRef24 }, { propertyName: "clearAllBtn", first: true, predicate: ["clearAllBtn"], descendants: true, read: ElementRef24 }, { propertyName: "multiOptionComponents", predicate: EclMultiselectOptionComponent, descendants: true }], usesInheritance: true, ngImport: i0150, template: `<div eclMultiselectInput #eclMultiselectInput [inputPlaceholder]="mainInputPlaceholder" [selectedItems]="selectedItems"
|
|
@@ -12173,7 +12159,7 @@ i0150.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
12173
12159
|
args: [{ selector: "div[eclMultiselectDropdown]", providers: [
|
|
12174
12160
|
{
|
|
12175
12161
|
provide: NG_VALUE_ACCESSOR4,
|
|
12176
|
-
useExisting:
|
|
12162
|
+
useExisting: forwardRef44(() => EclMultiselectDropdownComponent),
|
|
12177
12163
|
multi: true
|
|
12178
12164
|
}
|
|
12179
12165
|
], template: `<div eclMultiselectInput #eclMultiselectInput [inputPlaceholder]="mainInputPlaceholder" [selectedItems]="selectedItems"
|
|
@@ -12383,7 +12369,7 @@ i0151.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
12383
12369
|
|
|
12384
12370
|
// lib/components/ecl-multiselect/ecl-multiselect.component.mjs
|
|
12385
12371
|
import { coerceBooleanProperty as coerceBooleanProperty3 } from "@angular/cdk/coercion";
|
|
12386
|
-
import { booleanAttribute as booleanAttribute34, Component as Component71, ContentChildren as ContentChildren23, EventEmitter as EventEmitter33, forwardRef as
|
|
12372
|
+
import { booleanAttribute as booleanAttribute34, Component as Component71, ContentChildren as ContentChildren23, EventEmitter as EventEmitter33, forwardRef as forwardRef45, HostBinding as HostBinding105, Input as Input67, Output as Output33, ViewEncapsulation as ViewEncapsulation9 } from "@angular/core";
|
|
12387
12373
|
import { NG_VALUE_ACCESSOR as NG_VALUE_ACCESSOR5, NgControl as NgControl4 } from "@angular/forms";
|
|
12388
12374
|
import { Subject as Subject24, takeUntil as takeUntil21 } from "rxjs";
|
|
12389
12375
|
import * as i0152 from "@angular/core";
|
|
@@ -12521,7 +12507,7 @@ var EclMultiselectComponent = class _EclMultiselectComponent extends ECLBaseDire
|
|
|
12521
12507
|
this.ɵcmp = i0152.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.0-rc.1", type: _EclMultiselectComponent, selector: "select[eclMultiselect]", inputs: { ariaDescribedby: "ariaDescribedby", ariaLabeledby: "ariaLabeledby", id: "id", toggleLabel: "toggleLabel", isInvalid: ["isInvalid", "isInvalid", booleanAttribute34], disabled: "disabled", eclPlaceholder: "eclPlaceholder", eclSize: "eclSize" }, outputs: { eclChange: "eclChange" }, host: { properties: { "attr.disabled": "this.disabled", "class": "this.cssClasses" } }, providers: [
|
|
12522
12508
|
{
|
|
12523
12509
|
provide: NG_VALUE_ACCESSOR5,
|
|
12524
|
-
useExisting:
|
|
12510
|
+
useExisting: forwardRef45(() => _EclMultiselectComponent),
|
|
12525
12511
|
multi: true
|
|
12526
12512
|
}
|
|
12527
12513
|
], queries: [{ propertyName: "eclOptionItems", predicate: i0152.forwardRef(() => EclMultiselectOptionDirective) }], usesInheritance: true, ngImport: i0152, template: "<ng-content></ng-content>\n", encapsulation: i0152.ViewEncapsulation.None });
|
|
@@ -12532,13 +12518,13 @@ i0152.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
12532
12518
|
args: [{ selector: "select[eclMultiselect]", encapsulation: ViewEncapsulation9.None, providers: [
|
|
12533
12519
|
{
|
|
12534
12520
|
provide: NG_VALUE_ACCESSOR5,
|
|
12535
|
-
useExisting:
|
|
12521
|
+
useExisting: forwardRef45(() => EclMultiselectComponent),
|
|
12536
12522
|
multi: true
|
|
12537
12523
|
}
|
|
12538
12524
|
], template: "<ng-content></ng-content>\n" }]
|
|
12539
12525
|
}], ctorParameters: () => [{ type: i0152.Injector }, { type: i0152.ElementRef }, { type: i0152.ViewContainerRef }, { type: i0152.IterableDiffers }, { type: i0152.Renderer2 }], propDecorators: { eclOptionItems: [{
|
|
12540
12526
|
type: ContentChildren23,
|
|
12541
|
-
args: [
|
|
12527
|
+
args: [forwardRef45(() => EclMultiselectOptionDirective)]
|
|
12542
12528
|
}], ariaDescribedby: [{
|
|
12543
12529
|
type: Input67
|
|
12544
12530
|
}], ariaLabeledby: [{
|
|
@@ -12630,7 +12616,7 @@ i0153.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
12630
12616
|
}] });
|
|
12631
12617
|
|
|
12632
12618
|
// lib/components/ecl-navigation-list/ecl-navigation-list-item.component.mjs
|
|
12633
|
-
import { Component as Component72, ContentChild as ContentChild20, forwardRef as
|
|
12619
|
+
import { Component as Component72, ContentChild as ContentChild20, forwardRef as forwardRef47, HostBinding as HostBinding106, Input as Input68 } from "@angular/core";
|
|
12634
12620
|
import * as i0154 from "@angular/core";
|
|
12635
12621
|
var EclNavigationListItemComponent = class _EclNavigationListItemComponent extends ECLBaseDirective {
|
|
12636
12622
|
constructor() {
|
|
@@ -12671,11 +12657,11 @@ i0154.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
12671
12657
|
type: Input68
|
|
12672
12658
|
}], eclContentBlock: [{
|
|
12673
12659
|
type: ContentChild20,
|
|
12674
|
-
args: [
|
|
12660
|
+
args: [forwardRef47(() => EclContentBlockComponent)]
|
|
12675
12661
|
}] } });
|
|
12676
12662
|
|
|
12677
12663
|
// lib/components/ecl-navigation-list/ecl-navigation-list.component.mjs
|
|
12678
|
-
import { Component as Component73, ContentChildren as ContentChildren24, HostBinding as HostBinding107, Input as Input69, booleanAttribute as booleanAttribute35, forwardRef as
|
|
12664
|
+
import { Component as Component73, ContentChildren as ContentChildren24, HostBinding as HostBinding107, Input as Input69, booleanAttribute as booleanAttribute35, forwardRef as forwardRef49, numberAttribute as numberAttribute7 } from "@angular/core";
|
|
12679
12665
|
import * as i0155 from "@angular/core";
|
|
12680
12666
|
var EclNavigationListComponent = class _EclNavigationListComponent extends ECLBaseDirective {
|
|
12681
12667
|
constructor() {
|
|
@@ -12715,7 +12701,7 @@ i0155.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
12715
12701
|
args: [{ transform: booleanAttribute35 }]
|
|
12716
12702
|
}], listItems: [{
|
|
12717
12703
|
type: ContentChildren24,
|
|
12718
|
-
args: [
|
|
12704
|
+
args: [forwardRef49(() => EclNavigationListItemComponent)]
|
|
12719
12705
|
}] } });
|
|
12720
12706
|
|
|
12721
12707
|
// lib/components/ecl-navigation-list/ecl-navigation-list-picture.directive.mjs
|
|
@@ -13839,7 +13825,7 @@ i0169.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
13839
13825
|
import { Component as Component78, Input as Input76, booleanAttribute as booleanAttribute41 } from "@angular/core";
|
|
13840
13826
|
import * as i0170 from "@angular/core";
|
|
13841
13827
|
import * as i123 from "@ngx-translate/core";
|
|
13842
|
-
import * as
|
|
13828
|
+
import * as i32 from "@angular/common";
|
|
13843
13829
|
var EclSiteFooterFixedContentECComponent = class _EclSiteFooterFixedContentECComponent extends ECLBaseDirective {
|
|
13844
13830
|
constructor(translateService, eclLanguageService) {
|
|
13845
13831
|
super();
|
|
@@ -14294,7 +14280,7 @@ var EclSiteFooterFixedContentECComponent = class _EclSiteFooterFixedContentECCom
|
|
|
14294
14280
|
</div>
|
|
14295
14281
|
</div>
|
|
14296
14282
|
}
|
|
14297
|
-
`, dependencies: [{ kind: "directive", type:
|
|
14283
|
+
`, dependencies: [{ kind: "directive", type: i32.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: EclLinkDirective, selector: "[eclLink]", inputs: ["isInverted", "isIconOnly", "isNoVisited", "variant"] }, { kind: "directive", type: EclSiteFooterSectionDirective, selector: "[eclSiteFooterSection]", inputs: ["isCondensed", "isSiteInfo", "isSplitList", "hasSeparator"] }, { 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: i123.TranslatePipe, name: "translate" }] });
|
|
14298
14284
|
}
|
|
14299
14285
|
};
|
|
14300
14286
|
i0170.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i0170, type: EclSiteFooterFixedContentECComponent, decorators: [{
|
|
@@ -14758,7 +14744,7 @@ i0170.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
14758
14744
|
import { Component as Component79, Input as Input77, booleanAttribute as booleanAttribute42 } from "@angular/core";
|
|
14759
14745
|
import * as i0171 from "@angular/core";
|
|
14760
14746
|
import * as i124 from "@ngx-translate/core";
|
|
14761
|
-
import * as
|
|
14747
|
+
import * as i33 from "@angular/common";
|
|
14762
14748
|
var EclSiteFooterFixedContentEUComponent = class _EclSiteFooterFixedContentEUComponent extends ECLBaseDirective {
|
|
14763
14749
|
constructor(translateService, eclLanguageService) {
|
|
14764
14750
|
super();
|
|
@@ -15432,7 +15418,7 @@ var EclSiteFooterFixedContentEUComponent = class _EclSiteFooterFixedContentEUCom
|
|
|
15432
15418
|
</div>
|
|
15433
15419
|
</div>
|
|
15434
15420
|
}
|
|
15435
|
-
`, dependencies: [{ kind: "directive", type:
|
|
15421
|
+
`, dependencies: [{ kind: "directive", type: i33.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: EclLinkDirective, selector: "[eclLink]", inputs: ["isInverted", "isIconOnly", "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: i124.TranslatePipe, name: "translate" }] });
|
|
15436
15422
|
}
|
|
15437
15423
|
};
|
|
15438
15424
|
i0171.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i0171, type: EclSiteFooterFixedContentEUComponent, decorators: [{
|
|
@@ -16617,7 +16603,7 @@ i0181.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
16617
16603
|
// lib/components/ecl-pagination/ecl-pagination-item.component.mjs
|
|
16618
16604
|
import { Component as Component82, EventEmitter as EventEmitter37, HostBinding as HostBinding127, Input as Input81, Output as Output37, ViewEncapsulation as ViewEncapsulation11, booleanAttribute as booleanAttribute45 } from "@angular/core";
|
|
16619
16605
|
import * as i0182 from "@angular/core";
|
|
16620
|
-
import * as
|
|
16606
|
+
import * as i211 from "@angular/router";
|
|
16621
16607
|
import * as i63 from "@ngx-translate/core";
|
|
16622
16608
|
var EclPaginationItemClickEvent = class extends EclBaseEvent {
|
|
16623
16609
|
};
|
|
@@ -16736,7 +16722,7 @@ var EclPaginationItemComponent = class _EclPaginationItemComponent extends ECLBa
|
|
|
16736
16722
|
}
|
|
16737
16723
|
</span>
|
|
16738
16724
|
}
|
|
16739
|
-
`, dependencies: [{ kind: "directive", type:
|
|
16725
|
+
`, dependencies: [{ kind: "directive", type: i211.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", "isIconOnly", "isNoVisited", "variant"] }, { kind: "directive", type: EclLinkLabelDirective, selector: "[eclLinkLabel]" }, { kind: "pipe", type: i63.TranslatePipe, name: "translate" }], encapsulation: i0182.ViewEncapsulation.None });
|
|
16740
16726
|
}
|
|
16741
16727
|
};
|
|
16742
16728
|
i0182.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i0182, type: EclPaginationItemComponent, decorators: [{
|
|
@@ -17358,7 +17344,7 @@ i0190.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
17358
17344
|
}] } });
|
|
17359
17345
|
|
|
17360
17346
|
// lib/components/ecl-radio/ecl-radio.directive.mjs
|
|
17361
|
-
import { booleanAttribute as booleanAttribute48, ContentChild as ContentChild24, Directive as Directive55, forwardRef as
|
|
17347
|
+
import { booleanAttribute as booleanAttribute48, ContentChild as ContentChild24, Directive as Directive55, forwardRef as forwardRef51, HostBinding as HostBinding134, Input as Input85 } from "@angular/core";
|
|
17362
17348
|
import * as i0191 from "@angular/core";
|
|
17363
17349
|
var EclRadioDirective = class _EclRadioDirective extends ECLBaseDirective {
|
|
17364
17350
|
constructor() {
|
|
@@ -17410,17 +17396,17 @@ i0191.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
17410
17396
|
args: ["class.ecl-radio--invalid"]
|
|
17411
17397
|
}], eclRadioLabelComponent: [{
|
|
17412
17398
|
type: ContentChild24,
|
|
17413
|
-
args: [
|
|
17399
|
+
args: [forwardRef51(() => EclRadioLabelComponent)]
|
|
17414
17400
|
}], eclRadioHelpComponent: [{
|
|
17415
17401
|
type: ContentChild24,
|
|
17416
|
-
args: [
|
|
17402
|
+
args: [forwardRef51(() => EclRadioHelpComponent)]
|
|
17417
17403
|
}], cssClasses: [{
|
|
17418
17404
|
type: HostBinding134,
|
|
17419
17405
|
args: ["class"]
|
|
17420
17406
|
}] } });
|
|
17421
17407
|
|
|
17422
17408
|
// lib/components/ecl-radio/ecl-radio-input.directive.mjs
|
|
17423
|
-
import { Directive as Directive56, HostBinding as HostBinding135, Optional as Optional6, Self as Self4, Inject as
|
|
17409
|
+
import { Directive as Directive56, HostBinding as HostBinding135, Optional as Optional6, Self as Self4, Inject as Inject7, forwardRef as forwardRef53 } from "@angular/core";
|
|
17424
17410
|
import * as i0192 from "@angular/core";
|
|
17425
17411
|
import * as i127 from "@angular/forms";
|
|
17426
17412
|
var EclRadioInputDirective = class _EclRadioInputDirective extends ECLBaseDirective {
|
|
@@ -17442,7 +17428,7 @@ var EclRadioInputDirective = class _EclRadioInputDirective extends ECLBaseDirect
|
|
|
17442
17428
|
}
|
|
17443
17429
|
}
|
|
17444
17430
|
static {
|
|
17445
|
-
this.ɵfac = i0192.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i0192, type: _EclRadioInputDirective, deps: [{ token:
|
|
17431
|
+
this.ɵfac = i0192.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i0192, type: _EclRadioInputDirective, deps: [{ token: forwardRef53(() => EclRadioDirective) }, { token: i127.NgControl, optional: true, self: true }, { token: i0192.ChangeDetectorRef }], target: i0192.ɵɵFactoryTarget.Directive });
|
|
17446
17432
|
}
|
|
17447
17433
|
static {
|
|
17448
17434
|
this.ɵdir = i0192.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.0-rc.1", type: _EclRadioInputDirective, selector: "input[eclRadioInput]", host: { properties: { "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0192 });
|
|
@@ -17454,8 +17440,8 @@ i0192.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
17454
17440
|
selector: "input[eclRadioInput]"
|
|
17455
17441
|
}]
|
|
17456
17442
|
}], ctorParameters: () => [{ type: EclRadioDirective, decorators: [{
|
|
17457
|
-
type:
|
|
17458
|
-
args: [
|
|
17443
|
+
type: Inject7,
|
|
17444
|
+
args: [forwardRef53(() => EclRadioDirective)]
|
|
17459
17445
|
}] }, { type: i127.NgControl, decorators: [{
|
|
17460
17446
|
type: Optional6
|
|
17461
17447
|
}, {
|
|
@@ -17490,7 +17476,7 @@ i0193.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
17490
17476
|
}] });
|
|
17491
17477
|
|
|
17492
17478
|
// lib/components/ecl-rating-field/ecl-rating-field.component.mjs
|
|
17493
|
-
import { booleanAttribute as booleanAttribute49, Component as Component87, EventEmitter as EventEmitter40, forwardRef as
|
|
17479
|
+
import { booleanAttribute as booleanAttribute49, Component as Component87, EventEmitter as EventEmitter40, forwardRef as forwardRef54, HostBinding as HostBinding136, Input as Input86, Output as Output40 } from "@angular/core";
|
|
17494
17480
|
import { NG_VALUE_ACCESSOR as NG_VALUE_ACCESSOR6 } from "@angular/forms";
|
|
17495
17481
|
import * as i0194 from "@angular/core";
|
|
17496
17482
|
var EclRatingChangeEvent = class extends EclBaseEvent {
|
|
@@ -17501,7 +17487,7 @@ var EclRatingChangeEvent = class extends EclBaseEvent {
|
|
|
17501
17487
|
};
|
|
17502
17488
|
var ECL_RATINGFIELD_VALUE_ACCESSOR = {
|
|
17503
17489
|
provide: NG_VALUE_ACCESSOR6,
|
|
17504
|
-
useExisting:
|
|
17490
|
+
useExisting: forwardRef54(() => EclRatingFieldComponent),
|
|
17505
17491
|
multi: true
|
|
17506
17492
|
};
|
|
17507
17493
|
var noop4 = () => {
|
|
@@ -17941,7 +17927,7 @@ i0202.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
17941
17927
|
import { Component as Component91, EventEmitter as EventEmitter42, HostBinding as HostBinding142, Input as Input92, Output as Output42 } from "@angular/core";
|
|
17942
17928
|
import * as i0203 from "@angular/core";
|
|
17943
17929
|
import * as i131 from "@angular/common";
|
|
17944
|
-
import * as
|
|
17930
|
+
import * as i212 from "@angular/router";
|
|
17945
17931
|
var EclSocialMediaFollowItemClickEvent = class extends EclBaseEvent {
|
|
17946
17932
|
};
|
|
17947
17933
|
var EclSocialMediaFollowItemComponent = class _EclSocialMediaFollowItemComponent extends ECLBaseDirective {
|
|
@@ -17967,7 +17953,7 @@ var EclSocialMediaFollowItemComponent = class _EclSocialMediaFollowItemComponent
|
|
|
17967
17953
|
this.ɵfac = i0203.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i0203, type: _EclSocialMediaFollowItemComponent, deps: null, target: i0203.ɵɵFactoryTarget.Component });
|
|
17968
17954
|
}
|
|
17969
17955
|
static {
|
|
17970
|
-
this.ɵcmp = i0203.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-rc.1", 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: i131.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type:
|
|
17956
|
+
this.ɵcmp = i0203.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-rc.1", 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: i131.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i212.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", "isIconOnly", "isNoVisited", "variant"] }, { kind: "directive", type: EclLinkLabelDirective, selector: "[eclLinkLabel]" }] });
|
|
17971
17957
|
}
|
|
17972
17958
|
};
|
|
17973
17959
|
i0203.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i0203, type: EclSocialMediaFollowItemComponent, decorators: [{
|
|
@@ -18004,7 +17990,7 @@ var EclSocialMediaFollowLinkDirective = class _EclSocialMediaFollowLinkDirective
|
|
|
18004
17990
|
}
|
|
18005
17991
|
ngAfterContentInit() {
|
|
18006
17992
|
if (this.eclIcon) {
|
|
18007
|
-
setTimeout(() => this.eclIcon.class = [this.eclIcon.class, "ecl-social-media-follow__icon"].join(" "));
|
|
17993
|
+
setTimeout(() => this.eclIcon.baseDirective.class = [this.eclIcon.baseDirective.class, "ecl-social-media-follow__icon"].join(" "));
|
|
18008
17994
|
}
|
|
18009
17995
|
}
|
|
18010
17996
|
static {
|
|
@@ -18147,7 +18133,7 @@ var EclSocialMediaShareLinkDirective = class _EclSocialMediaShareLinkDirective e
|
|
|
18147
18133
|
}
|
|
18148
18134
|
ngAfterContentInit() {
|
|
18149
18135
|
if (this.eclIcon) {
|
|
18150
|
-
setTimeout(() => this.eclIcon.class = [this.eclIcon.class, "ecl-social-media-share__icon"].join(" "));
|
|
18136
|
+
setTimeout(() => this.eclIcon.baseDirective.class = [this.eclIcon.baseDirective.class, "ecl-social-media-share__icon"].join(" "));
|
|
18151
18137
|
}
|
|
18152
18138
|
}
|
|
18153
18139
|
static {
|
|
@@ -18316,7 +18302,7 @@ i0213.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
18316
18302
|
// lib/components/ecl-table/ecl-table-sort-button.component.mjs
|
|
18317
18303
|
import { Component as Component95, HostBinding as HostBinding150 } from "@angular/core";
|
|
18318
18304
|
import * as i0214 from "@angular/core";
|
|
18319
|
-
import * as
|
|
18305
|
+
import * as i34 from "@angular/common";
|
|
18320
18306
|
var EclTableSortButtonComponent = class _EclTableSortButtonComponent extends ECLBaseDirective {
|
|
18321
18307
|
constructor(eclThemeService) {
|
|
18322
18308
|
super();
|
|
@@ -18332,7 +18318,7 @@ var EclTableSortButtonComponent = class _EclTableSortButtonComponent extends ECL
|
|
|
18332
18318
|
static {
|
|
18333
18319
|
this.ɵcmp = i0214.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-rc.1", 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>
|
|
18334
18320
|
<ecl-icon icon="solid-arrow" class="ecl-table__icon ecl-table__icon-down" [size]="(eclThemeService.isEC$ | async) ? 'xs' : 'm'"> </ecl-icon>
|
|
18335
|
-
`, dependencies: [{ kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "pipe", type:
|
|
18321
|
+
`, dependencies: [{ kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "pipe", type: i34.AsyncPipe, name: "async" }] });
|
|
18336
18322
|
}
|
|
18337
18323
|
};
|
|
18338
18324
|
i0214.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i0214, type: EclTableSortButtonComponent, decorators: [{
|
|
@@ -18349,7 +18335,7 @@ i0214.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
18349
18335
|
}] } });
|
|
18350
18336
|
|
|
18351
18337
|
// lib/components/ecl-table/ecl-table.directive.mjs
|
|
18352
|
-
import { ContentChildren as ContentChildren26, Directive as Directive63, EventEmitter as EventEmitter44, forwardRef as
|
|
18338
|
+
import { ContentChildren as ContentChildren26, Directive as Directive63, EventEmitter as EventEmitter44, forwardRef as forwardRef55, HostBinding as HostBinding151, HostListener as HostListener22, Input as Input96, Output as Output44, booleanAttribute as booleanAttribute56 } from "@angular/core";
|
|
18353
18339
|
import { Subject as Subject28 } from "rxjs";
|
|
18354
18340
|
import { takeUntil as takeUntil25 } from "rxjs/operators";
|
|
18355
18341
|
import * as i0215 from "@angular/core";
|
|
@@ -18416,7 +18402,7 @@ i0215.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
18416
18402
|
type: Output44
|
|
18417
18403
|
}], eclTableHeaders: [{
|
|
18418
18404
|
type: ContentChildren26,
|
|
18419
|
-
args: [
|
|
18405
|
+
args: [forwardRef55(() => EclTableHeaderDirective), { descendants: true }]
|
|
18420
18406
|
}] } });
|
|
18421
18407
|
var EclTableHeadDirective = class _EclTableHeadDirective extends ECLBaseDirective {
|
|
18422
18408
|
get cssClasses() {
|
|
@@ -18461,7 +18447,7 @@ i0215.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
18461
18447
|
args: ["class"]
|
|
18462
18448
|
}], eclTableHeaders: [{
|
|
18463
18449
|
type: ContentChildren26,
|
|
18464
|
-
args: [
|
|
18450
|
+
args: [forwardRef55(() => EclTableHeaderDirective), { descendants: true }]
|
|
18465
18451
|
}] } });
|
|
18466
18452
|
var EclTableHeaderDirective = class _EclTableHeaderDirective extends ECLBaseDirective {
|
|
18467
18453
|
get cssClasses() {
|
|
@@ -18863,12 +18849,12 @@ i0219.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
18863
18849
|
}] } });
|
|
18864
18850
|
|
|
18865
18851
|
// lib/components/ecl-tabs/ecl-tabs.component.mjs
|
|
18866
|
-
import { Component as Component99, ContentChildren as ContentChildren27, EventEmitter as EventEmitter46, forwardRef as
|
|
18852
|
+
import { Component as Component99, ContentChildren as ContentChildren27, EventEmitter as EventEmitter46, forwardRef as forwardRef57, HostListener as HostListener23, Input as Input99, Output as Output46, ViewChild as ViewChild17, ViewEncapsulation as ViewEncapsulation15 } from "@angular/core";
|
|
18867
18853
|
import { of as of4, Subject as Subject29 } from "rxjs";
|
|
18868
18854
|
import { mergeWith as mergeWith3, takeUntil as takeUntil26 } from "rxjs/operators";
|
|
18869
18855
|
import * as i0220 from "@angular/core";
|
|
18870
18856
|
import * as i133 from "@angular/cdk/layout";
|
|
18871
|
-
import * as
|
|
18857
|
+
import * as i35 from "@angular/common";
|
|
18872
18858
|
import * as i10 from "@ngx-translate/core";
|
|
18873
18859
|
var ShiftDirection;
|
|
18874
18860
|
(function(ShiftDirection2) {
|
|
@@ -19354,7 +19340,7 @@ var EclTabsComponent = class _EclTabsComponent extends ECLBaseDirective {
|
|
|
19354
19340
|
</div>
|
|
19355
19341
|
}
|
|
19356
19342
|
}
|
|
19357
|
-
`, dependencies: [{ kind: "directive", type:
|
|
19343
|
+
`, dependencies: [{ kind: "directive", type: i35.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, [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 });
|
|
19358
19344
|
}
|
|
19359
19345
|
};
|
|
19360
19346
|
i0220.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i0220, type: EclTabsComponent, decorators: [{
|
|
@@ -19442,7 +19428,7 @@ i0220.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
19442
19428
|
type: Output46
|
|
19443
19429
|
}], tabs: [{
|
|
19444
19430
|
type: ContentChildren27,
|
|
19445
|
-
args: [
|
|
19431
|
+
args: [forwardRef57(() => EclTabComponent)]
|
|
19446
19432
|
}], tabsList: [{
|
|
19447
19433
|
type: ViewChild17,
|
|
19448
19434
|
args: ["tabsList"]
|
|
@@ -19515,7 +19501,7 @@ i0221.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
19515
19501
|
// lib/components/ecl-tag/ecl-tag.component.mjs
|
|
19516
19502
|
import { Component as Component100, Input as Input100, HostBinding as HostBinding154, Output as Output47, EventEmitter as EventEmitter47, booleanAttribute as booleanAttribute59 } from "@angular/core";
|
|
19517
19503
|
import * as i0222 from "@angular/core";
|
|
19518
|
-
import * as
|
|
19504
|
+
import * as i213 from "@angular/common";
|
|
19519
19505
|
var EclTagRemoveEvent = class extends EclBaseEvent {
|
|
19520
19506
|
};
|
|
19521
19507
|
var EclTagComponent = class _EclTagComponent extends ECLBaseDirective {
|
|
@@ -19550,7 +19536,7 @@ var EclTagComponent = class _EclTagComponent extends ECLBaseDirective {
|
|
|
19550
19536
|
this.ɵfac = i0222.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i0222, type: _EclTagComponent, deps: null, target: i0222.ɵɵFactoryTarget.Component });
|
|
19551
19537
|
}
|
|
19552
19538
|
static {
|
|
19553
|
-
this.ɵcmp = i0222.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-rc.1", type: _EclTagComponent, selector: "ecl-tag, [eclTag]", inputs: { variant: "variant", isWrapped: ["isWrapped", "isWrapped", booleanAttribute59] }, 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:
|
|
19539
|
+
this.ɵcmp = i0222.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-rc.1", type: _EclTagComponent, selector: "ecl-tag, [eclTag]", inputs: { variant: "variant", isWrapped: ["isWrapped", "isWrapped", booleanAttribute59] }, 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: i213.TitleCasePipe, name: "titlecase" }] });
|
|
19554
19540
|
}
|
|
19555
19541
|
};
|
|
19556
19542
|
i0222.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1", ngImport: i0222, type: EclTagComponent, decorators: [{
|
|
@@ -19770,7 +19756,7 @@ i0229.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
19770
19756
|
}] } });
|
|
19771
19757
|
|
|
19772
19758
|
// lib/components/ecl-timeline/ecl-timeline-item.component.mjs
|
|
19773
|
-
import { Component as Component102, Input as Input102, HostBinding as HostBinding159, ViewEncapsulation as ViewEncapsulation17, Output as Output49, EventEmitter as EventEmitter49, ContentChild as ContentChild28, forwardRef as
|
|
19759
|
+
import { Component as Component102, Input as Input102, HostBinding as HostBinding159, ViewEncapsulation as ViewEncapsulation17, Output as Output49, EventEmitter as EventEmitter49, ContentChild as ContentChild28, forwardRef as forwardRef59, booleanAttribute as booleanAttribute61 } from "@angular/core";
|
|
19774
19760
|
import { Subject as Subject30 } from "rxjs";
|
|
19775
19761
|
import { takeUntil as takeUntil27 } from "rxjs/operators";
|
|
19776
19762
|
import * as i0230 from "@angular/core";
|
|
@@ -19931,7 +19917,7 @@ i0230.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
19931
19917
|
args: ["class"]
|
|
19932
19918
|
}], timelineItemToggler: [{
|
|
19933
19919
|
type: ContentChild28,
|
|
19934
|
-
args: [
|
|
19920
|
+
args: [forwardRef59(() => EclTimelineItemTogglerComponent)]
|
|
19935
19921
|
}], isCollapsed: [{
|
|
19936
19922
|
type: Input102
|
|
19937
19923
|
}, {
|
|
@@ -19949,7 +19935,7 @@ i0230.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
19949
19935
|
}] } });
|
|
19950
19936
|
|
|
19951
19937
|
// lib/components/ecl-timeline/ecl-timeline.component.mjs
|
|
19952
|
-
import { Component as Component103, ContentChildren as ContentChildren28, forwardRef as
|
|
19938
|
+
import { Component as Component103, ContentChildren as ContentChildren28, forwardRef as forwardRef61, HostBinding as HostBinding160 } from "@angular/core";
|
|
19953
19939
|
import { Subject as Subject31 } from "rxjs";
|
|
19954
19940
|
import { takeUntil as takeUntil28 } from "rxjs/operators";
|
|
19955
19941
|
import * as i0231 from "@angular/core";
|
|
@@ -19995,7 +19981,7 @@ i0231.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-rc.1",
|
|
|
19995
19981
|
args: ["class"]
|
|
19996
19982
|
}], timelineItems: [{
|
|
19997
19983
|
type: ContentChildren28,
|
|
19998
|
-
args: [
|
|
19984
|
+
args: [forwardRef61(() => EclTimelineItemComponent)]
|
|
19999
19985
|
}] } });
|
|
20000
19986
|
|
|
20001
19987
|
// lib/components/ecl-timeline/ecl-timeline.module.mjs
|