@eui/ecl 18.0.0-next.24 → 18.0.0-next.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/docs/components/EclNavigationListComponent.html +83 -1
- package/docs/components/EclNavigationListItemComponent.html +28 -5
- package/docs/dependencies.html +1 -1
- package/docs/js/search/search_index.js +2 -2
- package/esm2022/lib/components/ecl-navigation-list/ecl-navigation-list-item.component.mjs +15 -10
- package/esm2022/lib/components/ecl-navigation-list/ecl-navigation-list.component.mjs +23 -12
- package/fesm2022/eui-ecl.mjs +140 -124
- package/fesm2022/eui-ecl.mjs.map +3 -3
- package/lib/components/ecl-navigation-list/ecl-navigation-list-item.component.d.ts +4 -3
- package/lib/components/ecl-navigation-list/ecl-navigation-list-item.component.d.ts.map +1 -1
- package/lib/components/ecl-navigation-list/ecl-navigation-list.component.d.ts +10 -3
- package/lib/components/ecl-navigation-list/ecl-navigation-list.component.d.ts.map +1 -1
- package/package.json +1 -1
package/fesm2022/eui-ecl.mjs
CHANGED
|
@@ -12451,11 +12451,16 @@ import * as i0154 from "@angular/core";
|
|
|
12451
12451
|
var EclNavigationListItemComponent = class _EclNavigationListItemComponent extends ECLBaseDirective {
|
|
12452
12452
|
constructor() {
|
|
12453
12453
|
super(...arguments);
|
|
12454
|
-
this.columns = 2;
|
|
12455
12454
|
this.role = "article";
|
|
12455
|
+
this.variant = "";
|
|
12456
|
+
this.hasBorder = true;
|
|
12456
12457
|
}
|
|
12457
12458
|
get cssClasses() {
|
|
12458
|
-
return [
|
|
12459
|
+
return [
|
|
12460
|
+
super.getCssClasses("ecl-navigation-list__item"),
|
|
12461
|
+
this.hasBorder ? "" : "ecl-navigation-list__item--no-border",
|
|
12462
|
+
this.variant === "illustration" ? "ecl-navigation-list__item--illustration" : ""
|
|
12463
|
+
].join(" ").trim();
|
|
12459
12464
|
}
|
|
12460
12465
|
ngAfterContentInit() {
|
|
12461
12466
|
if (this.eclContentBlock) {
|
|
@@ -12466,56 +12471,67 @@ var EclNavigationListItemComponent = class _EclNavigationListItemComponent exten
|
|
|
12466
12471
|
this.ɵfac = i0154.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0154, type: _EclNavigationListItemComponent, deps: null, target: i0154.ɵɵFactoryTarget.Component });
|
|
12467
12472
|
}
|
|
12468
12473
|
static {
|
|
12469
|
-
this.ɵcmp = i0154.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclNavigationListItemComponent, selector: "ecl-navigation-list-item", inputs: {
|
|
12474
|
+
this.ɵcmp = i0154.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclNavigationListItemComponent, selector: "ecl-navigation-list-item", inputs: { variant: "variant" }, host: { properties: { "attr.role": "this.role", "class": "this.cssClasses" } }, queries: [{ propertyName: "eclContentBlock", first: true, predicate: i0154.forwardRef(() => EclContentBlockComponent), descendants: true }], usesInheritance: true, ngImport: i0154, template: "<ng-content></ng-content>\n" });
|
|
12470
12475
|
}
|
|
12471
12476
|
};
|
|
12472
12477
|
i0154.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0154, type: EclNavigationListItemComponent, decorators: [{
|
|
12473
12478
|
type: Component72,
|
|
12474
12479
|
args: [{ selector: "ecl-navigation-list-item", template: "<ng-content></ng-content>\n" }]
|
|
12475
|
-
}], propDecorators: {
|
|
12476
|
-
type: Input68
|
|
12477
|
-
}], eclContentBlock: [{
|
|
12478
|
-
type: ContentChild20,
|
|
12479
|
-
args: [forwardRef46(() => EclContentBlockComponent)]
|
|
12480
|
-
}], role: [{
|
|
12480
|
+
}], propDecorators: { role: [{
|
|
12481
12481
|
type: HostBinding105,
|
|
12482
12482
|
args: ["attr.role"]
|
|
12483
12483
|
}], cssClasses: [{
|
|
12484
12484
|
type: HostBinding105,
|
|
12485
12485
|
args: ["class"]
|
|
12486
|
+
}], variant: [{
|
|
12487
|
+
type: Input68
|
|
12488
|
+
}], eclContentBlock: [{
|
|
12489
|
+
type: ContentChild20,
|
|
12490
|
+
args: [forwardRef46(() => EclContentBlockComponent)]
|
|
12486
12491
|
}] } });
|
|
12487
12492
|
|
|
12488
12493
|
// lib/components/ecl-navigation-list/ecl-navigation-list.component.mjs
|
|
12489
|
-
import {
|
|
12490
|
-
import { Component as Component73, HostBinding as HostBinding106, Input as Input69 } from "@angular/core";
|
|
12491
|
-
import { coerceNumber } from "@eui/base";
|
|
12494
|
+
import { Component as Component73, ContentChildren as ContentChildren24, HostBinding as HostBinding106, Input as Input69, booleanAttribute as booleanAttribute23, forwardRef as forwardRef48, numberAttribute as numberAttribute7 } from "@angular/core";
|
|
12492
12495
|
import * as i0155 from "@angular/core";
|
|
12493
12496
|
var EclNavigationListComponent = class _EclNavigationListComponent extends ECLBaseDirective {
|
|
12494
12497
|
constructor() {
|
|
12495
12498
|
super(...arguments);
|
|
12496
12499
|
this.columns = 2;
|
|
12500
|
+
this.hasBorders = true;
|
|
12497
12501
|
}
|
|
12498
12502
|
get cssClasses() {
|
|
12499
12503
|
return [super.getCssClasses("ecl-navigation-list"), `ecl-navigation-list--col-${this.columns}`].join(" ").trim();
|
|
12500
12504
|
}
|
|
12505
|
+
ngAfterContentInit() {
|
|
12506
|
+
setTimeout(() => {
|
|
12507
|
+
if (!this.hasBorders) {
|
|
12508
|
+
console.log(this.listItems);
|
|
12509
|
+
this.listItems.forEach((item) => item.hasBorder = false);
|
|
12510
|
+
}
|
|
12511
|
+
});
|
|
12512
|
+
}
|
|
12501
12513
|
static {
|
|
12502
12514
|
this.ɵfac = i0155.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0155, type: _EclNavigationListComponent, deps: null, target: i0155.ɵɵFactoryTarget.Component });
|
|
12503
12515
|
}
|
|
12504
12516
|
static {
|
|
12505
|
-
this.ɵcmp = i0155.ɵɵngDeclareComponent({ minVersion: "
|
|
12517
|
+
this.ɵcmp = i0155.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.0-next.3", type: _EclNavigationListComponent, selector: "ecl-navigation-list", inputs: { columns: ["columns", "columns", numberAttribute7], hasBorders: ["hasBorders", "hasBorders", booleanAttribute23] }, host: { properties: { "class": "this.cssClasses" } }, queries: [{ propertyName: "listItems", predicate: i0155.forwardRef(() => EclNavigationListItemComponent) }], usesInheritance: true, ngImport: i0155, template: "<ng-content></ng-content>\n" });
|
|
12506
12518
|
}
|
|
12507
12519
|
};
|
|
12508
|
-
__decorate14([
|
|
12509
|
-
coerceNumber
|
|
12510
|
-
], EclNavigationListComponent.prototype, "columns", void 0);
|
|
12511
12520
|
i0155.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0155, type: EclNavigationListComponent, decorators: [{
|
|
12512
12521
|
type: Component73,
|
|
12513
12522
|
args: [{ selector: "ecl-navigation-list", template: "<ng-content></ng-content>\n" }]
|
|
12514
|
-
}], propDecorators: {
|
|
12515
|
-
type: Input69
|
|
12516
|
-
}], cssClasses: [{
|
|
12523
|
+
}], propDecorators: { cssClasses: [{
|
|
12517
12524
|
type: HostBinding106,
|
|
12518
12525
|
args: ["class"]
|
|
12526
|
+
}], columns: [{
|
|
12527
|
+
type: Input69,
|
|
12528
|
+
args: [{ transform: numberAttribute7 }]
|
|
12529
|
+
}], hasBorders: [{
|
|
12530
|
+
type: Input69,
|
|
12531
|
+
args: [{ transform: booleanAttribute23 }]
|
|
12532
|
+
}], listItems: [{
|
|
12533
|
+
type: ContentChildren24,
|
|
12534
|
+
args: [forwardRef48(() => EclNavigationListItemComponent)]
|
|
12519
12535
|
}] } });
|
|
12520
12536
|
|
|
12521
12537
|
// lib/components/ecl-navigation-list/ecl-navigation-list-picture.directive.mjs
|
|
@@ -12711,7 +12727,7 @@ i0159.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
12711
12727
|
}] } });
|
|
12712
12728
|
|
|
12713
12729
|
// lib/components/ecl-news-ticker/ecl-news-ticker.component.mjs
|
|
12714
|
-
import { Component as Component76, ContentChildren as
|
|
12730
|
+
import { Component as Component76, ContentChildren as ContentChildren25, EventEmitter as EventEmitter35, HostBinding as HostBinding110, HostListener as HostListener18, Input as Input71, Output as Output35, ViewChild as ViewChild14, booleanAttribute as booleanAttribute24 } from "@angular/core";
|
|
12715
12731
|
import { Subject as Subject25, takeUntil as takeUntil22 } from "rxjs";
|
|
12716
12732
|
import * as i0160 from "@angular/core";
|
|
12717
12733
|
import * as i54 from "@ngx-translate/core";
|
|
@@ -12902,7 +12918,7 @@ var EclNewsTickerComponent = class _EclNewsTickerComponent extends ECLBaseDirect
|
|
|
12902
12918
|
this.ɵfac = i0160.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0160, type: _EclNewsTickerComponent, deps: [{ token: i0160.Renderer2 }], target: i0160.ɵɵFactoryTarget.Component });
|
|
12903
12919
|
}
|
|
12904
12920
|
static {
|
|
12905
|
-
this.ɵcmp = i0160.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.3", type: _EclNewsTickerComponent, selector: "ecl-news-ticker", inputs: { isAutoplay: ["isAutoplay", "isAutoplay",
|
|
12921
|
+
this.ɵcmp = i0160.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.3", type: _EclNewsTickerComponent, selector: "ecl-news-ticker", inputs: { isAutoplay: ["isAutoplay", "isAutoplay", booleanAttribute24] }, outputs: { itemSwitch: "itemSwitch" }, host: { listeners: { "window:resize": "onResize($event)" }, properties: { "class": "this.cssClasses" } }, queries: [{ propertyName: "newsTickerItems", predicate: EclNewsTickerItemComponent }], viewQueries: [{ propertyName: "firstHiddenItem", first: true, predicate: ["firstHiddenItem"], descendants: true }, { propertyName: "lastHiddenItem", first: true, predicate: ["lastHiddenItem"], descendants: true }, { propertyName: "slidesContainer", first: true, predicate: ["slidesContainer"], descendants: true }], usesInheritance: true, ngImport: i0160, template: `<div class="ecl-news-ticker__container" [style.height.px]="containerHeight">
|
|
12906
12922
|
<ecl-icon icon="information" size="m" class="ecl-news-ticker__icon"></ecl-icon>
|
|
12907
12923
|
<div class="ecl-news-ticker__content" [style.height.px]="contentHeight">
|
|
12908
12924
|
<ul
|
|
@@ -13016,11 +13032,11 @@ i0160.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
13016
13032
|
}` }]
|
|
13017
13033
|
}], ctorParameters: () => [{ type: i0160.Renderer2 }], propDecorators: { isAutoplay: [{
|
|
13018
13034
|
type: Input71,
|
|
13019
|
-
args: [{ transform:
|
|
13035
|
+
args: [{ transform: booleanAttribute24 }]
|
|
13020
13036
|
}], itemSwitch: [{
|
|
13021
13037
|
type: Output35
|
|
13022
13038
|
}], newsTickerItems: [{
|
|
13023
|
-
type:
|
|
13039
|
+
type: ContentChildren25,
|
|
13024
13040
|
args: [EclNewsTickerItemComponent]
|
|
13025
13041
|
}], firstHiddenItem: [{
|
|
13026
13042
|
type: ViewChild14,
|
|
@@ -13065,7 +13081,7 @@ i0161.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
13065
13081
|
}] });
|
|
13066
13082
|
|
|
13067
13083
|
// lib/components/ecl-notification/ecl-notification.component.mjs
|
|
13068
|
-
import { Component as Component77, Input as Input72, Output as Output36, EventEmitter as EventEmitter36, HostBinding as HostBinding111, booleanAttribute as
|
|
13084
|
+
import { Component as Component77, Input as Input72, Output as Output36, EventEmitter as EventEmitter36, HostBinding as HostBinding111, booleanAttribute as booleanAttribute25 } from "@angular/core";
|
|
13069
13085
|
import * as i0162 from "@angular/core";
|
|
13070
13086
|
import * as i55 from "@angular/common";
|
|
13071
13087
|
import * as i6 from "@ngx-translate/core";
|
|
@@ -13111,7 +13127,7 @@ var EclNotificationComponent = class _EclNotificationComponent extends ECLBaseDi
|
|
|
13111
13127
|
this.ɵfac = i0162.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0162, type: _EclNotificationComponent, deps: [{ token: EclThemeService }], target: i0162.ɵɵFactoryTarget.Component });
|
|
13112
13128
|
}
|
|
13113
13129
|
static {
|
|
13114
|
-
this.ɵcmp = i0162.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.3", type: _EclNotificationComponent, selector: "ecl-notification", inputs: { notificationTitle: "notificationTitle", variant: "variant", isVisible: ["isVisible", "isVisible",
|
|
13130
|
+
this.ɵcmp = i0162.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.3", type: _EclNotificationComponent, selector: "ecl-notification", inputs: { notificationTitle: "notificationTitle", variant: "variant", isVisible: ["isVisible", "isVisible", booleanAttribute25], isCloseable: ["isCloseable", "isCloseable", booleanAttribute25] }, outputs: { close: "close" }, host: { properties: { "attr.role": "this.role", "class.ecl-u-d-none": "this.isHidden", "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0162, template: `@if( eclThemeService.isEC$ | async ){
|
|
13115
13131
|
<ecl-icon size="l" class="ecl-notification__icon" [icon]="icon" [ariaHidden]="false" role="img">
|
|
13116
13132
|
<title>{{ icon | titlecase }}</title>
|
|
13117
13133
|
</ecl-icon>
|
|
@@ -13187,10 +13203,10 @@ i0162.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
13187
13203
|
type: Input72
|
|
13188
13204
|
}], isVisible: [{
|
|
13189
13205
|
type: Input72,
|
|
13190
|
-
args: [{ transform:
|
|
13206
|
+
args: [{ transform: booleanAttribute25 }]
|
|
13191
13207
|
}], isCloseable: [{
|
|
13192
13208
|
type: Input72,
|
|
13193
|
-
args: [{ transform:
|
|
13209
|
+
args: [{ transform: booleanAttribute25 }]
|
|
13194
13210
|
}], close: [{
|
|
13195
13211
|
type: Output36
|
|
13196
13212
|
}], role: [{
|
|
@@ -13229,7 +13245,7 @@ i0163.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
13229
13245
|
}] } });
|
|
13230
13246
|
|
|
13231
13247
|
// lib/components/ecl-site-footer/ecl-footer-elements/ecl-site-footer-section.directive.mjs
|
|
13232
|
-
import { __decorate as
|
|
13248
|
+
import { __decorate as __decorate14 } from "tslib";
|
|
13233
13249
|
import { Directive as Directive42, HostBinding as HostBinding113, Input as Input73 } from "@angular/core";
|
|
13234
13250
|
import { coerceBoolean as coerceBoolean12 } from "@eui/base";
|
|
13235
13251
|
import * as i0164 from "@angular/core";
|
|
@@ -13249,16 +13265,16 @@ var EclSiteFooterSectionDirective = class _EclSiteFooterSectionDirective extends
|
|
|
13249
13265
|
this.ɵdir = i0164.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclSiteFooterSectionDirective, selector: "[eclSiteFooterSection]", inputs: { isCondensed: "isCondensed", isSiteInfo: "isSiteInfo", isSplitList: "isSplitList", hasSeparator: "hasSeparator" }, host: { properties: { "class.ecl-site-footer__section": "this.cmpClass", "class.ecl-site-footer__section--condensed": "this.isCondensed", "class.ecl-site-footer__section--site-info": "this.isSiteInfo", "class.ecl-site-footer__section--split-list": "this.isSplitList", "class.ecl-site-footer__section--separator": "this.hasSeparator" } }, usesInheritance: true, ngImport: i0164 });
|
|
13250
13266
|
}
|
|
13251
13267
|
};
|
|
13252
|
-
|
|
13268
|
+
__decorate14([
|
|
13253
13269
|
coerceBoolean12
|
|
13254
13270
|
], EclSiteFooterSectionDirective.prototype, "isCondensed", void 0);
|
|
13255
|
-
|
|
13271
|
+
__decorate14([
|
|
13256
13272
|
coerceBoolean12
|
|
13257
13273
|
], EclSiteFooterSectionDirective.prototype, "isSiteInfo", void 0);
|
|
13258
|
-
|
|
13274
|
+
__decorate14([
|
|
13259
13275
|
coerceBoolean12
|
|
13260
13276
|
], EclSiteFooterSectionDirective.prototype, "isSplitList", void 0);
|
|
13261
|
-
|
|
13277
|
+
__decorate14([
|
|
13262
13278
|
coerceBoolean12
|
|
13263
13279
|
], EclSiteFooterSectionDirective.prototype, "hasSeparator", void 0);
|
|
13264
13280
|
i0164.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0164, type: EclSiteFooterSectionDirective, decorators: [{
|
|
@@ -13292,7 +13308,7 @@ i0164.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
13292
13308
|
}] } });
|
|
13293
13309
|
|
|
13294
13310
|
// lib/components/ecl-site-footer/ecl-footer-elements/ecl-site-footer-title.directive.mjs
|
|
13295
|
-
import { __decorate as
|
|
13311
|
+
import { __decorate as __decorate15 } from "tslib";
|
|
13296
13312
|
import { Directive as Directive43, HostBinding as HostBinding114, Input as Input74 } from "@angular/core";
|
|
13297
13313
|
import { coerceBoolean as coerceBoolean13 } from "@eui/base";
|
|
13298
13314
|
import * as i0165 from "@angular/core";
|
|
@@ -13309,7 +13325,7 @@ var EclSiteFooterTitleDirective = class _EclSiteFooterTitleDirective extends ECL
|
|
|
13309
13325
|
this.ɵdir = i0165.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclSiteFooterTitleDirective, selector: "[eclSiteFooterTitle]", inputs: { isSeparator: "isSeparator" }, host: { properties: { "class.ecl-site-footer__title": "this.cmpClass", "class.ecl-site-footer__title--separator": "this.isSeparator" } }, usesInheritance: true, ngImport: i0165 });
|
|
13310
13326
|
}
|
|
13311
13327
|
};
|
|
13312
|
-
|
|
13328
|
+
__decorate15([
|
|
13313
13329
|
coerceBoolean13
|
|
13314
13330
|
], EclSiteFooterTitleDirective.prototype, "isSeparator", void 0);
|
|
13315
13331
|
i0165.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0165, type: EclSiteFooterTitleDirective, decorators: [{
|
|
@@ -13374,7 +13390,7 @@ i0166.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
13374
13390
|
}] } });
|
|
13375
13391
|
|
|
13376
13392
|
// lib/components/ecl-site-footer/ecl-footer-elements/ecl-site-footer-list.directive.mjs
|
|
13377
|
-
import { __decorate as
|
|
13393
|
+
import { __decorate as __decorate16 } from "tslib";
|
|
13378
13394
|
import { Directive as Directive45, HostBinding as HostBinding116, Input as Input75 } from "@angular/core";
|
|
13379
13395
|
import { coerceBoolean as coerceBoolean14 } from "@eui/base";
|
|
13380
13396
|
import * as i0167 from "@angular/core";
|
|
@@ -13390,10 +13406,10 @@ var EclSiteFooterListDirective = class _EclSiteFooterListDirective extends ECLBa
|
|
|
13390
13406
|
this.ɵdir = i0167.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclSiteFooterListDirective, selector: "[eclSiteFooterList]", inputs: { isInline: "isInline", isColumns: "isColumns" }, host: { properties: { "class.ecl-site-footer__list": "this.cmpClass", "class.ecl-site-footer__list--inline": "this.isInline", "class.ecl-site-footer__list--columns": "this.isColumns" } }, usesInheritance: true, ngImport: i0167 });
|
|
13391
13407
|
}
|
|
13392
13408
|
};
|
|
13393
|
-
|
|
13409
|
+
__decorate16([
|
|
13394
13410
|
coerceBoolean14
|
|
13395
13411
|
], EclSiteFooterListDirective.prototype, "isInline", void 0);
|
|
13396
|
-
|
|
13412
|
+
__decorate16([
|
|
13397
13413
|
coerceBoolean14
|
|
13398
13414
|
], EclSiteFooterListDirective.prototype, "isColumns", void 0);
|
|
13399
13415
|
i0167.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0167, type: EclSiteFooterListDirective, decorators: [{
|
|
@@ -13677,7 +13693,7 @@ i0169.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
13677
13693
|
}] } });
|
|
13678
13694
|
|
|
13679
13695
|
// lib/components/ecl-site-footer/ecl-footer-elements/ec/ecl-site-footer-fixed-content.mjs
|
|
13680
|
-
import { __decorate as
|
|
13696
|
+
import { __decorate as __decorate17 } from "tslib";
|
|
13681
13697
|
import { Component as Component78, Input as Input76 } from "@angular/core";
|
|
13682
13698
|
import { coerceBoolean as coerceBoolean15 } from "@eui/base";
|
|
13683
13699
|
import * as i0170 from "@angular/core";
|
|
@@ -14115,7 +14131,7 @@ var EclSiteFooterFixedContentECComponent = class _EclSiteFooterFixedContentECCom
|
|
|
14115
14131
|
`, dependencies: [{ kind: "directive", type: i32.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i32.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: EclLinkDirective, selector: "[eclLink]", inputs: ["isInverted", "isIconOnly", "isNoVisited", "variant"] }, { kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "directive", type: EclSiteFooterSectionDirective, selector: "[eclSiteFooterSection]", inputs: ["isCondensed", "isSiteInfo", "isSplitList", "hasSeparator"] }, { kind: "directive", type: EclSiteFooterTitleDirective, selector: "[eclSiteFooterTitle]", inputs: ["isSeparator"] }, { kind: "directive", type: EclSiteFooterListDirective, selector: "[eclSiteFooterList]", inputs: ["isInline", "isColumns"] }, { kind: "directive", type: EclSiteFooterLinkDirective, selector: "[eclSiteFooterLink]" }, { kind: "directive", type: EclSiteFooterColumnDirective, selector: "[eclSiteFooterColumn]" }, { kind: "directive", type: EclSiteFooterListItemDirective, selector: "[eclSiteFooterListItem]" }, { kind: "directive", type: EclSiteFooterRowDirective, selector: "[eclSiteFooterRow]" }, { kind: "directive", type: EclSiteFooterTitleLinkDirective, selector: "[eclSiteFooterTitleLink]" }, { kind: "directive", type: EclSiteFooterLogoLinkDirective, selector: "[eclSiteFooterLogoLink]" }, { kind: "directive", type: EclSiteFooterPictureDirective, selector: "picture[eclSiteFooterPicture]" }, { kind: "directive", type: EclSiteFooterLogoImageDirective, selector: "img[eclSiteFooterLogoImage]" }, { kind: "pipe", type: i128.TranslatePipe, name: "translate" }] });
|
|
14116
14132
|
}
|
|
14117
14133
|
};
|
|
14118
|
-
|
|
14134
|
+
__decorate17([
|
|
14119
14135
|
coerceBoolean15
|
|
14120
14136
|
], EclSiteFooterFixedContentECComponent.prototype, "isCore", void 0);
|
|
14121
14137
|
i0170.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0170, type: EclSiteFooterFixedContentECComponent, decorators: [{
|
|
@@ -14550,7 +14566,7 @@ i0170.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
14550
14566
|
}] } });
|
|
14551
14567
|
|
|
14552
14568
|
// lib/components/ecl-site-footer/ecl-footer-elements/eu/ecl-site-footer-fixed-content.mjs
|
|
14553
|
-
import { __decorate as
|
|
14569
|
+
import { __decorate as __decorate18 } from "tslib";
|
|
14554
14570
|
import { Component as Component79, Input as Input77 } from "@angular/core";
|
|
14555
14571
|
import { coerceBoolean as coerceBoolean16 } from "@eui/base";
|
|
14556
14572
|
import * as i0171 from "@angular/core";
|
|
@@ -15233,7 +15249,7 @@ var EclSiteFooterFixedContentEUComponent = class _EclSiteFooterFixedContentEUCom
|
|
|
15233
15249
|
`, dependencies: [{ kind: "directive", type: i33.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i33.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: EclLinkDirective, selector: "[eclLink]", inputs: ["isInverted", "isIconOnly", "isNoVisited", "variant"] }, { kind: "directive", type: EclSiteFooterSectionDirective, selector: "[eclSiteFooterSection]", inputs: ["isCondensed", "isSiteInfo", "isSplitList", "hasSeparator"] }, { kind: "directive", type: EclSiteFooterTitleDirective, selector: "[eclSiteFooterTitle]", inputs: ["isSeparator"] }, { kind: "directive", type: EclSiteFooterListDirective, selector: "[eclSiteFooterList]", inputs: ["isInline", "isColumns"] }, { kind: "directive", type: EclSiteFooterLinkDirective, selector: "[eclSiteFooterLink]" }, { kind: "directive", type: EclSiteFooterColumnDirective, selector: "[eclSiteFooterColumn]" }, { kind: "directive", type: EclSiteFooterListItemDirective, selector: "[eclSiteFooterListItem]" }, { kind: "directive", type: EclSiteFooterRowDirective, selector: "[eclSiteFooterRow]" }, { kind: "directive", type: EclSiteFooterLogoLinkDirective, selector: "[eclSiteFooterLogoLink]" }, { kind: "directive", type: EclSiteFooterPictureDirective, selector: "picture[eclSiteFooterPicture]" }, { kind: "directive", type: EclSiteFooterLogoImageDirective, selector: "img[eclSiteFooterLogoImage]" }, { kind: "pipe", type: i129.TranslatePipe, name: "translate" }] });
|
|
15234
15250
|
}
|
|
15235
15251
|
};
|
|
15236
|
-
|
|
15252
|
+
__decorate18([
|
|
15237
15253
|
coerceBoolean16
|
|
15238
15254
|
], EclSiteFooterFixedContentEUComponent.prototype, "isCore", void 0);
|
|
15239
15255
|
i0171.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0171, type: EclSiteFooterFixedContentEUComponent, decorators: [{
|
|
@@ -15904,7 +15920,7 @@ i0171.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
15904
15920
|
}] } });
|
|
15905
15921
|
|
|
15906
15922
|
// lib/components/ecl-site-footer/ecl-site-footer.component.mjs
|
|
15907
|
-
import { __decorate as
|
|
15923
|
+
import { __decorate as __decorate19 } from "tslib";
|
|
15908
15924
|
import { Component as Component80, HostBinding as HostBinding119, Input as Input78 } from "@angular/core";
|
|
15909
15925
|
import { coerceBoolean as coerceBoolean17 } from "@eui/base";
|
|
15910
15926
|
import * as i0172 from "@angular/core";
|
|
@@ -15941,7 +15957,7 @@ var EclSiteFooterComponent = class _EclSiteFooterComponent extends ECLBaseDirect
|
|
|
15941
15957
|
this.ɵcmp = i0172.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclSiteFooterComponent, selector: "ecl-site-footer", inputs: { isCore: "isCore" }, host: { properties: { "class": "this.cssClasses", "attr.role": "this.role" } }, usesInheritance: true, ngImport: i0172, template: '<div class="ecl-container ecl-site-footer__container">\n <ecl-site-footer-fixed-content-ec\n *ngIf="eclThemeService.isEC$ | async"\n [isCore]="isCore"\n [languageCode]="languageCode"\n [ecLogoLanguageCode]="getLanguageCode()"\n [content]="content">\n </ecl-site-footer-fixed-content-ec>\n\n <ecl-site-footer-fixed-content-eu\n *ngIf="eclThemeService.isEU$ | async"\n [isCore]="isCore"\n [languageCode]="languageCode"\n [ecLogoLanguageCode]="getLanguageCode()"\n [content]="content">\n </ecl-site-footer-fixed-content-eu>\n\n <ng-template #content>\n <ng-content></ng-content>\n </ng-template>\n</div>\n', dependencies: [{ kind: "directive", type: i34.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: EclSiteFooterFixedContentECComponent, selector: "ecl-site-footer-fixed-content-ec", inputs: ["isCore", "languageCode", "ecLogoLanguageCode", "content"] }, { kind: "component", type: EclSiteFooterFixedContentEUComponent, selector: "ecl-site-footer-fixed-content-eu", inputs: ["isCore", "languageCode", "ecLogoLanguageCode", "content"] }, { kind: "pipe", type: i34.AsyncPipe, name: "async" }] });
|
|
15942
15958
|
}
|
|
15943
15959
|
};
|
|
15944
|
-
|
|
15960
|
+
__decorate19([
|
|
15945
15961
|
coerceBoolean17
|
|
15946
15962
|
], EclSiteFooterComponent.prototype, "isCore", void 0);
|
|
15947
15963
|
i0172.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0172, type: EclSiteFooterComponent, decorators: [{
|
|
@@ -16259,7 +16275,7 @@ i0178.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
16259
16275
|
}] } });
|
|
16260
16276
|
|
|
16261
16277
|
// lib/components/ecl-page-header/ecl-page-header.component.mjs
|
|
16262
|
-
import { __decorate as
|
|
16278
|
+
import { __decorate as __decorate20 } from "tslib";
|
|
16263
16279
|
import { Component as Component81, ContentChild as ContentChild22, HostBinding as HostBinding124, Input as Input79 } from "@angular/core";
|
|
16264
16280
|
import { coerceBoolean as coerceBoolean18 } from "@eui/base";
|
|
16265
16281
|
import * as i0179 from "@angular/core";
|
|
@@ -16291,7 +16307,7 @@ var EclPageHeaderComponent = class _EclPageHeaderComponent extends ECLBaseDirect
|
|
|
16291
16307
|
this.ɵcmp = i0179.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclPageHeaderComponent, selector: "ecl-page-header", inputs: { backgroundImage: "backgroundImage", isNegative: "isNegative" }, host: { properties: { "class.ecl-page-header--negative": "this.isNegative", "class": "this.cssClasses" } }, queries: [{ propertyName: "eclBreadcrumbComponent", first: true, predicate: EclBreadcrumbComponent, descendants: true }, { propertyName: "eclBackgroundPicture", first: true, predicate: EclPageHeaderBackgroundPictureDirective, descendants: true }], usesInheritance: true, ngImport: i0179, template: '<div *ngIf="hasBackgroundImage" class="ecl-page-header__background-container" aria-hidden="true">\n <picture eclPageHeaderBackgroundPicture>\n <img eclPageHeaderBackgroundImage [src]="backgroundImage" />\n </picture>\n</div>\n\n<div *ngIf="hasPicture" class="ecl-page-header__background-container" aria-hidden="true">\n <ng-content select="[eclPageHeaderBackgroundPicture]"></ng-content>\n</div>\n\n<div class="ecl-container">\n <ng-container *ngTemplateOutlet="content"> </ng-container>\n</div>\n\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>\n', styles: [":host{display:block}\n"], dependencies: [{ kind: "directive", type: i131.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i131.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: EclPageHeaderBackgroundPictureDirective, selector: "[eclPageHeaderBackgroundPicture]" }, { kind: "directive", type: EclPageHeaderBackgroundImageDirective, selector: "[eclPageHeaderBackgroundImage]" }] });
|
|
16292
16308
|
}
|
|
16293
16309
|
};
|
|
16294
|
-
|
|
16310
|
+
__decorate20([
|
|
16295
16311
|
coerceBoolean18
|
|
16296
16312
|
], EclPageHeaderComponent.prototype, "isNegative", void 0);
|
|
16297
16313
|
i0179.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0179, type: EclPageHeaderComponent, decorators: [{
|
|
@@ -16419,7 +16435,7 @@ i0181.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
16419
16435
|
}] });
|
|
16420
16436
|
|
|
16421
16437
|
// lib/components/ecl-pagination/ecl-pagination-item.component.mjs
|
|
16422
|
-
import { __decorate as
|
|
16438
|
+
import { __decorate as __decorate21 } from "tslib";
|
|
16423
16439
|
import { Component as Component83, EventEmitter as EventEmitter37, HostBinding as HostBinding126, Input as Input80, Output as Output37, ViewEncapsulation as ViewEncapsulation11 } from "@angular/core";
|
|
16424
16440
|
import { coerceBoolean as coerceBoolean19 } from "@eui/base";
|
|
16425
16441
|
import * as i0182 from "@angular/core";
|
|
@@ -16510,13 +16526,13 @@ var EclPaginationItemComponent = class _EclPaginationItemComponent extends ECLBa
|
|
|
16510
16526
|
}`, dependencies: [{ kind: "directive", type: i133.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i214.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "directive", type: EclLinkDirective, selector: "[eclLink]", inputs: ["isInverted", "isIconOnly", "isNoVisited", "variant"] }, { kind: "directive", type: EclLinkLabelDirective, selector: "[eclLinkLabel]" }, { kind: "pipe", type: i62.TranslatePipe, name: "translate" }], encapsulation: i0182.ViewEncapsulation.None });
|
|
16511
16527
|
}
|
|
16512
16528
|
};
|
|
16513
|
-
|
|
16529
|
+
__decorate21([
|
|
16514
16530
|
coerceBoolean19
|
|
16515
16531
|
], EclPaginationItemComponent.prototype, "isCurrent", void 0);
|
|
16516
|
-
|
|
16532
|
+
__decorate21([
|
|
16517
16533
|
coerceBoolean19
|
|
16518
16534
|
], EclPaginationItemComponent.prototype, "isNext", void 0);
|
|
16519
|
-
|
|
16535
|
+
__decorate21([
|
|
16520
16536
|
coerceBoolean19
|
|
16521
16537
|
], EclPaginationItemComponent.prototype, "isPrevious", void 0);
|
|
16522
16538
|
i0182.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0182, type: EclPaginationItemComponent, decorators: [{
|
|
@@ -16583,10 +16599,10 @@ i0182.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
16583
16599
|
}] } });
|
|
16584
16600
|
|
|
16585
16601
|
// lib/components/ecl-pagination/ecl-pagination.component.mjs
|
|
16586
|
-
import { __decorate as
|
|
16602
|
+
import { __decorate as __decorate22 } from "tslib";
|
|
16587
16603
|
import { Component as Component84, EventEmitter as EventEmitter38, HostBinding as HostBinding127, Input as Input81, Output as Output38 } from "@angular/core";
|
|
16588
16604
|
import { DefaultConfig, EuiPagination } from "@eui/base";
|
|
16589
|
-
import { coerceNumber
|
|
16605
|
+
import { coerceNumber } from "@eui/base";
|
|
16590
16606
|
import * as i0183 from "@angular/core";
|
|
16591
16607
|
import * as i134 from "@angular/common";
|
|
16592
16608
|
var EclPaginationEvent = class extends EclBaseEvent {
|
|
@@ -16653,17 +16669,17 @@ var EclPaginationComponent = class _EclPaginationComponent extends ECLBaseDirect
|
|
|
16653
16669
|
this.ɵcmp = i0183.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclPaginationComponent, selector: "ecl-pagination", inputs: { mode: "mode", totalItems: "totalItems", pageSize: "pageSize", currentPage: "currentPage", pageWindowSize: "pageWindowSize" }, outputs: { page: "page" }, host: { properties: { "class.ecl-pagination": "this.cmpClass", "attr.role": "this.role" } }, usesInheritance: true, usesOnChanges: true, ngImport: i0183, template: '<ul class="ecl-pagination__list">\n <ng-container *ngIf="isModeAuto()">\n <ecl-pagination-item *ngIf="model.hasPreviousPage()" [isPrevious]="true" (pageClick)="onPreviousPage()"> </ecl-pagination-item>\n\n <ecl-pagination-item\n *ngFor="let page of model.getPages()"\n [label]="page.toString()"\n [isCurrent]="model.getCurrentPage() === page"\n (pageClick)="onPage(page)">\n </ecl-pagination-item>\n\n <ecl-pagination-item *ngIf="model.hasNextPage()" [isNext]="true" (pageClick)="onNextPage()"> </ecl-pagination-item>\n </ng-container>\n\n <ng-container *ngIf="!isModeAuto()">\n <ng-content></ng-content>\n </ng-container>\n</ul>\n', styles: [":host{display:block}\n"], dependencies: [{ kind: "directive", type: i134.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i134.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: EclPaginationItemComponent, selector: "ecl-pagination-item", inputs: ["label", "ariaLabel", "isCurrent", "isNext", "isPrevious", "routerLink", "queryParams", "queryParamsHandling", "href"], outputs: ["pageClick"] }] });
|
|
16654
16670
|
}
|
|
16655
16671
|
};
|
|
16656
|
-
|
|
16657
|
-
|
|
16672
|
+
__decorate22([
|
|
16673
|
+
coerceNumber
|
|
16658
16674
|
], EclPaginationComponent.prototype, "totalItems", void 0);
|
|
16659
|
-
|
|
16660
|
-
|
|
16675
|
+
__decorate22([
|
|
16676
|
+
coerceNumber
|
|
16661
16677
|
], EclPaginationComponent.prototype, "pageSize", void 0);
|
|
16662
|
-
|
|
16663
|
-
|
|
16678
|
+
__decorate22([
|
|
16679
|
+
coerceNumber
|
|
16664
16680
|
], EclPaginationComponent.prototype, "currentPage", void 0);
|
|
16665
|
-
|
|
16666
|
-
|
|
16681
|
+
__decorate22([
|
|
16682
|
+
coerceNumber
|
|
16667
16683
|
], EclPaginationComponent.prototype, "pageWindowSize", void 0);
|
|
16668
16684
|
i0183.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0183, type: EclPaginationComponent, decorators: [{
|
|
16669
16685
|
type: Component84,
|
|
@@ -17045,7 +17061,7 @@ i0188.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
17045
17061
|
}] });
|
|
17046
17062
|
|
|
17047
17063
|
// lib/components/ecl-radio/ecl-radio-help.component.mjs
|
|
17048
|
-
import { __decorate as
|
|
17064
|
+
import { __decorate as __decorate23 } from "tslib";
|
|
17049
17065
|
import { Component as Component86, HostBinding as HostBinding131, Input as Input82 } from "@angular/core";
|
|
17050
17066
|
import { coerceBoolean as coerceBoolean20 } from "@eui/base";
|
|
17051
17067
|
import * as i0189 from "@angular/core";
|
|
@@ -17064,7 +17080,7 @@ var EclRadioHelpComponent = class _EclRadioHelpComponent extends ECLBaseDirectiv
|
|
|
17064
17080
|
this.ɵcmp = i0189.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclRadioHelpComponent, selector: "[eclRadioHelp]", inputs: { isDisabled: "isDisabled" }, host: { properties: { "class.ecl-radio__help--disabled": "this.isDisabled", "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0189, template: "<ng-content></ng-content>\n" });
|
|
17065
17081
|
}
|
|
17066
17082
|
};
|
|
17067
|
-
|
|
17083
|
+
__decorate23([
|
|
17068
17084
|
coerceBoolean20
|
|
17069
17085
|
], EclRadioHelpComponent.prototype, "isDisabled", void 0);
|
|
17070
17086
|
i0189.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0189, type: EclRadioHelpComponent, decorators: [{
|
|
@@ -17081,7 +17097,7 @@ i0189.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
17081
17097
|
}] } });
|
|
17082
17098
|
|
|
17083
17099
|
// lib/components/ecl-radio/ecl-radio-label.component.mjs
|
|
17084
|
-
import { __decorate as
|
|
17100
|
+
import { __decorate as __decorate24 } from "tslib";
|
|
17085
17101
|
import { Component as Component87, HostBinding as HostBinding132, Input as Input83, ViewEncapsulation as ViewEncapsulation13 } from "@angular/core";
|
|
17086
17102
|
import { coerceBoolean as coerceBoolean21 } from "@eui/base";
|
|
17087
17103
|
import * as i0190 from "@angular/core";
|
|
@@ -17101,10 +17117,10 @@ var EclRadioLabelComponent = class _EclRadioLabelComponent extends ECLBaseDirect
|
|
|
17101
17117
|
this.ɵcmp = i0190.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclRadioLabelComponent, selector: "[eclRadioLabel]", inputs: { isInvalid: "isInvalid", isDisabled: "isDisabled" }, host: { properties: { "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0190, template: '<span class="ecl-radio__box" [class.ecl-radio__box--disabled]="isDisabled" [class.ecl-radio__box--invalid]="isInvalid">\n <span class="ecl-radio__box-inner"></span>\n</span>\n\n<ng-content></ng-content>\n', encapsulation: i0190.ViewEncapsulation.None });
|
|
17102
17118
|
}
|
|
17103
17119
|
};
|
|
17104
|
-
|
|
17120
|
+
__decorate24([
|
|
17105
17121
|
coerceBoolean21
|
|
17106
17122
|
], EclRadioLabelComponent.prototype, "isInvalid", void 0);
|
|
17107
|
-
|
|
17123
|
+
__decorate24([
|
|
17108
17124
|
coerceBoolean21
|
|
17109
17125
|
], EclRadioLabelComponent.prototype, "isDisabled", void 0);
|
|
17110
17126
|
i0190.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0190, type: EclRadioLabelComponent, decorators: [{
|
|
@@ -17120,8 +17136,8 @@ i0190.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
17120
17136
|
}] } });
|
|
17121
17137
|
|
|
17122
17138
|
// lib/components/ecl-radio/ecl-radio.directive.mjs
|
|
17123
|
-
import { __decorate as
|
|
17124
|
-
import { ContentChild as ContentChild25, Directive as Directive54, forwardRef as
|
|
17139
|
+
import { __decorate as __decorate25 } from "tslib";
|
|
17140
|
+
import { ContentChild as ContentChild25, Directive as Directive54, forwardRef as forwardRef50, HostBinding as HostBinding133, Input as Input84 } from "@angular/core";
|
|
17125
17141
|
import { coerceBoolean as coerceBoolean22 } from "@eui/base";
|
|
17126
17142
|
import * as i0191 from "@angular/core";
|
|
17127
17143
|
var EclRadioDirective = class _EclRadioDirective extends ECLBaseDirective {
|
|
@@ -17152,13 +17168,13 @@ var EclRadioDirective = class _EclRadioDirective extends ECLBaseDirective {
|
|
|
17152
17168
|
this.ɵdir = i0191.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclRadioDirective, selector: "[eclRadio]", inputs: { isBinary: "isBinary", isDisabled: "isDisabled", isInvalid: "isInvalid" }, host: { properties: { "class.ecl-radio--disabled": "this.isDisabled", "class.ecl-radio--invalid": "this.isInvalid", "class": "this.cssClasses" } }, queries: [{ propertyName: "eclRadioLabelComponent", first: true, predicate: i0191.forwardRef(() => EclRadioLabelComponent), descendants: true }, { propertyName: "eclRadioHelpComponent", first: true, predicate: i0191.forwardRef(() => EclRadioHelpComponent), descendants: true }], usesInheritance: true, ngImport: i0191 });
|
|
17153
17169
|
}
|
|
17154
17170
|
};
|
|
17155
|
-
|
|
17171
|
+
__decorate25([
|
|
17156
17172
|
coerceBoolean22
|
|
17157
17173
|
], EclRadioDirective.prototype, "isBinary", void 0);
|
|
17158
|
-
|
|
17174
|
+
__decorate25([
|
|
17159
17175
|
coerceBoolean22
|
|
17160
17176
|
], EclRadioDirective.prototype, "isDisabled", void 0);
|
|
17161
|
-
|
|
17177
|
+
__decorate25([
|
|
17162
17178
|
coerceBoolean22
|
|
17163
17179
|
], EclRadioDirective.prototype, "isInvalid", void 0);
|
|
17164
17180
|
i0191.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0191, type: EclRadioDirective, decorators: [{
|
|
@@ -17180,17 +17196,17 @@ i0191.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
17180
17196
|
args: ["class.ecl-radio--invalid"]
|
|
17181
17197
|
}], eclRadioLabelComponent: [{
|
|
17182
17198
|
type: ContentChild25,
|
|
17183
|
-
args: [
|
|
17199
|
+
args: [forwardRef50(() => EclRadioLabelComponent)]
|
|
17184
17200
|
}], eclRadioHelpComponent: [{
|
|
17185
17201
|
type: ContentChild25,
|
|
17186
|
-
args: [
|
|
17202
|
+
args: [forwardRef50(() => EclRadioHelpComponent)]
|
|
17187
17203
|
}], cssClasses: [{
|
|
17188
17204
|
type: HostBinding133,
|
|
17189
17205
|
args: ["class"]
|
|
17190
17206
|
}] } });
|
|
17191
17207
|
|
|
17192
17208
|
// lib/components/ecl-radio/ecl-radio-input.directive.mjs
|
|
17193
|
-
import { Directive as Directive55, HostBinding as HostBinding134, Optional as Optional6, Self as Self4, Inject as Inject5, forwardRef as
|
|
17209
|
+
import { Directive as Directive55, HostBinding as HostBinding134, Optional as Optional6, Self as Self4, Inject as Inject5, forwardRef as forwardRef52 } from "@angular/core";
|
|
17194
17210
|
import * as i0192 from "@angular/core";
|
|
17195
17211
|
import * as i135 from "@angular/forms";
|
|
17196
17212
|
var EclRadioInputDirective = class _EclRadioInputDirective extends ECLBaseDirective {
|
|
@@ -17212,7 +17228,7 @@ var EclRadioInputDirective = class _EclRadioInputDirective extends ECLBaseDirect
|
|
|
17212
17228
|
}
|
|
17213
17229
|
}
|
|
17214
17230
|
static {
|
|
17215
|
-
this.ɵfac = i0192.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0192, type: _EclRadioInputDirective, deps: [{ token:
|
|
17231
|
+
this.ɵfac = i0192.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0192, type: _EclRadioInputDirective, deps: [{ token: forwardRef52(() => EclRadioDirective) }, { token: i135.NgControl, optional: true, self: true }, { token: i0192.ChangeDetectorRef }], target: i0192.ɵɵFactoryTarget.Directive });
|
|
17216
17232
|
}
|
|
17217
17233
|
static {
|
|
17218
17234
|
this.ɵdir = i0192.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclRadioInputDirective, selector: "input[eclRadioInput]", host: { properties: { "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0192 });
|
|
@@ -17225,7 +17241,7 @@ i0192.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
17225
17241
|
}]
|
|
17226
17242
|
}], ctorParameters: () => [{ type: EclRadioDirective, decorators: [{
|
|
17227
17243
|
type: Inject5,
|
|
17228
|
-
args: [
|
|
17244
|
+
args: [forwardRef52(() => EclRadioDirective)]
|
|
17229
17245
|
}] }, { type: i135.NgControl, decorators: [{
|
|
17230
17246
|
type: Optional6
|
|
17231
17247
|
}, {
|
|
@@ -17260,10 +17276,10 @@ i0193.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
17260
17276
|
}] });
|
|
17261
17277
|
|
|
17262
17278
|
// lib/components/ecl-rating-field/ecl-rating-field.component.mjs
|
|
17263
|
-
import { __decorate as
|
|
17264
|
-
import { Component as Component88, EventEmitter as EventEmitter40, forwardRef as
|
|
17279
|
+
import { __decorate as __decorate26 } from "tslib";
|
|
17280
|
+
import { Component as Component88, EventEmitter as EventEmitter40, forwardRef as forwardRef53, HostBinding as HostBinding135, Input as Input85, Output as Output40 } from "@angular/core";
|
|
17265
17281
|
import { NG_VALUE_ACCESSOR as NG_VALUE_ACCESSOR6 } from "@angular/forms";
|
|
17266
|
-
import { coerceBoolean as coerceBoolean23, coerceNumber as
|
|
17282
|
+
import { coerceBoolean as coerceBoolean23, coerceNumber as coerceNumber2 } from "@eui/base";
|
|
17267
17283
|
import * as i0194 from "@angular/core";
|
|
17268
17284
|
import * as i136 from "@angular/common";
|
|
17269
17285
|
var EclRatingChangeEvent = class extends EclBaseEvent {
|
|
@@ -17274,7 +17290,7 @@ var EclRatingChangeEvent = class extends EclBaseEvent {
|
|
|
17274
17290
|
};
|
|
17275
17291
|
var ECL_RATINGFIELD_VALUE_ACCESSOR = {
|
|
17276
17292
|
provide: NG_VALUE_ACCESSOR6,
|
|
17277
|
-
useExisting:
|
|
17293
|
+
useExisting: forwardRef53(() => EclRatingFieldComponent),
|
|
17278
17294
|
multi: true
|
|
17279
17295
|
};
|
|
17280
17296
|
var noop4 = () => {
|
|
@@ -17322,13 +17338,13 @@ var EclRatingFieldComponent = class _EclRatingFieldComponent extends ECLBaseDire
|
|
|
17322
17338
|
this.ɵcmp = i0194.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclRatingFieldComponent, selector: "ecl-rating-field", inputs: { name: "name", numberOfStars: "numberOfStars", rating: "rating", disabled: "disabled" }, outputs: { ratingChange: "ratingChange" }, host: { properties: { "attr.disabled": "this.disabled", "class": "this.cssClasses" } }, providers: [ECL_RATINGFIELD_VALUE_ACCESSOR], usesInheritance: true, ngImport: i0194, template: '<ng-container *ngFor="let n of numbers">\n <input\n type="radio"\n id="{{ name }}-{{ n }}"\n [name]="name"\n class="ecl-rating-field__input"\n [value]="n"\n required=""\n [attr.checked]="rating === n ? true : undefined"\n [attr.disabled]="disabled ? true : undefined"\n (click)="onRadioClick(n)" />\n <label class="ecl-rating-field__label" for="{{ name }}-{{ n }}">\n <span class="ecl-u-sr-only">{{ n }} stars</span>\n <ecl-icon icon="star-filled" class="ecl-rating-field__icon-filled" size="m"> </ecl-icon>\n <ecl-icon icon="star-outline" class="ecl-rating-field__icon-outline" size="m"> </ecl-icon>\n </label>\n</ng-container>\n', dependencies: [{ kind: "directive", type: i136.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }] });
|
|
17323
17339
|
}
|
|
17324
17340
|
};
|
|
17325
|
-
|
|
17326
|
-
|
|
17341
|
+
__decorate26([
|
|
17342
|
+
coerceNumber2
|
|
17327
17343
|
], EclRatingFieldComponent.prototype, "numberOfStars", void 0);
|
|
17328
|
-
|
|
17329
|
-
|
|
17344
|
+
__decorate26([
|
|
17345
|
+
coerceNumber2
|
|
17330
17346
|
], EclRatingFieldComponent.prototype, "rating", void 0);
|
|
17331
|
-
|
|
17347
|
+
__decorate26([
|
|
17332
17348
|
coerceBoolean23
|
|
17333
17349
|
], EclRatingFieldComponent.prototype, "disabled", void 0);
|
|
17334
17350
|
i0194.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0194, type: EclRatingFieldComponent, decorators: [{
|
|
@@ -17413,7 +17429,7 @@ i0196.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
17413
17429
|
}] } });
|
|
17414
17430
|
|
|
17415
17431
|
// lib/components/ecl-range/ecl-range.directive.mjs
|
|
17416
|
-
import { __decorate as
|
|
17432
|
+
import { __decorate as __decorate27 } from "tslib";
|
|
17417
17433
|
import { Directive as Directive56, EventEmitter as EventEmitter41, HostBinding as HostBinding137, HostListener as HostListener21, Input as Input87, Optional as Optional7, Output as Output41, Self as Self5 } from "@angular/core";
|
|
17418
17434
|
import { coerceBoolean as coerceBoolean24 } from "@eui/base";
|
|
17419
17435
|
import { distinctUntilChanged } from "rxjs";
|
|
@@ -17473,7 +17489,7 @@ var EclRangeDirective = class _EclRangeDirective extends ECLBaseDirective {
|
|
|
17473
17489
|
this.ɵdir = i0197.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclRangeDirective, selector: "input[eclRange]", inputs: { eclSize: "eclSize", value: "value", hasValueLabel: "hasValueLabel" }, outputs: { rangeChange: "rangeChange" }, host: { listeners: { "input": "onInput($event)" }, properties: { "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0197 });
|
|
17474
17490
|
}
|
|
17475
17491
|
};
|
|
17476
|
-
|
|
17492
|
+
__decorate27([
|
|
17477
17493
|
coerceBoolean24
|
|
17478
17494
|
], EclRangeDirective.prototype, "hasValueLabel", void 0);
|
|
17479
17495
|
i0197.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0197, type: EclRangeDirective, decorators: [{
|
|
@@ -17565,7 +17581,7 @@ i0199.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
17565
17581
|
}] } });
|
|
17566
17582
|
|
|
17567
17583
|
// lib/components/ecl-select/ecl-select.directive.mjs
|
|
17568
|
-
import { __decorate as
|
|
17584
|
+
import { __decorate as __decorate28 } from "tslib";
|
|
17569
17585
|
import { Directive as Directive57, HostBinding as HostBinding139, Input as Input89, Optional as Optional8, Self as Self6 } from "@angular/core";
|
|
17570
17586
|
import { coerceBoolean as coerceBoolean25 } from "@eui/base";
|
|
17571
17587
|
import * as i0200 from "@angular/core";
|
|
@@ -17617,10 +17633,10 @@ var EclSelectDirective = class _EclSelectDirective extends ECLBaseDirective {
|
|
|
17617
17633
|
this.ɵdir = i0200.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclSelectDirective, selector: "select[eclSelect]", inputs: { disabled: "disabled", isInvalid: "isInvalid", eclSize: "eclSize" }, host: { properties: { "attr.disabled": "this.isDisabled", "class": "this.cssClasses", "class.ecl-select--invalid": "this.isInvalidState" } }, usesInheritance: true, ngImport: i0200 });
|
|
17618
17634
|
}
|
|
17619
17635
|
};
|
|
17620
|
-
|
|
17636
|
+
__decorate28([
|
|
17621
17637
|
coerceBoolean25
|
|
17622
17638
|
], EclSelectDirective.prototype, "disabled", void 0);
|
|
17623
|
-
|
|
17639
|
+
__decorate28([
|
|
17624
17640
|
coerceBoolean25
|
|
17625
17641
|
], EclSelectDirective.prototype, "isInvalid", void 0);
|
|
17626
17642
|
i0200.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0200, type: EclSelectDirective, decorators: [{
|
|
@@ -17678,7 +17694,7 @@ i0201.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
17678
17694
|
}] });
|
|
17679
17695
|
|
|
17680
17696
|
// lib/components/ecl-social-media-follow/ecl-social-media-follow.component.mjs
|
|
17681
|
-
import { Component as Component91, HostBinding as HostBinding140, Input as Input90, booleanAttribute as
|
|
17697
|
+
import { Component as Component91, HostBinding as HostBinding140, Input as Input90, booleanAttribute as booleanAttribute26 } from "@angular/core";
|
|
17682
17698
|
import * as i0202 from "@angular/core";
|
|
17683
17699
|
import * as i140 from "@angular/common";
|
|
17684
17700
|
var EclSocialMediaFollowComponent = class _EclSocialMediaFollowComponent extends ECLBaseDirective {
|
|
@@ -17693,7 +17709,7 @@ var EclSocialMediaFollowComponent = class _EclSocialMediaFollowComponent extends
|
|
|
17693
17709
|
this.ɵfac = i0202.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0202, type: _EclSocialMediaFollowComponent, deps: null, target: i0202.ɵɵFactoryTarget.Component });
|
|
17694
17710
|
}
|
|
17695
17711
|
static {
|
|
17696
|
-
this.ɵcmp = i0202.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.0-next.3", type: _EclSocialMediaFollowComponent, selector: "ecl-social-media-follow", inputs: { description: "description", isVertical: ["isVertical", "isVertical",
|
|
17712
|
+
this.ɵcmp = i0202.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.0-next.3", type: _EclSocialMediaFollowComponent, selector: "ecl-social-media-follow", inputs: { description: "description", isVertical: ["isVertical", "isVertical", booleanAttribute26] }, host: { properties: { "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0202, template: '<p *ngIf="description" class="ecl-social-media-follow__description">{{ description }}</p>\n<ul class="ecl-social-media-follow__list">\n <ng-content></ng-content>\n</ul>\n', styles: [":host{display:block}\n"], dependencies: [{ kind: "directive", type: i140.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
|
|
17697
17713
|
}
|
|
17698
17714
|
};
|
|
17699
17715
|
i0202.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0202, type: EclSocialMediaFollowComponent, decorators: [{
|
|
@@ -17703,7 +17719,7 @@ i0202.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
17703
17719
|
type: Input90
|
|
17704
17720
|
}], isVertical: [{
|
|
17705
17721
|
type: Input90,
|
|
17706
|
-
args: [{ transform:
|
|
17722
|
+
args: [{ transform: booleanAttribute26 }]
|
|
17707
17723
|
}], cssClasses: [{
|
|
17708
17724
|
type: HostBinding140,
|
|
17709
17725
|
args: ["class"]
|
|
@@ -17826,7 +17842,7 @@ i0205.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
17826
17842
|
}] });
|
|
17827
17843
|
|
|
17828
17844
|
// lib/components/ecl-social-media-share/ecl-social-media-share.component.mjs
|
|
17829
|
-
import { __decorate as
|
|
17845
|
+
import { __decorate as __decorate29 } from "tslib";
|
|
17830
17846
|
import { Component as Component93, HostBinding as HostBinding143, Input as Input92 } from "@angular/core";
|
|
17831
17847
|
import { coerceBoolean as coerceBoolean26 } from "@eui/base";
|
|
17832
17848
|
import * as i0206 from "@angular/core";
|
|
@@ -17845,7 +17861,7 @@ var EclSocialMediaShareComponent = class _EclSocialMediaShareComponent extends E
|
|
|
17845
17861
|
this.ɵcmp = i0206.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclSocialMediaShareComponent, selector: "ecl-social-media-share", inputs: { description: "description", isVertical: "isVertical" }, host: { properties: { "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0206, template: '<p class="ecl-social-media-share__description">{{ description }}</p>\n<ul class="ecl-social-media-share__list">\n <ng-content></ng-content>\n</ul>\n', styles: [":host{display:block}\n"] });
|
|
17846
17862
|
}
|
|
17847
17863
|
};
|
|
17848
|
-
|
|
17864
|
+
__decorate29([
|
|
17849
17865
|
coerceBoolean26
|
|
17850
17866
|
], EclSocialMediaShareComponent.prototype, "isVertical", void 0);
|
|
17851
17867
|
i0206.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0206, type: EclSocialMediaShareComponent, decorators: [{
|
|
@@ -17972,7 +17988,7 @@ i0209.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
17972
17988
|
}] });
|
|
17973
17989
|
|
|
17974
17990
|
// lib/components/ecl-loading-indicator/ecl-loading-indicator.component.mjs
|
|
17975
|
-
import { Component as Component95, HostBinding as HostBinding146, Input as Input94, booleanAttribute as
|
|
17991
|
+
import { Component as Component95, HostBinding as HostBinding146, Input as Input94, booleanAttribute as booleanAttribute27 } from "@angular/core";
|
|
17976
17992
|
import * as i0210 from "@angular/core";
|
|
17977
17993
|
var EclLoadingIndicatorComponent = class _EclLoadingIndicatorComponent extends ECLBaseDirective {
|
|
17978
17994
|
constructor() {
|
|
@@ -17995,7 +18011,7 @@ var EclLoadingIndicatorComponent = class _EclLoadingIndicatorComponent extends E
|
|
|
17995
18011
|
this.ɵfac = i0210.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0210, type: _EclLoadingIndicatorComponent, deps: null, target: i0210.ɵɵFactoryTarget.Component });
|
|
17996
18012
|
}
|
|
17997
18013
|
static {
|
|
17998
|
-
this.ɵcmp = i0210.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.0-next.3", type: _EclLoadingIndicatorComponent, selector: "ecl-loading-indicator", inputs: { size: "size", variant: "variant", isCentered: ["isCentered", "isCentered",
|
|
18014
|
+
this.ɵcmp = i0210.ɵɵngDeclareComponent({ minVersion: "16.1.0", version: "18.0.0-next.3", type: _EclLoadingIndicatorComponent, selector: "ecl-loading-indicator", inputs: { size: "size", variant: "variant", isCentered: ["isCentered", "isCentered", booleanAttribute27], isVisible: ["isVisible", "isVisible", booleanAttribute27] }, host: { properties: { "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0210, template: '<svg class="ecl-spinner__loader" viewBox="25 25 50 50">\n <circle\n class="ecl-spinner__circle"\n cx="50"\n cy="50"\n r="20"\n fill="none"\n stroke-width="4px"\n stroke-miterlimit="10"\n vector-effect="non-scaling-stroke"></circle>\n</svg>\n<ng-content></ng-content>\n' });
|
|
17999
18015
|
}
|
|
18000
18016
|
};
|
|
18001
18017
|
i0210.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0210, type: EclLoadingIndicatorComponent, decorators: [{
|
|
@@ -18010,10 +18026,10 @@ i0210.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
18010
18026
|
type: Input94
|
|
18011
18027
|
}], isCentered: [{
|
|
18012
18028
|
type: Input94,
|
|
18013
|
-
args: [{ transform:
|
|
18029
|
+
args: [{ transform: booleanAttribute27 }]
|
|
18014
18030
|
}], isVisible: [{
|
|
18015
18031
|
type: Input94,
|
|
18016
|
-
args: [{ transform:
|
|
18032
|
+
args: [{ transform: booleanAttribute27 }]
|
|
18017
18033
|
}] } });
|
|
18018
18034
|
|
|
18019
18035
|
// lib/components/ecl-loading-indicator/ecl-loading-indicator-label.directive.mjs
|
|
@@ -18125,7 +18141,7 @@ i0214.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
18125
18141
|
}] } });
|
|
18126
18142
|
|
|
18127
18143
|
// lib/components/ecl-table/ecl-table.directive.mjs
|
|
18128
|
-
import { ContentChildren as
|
|
18144
|
+
import { ContentChildren as ContentChildren26, Directive as Directive62, EventEmitter as EventEmitter44, forwardRef as forwardRef54, HostBinding as HostBinding150, HostListener as HostListener22, Input as Input95, Output as Output44, booleanAttribute as booleanAttribute28 } from "@angular/core";
|
|
18129
18145
|
import { Subject as Subject27 } from "rxjs";
|
|
18130
18146
|
import { takeUntil as takeUntil24 } from "rxjs/operators";
|
|
18131
18147
|
import * as i0215 from "@angular/core";
|
|
@@ -18171,7 +18187,7 @@ var EclTableDirective = class _EclTableDirective extends ECLBaseDirective {
|
|
|
18171
18187
|
this.ɵfac = i0215.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0215, type: _EclTableDirective, deps: [{ token: i0215.IterableDiffers }], target: i0215.ɵɵFactoryTarget.Directive });
|
|
18172
18188
|
}
|
|
18173
18189
|
static {
|
|
18174
|
-
this.ɵdir = i0215.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.0.0-next.3", type: _EclTableDirective, selector: "[eclTable]", inputs: { isZebra: ["isZebra", "isZebra",
|
|
18190
|
+
this.ɵdir = i0215.ɵɵngDeclareDirective({ minVersion: "16.1.0", version: "18.0.0-next.3", type: _EclTableDirective, selector: "[eclTable]", inputs: { isZebra: ["isZebra", "isZebra", booleanAttribute28] }, outputs: { sort: "sort" }, host: { properties: { "class.ecl-table--zebra": "this.isZebra", "class": "this.cssClasses" } }, queries: [{ propertyName: "eclTableHeaders", predicate: i0215.forwardRef(() => EclTableHeaderDirective), descendants: true }], usesInheritance: true, ngImport: i0215 });
|
|
18175
18191
|
}
|
|
18176
18192
|
};
|
|
18177
18193
|
i0215.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0215, type: EclTableDirective, decorators: [{
|
|
@@ -18181,7 +18197,7 @@ i0215.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
18181
18197
|
}]
|
|
18182
18198
|
}], ctorParameters: () => [{ type: i0215.IterableDiffers }], propDecorators: { isZebra: [{
|
|
18183
18199
|
type: Input95,
|
|
18184
|
-
args: [{ transform:
|
|
18200
|
+
args: [{ transform: booleanAttribute28 }]
|
|
18185
18201
|
}, {
|
|
18186
18202
|
type: HostBinding150,
|
|
18187
18203
|
args: ["class.ecl-table--zebra"]
|
|
@@ -18191,8 +18207,8 @@ i0215.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
18191
18207
|
}], sort: [{
|
|
18192
18208
|
type: Output44
|
|
18193
18209
|
}], eclTableHeaders: [{
|
|
18194
|
-
type:
|
|
18195
|
-
args: [
|
|
18210
|
+
type: ContentChildren26,
|
|
18211
|
+
args: [forwardRef54(() => EclTableHeaderDirective), { descendants: true }]
|
|
18196
18212
|
}] } });
|
|
18197
18213
|
var EclTableHeadDirective = class _EclTableHeadDirective extends ECLBaseDirective {
|
|
18198
18214
|
get cssClasses() {
|
|
@@ -18236,8 +18252,8 @@ i0215.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
18236
18252
|
type: HostBinding150,
|
|
18237
18253
|
args: ["class"]
|
|
18238
18254
|
}], eclTableHeaders: [{
|
|
18239
|
-
type:
|
|
18240
|
-
args: [
|
|
18255
|
+
type: ContentChildren26,
|
|
18256
|
+
args: [forwardRef54(() => EclTableHeaderDirective), { descendants: true }]
|
|
18241
18257
|
}] } });
|
|
18242
18258
|
var EclTableHeaderDirective = class _EclTableHeaderDirective extends ECLBaseDirective {
|
|
18243
18259
|
get cssClasses() {
|
|
@@ -18517,7 +18533,7 @@ i0217.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
18517
18533
|
}], ctorParameters: () => [{ type: i0217.ElementRef }] });
|
|
18518
18534
|
|
|
18519
18535
|
// lib/components/ecl-tabs/ecl-tab.component.mjs
|
|
18520
|
-
import { __decorate as
|
|
18536
|
+
import { __decorate as __decorate30 } from "tslib";
|
|
18521
18537
|
import { Component as Component98, ContentChild as ContentChild28, EventEmitter as EventEmitter45, HostBinding as HostBinding151, Input as Input96, Output as Output45, ViewChild as ViewChild16 } from "@angular/core";
|
|
18522
18538
|
import { coerceBoolean as coerceBoolean27 } from "@eui/base";
|
|
18523
18539
|
import * as i0218 from "@angular/core";
|
|
@@ -18577,10 +18593,10 @@ var EclTabComponent = class _EclTabComponent extends ECLBaseDirective {
|
|
|
18577
18593
|
this.ɵcmp = i0218.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclTabComponent, selector: "ecl-tab, li[eclTab]", inputs: { id: "id", isHidden: "isHidden", isActive: "isActive" }, outputs: { selectTab: "selectTab", keydownTab: "keydownTab" }, host: { properties: { "attr.aria-hidden": "this.isHidden", "attr.role": "this.role", "class": "this.cssClasses" } }, queries: [{ propertyName: "label", first: true, predicate: EclTabLabelComponent, descendants: true }], viewQueries: [{ propertyName: "contentTemplate", first: true, predicate: ["content"], descendants: true }, { propertyName: "link", first: true, predicate: EclLinkDirective, descendants: true }], usesInheritance: true, ngImport: i0218, template: '<a\n eclLink\n role="tab"\n class="ecl-tabs__link"\n [class.ecl-tabs__link--active]="isActive"\n [attr.aria-selected]="isActive"\n tabindex="0"\n (keydown)="onKeydown($event)"\n (click)="onTabClick()">\n <ng-content select="ecl-tab-label"></ng-content>\n</a>\n\n<ng-template #content>\n <ng-content></ng-content>\n</ng-template>\n', dependencies: [{ kind: "directive", type: EclLinkDirective, selector: "[eclLink]", inputs: ["isInverted", "isIconOnly", "isNoVisited", "variant"] }] });
|
|
18578
18594
|
}
|
|
18579
18595
|
};
|
|
18580
|
-
|
|
18596
|
+
__decorate30([
|
|
18581
18597
|
coerceBoolean27
|
|
18582
18598
|
], EclTabComponent.prototype, "isHidden", void 0);
|
|
18583
|
-
|
|
18599
|
+
__decorate30([
|
|
18584
18600
|
coerceBoolean27
|
|
18585
18601
|
], EclTabComponent.prototype, "isActive", void 0);
|
|
18586
18602
|
i0218.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0218, type: EclTabComponent, decorators: [{
|
|
@@ -18617,7 +18633,7 @@ i0218.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
18617
18633
|
}] } });
|
|
18618
18634
|
|
|
18619
18635
|
// lib/components/ecl-tabs/ecl-tab-more.component.mjs
|
|
18620
|
-
import { __decorate as
|
|
18636
|
+
import { __decorate as __decorate31 } from "tslib";
|
|
18621
18637
|
import { Component as Component99, HostBinding as HostBinding152, Input as Input97 } from "@angular/core";
|
|
18622
18638
|
import { coerceBoolean as coerceBoolean28 } from "@eui/base";
|
|
18623
18639
|
import * as i0219 from "@angular/core";
|
|
@@ -18637,7 +18653,7 @@ var EclTabMoreComponent = class _EclTabMoreComponent extends ECLBaseDirective {
|
|
|
18637
18653
|
this.ɵcmp = i0219.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclTabMoreComponent, selector: "ecl-tab-more", inputs: { isHidden: "isHidden" }, host: { properties: { "attr.aria-hidden": "this.isHidden", "attr.role": "this.role", "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0219, template: "<ng-content></ng-content>\n", styles: [":host{display:list-item}\n"] });
|
|
18638
18654
|
}
|
|
18639
18655
|
};
|
|
18640
|
-
|
|
18656
|
+
__decorate31([
|
|
18641
18657
|
coerceBoolean28
|
|
18642
18658
|
], EclTabMoreComponent.prototype, "isHidden", void 0);
|
|
18643
18659
|
i0219.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0219, type: EclTabMoreComponent, decorators: [{
|
|
@@ -18657,7 +18673,7 @@ i0219.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
18657
18673
|
}] } });
|
|
18658
18674
|
|
|
18659
18675
|
// lib/components/ecl-tabs/ecl-tabs.component.mjs
|
|
18660
|
-
import { Component as Component100, ContentChildren as
|
|
18676
|
+
import { Component as Component100, ContentChildren as ContentChildren27, EventEmitter as EventEmitter46, forwardRef as forwardRef56, HostListener as HostListener23, Input as Input98, Output as Output46, ViewChild as ViewChild17, ViewEncapsulation as ViewEncapsulation15 } from "@angular/core";
|
|
18661
18677
|
import { of as of4, Subject as Subject28 } from "rxjs";
|
|
18662
18678
|
import { mergeWith as mergeWith3, takeUntil as takeUntil25 } from "rxjs/operators";
|
|
18663
18679
|
import * as i0220 from "@angular/core";
|
|
@@ -19250,8 +19266,8 @@ i0220.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
19250
19266
|
}], tabSelect: [{
|
|
19251
19267
|
type: Output46
|
|
19252
19268
|
}], tabs: [{
|
|
19253
|
-
type:
|
|
19254
|
-
args: [
|
|
19269
|
+
type: ContentChildren27,
|
|
19270
|
+
args: [forwardRef56(() => EclTabComponent)]
|
|
19255
19271
|
}], tabsList: [{
|
|
19256
19272
|
type: ViewChild17,
|
|
19257
19273
|
args: ["tabsList"]
|
|
@@ -19322,7 +19338,7 @@ i0221.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
19322
19338
|
}] });
|
|
19323
19339
|
|
|
19324
19340
|
// lib/components/ecl-tag/ecl-tag.component.mjs
|
|
19325
|
-
import { Component as Component101, Input as Input99, HostBinding as HostBinding153, Output as Output47, EventEmitter as EventEmitter47, booleanAttribute as
|
|
19341
|
+
import { Component as Component101, Input as Input99, HostBinding as HostBinding153, Output as Output47, EventEmitter as EventEmitter47, booleanAttribute as booleanAttribute29 } from "@angular/core";
|
|
19326
19342
|
import * as i0222 from "@angular/core";
|
|
19327
19343
|
import * as i216 from "@angular/common";
|
|
19328
19344
|
var EclTagRemoveEvent = class extends EclBaseEvent {
|
|
@@ -19359,7 +19375,7 @@ var EclTagComponent = class _EclTagComponent extends ECLBaseDirective {
|
|
|
19359
19375
|
this.ɵfac = i0222.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0222, type: _EclTagComponent, deps: null, target: i0222.ɵɵFactoryTarget.Component });
|
|
19360
19376
|
}
|
|
19361
19377
|
static {
|
|
19362
|
-
this.ɵcmp = i0222.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.3", type: _EclTagComponent, selector: "ecl-tag, [eclTag]", inputs: { variant: "variant", isWrapped: ["isWrapped", "isWrapped",
|
|
19378
|
+
this.ɵcmp = i0222.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.0.0-next.3", type: _EclTagComponent, selector: "ecl-tag, [eclTag]", inputs: { variant: "variant", isWrapped: ["isWrapped", "isWrapped", booleanAttribute29] }, outputs: { remove: "remove" }, host: { properties: { "attr.hidden": "this.isHidden", "class": "this.cssClasses" } }, usesInheritance: true, ngImport: i0222, template: '<ng-content></ng-content>\n@if(isRemovable) {\n <span class="ecl-tag__icon" (click)="onRemoveClick($event)">\n <ecl-icon icon="close-outline" class="ecl-tag__icon-close" role="img">\n <title>{{title | titlecase}}</title>\n </ecl-icon>\n</span>\n}\n', dependencies: [{ kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "pipe", type: i216.TitleCasePipe, name: "titlecase" }] });
|
|
19363
19379
|
}
|
|
19364
19380
|
};
|
|
19365
19381
|
i0222.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0222, type: EclTagComponent, decorators: [{
|
|
@@ -19369,7 +19385,7 @@ i0222.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
19369
19385
|
type: Input99
|
|
19370
19386
|
}], isWrapped: [{
|
|
19371
19387
|
type: Input99,
|
|
19372
|
-
args: [{ transform:
|
|
19388
|
+
args: [{ transform: booleanAttribute29 }]
|
|
19373
19389
|
}], remove: [{
|
|
19374
19390
|
type: Output47
|
|
19375
19391
|
}], isHidden: [{
|
|
@@ -19429,7 +19445,7 @@ i0224.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
19429
19445
|
}] });
|
|
19430
19446
|
|
|
19431
19447
|
// lib/components/ecl-text-area/ecl-text-area.directive.mjs
|
|
19432
|
-
import { __decorate as
|
|
19448
|
+
import { __decorate as __decorate32 } from "tslib";
|
|
19433
19449
|
import { Directive as Directive64, HostBinding as HostBinding155, Input as Input100, Optional as Optional9, Self as Self7 } from "@angular/core";
|
|
19434
19450
|
import { coerceBoolean as coerceBoolean29 } from "@eui/base";
|
|
19435
19451
|
import * as i0225 from "@angular/core";
|
|
@@ -19458,7 +19474,7 @@ var EclTextAreaDirective = class _EclTextAreaDirective extends ECLBaseDirective
|
|
|
19458
19474
|
this.ɵdir = i0225.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.0.0-next.3", type: _EclTextAreaDirective, selector: "textarea[eclTextArea]", inputs: { eclSize: "eclSize", isInvalid: "isInvalid" }, host: { properties: { "class": "this.cssClasses", "class.ecl-text-area--invalid": "this.invalidState" } }, usesInheritance: true, ngImport: i0225 });
|
|
19459
19475
|
}
|
|
19460
19476
|
};
|
|
19461
|
-
|
|
19477
|
+
__decorate32([
|
|
19462
19478
|
coerceBoolean29
|
|
19463
19479
|
], EclTextAreaDirective.prototype, "isInvalid", void 0);
|
|
19464
19480
|
i0225.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0225, type: EclTextAreaDirective, decorators: [{
|
|
@@ -19583,8 +19599,8 @@ i0229.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
19583
19599
|
}] } });
|
|
19584
19600
|
|
|
19585
19601
|
// lib/components/ecl-timeline/ecl-timeline-item.component.mjs
|
|
19586
|
-
import { __decorate as
|
|
19587
|
-
import { Component as Component103, Input as Input101, HostBinding as HostBinding158, ViewEncapsulation as ViewEncapsulation17, Output as Output49, EventEmitter as EventEmitter49, ContentChild as ContentChild29, forwardRef as
|
|
19602
|
+
import { __decorate as __decorate33 } from "tslib";
|
|
19603
|
+
import { Component as Component103, Input as Input101, HostBinding as HostBinding158, ViewEncapsulation as ViewEncapsulation17, Output as Output49, EventEmitter as EventEmitter49, ContentChild as ContentChild29, forwardRef as forwardRef58 } from "@angular/core";
|
|
19588
19604
|
import { coerceBoolean as coerceBoolean30 } from "@eui/base";
|
|
19589
19605
|
import { Subject as Subject29 } from "rxjs";
|
|
19590
19606
|
import { takeUntil as takeUntil26 } from "rxjs/operators";
|
|
@@ -19685,7 +19701,7 @@ var EclTimelineItemComponent = class _EclTimelineItemComponent extends ECLBaseDi
|
|
|
19685
19701
|
</ng-template>`, styles: ["ecl-timeline-item{display:list-item}\n"], dependencies: [{ kind: "directive", type: i145.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i145.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: EclButtonComponent, selector: "button[eclButton], button[ecl-button], a[eclButton]", inputs: ["isIconOnly", "variant", "containerStyleClass"] }, { kind: "directive", type: EclButtonLabelDirective, selector: "[eclButtonLabel]" }, { kind: "component", type: EclIconComponent, selector: "ecl-icon", inputs: ["iconSet", "icon", "size", "color", "transform", "ariaLabelledby", "role", "ariaHidden", "focusable"] }, { kind: "pipe", type: i56.TranslatePipe, name: "translate" }], encapsulation: i0230.ViewEncapsulation.None });
|
|
19686
19702
|
}
|
|
19687
19703
|
};
|
|
19688
|
-
|
|
19704
|
+
__decorate33([
|
|
19689
19705
|
coerceBoolean30
|
|
19690
19706
|
], EclTimelineItemComponent.prototype, "isTogglerExpanded", void 0);
|
|
19691
19707
|
i0230.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3", ngImport: i0230, type: EclTimelineItemComponent, decorators: [{
|
|
@@ -19742,7 +19758,7 @@ i0230.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
19742
19758
|
args: ["class"]
|
|
19743
19759
|
}], timelineItemToggler: [{
|
|
19744
19760
|
type: ContentChild29,
|
|
19745
|
-
args: [
|
|
19761
|
+
args: [forwardRef58(() => EclTimelineItemTogglerComponent)]
|
|
19746
19762
|
}], isCollapsed: [{
|
|
19747
19763
|
type: Input101
|
|
19748
19764
|
}, {
|
|
@@ -19760,7 +19776,7 @@ i0230.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
19760
19776
|
}] } });
|
|
19761
19777
|
|
|
19762
19778
|
// lib/components/ecl-timeline/ecl-timeline.component.mjs
|
|
19763
|
-
import { Component as Component104, ContentChildren as
|
|
19779
|
+
import { Component as Component104, ContentChildren as ContentChildren28, forwardRef as forwardRef60, HostBinding as HostBinding159 } from "@angular/core";
|
|
19764
19780
|
import { Subject as Subject30 } from "rxjs";
|
|
19765
19781
|
import { takeUntil as takeUntil27 } from "rxjs/operators";
|
|
19766
19782
|
import * as i0231 from "@angular/core";
|
|
@@ -19805,8 +19821,8 @@ i0231.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.0.0-next.3
|
|
|
19805
19821
|
type: HostBinding159,
|
|
19806
19822
|
args: ["class"]
|
|
19807
19823
|
}], timelineItems: [{
|
|
19808
|
-
type:
|
|
19809
|
-
args: [
|
|
19824
|
+
type: ContentChildren28,
|
|
19825
|
+
args: [forwardRef60(() => EclTimelineItemComponent)]
|
|
19810
19826
|
}] } });
|
|
19811
19827
|
|
|
19812
19828
|
// lib/components/ecl-timeline/ecl-timeline.module.mjs
|