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