@eui/ecl 18.0.0-next.39 → 18.0.0-next.40
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/assets/i18n-ecl/bg.json +1 -0
- package/assets/i18n-ecl/cs.json +1 -0
- package/assets/i18n-ecl/da.json +1 -0
- package/assets/i18n-ecl/de.json +1 -0
- package/assets/i18n-ecl/el.json +1 -0
- package/assets/i18n-ecl/en.json +1 -0
- package/assets/i18n-ecl/es.json +1 -0
- package/assets/i18n-ecl/et.json +1 -0
- package/assets/i18n-ecl/fi.json +1 -0
- package/assets/i18n-ecl/fr.json +1 -0
- package/assets/i18n-ecl/ga.json +1 -0
- package/assets/i18n-ecl/hr.json +1 -0
- package/assets/i18n-ecl/hu.json +1 -0
- package/assets/i18n-ecl/it.json +1 -0
- package/assets/i18n-ecl/lt.json +1 -0
- package/assets/i18n-ecl/lv.json +1 -0
- package/assets/i18n-ecl/mt.json +1 -0
- package/assets/i18n-ecl/nl.json +1 -0
- package/assets/i18n-ecl/pl.json +1 -0
- package/assets/i18n-ecl/pt.json +1 -0
- package/assets/i18n-ecl/ro.json +1 -0
- package/assets/i18n-ecl/sk.json +1 -0
- package/assets/i18n-ecl/sl.json +1 -0
- package/assets/i18n-ecl/sv.json +1 -0
- package/docs/components/EclMultiselectComponent.html +37 -1
- package/docs/components/EclMultiselectDropdownComponent.html +30 -1
- package/docs/components/EclMultiselectInputComponent.html +134 -2
- package/docs/components/EclMultiselectOptionComponent.html +32 -2
- package/docs/dependencies.html +1 -1
- package/docs/js/search/search_index.js +2 -2
- package/esm2022/lib/components/ecl-multiselect/ecl-multiselect-dropdown/ecl-multiselect-dropdown.component.mjs +21 -28
- package/esm2022/lib/components/ecl-multiselect/ecl-multiselect-input/ecl-multiselect-input.component.mjs +35 -21
- package/esm2022/lib/components/ecl-multiselect/ecl-multiselect-option/ecl-multiselect-option.component.mjs +11 -16
- package/esm2022/lib/components/ecl-multiselect/ecl-multiselect.component.mjs +20 -15
- package/fesm2022/eui-ecl.mjs +372 -307
- package/fesm2022/eui-ecl.mjs.map +3 -3
- package/lib/components/ecl-multiselect/ecl-multiselect-dropdown/ecl-multiselect-dropdown.component.d.ts +3 -0
- package/lib/components/ecl-multiselect/ecl-multiselect-dropdown/ecl-multiselect-dropdown.component.d.ts.map +1 -1
- package/lib/components/ecl-multiselect/ecl-multiselect-input/ecl-multiselect-input.component.d.ts +13 -3
- package/lib/components/ecl-multiselect/ecl-multiselect-input/ecl-multiselect-input.component.d.ts.map +1 -1
- package/lib/components/ecl-multiselect/ecl-multiselect-option/ecl-multiselect-option.component.d.ts +5 -3
- package/lib/components/ecl-multiselect/ecl-multiselect-option/ecl-multiselect-option.component.d.ts.map +1 -1
- package/lib/components/ecl-multiselect/ecl-multiselect.component.d.ts +8 -3
- package/lib/components/ecl-multiselect/ecl-multiselect.component.d.ts.map +1 -1
- package/package.json +1 -1
package/fesm2022/eui-ecl.mjs
CHANGED
|
@@ -11340,9 +11340,7 @@ i0147.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
11340
11340
|
}] });
|
|
11341
11341
|
|
|
11342
11342
|
// lib/components/ecl-multiselect/ecl-multiselect-option/ecl-multiselect-option.component.mjs
|
|
11343
|
-
import {
|
|
11344
|
-
import { Component as Component67, EventEmitter as EventEmitter30, HostBinding as HostBinding101, Input as Input62, Output as Output30, ViewChild as ViewChild11 } from "@angular/core";
|
|
11345
|
-
import { coerceBoolean as coerceBoolean5 } from "@eui/base";
|
|
11343
|
+
import { Component as Component67, EventEmitter as EventEmitter30, HostBinding as HostBinding101, Input as Input62, Output as Output30, ViewChild as ViewChild11, booleanAttribute as booleanAttribute27 } from "@angular/core";
|
|
11346
11344
|
import { Subject as Subject20 } from "rxjs";
|
|
11347
11345
|
import { v4 as uuidgen3 } from "uuid";
|
|
11348
11346
|
import * as i0148 from "@angular/core";
|
|
@@ -11373,8 +11371,9 @@ var EclMultiselectOptionComponent = class _EclMultiselectOptionComponent extends
|
|
|
11373
11371
|
set isChecked(value) {
|
|
11374
11372
|
this._checked = value;
|
|
11375
11373
|
}
|
|
11376
|
-
constructor() {
|
|
11374
|
+
constructor(renderer) {
|
|
11377
11375
|
super();
|
|
11376
|
+
this.renderer = renderer;
|
|
11378
11377
|
this.keyword = "";
|
|
11379
11378
|
this.changes = new Subject20();
|
|
11380
11379
|
this.disabled = false;
|
|
@@ -11408,7 +11407,7 @@ var EclMultiselectOptionComponent = class _EclMultiselectOptionComponent extends
|
|
|
11408
11407
|
this.optionKeydown.emit(new EclMultiselectOptionKeydownEvent(this, evt));
|
|
11409
11408
|
}
|
|
11410
11409
|
onFocus() {
|
|
11411
|
-
this.eclCheckboxInput.nativeElement.focus();
|
|
11410
|
+
this.renderer.selectRootElement(this.eclCheckboxInput.nativeElement, true).focus();
|
|
11412
11411
|
}
|
|
11413
11412
|
show() {
|
|
11414
11413
|
this.display = "flex";
|
|
@@ -11425,63 +11424,49 @@ var EclMultiselectOptionComponent = class _EclMultiselectOptionComponent extends
|
|
|
11425
11424
|
return uuidgen3();
|
|
11426
11425
|
}
|
|
11427
11426
|
static {
|
|
11428
|
-
this.ɵfac = i0148.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0148, type: _EclMultiselectOptionComponent, deps: [], target: i0148.ɵɵFactoryTarget.Component });
|
|
11427
|
+
this.ɵfac = i0148.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0148, type: _EclMultiselectOptionComponent, deps: [{ token: i0148.Renderer2 }], target: i0148.ɵɵFactoryTarget.Component });
|
|
11429
11428
|
}
|
|
11430
11429
|
static {
|
|
11431
|
-
this.ɵcmp = i0148.ɵɵngDeclareComponent({ minVersion: "
|
|
11430
|
+
this.ɵcmp = i0148.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.0-next.5", type: _EclMultiselectOptionComponent, selector: "div[eclMultiselectOption]", inputs: { value: "value", label: "label", disabled: ["disabled", "disabled", booleanAttribute27], isChecked: "isChecked" }, outputs: { optionClick: "optionClick", optionKeydown: "optionKeydown" }, host: { properties: { "class.ecl-checkbox--disabled": "this.disabled", "attr.disabled": "this.disabled", "style.display": "this.display", "class": "this.cssClasses" } }, viewQueries: [{ propertyName: "eclCheckboxInput", first: true, predicate: ["checkboxInput"], descendants: true }], usesInheritance: true, usesOnChanges: true, hostDirectives: [{ directive: EclCheckboxDirective }], ngImport: i0148, template: '<input\n eclCheckboxInput\n type="checkbox"\n [id]="id"\n [value]="value"\n (click)="onOptionClick()"\n (keydown)="onOptionKeydown($event)"\n [checked]="isChecked"\n [disabled]="disabled"\n #checkboxInput />\n<label [for]="id" eclCheckboxLabel><span [innerHTML]="label | boldText: keyword"></span></label>\n', dependencies: [{ kind: "component", type: EclCheckboxLabelComponent, selector: "label[eclCheckboxLabel]", inputs: ["isInvalid", "isDisabled", "isRequired"] }, { kind: "directive", type: EclCheckboxInputDirective, selector: "input[eclCheckboxInput]" }, { kind: "pipe", type: BoldTextPipe, name: "boldText" }] });
|
|
11432
11431
|
}
|
|
11433
11432
|
};
|
|
11434
|
-
__decorate6([
|
|
11435
|
-
coerceBoolean5
|
|
11436
|
-
], EclMultiselectOptionComponent.prototype, "disabled", void 0);
|
|
11437
11433
|
i0148.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0148, type: EclMultiselectOptionComponent, decorators: [{
|
|
11438
11434
|
type: Component67,
|
|
11439
11435
|
args: [{ selector: "div[eclMultiselectOption]", hostDirectives: [EclCheckboxDirective], template: '<input\n eclCheckboxInput\n type="checkbox"\n [id]="id"\n [value]="value"\n (click)="onOptionClick()"\n (keydown)="onOptionKeydown($event)"\n [checked]="isChecked"\n [disabled]="disabled"\n #checkboxInput />\n<label [for]="id" eclCheckboxLabel><span [innerHTML]="label | boldText: keyword"></span></label>\n' }]
|
|
11440
|
-
}], ctorParameters: () => [], propDecorators: {
|
|
11441
|
-
|
|
11442
|
-
|
|
11443
|
-
|
|
11444
|
-
|
|
11445
|
-
|
|
11446
|
-
|
|
11447
|
-
|
|
11448
|
-
|
|
11449
|
-
|
|
11450
|
-
|
|
11451
|
-
|
|
11452
|
-
|
|
11453
|
-
|
|
11454
|
-
|
|
11455
|
-
|
|
11456
|
-
|
|
11457
|
-
|
|
11458
|
-
|
|
11459
|
-
|
|
11460
|
-
|
|
11461
|
-
|
|
11462
|
-
|
|
11463
|
-
|
|
11464
|
-
|
|
11465
|
-
|
|
11466
|
-
|
|
11467
|
-
|
|
11468
|
-
|
|
11469
|
-
args: ["style.display"]
|
|
11470
|
-
}],
|
|
11471
|
-
cssClasses: [{
|
|
11472
|
-
type: HostBinding101,
|
|
11473
|
-
args: ["class"]
|
|
11474
|
-
}],
|
|
11475
|
-
isChecked: [{
|
|
11476
|
-
type: Input62
|
|
11477
|
-
}]
|
|
11478
|
-
} });
|
|
11436
|
+
}], ctorParameters: () => [{ type: i0148.Renderer2 }], propDecorators: { eclCheckboxInput: [{
|
|
11437
|
+
type: ViewChild11,
|
|
11438
|
+
args: ["checkboxInput"]
|
|
11439
|
+
}], value: [{
|
|
11440
|
+
type: Input62
|
|
11441
|
+
}], label: [{
|
|
11442
|
+
type: Input62
|
|
11443
|
+
}], disabled: [{
|
|
11444
|
+
type: Input62,
|
|
11445
|
+
args: [{ transform: booleanAttribute27 }]
|
|
11446
|
+
}, {
|
|
11447
|
+
type: HostBinding101,
|
|
11448
|
+
args: ["class.ecl-checkbox--disabled"]
|
|
11449
|
+
}, {
|
|
11450
|
+
type: HostBinding101,
|
|
11451
|
+
args: ["attr.disabled"]
|
|
11452
|
+
}], optionClick: [{
|
|
11453
|
+
type: Output30
|
|
11454
|
+
}], optionKeydown: [{
|
|
11455
|
+
type: Output30
|
|
11456
|
+
}], display: [{
|
|
11457
|
+
type: HostBinding101,
|
|
11458
|
+
args: ["style.display"]
|
|
11459
|
+
}], cssClasses: [{
|
|
11460
|
+
type: HostBinding101,
|
|
11461
|
+
args: ["class"]
|
|
11462
|
+
}], isChecked: [{
|
|
11463
|
+
type: Input62
|
|
11464
|
+
}] } });
|
|
11479
11465
|
|
|
11480
11466
|
// lib/components/ecl-multiselect/ecl-multiselect-input/ecl-multiselect-input.component.mjs
|
|
11481
|
-
import {
|
|
11482
|
-
import { Component as Component68, EventEmitter as EventEmitter31, HostBinding as HostBinding102, Input as Input63, Output as Output31, ViewChild as ViewChild12 } from "@angular/core";
|
|
11483
|
-
import { coerceBoolean as coerceBoolean6 } from "@eui/base";
|
|
11467
|
+
import { Component as Component68, EventEmitter as EventEmitter31, HostBinding as HostBinding102, Input as Input63, Output as Output31, ViewChild as ViewChild12, booleanAttribute as booleanAttribute28 } from "@angular/core";
|
|
11484
11468
|
import * as i0149 from "@angular/core";
|
|
11469
|
+
import * as i53 from "@ngx-translate/core";
|
|
11485
11470
|
var EclMultiselectMainInputClickEvent = class {
|
|
11486
11471
|
constructor(event) {
|
|
11487
11472
|
this.event = event;
|
|
@@ -11491,9 +11476,12 @@ var EclMultiselectInputComponent = class _EclMultiselectInputComponent extends E
|
|
|
11491
11476
|
get cssClasses() {
|
|
11492
11477
|
return [super.getCssClasses("ecl-select__container"), `ecl-select__container--${this.eclSize}`].join(" ").trim();
|
|
11493
11478
|
}
|
|
11494
|
-
constructor() {
|
|
11479
|
+
constructor(eclThemeService, renderer) {
|
|
11495
11480
|
super();
|
|
11481
|
+
this.eclThemeService = eclThemeService;
|
|
11482
|
+
this.renderer = renderer;
|
|
11496
11483
|
this.eclSize = "m";
|
|
11484
|
+
this.toggleLabel = void 0;
|
|
11497
11485
|
this.isDisabled = false;
|
|
11498
11486
|
this.isInvalid = false;
|
|
11499
11487
|
this.selectedItems = [];
|
|
@@ -11503,6 +11491,8 @@ var EclMultiselectInputComponent = class _EclMultiselectInputComponent extends E
|
|
|
11503
11491
|
this.ariaLabeledby = void 0;
|
|
11504
11492
|
this.mainInputClick = new EventEmitter31();
|
|
11505
11493
|
this.mainInputKeydown = new EventEmitter31();
|
|
11494
|
+
this.ICON_SIZE_FOR_EC_THEME_ON = "xs";
|
|
11495
|
+
this.ICON_SIZE_FOR_EU_THEME_ON = "s";
|
|
11506
11496
|
}
|
|
11507
11497
|
get buttonText() {
|
|
11508
11498
|
return this.selectedItems.length === 0 ? this.inputPlaceholder : this.selectedItems.join(",");
|
|
@@ -11513,6 +11503,16 @@ var EclMultiselectInputComponent = class _EclMultiselectInputComponent extends E
|
|
|
11513
11503
|
get isShowCounter() {
|
|
11514
11504
|
return this.selectedItems && this.selectedItems.length > 0;
|
|
11515
11505
|
}
|
|
11506
|
+
get isActive() {
|
|
11507
|
+
return this.isDropdownExpanded;
|
|
11508
|
+
}
|
|
11509
|
+
get sizeIcon() {
|
|
11510
|
+
if (this.eclThemeService.isECTheme()) {
|
|
11511
|
+
return this.ICON_SIZE_FOR_EC_THEME_ON;
|
|
11512
|
+
} else {
|
|
11513
|
+
return this.ICON_SIZE_FOR_EU_THEME_ON;
|
|
11514
|
+
}
|
|
11515
|
+
}
|
|
11516
11516
|
onClick(evt) {
|
|
11517
11517
|
this.mainInputClick.emit(new EclMultiselectMainInputClickEvent(evt));
|
|
11518
11518
|
}
|
|
@@ -11528,35 +11528,83 @@ var EclMultiselectInputComponent = class _EclMultiselectInputComponent extends E
|
|
|
11528
11528
|
}
|
|
11529
11529
|
}
|
|
11530
11530
|
onFocus() {
|
|
11531
|
-
this.inputMultiselect.nativeElement.focus();
|
|
11531
|
+
this.renderer.selectRootElement(this.inputMultiselect.nativeElement, true).focus();
|
|
11532
11532
|
}
|
|
11533
11533
|
static {
|
|
11534
|
-
this.ɵfac = i0149.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0149, type: _EclMultiselectInputComponent, deps: [], target: i0149.ɵɵFactoryTarget.Component });
|
|
11534
|
+
this.ɵfac = i0149.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0149, type: _EclMultiselectInputComponent, deps: [{ token: EclThemeService }, { token: i0149.Renderer2 }], target: i0149.ɵɵFactoryTarget.Component });
|
|
11535
11535
|
}
|
|
11536
11536
|
static {
|
|
11537
|
-
this.ɵcmp = i0149.ɵɵngDeclareComponent({ minVersion: "
|
|
11537
|
+
this.ɵcmp = i0149.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.0-next.5", type: _EclMultiselectInputComponent, selector: "div[eclMultiselectInput]", inputs: { eclSize: "eclSize", toggleId: "toggleId", toggleLabel: "toggleLabel", isDisabled: ["isDisabled", "isDisabled", booleanAttribute28], isInvalid: ["isInvalid", "isInvalid", booleanAttribute28], inputPlaceholder: "inputPlaceholder", selectedItems: "selectedItems", isDropdownExpanded: "isDropdownExpanded", ariaControls: "ariaControls", ariaDescribedby: "ariaDescribedby", ariaLabeledby: "ariaLabeledby" }, outputs: { mainInputClick: "mainInputClick", mainInputKeydown: "mainInputKeydown" }, host: { properties: { "class.ecl-select__container--disabled": "this.isDisabled", "class.ecl-select__container--invalid": "this.isInvalid", "class": "this.cssClasses" } }, viewQueries: [{ propertyName: "inputMultiselect", first: true, predicate: ["inputMultiselect"], descendants: true }], usesInheritance: true, ngImport: i0149, template: `<div [class.ecl-select-multiple-selections-counter--visible]="isShowCounter" class="ecl-select-multiple-selections-counter">
|
|
11538
|
+
<span>{{ selectedItemsCount }}</span>
|
|
11539
|
+
</div>
|
|
11540
|
+
<button
|
|
11541
|
+
class="ecl-select ecl-select__multiple-toggle"
|
|
11542
|
+
[class.ecl-select--active]="isActive"
|
|
11543
|
+
#inputMultiselect
|
|
11544
|
+
type="button"
|
|
11545
|
+
[id]="toggleId"
|
|
11546
|
+
[attr.aria-expanded]="isDropdownExpanded"
|
|
11547
|
+
[attr.aria-controls]="ariaControls"
|
|
11548
|
+
[attr.disabled]="isDisabled ? true : undefined"
|
|
11549
|
+
[attr.aria-labelledby]="ariaLabeledby"
|
|
11550
|
+
[attr.aria-describedby]="ariaDescribedby"
|
|
11551
|
+
(keydown)="onKeydown($event)"
|
|
11552
|
+
(click)="onClick($event)"> {{ buttonText }}
|
|
11553
|
+
</button>
|
|
11554
|
+
<div class="ecl-select__icon">
|
|
11555
|
+
<button eclButton isIconOnly variant="ghost" tabindex="-1">
|
|
11556
|
+
<span eclButtonLabel>
|
|
11557
|
+
{{ toggleLabel || 'ecl.multiselect.TOGGLE.DROPDOWN' | translate }}
|
|
11558
|
+
</span>
|
|
11559
|
+
<ecl-icon icon="corner-arrow" [size]="sizeIcon" transform="rotate-180"></ecl-icon>
|
|
11560
|
+
</button>
|
|
11561
|
+
</div>
|
|
11562
|
+
`, dependencies: [{ kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "component", type: EclButtonComponent, selector: "button[eclButton], button[ecl-button], a[eclButton]", inputs: ["isIconOnly", "variant", "containerStyleClass"] }, { kind: "directive", type: EclButtonLabelDirective, selector: "[eclButtonLabel]" }, { kind: "pipe", type: i53.TranslatePipe, name: "translate" }] });
|
|
11538
11563
|
}
|
|
11539
11564
|
};
|
|
11540
|
-
__decorate7([
|
|
11541
|
-
coerceBoolean6
|
|
11542
|
-
], EclMultiselectInputComponent.prototype, "isDisabled", void 0);
|
|
11543
|
-
__decorate7([
|
|
11544
|
-
coerceBoolean6
|
|
11545
|
-
], EclMultiselectInputComponent.prototype, "isInvalid", void 0);
|
|
11546
11565
|
i0149.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0149, type: EclMultiselectInputComponent, decorators: [{
|
|
11547
11566
|
type: Component68,
|
|
11548
|
-
args: [{ selector: "div[eclMultiselectInput]", template:
|
|
11549
|
-
|
|
11567
|
+
args: [{ selector: "div[eclMultiselectInput]", template: `<div [class.ecl-select-multiple-selections-counter--visible]="isShowCounter" class="ecl-select-multiple-selections-counter">
|
|
11568
|
+
<span>{{ selectedItemsCount }}</span>
|
|
11569
|
+
</div>
|
|
11570
|
+
<button
|
|
11571
|
+
class="ecl-select ecl-select__multiple-toggle"
|
|
11572
|
+
[class.ecl-select--active]="isActive"
|
|
11573
|
+
#inputMultiselect
|
|
11574
|
+
type="button"
|
|
11575
|
+
[id]="toggleId"
|
|
11576
|
+
[attr.aria-expanded]="isDropdownExpanded"
|
|
11577
|
+
[attr.aria-controls]="ariaControls"
|
|
11578
|
+
[attr.disabled]="isDisabled ? true : undefined"
|
|
11579
|
+
[attr.aria-labelledby]="ariaLabeledby"
|
|
11580
|
+
[attr.aria-describedby]="ariaDescribedby"
|
|
11581
|
+
(keydown)="onKeydown($event)"
|
|
11582
|
+
(click)="onClick($event)"> {{ buttonText }}
|
|
11583
|
+
</button>
|
|
11584
|
+
<div class="ecl-select__icon">
|
|
11585
|
+
<button eclButton isIconOnly variant="ghost" tabindex="-1">
|
|
11586
|
+
<span eclButtonLabel>
|
|
11587
|
+
{{ toggleLabel || 'ecl.multiselect.TOGGLE.DROPDOWN' | translate }}
|
|
11588
|
+
</span>
|
|
11589
|
+
<ecl-icon icon="corner-arrow" [size]="sizeIcon" transform="rotate-180"></ecl-icon>
|
|
11590
|
+
</button>
|
|
11591
|
+
</div>
|
|
11592
|
+
` }]
|
|
11593
|
+
}], ctorParameters: () => [{ type: EclThemeService }, { type: i0149.Renderer2 }], propDecorators: { eclSize: [{
|
|
11550
11594
|
type: Input63
|
|
11551
11595
|
}], toggleId: [{
|
|
11552
11596
|
type: Input63
|
|
11553
|
-
}],
|
|
11597
|
+
}], toggleLabel: [{
|
|
11554
11598
|
type: Input63
|
|
11599
|
+
}], isDisabled: [{
|
|
11600
|
+
type: Input63,
|
|
11601
|
+
args: [{ transform: booleanAttribute28 }]
|
|
11555
11602
|
}, {
|
|
11556
11603
|
type: HostBinding102,
|
|
11557
11604
|
args: ["class.ecl-select__container--disabled"]
|
|
11558
11605
|
}], isInvalid: [{
|
|
11559
|
-
type: Input63
|
|
11606
|
+
type: Input63,
|
|
11607
|
+
args: [{ transform: booleanAttribute28 }]
|
|
11560
11608
|
}, {
|
|
11561
11609
|
type: HostBinding102,
|
|
11562
11610
|
args: ["class.ecl-select__container--invalid"]
|
|
@@ -11620,10 +11668,8 @@ i0150.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
11620
11668
|
}] } });
|
|
11621
11669
|
|
|
11622
11670
|
// lib/components/ecl-multiselect/ecl-multiselect-dropdown/ecl-multiselect-dropdown.component.mjs
|
|
11623
|
-
import {
|
|
11624
|
-
import { Component as Component70, ElementRef as ElementRef24, EventEmitter as EventEmitter32, forwardRef as forwardRef43, HostBinding as HostBinding104, HostListener as HostListener17, Input as Input65, Output as Output32, ViewChild as ViewChild13, ViewChildren as ViewChildren2 } from "@angular/core";
|
|
11671
|
+
import { booleanAttribute as booleanAttribute29, Component as Component70, ElementRef as ElementRef24, EventEmitter as EventEmitter32, forwardRef as forwardRef43, HostBinding as HostBinding104, HostListener as HostListener17, Input as Input65, Output as Output32, ViewChild as ViewChild13, ViewChildren as ViewChildren2 } from "@angular/core";
|
|
11625
11672
|
import { NG_VALUE_ACCESSOR as NG_VALUE_ACCESSOR4 } from "@angular/forms";
|
|
11626
|
-
import { coerceBoolean as coerceBoolean7 } from "@eui/base";
|
|
11627
11673
|
import { Subject as Subject21 } from "rxjs";
|
|
11628
11674
|
import { v4 as uuidgen4 } from "uuid";
|
|
11629
11675
|
import * as i0151 from "@angular/core";
|
|
@@ -11639,7 +11685,6 @@ var EclMultiselectDropdownComponent = class _EclMultiselectDropdownComponent ext
|
|
|
11639
11685
|
get cssClasses() {
|
|
11640
11686
|
return [super.getCssClasses("ecl-select__multiple")].join(" ").trim();
|
|
11641
11687
|
}
|
|
11642
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
11643
11688
|
get disabled() {
|
|
11644
11689
|
return this._disabled || void 0;
|
|
11645
11690
|
}
|
|
@@ -11657,6 +11702,7 @@ var EclMultiselectDropdownComponent = class _EclMultiselectDropdownComponent ext
|
|
|
11657
11702
|
this.eclSize = "m";
|
|
11658
11703
|
this.ariaDescribedby = void 0;
|
|
11659
11704
|
this.ariaLabeledby = void 0;
|
|
11705
|
+
this.toggleLabel = void 0;
|
|
11660
11706
|
this.id = "";
|
|
11661
11707
|
this.isShowNoResultsFound = false;
|
|
11662
11708
|
this.isShowMultiselectDropdown = false;
|
|
@@ -11768,7 +11814,7 @@ var EclMultiselectDropdownComponent = class _EclMultiselectDropdownComponent ext
|
|
|
11768
11814
|
}
|
|
11769
11815
|
onArrowLeftClose(evt) {
|
|
11770
11816
|
evt.preventDefault();
|
|
11771
|
-
this.clearAllBtn.nativeElement.focus();
|
|
11817
|
+
this.renderer.selectRootElement(this.clearAllBtn.nativeElement, true).focus();
|
|
11772
11818
|
}
|
|
11773
11819
|
onTabClose(evt) {
|
|
11774
11820
|
evt.preventDefault();
|
|
@@ -11776,7 +11822,7 @@ var EclMultiselectDropdownComponent = class _EclMultiselectDropdownComponent ext
|
|
|
11776
11822
|
}
|
|
11777
11823
|
onArrowRightClear(evt) {
|
|
11778
11824
|
evt.preventDefault();
|
|
11779
|
-
this.closeBtn.nativeElement.focus();
|
|
11825
|
+
this.renderer.selectRootElement(this.closeBtn.nativeElement, true).focus();
|
|
11780
11826
|
}
|
|
11781
11827
|
onEnterSearch(evt) {
|
|
11782
11828
|
evt.preventDefault();
|
|
@@ -11785,7 +11831,7 @@ var EclMultiselectDropdownComponent = class _EclMultiselectDropdownComponent ext
|
|
|
11785
11831
|
evt.preventDefault();
|
|
11786
11832
|
const currentOptions = this.getActiveOptions();
|
|
11787
11833
|
if (currentOptions.length > 1) {
|
|
11788
|
-
this.selectAllCheckbox.nativeElement.focus();
|
|
11834
|
+
this.renderer.selectRootElement(this.selectAllCheckbox.nativeElement, true).focus();
|
|
11789
11835
|
} else {
|
|
11790
11836
|
currentOptions[0].onFocus();
|
|
11791
11837
|
}
|
|
@@ -11798,7 +11844,7 @@ var EclMultiselectDropdownComponent = class _EclMultiselectDropdownComponent ext
|
|
|
11798
11844
|
onKeydownMainInput(evt) {
|
|
11799
11845
|
evt.preventDefault();
|
|
11800
11846
|
this.showMultiselectDropdown();
|
|
11801
|
-
setTimeout(() => this.searchInput.nativeElement.focus());
|
|
11847
|
+
setTimeout(() => this.renderer.selectRootElement(this.searchInput.nativeElement, true).focus());
|
|
11802
11848
|
}
|
|
11803
11849
|
onClickMainInput(evt) {
|
|
11804
11850
|
evt.event.preventDefault();
|
|
@@ -11813,7 +11859,7 @@ var EclMultiselectDropdownComponent = class _EclMultiselectDropdownComponent ext
|
|
|
11813
11859
|
}
|
|
11814
11860
|
onArrowUpSelectAll(evt) {
|
|
11815
11861
|
evt.preventDefault();
|
|
11816
|
-
this.searchInput.nativeElement.focus();
|
|
11862
|
+
this.renderer.selectRootElement(this.searchInput.nativeElement, true).focus();
|
|
11817
11863
|
}
|
|
11818
11864
|
onSearch(input) {
|
|
11819
11865
|
const keyword = input.value;
|
|
@@ -11882,7 +11928,7 @@ var EclMultiselectDropdownComponent = class _EclMultiselectDropdownComponent ext
|
|
|
11882
11928
|
}
|
|
11883
11929
|
onOptionSelected(evt) {
|
|
11884
11930
|
if (this.selectAllCheckbox.nativeElement.checked) {
|
|
11885
|
-
this.selectAllCheckbox.nativeElement
|
|
11931
|
+
this.renderer.setProperty(this.selectAllCheckbox.nativeElement, "checked", false);
|
|
11886
11932
|
}
|
|
11887
11933
|
const currOption = evt.multiselectOption;
|
|
11888
11934
|
if (currOption.isChecked) {
|
|
@@ -11904,7 +11950,7 @@ var EclMultiselectDropdownComponent = class _EclMultiselectDropdownComponent ext
|
|
|
11904
11950
|
});
|
|
11905
11951
|
}
|
|
11906
11952
|
unselectAllActiveOptions() {
|
|
11907
|
-
this.selectAllCheckbox.nativeElement
|
|
11953
|
+
this.renderer.setProperty(this.selectAllCheckbox.nativeElement, "checked", false);
|
|
11908
11954
|
this._selectedItems = [];
|
|
11909
11955
|
this.getAllActiveOptions().forEach((item) => {
|
|
11910
11956
|
item.isChecked = false;
|
|
@@ -11936,7 +11982,7 @@ var EclMultiselectDropdownComponent = class _EclMultiselectDropdownComponent ext
|
|
|
11936
11982
|
item.isChecked = false;
|
|
11937
11983
|
});
|
|
11938
11984
|
if (this.selectAllCheckbox) {
|
|
11939
|
-
this.selectAllCheckbox.nativeElement
|
|
11985
|
+
this.renderer.setProperty(this.selectAllCheckbox.nativeElement, "checked", false);
|
|
11940
11986
|
}
|
|
11941
11987
|
this._selectedItems = [];
|
|
11942
11988
|
}
|
|
@@ -11964,7 +12010,7 @@ var EclMultiselectDropdownComponent = class _EclMultiselectDropdownComponent ext
|
|
|
11964
12010
|
nextSiblingCheckbox.onFocus();
|
|
11965
12011
|
} else {
|
|
11966
12012
|
if (this.clearAllBtn) {
|
|
11967
|
-
this.clearAllBtn.nativeElement.focus();
|
|
12013
|
+
this.renderer.selectRootElement(this.clearAllBtn.nativeElement, true).focus();
|
|
11968
12014
|
} else {
|
|
11969
12015
|
this.eclMultiselectInput.onFocus();
|
|
11970
12016
|
}
|
|
@@ -11977,9 +12023,9 @@ var EclMultiselectDropdownComponent = class _EclMultiselectDropdownComponent ext
|
|
|
11977
12023
|
const prevSiblingCheckbox = this.getActiveOptions()[index - 1];
|
|
11978
12024
|
prevSiblingCheckbox.onFocus();
|
|
11979
12025
|
} else if (this.selectAllCheckbox.nativeElement.disabled) {
|
|
11980
|
-
this.searchInput.nativeElement.focus();
|
|
12026
|
+
this.renderer.selectRootElement(this.searchInput.nativeElement, true).focus();
|
|
11981
12027
|
} else {
|
|
11982
|
-
this.selectAllCheckbox.nativeElement.focus();
|
|
12028
|
+
this.renderer.selectRootElement(this.selectAllCheckbox.nativeElement, true).focus();
|
|
11983
12029
|
}
|
|
11984
12030
|
}
|
|
11985
12031
|
getActiveOptions() {
|
|
@@ -12008,7 +12054,7 @@ var EclMultiselectDropdownComponent = class _EclMultiselectDropdownComponent ext
|
|
|
12008
12054
|
this.ɵfac = i0151.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0151, type: _EclMultiselectDropdownComponent, deps: [{ token: i0151.ElementRef }, { token: i0151.IterableDiffers }, { token: i0151.Renderer2 }], target: i0151.ɵɵFactoryTarget.Component });
|
|
12009
12055
|
}
|
|
12010
12056
|
static {
|
|
12011
|
-
this.ɵcmp = i0151.ɵɵngDeclareComponent({ minVersion: "
|
|
12057
|
+
this.ɵcmp = i0151.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.5", type: _EclMultiselectDropdownComponent, selector: "div[eclMultiselectDropdown]", inputs: { isInvalid: ["isInvalid", "isInvalid", booleanAttribute29], mainInputPlaceholder: "mainInputPlaceholder", searchFieldPlaceholder: "searchFieldPlaceholder", eclSize: "eclSize", disabled: ["disabled", "disabled", booleanAttribute29] }, outputs: { eclChange: "eclChange" }, host: { listeners: { "document:keyup.escape": "onEscapeKey($event)", "document:click": "onKeyUp($event)" }, properties: { "class": "this.cssClasses", "attr.disabled": "this.disabled" } }, providers: [
|
|
12012
12058
|
{
|
|
12013
12059
|
provide: NG_VALUE_ACCESSOR4,
|
|
12014
12060
|
useExisting: forwardRef43(() => _EclMultiselectDropdownComponent),
|
|
@@ -12016,7 +12062,7 @@ var EclMultiselectDropdownComponent = class _EclMultiselectDropdownComponent ext
|
|
|
12016
12062
|
}
|
|
12017
12063
|
], 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: i0151, template: `<div eclMultiselectInput #eclMultiselectInput [inputPlaceholder]="mainInputPlaceholder" [selectedItems]="selectedItems"
|
|
12018
12064
|
(mainInputClick)="onClickMainInput($event)" (mainInputKeydown)="onKeydownMainInput($event)" [isDisabled]="disabled"
|
|
12019
|
-
[ariaLabeledby]="ariaLabeledby" [ariaDescribedby]="ariaDescribedby" [ariaControls]="dropdownId" [isInvalid]="isInvalid"
|
|
12065
|
+
[ariaLabeledby]="ariaLabeledby" [ariaDescribedby]="ariaDescribedby" [toggleLabel]="toggleLabel" [ariaControls]="dropdownId" [isInvalid]="isInvalid"
|
|
12020
12066
|
[isDropdownExpanded]="isShowMultiselectDropdown" [eclSize]="eclSize" [toggleId]="toggleId"></div>
|
|
12021
12067
|
<div
|
|
12022
12068
|
[style.display]="isShowMultiselectDropdown ? 'block' : 'none'"
|
|
@@ -12044,65 +12090,68 @@ var EclMultiselectDropdownComponent = class _EclMultiselectDropdownComponent ext
|
|
|
12044
12090
|
</div>
|
|
12045
12091
|
<div class="ecl-select__multiple-options">
|
|
12046
12092
|
<ng-container *ngFor="let item of multiOptionDirectives">
|
|
12047
|
-
|
|
12093
|
+
@if (item.isOptGroup()) {
|
|
12094
|
+
<fieldset eclMultiselectOptgroup [label]="item.label">
|
|
12095
|
+
<div
|
|
12096
|
+
eclMultiselectOption
|
|
12097
|
+
*ngFor="let elem of item.eclOptionItems"
|
|
12098
|
+
[value]="elem.value"
|
|
12099
|
+
[label]="elem.label"
|
|
12100
|
+
[disabled]="elem.disabled"
|
|
12101
|
+
[isChecked]="elem.selected"
|
|
12102
|
+
[class]="elem.class"
|
|
12103
|
+
(optionClick)="onOptionSelected($event)"
|
|
12104
|
+
(optionKeydown)="onKeydownOption($event)"></div>
|
|
12105
|
+
</fieldset>
|
|
12106
|
+
} @else if (!item.isOptGroup()) {
|
|
12048
12107
|
<div
|
|
12049
12108
|
eclMultiselectOption
|
|
12050
|
-
|
|
12051
|
-
[
|
|
12052
|
-
[
|
|
12053
|
-
[
|
|
12054
|
-
[
|
|
12055
|
-
[class]="elem.class"
|
|
12109
|
+
[value]="item.value"
|
|
12110
|
+
[label]="item.label"
|
|
12111
|
+
[disabled]="item.disabled"
|
|
12112
|
+
[isChecked]="item.selected"
|
|
12113
|
+
[class]="item.class"
|
|
12056
12114
|
(optionClick)="onOptionSelected($event)"
|
|
12057
12115
|
(optionKeydown)="onKeydownOption($event)"></div>
|
|
12058
|
-
|
|
12059
|
-
|
|
12060
|
-
eclMultiselectOption
|
|
12061
|
-
*ngIf="!item.isOptGroup()"
|
|
12062
|
-
[value]="item.value"
|
|
12063
|
-
[label]="item.label"
|
|
12064
|
-
[disabled]="item.disabled"
|
|
12065
|
-
[isChecked]="item.selected"
|
|
12066
|
-
[class]="item.class"
|
|
12067
|
-
(optionClick)="onOptionSelected($event)"
|
|
12068
|
-
(optionKeydown)="onKeydownOption($event)"></div>
|
|
12116
|
+
}
|
|
12117
|
+
|
|
12069
12118
|
</ng-container>
|
|
12070
|
-
|
|
12071
|
-
|
|
12072
|
-
|
|
12073
|
-
|
|
12074
|
-
|
|
12075
|
-
|
|
12076
|
-
|
|
12077
|
-
variant="ghost"
|
|
12078
|
-
#clearAllBtn
|
|
12079
|
-
(keydown.arrowup)="onArrowUpCloseClear($event)"
|
|
12080
|
-
(keydown.arrowright)="onArrowRightClear($event)"
|
|
12081
|
-
(keydown.enter)="onEnterClear($event)"
|
|
12082
|
-
(click)="onClickClearAll($event)">
|
|
12083
|
-
{{ 'ecl.multiselect.CLEAR-ALL' | translate }}
|
|
12084
|
-
</button>
|
|
12085
|
-
<button
|
|
12086
|
-
eclButton
|
|
12087
|
-
variant="primary"
|
|
12088
|
-
#closeBtn
|
|
12089
|
-
(keydown.arrowup)="onArrowUpCloseClear($event)"
|
|
12090
|
-
(keydown.arrowleft)="onArrowLeftClose($event)"
|
|
12091
|
-
(keydown.tab)="onTabClose($event)"
|
|
12092
|
-
(click)="onClickClose($event)">
|
|
12093
|
-
{{ 'ecl.common.CLOSE' | translate }}
|
|
12094
|
-
</button>
|
|
12119
|
+
|
|
12120
|
+
@if (isShowNoResultsFound) {
|
|
12121
|
+
<div class="ecl-select__multiple-no-results">
|
|
12122
|
+
<span>{{ 'ecl.multiselect.NO-RESULTS-FOUND' | translate }}</span>
|
|
12123
|
+
</div>
|
|
12124
|
+
}
|
|
12125
|
+
|
|
12095
12126
|
</div>
|
|
12127
|
+
@if (isShowToolbar) {
|
|
12128
|
+
<div class="ecl-select-multiple-toolbar">
|
|
12129
|
+
<button
|
|
12130
|
+
eclButton
|
|
12131
|
+
variant="ghost"
|
|
12132
|
+
#clearAllBtn
|
|
12133
|
+
(keydown.arrowup)="onArrowUpCloseClear($event)"
|
|
12134
|
+
(keydown.arrowright)="onArrowRightClear($event)"
|
|
12135
|
+
(keydown.enter)="onEnterClear($event)"
|
|
12136
|
+
(click)="onClickClearAll($event)">
|
|
12137
|
+
{{ 'ecl.multiselect.CLEAR-ALL' | translate }}
|
|
12138
|
+
</button>
|
|
12139
|
+
<button
|
|
12140
|
+
eclButton
|
|
12141
|
+
variant="primary"
|
|
12142
|
+
#closeBtn
|
|
12143
|
+
(keydown.arrowup)="onArrowUpCloseClear($event)"
|
|
12144
|
+
(keydown.arrowleft)="onArrowLeftClose($event)"
|
|
12145
|
+
(keydown.tab)="onTabClose($event)"
|
|
12146
|
+
(click)="onClickClose($event)">
|
|
12147
|
+
{{ 'ecl.common.CLOSE' | translate }}
|
|
12148
|
+
</button>
|
|
12149
|
+
</div>
|
|
12150
|
+
}
|
|
12096
12151
|
</div>
|
|
12097
|
-
`, dependencies: [{ kind: "directive", type: i125.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type:
|
|
12152
|
+
`, dependencies: [{ kind: "directive", type: i125.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: EclCheckboxDirective, selector: "[eclCheckbox]", inputs: ["isDisabled", "isInvalid", "isSingle"] }, { kind: "component", type: EclCheckboxLabelComponent, selector: "label[eclCheckboxLabel]", inputs: ["isInvalid", "isDisabled", "isRequired"] }, { kind: "directive", type: EclCheckboxInputDirective, selector: "input[eclCheckboxInput]" }, { kind: "component", type: EclButtonComponent, selector: "button[eclButton], button[ecl-button], a[eclButton]", inputs: ["isIconOnly", "variant", "containerStyleClass"] }, { kind: "component", type: EclMultiselectOptionComponent, selector: "div[eclMultiselectOption]", inputs: ["value", "label", "disabled", "isChecked"], outputs: ["optionClick", "optionKeydown"] }, { kind: "component", type: EclMultiselectInputComponent, selector: "div[eclMultiselectInput]", inputs: ["eclSize", "toggleId", "toggleLabel", "isDisabled", "isInvalid", "inputPlaceholder", "selectedItems", "isDropdownExpanded", "ariaControls", "ariaDescribedby", "ariaLabeledby"], outputs: ["mainInputClick", "mainInputKeydown"] }, { kind: "component", type: EclMultiselectOptgroupComponent, selector: "fieldset[eclMultiselectOptgroup]", inputs: ["label"] }, { kind: "pipe", type: i92.TranslatePipe, name: "translate" }] });
|
|
12098
12153
|
}
|
|
12099
12154
|
};
|
|
12100
|
-
__decorate8([
|
|
12101
|
-
coerceBoolean7
|
|
12102
|
-
], EclMultiselectDropdownComponent.prototype, "isInvalid", null);
|
|
12103
|
-
__decorate8([
|
|
12104
|
-
coerceBoolean7
|
|
12105
|
-
], EclMultiselectDropdownComponent.prototype, "disabled", null);
|
|
12106
12155
|
i0151.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0151, type: EclMultiselectDropdownComponent, decorators: [{
|
|
12107
12156
|
type: Component70,
|
|
12108
12157
|
args: [{ selector: "div[eclMultiselectDropdown]", providers: [
|
|
@@ -12113,7 +12162,7 @@ i0151.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
12113
12162
|
}
|
|
12114
12163
|
], template: `<div eclMultiselectInput #eclMultiselectInput [inputPlaceholder]="mainInputPlaceholder" [selectedItems]="selectedItems"
|
|
12115
12164
|
(mainInputClick)="onClickMainInput($event)" (mainInputKeydown)="onKeydownMainInput($event)" [isDisabled]="disabled"
|
|
12116
|
-
[ariaLabeledby]="ariaLabeledby" [ariaDescribedby]="ariaDescribedby" [ariaControls]="dropdownId" [isInvalid]="isInvalid"
|
|
12165
|
+
[ariaLabeledby]="ariaLabeledby" [ariaDescribedby]="ariaDescribedby" [toggleLabel]="toggleLabel" [ariaControls]="dropdownId" [isInvalid]="isInvalid"
|
|
12117
12166
|
[isDropdownExpanded]="isShowMultiselectDropdown" [eclSize]="eclSize" [toggleId]="toggleId"></div>
|
|
12118
12167
|
<div
|
|
12119
12168
|
[style.display]="isShowMultiselectDropdown ? 'block' : 'none'"
|
|
@@ -12141,55 +12190,64 @@ i0151.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
12141
12190
|
</div>
|
|
12142
12191
|
<div class="ecl-select__multiple-options">
|
|
12143
12192
|
<ng-container *ngFor="let item of multiOptionDirectives">
|
|
12144
|
-
|
|
12193
|
+
@if (item.isOptGroup()) {
|
|
12194
|
+
<fieldset eclMultiselectOptgroup [label]="item.label">
|
|
12195
|
+
<div
|
|
12196
|
+
eclMultiselectOption
|
|
12197
|
+
*ngFor="let elem of item.eclOptionItems"
|
|
12198
|
+
[value]="elem.value"
|
|
12199
|
+
[label]="elem.label"
|
|
12200
|
+
[disabled]="elem.disabled"
|
|
12201
|
+
[isChecked]="elem.selected"
|
|
12202
|
+
[class]="elem.class"
|
|
12203
|
+
(optionClick)="onOptionSelected($event)"
|
|
12204
|
+
(optionKeydown)="onKeydownOption($event)"></div>
|
|
12205
|
+
</fieldset>
|
|
12206
|
+
} @else if (!item.isOptGroup()) {
|
|
12145
12207
|
<div
|
|
12146
12208
|
eclMultiselectOption
|
|
12147
|
-
|
|
12148
|
-
[
|
|
12149
|
-
[
|
|
12150
|
-
[
|
|
12151
|
-
[
|
|
12152
|
-
[class]="elem.class"
|
|
12209
|
+
[value]="item.value"
|
|
12210
|
+
[label]="item.label"
|
|
12211
|
+
[disabled]="item.disabled"
|
|
12212
|
+
[isChecked]="item.selected"
|
|
12213
|
+
[class]="item.class"
|
|
12153
12214
|
(optionClick)="onOptionSelected($event)"
|
|
12154
12215
|
(optionKeydown)="onKeydownOption($event)"></div>
|
|
12155
|
-
|
|
12156
|
-
|
|
12157
|
-
eclMultiselectOption
|
|
12158
|
-
*ngIf="!item.isOptGroup()"
|
|
12159
|
-
[value]="item.value"
|
|
12160
|
-
[label]="item.label"
|
|
12161
|
-
[disabled]="item.disabled"
|
|
12162
|
-
[isChecked]="item.selected"
|
|
12163
|
-
[class]="item.class"
|
|
12164
|
-
(optionClick)="onOptionSelected($event)"
|
|
12165
|
-
(optionKeydown)="onKeydownOption($event)"></div>
|
|
12216
|
+
}
|
|
12217
|
+
|
|
12166
12218
|
</ng-container>
|
|
12167
|
-
|
|
12168
|
-
|
|
12169
|
-
|
|
12170
|
-
|
|
12171
|
-
|
|
12172
|
-
|
|
12173
|
-
|
|
12174
|
-
variant="ghost"
|
|
12175
|
-
#clearAllBtn
|
|
12176
|
-
(keydown.arrowup)="onArrowUpCloseClear($event)"
|
|
12177
|
-
(keydown.arrowright)="onArrowRightClear($event)"
|
|
12178
|
-
(keydown.enter)="onEnterClear($event)"
|
|
12179
|
-
(click)="onClickClearAll($event)">
|
|
12180
|
-
{{ 'ecl.multiselect.CLEAR-ALL' | translate }}
|
|
12181
|
-
</button>
|
|
12182
|
-
<button
|
|
12183
|
-
eclButton
|
|
12184
|
-
variant="primary"
|
|
12185
|
-
#closeBtn
|
|
12186
|
-
(keydown.arrowup)="onArrowUpCloseClear($event)"
|
|
12187
|
-
(keydown.arrowleft)="onArrowLeftClose($event)"
|
|
12188
|
-
(keydown.tab)="onTabClose($event)"
|
|
12189
|
-
(click)="onClickClose($event)">
|
|
12190
|
-
{{ 'ecl.common.CLOSE' | translate }}
|
|
12191
|
-
</button>
|
|
12219
|
+
|
|
12220
|
+
@if (isShowNoResultsFound) {
|
|
12221
|
+
<div class="ecl-select__multiple-no-results">
|
|
12222
|
+
<span>{{ 'ecl.multiselect.NO-RESULTS-FOUND' | translate }}</span>
|
|
12223
|
+
</div>
|
|
12224
|
+
}
|
|
12225
|
+
|
|
12192
12226
|
</div>
|
|
12227
|
+
@if (isShowToolbar) {
|
|
12228
|
+
<div class="ecl-select-multiple-toolbar">
|
|
12229
|
+
<button
|
|
12230
|
+
eclButton
|
|
12231
|
+
variant="ghost"
|
|
12232
|
+
#clearAllBtn
|
|
12233
|
+
(keydown.arrowup)="onArrowUpCloseClear($event)"
|
|
12234
|
+
(keydown.arrowright)="onArrowRightClear($event)"
|
|
12235
|
+
(keydown.enter)="onEnterClear($event)"
|
|
12236
|
+
(click)="onClickClearAll($event)">
|
|
12237
|
+
{{ 'ecl.multiselect.CLEAR-ALL' | translate }}
|
|
12238
|
+
</button>
|
|
12239
|
+
<button
|
|
12240
|
+
eclButton
|
|
12241
|
+
variant="primary"
|
|
12242
|
+
#closeBtn
|
|
12243
|
+
(keydown.arrowup)="onArrowUpCloseClear($event)"
|
|
12244
|
+
(keydown.arrowleft)="onArrowLeftClose($event)"
|
|
12245
|
+
(keydown.tab)="onTabClose($event)"
|
|
12246
|
+
(click)="onClickClose($event)">
|
|
12247
|
+
{{ 'ecl.common.CLOSE' | translate }}
|
|
12248
|
+
</button>
|
|
12249
|
+
</div>
|
|
12250
|
+
}
|
|
12193
12251
|
</div>
|
|
12194
12252
|
` }]
|
|
12195
12253
|
}], ctorParameters: () => [{ type: i0151.ElementRef }, { type: i0151.IterableDiffers }, { type: i0151.Renderer2 }], propDecorators: { searchInput: [{
|
|
@@ -12216,7 +12274,8 @@ i0151.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
12216
12274
|
}], eclChange: [{
|
|
12217
12275
|
type: Output32
|
|
12218
12276
|
}], isInvalid: [{
|
|
12219
|
-
type: Input65
|
|
12277
|
+
type: Input65,
|
|
12278
|
+
args: [{ transform: booleanAttribute29 }]
|
|
12220
12279
|
}], cssClasses: [{
|
|
12221
12280
|
type: HostBinding104,
|
|
12222
12281
|
args: ["class"]
|
|
@@ -12227,7 +12286,8 @@ i0151.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
12227
12286
|
}], eclSize: [{
|
|
12228
12287
|
type: Input65
|
|
12229
12288
|
}], disabled: [{
|
|
12230
|
-
type: Input65
|
|
12289
|
+
type: Input65,
|
|
12290
|
+
args: [{ transform: booleanAttribute29 }]
|
|
12231
12291
|
}, {
|
|
12232
12292
|
type: HostBinding104,
|
|
12233
12293
|
args: ["attr.disabled"]
|
|
@@ -12305,11 +12365,9 @@ i0152.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
12305
12365
|
}] } });
|
|
12306
12366
|
|
|
12307
12367
|
// lib/components/ecl-multiselect/ecl-multiselect.component.mjs
|
|
12308
|
-
import { __decorate as __decorate9 } from "tslib";
|
|
12309
12368
|
import { coerceBooleanProperty as coerceBooleanProperty3 } from "@angular/cdk/coercion";
|
|
12310
|
-
import { Component as Component71, ContentChildren as ContentChildren23, EventEmitter as EventEmitter33, forwardRef as forwardRef44, HostBinding as HostBinding106, Input as Input67, Output as Output33, ViewEncapsulation as ViewEncapsulation9 } from "@angular/core";
|
|
12369
|
+
import { booleanAttribute as booleanAttribute30, Component as Component71, ContentChildren as ContentChildren23, EventEmitter as EventEmitter33, forwardRef as forwardRef44, HostBinding as HostBinding106, Input as Input67, Output as Output33, ViewEncapsulation as ViewEncapsulation9 } from "@angular/core";
|
|
12311
12370
|
import { NG_VALUE_ACCESSOR as NG_VALUE_ACCESSOR5, NgControl as NgControl4 } from "@angular/forms";
|
|
12312
|
-
import { coerceBoolean as coerceBoolean8 } from "@eui/base";
|
|
12313
12371
|
import { Subject as Subject23, takeUntil as takeUntil20 } from "rxjs";
|
|
12314
12372
|
import * as i0153 from "@angular/core";
|
|
12315
12373
|
var EclMultiselectComponent = class _EclMultiselectComponent extends ECLBaseDirective {
|
|
@@ -12343,17 +12401,21 @@ var EclMultiselectComponent = class _EclMultiselectComponent extends ECLBaseDire
|
|
|
12343
12401
|
get eclPlaceholder() {
|
|
12344
12402
|
return this._eclPlaceholder;
|
|
12345
12403
|
}
|
|
12346
|
-
constructor(injector, el, viewContainerRef, differs) {
|
|
12404
|
+
constructor(injector, el, viewContainerRef, differs, renderer) {
|
|
12347
12405
|
super();
|
|
12348
12406
|
this.injector = injector;
|
|
12349
12407
|
this.el = el;
|
|
12350
12408
|
this.viewContainerRef = viewContainerRef;
|
|
12351
12409
|
this.differs = differs;
|
|
12410
|
+
this.renderer = renderer;
|
|
12352
12411
|
this.ariaDescribedby = void 0;
|
|
12353
12412
|
this.ariaLabeledby = void 0;
|
|
12354
12413
|
this.id = void 0;
|
|
12414
|
+
this.toggleLabel = void 0;
|
|
12355
12415
|
this.eclChange = new EventEmitter33();
|
|
12356
12416
|
this.eclSize = "m";
|
|
12417
|
+
this.SELECT_CONTAINER_CLASS = "ecl-select__container";
|
|
12418
|
+
this.SELECT_CONTAINER_HIDDEN_CLASS = "ecl-select__container--hidden";
|
|
12357
12419
|
this._disabled = false;
|
|
12358
12420
|
this._isInvalid = false;
|
|
12359
12421
|
this._eclPlaceholder = "Select item";
|
|
@@ -12388,12 +12450,12 @@ var EclMultiselectComponent = class _EclMultiselectComponent extends ECLBaseDire
|
|
|
12388
12450
|
hideOriginalSelectComponent() {
|
|
12389
12451
|
this.hostParentEl.replaceChild(this.hostWrapperEl, this.hostEl);
|
|
12390
12452
|
this.hostWrapperEl.appendChild(this.hostEl);
|
|
12391
|
-
this.hostWrapperEl.
|
|
12453
|
+
this.renderer.addClass(this.hostWrapperEl, this.SELECT_CONTAINER_HIDDEN_CLASS);
|
|
12392
12454
|
}
|
|
12393
12455
|
createHostWrapperContainer() {
|
|
12394
12456
|
const wrapperContainer = document.createElement("div");
|
|
12395
|
-
|
|
12396
|
-
|
|
12457
|
+
this.renderer.addClass(wrapperContainer, this.SELECT_CONTAINER_CLASS);
|
|
12458
|
+
this.renderer.addClass(wrapperContainer, `${this.SELECT_CONTAINER_CLASS}--${this.eclSize}`);
|
|
12397
12459
|
return wrapperContainer;
|
|
12398
12460
|
}
|
|
12399
12461
|
getHostElement() {
|
|
@@ -12416,6 +12478,9 @@ var EclMultiselectComponent = class _EclMultiselectComponent extends ECLBaseDire
|
|
|
12416
12478
|
if (this.ariaDescribedby !== void 0) {
|
|
12417
12479
|
this.multiselectComponent.ariaDescribedby = this.ariaDescribedby;
|
|
12418
12480
|
}
|
|
12481
|
+
if (this.toggleLabel !== void 0) {
|
|
12482
|
+
this.multiselectComponent.toggleLabel = this.toggleLabel;
|
|
12483
|
+
}
|
|
12419
12484
|
if (this.id !== void 0) {
|
|
12420
12485
|
this.multiselectComponent.id = this.id;
|
|
12421
12486
|
}
|
|
@@ -12433,10 +12498,10 @@ var EclMultiselectComponent = class _EclMultiselectComponent extends ECLBaseDire
|
|
|
12433
12498
|
});
|
|
12434
12499
|
}
|
|
12435
12500
|
static {
|
|
12436
|
-
this.ɵfac = i0153.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0153, type: _EclMultiselectComponent, deps: [{ token: i0153.Injector }, { token: i0153.ElementRef }, { token: i0153.ViewContainerRef }, { token: i0153.IterableDiffers }], target: i0153.ɵɵFactoryTarget.Component });
|
|
12501
|
+
this.ɵfac = i0153.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0153, type: _EclMultiselectComponent, deps: [{ token: i0153.Injector }, { token: i0153.ElementRef }, { token: i0153.ViewContainerRef }, { token: i0153.IterableDiffers }, { token: i0153.Renderer2 }], target: i0153.ɵɵFactoryTarget.Component });
|
|
12437
12502
|
}
|
|
12438
12503
|
static {
|
|
12439
|
-
this.ɵcmp = i0153.ɵɵngDeclareComponent({ minVersion: "
|
|
12504
|
+
this.ɵcmp = i0153.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.0-next.5", type: _EclMultiselectComponent, selector: "select[eclMultiselect]", inputs: { ariaDescribedby: "ariaDescribedby", ariaLabeledby: "ariaLabeledby", id: "id", toggleLabel: "toggleLabel", isInvalid: ["isInvalid", "isInvalid", booleanAttribute30], disabled: "disabled", eclPlaceholder: "eclPlaceholder", eclSize: "eclSize" }, outputs: { eclChange: "eclChange" }, host: { properties: { "attr.disabled": "this.disabled", "class": "this.cssClasses" } }, providers: [
|
|
12440
12505
|
{
|
|
12441
12506
|
provide: NG_VALUE_ACCESSOR5,
|
|
12442
12507
|
useExisting: forwardRef44(() => _EclMultiselectComponent),
|
|
@@ -12445,9 +12510,6 @@ var EclMultiselectComponent = class _EclMultiselectComponent extends ECLBaseDire
|
|
|
12445
12510
|
], queries: [{ propertyName: "eclOptionItems", predicate: i0153.forwardRef(() => EclMultiselectOptionDirective) }], usesInheritance: true, ngImport: i0153, template: "<ng-content></ng-content>\n", encapsulation: i0153.ViewEncapsulation.None });
|
|
12446
12511
|
}
|
|
12447
12512
|
};
|
|
12448
|
-
__decorate9([
|
|
12449
|
-
coerceBoolean8
|
|
12450
|
-
], EclMultiselectComponent.prototype, "isInvalid", null);
|
|
12451
12513
|
i0153.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0153, type: EclMultiselectComponent, decorators: [{
|
|
12452
12514
|
type: Component71,
|
|
12453
12515
|
args: [{ selector: "select[eclMultiselect]", encapsulation: ViewEncapsulation9.None, providers: [
|
|
@@ -12457,7 +12519,7 @@ i0153.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
12457
12519
|
multi: true
|
|
12458
12520
|
}
|
|
12459
12521
|
], template: "<ng-content></ng-content>\n" }]
|
|
12460
|
-
}], ctorParameters: () => [{ type: i0153.Injector }, { type: i0153.ElementRef }, { type: i0153.ViewContainerRef }, { type: i0153.IterableDiffers }], propDecorators: { eclOptionItems: [{
|
|
12522
|
+
}], ctorParameters: () => [{ type: i0153.Injector }, { type: i0153.ElementRef }, { type: i0153.ViewContainerRef }, { type: i0153.IterableDiffers }, { type: i0153.Renderer2 }], propDecorators: { eclOptionItems: [{
|
|
12461
12523
|
type: ContentChildren23,
|
|
12462
12524
|
args: [forwardRef44(() => EclMultiselectOptionDirective)]
|
|
12463
12525
|
}], ariaDescribedby: [{
|
|
@@ -12466,8 +12528,11 @@ i0153.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
12466
12528
|
type: Input67
|
|
12467
12529
|
}], id: [{
|
|
12468
12530
|
type: Input67
|
|
12469
|
-
}],
|
|
12531
|
+
}], toggleLabel: [{
|
|
12470
12532
|
type: Input67
|
|
12533
|
+
}], isInvalid: [{
|
|
12534
|
+
type: Input67,
|
|
12535
|
+
args: [{ transform: booleanAttribute30 }]
|
|
12471
12536
|
}], disabled: [{
|
|
12472
12537
|
type: Input67
|
|
12473
12538
|
}, {
|
|
@@ -12593,7 +12658,7 @@ i0155.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
12593
12658
|
}] } });
|
|
12594
12659
|
|
|
12595
12660
|
// lib/components/ecl-navigation-list/ecl-navigation-list.component.mjs
|
|
12596
|
-
import { Component as Component73, ContentChildren as ContentChildren24, HostBinding as HostBinding108, Input as Input69, booleanAttribute as
|
|
12661
|
+
import { Component as Component73, ContentChildren as ContentChildren24, HostBinding as HostBinding108, Input as Input69, booleanAttribute as booleanAttribute31, forwardRef as forwardRef48, numberAttribute as numberAttribute7 } from "@angular/core";
|
|
12597
12662
|
import * as i0156 from "@angular/core";
|
|
12598
12663
|
var EclNavigationListComponent = class _EclNavigationListComponent extends ECLBaseDirective {
|
|
12599
12664
|
constructor() {
|
|
@@ -12616,7 +12681,7 @@ var EclNavigationListComponent = class _EclNavigationListComponent extends ECLBa
|
|
|
12616
12681
|
this.ɵfac = i0156.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0156, type: _EclNavigationListComponent, deps: null, target: i0156.ɵɵFactoryTarget.Component });
|
|
12617
12682
|
}
|
|
12618
12683
|
static {
|
|
12619
|
-
this.ɵcmp = i0156.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.0-next.5", type: _EclNavigationListComponent, selector: "ecl-navigation-list", inputs: { columns: ["columns", "columns", numberAttribute7], hasBorders: ["hasBorders", "hasBorders",
|
|
12684
|
+
this.ɵcmp = i0156.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.0-next.5", type: _EclNavigationListComponent, selector: "ecl-navigation-list", inputs: { columns: ["columns", "columns", numberAttribute7], hasBorders: ["hasBorders", "hasBorders", booleanAttribute31] }, host: { properties: { "class": "this.cssClasses" } }, queries: [{ propertyName: "listItems", predicate: i0156.forwardRef(() => EclNavigationListItemComponent) }], usesInheritance: true, ngImport: i0156, template: "<ng-content></ng-content>\n" });
|
|
12620
12685
|
}
|
|
12621
12686
|
};
|
|
12622
12687
|
i0156.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0156, type: EclNavigationListComponent, decorators: [{
|
|
@@ -12630,7 +12695,7 @@ i0156.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
12630
12695
|
args: [{ transform: numberAttribute7 }]
|
|
12631
12696
|
}], hasBorders: [{
|
|
12632
12697
|
type: Input69,
|
|
12633
|
-
args: [{ transform:
|
|
12698
|
+
args: [{ transform: booleanAttribute31 }]
|
|
12634
12699
|
}], listItems: [{
|
|
12635
12700
|
type: ContentChildren24,
|
|
12636
12701
|
args: [forwardRef48(() => EclNavigationListItemComponent)]
|
|
@@ -12829,10 +12894,10 @@ i0160.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
12829
12894
|
}] } });
|
|
12830
12895
|
|
|
12831
12896
|
// lib/components/ecl-news-ticker/ecl-news-ticker.component.mjs
|
|
12832
|
-
import { Component as Component76, ContentChildren as ContentChildren25, EventEmitter as EventEmitter35, HostBinding as HostBinding112, HostListener as HostListener18, Input as Input71, Output as Output35, ViewChild as ViewChild14, booleanAttribute as
|
|
12897
|
+
import { Component as Component76, ContentChildren as ContentChildren25, EventEmitter as EventEmitter35, HostBinding as HostBinding112, HostListener as HostListener18, Input as Input71, Output as Output35, ViewChild as ViewChild14, booleanAttribute as booleanAttribute32 } from "@angular/core";
|
|
12833
12898
|
import { Subject as Subject25, takeUntil as takeUntil22 } from "rxjs";
|
|
12834
12899
|
import * as i0161 from "@angular/core";
|
|
12835
|
-
import * as
|
|
12900
|
+
import * as i54 from "@ngx-translate/core";
|
|
12836
12901
|
var EclNewsTickerItemEvent = class extends EclBaseEvent {
|
|
12837
12902
|
constructor(itemIndex) {
|
|
12838
12903
|
super();
|
|
@@ -13020,7 +13085,7 @@ var EclNewsTickerComponent = class _EclNewsTickerComponent extends ECLBaseDirect
|
|
|
13020
13085
|
this.ɵfac = i0161.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0161, type: _EclNewsTickerComponent, deps: [{ token: i0161.Renderer2 }], target: i0161.ɵɵFactoryTarget.Component });
|
|
13021
13086
|
}
|
|
13022
13087
|
static {
|
|
13023
|
-
this.ɵcmp = i0161.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.5", type: _EclNewsTickerComponent, selector: "ecl-news-ticker", inputs: { isAutoplay: ["isAutoplay", "isAutoplay",
|
|
13088
|
+
this.ɵcmp = i0161.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.5", type: _EclNewsTickerComponent, selector: "ecl-news-ticker", inputs: { isAutoplay: ["isAutoplay", "isAutoplay", booleanAttribute32] }, outputs: { itemSwitch: "itemSwitch" }, host: { listeners: { "window:resize": "onResize($event)" }, properties: { "class": "this.cssClasses" } }, queries: [{ propertyName: "newsTickerItems", predicate: EclNewsTickerItemComponent }], viewQueries: [{ propertyName: "firstHiddenItem", first: true, predicate: ["firstHiddenItem"], descendants: true }, { propertyName: "lastHiddenItem", first: true, predicate: ["lastHiddenItem"], descendants: true }, { propertyName: "slidesContainer", first: true, predicate: ["slidesContainer"], descendants: true }], usesInheritance: true, ngImport: i0161, template: `<div class="ecl-news-ticker__container" [style.height.px]="containerHeight">
|
|
13024
13089
|
<ecl-icon icon="information" size="m" class="ecl-news-ticker__icon"></ecl-icon>
|
|
13025
13090
|
<div class="ecl-news-ticker__content" [style.height.px]="contentHeight">
|
|
13026
13091
|
<ul
|
|
@@ -13073,7 +13138,7 @@ var EclNewsTickerComponent = class _EclNewsTickerComponent extends ECLBaseDirect
|
|
|
13073
13138
|
<span class="ecl-news-ticker__counter--max">{{ itemsCount }}</span>
|
|
13074
13139
|
</div>
|
|
13075
13140
|
</div>
|
|
13076
|
-
}`, dependencies: [{ kind: "component", type: EclButtonComponent, selector: "button[eclButton], button[ecl-button], a[eclButton]", inputs: ["isIconOnly", "variant", "containerStyleClass"] }, { kind: "directive", type: EclButtonLabelDirective, selector: "[eclButtonLabel]" }, { kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "component", type: EclNewsTickerItemComponent, selector: "ecl-news-ticker-item", outputs: ["itemFocused"] }, { kind: "pipe", type:
|
|
13141
|
+
}`, dependencies: [{ kind: "component", type: EclButtonComponent, selector: "button[eclButton], button[ecl-button], a[eclButton]", inputs: ["isIconOnly", "variant", "containerStyleClass"] }, { kind: "directive", type: EclButtonLabelDirective, selector: "[eclButtonLabel]" }, { kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "component", type: EclNewsTickerItemComponent, selector: "ecl-news-ticker-item", outputs: ["itemFocused"] }, { kind: "pipe", type: i54.TranslatePipe, name: "translate" }] });
|
|
13077
13142
|
}
|
|
13078
13143
|
};
|
|
13079
13144
|
i0161.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0161, type: EclNewsTickerComponent, decorators: [{
|
|
@@ -13134,7 +13199,7 @@ i0161.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
13134
13199
|
}` }]
|
|
13135
13200
|
}], ctorParameters: () => [{ type: i0161.Renderer2 }], propDecorators: { isAutoplay: [{
|
|
13136
13201
|
type: Input71,
|
|
13137
|
-
args: [{ transform:
|
|
13202
|
+
args: [{ transform: booleanAttribute32 }]
|
|
13138
13203
|
}], itemSwitch: [{
|
|
13139
13204
|
type: Output35
|
|
13140
13205
|
}], newsTickerItems: [{
|
|
@@ -13183,9 +13248,9 @@ i0162.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
13183
13248
|
}] });
|
|
13184
13249
|
|
|
13185
13250
|
// lib/components/ecl-notification/ecl-notification.component.mjs
|
|
13186
|
-
import { Component as Component77, Input as Input72, Output as Output36, EventEmitter as EventEmitter36, HostBinding as HostBinding113, booleanAttribute as
|
|
13251
|
+
import { Component as Component77, Input as Input72, Output as Output36, EventEmitter as EventEmitter36, HostBinding as HostBinding113, booleanAttribute as booleanAttribute33 } from "@angular/core";
|
|
13187
13252
|
import * as i0163 from "@angular/core";
|
|
13188
|
-
import * as
|
|
13253
|
+
import * as i55 from "@angular/common";
|
|
13189
13254
|
import * as i63 from "@ngx-translate/core";
|
|
13190
13255
|
var EclNotificationCloseEvent = class extends EclBaseEvent {
|
|
13191
13256
|
};
|
|
@@ -13229,7 +13294,7 @@ var EclNotificationComponent = class _EclNotificationComponent extends ECLBaseDi
|
|
|
13229
13294
|
this.ɵfac = i0163.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0163, type: _EclNotificationComponent, deps: [{ token: EclThemeService }], target: i0163.ɵɵFactoryTarget.Component });
|
|
13230
13295
|
}
|
|
13231
13296
|
static {
|
|
13232
|
-
this.ɵcmp = i0163.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.5", type: _EclNotificationComponent, selector: "ecl-notification", inputs: { notificationTitle: "notificationTitle", variant: "variant", isVisible: ["isVisible", "isVisible",
|
|
13297
|
+
this.ɵcmp = i0163.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.5", type: _EclNotificationComponent, selector: "ecl-notification", inputs: { notificationTitle: "notificationTitle", variant: "variant", isVisible: ["isVisible", "isVisible", booleanAttribute33], isCloseable: ["isCloseable", "isCloseable", booleanAttribute33] }, outputs: { close: "close" }, host: { properties: { "attr.role": "this.role", "class.ecl-u-d-none": "this.isHidden", "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0163, template: `@if( eclThemeService.isEC$ | async ){
|
|
13233
13298
|
<ecl-icon size="l" class="ecl-notification__icon" [icon]="icon" [ariaHidden]="false" role="img">
|
|
13234
13299
|
<title>{{ icon | titlecase }}</title>
|
|
13235
13300
|
</ecl-icon>
|
|
@@ -13261,7 +13326,7 @@ var EclNotificationComponent = class _EclNotificationComponent extends ECLBaseDi
|
|
|
13261
13326
|
<ng-content select="[eclNotificationTitle]"></ng-content>
|
|
13262
13327
|
<div class="ecl-notification__description"><ng-content></ng-content></div>
|
|
13263
13328
|
</div>
|
|
13264
|
-
`, dependencies: [{ kind: "component", type: EclButtonComponent, selector: "button[eclButton], button[ecl-button], a[eclButton]", inputs: ["isIconOnly", "variant", "containerStyleClass"] }, { kind: "directive", type: EclButtonLabelDirective, selector: "[eclButtonLabel]" }, { kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "pipe", type:
|
|
13329
|
+
`, dependencies: [{ kind: "component", type: EclButtonComponent, selector: "button[eclButton], button[ecl-button], a[eclButton]", inputs: ["isIconOnly", "variant", "containerStyleClass"] }, { kind: "directive", type: EclButtonLabelDirective, selector: "[eclButtonLabel]" }, { kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "pipe", type: i55.AsyncPipe, name: "async" }, { kind: "pipe", type: i55.TitleCasePipe, name: "titlecase" }, { kind: "pipe", type: i63.TranslatePipe, name: "translate" }] });
|
|
13265
13330
|
}
|
|
13266
13331
|
};
|
|
13267
13332
|
i0163.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0163, type: EclNotificationComponent, decorators: [{
|
|
@@ -13305,10 +13370,10 @@ i0163.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
13305
13370
|
type: Input72
|
|
13306
13371
|
}], isVisible: [{
|
|
13307
13372
|
type: Input72,
|
|
13308
|
-
args: [{ transform:
|
|
13373
|
+
args: [{ transform: booleanAttribute33 }]
|
|
13309
13374
|
}], isCloseable: [{
|
|
13310
13375
|
type: Input72,
|
|
13311
|
-
args: [{ transform:
|
|
13376
|
+
args: [{ transform: booleanAttribute33 }]
|
|
13312
13377
|
}], close: [{
|
|
13313
13378
|
type: Output36
|
|
13314
13379
|
}], role: [{
|
|
@@ -13347,7 +13412,7 @@ i0164.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
13347
13412
|
}] } });
|
|
13348
13413
|
|
|
13349
13414
|
// lib/components/ecl-site-footer/ecl-footer-elements/ecl-site-footer-section.directive.mjs
|
|
13350
|
-
import { Directive as Directive43, HostBinding as HostBinding115, Input as Input73, booleanAttribute as
|
|
13415
|
+
import { Directive as Directive43, HostBinding as HostBinding115, Input as Input73, booleanAttribute as booleanAttribute34 } from "@angular/core";
|
|
13351
13416
|
import * as i0165 from "@angular/core";
|
|
13352
13417
|
var EclSiteFooterSectionDirective = class _EclSiteFooterSectionDirective extends ECLBaseDirective {
|
|
13353
13418
|
constructor() {
|
|
@@ -13362,7 +13427,7 @@ var EclSiteFooterSectionDirective = class _EclSiteFooterSectionDirective extends
|
|
|
13362
13427
|
this.ɵfac = i0165.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0165, type: _EclSiteFooterSectionDirective, deps: null, target: i0165.ɵɵFactoryTarget.Directive });
|
|
13363
13428
|
}
|
|
13364
13429
|
static {
|
|
13365
|
-
this.ɵdir = i0165.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.0.0-next.5", type: _EclSiteFooterSectionDirective, selector: "[eclSiteFooterSection]", inputs: { isCondensed: ["isCondensed", "isCondensed",
|
|
13430
|
+
this.ɵdir = i0165.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.0.0-next.5", type: _EclSiteFooterSectionDirective, selector: "[eclSiteFooterSection]", inputs: { isCondensed: ["isCondensed", "isCondensed", booleanAttribute34], isSiteInfo: ["isSiteInfo", "isSiteInfo", booleanAttribute34], isSplitList: ["isSplitList", "isSplitList", booleanAttribute34], hasSeparator: ["hasSeparator", "hasSeparator", booleanAttribute34] }, host: { properties: { "class.ecl-site-footer__section": "this.cmpClass", "class.ecl-site-footer__section--condensed": "this.isCondensed", "class.ecl-site-footer__section--site-info": "this.isSiteInfo", "class.ecl-site-footer__section--split-list": "this.isSplitList", "class.ecl-site-footer__section--separator": "this.hasSeparator" } }, usesInheritance: true, ngImport: i0165 });
|
|
13366
13431
|
}
|
|
13367
13432
|
};
|
|
13368
13433
|
i0165.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0165, type: EclSiteFooterSectionDirective, decorators: [{
|
|
@@ -13375,19 +13440,19 @@ i0165.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
13375
13440
|
args: ["class.ecl-site-footer__section"]
|
|
13376
13441
|
}], isCondensed: [{
|
|
13377
13442
|
type: Input73,
|
|
13378
|
-
args: [{ transform:
|
|
13443
|
+
args: [{ transform: booleanAttribute34 }]
|
|
13379
13444
|
}, {
|
|
13380
13445
|
type: HostBinding115,
|
|
13381
13446
|
args: ["class.ecl-site-footer__section--condensed"]
|
|
13382
13447
|
}], isSiteInfo: [{
|
|
13383
13448
|
type: Input73,
|
|
13384
|
-
args: [{ transform:
|
|
13449
|
+
args: [{ transform: booleanAttribute34 }]
|
|
13385
13450
|
}, {
|
|
13386
13451
|
type: HostBinding115,
|
|
13387
13452
|
args: ["class.ecl-site-footer__section--site-info"]
|
|
13388
13453
|
}], isSplitList: [{
|
|
13389
13454
|
type: Input73,
|
|
13390
|
-
args: [{ transform:
|
|
13455
|
+
args: [{ transform: booleanAttribute34 }]
|
|
13391
13456
|
}, {
|
|
13392
13457
|
type: HostBinding115,
|
|
13393
13458
|
args: ["class.ecl-site-footer__section--split-list"]
|
|
@@ -13396,11 +13461,11 @@ i0165.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
13396
13461
|
args: ["class.ecl-site-footer__section--separator"]
|
|
13397
13462
|
}, {
|
|
13398
13463
|
type: Input73,
|
|
13399
|
-
args: [{ transform:
|
|
13464
|
+
args: [{ transform: booleanAttribute34 }]
|
|
13400
13465
|
}] } });
|
|
13401
13466
|
|
|
13402
13467
|
// lib/components/ecl-site-footer/ecl-footer-elements/ecl-site-footer-title.directive.mjs
|
|
13403
|
-
import { Directive as Directive44, HostBinding as HostBinding116, Input as Input74, booleanAttribute as
|
|
13468
|
+
import { Directive as Directive44, HostBinding as HostBinding116, Input as Input74, booleanAttribute as booleanAttribute35 } from "@angular/core";
|
|
13404
13469
|
import * as i0166 from "@angular/core";
|
|
13405
13470
|
var EclSiteFooterTitleDirective = class _EclSiteFooterTitleDirective extends ECLBaseDirective {
|
|
13406
13471
|
constructor() {
|
|
@@ -13412,7 +13477,7 @@ var EclSiteFooterTitleDirective = class _EclSiteFooterTitleDirective extends ECL
|
|
|
13412
13477
|
this.ɵfac = i0166.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0166, type: _EclSiteFooterTitleDirective, deps: null, target: i0166.ɵɵFactoryTarget.Directive });
|
|
13413
13478
|
}
|
|
13414
13479
|
static {
|
|
13415
|
-
this.ɵdir = i0166.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.0.0-next.5", type: _EclSiteFooterTitleDirective, selector: "[eclSiteFooterTitle]", inputs: { isSeparator: ["isSeparator", "isSeparator",
|
|
13480
|
+
this.ɵdir = i0166.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.0.0-next.5", type: _EclSiteFooterTitleDirective, selector: "[eclSiteFooterTitle]", inputs: { isSeparator: ["isSeparator", "isSeparator", booleanAttribute35] }, host: { properties: { "class.ecl-site-footer__title": "this.cmpClass", "class.ecl-site-footer__title--separator": "this.isSeparator" } }, usesInheritance: true, ngImport: i0166 });
|
|
13416
13481
|
}
|
|
13417
13482
|
};
|
|
13418
13483
|
i0166.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0166, type: EclSiteFooterTitleDirective, decorators: [{
|
|
@@ -13425,7 +13490,7 @@ i0166.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
13425
13490
|
args: ["class.ecl-site-footer__title"]
|
|
13426
13491
|
}], isSeparator: [{
|
|
13427
13492
|
type: Input74,
|
|
13428
|
-
args: [{ transform:
|
|
13493
|
+
args: [{ transform: booleanAttribute35 }]
|
|
13429
13494
|
}, {
|
|
13430
13495
|
type: HostBinding116,
|
|
13431
13496
|
args: ["class.ecl-site-footer__title--separator"]
|
|
@@ -13478,7 +13543,7 @@ i0167.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
13478
13543
|
}] } });
|
|
13479
13544
|
|
|
13480
13545
|
// lib/components/ecl-site-footer/ecl-footer-elements/ecl-site-footer-list.directive.mjs
|
|
13481
|
-
import { Directive as Directive46, HostBinding as HostBinding118, Input as Input75, booleanAttribute as
|
|
13546
|
+
import { Directive as Directive46, HostBinding as HostBinding118, Input as Input75, booleanAttribute as booleanAttribute36 } from "@angular/core";
|
|
13482
13547
|
import * as i0168 from "@angular/core";
|
|
13483
13548
|
var EclSiteFooterListDirective = class _EclSiteFooterListDirective extends ECLBaseDirective {
|
|
13484
13549
|
constructor() {
|
|
@@ -13489,7 +13554,7 @@ var EclSiteFooterListDirective = class _EclSiteFooterListDirective extends ECLBa
|
|
|
13489
13554
|
this.ɵfac = i0168.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0168, type: _EclSiteFooterListDirective, deps: null, target: i0168.ɵɵFactoryTarget.Directive });
|
|
13490
13555
|
}
|
|
13491
13556
|
static {
|
|
13492
|
-
this.ɵdir = i0168.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.0.0-next.5", type: _EclSiteFooterListDirective, selector: "[eclSiteFooterList]", inputs: { isInline: ["isInline", "isInline",
|
|
13557
|
+
this.ɵdir = i0168.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.0.0-next.5", type: _EclSiteFooterListDirective, selector: "[eclSiteFooterList]", inputs: { isInline: ["isInline", "isInline", booleanAttribute36], isColumns: ["isColumns", "isColumns", booleanAttribute36] }, host: { properties: { "class.ecl-site-footer__list": "this.cmpClass", "class.ecl-site-footer__list--inline": "this.isInline", "class.ecl-site-footer__list--columns": "this.isColumns" } }, usesInheritance: true, ngImport: i0168 });
|
|
13493
13558
|
}
|
|
13494
13559
|
};
|
|
13495
13560
|
i0168.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0168, type: EclSiteFooterListDirective, decorators: [{
|
|
@@ -13502,13 +13567,13 @@ i0168.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
13502
13567
|
args: ["class.ecl-site-footer__list"]
|
|
13503
13568
|
}], isInline: [{
|
|
13504
13569
|
type: Input75,
|
|
13505
|
-
args: [{ transform:
|
|
13570
|
+
args: [{ transform: booleanAttribute36 }]
|
|
13506
13571
|
}, {
|
|
13507
13572
|
type: HostBinding118,
|
|
13508
13573
|
args: ["class.ecl-site-footer__list--inline"]
|
|
13509
13574
|
}], isColumns: [{
|
|
13510
13575
|
type: Input75,
|
|
13511
|
-
args: [{ transform:
|
|
13576
|
+
args: [{ transform: booleanAttribute36 }]
|
|
13512
13577
|
}, {
|
|
13513
13578
|
type: HostBinding118,
|
|
13514
13579
|
args: ["class.ecl-site-footer__list--columns"]
|
|
@@ -13754,7 +13819,7 @@ i0170.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
13754
13819
|
}] } });
|
|
13755
13820
|
|
|
13756
13821
|
// lib/components/ecl-site-footer/ecl-footer-elements/ec/ecl-site-footer-fixed-content.mjs
|
|
13757
|
-
import { Component as Component78, Input as Input76, booleanAttribute as
|
|
13822
|
+
import { Component as Component78, Input as Input76, booleanAttribute as booleanAttribute37 } from "@angular/core";
|
|
13758
13823
|
import * as i0171 from "@angular/core";
|
|
13759
13824
|
import * as i126 from "@ngx-translate/core";
|
|
13760
13825
|
import * as i32 from "@angular/common";
|
|
@@ -13769,7 +13834,7 @@ var EclSiteFooterFixedContentECComponent = class _EclSiteFooterFixedContentECCom
|
|
|
13769
13834
|
this.ɵfac = i0171.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0171, type: _EclSiteFooterFixedContentECComponent, deps: [{ token: i126.TranslateService }, { token: EclLanguageService }], target: i0171.ɵɵFactoryTarget.Component });
|
|
13770
13835
|
}
|
|
13771
13836
|
static {
|
|
13772
|
-
this.ɵcmp = i0171.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.5", type: _EclSiteFooterFixedContentECComponent, selector: "ecl-site-footer-fixed-content-ec", inputs: { isCore: ["isCore", "isCore",
|
|
13837
|
+
this.ɵcmp = i0171.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.5", type: _EclSiteFooterFixedContentECComponent, selector: "ecl-site-footer-fixed-content-ec", inputs: { isCore: ["isCore", "isCore", booleanAttribute37], languageCode: "languageCode", ecLogoLanguageCode: "ecLogoLanguageCode", content: "content" }, usesInheritance: true, ngImport: i0171, template: `@if(isCore){
|
|
13773
13838
|
<div eclSiteFooterRow>
|
|
13774
13839
|
<div eclSiteFooterColumn>
|
|
13775
13840
|
<div eclSiteFooterSection>
|
|
@@ -14663,7 +14728,7 @@ i0171.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
14663
14728
|
` }]
|
|
14664
14729
|
}], ctorParameters: () => [{ type: i126.TranslateService }, { type: EclLanguageService }], propDecorators: { isCore: [{
|
|
14665
14730
|
type: Input76,
|
|
14666
|
-
args: [{ transform:
|
|
14731
|
+
args: [{ transform: booleanAttribute37 }]
|
|
14667
14732
|
}], languageCode: [{
|
|
14668
14733
|
type: Input76
|
|
14669
14734
|
}], ecLogoLanguageCode: [{
|
|
@@ -14673,7 +14738,7 @@ i0171.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
14673
14738
|
}] } });
|
|
14674
14739
|
|
|
14675
14740
|
// lib/components/ecl-site-footer/ecl-footer-elements/eu/ecl-site-footer-fixed-content.mjs
|
|
14676
|
-
import { Component as Component79, Input as Input77, booleanAttribute as
|
|
14741
|
+
import { Component as Component79, Input as Input77, booleanAttribute as booleanAttribute38 } from "@angular/core";
|
|
14677
14742
|
import * as i0172 from "@angular/core";
|
|
14678
14743
|
import * as i127 from "@ngx-translate/core";
|
|
14679
14744
|
import * as i33 from "@angular/common";
|
|
@@ -14697,7 +14762,7 @@ var EclSiteFooterFixedContentEUComponent = class _EclSiteFooterFixedContentEUCom
|
|
|
14697
14762
|
this.ɵfac = i0172.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0172, type: _EclSiteFooterFixedContentEUComponent, deps: [{ token: i127.TranslateService }, { token: EclLanguageService }], target: i0172.ɵɵFactoryTarget.Component });
|
|
14698
14763
|
}
|
|
14699
14764
|
static {
|
|
14700
|
-
this.ɵcmp = i0172.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.5", type: _EclSiteFooterFixedContentEUComponent, selector: "ecl-site-footer-fixed-content-eu", inputs: { isCore: ["isCore", "isCore",
|
|
14765
|
+
this.ɵcmp = i0172.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.5", type: _EclSiteFooterFixedContentEUComponent, selector: "ecl-site-footer-fixed-content-eu", inputs: { isCore: ["isCore", "isCore", booleanAttribute38], languageCode: "languageCode", ecLogoLanguageCode: "ecLogoLanguageCode", content: "content" }, usesInheritance: true, ngImport: i0172, template: `@if(isCore){
|
|
14701
14766
|
<div eclSiteFooterRow>
|
|
14702
14767
|
<div eclSiteFooterColumn>
|
|
14703
14768
|
<div eclSiteFooterSection>
|
|
@@ -16011,7 +16076,7 @@ i0172.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
16011
16076
|
` }]
|
|
16012
16077
|
}], ctorParameters: () => [{ type: i127.TranslateService }, { type: EclLanguageService }], propDecorators: { isCore: [{
|
|
16013
16078
|
type: Input77,
|
|
16014
|
-
args: [{ transform:
|
|
16079
|
+
args: [{ transform: booleanAttribute38 }]
|
|
16015
16080
|
}], languageCode: [{
|
|
16016
16081
|
type: Input77
|
|
16017
16082
|
}], ecLogoLanguageCode: [{
|
|
@@ -16021,10 +16086,10 @@ i0172.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
16021
16086
|
}] } });
|
|
16022
16087
|
|
|
16023
16088
|
// lib/components/ecl-site-footer/ecl-site-footer.component.mjs
|
|
16024
|
-
import { Component as Component80, HostBinding as HostBinding121, Input as Input78, booleanAttribute as
|
|
16089
|
+
import { Component as Component80, HostBinding as HostBinding121, Input as Input78, booleanAttribute as booleanAttribute39 } from "@angular/core";
|
|
16025
16090
|
import * as i0173 from "@angular/core";
|
|
16026
16091
|
import * as i128 from "@ngx-translate/core";
|
|
16027
|
-
import * as
|
|
16092
|
+
import * as i56 from "@angular/common";
|
|
16028
16093
|
var EclSiteFooterComponent = class _EclSiteFooterComponent extends ECLBaseDirective {
|
|
16029
16094
|
get cssClasses() {
|
|
16030
16095
|
return [super.getCssClasses("ecl-site-footer"), this.isCore ? "ecl-site-footer--split-columns" : ""].join(" ").trim();
|
|
@@ -16053,7 +16118,7 @@ var EclSiteFooterComponent = class _EclSiteFooterComponent extends ECLBaseDirect
|
|
|
16053
16118
|
this.ɵfac = i0173.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0173, type: _EclSiteFooterComponent, deps: [{ token: i128.TranslateService }, { token: EclLanguageService }, { token: EclThemeService }], target: i0173.ɵɵFactoryTarget.Component });
|
|
16054
16119
|
}
|
|
16055
16120
|
static {
|
|
16056
|
-
this.ɵcmp = i0173.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.5", type: _EclSiteFooterComponent, selector: "ecl-site-footer", inputs: { isCore: ["isCore", "isCore",
|
|
16121
|
+
this.ɵcmp = i0173.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.5", type: _EclSiteFooterComponent, selector: "ecl-site-footer", inputs: { isCore: ["isCore", "isCore", booleanAttribute39] }, host: { properties: { "class": "this.cssClasses", "attr.role": "this.role" } }, usesInheritance: true, ngImport: i0173, template: '<div class="ecl-container ecl-site-footer__container">\n @if(eclThemeService.isEC$ | async) {\n <ecl-site-footer-fixed-content-ec\n [isCore]="isCore"\n [languageCode]="languageCode"\n [ecLogoLanguageCode]="getLanguageCode()"\n [content]="content">\n </ecl-site-footer-fixed-content-ec>\n }\n @if(eclThemeService.isEU$ | async) {\n <ecl-site-footer-fixed-content-eu\n [isCore]="isCore"\n [languageCode]="languageCode"\n [ecLogoLanguageCode]="getLanguageCode()"\n [content]="content">\n </ecl-site-footer-fixed-content-eu>\n }\n\n <ng-template #content>\n <ng-content></ng-content>\n </ng-template>\n</div>\n', dependencies: [{ kind: "component", type: EclSiteFooterFixedContentECComponent, selector: "ecl-site-footer-fixed-content-ec", inputs: ["isCore", "languageCode", "ecLogoLanguageCode", "content"] }, { kind: "component", type: EclSiteFooterFixedContentEUComponent, selector: "ecl-site-footer-fixed-content-eu", inputs: ["isCore", "languageCode", "ecLogoLanguageCode", "content"] }, { kind: "pipe", type: i56.AsyncPipe, name: "async" }] });
|
|
16057
16122
|
}
|
|
16058
16123
|
};
|
|
16059
16124
|
i0173.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0173, type: EclSiteFooterComponent, decorators: [{
|
|
@@ -16061,7 +16126,7 @@ i0173.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
16061
16126
|
args: [{ selector: "ecl-site-footer", template: '<div class="ecl-container ecl-site-footer__container">\n @if(eclThemeService.isEC$ | async) {\n <ecl-site-footer-fixed-content-ec\n [isCore]="isCore"\n [languageCode]="languageCode"\n [ecLogoLanguageCode]="getLanguageCode()"\n [content]="content">\n </ecl-site-footer-fixed-content-ec>\n }\n @if(eclThemeService.isEU$ | async) {\n <ecl-site-footer-fixed-content-eu\n [isCore]="isCore"\n [languageCode]="languageCode"\n [ecLogoLanguageCode]="getLanguageCode()"\n [content]="content">\n </ecl-site-footer-fixed-content-eu>\n }\n\n <ng-template #content>\n <ng-content></ng-content>\n </ng-template>\n</div>\n' }]
|
|
16062
16127
|
}], ctorParameters: () => [{ type: i128.TranslateService }, { type: EclLanguageService }, { type: EclThemeService }], propDecorators: { isCore: [{
|
|
16063
16128
|
type: Input78,
|
|
16064
|
-
args: [{ transform:
|
|
16129
|
+
args: [{ transform: booleanAttribute39 }]
|
|
16065
16130
|
}], cssClasses: [{
|
|
16066
16131
|
type: HostBinding121,
|
|
16067
16132
|
args: ["class"]
|
|
@@ -16273,7 +16338,7 @@ i0176.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
16273
16338
|
}] } });
|
|
16274
16339
|
|
|
16275
16340
|
// lib/components/ecl-page-header/ecl-page-header-title.directive.mjs
|
|
16276
|
-
import { Directive as Directive50, HostBinding as HostBinding123, Input as Input79, booleanAttribute as
|
|
16341
|
+
import { Directive as Directive50, HostBinding as HostBinding123, Input as Input79, booleanAttribute as booleanAttribute40 } from "@angular/core";
|
|
16277
16342
|
import * as i0177 from "@angular/core";
|
|
16278
16343
|
var EclPageHeaderTitleDirective = class _EclPageHeaderTitleDirective extends ECLBaseDirective {
|
|
16279
16344
|
constructor() {
|
|
@@ -16287,7 +16352,7 @@ var EclPageHeaderTitleDirective = class _EclPageHeaderTitleDirective extends ECL
|
|
|
16287
16352
|
this.ɵfac = i0177.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0177, type: _EclPageHeaderTitleDirective, deps: null, target: i0177.ɵɵFactoryTarget.Directive });
|
|
16288
16353
|
}
|
|
16289
16354
|
static {
|
|
16290
|
-
this.ɵdir = i0177.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.0.0-next.5", type: _EclPageHeaderTitleDirective, selector: "[eclPageHeaderTitle]", inputs: { isTitleVisible: ["isTitleVisible", "isTitleVisible",
|
|
16355
|
+
this.ɵdir = i0177.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.0.0-next.5", type: _EclPageHeaderTitleDirective, selector: "[eclPageHeaderTitle]", inputs: { isTitleVisible: ["isTitleVisible", "isTitleVisible", booleanAttribute40] }, host: { properties: { "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0177 });
|
|
16291
16356
|
}
|
|
16292
16357
|
};
|
|
16293
16358
|
i0177.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0177, type: EclPageHeaderTitleDirective, decorators: [{
|
|
@@ -16297,7 +16362,7 @@ i0177.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
16297
16362
|
}]
|
|
16298
16363
|
}], propDecorators: { isTitleVisible: [{
|
|
16299
16364
|
type: Input79,
|
|
16300
|
-
args: [{ transform:
|
|
16365
|
+
args: [{ transform: booleanAttribute40 }]
|
|
16301
16366
|
}], cssClasses: [{
|
|
16302
16367
|
type: HostBinding123,
|
|
16303
16368
|
args: ["class"]
|
|
@@ -16533,7 +16598,7 @@ i0182.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
16533
16598
|
}] });
|
|
16534
16599
|
|
|
16535
16600
|
// lib/components/ecl-pagination/ecl-pagination-item.component.mjs
|
|
16536
|
-
import { Component as Component82, EventEmitter as EventEmitter37, HostBinding as HostBinding128, Input as Input81, Output as Output37, ViewEncapsulation as ViewEncapsulation11, booleanAttribute as
|
|
16601
|
+
import { Component as Component82, EventEmitter as EventEmitter37, HostBinding as HostBinding128, Input as Input81, Output as Output37, ViewEncapsulation as ViewEncapsulation11, booleanAttribute as booleanAttribute41 } from "@angular/core";
|
|
16537
16602
|
import * as i0183 from "@angular/core";
|
|
16538
16603
|
import * as i215 from "@angular/router";
|
|
16539
16604
|
import * as i64 from "@ngx-translate/core";
|
|
@@ -16594,7 +16659,7 @@ var EclPaginationItemComponent = class _EclPaginationItemComponent extends ECLBa
|
|
|
16594
16659
|
this.ɵfac = i0183.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0183, type: _EclPaginationItemComponent, deps: [{ token: EclThemeService }], target: i0183.ɵɵFactoryTarget.Component });
|
|
16595
16660
|
}
|
|
16596
16661
|
static {
|
|
16597
|
-
this.ɵcmp = i0183.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.5", type: _EclPaginationItemComponent, selector: "ecl-pagination-item", inputs: { label: "label", ariaLabel: "ariaLabel", pagesCount: "pagesCount", isCurrent: ["isCurrent", "isCurrent",
|
|
16662
|
+
this.ɵcmp = i0183.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.5", type: _EclPaginationItemComponent, selector: "ecl-pagination-item", inputs: { label: "label", ariaLabel: "ariaLabel", pagesCount: "pagesCount", isCurrent: ["isCurrent", "isCurrent", booleanAttribute41], isNext: ["isNext", "isNext", booleanAttribute41], isPrevious: ["isPrevious", "isPrevious", booleanAttribute41], isTruncated: ["isTruncated", "isTruncated", booleanAttribute41], routerLink: "routerLink", queryParams: "queryParams", queryParamsHandling: "queryParamsHandling", href: "href" }, outputs: { pageClick: "pageClick" }, host: { properties: { "class": "this.cssClasses", "attr.role": "this.role", "class.ecl-pagination__item--truncation": "this.isTruncated" } }, usesInheritance: true, ngImport: i0183, template: `@if (!isCurrent && !isTruncated) {
|
|
16598
16663
|
@if(routerLink && !isPrevOrNextVisible()){
|
|
16599
16664
|
<a eclLink (click)="onPageClick($event)" variant="standalone"
|
|
16600
16665
|
attr.aria-label="{{ ariaLabel || geti18nPageAriaLabelKey() | translate: { pageNumber: label } }}"
|
|
@@ -16734,16 +16799,16 @@ i0183.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
16734
16799
|
type: Input81
|
|
16735
16800
|
}], isCurrent: [{
|
|
16736
16801
|
type: Input81,
|
|
16737
|
-
args: [{ transform:
|
|
16802
|
+
args: [{ transform: booleanAttribute41 }]
|
|
16738
16803
|
}], isNext: [{
|
|
16739
16804
|
type: Input81,
|
|
16740
|
-
args: [{ transform:
|
|
16805
|
+
args: [{ transform: booleanAttribute41 }]
|
|
16741
16806
|
}], isPrevious: [{
|
|
16742
16807
|
type: Input81,
|
|
16743
|
-
args: [{ transform:
|
|
16808
|
+
args: [{ transform: booleanAttribute41 }]
|
|
16744
16809
|
}], isTruncated: [{
|
|
16745
16810
|
type: Input81,
|
|
16746
|
-
args: [{ transform:
|
|
16811
|
+
args: [{ transform: booleanAttribute41 }]
|
|
16747
16812
|
}, {
|
|
16748
16813
|
type: HostBinding128,
|
|
16749
16814
|
args: ["class.ecl-pagination__item--truncation"]
|
|
@@ -17212,9 +17277,9 @@ i0189.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
17212
17277
|
}] });
|
|
17213
17278
|
|
|
17214
17279
|
// lib/components/ecl-radio/ecl-radio-help.component.mjs
|
|
17215
|
-
import { __decorate as
|
|
17280
|
+
import { __decorate as __decorate6 } from "tslib";
|
|
17216
17281
|
import { Component as Component85, HostBinding as HostBinding133, Input as Input83 } from "@angular/core";
|
|
17217
|
-
import { coerceBoolean as
|
|
17282
|
+
import { coerceBoolean as coerceBoolean5 } from "@eui/base";
|
|
17218
17283
|
import * as i0190 from "@angular/core";
|
|
17219
17284
|
var EclRadioHelpComponent = class _EclRadioHelpComponent extends ECLBaseDirective {
|
|
17220
17285
|
constructor() {
|
|
@@ -17231,8 +17296,8 @@ var EclRadioHelpComponent = class _EclRadioHelpComponent extends ECLBaseDirectiv
|
|
|
17231
17296
|
this.ɵcmp = i0190.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.5", type: _EclRadioHelpComponent, selector: "[eclRadioHelp]", inputs: { isDisabled: "isDisabled" }, host: { properties: { "class.ecl-radio__help--disabled": "this.isDisabled", "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0190, template: "<ng-content></ng-content>\n" });
|
|
17232
17297
|
}
|
|
17233
17298
|
};
|
|
17234
|
-
|
|
17235
|
-
|
|
17299
|
+
__decorate6([
|
|
17300
|
+
coerceBoolean5
|
|
17236
17301
|
], EclRadioHelpComponent.prototype, "isDisabled", void 0);
|
|
17237
17302
|
i0190.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0190, type: EclRadioHelpComponent, decorators: [{
|
|
17238
17303
|
type: Component85,
|
|
@@ -17248,9 +17313,9 @@ i0190.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
17248
17313
|
}] } });
|
|
17249
17314
|
|
|
17250
17315
|
// lib/components/ecl-radio/ecl-radio-label.component.mjs
|
|
17251
|
-
import { __decorate as
|
|
17316
|
+
import { __decorate as __decorate7 } from "tslib";
|
|
17252
17317
|
import { Component as Component86, HostBinding as HostBinding134, Input as Input84, ViewEncapsulation as ViewEncapsulation13 } from "@angular/core";
|
|
17253
|
-
import { coerceBoolean as
|
|
17318
|
+
import { coerceBoolean as coerceBoolean6 } from "@eui/base";
|
|
17254
17319
|
import * as i0191 from "@angular/core";
|
|
17255
17320
|
var EclRadioLabelComponent = class _EclRadioLabelComponent extends ECLBaseDirective {
|
|
17256
17321
|
constructor() {
|
|
@@ -17268,11 +17333,11 @@ var EclRadioLabelComponent = class _EclRadioLabelComponent extends ECLBaseDirect
|
|
|
17268
17333
|
this.ɵcmp = i0191.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.5", type: _EclRadioLabelComponent, selector: "[eclRadioLabel]", inputs: { isInvalid: "isInvalid", isDisabled: "isDisabled" }, host: { properties: { "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0191, template: '<span class="ecl-radio__box" [class.ecl-radio__box--disabled]="isDisabled" [class.ecl-radio__box--invalid]="isInvalid">\n <span class="ecl-radio__box-inner"></span>\n</span>\n\n<ng-content></ng-content>\n', encapsulation: i0191.ViewEncapsulation.None });
|
|
17269
17334
|
}
|
|
17270
17335
|
};
|
|
17271
|
-
|
|
17272
|
-
|
|
17336
|
+
__decorate7([
|
|
17337
|
+
coerceBoolean6
|
|
17273
17338
|
], EclRadioLabelComponent.prototype, "isInvalid", void 0);
|
|
17274
|
-
|
|
17275
|
-
|
|
17339
|
+
__decorate7([
|
|
17340
|
+
coerceBoolean6
|
|
17276
17341
|
], EclRadioLabelComponent.prototype, "isDisabled", void 0);
|
|
17277
17342
|
i0191.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0191, type: EclRadioLabelComponent, decorators: [{
|
|
17278
17343
|
type: Component86,
|
|
@@ -17287,9 +17352,9 @@ i0191.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
17287
17352
|
}] } });
|
|
17288
17353
|
|
|
17289
17354
|
// lib/components/ecl-radio/ecl-radio.directive.mjs
|
|
17290
|
-
import { __decorate as
|
|
17355
|
+
import { __decorate as __decorate8 } from "tslib";
|
|
17291
17356
|
import { ContentChild as ContentChild24, Directive as Directive56, forwardRef as forwardRef50, HostBinding as HostBinding135, Input as Input85 } from "@angular/core";
|
|
17292
|
-
import { coerceBoolean as
|
|
17357
|
+
import { coerceBoolean as coerceBoolean7 } from "@eui/base";
|
|
17293
17358
|
import * as i0192 from "@angular/core";
|
|
17294
17359
|
var EclRadioDirective = class _EclRadioDirective extends ECLBaseDirective {
|
|
17295
17360
|
constructor() {
|
|
@@ -17319,14 +17384,14 @@ var EclRadioDirective = class _EclRadioDirective extends ECLBaseDirective {
|
|
|
17319
17384
|
this.ɵdir = i0192.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.0-next.5", type: _EclRadioDirective, selector: "[eclRadio]", inputs: { isBinary: "isBinary", isDisabled: "isDisabled", isInvalid: "isInvalid" }, host: { properties: { "class.ecl-radio--disabled": "this.isDisabled", "class.ecl-radio--invalid": "this.isInvalid", "class": "this.cssClasses" } }, queries: [{ propertyName: "eclRadioLabelComponent", first: true, predicate: i0192.forwardRef(() => EclRadioLabelComponent), descendants: true }, { propertyName: "eclRadioHelpComponent", first: true, predicate: i0192.forwardRef(() => EclRadioHelpComponent), descendants: true }], usesInheritance: true, ngImport: i0192 });
|
|
17320
17385
|
}
|
|
17321
17386
|
};
|
|
17322
|
-
|
|
17323
|
-
|
|
17387
|
+
__decorate8([
|
|
17388
|
+
coerceBoolean7
|
|
17324
17389
|
], EclRadioDirective.prototype, "isBinary", void 0);
|
|
17325
|
-
|
|
17326
|
-
|
|
17390
|
+
__decorate8([
|
|
17391
|
+
coerceBoolean7
|
|
17327
17392
|
], EclRadioDirective.prototype, "isDisabled", void 0);
|
|
17328
|
-
|
|
17329
|
-
|
|
17393
|
+
__decorate8([
|
|
17394
|
+
coerceBoolean7
|
|
17330
17395
|
], EclRadioDirective.prototype, "isInvalid", void 0);
|
|
17331
17396
|
i0192.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0192, type: EclRadioDirective, decorators: [{
|
|
17332
17397
|
type: Directive56,
|
|
@@ -17427,10 +17492,10 @@ i0194.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
17427
17492
|
}] });
|
|
17428
17493
|
|
|
17429
17494
|
// lib/components/ecl-rating-field/ecl-rating-field.component.mjs
|
|
17430
|
-
import { __decorate as
|
|
17495
|
+
import { __decorate as __decorate9 } from "tslib";
|
|
17431
17496
|
import { Component as Component87, EventEmitter as EventEmitter40, forwardRef as forwardRef53, HostBinding as HostBinding137, Input as Input86, Output as Output40 } from "@angular/core";
|
|
17432
17497
|
import { NG_VALUE_ACCESSOR as NG_VALUE_ACCESSOR6 } from "@angular/forms";
|
|
17433
|
-
import { coerceBoolean as
|
|
17498
|
+
import { coerceBoolean as coerceBoolean8, coerceNumber } from "@eui/base";
|
|
17434
17499
|
import * as i0195 from "@angular/core";
|
|
17435
17500
|
import * as i132 from "@angular/common";
|
|
17436
17501
|
var EclRatingChangeEvent = class extends EclBaseEvent {
|
|
@@ -17489,14 +17554,14 @@ var EclRatingFieldComponent = class _EclRatingFieldComponent extends ECLBaseDire
|
|
|
17489
17554
|
this.ɵcmp = i0195.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.5", type: _EclRatingFieldComponent, selector: "ecl-rating-field", inputs: { name: "name", numberOfStars: "numberOfStars", rating: "rating", disabled: "disabled" }, outputs: { ratingChange: "ratingChange" }, host: { properties: { "attr.disabled": "this.disabled", "class": "this.cssClasses" } }, providers: [ECL_RATINGFIELD_VALUE_ACCESSOR], usesInheritance: true, ngImport: i0195, template: '<ng-container *ngFor="let n of numbers">\n <input\n type="radio"\n id="{{ name }}-{{ n }}"\n [name]="name"\n class="ecl-rating-field__input"\n [value]="n"\n required=""\n [attr.checked]="rating === n ? true : undefined"\n [attr.disabled]="disabled ? true : undefined"\n (click)="onRadioClick(n)" />\n <label class="ecl-rating-field__label" for="{{ name }}-{{ n }}">\n <span class="ecl-u-sr-only">{{ n }} stars</span>\n <ecl-icon icon="star-filled" class="ecl-rating-field__icon-filled" size="m"> </ecl-icon>\n <ecl-icon icon="star-outline" class="ecl-rating-field__icon-outline" size="m"> </ecl-icon>\n </label>\n</ng-container>\n', dependencies: [{ kind: "directive", type: i132.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }] });
|
|
17490
17555
|
}
|
|
17491
17556
|
};
|
|
17492
|
-
|
|
17557
|
+
__decorate9([
|
|
17493
17558
|
coerceNumber
|
|
17494
17559
|
], EclRatingFieldComponent.prototype, "numberOfStars", void 0);
|
|
17495
|
-
|
|
17560
|
+
__decorate9([
|
|
17496
17561
|
coerceNumber
|
|
17497
17562
|
], EclRatingFieldComponent.prototype, "rating", void 0);
|
|
17498
|
-
|
|
17499
|
-
|
|
17563
|
+
__decorate9([
|
|
17564
|
+
coerceBoolean8
|
|
17500
17565
|
], EclRatingFieldComponent.prototype, "disabled", void 0);
|
|
17501
17566
|
i0195.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0195, type: EclRatingFieldComponent, decorators: [{
|
|
17502
17567
|
type: Component87,
|
|
@@ -17580,9 +17645,9 @@ i0197.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
17580
17645
|
}] } });
|
|
17581
17646
|
|
|
17582
17647
|
// lib/components/ecl-range/ecl-range.directive.mjs
|
|
17583
|
-
import { __decorate as
|
|
17648
|
+
import { __decorate as __decorate10 } from "tslib";
|
|
17584
17649
|
import { Directive as Directive58, EventEmitter as EventEmitter41, HostBinding as HostBinding139, HostListener as HostListener21, Input as Input88, Optional as Optional7, Output as Output41, Self as Self5 } from "@angular/core";
|
|
17585
|
-
import { coerceBoolean as
|
|
17650
|
+
import { coerceBoolean as coerceBoolean9 } from "@eui/base";
|
|
17586
17651
|
import { distinctUntilChanged } from "rxjs";
|
|
17587
17652
|
import * as i0198 from "@angular/core";
|
|
17588
17653
|
import * as i134 from "@angular/forms";
|
|
@@ -17640,8 +17705,8 @@ var EclRangeDirective = class _EclRangeDirective extends ECLBaseDirective {
|
|
|
17640
17705
|
this.ɵdir = i0198.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.0-next.5", type: _EclRangeDirective, selector: "input[eclRange]", inputs: { eclSize: "eclSize", value: "value", hasValueLabel: "hasValueLabel" }, outputs: { rangeChange: "rangeChange" }, host: { listeners: { "input": "onInput($event)" }, properties: { "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0198 });
|
|
17641
17706
|
}
|
|
17642
17707
|
};
|
|
17643
|
-
|
|
17644
|
-
|
|
17708
|
+
__decorate10([
|
|
17709
|
+
coerceBoolean9
|
|
17645
17710
|
], EclRangeDirective.prototype, "hasValueLabel", void 0);
|
|
17646
17711
|
i0198.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0198, type: EclRangeDirective, decorators: [{
|
|
17647
17712
|
type: Directive58,
|
|
@@ -17732,9 +17797,9 @@ i0200.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
17732
17797
|
}] } });
|
|
17733
17798
|
|
|
17734
17799
|
// lib/components/ecl-select/ecl-select.directive.mjs
|
|
17735
|
-
import { __decorate as
|
|
17800
|
+
import { __decorate as __decorate11 } from "tslib";
|
|
17736
17801
|
import { Directive as Directive59, HostBinding as HostBinding141, Input as Input90, Optional as Optional8, Self as Self6 } from "@angular/core";
|
|
17737
|
-
import { coerceBoolean as
|
|
17802
|
+
import { coerceBoolean as coerceBoolean10 } from "@eui/base";
|
|
17738
17803
|
import * as i0201 from "@angular/core";
|
|
17739
17804
|
import * as i135 from "@angular/forms";
|
|
17740
17805
|
var EclSelectDirective = class _EclSelectDirective extends ECLBaseDirective {
|
|
@@ -17784,11 +17849,11 @@ var EclSelectDirective = class _EclSelectDirective extends ECLBaseDirective {
|
|
|
17784
17849
|
this.ɵdir = i0201.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.0-next.5", type: _EclSelectDirective, selector: "select[eclSelect]", inputs: { disabled: "disabled", isInvalid: "isInvalid", eclSize: "eclSize" }, host: { properties: { "attr.disabled": "this.isDisabled", "class": "this.cssClasses", "class.ecl-select--invalid": "this.isInvalidState" } }, usesInheritance: true, ngImport: i0201 });
|
|
17785
17850
|
}
|
|
17786
17851
|
};
|
|
17787
|
-
|
|
17788
|
-
|
|
17852
|
+
__decorate11([
|
|
17853
|
+
coerceBoolean10
|
|
17789
17854
|
], EclSelectDirective.prototype, "disabled", void 0);
|
|
17790
|
-
|
|
17791
|
-
|
|
17855
|
+
__decorate11([
|
|
17856
|
+
coerceBoolean10
|
|
17792
17857
|
], EclSelectDirective.prototype, "isInvalid", void 0);
|
|
17793
17858
|
i0201.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0201, type: EclSelectDirective, decorators: [{
|
|
17794
17859
|
type: Directive59,
|
|
@@ -17845,7 +17910,7 @@ i0202.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
17845
17910
|
}] });
|
|
17846
17911
|
|
|
17847
17912
|
// lib/components/ecl-social-media-follow/ecl-social-media-follow.component.mjs
|
|
17848
|
-
import { Component as Component90, HostBinding as HostBinding142, Input as Input91, booleanAttribute as
|
|
17913
|
+
import { Component as Component90, HostBinding as HostBinding142, Input as Input91, booleanAttribute as booleanAttribute42 } from "@angular/core";
|
|
17849
17914
|
import * as i0203 from "@angular/core";
|
|
17850
17915
|
import * as i136 from "@angular/common";
|
|
17851
17916
|
var EclSocialMediaFollowComponent = class _EclSocialMediaFollowComponent extends ECLBaseDirective {
|
|
@@ -17860,7 +17925,7 @@ var EclSocialMediaFollowComponent = class _EclSocialMediaFollowComponent extends
|
|
|
17860
17925
|
this.ɵfac = i0203.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0203, type: _EclSocialMediaFollowComponent, deps: null, target: i0203.ɵɵFactoryTarget.Component });
|
|
17861
17926
|
}
|
|
17862
17927
|
static {
|
|
17863
|
-
this.ɵcmp = i0203.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.0-next.5", type: _EclSocialMediaFollowComponent, selector: "ecl-social-media-follow", inputs: { description: "description", isVertical: ["isVertical", "isVertical",
|
|
17928
|
+
this.ɵcmp = i0203.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.0-next.5", type: _EclSocialMediaFollowComponent, selector: "ecl-social-media-follow", inputs: { description: "description", isVertical: ["isVertical", "isVertical", booleanAttribute42] }, host: { properties: { "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0203, template: '<p *ngIf="description" class="ecl-social-media-follow__description">{{ description }}</p>\n<ul class="ecl-social-media-follow__list">\n <ng-content></ng-content>\n</ul>\n', styles: [":host{display:block}\n"], dependencies: [{ kind: "directive", type: i136.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
17864
17929
|
}
|
|
17865
17930
|
};
|
|
17866
17931
|
i0203.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0203, type: EclSocialMediaFollowComponent, decorators: [{
|
|
@@ -17870,7 +17935,7 @@ i0203.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
17870
17935
|
type: Input91
|
|
17871
17936
|
}], isVertical: [{
|
|
17872
17937
|
type: Input91,
|
|
17873
|
-
args: [{ transform:
|
|
17938
|
+
args: [{ transform: booleanAttribute42 }]
|
|
17874
17939
|
}], cssClasses: [{
|
|
17875
17940
|
type: HostBinding142,
|
|
17876
17941
|
args: ["class"]
|
|
@@ -17993,9 +18058,9 @@ i0206.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
17993
18058
|
}] });
|
|
17994
18059
|
|
|
17995
18060
|
// lib/components/ecl-social-media-share/ecl-social-media-share.component.mjs
|
|
17996
|
-
import { __decorate as
|
|
18061
|
+
import { __decorate as __decorate12 } from "tslib";
|
|
17997
18062
|
import { Component as Component92, HostBinding as HostBinding145, Input as Input93 } from "@angular/core";
|
|
17998
|
-
import { coerceBoolean as
|
|
18063
|
+
import { coerceBoolean as coerceBoolean11 } from "@eui/base";
|
|
17999
18064
|
import * as i0207 from "@angular/core";
|
|
18000
18065
|
var EclSocialMediaShareComponent = class _EclSocialMediaShareComponent extends ECLBaseDirective {
|
|
18001
18066
|
constructor() {
|
|
@@ -18012,8 +18077,8 @@ var EclSocialMediaShareComponent = class _EclSocialMediaShareComponent extends E
|
|
|
18012
18077
|
this.ɵcmp = i0207.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.5", type: _EclSocialMediaShareComponent, selector: "ecl-social-media-share", inputs: { description: "description", isVertical: "isVertical" }, host: { properties: { "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0207, template: '<p class="ecl-social-media-share__description">{{ description }}</p>\n<ul class="ecl-social-media-share__list">\n <ng-content></ng-content>\n</ul>\n', styles: [":host{display:block}\n"] });
|
|
18013
18078
|
}
|
|
18014
18079
|
};
|
|
18015
|
-
|
|
18016
|
-
|
|
18080
|
+
__decorate12([
|
|
18081
|
+
coerceBoolean11
|
|
18017
18082
|
], EclSocialMediaShareComponent.prototype, "isVertical", void 0);
|
|
18018
18083
|
i0207.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0207, type: EclSocialMediaShareComponent, decorators: [{
|
|
18019
18084
|
type: Component92,
|
|
@@ -18139,7 +18204,7 @@ i0210.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
18139
18204
|
}] });
|
|
18140
18205
|
|
|
18141
18206
|
// lib/components/ecl-loading-indicator/ecl-loading-indicator.component.mjs
|
|
18142
|
-
import { Component as Component94, HostBinding as HostBinding148, Input as Input95, booleanAttribute as
|
|
18207
|
+
import { Component as Component94, HostBinding as HostBinding148, Input as Input95, booleanAttribute as booleanAttribute43 } from "@angular/core";
|
|
18143
18208
|
import * as i0211 from "@angular/core";
|
|
18144
18209
|
var EclLoadingIndicatorComponent = class _EclLoadingIndicatorComponent extends ECLBaseDirective {
|
|
18145
18210
|
constructor() {
|
|
@@ -18162,7 +18227,7 @@ var EclLoadingIndicatorComponent = class _EclLoadingIndicatorComponent extends E
|
|
|
18162
18227
|
this.ɵfac = i0211.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0211, type: _EclLoadingIndicatorComponent, deps: null, target: i0211.ɵɵFactoryTarget.Component });
|
|
18163
18228
|
}
|
|
18164
18229
|
static {
|
|
18165
|
-
this.ɵcmp = i0211.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.0-next.5", type: _EclLoadingIndicatorComponent, selector: "ecl-loading-indicator", inputs: { size: "size", variant: "variant", isCentered: ["isCentered", "isCentered",
|
|
18230
|
+
this.ɵcmp = i0211.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.0-next.5", type: _EclLoadingIndicatorComponent, selector: "ecl-loading-indicator", inputs: { size: "size", variant: "variant", isCentered: ["isCentered", "isCentered", booleanAttribute43], isVisible: ["isVisible", "isVisible", booleanAttribute43] }, host: { properties: { "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0211, template: '<svg class="ecl-spinner__loader" viewBox="25 25 50 50">\n <circle\n class="ecl-spinner__circle"\n cx="50"\n cy="50"\n r="20"\n fill="none"\n stroke-width="4px"\n stroke-miterlimit="10"\n vector-effect="non-scaling-stroke"></circle>\n</svg>\n<ng-content></ng-content>\n' });
|
|
18166
18231
|
}
|
|
18167
18232
|
};
|
|
18168
18233
|
i0211.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0211, type: EclLoadingIndicatorComponent, decorators: [{
|
|
@@ -18177,10 +18242,10 @@ i0211.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
18177
18242
|
type: Input95
|
|
18178
18243
|
}], isCentered: [{
|
|
18179
18244
|
type: Input95,
|
|
18180
|
-
args: [{ transform:
|
|
18245
|
+
args: [{ transform: booleanAttribute43 }]
|
|
18181
18246
|
}], isVisible: [{
|
|
18182
18247
|
type: Input95,
|
|
18183
|
-
args: [{ transform:
|
|
18248
|
+
args: [{ transform: booleanAttribute43 }]
|
|
18184
18249
|
}] } });
|
|
18185
18250
|
|
|
18186
18251
|
// lib/components/ecl-loading-indicator/ecl-loading-indicator-label.directive.mjs
|
|
@@ -18292,7 +18357,7 @@ i0215.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
18292
18357
|
}] } });
|
|
18293
18358
|
|
|
18294
18359
|
// lib/components/ecl-table/ecl-table.directive.mjs
|
|
18295
|
-
import { ContentChildren as ContentChildren26, Directive as Directive64, EventEmitter as EventEmitter44, forwardRef as forwardRef54, HostBinding as HostBinding152, HostListener as HostListener22, Input as Input96, Output as Output44, booleanAttribute as
|
|
18360
|
+
import { ContentChildren as ContentChildren26, Directive as Directive64, EventEmitter as EventEmitter44, forwardRef as forwardRef54, HostBinding as HostBinding152, HostListener as HostListener22, Input as Input96, Output as Output44, booleanAttribute as booleanAttribute44 } from "@angular/core";
|
|
18296
18361
|
import { Subject as Subject27 } from "rxjs";
|
|
18297
18362
|
import { takeUntil as takeUntil24 } from "rxjs/operators";
|
|
18298
18363
|
import * as i0216 from "@angular/core";
|
|
@@ -18338,7 +18403,7 @@ var EclTableDirective = class _EclTableDirective extends ECLBaseDirective {
|
|
|
18338
18403
|
this.ɵfac = i0216.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0216, type: _EclTableDirective, deps: [{ token: i0216.IterableDiffers }], target: i0216.ɵɵFactoryTarget.Directive });
|
|
18339
18404
|
}
|
|
18340
18405
|
static {
|
|
18341
|
-
this.ɵdir = i0216.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.0.0-next.5", type: _EclTableDirective, selector: "[eclTable]", inputs: { isZebra: ["isZebra", "isZebra",
|
|
18406
|
+
this.ɵdir = i0216.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.0.0-next.5", type: _EclTableDirective, selector: "[eclTable]", inputs: { isZebra: ["isZebra", "isZebra", booleanAttribute44] }, outputs: { sort: "sort" }, host: { properties: { "class.ecl-table--zebra": "this.isZebra", "class": "this.cssClasses" } }, queries: [{ propertyName: "eclTableHeaders", predicate: i0216.forwardRef(() => EclTableHeaderDirective), descendants: true }], usesInheritance: true, ngImport: i0216 });
|
|
18342
18407
|
}
|
|
18343
18408
|
};
|
|
18344
18409
|
i0216.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0216, type: EclTableDirective, decorators: [{
|
|
@@ -18348,7 +18413,7 @@ i0216.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
18348
18413
|
}]
|
|
18349
18414
|
}], ctorParameters: () => [{ type: i0216.IterableDiffers }], propDecorators: { isZebra: [{
|
|
18350
18415
|
type: Input96,
|
|
18351
|
-
args: [{ transform:
|
|
18416
|
+
args: [{ transform: booleanAttribute44 }]
|
|
18352
18417
|
}, {
|
|
18353
18418
|
type: HostBinding152,
|
|
18354
18419
|
args: ["class.ecl-table--zebra"]
|
|
@@ -18684,7 +18749,7 @@ i0218.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
18684
18749
|
}], ctorParameters: () => [{ type: i0218.ElementRef }] });
|
|
18685
18750
|
|
|
18686
18751
|
// lib/components/ecl-tabs/ecl-tab.component.mjs
|
|
18687
|
-
import { Component as Component97, ContentChild as ContentChild27, EventEmitter as EventEmitter45, HostBinding as HostBinding153, Input as Input97, Output as Output45, ViewChild as ViewChild16, booleanAttribute as
|
|
18752
|
+
import { Component as Component97, ContentChild as ContentChild27, EventEmitter as EventEmitter45, HostBinding as HostBinding153, Input as Input97, Output as Output45, ViewChild as ViewChild16, booleanAttribute as booleanAttribute45 } from "@angular/core";
|
|
18688
18753
|
import * as i0219 from "@angular/core";
|
|
18689
18754
|
var EclTabSelectEvent = class extends EclBaseEvent {
|
|
18690
18755
|
constructor(tab) {
|
|
@@ -18738,7 +18803,7 @@ var EclTabComponent = class _EclTabComponent extends ECLBaseDirective {
|
|
|
18738
18803
|
this.ɵfac = i0219.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0219, type: _EclTabComponent, deps: [{ token: i0219.ElementRef }], target: i0219.ɵɵFactoryTarget.Component });
|
|
18739
18804
|
}
|
|
18740
18805
|
static {
|
|
18741
|
-
this.ɵcmp = i0219.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.0-next.5", type: _EclTabComponent, selector: "ecl-tab, [eclTab]", inputs: { id: "id", isHidden: ["isHidden", "isHidden",
|
|
18806
|
+
this.ɵcmp = i0219.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.0-next.5", type: _EclTabComponent, selector: "ecl-tab, [eclTab]", inputs: { id: "id", isHidden: ["isHidden", "isHidden", booleanAttribute45], isActive: ["isActive", "isActive", booleanAttribute45] }, outputs: { selectTab: "selectTab", keydownTab: "keydownTab" }, host: { properties: { "class.ecl-tabs__item--hidden": "this.isHidden", "class": "this.cssClasses" } }, queries: [{ propertyName: "label", first: true, predicate: EclTabLabelComponent, descendants: true }], viewQueries: [{ propertyName: "contentTemplate", first: true, predicate: ["content"], descendants: true }, { propertyName: "link", first: true, predicate: EclLinkDirective, descendants: true }], usesInheritance: true, ngImport: i0219, template: '<a\n eclLink\n role="tab"\n class="ecl-tabs__link"\n [class.ecl-tabs__link--active]="isActive"\n [attr.aria-selected]="isActive"\n tabindex="0"\n (keydown)="onKeydown($event)"\n (click)="onTabClick()">\n <ng-content select="ecl-tab-label"></ng-content>\n</a>\n\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>\n', dependencies: [{ kind: "directive", type: EclLinkDirective, selector: "[eclLink]", inputs: ["isInverted", "isIconOnly", "isNoVisited", "variant"] }] });
|
|
18742
18807
|
}
|
|
18743
18808
|
};
|
|
18744
18809
|
i0219.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0219, type: EclTabComponent, decorators: [{
|
|
@@ -18748,13 +18813,13 @@ i0219.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
18748
18813
|
type: Input97
|
|
18749
18814
|
}], isHidden: [{
|
|
18750
18815
|
type: Input97,
|
|
18751
|
-
args: [{ transform:
|
|
18816
|
+
args: [{ transform: booleanAttribute45 }]
|
|
18752
18817
|
}, {
|
|
18753
18818
|
type: HostBinding153,
|
|
18754
18819
|
args: ["class.ecl-tabs__item--hidden"]
|
|
18755
18820
|
}], isActive: [{
|
|
18756
18821
|
type: Input97,
|
|
18757
|
-
args: [{ transform:
|
|
18822
|
+
args: [{ transform: booleanAttribute45 }]
|
|
18758
18823
|
}], selectTab: [{
|
|
18759
18824
|
type: Output45
|
|
18760
18825
|
}], keydownTab: [{
|
|
@@ -18774,7 +18839,7 @@ i0219.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
18774
18839
|
}] } });
|
|
18775
18840
|
|
|
18776
18841
|
// lib/components/ecl-tabs/ecl-tab-more.component.mjs
|
|
18777
|
-
import { Component as Component98, HostBinding as HostBinding154, Input as Input98, booleanAttribute as
|
|
18842
|
+
import { Component as Component98, HostBinding as HostBinding154, Input as Input98, booleanAttribute as booleanAttribute46 } from "@angular/core";
|
|
18778
18843
|
import * as i0220 from "@angular/core";
|
|
18779
18844
|
var EclTabMoreComponent = class _EclTabMoreComponent extends ECLBaseDirective {
|
|
18780
18845
|
constructor() {
|
|
@@ -18788,7 +18853,7 @@ var EclTabMoreComponent = class _EclTabMoreComponent extends ECLBaseDirective {
|
|
|
18788
18853
|
this.ɵfac = i0220.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0220, type: _EclTabMoreComponent, deps: null, target: i0220.ɵɵFactoryTarget.Component });
|
|
18789
18854
|
}
|
|
18790
18855
|
static {
|
|
18791
|
-
this.ɵcmp = i0220.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.0-next.5", type: _EclTabMoreComponent, selector: "ecl-tab-more", inputs: { isHidden: ["isHidden", "isHidden",
|
|
18856
|
+
this.ɵcmp = i0220.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.0-next.5", type: _EclTabMoreComponent, selector: "ecl-tab-more", inputs: { isHidden: ["isHidden", "isHidden", booleanAttribute46] }, host: { properties: { "class.ecl-tabs__item--hidden": "this.isHidden", "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0220, template: "<ng-content></ng-content>\n" });
|
|
18792
18857
|
}
|
|
18793
18858
|
};
|
|
18794
18859
|
i0220.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0220, type: EclTabMoreComponent, decorators: [{
|
|
@@ -18796,7 +18861,7 @@ i0220.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
18796
18861
|
args: [{ selector: "ecl-tab-more", template: "<ng-content></ng-content>\n" }]
|
|
18797
18862
|
}], propDecorators: { isHidden: [{
|
|
18798
18863
|
type: Input98,
|
|
18799
|
-
args: [{ transform:
|
|
18864
|
+
args: [{ transform: booleanAttribute46 }]
|
|
18800
18865
|
}, {
|
|
18801
18866
|
type: HostBinding154,
|
|
18802
18867
|
args: ["class.ecl-tabs__item--hidden"]
|
|
@@ -19446,7 +19511,7 @@ i0222.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
19446
19511
|
}] });
|
|
19447
19512
|
|
|
19448
19513
|
// lib/components/ecl-tag/ecl-tag.component.mjs
|
|
19449
|
-
import { Component as Component100, Input as Input100, HostBinding as HostBinding155, Output as Output47, EventEmitter as EventEmitter47, booleanAttribute as
|
|
19514
|
+
import { Component as Component100, Input as Input100, HostBinding as HostBinding155, Output as Output47, EventEmitter as EventEmitter47, booleanAttribute as booleanAttribute47 } from "@angular/core";
|
|
19450
19515
|
import * as i0223 from "@angular/core";
|
|
19451
19516
|
import * as i217 from "@angular/common";
|
|
19452
19517
|
var EclTagRemoveEvent = class extends EclBaseEvent {
|
|
@@ -19483,7 +19548,7 @@ var EclTagComponent = class _EclTagComponent extends ECLBaseDirective {
|
|
|
19483
19548
|
this.ɵfac = i0223.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0223, type: _EclTagComponent, deps: null, target: i0223.ɵɵFactoryTarget.Component });
|
|
19484
19549
|
}
|
|
19485
19550
|
static {
|
|
19486
|
-
this.ɵcmp = i0223.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.5", type: _EclTagComponent, selector: "ecl-tag, [eclTag]", inputs: { variant: "variant", isWrapped: ["isWrapped", "isWrapped",
|
|
19551
|
+
this.ɵcmp = i0223.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.5", type: _EclTagComponent, selector: "ecl-tag, [eclTag]", inputs: { variant: "variant", isWrapped: ["isWrapped", "isWrapped", booleanAttribute47] }, outputs: { remove: "remove" }, host: { properties: { "attr.hidden": "this.isHidden", "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0223, template: '<ng-content></ng-content>\n@if(isRemovable) {\n <span class="ecl-tag__icon" (click)="onRemoveClick($event)">\n <ecl-icon icon="close-outline" class="ecl-tag__icon-close" role="img">\n <title>{{title | titlecase}}</title>\n </ecl-icon>\n</span>\n}\n', dependencies: [{ kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "pipe", type: i217.TitleCasePipe, name: "titlecase" }] });
|
|
19487
19552
|
}
|
|
19488
19553
|
};
|
|
19489
19554
|
i0223.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0223, type: EclTagComponent, decorators: [{
|
|
@@ -19493,7 +19558,7 @@ i0223.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
19493
19558
|
type: Input100
|
|
19494
19559
|
}], isWrapped: [{
|
|
19495
19560
|
type: Input100,
|
|
19496
|
-
args: [{ transform:
|
|
19561
|
+
args: [{ transform: booleanAttribute47 }]
|
|
19497
19562
|
}], remove: [{
|
|
19498
19563
|
type: Output47
|
|
19499
19564
|
}], isHidden: [{
|
|
@@ -19553,9 +19618,9 @@ i0225.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
19553
19618
|
}] });
|
|
19554
19619
|
|
|
19555
19620
|
// lib/components/ecl-text-area/ecl-text-area.directive.mjs
|
|
19556
|
-
import { __decorate as
|
|
19621
|
+
import { __decorate as __decorate13 } from "tslib";
|
|
19557
19622
|
import { Directive as Directive66, HostBinding as HostBinding157, Input as Input101, Optional as Optional9, Self as Self7 } from "@angular/core";
|
|
19558
|
-
import { coerceBoolean as
|
|
19623
|
+
import { coerceBoolean as coerceBoolean12 } from "@eui/base";
|
|
19559
19624
|
import * as i0226 from "@angular/core";
|
|
19560
19625
|
import * as i140 from "@angular/forms";
|
|
19561
19626
|
var EclTextAreaDirective = class _EclTextAreaDirective extends ECLBaseDirective {
|
|
@@ -19582,8 +19647,8 @@ var EclTextAreaDirective = class _EclTextAreaDirective extends ECLBaseDirective
|
|
|
19582
19647
|
this.ɵdir = i0226.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.0-next.5", type: _EclTextAreaDirective, selector: "textarea[eclTextArea]", inputs: { eclSize: "eclSize", isInvalid: "isInvalid" }, host: { properties: { "class": "this.cssClasses", "class.ecl-text-area--invalid": "this.invalidState" } }, usesInheritance: true, ngImport: i0226 });
|
|
19583
19648
|
}
|
|
19584
19649
|
};
|
|
19585
|
-
|
|
19586
|
-
|
|
19650
|
+
__decorate13([
|
|
19651
|
+
coerceBoolean12
|
|
19587
19652
|
], EclTextAreaDirective.prototype, "isInvalid", void 0);
|
|
19588
19653
|
i0226.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0226, type: EclTextAreaDirective, decorators: [{
|
|
19589
19654
|
type: Directive66,
|
|
@@ -19707,14 +19772,14 @@ i0230.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5
|
|
|
19707
19772
|
}] } });
|
|
19708
19773
|
|
|
19709
19774
|
// lib/components/ecl-timeline/ecl-timeline-item.component.mjs
|
|
19710
|
-
import { __decorate as
|
|
19775
|
+
import { __decorate as __decorate14 } from "tslib";
|
|
19711
19776
|
import { Component as Component102, Input as Input102, HostBinding as HostBinding160, ViewEncapsulation as ViewEncapsulation17, Output as Output49, EventEmitter as EventEmitter49, ContentChild as ContentChild28, forwardRef as forwardRef58 } from "@angular/core";
|
|
19712
|
-
import { coerceBoolean as
|
|
19777
|
+
import { coerceBoolean as coerceBoolean13 } from "@eui/base";
|
|
19713
19778
|
import { Subject as Subject29 } from "rxjs";
|
|
19714
19779
|
import { takeUntil as takeUntil26 } from "rxjs/operators";
|
|
19715
19780
|
import * as i0231 from "@angular/core";
|
|
19716
19781
|
import * as i141 from "@angular/common";
|
|
19717
|
-
import * as
|
|
19782
|
+
import * as i57 from "@ngx-translate/core";
|
|
19718
19783
|
var EclTimelineItemToggleEvent = class extends EclBaseEvent {
|
|
19719
19784
|
constructor(isExpanded, toggleGroup) {
|
|
19720
19785
|
super();
|
|
@@ -19806,11 +19871,11 @@ var EclTimelineItemComponent = class _EclTimelineItemComponent extends ECLBaseDi
|
|
|
19806
19871
|
|
|
19807
19872
|
<ng-template #content>
|
|
19808
19873
|
<ng-content></ng-content>
|
|
19809
|
-
</ng-template>`, styles: ["ecl-timeline-item{display:list-item}\n"], dependencies: [{ kind: "directive", type: i141.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i141.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: EclButtonComponent, selector: "button[eclButton], button[ecl-button], a[eclButton]", inputs: ["isIconOnly", "variant", "containerStyleClass"] }, { kind: "directive", type: EclButtonLabelDirective, selector: "[eclButtonLabel]" }, { kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "pipe", type:
|
|
19874
|
+
</ng-template>`, styles: ["ecl-timeline-item{display:list-item}\n"], dependencies: [{ kind: "directive", type: i141.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i141.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: EclButtonComponent, selector: "button[eclButton], button[ecl-button], a[eclButton]", inputs: ["isIconOnly", "variant", "containerStyleClass"] }, { kind: "directive", type: EclButtonLabelDirective, selector: "[eclButtonLabel]" }, { kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "pipe", type: i57.TranslatePipe, name: "translate" }], encapsulation: i0231.ViewEncapsulation.None });
|
|
19810
19875
|
}
|
|
19811
19876
|
};
|
|
19812
|
-
|
|
19813
|
-
|
|
19877
|
+
__decorate14([
|
|
19878
|
+
coerceBoolean13
|
|
19814
19879
|
], EclTimelineItemComponent.prototype, "isTogglerExpanded", void 0);
|
|
19815
19880
|
i0231.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.5", ngImport: i0231, type: EclTimelineItemComponent, decorators: [{
|
|
19816
19881
|
type: Component102,
|