@ebrains/angular 0.9.2-beta → 0.9.3-beta

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