@ebrains/angular 0.0.1-alpha.0

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.
@@ -0,0 +1,1077 @@
1
+ import { __decorate, __metadata } from 'tslib';
2
+ import * as i0 from '@angular/core';
3
+ import { ChangeDetectorRef, ElementRef, NgZone, Component, ChangeDetectionStrategy } from '@angular/core';
4
+ import { fromEvent } from 'rxjs';
5
+
6
+ /* eslint-disable */
7
+ /* tslint:disable */
8
+ const proxyInputs = (Cmp, inputs) => {
9
+ const Prototype = Cmp.prototype;
10
+ inputs.forEach((item) => {
11
+ Object.defineProperty(Prototype, item, {
12
+ get() {
13
+ return this.el[item];
14
+ },
15
+ set(val) {
16
+ this.z.runOutsideAngular(() => (this.el[item] = val));
17
+ },
18
+ /**
19
+ * In the event that proxyInputs is called
20
+ * multiple times re-defining these inputs
21
+ * will cause an error to be thrown. As a result
22
+ * we set configurable: true to indicate these
23
+ * properties can be changed.
24
+ */
25
+ configurable: true,
26
+ });
27
+ });
28
+ };
29
+ const proxyMethods = (Cmp, methods) => {
30
+ const Prototype = Cmp.prototype;
31
+ methods.forEach((methodName) => {
32
+ Prototype[methodName] = function () {
33
+ const args = arguments;
34
+ return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
35
+ };
36
+ });
37
+ };
38
+ const proxyOutputs = (instance, el, events) => {
39
+ events.forEach((eventName) => (instance[eventName] = fromEvent(el, eventName)));
40
+ };
41
+ const defineCustomElement = (tagName, customElement) => {
42
+ if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {
43
+ customElements.define(tagName, customElement);
44
+ }
45
+ };
46
+ // tslint:disable-next-line: only-arrow-functions
47
+ function ProxyCmp(opts) {
48
+ const decorator = function (cls) {
49
+ const { defineCustomElementFn, inputs, methods } = opts;
50
+ if (defineCustomElementFn !== undefined) {
51
+ defineCustomElementFn();
52
+ }
53
+ if (inputs) {
54
+ proxyInputs(cls, inputs);
55
+ }
56
+ if (methods) {
57
+ proxyMethods(cls, methods);
58
+ }
59
+ return cls;
60
+ };
61
+ return decorator;
62
+ }
63
+
64
+ let EdsAccordion = class EdsAccordion {
65
+ z;
66
+ el;
67
+ constructor(c, r, z) {
68
+ this.z = z;
69
+ c.detach();
70
+ this.el = r.nativeElement;
71
+ proxyOutputs(this, this.el, ['accordionChange']);
72
+ }
73
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
74
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsAccordion, selector: "eds-accordion", inputs: { clampText: "clampText", description: "description", expanded: "expanded", minHeightContent: "minHeightContent", switchBg: "switchBg", title: "title" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
75
+ };
76
+ EdsAccordion = __decorate([
77
+ ProxyCmp({
78
+ inputs: ['clampText', 'description', 'expanded', 'minHeightContent', 'switchBg', 'title']
79
+ }),
80
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
81
+ ], EdsAccordion);
82
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsAccordion, decorators: [{
83
+ type: Component,
84
+ args: [{
85
+ selector: 'eds-accordion',
86
+ changeDetection: ChangeDetectionStrategy.OnPush,
87
+ template: '<ng-content></ng-content>',
88
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
89
+ inputs: ['clampText', 'description', 'expanded', 'minHeightContent', 'switchBg', 'title'],
90
+ }]
91
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
92
+ let EdsAlert = class EdsAlert {
93
+ z;
94
+ el;
95
+ constructor(c, r, z) {
96
+ this.z = z;
97
+ c.detach();
98
+ this.el = r.nativeElement;
99
+ }
100
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
101
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsAlert, selector: "eds-alert", inputs: { direction: "direction", intent: "intent", message: "message", pressableLabel: "pressableLabel", pressableUrl: "pressableUrl" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
102
+ };
103
+ EdsAlert = __decorate([
104
+ ProxyCmp({
105
+ inputs: ['direction', 'intent', 'message', 'pressableLabel', 'pressableUrl']
106
+ }),
107
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
108
+ ], EdsAlert);
109
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsAlert, decorators: [{
110
+ type: Component,
111
+ args: [{
112
+ selector: 'eds-alert',
113
+ changeDetection: ChangeDetectionStrategy.OnPush,
114
+ template: '<ng-content></ng-content>',
115
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
116
+ inputs: ['direction', 'intent', 'message', 'pressableLabel', 'pressableUrl'],
117
+ }]
118
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
119
+ let EdsAvatar = class EdsAvatar {
120
+ z;
121
+ el;
122
+ constructor(c, r, z) {
123
+ this.z = z;
124
+ c.detach();
125
+ this.el = r.nativeElement;
126
+ }
127
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
128
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsAvatar, selector: "eds-avatar", inputs: { color: "color", firstName: "firstName", initials: "initials", initialsStrong: "initialsStrong", lastName: "lastName", picture: "picture", rounded: "rounded" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
129
+ };
130
+ EdsAvatar = __decorate([
131
+ ProxyCmp({
132
+ inputs: ['color', 'firstName', 'initials', 'initialsStrong', 'lastName', 'picture', 'rounded']
133
+ }),
134
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
135
+ ], EdsAvatar);
136
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsAvatar, decorators: [{
137
+ type: Component,
138
+ args: [{
139
+ selector: 'eds-avatar',
140
+ changeDetection: ChangeDetectionStrategy.OnPush,
141
+ template: '<ng-content></ng-content>',
142
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
143
+ inputs: ['color', 'firstName', 'initials', 'initialsStrong', 'lastName', 'picture', 'rounded'],
144
+ }]
145
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
146
+ let EdsBlockBreak = class EdsBlockBreak {
147
+ z;
148
+ el;
149
+ constructor(c, r, z) {
150
+ this.z = z;
151
+ c.detach();
152
+ this.el = r.nativeElement;
153
+ }
154
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsBlockBreak, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
155
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsBlockBreak, selector: "eds-block-break", inputs: { extraClass: "extraClass" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
156
+ };
157
+ EdsBlockBreak = __decorate([
158
+ ProxyCmp({
159
+ inputs: ['extraClass']
160
+ }),
161
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
162
+ ], EdsBlockBreak);
163
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsBlockBreak, decorators: [{
164
+ type: Component,
165
+ args: [{
166
+ selector: 'eds-block-break',
167
+ changeDetection: ChangeDetectionStrategy.OnPush,
168
+ template: '<ng-content></ng-content>',
169
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
170
+ inputs: ['extraClass'],
171
+ }]
172
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
173
+ let EdsBreadcrumb = class EdsBreadcrumb {
174
+ z;
175
+ el;
176
+ constructor(c, r, z) {
177
+ this.z = z;
178
+ c.detach();
179
+ this.el = r.nativeElement;
180
+ }
181
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
182
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsBreadcrumb, selector: "eds-breadcrumb", inputs: { intent: "intent", items: "items" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
183
+ };
184
+ EdsBreadcrumb = __decorate([
185
+ ProxyCmp({
186
+ inputs: ['intent', 'items']
187
+ }),
188
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
189
+ ], EdsBreadcrumb);
190
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsBreadcrumb, decorators: [{
191
+ type: Component,
192
+ args: [{
193
+ selector: 'eds-breadcrumb',
194
+ changeDetection: ChangeDetectionStrategy.OnPush,
195
+ template: '<ng-content></ng-content>',
196
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
197
+ inputs: ['intent', 'items'],
198
+ }]
199
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
200
+ let EdsButton = class EdsButton {
201
+ z;
202
+ el;
203
+ constructor(c, r, z) {
204
+ this.z = z;
205
+ c.detach();
206
+ this.el = r.nativeElement;
207
+ }
208
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
209
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsButton, selector: "eds-button", inputs: { ariaLabel: "ariaLabel", disabled: "disabled", elementType: "elementType", extraClass: "extraClass", icon: "icon", iconPos: "iconPos", iconSmall: "iconSmall", intent: "intent", label: "label", loading: "loading", pill: "pill", size: "size", triggerClick: "triggerClick" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
210
+ };
211
+ EdsButton = __decorate([
212
+ ProxyCmp({
213
+ inputs: ['ariaLabel', 'disabled', 'elementType', 'extraClass', 'icon', 'iconPos', 'iconSmall', 'intent', 'label', 'loading', 'pill', 'size', 'triggerClick']
214
+ }),
215
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
216
+ ], EdsButton);
217
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsButton, decorators: [{
218
+ type: Component,
219
+ args: [{
220
+ selector: 'eds-button',
221
+ changeDetection: ChangeDetectionStrategy.OnPush,
222
+ template: '<ng-content></ng-content>',
223
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
224
+ inputs: ['ariaLabel', 'disabled', 'elementType', 'extraClass', 'icon', 'iconPos', 'iconSmall', 'intent', 'label', 'loading', 'pill', 'size', 'triggerClick'],
225
+ }]
226
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
227
+ let EdsCardDesc = class EdsCardDesc {
228
+ z;
229
+ el;
230
+ constructor(c, r, z) {
231
+ this.z = z;
232
+ c.detach();
233
+ this.el = r.nativeElement;
234
+ }
235
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsCardDesc, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
236
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsCardDesc, selector: "eds-card-desc", inputs: { descClass: "descClass", description: "description", truncate: "truncate", truncateLines: "truncateLines" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
237
+ };
238
+ EdsCardDesc = __decorate([
239
+ ProxyCmp({
240
+ inputs: ['descClass', 'description', 'truncate', 'truncateLines']
241
+ }),
242
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
243
+ ], EdsCardDesc);
244
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsCardDesc, decorators: [{
245
+ type: Component,
246
+ args: [{
247
+ selector: 'eds-card-desc',
248
+ changeDetection: ChangeDetectionStrategy.OnPush,
249
+ template: '<ng-content></ng-content>',
250
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
251
+ inputs: ['descClass', 'description', 'truncate', 'truncateLines'],
252
+ }]
253
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
254
+ let EdsCardGeneric = class EdsCardGeneric {
255
+ z;
256
+ el;
257
+ constructor(c, r, z) {
258
+ this.z = z;
259
+ c.detach();
260
+ this.el = r.nativeElement;
261
+ }
262
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsCardGeneric, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
263
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsCardGeneric, selector: "eds-card-generic", inputs: { avatar: "avatar", bg: "bg", cardTitle: "cardTitle", description: "description", headingLevel: "headingLevel", hierarchy: "hierarchy", image: "image", shortAbbreviation: "shortAbbreviation", tags: "tags", tiny: "tiny", url: "url", withHover: "withHover" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
264
+ };
265
+ EdsCardGeneric = __decorate([
266
+ ProxyCmp({
267
+ inputs: ['avatar', 'bg', 'cardTitle', 'description', 'headingLevel', 'hierarchy', 'image', 'shortAbbreviation', 'tags', 'tiny', 'url', 'withHover']
268
+ }),
269
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
270
+ ], EdsCardGeneric);
271
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsCardGeneric, decorators: [{
272
+ type: Component,
273
+ args: [{
274
+ selector: 'eds-card-generic',
275
+ changeDetection: ChangeDetectionStrategy.OnPush,
276
+ template: '<ng-content></ng-content>',
277
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
278
+ inputs: ['avatar', 'bg', 'cardTitle', 'description', 'headingLevel', 'hierarchy', 'image', 'shortAbbreviation', 'tags', 'tiny', 'url', 'withHover'],
279
+ }]
280
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
281
+ let EdsCardSection = class EdsCardSection {
282
+ z;
283
+ el;
284
+ constructor(c, r, z) {
285
+ this.z = z;
286
+ c.detach();
287
+ this.el = r.nativeElement;
288
+ }
289
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsCardSection, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
290
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsCardSection, selector: "eds-card-section", inputs: { cards: "cards", cols: "cols" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
291
+ };
292
+ EdsCardSection = __decorate([
293
+ ProxyCmp({
294
+ inputs: ['cards', 'cols']
295
+ }),
296
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
297
+ ], EdsCardSection);
298
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsCardSection, decorators: [{
299
+ type: Component,
300
+ args: [{
301
+ selector: 'eds-card-section',
302
+ changeDetection: ChangeDetectionStrategy.OnPush,
303
+ template: '<ng-content></ng-content>',
304
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
305
+ inputs: ['cards', 'cols'],
306
+ }]
307
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
308
+ let EdsCodeBlock = class EdsCodeBlock {
309
+ z;
310
+ el;
311
+ constructor(c, r, z) {
312
+ this.z = z;
313
+ c.detach();
314
+ this.el = r.nativeElement;
315
+ }
316
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsCodeBlock, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
317
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsCodeBlock, selector: "eds-code-block", inputs: { code: "code", language: "language" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
318
+ };
319
+ EdsCodeBlock = __decorate([
320
+ ProxyCmp({
321
+ inputs: ['code', 'language']
322
+ }),
323
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
324
+ ], EdsCodeBlock);
325
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsCodeBlock, decorators: [{
326
+ type: Component,
327
+ args: [{
328
+ selector: 'eds-code-block',
329
+ changeDetection: ChangeDetectionStrategy.OnPush,
330
+ template: '<ng-content></ng-content>',
331
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
332
+ inputs: ['code', 'language'],
333
+ }]
334
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
335
+ let EdsDropdown = class EdsDropdown {
336
+ z;
337
+ el;
338
+ constructor(c, r, z) {
339
+ this.z = z;
340
+ c.detach();
341
+ this.el = r.nativeElement;
342
+ }
343
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
344
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsDropdown, selector: "eds-dropdown", inputs: { ariaLabel: "ariaLabel", asNav: "asNav", dropdownOffset: "dropdownOffset", dropdownPos: "dropdownPos", icon: "icon", intent: "intent", label: "label", rounded: "rounded" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
345
+ };
346
+ EdsDropdown = __decorate([
347
+ ProxyCmp({
348
+ inputs: ['ariaLabel', 'asNav', 'dropdownOffset', 'dropdownPos', 'icon', 'intent', 'label', 'rounded']
349
+ }),
350
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
351
+ ], EdsDropdown);
352
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsDropdown, decorators: [{
353
+ type: Component,
354
+ args: [{
355
+ selector: 'eds-dropdown',
356
+ changeDetection: ChangeDetectionStrategy.OnPush,
357
+ template: '<ng-content></ng-content>',
358
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
359
+ inputs: ['ariaLabel', 'asNav', 'dropdownOffset', 'dropdownPos', 'icon', 'intent', 'label', 'rounded'],
360
+ }]
361
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
362
+ let EdsFooter = class EdsFooter {
363
+ z;
364
+ el;
365
+ constructor(c, r, z) {
366
+ this.z = z;
367
+ c.detach();
368
+ this.el = r.nativeElement;
369
+ }
370
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
371
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsFooter, selector: "eds-footer", inputs: { cookiesPreference: "cookiesPreference", enableScrollTop: "enableScrollTop", extraClass: "extraClass", fundedBy: "fundedBy", hasCookiesSetUp: "hasCookiesSetUp", rightsReserved: "rightsReserved", social: "social" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
372
+ };
373
+ EdsFooter = __decorate([
374
+ ProxyCmp({
375
+ inputs: ['cookiesPreference', 'enableScrollTop', 'extraClass', 'fundedBy', 'hasCookiesSetUp', 'rightsReserved', 'social']
376
+ }),
377
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
378
+ ], EdsFooter);
379
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsFooter, decorators: [{
380
+ type: Component,
381
+ args: [{
382
+ selector: 'eds-footer',
383
+ changeDetection: ChangeDetectionStrategy.OnPush,
384
+ template: '<ng-content></ng-content>',
385
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
386
+ inputs: ['cookiesPreference', 'enableScrollTop', 'extraClass', 'fundedBy', 'hasCookiesSetUp', 'rightsReserved', 'social'],
387
+ }]
388
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
389
+ let EdsForm = class EdsForm {
390
+ z;
391
+ el;
392
+ constructor(c, r, z) {
393
+ this.z = z;
394
+ c.detach();
395
+ this.el = r.nativeElement;
396
+ proxyOutputs(this, this.el, ['formSubmitting']);
397
+ }
398
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsForm, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
399
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsForm, selector: "eds-form", inputs: { coupleAuth: "coupleAuth", endpoint: "endpoint", errorMessage: "errorMessage", fields: "fields", name: "name", setFormUrl: "setFormUrl", smallAlert: "smallAlert", submitBtn: "submitBtn", submitBtnLabel: "submitBtnLabel", successMessage: "successMessage" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
400
+ };
401
+ EdsForm = __decorate([
402
+ ProxyCmp({
403
+ inputs: ['coupleAuth', 'endpoint', 'errorMessage', 'fields', 'name', 'setFormUrl', 'smallAlert', 'submitBtn', 'submitBtnLabel', 'successMessage']
404
+ }),
405
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
406
+ ], EdsForm);
407
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsForm, decorators: [{
408
+ type: Component,
409
+ args: [{
410
+ selector: 'eds-form',
411
+ changeDetection: ChangeDetectionStrategy.OnPush,
412
+ template: '<ng-content></ng-content>',
413
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
414
+ inputs: ['coupleAuth', 'endpoint', 'errorMessage', 'fields', 'name', 'setFormUrl', 'smallAlert', 'submitBtn', 'submitBtnLabel', 'successMessage'],
415
+ }]
416
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
417
+ let EdsFrame = class EdsFrame {
418
+ z;
419
+ el;
420
+ constructor(c, r, z) {
421
+ this.z = z;
422
+ c.detach();
423
+ this.el = r.nativeElement;
424
+ }
425
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsFrame, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
426
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsFrame, selector: "eds-frame", inputs: { bg: "bg", errorMessage: "errorMessage", frameLabel: "frameLabel", intent: "intent", size: "size", storyPath: "storyPath", storybookUrl: "storybookUrl", tiny: "tiny", urlLabel: "urlLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
427
+ };
428
+ EdsFrame = __decorate([
429
+ ProxyCmp({
430
+ inputs: ['bg', 'errorMessage', 'frameLabel', 'intent', 'size', 'storyPath', 'storybookUrl', 'tiny', 'urlLabel']
431
+ }),
432
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
433
+ ], EdsFrame);
434
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsFrame, decorators: [{
435
+ type: Component,
436
+ args: [{
437
+ selector: 'eds-frame',
438
+ changeDetection: ChangeDetectionStrategy.OnPush,
439
+ template: '<ng-content></ng-content>',
440
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
441
+ inputs: ['bg', 'errorMessage', 'frameLabel', 'intent', 'size', 'storyPath', 'storybookUrl', 'tiny', 'urlLabel'],
442
+ }]
443
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
444
+ let EdsFullscreenMenu = class EdsFullscreenMenu {
445
+ z;
446
+ el;
447
+ constructor(c, r, z) {
448
+ this.z = z;
449
+ c.detach();
450
+ this.el = r.nativeElement;
451
+ proxyOutputs(this, this.el, ['menuClose']);
452
+ }
453
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsFullscreenMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
454
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsFullscreenMenu, selector: "eds-fullscreen-menu", inputs: { homeUrl: "homeUrl", inverseHeader: "inverseHeader", links: "links", menuLinks: "menuLinks" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
455
+ };
456
+ EdsFullscreenMenu = __decorate([
457
+ ProxyCmp({
458
+ inputs: ['homeUrl', 'inverseHeader', 'links', 'menuLinks']
459
+ }),
460
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
461
+ ], EdsFullscreenMenu);
462
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsFullscreenMenu, decorators: [{
463
+ type: Component,
464
+ args: [{
465
+ selector: 'eds-fullscreen-menu',
466
+ changeDetection: ChangeDetectionStrategy.OnPush,
467
+ template: '<ng-content></ng-content>',
468
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
469
+ inputs: ['homeUrl', 'inverseHeader', 'links', 'menuLinks'],
470
+ }]
471
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
472
+ let EdsHeader = class EdsHeader {
473
+ z;
474
+ el;
475
+ constructor(c, r, z) {
476
+ this.z = z;
477
+ c.detach();
478
+ this.el = r.nativeElement;
479
+ proxyOutputs(this, this.el, ['toggleMenu']);
480
+ }
481
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
482
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsHeader, selector: "eds-header", inputs: { homeUrl: "homeUrl", inverseHeader: "inverseHeader", keycloakClientId: "keycloakClientId", keycloakRealm: "keycloakRealm", keycloakUrl: "keycloakUrl", links: "links", menuEnabled: "menuEnabled", userFeature: "userFeature" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
483
+ };
484
+ EdsHeader = __decorate([
485
+ ProxyCmp({
486
+ inputs: ['homeUrl', 'inverseHeader', 'keycloakClientId', 'keycloakRealm', 'keycloakUrl', 'links', 'menuEnabled', 'userFeature']
487
+ }),
488
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
489
+ ], EdsHeader);
490
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsHeader, decorators: [{
491
+ type: Component,
492
+ args: [{
493
+ selector: 'eds-header',
494
+ changeDetection: ChangeDetectionStrategy.OnPush,
495
+ template: '<ng-content></ng-content>',
496
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
497
+ inputs: ['homeUrl', 'inverseHeader', 'keycloakClientId', 'keycloakRealm', 'keycloakUrl', 'links', 'menuEnabled', 'userFeature'],
498
+ }]
499
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
500
+ let EdsIconWrapper = class EdsIconWrapper {
501
+ z;
502
+ el;
503
+ constructor(c, r, z) {
504
+ this.z = z;
505
+ c.detach();
506
+ this.el = r.nativeElement;
507
+ }
508
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsIconWrapper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
509
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsIconWrapper, selector: "eds-icon-wrapper", inputs: { class: "class", icon: "icon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
510
+ };
511
+ EdsIconWrapper = __decorate([
512
+ ProxyCmp({
513
+ inputs: ['class', 'icon']
514
+ }),
515
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
516
+ ], EdsIconWrapper);
517
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsIconWrapper, decorators: [{
518
+ type: Component,
519
+ args: [{
520
+ selector: 'eds-icon-wrapper',
521
+ changeDetection: ChangeDetectionStrategy.OnPush,
522
+ template: '<ng-content></ng-content>',
523
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
524
+ inputs: ['class', 'icon'],
525
+ }]
526
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
527
+ let EdsImg = class EdsImg {
528
+ z;
529
+ el;
530
+ constructor(c, r, z) {
531
+ this.z = z;
532
+ c.detach();
533
+ this.el = r.nativeElement;
534
+ }
535
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsImg, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
536
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsImg, selector: "eds-img", inputs: { alt: "alt", formats: "formats", height: "height", lazyload: "lazyload", sizes: "sizes", src: "src", srcset: "srcset", width: "width", withBg: "withBg" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
537
+ };
538
+ EdsImg = __decorate([
539
+ ProxyCmp({
540
+ inputs: ['alt', 'formats', 'height', 'lazyload', 'sizes', 'src', 'srcset', 'width', 'withBg']
541
+ }),
542
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
543
+ ], EdsImg);
544
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsImg, decorators: [{
545
+ type: Component,
546
+ args: [{
547
+ selector: 'eds-img',
548
+ changeDetection: ChangeDetectionStrategy.OnPush,
549
+ template: '<ng-content></ng-content>',
550
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
551
+ inputs: ['alt', 'formats', 'height', 'lazyload', 'sizes', 'src', 'srcset', 'width', 'withBg'],
552
+ }]
553
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
554
+ let EdsInputField = class EdsInputField {
555
+ z;
556
+ el;
557
+ constructor(c, r, z) {
558
+ this.z = z;
559
+ c.detach();
560
+ this.el = r.nativeElement;
561
+ }
562
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsInputField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
563
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsInputField, selector: "eds-input-field", inputs: { checked: "checked", disabled: "disabled", error: "error", errorMessage: "errorMessage", hint: "hint", icon: "icon", inputId: "inputId", label: "label", link: "link", maxLength: "maxLength", message: "message", name: "name", onChange: "onChange", onInput: "onInput", options: "options", placeholder: "placeholder", required: "required", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
564
+ };
565
+ EdsInputField = __decorate([
566
+ ProxyCmp({
567
+ inputs: ['checked', 'disabled', 'error', 'errorMessage', 'hint', 'icon', 'inputId', 'label', 'link', 'maxLength', 'message', 'name', 'onChange', 'onInput', 'options', 'placeholder', 'required', 'type', 'value']
568
+ }),
569
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
570
+ ], EdsInputField);
571
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsInputField, decorators: [{
572
+ type: Component,
573
+ args: [{
574
+ selector: 'eds-input-field',
575
+ changeDetection: ChangeDetectionStrategy.OnPush,
576
+ template: '<ng-content></ng-content>',
577
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
578
+ inputs: ['checked', 'disabled', 'error', 'errorMessage', 'hint', 'icon', 'inputId', 'label', 'link', 'maxLength', 'message', 'name', 'onChange', 'onInput', 'options', 'placeholder', 'required', 'type', 'value'],
579
+ }]
580
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
581
+ let EdsLink = class EdsLink {
582
+ z;
583
+ el;
584
+ constructor(c, r, z) {
585
+ this.z = z;
586
+ c.detach();
587
+ this.el = r.nativeElement;
588
+ }
589
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
590
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsLink, selector: "eds-link", inputs: { ariaLabel: "ariaLabel", current: "current", disabled: "disabled", download: "download", external: "external", extraClass: "extraClass", hideLabelOnSmallScreen: "hideLabelOnSmallScreen", icon: "icon", iconPos: "iconPos", iconSmall: "iconSmall", intent: "intent", label: "label", size: "size", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
591
+ };
592
+ EdsLink = __decorate([
593
+ ProxyCmp({
594
+ inputs: ['ariaLabel', 'current', 'disabled', 'download', 'external', 'extraClass', 'hideLabelOnSmallScreen', 'icon', 'iconPos', 'iconSmall', 'intent', 'label', 'size', 'url']
595
+ }),
596
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
597
+ ], EdsLink);
598
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsLink, decorators: [{
599
+ type: Component,
600
+ args: [{
601
+ selector: 'eds-link',
602
+ changeDetection: ChangeDetectionStrategy.OnPush,
603
+ template: '<ng-content></ng-content>',
604
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
605
+ inputs: ['ariaLabel', 'current', 'disabled', 'download', 'external', 'extraClass', 'hideLabelOnSmallScreen', 'icon', 'iconPos', 'iconSmall', 'intent', 'label', 'size', 'url'],
606
+ }]
607
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
608
+ let EdsLogin = class EdsLogin {
609
+ z;
610
+ el;
611
+ constructor(c, r, z) {
612
+ this.z = z;
613
+ c.detach();
614
+ this.el = r.nativeElement;
615
+ proxyOutputs(this, this.el, ['authStatusChanged']);
616
+ }
617
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsLogin, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
618
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsLogin, selector: "eds-login", inputs: { keycloakClientId: "keycloakClientId", keycloakRealm: "keycloakRealm", keycloakUrl: "keycloakUrl" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
619
+ };
620
+ EdsLogin = __decorate([
621
+ ProxyCmp({
622
+ inputs: ['keycloakClientId', 'keycloakRealm', 'keycloakUrl']
623
+ }),
624
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
625
+ ], EdsLogin);
626
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsLogin, decorators: [{
627
+ type: Component,
628
+ args: [{
629
+ selector: 'eds-login',
630
+ changeDetection: ChangeDetectionStrategy.OnPush,
631
+ template: '<ng-content></ng-content>',
632
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
633
+ inputs: ['keycloakClientId', 'keycloakRealm', 'keycloakUrl'],
634
+ }]
635
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
636
+ let EdsLogo = class EdsLogo {
637
+ z;
638
+ el;
639
+ constructor(c, r, z) {
640
+ this.z = z;
641
+ c.detach();
642
+ this.el = r.nativeElement;
643
+ }
644
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsLogo, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
645
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsLogo, selector: "eds-logo", inputs: { href: "href", orientation: "orientation", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
646
+ };
647
+ EdsLogo = __decorate([
648
+ ProxyCmp({
649
+ inputs: ['href', 'orientation', 'type']
650
+ }),
651
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
652
+ ], EdsLogo);
653
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsLogo, decorators: [{
654
+ type: Component,
655
+ args: [{
656
+ selector: 'eds-logo',
657
+ changeDetection: ChangeDetectionStrategy.OnPush,
658
+ template: '<ng-content></ng-content>',
659
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
660
+ inputs: ['href', 'orientation', 'type'],
661
+ }]
662
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
663
+ let EdsMatomoNotice = class EdsMatomoNotice {
664
+ z;
665
+ el;
666
+ constructor(c, r, z) {
667
+ this.z = z;
668
+ c.detach();
669
+ this.el = r.nativeElement;
670
+ }
671
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsMatomoNotice, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
672
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsMatomoNotice, selector: "eds-matomo-notice", inputs: { description: "description", title: "title" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
673
+ };
674
+ EdsMatomoNotice = __decorate([
675
+ ProxyCmp({
676
+ inputs: ['description', 'title']
677
+ }),
678
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
679
+ ], EdsMatomoNotice);
680
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsMatomoNotice, decorators: [{
681
+ type: Component,
682
+ args: [{
683
+ selector: 'eds-matomo-notice',
684
+ changeDetection: ChangeDetectionStrategy.OnPush,
685
+ template: '<ng-content></ng-content>',
686
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
687
+ inputs: ['description', 'title'],
688
+ }]
689
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
690
+ let EdsModal = class EdsModal {
691
+ z;
692
+ el;
693
+ constructor(c, r, z) {
694
+ this.z = z;
695
+ c.detach();
696
+ this.el = r.nativeElement;
697
+ }
698
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
699
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsModal, selector: "eds-modal", inputs: { title: "title", truncate: "truncate", truncateLines: "truncateLines" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
700
+ };
701
+ EdsModal = __decorate([
702
+ ProxyCmp({
703
+ inputs: ['title', 'truncate', 'truncateLines'],
704
+ methods: ['open', 'close', 'toggle']
705
+ }),
706
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
707
+ ], EdsModal);
708
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsModal, decorators: [{
709
+ type: Component,
710
+ args: [{
711
+ selector: 'eds-modal',
712
+ changeDetection: ChangeDetectionStrategy.OnPush,
713
+ template: '<ng-content></ng-content>',
714
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
715
+ inputs: ['title', 'truncate', 'truncateLines'],
716
+ }]
717
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
718
+ let EdsPagination = class EdsPagination {
719
+ z;
720
+ el;
721
+ constructor(c, r, z) {
722
+ this.z = z;
723
+ c.detach();
724
+ this.el = r.nativeElement;
725
+ }
726
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsPagination, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
727
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsPagination, selector: "eds-pagination", inputs: { currentPage: "currentPage", lastPage: "lastPage", mode: "mode", nextLabel: "nextLabel", nextUrl: "nextUrl", perPage: "perPage", prevLabel: "prevLabel", prevUrl: "prevUrl", total: "total", url: "url" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
728
+ };
729
+ EdsPagination = __decorate([
730
+ ProxyCmp({
731
+ inputs: ['currentPage', 'lastPage', 'mode', 'nextLabel', 'nextUrl', 'perPage', 'prevLabel', 'prevUrl', 'total', 'url']
732
+ }),
733
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
734
+ ], EdsPagination);
735
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsPagination, decorators: [{
736
+ type: Component,
737
+ args: [{
738
+ selector: 'eds-pagination',
739
+ changeDetection: ChangeDetectionStrategy.OnPush,
740
+ template: '<ng-content></ng-content>',
741
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
742
+ inputs: ['currentPage', 'lastPage', 'mode', 'nextLabel', 'nextUrl', 'perPage', 'prevLabel', 'prevUrl', 'total', 'url'],
743
+ }]
744
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
745
+ let EdsProgressBar = class EdsProgressBar {
746
+ z;
747
+ el;
748
+ constructor(c, r, z) {
749
+ this.z = z;
750
+ c.detach();
751
+ this.el = r.nativeElement;
752
+ }
753
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsProgressBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
754
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsProgressBar, selector: "eds-progress-bar", inputs: { value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
755
+ };
756
+ EdsProgressBar = __decorate([
757
+ ProxyCmp({
758
+ inputs: ['value'],
759
+ methods: ['updateValue']
760
+ }),
761
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
762
+ ], EdsProgressBar);
763
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsProgressBar, decorators: [{
764
+ type: Component,
765
+ args: [{
766
+ selector: 'eds-progress-bar',
767
+ changeDetection: ChangeDetectionStrategy.OnPush,
768
+ template: '<ng-content></ng-content>',
769
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
770
+ inputs: ['value'],
771
+ }]
772
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
773
+ let EdsRating = class EdsRating {
774
+ z;
775
+ el;
776
+ constructor(c, r, z) {
777
+ this.z = z;
778
+ c.detach();
779
+ this.el = r.nativeElement;
780
+ proxyOutputs(this, this.el, ['ratingChange']);
781
+ }
782
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsRating, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
783
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsRating, selector: "eds-rating", inputs: { label: "label", stars: "stars", textMapping: "textMapping" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
784
+ };
785
+ EdsRating = __decorate([
786
+ ProxyCmp({
787
+ inputs: ['label', 'stars', 'textMapping']
788
+ }),
789
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
790
+ ], EdsRating);
791
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsRating, decorators: [{
792
+ type: Component,
793
+ args: [{
794
+ selector: 'eds-rating',
795
+ changeDetection: ChangeDetectionStrategy.OnPush,
796
+ template: '<ng-content></ng-content>',
797
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
798
+ inputs: ['label', 'stars', 'textMapping'],
799
+ }]
800
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
801
+ let EdsSectionCore = class EdsSectionCore {
802
+ z;
803
+ el;
804
+ constructor(c, r, z) {
805
+ this.z = z;
806
+ c.detach();
807
+ this.el = r.nativeElement;
808
+ }
809
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsSectionCore, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
810
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsSectionCore, selector: "eds-section-core", inputs: { headingLevel: "headingLevel", sectionTitle: "sectionTitle", tag: "tag" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
811
+ };
812
+ EdsSectionCore = __decorate([
813
+ ProxyCmp({
814
+ inputs: ['headingLevel', 'sectionTitle', 'tag']
815
+ }),
816
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
817
+ ], EdsSectionCore);
818
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsSectionCore, decorators: [{
819
+ type: Component,
820
+ args: [{
821
+ selector: 'eds-section-core',
822
+ changeDetection: ChangeDetectionStrategy.OnPush,
823
+ template: '<ng-content></ng-content>',
824
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
825
+ inputs: ['headingLevel', 'sectionTitle', 'tag'],
826
+ }]
827
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
828
+ let EdsSectionHeading = class EdsSectionHeading {
829
+ z;
830
+ el;
831
+ constructor(c, r, z) {
832
+ this.z = z;
833
+ c.detach();
834
+ this.el = r.nativeElement;
835
+ }
836
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsSectionHeading, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
837
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsSectionHeading, selector: "eds-section-heading", inputs: { headingLevel: "headingLevel", sectionTitle: "sectionTitle", spacingLarge: "spacingLarge", tag: "tag", withContainer: "withContainer" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
838
+ };
839
+ EdsSectionHeading = __decorate([
840
+ ProxyCmp({
841
+ inputs: ['headingLevel', 'sectionTitle', 'spacingLarge', 'tag', 'withContainer']
842
+ }),
843
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
844
+ ], EdsSectionHeading);
845
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsSectionHeading, decorators: [{
846
+ type: Component,
847
+ args: [{
848
+ selector: 'eds-section-heading',
849
+ changeDetection: ChangeDetectionStrategy.OnPush,
850
+ template: '<ng-content></ng-content>',
851
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
852
+ inputs: ['headingLevel', 'sectionTitle', 'spacingLarge', 'tag', 'withContainer'],
853
+ }]
854
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
855
+ let EdsSocialNetworks = class EdsSocialNetworks {
856
+ z;
857
+ el;
858
+ constructor(c, r, z) {
859
+ this.z = z;
860
+ c.detach();
861
+ this.el = r.nativeElement;
862
+ }
863
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsSocialNetworks, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
864
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsSocialNetworks, selector: "eds-social-networks", inputs: { title: "title" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
865
+ };
866
+ EdsSocialNetworks = __decorate([
867
+ ProxyCmp({
868
+ inputs: ['title']
869
+ }),
870
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
871
+ ], EdsSocialNetworks);
872
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsSocialNetworks, decorators: [{
873
+ type: Component,
874
+ args: [{
875
+ selector: 'eds-social-networks',
876
+ changeDetection: ChangeDetectionStrategy.OnPush,
877
+ template: '<ng-content></ng-content>',
878
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
879
+ inputs: ['title'],
880
+ }]
881
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
882
+ let EdsTable = class EdsTable {
883
+ z;
884
+ el;
885
+ constructor(c, r, z) {
886
+ this.z = z;
887
+ c.detach();
888
+ this.el = r.nativeElement;
889
+ }
890
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
891
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsTable, selector: "eds-table", inputs: { config: "config", data: "data", endpoint: "endpoint", paginationEnabled: "paginationEnabled", rowsPerPage: "rowsPerPage", searchEnabled: "searchEnabled" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
892
+ };
893
+ EdsTable = __decorate([
894
+ ProxyCmp({
895
+ inputs: ['config', 'data', 'endpoint', 'paginationEnabled', 'rowsPerPage', 'searchEnabled']
896
+ }),
897
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
898
+ ], EdsTable);
899
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsTable, decorators: [{
900
+ type: Component,
901
+ args: [{
902
+ selector: 'eds-table',
903
+ changeDetection: ChangeDetectionStrategy.OnPush,
904
+ template: '<ng-content></ng-content>',
905
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
906
+ inputs: ['config', 'data', 'endpoint', 'paginationEnabled', 'rowsPerPage', 'searchEnabled'],
907
+ }]
908
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
909
+ let EdsTabs = class EdsTabs {
910
+ z;
911
+ el;
912
+ constructor(c, r, z) {
913
+ this.z = z;
914
+ c.detach();
915
+ this.el = r.nativeElement;
916
+ proxyOutputs(this, this.el, ['tabChange']);
917
+ }
918
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsTabs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
919
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsTabs, selector: "eds-tabs", inputs: { id: "id", navAriaLabel: "navAriaLabel", tabs: "tabs" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
920
+ };
921
+ EdsTabs = __decorate([
922
+ ProxyCmp({
923
+ inputs: ['id', 'navAriaLabel', 'tabs']
924
+ }),
925
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
926
+ ], EdsTabs);
927
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsTabs, decorators: [{
928
+ type: Component,
929
+ args: [{
930
+ selector: 'eds-tabs',
931
+ changeDetection: ChangeDetectionStrategy.OnPush,
932
+ template: '<ng-content></ng-content>',
933
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
934
+ inputs: ['id', 'navAriaLabel', 'tabs'],
935
+ }]
936
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
937
+ let EdsTag = class EdsTag {
938
+ z;
939
+ el;
940
+ constructor(c, r, z) {
941
+ this.z = z;
942
+ c.detach();
943
+ this.el = r.nativeElement;
944
+ }
945
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
946
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsTag, selector: "eds-tag", inputs: { intent: "intent", label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
947
+ };
948
+ EdsTag = __decorate([
949
+ ProxyCmp({
950
+ inputs: ['intent', 'label']
951
+ }),
952
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
953
+ ], EdsTag);
954
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsTag, decorators: [{
955
+ type: Component,
956
+ args: [{
957
+ selector: 'eds-tag',
958
+ changeDetection: ChangeDetectionStrategy.OnPush,
959
+ template: '<ng-content></ng-content>',
960
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
961
+ inputs: ['intent', 'label'],
962
+ }]
963
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
964
+ let EdsToast = class EdsToast {
965
+ z;
966
+ el;
967
+ constructor(c, r, z) {
968
+ this.z = z;
969
+ c.detach();
970
+ this.el = r.nativeElement;
971
+ }
972
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
973
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsToast, selector: "eds-toast", inputs: { duration: "duration", intent: "intent", message: "message" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
974
+ };
975
+ EdsToast = __decorate([
976
+ ProxyCmp({
977
+ inputs: ['duration', 'intent', 'message']
978
+ }),
979
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
980
+ ], EdsToast);
981
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsToast, decorators: [{
982
+ type: Component,
983
+ args: [{
984
+ selector: 'eds-toast',
985
+ changeDetection: ChangeDetectionStrategy.OnPush,
986
+ template: '<ng-content></ng-content>',
987
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
988
+ inputs: ['duration', 'intent', 'message'],
989
+ }]
990
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
991
+ let EdsToastManager = class EdsToastManager {
992
+ z;
993
+ el;
994
+ constructor(c, r, z) {
995
+ this.z = z;
996
+ c.detach();
997
+ this.el = r.nativeElement;
998
+ }
999
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsToastManager, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1000
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsToastManager, selector: "eds-toast-manager", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1001
+ };
1002
+ EdsToastManager = __decorate([
1003
+ ProxyCmp({}),
1004
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1005
+ ], EdsToastManager);
1006
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsToastManager, decorators: [{
1007
+ type: Component,
1008
+ args: [{
1009
+ selector: 'eds-toast-manager',
1010
+ changeDetection: ChangeDetectionStrategy.OnPush,
1011
+ template: '<ng-content></ng-content>',
1012
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1013
+ inputs: [],
1014
+ }]
1015
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1016
+ let EdsTooltip = class EdsTooltip {
1017
+ z;
1018
+ el;
1019
+ constructor(c, r, z) {
1020
+ this.z = z;
1021
+ c.detach();
1022
+ this.el = r.nativeElement;
1023
+ }
1024
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1025
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsTooltip, selector: "eds-tooltip", inputs: { content: "content", position: "position" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1026
+ };
1027
+ EdsTooltip = __decorate([
1028
+ ProxyCmp({
1029
+ inputs: ['content', 'position']
1030
+ }),
1031
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1032
+ ], EdsTooltip);
1033
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsTooltip, decorators: [{
1034
+ type: Component,
1035
+ args: [{
1036
+ selector: 'eds-tooltip',
1037
+ changeDetection: ChangeDetectionStrategy.OnPush,
1038
+ template: '<ng-content></ng-content>',
1039
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1040
+ inputs: ['content', 'position'],
1041
+ }]
1042
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1043
+ let EdsUser = class EdsUser {
1044
+ z;
1045
+ el;
1046
+ constructor(c, r, z) {
1047
+ this.z = z;
1048
+ c.detach();
1049
+ this.el = r.nativeElement;
1050
+ proxyOutputs(this, this.el, ['authStatusChanged']);
1051
+ }
1052
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsUser, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1053
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsUser, selector: "eds-user", inputs: { keycloakClientId: "keycloakClientId", keycloakRealm: "keycloakRealm", keycloakUrl: "keycloakUrl" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1054
+ };
1055
+ EdsUser = __decorate([
1056
+ ProxyCmp({
1057
+ inputs: ['keycloakClientId', 'keycloakRealm', 'keycloakUrl']
1058
+ }),
1059
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1060
+ ], EdsUser);
1061
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsUser, decorators: [{
1062
+ type: Component,
1063
+ args: [{
1064
+ selector: 'eds-user',
1065
+ changeDetection: ChangeDetectionStrategy.OnPush,
1066
+ template: '<ng-content></ng-content>',
1067
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1068
+ inputs: ['keycloakClientId', 'keycloakRealm', 'keycloakUrl'],
1069
+ }]
1070
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1071
+
1072
+ /**
1073
+ * Generated bundle index. Do not edit.
1074
+ */
1075
+
1076
+ export { EdsAccordion, EdsAlert, EdsAvatar, EdsBlockBreak, EdsBreadcrumb, EdsButton, EdsCardDesc, EdsCardGeneric, EdsCardSection, EdsCodeBlock, EdsDropdown, EdsFooter, EdsForm, EdsFrame, EdsFullscreenMenu, EdsHeader, EdsIconWrapper, EdsImg, EdsInputField, EdsLink, EdsLogin, EdsLogo, EdsMatomoNotice, EdsModal, EdsPagination, EdsProgressBar, EdsRating, EdsSectionCore, EdsSectionHeading, EdsSocialNetworks, EdsTable, EdsTabs, EdsTag, EdsToast, EdsToastManager, EdsTooltip, EdsUser };
1077
+ //# sourceMappingURL=ebrains-angular.mjs.map