@ebrains/angular 0.9.2-beta → 1.0.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,1257 @@
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-gauge.js';
20
+ import { defineCustomElement as defineCustomElement$g } from '@ebrains/components/dist/components/eds-header.js';
21
+ import { defineCustomElement as defineCustomElement$h } from '@ebrains/components/dist/components/eds-icon-wrapper.js';
22
+ import { defineCustomElement as defineCustomElement$i } from '@ebrains/components/dist/components/eds-img.js';
23
+ import { defineCustomElement as defineCustomElement$j } from '@ebrains/components/dist/components/eds-input-field.js';
24
+ import { defineCustomElement as defineCustomElement$k } from '@ebrains/components/dist/components/eds-link.js';
25
+ import { defineCustomElement as defineCustomElement$l } from '@ebrains/components/dist/components/eds-logo.js';
26
+ import { defineCustomElement as defineCustomElement$m } from '@ebrains/components/dist/components/eds-matomo-notice.js';
27
+ import { defineCustomElement as defineCustomElement$n } from '@ebrains/components/dist/components/eds-modal.js';
28
+ import { defineCustomElement as defineCustomElement$o } from '@ebrains/components/dist/components/eds-pagination.js';
29
+ import { defineCustomElement as defineCustomElement$p } from '@ebrains/components/dist/components/eds-pie.js';
30
+ import { defineCustomElement as defineCustomElement$q } from '@ebrains/components/dist/components/eds-progress-bar.js';
31
+ import { defineCustomElement as defineCustomElement$r } from '@ebrains/components/dist/components/eds-rating.js';
32
+ import { defineCustomElement as defineCustomElement$s } from '@ebrains/components/dist/components/eds-social-networks.js';
33
+ import { defineCustomElement as defineCustomElement$t } from '@ebrains/components/dist/components/eds-spinner.js';
34
+ import { defineCustomElement as defineCustomElement$u } from '@ebrains/components/dist/components/eds-splash-screen.js';
35
+ import { defineCustomElement as defineCustomElement$v } from '@ebrains/components/dist/components/eds-steps.js';
36
+ import { defineCustomElement as defineCustomElement$w } from '@ebrains/components/dist/components/eds-steps-v2.js';
37
+ import { defineCustomElement as defineCustomElement$x } from '@ebrains/components/dist/components/eds-switch.js';
38
+ import { defineCustomElement as defineCustomElement$y } from '@ebrains/components/dist/components/eds-table.js';
39
+ import { defineCustomElement as defineCustomElement$z } from '@ebrains/components/dist/components/eds-tabs.js';
40
+ import { defineCustomElement as defineCustomElement$A } from '@ebrains/components/dist/components/eds-tag.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: { inverse: "inverse" }, 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: ['inverse']
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: ['inverse'],
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", headingLevel: "headingLevel", 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', 'headingLevel', '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', 'headingLevel', '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: { backToTopAriaLabel: "backToTopAriaLabel", cookiesPreferences: "cookiesPreferences", 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: ['backToTopAriaLabel', 'cookiesPreferences', '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: ['backToTopAriaLabel', 'cookiesPreferences', '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
+ methods: ['getData']
472
+ }),
473
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
474
+ ], EdsForm);
475
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsForm, decorators: [{
476
+ type: Component,
477
+ args: [{
478
+ selector: 'eds-form',
479
+ changeDetection: ChangeDetectionStrategy.OnPush,
480
+ template: '<ng-content></ng-content>',
481
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
482
+ inputs: ['errorMessage', 'fields', 'formBtn', 'formBtnLabel', 'initData', 'name', 'setFormUrl'],
483
+ standalone: true
484
+ }]
485
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
486
+ let EdsFullscreenMenu = class EdsFullscreenMenu {
487
+ z;
488
+ el;
489
+ constructor(c, r, z) {
490
+ this.z = z;
491
+ c.detach();
492
+ this.el = r.nativeElement;
493
+ proxyOutputs(this, this.el, ['menuClose']);
494
+ }
495
+ 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 });
496
+ 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 });
497
+ };
498
+ EdsFullscreenMenu = __decorate([
499
+ ProxyCmp({
500
+ defineCustomElementFn: defineCustomElement$e,
501
+ inputs: ['homeUrl', 'inverseHeader', 'links', 'menuLinks']
502
+ }),
503
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
504
+ ], EdsFullscreenMenu);
505
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsFullscreenMenu, decorators: [{
506
+ type: Component,
507
+ args: [{
508
+ selector: 'eds-fullscreen-menu',
509
+ changeDetection: ChangeDetectionStrategy.OnPush,
510
+ template: '<ng-content></ng-content>',
511
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
512
+ inputs: ['homeUrl', 'inverseHeader', 'links', 'menuLinks'],
513
+ standalone: true
514
+ }]
515
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
516
+ let EdsGauge = class EdsGauge {
517
+ z;
518
+ el;
519
+ constructor(c, r, z) {
520
+ this.z = z;
521
+ c.detach();
522
+ this.el = r.nativeElement;
523
+ }
524
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsGauge, 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: EdsGauge, isStandalone: true, selector: "eds-gauge", inputs: { size: "size", thickness: "thickness", value: "value", valueMax: "valueMax", valueMin: "valueMin", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
526
+ };
527
+ EdsGauge = __decorate([
528
+ ProxyCmp({
529
+ defineCustomElementFn: defineCustomElement$f,
530
+ inputs: ['size', 'thickness', 'value', 'valueMax', 'valueMin', 'variant']
531
+ }),
532
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
533
+ ], EdsGauge);
534
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsGauge, decorators: [{
535
+ type: Component,
536
+ args: [{
537
+ selector: 'eds-gauge',
538
+ changeDetection: ChangeDetectionStrategy.OnPush,
539
+ template: '<ng-content></ng-content>',
540
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
541
+ inputs: ['size', 'thickness', 'value', 'valueMax', 'valueMin', 'variant'],
542
+ standalone: true
543
+ }]
544
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
545
+ let EdsHeader = class EdsHeader {
546
+ z;
547
+ el;
548
+ constructor(c, r, z) {
549
+ this.z = z;
550
+ c.detach();
551
+ this.el = r.nativeElement;
552
+ proxyOutputs(this, this.el, ['toggleheadermenu']);
553
+ }
554
+ 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 });
555
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsHeader, isStandalone: true, selector: "eds-header", inputs: { headerVariant: "headerVariant", homeUrl: "homeUrl", links: "links", menuEnabled: "menuEnabled" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
556
+ };
557
+ EdsHeader = __decorate([
558
+ ProxyCmp({
559
+ defineCustomElementFn: defineCustomElement$g,
560
+ inputs: ['headerVariant', 'homeUrl', 'links', 'menuEnabled']
561
+ }),
562
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
563
+ ], EdsHeader);
564
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsHeader, decorators: [{
565
+ type: Component,
566
+ args: [{
567
+ selector: 'eds-header',
568
+ changeDetection: ChangeDetectionStrategy.OnPush,
569
+ template: '<ng-content></ng-content>',
570
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
571
+ inputs: ['headerVariant', 'homeUrl', 'links', 'menuEnabled'],
572
+ standalone: true
573
+ }]
574
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
575
+ let EdsIconWrapper = class EdsIconWrapper {
576
+ z;
577
+ el;
578
+ constructor(c, r, z) {
579
+ this.z = z;
580
+ c.detach();
581
+ this.el = r.nativeElement;
582
+ }
583
+ 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 });
584
+ 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 });
585
+ };
586
+ EdsIconWrapper = __decorate([
587
+ ProxyCmp({
588
+ defineCustomElementFn: defineCustomElement$h,
589
+ inputs: ['class', 'icon']
590
+ }),
591
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
592
+ ], EdsIconWrapper);
593
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsIconWrapper, decorators: [{
594
+ type: Component,
595
+ args: [{
596
+ selector: 'eds-icon-wrapper',
597
+ changeDetection: ChangeDetectionStrategy.OnPush,
598
+ template: '<ng-content></ng-content>',
599
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
600
+ inputs: ['class', 'icon'],
601
+ standalone: true
602
+ }]
603
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
604
+ let EdsImg = class EdsImg {
605
+ z;
606
+ el;
607
+ constructor(c, r, z) {
608
+ this.z = z;
609
+ c.detach();
610
+ this.el = r.nativeElement;
611
+ }
612
+ 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 });
613
+ 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 });
614
+ };
615
+ EdsImg = __decorate([
616
+ ProxyCmp({
617
+ defineCustomElementFn: defineCustomElement$i,
618
+ inputs: ['alt', 'formats', 'height', 'lazyload', 'sizes', 'src', 'srcset', 'width', 'withBg']
619
+ }),
620
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
621
+ ], EdsImg);
622
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsImg, decorators: [{
623
+ type: Component,
624
+ args: [{
625
+ selector: 'eds-img',
626
+ changeDetection: ChangeDetectionStrategy.OnPush,
627
+ template: '<ng-content></ng-content>',
628
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
629
+ inputs: ['alt', 'formats', 'height', 'lazyload', 'sizes', 'src', 'srcset', 'width', 'withBg'],
630
+ standalone: true
631
+ }]
632
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
633
+ let EdsInputField = class EdsInputField {
634
+ z;
635
+ el;
636
+ constructor(c, r, z) {
637
+ this.z = z;
638
+ c.detach();
639
+ this.el = r.nativeElement;
640
+ }
641
+ 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 });
642
+ 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", exposeValueEvents: "exposeValueEvents", 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 });
643
+ };
644
+ EdsInputField = __decorate([
645
+ ProxyCmp({
646
+ defineCustomElementFn: defineCustomElement$j,
647
+ inputs: ['checked', 'disabled', 'error', 'errorMessage', 'exposeValueEvents', 'hint', 'icon', 'inputId', 'label', 'link', 'maxLength', 'message', 'name', 'onChange', 'onInput', 'options', 'placeholder', 'required', 'type', 'value']
648
+ }),
649
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
650
+ ], EdsInputField);
651
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsInputField, decorators: [{
652
+ type: Component,
653
+ args: [{
654
+ selector: 'eds-input-field',
655
+ changeDetection: ChangeDetectionStrategy.OnPush,
656
+ template: '<ng-content></ng-content>',
657
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
658
+ inputs: ['checked', 'disabled', 'error', 'errorMessage', 'exposeValueEvents', 'hint', 'icon', 'inputId', 'label', 'link', 'maxLength', 'message', 'name', 'onChange', 'onInput', 'options', 'placeholder', 'required', 'type', 'value'],
659
+ standalone: true
660
+ }]
661
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
662
+ let EdsLink = class EdsLink {
663
+ z;
664
+ el;
665
+ constructor(c, r, z) {
666
+ this.z = z;
667
+ c.detach();
668
+ this.el = r.nativeElement;
669
+ }
670
+ 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 });
671
+ 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 });
672
+ };
673
+ EdsLink = __decorate([
674
+ ProxyCmp({
675
+ defineCustomElementFn: defineCustomElement$k,
676
+ inputs: ['ariaLabel', 'current', 'disabled', 'download', 'external', 'extraClass', 'hideLabelOnSmallScreen', 'icon', 'iconPos', 'iconSmall', 'intent', 'label', 'size', 'url']
677
+ }),
678
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
679
+ ], EdsLink);
680
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsLink, decorators: [{
681
+ type: Component,
682
+ args: [{
683
+ selector: 'eds-link',
684
+ changeDetection: ChangeDetectionStrategy.OnPush,
685
+ template: '<ng-content></ng-content>',
686
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
687
+ inputs: ['ariaLabel', 'current', 'disabled', 'download', 'external', 'extraClass', 'hideLabelOnSmallScreen', 'icon', 'iconPos', 'iconSmall', 'intent', 'label', 'size', 'url'],
688
+ standalone: true
689
+ }]
690
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
691
+ let EdsLogo = class EdsLogo {
692
+ z;
693
+ el;
694
+ constructor(c, r, z) {
695
+ this.z = z;
696
+ c.detach();
697
+ this.el = r.nativeElement;
698
+ }
699
+ 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 });
700
+ 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 });
701
+ };
702
+ EdsLogo = __decorate([
703
+ ProxyCmp({
704
+ defineCustomElementFn: defineCustomElement$l,
705
+ inputs: ['href', 'label', 'orientation', 'type']
706
+ }),
707
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
708
+ ], EdsLogo);
709
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsLogo, decorators: [{
710
+ type: Component,
711
+ args: [{
712
+ selector: 'eds-logo',
713
+ changeDetection: ChangeDetectionStrategy.OnPush,
714
+ template: '<ng-content></ng-content>',
715
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
716
+ inputs: ['href', 'label', 'orientation', 'type'],
717
+ standalone: true
718
+ }]
719
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
720
+ let EdsMatomoNotice = class EdsMatomoNotice {
721
+ z;
722
+ el;
723
+ constructor(c, r, z) {
724
+ this.z = z;
725
+ c.detach();
726
+ this.el = r.nativeElement;
727
+ proxyOutputs(this, this.el, ['consent']);
728
+ }
729
+ 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 });
730
+ 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 });
731
+ };
732
+ EdsMatomoNotice = __decorate([
733
+ ProxyCmp({
734
+ defineCustomElementFn: defineCustomElement$m,
735
+ inputs: ['description', 'forceShow', 'heading', 'optOutMessage']
736
+ }),
737
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
738
+ ], EdsMatomoNotice);
739
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsMatomoNotice, decorators: [{
740
+ type: Component,
741
+ args: [{
742
+ selector: 'eds-matomo-notice',
743
+ changeDetection: ChangeDetectionStrategy.OnPush,
744
+ template: '<ng-content></ng-content>',
745
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
746
+ inputs: ['description', 'forceShow', 'heading', 'optOutMessage'],
747
+ standalone: true
748
+ }]
749
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
750
+ let EdsModal = class EdsModal {
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: EdsModal, 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: 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 });
760
+ };
761
+ EdsModal = __decorate([
762
+ ProxyCmp({
763
+ defineCustomElementFn: defineCustomElement$n,
764
+ inputs: ['heading', 'inverseHeader', 'position', 'truncate'],
765
+ methods: ['open', 'close', 'toggle']
766
+ }),
767
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
768
+ ], EdsModal);
769
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsModal, decorators: [{
770
+ type: Component,
771
+ args: [{
772
+ selector: 'eds-modal',
773
+ changeDetection: ChangeDetectionStrategy.OnPush,
774
+ template: '<ng-content></ng-content>',
775
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
776
+ inputs: ['heading', 'inverseHeader', 'position', 'truncate'],
777
+ standalone: true
778
+ }]
779
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
780
+ let EdsPagination = class EdsPagination {
781
+ z;
782
+ el;
783
+ constructor(c, r, z) {
784
+ this.z = z;
785
+ c.detach();
786
+ this.el = r.nativeElement;
787
+ }
788
+ 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 });
789
+ 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 });
790
+ };
791
+ EdsPagination = __decorate([
792
+ ProxyCmp({
793
+ defineCustomElementFn: defineCustomElement$o,
794
+ inputs: ['currentPage', 'lastPage', 'mode', 'nextLabel', 'nextUrl', 'perPage', 'prevLabel', 'prevUrl', 'total', 'url']
795
+ }),
796
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
797
+ ], EdsPagination);
798
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsPagination, decorators: [{
799
+ type: Component,
800
+ args: [{
801
+ selector: 'eds-pagination',
802
+ changeDetection: ChangeDetectionStrategy.OnPush,
803
+ template: '<ng-content></ng-content>',
804
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
805
+ inputs: ['currentPage', 'lastPage', 'mode', 'nextLabel', 'nextUrl', 'perPage', 'prevLabel', 'prevUrl', 'total', 'url'],
806
+ standalone: true
807
+ }]
808
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
809
+ let EdsPie = class EdsPie {
810
+ z;
811
+ el;
812
+ constructor(c, r, z) {
813
+ this.z = z;
814
+ c.detach();
815
+ this.el = r.nativeElement;
816
+ }
817
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsPie, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
818
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsPie, isStandalone: true, selector: "eds-pie", inputs: { colorScheme: "colorScheme", display: "display", legend: "legend", size: "size", slices: "slices", thickness: "thickness" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
819
+ };
820
+ EdsPie = __decorate([
821
+ ProxyCmp({
822
+ defineCustomElementFn: defineCustomElement$p,
823
+ inputs: ['colorScheme', 'display', 'legend', 'size', 'slices', 'thickness']
824
+ }),
825
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
826
+ ], EdsPie);
827
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsPie, decorators: [{
828
+ type: Component,
829
+ args: [{
830
+ selector: 'eds-pie',
831
+ changeDetection: ChangeDetectionStrategy.OnPush,
832
+ template: '<ng-content></ng-content>',
833
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
834
+ inputs: ['colorScheme', 'display', 'legend', 'size', 'slices', 'thickness'],
835
+ standalone: true
836
+ }]
837
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
838
+ let EdsProgressBar = class EdsProgressBar {
839
+ z;
840
+ el;
841
+ constructor(c, r, z) {
842
+ this.z = z;
843
+ c.detach();
844
+ this.el = r.nativeElement;
845
+ }
846
+ 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 });
847
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsProgressBar, isStandalone: true, selector: "eds-progress-bar", inputs: { rounded: "rounded", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
848
+ };
849
+ EdsProgressBar = __decorate([
850
+ ProxyCmp({
851
+ defineCustomElementFn: defineCustomElement$q,
852
+ inputs: ['rounded', 'value'],
853
+ methods: ['updateValue']
854
+ }),
855
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
856
+ ], EdsProgressBar);
857
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsProgressBar, decorators: [{
858
+ type: Component,
859
+ args: [{
860
+ selector: 'eds-progress-bar',
861
+ changeDetection: ChangeDetectionStrategy.OnPush,
862
+ template: '<ng-content></ng-content>',
863
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
864
+ inputs: ['rounded', 'value'],
865
+ standalone: true
866
+ }]
867
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
868
+ let EdsRating = class EdsRating {
869
+ z;
870
+ el;
871
+ constructor(c, r, z) {
872
+ this.z = z;
873
+ c.detach();
874
+ this.el = r.nativeElement;
875
+ proxyOutputs(this, this.el, ['rating']);
876
+ }
877
+ 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 });
878
+ 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 });
879
+ };
880
+ EdsRating = __decorate([
881
+ ProxyCmp({
882
+ defineCustomElementFn: defineCustomElement$r,
883
+ inputs: ['ratingCount', 'ratingType']
884
+ }),
885
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
886
+ ], EdsRating);
887
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsRating, decorators: [{
888
+ type: Component,
889
+ args: [{
890
+ selector: 'eds-rating',
891
+ changeDetection: ChangeDetectionStrategy.OnPush,
892
+ template: '<ng-content></ng-content>',
893
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
894
+ inputs: ['ratingCount', 'ratingType'],
895
+ standalone: true
896
+ }]
897
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
898
+ let EdsSocialNetworks = class EdsSocialNetworks {
899
+ z;
900
+ el;
901
+ constructor(c, r, z) {
902
+ this.z = z;
903
+ c.detach();
904
+ this.el = r.nativeElement;
905
+ }
906
+ 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 });
907
+ 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 });
908
+ };
909
+ EdsSocialNetworks = __decorate([
910
+ ProxyCmp({
911
+ defineCustomElementFn: defineCustomElement$s,
912
+ inputs: ['heading']
913
+ }),
914
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
915
+ ], EdsSocialNetworks);
916
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsSocialNetworks, decorators: [{
917
+ type: Component,
918
+ args: [{
919
+ selector: 'eds-social-networks',
920
+ changeDetection: ChangeDetectionStrategy.OnPush,
921
+ template: '<ng-content></ng-content>',
922
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
923
+ inputs: ['heading'],
924
+ standalone: true
925
+ }]
926
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
927
+ let EdsSpinner = class EdsSpinner {
928
+ z;
929
+ el;
930
+ constructor(c, r, z) {
931
+ this.z = z;
932
+ c.detach();
933
+ this.el = r.nativeElement;
934
+ }
935
+ 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 });
936
+ 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 });
937
+ };
938
+ EdsSpinner = __decorate([
939
+ ProxyCmp({
940
+ defineCustomElementFn: defineCustomElement$t,
941
+ inputs: ['background', 'borderColor', 'bottomColor', 'fullscreen', 'size', 'thickness']
942
+ }),
943
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
944
+ ], EdsSpinner);
945
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsSpinner, decorators: [{
946
+ type: Component,
947
+ args: [{
948
+ selector: 'eds-spinner',
949
+ changeDetection: ChangeDetectionStrategy.OnPush,
950
+ template: '<ng-content></ng-content>',
951
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
952
+ inputs: ['background', 'borderColor', 'bottomColor', 'fullscreen', 'size', 'thickness'],
953
+ standalone: true
954
+ }]
955
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
956
+ let EdsSplashScreen = class EdsSplashScreen {
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, ['splash']);
964
+ }
965
+ 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 });
966
+ 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 });
967
+ };
968
+ EdsSplashScreen = __decorate([
969
+ ProxyCmp({
970
+ defineCustomElementFn: defineCustomElement$u,
971
+ inputs: ['initPromise', 'inverse']
972
+ }),
973
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
974
+ ], EdsSplashScreen);
975
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsSplashScreen, decorators: [{
976
+ type: Component,
977
+ args: [{
978
+ selector: 'eds-splash-screen',
979
+ changeDetection: ChangeDetectionStrategy.OnPush,
980
+ template: '<ng-content></ng-content>',
981
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
982
+ inputs: ['initPromise', 'inverse'],
983
+ standalone: true
984
+ }]
985
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
986
+ let EdsSteps = class EdsSteps {
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: EdsSteps, 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: EdsSteps, isStandalone: true, selector: "eds-steps", inputs: { steps: "steps", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
997
+ };
998
+ EdsSteps = __decorate([
999
+ ProxyCmp({
1000
+ defineCustomElementFn: defineCustomElement$v,
1001
+ inputs: ['steps', 'type']
1002
+ }),
1003
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1004
+ ], EdsSteps);
1005
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsSteps, decorators: [{
1006
+ type: Component,
1007
+ args: [{
1008
+ selector: 'eds-steps',
1009
+ changeDetection: ChangeDetectionStrategy.OnPush,
1010
+ template: '<ng-content></ng-content>',
1011
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1012
+ inputs: ['steps', 'type'],
1013
+ standalone: true
1014
+ }]
1015
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1016
+ let EdsStepsV2 = class EdsStepsV2 {
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, ['step']);
1024
+ }
1025
+ 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 });
1026
+ 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 });
1027
+ };
1028
+ EdsStepsV2 = __decorate([
1029
+ ProxyCmp({
1030
+ defineCustomElementFn: defineCustomElement$w,
1031
+ inputs: ['bg', 'imageSrc', 'message', 'steps', 'type']
1032
+ }),
1033
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1034
+ ], EdsStepsV2);
1035
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsStepsV2, decorators: [{
1036
+ type: Component,
1037
+ args: [{
1038
+ selector: 'eds-steps-v2',
1039
+ changeDetection: ChangeDetectionStrategy.OnPush,
1040
+ template: '<ng-content></ng-content>',
1041
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1042
+ inputs: ['bg', 'imageSrc', 'message', 'steps', 'type'],
1043
+ standalone: true
1044
+ }]
1045
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1046
+ let EdsSwitch = class EdsSwitch {
1047
+ z;
1048
+ el;
1049
+ constructor(c, r, z) {
1050
+ this.z = z;
1051
+ c.detach();
1052
+ this.el = r.nativeElement;
1053
+ proxyOutputs(this, this.el, ['uiswitch']);
1054
+ }
1055
+ 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 });
1056
+ 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 });
1057
+ };
1058
+ EdsSwitch = __decorate([
1059
+ ProxyCmp({
1060
+ defineCustomElementFn: defineCustomElement$x,
1061
+ inputs: ['checked', 'disabled', 'labelOff', 'labelOn']
1062
+ }),
1063
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1064
+ ], EdsSwitch);
1065
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsSwitch, decorators: [{
1066
+ type: Component,
1067
+ args: [{
1068
+ selector: 'eds-switch',
1069
+ changeDetection: ChangeDetectionStrategy.OnPush,
1070
+ template: '<ng-content></ng-content>',
1071
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1072
+ inputs: ['checked', 'disabled', 'labelOff', 'labelOn'],
1073
+ standalone: true
1074
+ }]
1075
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1076
+ let EdsTable = class EdsTable {
1077
+ z;
1078
+ el;
1079
+ constructor(c, r, z) {
1080
+ this.z = z;
1081
+ c.detach();
1082
+ this.el = r.nativeElement;
1083
+ }
1084
+ 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 });
1085
+ 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 });
1086
+ };
1087
+ EdsTable = __decorate([
1088
+ ProxyCmp({
1089
+ defineCustomElementFn: defineCustomElement$y,
1090
+ inputs: ['columnSize', 'config', 'data', 'endpoint', 'hostWidth', 'paginationEnabled', 'rowsPerPage', 'searchEnabled']
1091
+ }),
1092
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1093
+ ], EdsTable);
1094
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsTable, decorators: [{
1095
+ type: Component,
1096
+ args: [{
1097
+ selector: 'eds-table',
1098
+ changeDetection: ChangeDetectionStrategy.OnPush,
1099
+ template: '<ng-content></ng-content>',
1100
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1101
+ inputs: ['columnSize', 'config', 'data', 'endpoint', 'hostWidth', 'paginationEnabled', 'rowsPerPage', 'searchEnabled'],
1102
+ standalone: true
1103
+ }]
1104
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1105
+ let EdsTabs = class EdsTabs {
1106
+ z;
1107
+ el;
1108
+ constructor(c, r, z) {
1109
+ this.z = z;
1110
+ c.detach();
1111
+ this.el = r.nativeElement;
1112
+ proxyOutputs(this, this.el, ['tab']);
1113
+ }
1114
+ 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 });
1115
+ 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 });
1116
+ };
1117
+ EdsTabs = __decorate([
1118
+ ProxyCmp({
1119
+ defineCustomElementFn: defineCustomElement$z,
1120
+ inputs: ['identifier', 'navAriaLabel', 'tabs']
1121
+ }),
1122
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1123
+ ], EdsTabs);
1124
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsTabs, decorators: [{
1125
+ type: Component,
1126
+ args: [{
1127
+ selector: 'eds-tabs',
1128
+ changeDetection: ChangeDetectionStrategy.OnPush,
1129
+ template: '<ng-content></ng-content>',
1130
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1131
+ inputs: ['identifier', 'navAriaLabel', 'tabs'],
1132
+ standalone: true
1133
+ }]
1134
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1135
+ let EdsTag = class EdsTag {
1136
+ z;
1137
+ el;
1138
+ constructor(c, r, z) {
1139
+ this.z = z;
1140
+ c.detach();
1141
+ this.el = r.nativeElement;
1142
+ }
1143
+ 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 });
1144
+ 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 });
1145
+ };
1146
+ EdsTag = __decorate([
1147
+ ProxyCmp({
1148
+ defineCustomElementFn: defineCustomElement$A,
1149
+ inputs: ['intent', 'label', 'size']
1150
+ }),
1151
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1152
+ ], EdsTag);
1153
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsTag, decorators: [{
1154
+ type: Component,
1155
+ args: [{
1156
+ selector: 'eds-tag',
1157
+ changeDetection: ChangeDetectionStrategy.OnPush,
1158
+ template: '<ng-content></ng-content>',
1159
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1160
+ inputs: ['intent', 'label', 'size'],
1161
+ standalone: true
1162
+ }]
1163
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1164
+ let EdsToast = class EdsToast {
1165
+ z;
1166
+ el;
1167
+ constructor(c, r, z) {
1168
+ this.z = z;
1169
+ c.detach();
1170
+ this.el = r.nativeElement;
1171
+ }
1172
+ 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 });
1173
+ 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 });
1174
+ };
1175
+ EdsToast = __decorate([
1176
+ ProxyCmp({
1177
+ defineCustomElementFn: defineCustomElement$B,
1178
+ inputs: ['duration', 'intent', 'message']
1179
+ }),
1180
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1181
+ ], EdsToast);
1182
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsToast, decorators: [{
1183
+ type: Component,
1184
+ args: [{
1185
+ selector: 'eds-toast',
1186
+ changeDetection: ChangeDetectionStrategy.OnPush,
1187
+ template: '<ng-content></ng-content>',
1188
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1189
+ inputs: ['duration', 'intent', 'message'],
1190
+ standalone: true
1191
+ }]
1192
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1193
+ let EdsTooltip = class EdsTooltip {
1194
+ z;
1195
+ el;
1196
+ constructor(c, r, z) {
1197
+ this.z = z;
1198
+ c.detach();
1199
+ this.el = r.nativeElement;
1200
+ }
1201
+ 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 });
1202
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.7", type: EdsTooltip, isStandalone: true, selector: "eds-tooltip", inputs: { content: "content" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1203
+ };
1204
+ EdsTooltip = __decorate([
1205
+ ProxyCmp({
1206
+ defineCustomElementFn: defineCustomElement$C,
1207
+ inputs: ['content']
1208
+ }),
1209
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1210
+ ], EdsTooltip);
1211
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsTooltip, decorators: [{
1212
+ type: Component,
1213
+ args: [{
1214
+ selector: 'eds-tooltip',
1215
+ changeDetection: ChangeDetectionStrategy.OnPush,
1216
+ template: '<ng-content></ng-content>',
1217
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1218
+ inputs: ['content'],
1219
+ standalone: true
1220
+ }]
1221
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1222
+ let EdsUser = class EdsUser {
1223
+ z;
1224
+ el;
1225
+ constructor(c, r, z) {
1226
+ this.z = z;
1227
+ c.detach();
1228
+ this.el = r.nativeElement;
1229
+ }
1230
+ 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 });
1231
+ 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 });
1232
+ };
1233
+ EdsUser = __decorate([
1234
+ ProxyCmp({
1235
+ defineCustomElementFn: defineCustomElement$D,
1236
+ inputs: ['user']
1237
+ }),
1238
+ __metadata("design:paramtypes", [ChangeDetectorRef, ElementRef, NgZone])
1239
+ ], EdsUser);
1240
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.7", ngImport: i0, type: EdsUser, decorators: [{
1241
+ type: Component,
1242
+ args: [{
1243
+ selector: 'eds-user',
1244
+ changeDetection: ChangeDetectionStrategy.OnPush,
1245
+ template: '<ng-content></ng-content>',
1246
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1247
+ inputs: ['user'],
1248
+ standalone: true
1249
+ }]
1250
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1251
+
1252
+ /**
1253
+ * Generated bundle index. Do not edit.
1254
+ */
1255
+
1256
+ export { EdsAccordion, EdsAlert, EdsAvatar, EdsBlockBreak, EdsBreadcrumb, EdsButton, EdsCardGeneric, EdsCardSection, EdsCodeBlock, EdsDropdown, EdsFeedback, EdsFooter, EdsForm, EdsFullscreenMenu, EdsGauge, EdsHeader, EdsIconWrapper, EdsImg, EdsInputField, EdsLink, EdsLogo, EdsMatomoNotice, EdsModal, EdsPagination, EdsPie, EdsProgressBar, EdsRating, EdsSocialNetworks, EdsSpinner, EdsSplashScreen, EdsSteps, EdsStepsV2, EdsSwitch, EdsTable, EdsTabs, EdsTag, EdsToast, EdsTooltip, EdsUser };
1257
+ //# sourceMappingURL=ebrains-angular.mjs.map