@maggioli-design-system/magma-angular 2.0.0-beta.1 → 2.0.0-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -1,5 +1,3512 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="@maggioli-design-system/magma-angular" />
5
- export * from './public-api';
1
+ import * as i0 from '@angular/core';
2
+ import { NgZone, EventEmitter, ChangeDetectorRef, ElementRef, ModuleWithProviders } from '@angular/core';
3
+ import { Components, MdsAccordionCustomEvent, MdsAccordionEventDetail, MdsAccordionItemCustomEvent, MdsAccordionItemEventDetail, MdsAccordionTimerCustomEvent, MdsAccordionTimerEventDetail, MdsAccordionTimerItemCustomEvent, MdsAccordionTimerItemEventDetail, MdsBannerCustomEvent, MdsBreadcrumbCustomEvent, MdsBreadcrumbEventDetail, MdsBreadcrumbItemCustomEvent, MdsBreadcrumbItemEventDetail, MdsCalendarCustomEvent, MdsChipCustomEvent, MdsChipEvent, MdsDetailsCustomEvent, MdsDropdownCustomEvent, MdsDropdownEventDetail, MdsFileCustomEvent, MdsFileEventDetail, MdsFilePreviewCustomEvent, MdsFilePreviewEventDetail, MdsFilterCustomEvent, MdsFilterEventDetail, MdsFilterItemCustomEvent, MdsFilterItemEventDetail, MdsHeaderCustomEvent, MdsHeaderEventDetail, MdsHeaderVisibilityEventDetail, MdsHeaderBarCustomEvent, MdsImgCustomEvent, MdsImgEventDetail, MdsInputCustomEvent, MdsInputEventDetail, MdsInputDateCustomEvent, MdsInputDateRangeCustomEvent, MdsInputRangeCustomEvent, MdsInputSelectCustomEvent, MdsInputSwitchCustomEvent, MdsInputSwitchEventDetail, MdsInputUploadCustomEvent, MdsLabelCustomEvent, MdsModalCustomEvent, MdsNoteCustomEvent, MdsPaginatorCustomEvent, MdsPaginatorEventDetail, MdsPrefAnimationCustomEvent, MdsPrefChangeEventDetail, MdsPrefConsumptionCustomEvent, MdsPrefContrastCustomEvent, MdsPrefLanguageCustomEvent, MdsPrefLanguageEventDetail, MdsPrefLanguageItemCustomEvent, MdsPrefThemeCustomEvent, MdsPrefThemeVariantCustomEvent, MdsPrefThemeVariantEventDetail, MdsPrefThemeVariantItemCustomEvent, MdsPushNotificationCustomEvent, MdsPushNotificationEventDetail, MdsPushNotificationItemCustomEvent, MdsPushNotificationItemEventDetail, MdsStepperBarCustomEvent, MdsStepperBarEventDetail, MdsStepperBarItemCustomEvent, MdsStepperBarItemEventDetail, MdsTabCustomEvent, MdsTabEventDetail, MdsTabBarCustomEvent, MdsTabBarEventDetail, MdsTabBarItemCustomEvent, MdsTabItemCustomEvent, MdsTabItemEventDetail, MdsTableCustomEvent, MdsTableSelectionEventDetail, MdsToastCustomEvent, MdsTreeItemCustomEvent, MdsTreeItemEventDetail, MdsUrlViewCustomEvent } from '@maggioli-design-system/magma/dist/components';
4
+ import { ControlValueAccessor } from '@angular/forms';
5
+
6
+ declare class MdsAccordion {
7
+ protected z: NgZone;
8
+ protected el: HTMLMdsAccordionElement;
9
+ /**
10
+ * Choose if multiple siblings can be selected simultaneously @default false
11
+ */
12
+ set multiple(_: Components.MdsAccordion['multiple']);
13
+ /**
14
+ * Specifies if an item can be closed by user @default true
15
+ */
16
+ set closable(_: Components.MdsAccordion['closable']);
17
+ mdsAccordionChange: EventEmitter<MdsAccordionCustomEvent<MdsAccordionEventDetail>>;
18
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsAccordion, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsAccordion, "mds-accordion", never, { "closable": { "alias": "closable"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; }, { "mdsAccordionChange": "mdsAccordionChange"; }, never, ["*"], true, never>;
21
+ }
22
+ declare interface MdsAccordion extends Components.MdsAccordion {
23
+ /**
24
+ * Emits when the component attribute selected is changed
25
+ */
26
+ mdsAccordionChange: EventEmitter<MdsAccordionCustomEvent<MdsAccordionEventDetail>>;
27
+ }
28
+ declare class MdsAccordionItem {
29
+ protected z: NgZone;
30
+ protected el: HTMLMdsAccordionItemElement;
31
+ /**
32
+ * Specifies the typography of the element @default 'h5'
33
+ */
34
+ set typography(_: Components.MdsAccordionItem['typography']);
35
+ /**
36
+ * Specifies if the component item is selected or not
37
+ */
38
+ set selected(_: Components.MdsAccordionItem['selected']);
39
+ /**
40
+ * Specifies the title shown when the component is closed or selected
41
+ */
42
+ set label(_: Components.MdsAccordionItem['label']);
43
+ mdsAccordionItemSelect: EventEmitter<MdsAccordionItemCustomEvent<MdsAccordionItemEventDetail>>;
44
+ mdsAccordionItemUnselect: EventEmitter<MdsAccordionItemCustomEvent<MdsAccordionItemEventDetail>>;
45
+ mdsAccordionItemChange: EventEmitter<MdsAccordionItemCustomEvent<MdsAccordionItemEventDetail>>;
46
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
47
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsAccordionItem, never>;
48
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsAccordionItem, "mds-accordion-item", never, { "label": { "alias": "label"; "required": true; }; "selected": { "alias": "selected"; "required": false; }; "typography": { "alias": "typography"; "required": false; }; }, { "mdsAccordionItemSelect": "mdsAccordionItemSelect"; "mdsAccordionItemUnselect": "mdsAccordionItemUnselect"; "mdsAccordionItemChange": "mdsAccordionItemChange"; }, never, ["*"], true, never>;
49
+ }
50
+ declare interface MdsAccordionItem extends Components.MdsAccordionItem {
51
+ /**
52
+ * Emits when the component is selected
53
+ */
54
+ mdsAccordionItemSelect: EventEmitter<MdsAccordionItemCustomEvent<MdsAccordionItemEventDetail>>;
55
+ /**
56
+ * Emits when the component is unselected
57
+ */
58
+ mdsAccordionItemUnselect: EventEmitter<MdsAccordionItemCustomEvent<MdsAccordionItemEventDetail>>;
59
+ /**
60
+ * Emits when the component attribute selected is changed
61
+ */
62
+ mdsAccordionItemChange: EventEmitter<MdsAccordionItemCustomEvent<MdsAccordionItemEventDetail>>;
63
+ }
64
+ declare class MdsAccordionTimer {
65
+ protected z: NgZone;
66
+ protected el: HTMLMdsAccordionTimerElement;
67
+ /**
68
+ * Sets the duration of the single accordion item @default 10000
69
+ */
70
+ set duration(_: Components.MdsAccordionTimer['duration']);
71
+ /**
72
+ * When paused is defined, the timer stops run
73
+ */
74
+ set paused(_: Components.MdsAccordionTimer['paused']);
75
+ mdsAccordionTimerChange: EventEmitter<MdsAccordionTimerCustomEvent<MdsAccordionTimerEventDetail>>;
76
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
77
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsAccordionTimer, never>;
78
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsAccordionTimer, "mds-accordion-timer", never, { "duration": { "alias": "duration"; "required": false; }; "paused": { "alias": "paused"; "required": false; }; }, { "mdsAccordionTimerChange": "mdsAccordionTimerChange"; }, never, ["*"], true, never>;
79
+ }
80
+ declare interface MdsAccordionTimer extends Components.MdsAccordionTimer {
81
+ /**
82
+ * Emits when the accordion changes it's item
83
+ */
84
+ mdsAccordionTimerChange: EventEmitter<MdsAccordionTimerCustomEvent<MdsAccordionTimerEventDetail>>;
85
+ }
86
+ declare class MdsAccordionTimerItem {
87
+ protected z: NgZone;
88
+ protected el: HTMLMdsAccordionTimerItemElement;
89
+ /**
90
+ * Specifies the typography of the element @default 'h5'
91
+ */
92
+ set typography(_: Components.MdsAccordionTimerItem['typography']);
93
+ /**
94
+ * Specifies if the accordion item is opened or not @default false
95
+ */
96
+ set selected(_: Components.MdsAccordionTimerItem['selected']);
97
+ /**
98
+ * Specifies the title shown when the accordion is closed or opened
99
+ */
100
+ set description(_: Components.MdsAccordionTimerItem['description']);
101
+ /**
102
+ * Specifies the duration of the single component when selected, it overrides the global duration of itself only
103
+ */
104
+ set duration(_: Components.MdsAccordionTimerItem['duration']);
105
+ /**
106
+ * A value between 0 and 100 that rapresents the status progress @default 0
107
+ */
108
+ set progress(_: Components.MdsAccordionTimerItem['progress']);
109
+ /**
110
+ * Used automatically by MdsAccordionTimer wrapper to handle it's siblings @default 0
111
+ */
112
+ set uuid(_: Components.MdsAccordionTimerItem['uuid']);
113
+ mdsAccordionTimerItemClickSelect: EventEmitter<MdsAccordionTimerItemCustomEvent<MdsAccordionTimerItemEventDetail>>;
114
+ mdsAccordionTimerItemSelect: EventEmitter<MdsAccordionTimerItemCustomEvent<MdsAccordionTimerItemEventDetail>>;
115
+ mdsAccordionTimerItemMouseEnterSelect: EventEmitter<MdsAccordionTimerItemCustomEvent<MdsAccordionTimerItemEventDetail>>;
116
+ mdsAccordionTimerItemMouseLeaveSelect: EventEmitter<MdsAccordionTimerItemCustomEvent<MdsAccordionTimerItemEventDetail>>;
117
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
118
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsAccordionTimerItem, never>;
119
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsAccordionTimerItem, "mds-accordion-timer-item", never, { "description": { "alias": "description"; "required": true; }; "duration": { "alias": "duration"; "required": false; }; "progress": { "alias": "progress"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "typography": { "alias": "typography"; "required": false; }; "uuid": { "alias": "uuid"; "required": false; }; }, { "mdsAccordionTimerItemClickSelect": "mdsAccordionTimerItemClickSelect"; "mdsAccordionTimerItemSelect": "mdsAccordionTimerItemSelect"; "mdsAccordionTimerItemMouseEnterSelect": "mdsAccordionTimerItemMouseEnterSelect"; "mdsAccordionTimerItemMouseLeaveSelect": "mdsAccordionTimerItemMouseLeaveSelect"; }, never, ["*"], true, never>;
120
+ }
121
+ declare interface MdsAccordionTimerItem extends Components.MdsAccordionTimerItem {
122
+ /**
123
+ * Emits when the accordion is clicked by the mouse
124
+ */
125
+ mdsAccordionTimerItemClickSelect: EventEmitter<MdsAccordionTimerItemCustomEvent<MdsAccordionTimerItemEventDetail>>;
126
+ /**
127
+ * Emits when the accordion is changed from code
128
+ */
129
+ mdsAccordionTimerItemSelect: EventEmitter<MdsAccordionTimerItemCustomEvent<MdsAccordionTimerItemEventDetail>>;
130
+ /**
131
+ * Emits when the accordion is hovered by the mouse
132
+ */
133
+ mdsAccordionTimerItemMouseEnterSelect: EventEmitter<MdsAccordionTimerItemCustomEvent<MdsAccordionTimerItemEventDetail>>;
134
+ /**
135
+ * Emits when the accordion is hovered by the mouse
136
+ */
137
+ mdsAccordionTimerItemMouseLeaveSelect: EventEmitter<MdsAccordionTimerItemCustomEvent<MdsAccordionTimerItemEventDetail>>;
138
+ }
139
+ declare class MdsAuthor {
140
+ protected z: NgZone;
141
+ protected el: HTMLMdsAuthorElement;
142
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
143
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsAuthor, never>;
144
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsAuthor, "mds-author", never, {}, {}, never, ["*"], true, never>;
145
+ }
146
+ declare interface MdsAuthor extends Components.MdsAuthor {
147
+ }
148
+ declare class MdsAvatar {
149
+ protected z: NgZone;
150
+ protected el: HTMLMdsAvatarElement;
151
+ /**
152
+ * Specifies the path to the icon @see https://magma.maggiolicloud.it/storybook/?path=/story/design-icon--default
153
+ */
154
+ set icon(_: Components.MdsAvatar['icon']);
155
+ /**
156
+ * The user's inizials displayed if there's no image available, initials will override tone and variant senttings to keep user recognizable from others
157
+ */
158
+ set initials(_: Components.MdsAvatar['initials']);
159
+ /**
160
+ * The user's inizials displayed if there's no image available, initials will override tone and variant senttings to keep user recognizable from others
161
+ */
162
+ set count(_: Components.MdsAvatar['count']);
163
+ /**
164
+ * Specifies the path to the image
165
+ */
166
+ set src(_: Components.MdsAvatar['src']);
167
+ /**
168
+ * Specifies the color tone of the component
169
+ */
170
+ set tone(_: Components.MdsAvatar['tone']);
171
+ /**
172
+ * Specifies the color variant of the component
173
+ */
174
+ set variant(_: Components.MdsAvatar['variant']);
175
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
176
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsAvatar, never>;
177
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsAvatar, "mds-avatar", never, { "count": { "alias": "count"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "initials": { "alias": "initials"; "required": false; }; "src": { "alias": "src"; "required": false; }; "tone": { "alias": "tone"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], true, never>;
178
+ }
179
+ declare interface MdsAvatar extends Components.MdsAvatar {
180
+ }
181
+ declare class MdsAvatarStack {
182
+ protected z: NgZone;
183
+ protected el: HTMLMdsAvatarStackElement;
184
+ /**
185
+ * Specifies the size of the slotted avatars elements
186
+ */
187
+ set size(_: Components.MdsAvatarStack['size']);
188
+ /**
189
+ * Specifies the size of the slotted avatars elements
190
+ */
191
+ set total(_: Components.MdsAvatarStack['total']);
192
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
193
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsAvatarStack, never>;
194
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsAvatarStack, "mds-avatar-stack", never, { "size": { "alias": "size"; "required": false; }; "total": { "alias": "total"; "required": false; }; }, {}, never, ["*"], true, never>;
195
+ }
196
+ declare interface MdsAvatarStack extends Components.MdsAvatarStack {
197
+ }
198
+ declare class MdsAvatarStackItem {
199
+ protected z: NgZone;
200
+ protected el: HTMLMdsAvatarStackItemElement;
201
+ /**
202
+ * Specifies number of total avatars, the total number will be subtracted by the slotted ones
203
+ */
204
+ set count(_: Components.MdsAvatarStackItem['count']);
205
+ /**
206
+ * The user's inizials displayed if there's no image available, initials will override tone and variant senttings to keep user recognizable from others
207
+ */
208
+ set initials(_: Components.MdsAvatarStackItem['initials']);
209
+ /**
210
+ * Specifies the path to the image
211
+ */
212
+ set src(_: Components.MdsAvatarStackItem['src']);
213
+ /**
214
+ * Specifies the color tone of the component @default 'weak'
215
+ */
216
+ set tone(_: Components.MdsAvatarStackItem['tone']);
217
+ /**
218
+ * Specifies the color variant of the component
219
+ */
220
+ set variant(_: Components.MdsAvatarStackItem['variant']);
221
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
222
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsAvatarStackItem, never>;
223
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsAvatarStackItem, "mds-avatar-stack-item", never, { "count": { "alias": "count"; "required": false; }; "initials": { "alias": "initials"; "required": false; }; "src": { "alias": "src"; "required": false; }; "tone": { "alias": "tone"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], true, never>;
224
+ }
225
+ declare interface MdsAvatarStackItem extends Components.MdsAvatarStackItem {
226
+ }
227
+ declare class MdsBadge {
228
+ protected z: NgZone;
229
+ protected el: HTMLMdsBadgeElement;
230
+ /**
231
+ * The label of the badge
232
+ */
233
+ set label(_: Components.MdsBadge['label']);
234
+ /**
235
+ * Sets the theme variant colors @default 'green'
236
+ */
237
+ set variant(_: Components.MdsBadge['variant']);
238
+ /**
239
+ * Sets the tone of the color variant @default 'weak'
240
+ */
241
+ set tone(_: Components.MdsBadge['tone']);
242
+ /**
243
+ * Specifies the typography of the element @default 'option'
244
+ */
245
+ set typography(_: Components.MdsBadge['typography']);
246
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
247
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsBadge, never>;
248
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsBadge, "mds-badge", never, { "label": { "alias": "label"; "required": false; }; "tone": { "alias": "tone"; "required": false; }; "typography": { "alias": "typography"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], true, never>;
249
+ }
250
+ declare interface MdsBadge extends Components.MdsBadge {
251
+ }
252
+ declare class MdsBanner {
253
+ protected z: NgZone;
254
+ protected el: HTMLMdsBannerElement;
255
+ /**
256
+ * Sets the theme variant colors @default 'primary'
257
+ */
258
+ set variant(_: Components.MdsBanner['variant']);
259
+ /**
260
+ * Sets the tone of the color variant @default 'weak'
261
+ */
262
+ set tone(_: Components.MdsBanner['tone']);
263
+ /**
264
+ * Shows a decoration around the banner icon @default true
265
+ */
266
+ set cockade(_: Components.MdsBanner['cockade']);
267
+ /**
268
+ * Shows the cross icon to perform cancel/delete action on element
269
+ */
270
+ set deletable(_: Components.MdsBanner['deletable']);
271
+ /**
272
+ * The title on the top of the banner
273
+ */
274
+ set headline(_: Components.MdsBanner['headline']);
275
+ /**
276
+ * An icon displayed at the top left of the banner
277
+ */
278
+ set icon(_: Components.MdsBanner['icon']);
279
+ mdsBannerClose: EventEmitter<MdsBannerCustomEvent<void>>;
280
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
281
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsBanner, never>;
282
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsBanner, "mds-banner", never, { "cockade": { "alias": "cockade"; "required": false; }; "deletable": { "alias": "deletable"; "required": false; }; "headline": { "alias": "headline"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "tone": { "alias": "tone"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, { "mdsBannerClose": "mdsBannerClose"; }, never, ["*"], true, never>;
283
+ }
284
+ declare interface MdsBanner extends Components.MdsBanner {
285
+ /**
286
+ * Emits when the url view is closed
287
+ */
288
+ mdsBannerClose: EventEmitter<MdsBannerCustomEvent<void>>;
289
+ }
290
+ declare class MdsBenchmarkBar {
291
+ protected z: NgZone;
292
+ protected el: HTMLMdsBenchmarkBarElement;
293
+ /**
294
+ * The label of the benchmark bar
295
+ */
296
+ set label(_: Components.MdsBenchmarkBar['label']);
297
+ /**
298
+ * An alias to custom how value is represented
299
+ */
300
+ set alias(_: Components.MdsBenchmarkBar['alias']);
301
+ /**
302
+ * The typography of the component @default 'label'
303
+ */
304
+ set typography(_: Components.MdsBenchmarkBar['typography']);
305
+ /**
306
+ * A value between 0 and 100 that rapresents the benchmark @default 0
307
+ */
308
+ set value(_: Components.MdsBenchmarkBar['value']);
309
+ /**
310
+ * Sets the theme variant colors @default 'dark'
311
+ */
312
+ set variant(_: Components.MdsBenchmarkBar['variant']);
313
+ /**
314
+ * Sets the size of the component @default 'md'
315
+ */
316
+ set size(_: Components.MdsBenchmarkBar['size']);
317
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
318
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsBenchmarkBar, never>;
319
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsBenchmarkBar, "mds-benchmark-bar", never, { "alias": { "alias": "alias"; "required": false; }; "label": { "alias": "label"; "required": false; }; "size": { "alias": "size"; "required": false; }; "typography": { "alias": "typography"; "required": false; }; "value": { "alias": "value"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], true, never>;
320
+ }
321
+ declare interface MdsBenchmarkBar extends Components.MdsBenchmarkBar {
322
+ }
323
+ declare class MdsBibliography {
324
+ protected z: NgZone;
325
+ protected el: HTMLMdsBibliographyElement;
326
+ /**
327
+ * Specifies the bibliography format to rapresent the bibliography content @default 'apa'
328
+ */
329
+ set format(_: Components.MdsBibliography['format']);
330
+ /**
331
+ * Specifies a single or mupltiple authors, this field expect a string or an array of strings.
332
+ First name and Last name: "Jhon Doe",
333
+ you can wrap first name or last name to crop them correctly: "'Jhon Arthur' Doe", "'Jhon Arthur' 'Doe Jhonson'",
334
+ and for multiple authors "'Jhon Arthur' 'Doe Jhonson', 'Mike Collins', Erik 'Ross Anderson'",
335
+ you can use single or double quotation marks for composite names
336
+ */
337
+ set author(_: Components.MdsBibliography['author']);
338
+ /**
339
+ * Specifies the name of the bibliography
340
+ */
341
+ set name(_: Components.MdsBibliography['name']);
342
+ /**
343
+ * Specifies the publisher of the bibliography
344
+ */
345
+ set publisher(_: Components.MdsBibliography['publisher']);
346
+ /**
347
+ * Specifies the date of the bibliography
348
+ */
349
+ set date(_: Components.MdsBibliography['date']);
350
+ /**
351
+ * Specifies the location of the bibliography
352
+ */
353
+ set location(_: Components.MdsBibliography['location']);
354
+ /**
355
+ * Specifies relationship between the current document and the URL @default 'external'
356
+ */
357
+ set rel(_: Components.MdsBibliography['rel']);
358
+ /**
359
+ * Specifies the font typography of the element @default 'detail'
360
+ */
361
+ set typography(_: Components.MdsBibliography['typography']);
362
+ /**
363
+ * Specifies the variant for `typography`
364
+ */
365
+ set variant(_: Components.MdsBibliography['variant']);
366
+ /**
367
+ * Specifies the URL of the bibliography
368
+ */
369
+ set url(_: Components.MdsBibliography['url']);
370
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
371
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsBibliography, never>;
372
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsBibliography, "mds-bibliography", never, { "author": { "alias": "author"; "required": false; }; "date": { "alias": "date"; "required": false; }; "format": { "alias": "format"; "required": false; }; "location": { "alias": "location"; "required": false; }; "name": { "alias": "name"; "required": false; }; "publisher": { "alias": "publisher"; "required": false; }; "rel": { "alias": "rel"; "required": false; }; "typography": { "alias": "typography"; "required": false; }; "url": { "alias": "url"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], true, never>;
373
+ }
374
+ declare interface MdsBibliography extends Components.MdsBibliography {
375
+ }
376
+ declare class MdsBreadcrumb {
377
+ protected z: NgZone;
378
+ protected el: HTMLMdsBreadcrumbElement;
379
+ /**
380
+ * Choose to display or not the back arrow button @default true
381
+ */
382
+ set back(_: Components.MdsBreadcrumb['back']);
383
+ mdsBreadcrumbChange: EventEmitter<MdsBreadcrumbCustomEvent<MdsBreadcrumbEventDetail>>;
384
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
385
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsBreadcrumb, never>;
386
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsBreadcrumb, "mds-breadcrumb", never, { "back": { "alias": "back"; "required": false; }; }, { "mdsBreadcrumbChange": "mdsBreadcrumbChange"; }, never, ["*"], true, never>;
387
+ }
388
+ declare interface MdsBreadcrumb extends Components.MdsBreadcrumb {
389
+ /**
390
+ * Emits when the breadcrumb is changed
391
+ */
392
+ mdsBreadcrumbChange: EventEmitter<MdsBreadcrumbCustomEvent<MdsBreadcrumbEventDetail>>;
393
+ }
394
+ declare class MdsBreadcrumbItem {
395
+ protected z: NgZone;
396
+ protected el: HTMLMdsBreadcrumbItemElement;
397
+ /**
398
+ * Choose if the component is selected or not
399
+ */
400
+ set selected(_: Components.MdsBreadcrumbItem['selected']);
401
+ /**
402
+ * Sets the label of the breadcrumb item
403
+ */
404
+ set label(_: Components.MdsBreadcrumbItem['label']);
405
+ mdsBreadcrumbItemSelect: EventEmitter<MdsBreadcrumbItemCustomEvent<MdsBreadcrumbItemEventDetail>>;
406
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
407
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsBreadcrumbItem, never>;
408
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsBreadcrumbItem, "mds-breadcrumb-item", never, { "label": { "alias": "label"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, { "mdsBreadcrumbItemSelect": "mdsBreadcrumbItemSelect"; }, never, ["*"], true, never>;
409
+ }
410
+ declare interface MdsBreadcrumbItem extends Components.MdsBreadcrumbItem {
411
+ /**
412
+ * Emits when the breadcrumb is active
413
+ */
414
+ mdsBreadcrumbItemSelect: EventEmitter<MdsBreadcrumbItemCustomEvent<MdsBreadcrumbItemEventDetail>>;
415
+ }
416
+ declare class MdsButton {
417
+ protected z: NgZone;
418
+ protected el: HTMLMdsButtonElement;
419
+ /**
420
+ * Specifies if the component is focused when is loaded on the viewport
421
+ */
422
+ set autoFocus(_: Components.MdsButton['autoFocus']);
423
+ /**
424
+ * The label of the button
425
+ */
426
+ set label(_: Components.MdsButton['label']);
427
+ /**
428
+ * Specifies if the text is animated when it is rendered @default 'none'
429
+ */
430
+ set animation(_: Components.MdsButton['animation']);
431
+ /**
432
+ * The icon displayed in the button
433
+ */
434
+ set icon(_: Components.MdsButton['icon']);
435
+ /**
436
+ * Specifies the horizontal position of the icon displayed in the button @default 'left'
437
+ */
438
+ set iconPosition(_: Components.MdsButton['iconPosition']);
439
+ /**
440
+ * The type of the button element @default 'submit'
441
+ */
442
+ set type(_: Components.MdsButton['type']);
443
+ /**
444
+ * Specifies the color variant for the button @default 'primary'
445
+ */
446
+ set variant(_: Components.MdsButton['variant']);
447
+ /**
448
+ * Specifies the tone variant for the button @default 'strong'
449
+ */
450
+ set tone(_: Components.MdsButton['tone']);
451
+ /**
452
+ * Specifies the size for the button @default 'md'
453
+ */
454
+ set size(_: Components.MdsButton['size']);
455
+ /**
456
+ * Specifies if the button is active or not
457
+ */
458
+ set active(_: Components.MdsButton['active']);
459
+ /**
460
+ * Specifies if the component is disabled or not
461
+ */
462
+ set disabled(_: Components.MdsButton['disabled']);
463
+ /**
464
+ * Specifies if the button is awaiting for a response
465
+ */
466
+ set await(_: Components.MdsButton['await']);
467
+ /**
468
+ * Specifies the URL target of the button
469
+ */
470
+ set href(_: Components.MdsButton['href']);
471
+ /**
472
+ * Specifies the target of the URL, if self or blank @default 'self'
473
+ */
474
+ set target(_: Components.MdsButton['target']);
475
+ /**
476
+ * Specifies if the text shoud be truncated or should behave as a normal text @default 'word'
477
+ */
478
+ set truncate(_: Components.MdsButton['truncate']);
479
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
480
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsButton, never>;
481
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsButton, "mds-button", never, { "active": { "alias": "active"; "required": false; }; "animation": { "alias": "animation"; "required": false; }; "autoFocus": { "alias": "autoFocus"; "required": false; }; "await": { "alias": "await"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "href": { "alias": "href"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "label": { "alias": "label"; "required": false; }; "size": { "alias": "size"; "required": false; }; "target": { "alias": "target"; "required": false; }; "tone": { "alias": "tone"; "required": false; }; "truncate": { "alias": "truncate"; "required": false; }; "type": { "alias": "type"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], true, never>;
482
+ }
483
+ declare interface MdsButton extends Components.MdsButton {
484
+ }
485
+ declare class MdsButtonDropdown {
486
+ protected z: NgZone;
487
+ protected el: HTMLMdsButtonDropdownElement;
488
+ /**
489
+ * Specifies le text label of the component
490
+ */
491
+ set label(_: Components.MdsButtonDropdown['label']);
492
+ /**
493
+ * Specifies if the component is focused when is loaded on the viewport
494
+ */
495
+ set autoFocus(_: Components.MdsButtonDropdown['autoFocus']);
496
+ /**
497
+ * The icon displayed in the button
498
+ */
499
+ set icon(_: Components.MdsButtonDropdown['icon']);
500
+ /**
501
+ * The type of the button element @default 'submit'
502
+ */
503
+ set type(_: Components.MdsButtonDropdown['type']);
504
+ /**
505
+ * Specifies the color variant for the button @default 'primary'
506
+ */
507
+ set variant(_: Components.MdsButtonDropdown['variant']);
508
+ /**
509
+ * Specifies the tone variant for the button @default 'strong'
510
+ */
511
+ set tone(_: Components.MdsButtonDropdown['tone']);
512
+ /**
513
+ * Specifies the size for the button @default 'md'
514
+ */
515
+ set size(_: Components.MdsButtonDropdown['size']);
516
+ /**
517
+ * Specifies if the button is active or not
518
+ */
519
+ set active(_: Components.MdsButtonDropdown['active']);
520
+ /**
521
+ * Specifies if the component is disabled or not
522
+ */
523
+ set disabled(_: Components.MdsButtonDropdown['disabled']);
524
+ /**
525
+ * Specifies if the button is awaiting for a response
526
+ */
527
+ set await(_: Components.MdsButtonDropdown['await']);
528
+ /**
529
+ * Specifies the URL target of the button
530
+ */
531
+ set href(_: Components.MdsButtonDropdown['href']);
532
+ /**
533
+ * Specifies the target of the URL, if self or blank @default 'self'
534
+ */
535
+ set target(_: Components.MdsButtonDropdown['target']);
536
+ /**
537
+ * Specifies if the text shoud be truncated or should behave as a normal text @default 'word'
538
+ */
539
+ set truncate(_: Components.MdsButtonDropdown['truncate']);
540
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
541
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsButtonDropdown, never>;
542
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsButtonDropdown, "mds-button-dropdown", never, { "active": { "alias": "active"; "required": false; }; "autoFocus": { "alias": "autoFocus"; "required": false; }; "await": { "alias": "await"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "href": { "alias": "href"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; "size": { "alias": "size"; "required": false; }; "target": { "alias": "target"; "required": false; }; "tone": { "alias": "tone"; "required": false; }; "truncate": { "alias": "truncate"; "required": false; }; "type": { "alias": "type"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], true, never>;
543
+ }
544
+ declare interface MdsButtonDropdown extends Components.MdsButtonDropdown {
545
+ }
546
+ declare class MdsButtonGroup {
547
+ protected z: NgZone;
548
+ protected el: HTMLMdsButtonGroupElement;
549
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
550
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsButtonGroup, never>;
551
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsButtonGroup, "mds-button-group", never, {}, {}, never, ["*"], true, never>;
552
+ }
553
+ declare interface MdsButtonGroup extends Components.MdsButtonGroup {
554
+ }
555
+ declare class MdsCalendar {
556
+ protected z: NgZone;
557
+ protected el: HTMLMdsCalendarElement;
558
+ /**
559
+ * Enables selecting a date range (start and end date) instead of a single date. @default true
560
+ */
561
+ set rangePicker(_: Components.MdsCalendar['rangePicker']);
562
+ /**
563
+ * Shows the previous navigation button in the calendar header. @default true
564
+ */
565
+ set showPreviousButton(_: Components.MdsCalendar['showPreviousButton']);
566
+ /**
567
+ * Shows the next navigation button in the calendar header. @default true
568
+ */
569
+ set showNextButton(_: Components.MdsCalendar['showNextButton']);
570
+ /**
571
+ * Disables switching to month or year selection views from the calendar header. @default false
572
+ */
573
+ set disableMonthYearSelection(_: Components.MdsCalendar['disableMonthYearSelection']);
574
+ /**
575
+ * Shows the preselection area above the calendar view. @default false
576
+ */
577
+ set showPreselection(_: Components.MdsCalendar['showPreselection']);
578
+ /**
579
+ * Specifies the date used to determine the visible month without changing the selection. @description It's in ISO format (YYYY-MM-DD).,@example '2023-10-01',@default null
580
+ */
581
+ set viewDate(_: Components.MdsCalendar['viewDate']);
582
+ /**
583
+ * Specifies the date used to preview the range selection across multiple visible calendars. @description It's in ISO format (YYYY-MM-DD).,@example '2023-10-15',@default null
584
+ */
585
+ set hoverDate(_: Components.MdsCalendar['hoverDate']);
586
+ /**
587
+ * Specifies the start date of the selection @description It's in ISO format (YYYY-MM-DD).,@example '2023-10-01',@default null
588
+ */
589
+ set startDate(_: Components.MdsCalendar['startDate']);
590
+ /**
591
+ * Specifies the end date of the selection @description It's in ISO format (YYYY-MM-DD).,@example '2023-10-01',@default null
592
+ */
593
+ set endDate(_: Components.MdsCalendar['endDate']);
594
+ /**
595
+ * Specifies the minimum date of the selection @description It's in ISO format (YYYY-MM-DD).,@example '2023-10-01',@default null
596
+ */
597
+ set min(_: Components.MdsCalendar['min']);
598
+ /**
599
+ * Specifies the minimum date of the selection @description It's in ISO format (YYYY-MM-DD).,@example '2023-10-01',@default null
600
+ */
601
+ set max(_: Components.MdsCalendar['max']);
602
+ mdsCalendarChange: EventEmitter<MdsCalendarCustomEvent<{
603
+ startDate: string;
604
+ endDate?: string;
605
+ }>>;
606
+ mdsCalendarNavigate: EventEmitter<MdsCalendarCustomEvent<{
607
+ currentDate: string;
608
+ delta: number;
609
+ }>>;
610
+ mdsCalendarHover: EventEmitter<MdsCalendarCustomEvent<{
611
+ hoverDate: string | null;
612
+ }>>;
613
+ mdsCalendarPreselect: EventEmitter<MdsCalendarCustomEvent<void>>;
614
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
615
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsCalendar, never>;
616
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsCalendar, "mds-calendar", never, { "disableMonthYearSelection": { "alias": "disableMonthYearSelection"; "required": false; }; "endDate": { "alias": "endDate"; "required": false; }; "hoverDate": { "alias": "hoverDate"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "rangePicker": { "alias": "rangePicker"; "required": false; }; "showNextButton": { "alias": "showNextButton"; "required": false; }; "showPreselection": { "alias": "showPreselection"; "required": false; }; "showPreviousButton": { "alias": "showPreviousButton"; "required": false; }; "startDate": { "alias": "startDate"; "required": false; }; "viewDate": { "alias": "viewDate"; "required": false; }; }, { "mdsCalendarChange": "mdsCalendarChange"; "mdsCalendarNavigate": "mdsCalendarNavigate"; "mdsCalendarHover": "mdsCalendarHover"; "mdsCalendarPreselect": "mdsCalendarPreselect"; }, never, ["*"], true, never>;
617
+ }
618
+ declare interface MdsCalendar extends Components.MdsCalendar {
619
+ /**
620
+ * Emitted when the selected date or date range changes.
621
+ */
622
+ mdsCalendarChange: EventEmitter<MdsCalendarCustomEvent<{
623
+ startDate: string;
624
+ endDate?: string;
625
+ }>>;
626
+ /**
627
+ * Emitted when the user navigates to a different month or year.
628
+ */
629
+ mdsCalendarNavigate: EventEmitter<MdsCalendarCustomEvent<{
630
+ currentDate: string;
631
+ delta: number;
632
+ }>>;
633
+ /**
634
+ * Emitted when the user hovers over a day, used to preview a range selection.
635
+ */
636
+ mdsCalendarHover: EventEmitter<MdsCalendarCustomEvent<{
637
+ hoverDate: string | null;
638
+ }>>;
639
+ /**
640
+ * Emitted when the calendar's preselection options need to be re-evaluated.
641
+ */
642
+ mdsCalendarPreselect: EventEmitter<MdsCalendarCustomEvent<void>>;
643
+ }
644
+ declare class MdsCalendarCell {
645
+ protected z: NgZone;
646
+ protected el: HTMLMdsCalendarCellElement;
647
+ /**
648
+ * Specifies if the current month or a weekend @default 'current'
649
+ */
650
+ set month(_: Components.MdsCalendarCell['month']);
651
+ /**
652
+ * Specifies the label of the cell
653
+ */
654
+ set label(_: Components.MdsCalendarCell['label']);
655
+ /**
656
+ * Specifies the date of the cell @description It's in ISO format (YYYY-MM-DD).
657
+ */
658
+ set date(_: Components.MdsCalendarCell['date']);
659
+ /**
660
+ * Specifies the selection orientation of the cell @description It can be 'horizontal' or 'vertical', but currently only 'horizontal' is supported,@default 'horizontal'
661
+ */
662
+ set orientation(_: Components.MdsCalendarCell['orientation']);
663
+ /**
664
+ * Specifies if the selection is a preview or the final selection @default false
665
+ */
666
+ set preview(_: Components.MdsCalendarCell['preview']);
667
+ /**
668
+ * Specifies the point of selection of the cell @description It can be `end`, `middle`, `none`, `single`, `start`
669
+ */
670
+ set selection(_: Components.MdsCalendarCell['selection']);
671
+ /**
672
+ * Specifies if the cell is disabled @default undefined
673
+ */
674
+ set disabled(_: Components.MdsCalendarCell['disabled']);
675
+ /**
676
+ * Specifies if the cell is today @default undefined
677
+ */
678
+ set today(_: Components.MdsCalendarCell['today']);
679
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
680
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsCalendarCell, never>;
681
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsCalendarCell, "mds-calendar-cell", never, { "date": { "alias": "date"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "label": { "alias": "label"; "required": false; }; "month": { "alias": "month"; "required": false; }; "orientation": { "alias": "orientation"; "required": false; }; "preview": { "alias": "preview"; "required": false; }; "selection": { "alias": "selection"; "required": false; }; "today": { "alias": "today"; "required": false; }; }, {}, never, ["*"], true, never>;
682
+ }
683
+ declare interface MdsCalendarCell extends Components.MdsCalendarCell {
684
+ }
685
+ declare class MdsCard {
686
+ protected z: NgZone;
687
+ protected el: HTMLMdsCardElement;
688
+ /**
689
+ * Enables automatic responsive behavior based on container queries @default true
690
+ */
691
+ set autoGrid(_: Components.MdsCard['autoGrid']);
692
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
693
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsCard, never>;
694
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsCard, "mds-card", never, { "autoGrid": { "alias": "autoGrid"; "required": false; }; }, {}, never, ["*"], true, never>;
695
+ }
696
+ declare interface MdsCard extends Components.MdsCard {
697
+ }
698
+ declare class MdsCardContent {
699
+ protected z: NgZone;
700
+ protected el: HTMLMdsCardContentElement;
701
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
702
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsCardContent, never>;
703
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsCardContent, "mds-card-content", never, {}, {}, never, ["*"], true, never>;
704
+ }
705
+ declare interface MdsCardContent extends Components.MdsCardContent {
706
+ }
707
+ declare class MdsCardFooter {
708
+ protected z: NgZone;
709
+ protected el: HTMLMdsCardFooterElement;
710
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
711
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsCardFooter, never>;
712
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsCardFooter, "mds-card-footer", never, {}, {}, never, ["*"], true, never>;
713
+ }
714
+ declare interface MdsCardFooter extends Components.MdsCardFooter {
715
+ }
716
+ declare class MdsCardHeader {
717
+ protected z: NgZone;
718
+ protected el: HTMLMdsCardHeaderElement;
719
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
720
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsCardHeader, never>;
721
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsCardHeader, "mds-card-header", never, {}, {}, never, ["*"], true, never>;
722
+ }
723
+ declare interface MdsCardHeader extends Components.MdsCardHeader {
724
+ }
725
+ declare class MdsCardMedia {
726
+ protected z: NgZone;
727
+ protected el: HTMLMdsCardMediaElement;
728
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
729
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsCardMedia, never>;
730
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsCardMedia, "mds-card-media", never, {}, {}, never, ["*"], true, never>;
731
+ }
732
+ declare interface MdsCardMedia extends Components.MdsCardMedia {
733
+ }
734
+ declare class MdsChip {
735
+ protected z: NgZone;
736
+ protected el: HTMLMdsChipElement;
737
+ /**
738
+ * Adds ARIA support to the element if has interaction
739
+ */
740
+ set clickable(_: Components.MdsChip['clickable']);
741
+ /**
742
+ * Shows the cross icon to perform cancel/delete action on element
743
+ */
744
+ set deletable(_: Components.MdsChip['deletable']);
745
+ /**
746
+ * Sets the component disabled status @default false
747
+ */
748
+ set disabled(_: Components.MdsChip['disabled']);
749
+ /**
750
+ * The icon displayed to the left of the component's label
751
+ */
752
+ set icon(_: Components.MdsChip['icon']);
753
+ /**
754
+ * The label displayed to the right of the component's icon
755
+ */
756
+ set label(_: Components.MdsChip['label']);
757
+ /**
758
+ * Sets the component selected
759
+ */
760
+ set selected(_: Components.MdsChip['selected']);
761
+ /**
762
+ * Sets if the component change is status to selected when is clicked @default false
763
+ */
764
+ set selectable(_: Components.MdsChip['selectable']);
765
+ /**
766
+ * Sets the color variant of the component @default 'primary'
767
+ */
768
+ set variant(_: Components.MdsChip['variant']);
769
+ /**
770
+ * Sets the color variant tone of the component @default 'strong'
771
+ */
772
+ set tone(_: Components.MdsChip['tone']);
773
+ mdsChipClickLabel: EventEmitter<MdsChipCustomEvent<MdsChipEvent>>;
774
+ mdsChipDelete: EventEmitter<MdsChipCustomEvent<MdsChipEvent>>;
775
+ mdsChipSelect: EventEmitter<MdsChipCustomEvent<MdsChipEvent>>;
776
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
777
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsChip, never>;
778
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsChip, "mds-chip", never, { "clickable": { "alias": "clickable"; "required": false; }; "deletable": { "alias": "deletable"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": true; }; "selectable": { "alias": "selectable"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "tone": { "alias": "tone"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, { "mdsChipClickLabel": "mdsChipClickLabel"; "mdsChipDelete": "mdsChipDelete"; "mdsChipSelect": "mdsChipSelect"; }, never, ["*"], true, never>;
779
+ }
780
+ declare interface MdsChip extends Components.MdsChip {
781
+ /**
782
+ * Emits when the component's label is clicked
783
+ */
784
+ mdsChipClickLabel: EventEmitter<MdsChipCustomEvent<MdsChipEvent>>;
785
+ /**
786
+ * Emits when the component's delete button is clicked
787
+ */
788
+ mdsChipDelete: EventEmitter<MdsChipCustomEvent<MdsChipEvent>>;
789
+ /**
790
+ * Emits when the component's label is clicked and when `selectable` attribute is set to `true`
791
+ */
792
+ mdsChipSelect: EventEmitter<MdsChipCustomEvent<MdsChipEvent>>;
793
+ }
794
+ declare class MdsDetails {
795
+ protected z: NgZone;
796
+ protected el: HTMLMdsDetailsElement;
797
+ /**
798
+ * Specifies if the component is opened @default false
799
+ */
800
+ set opened(_: Components.MdsDetails['opened']);
801
+ mdsDetailsChange: EventEmitter<MdsDetailsCustomEvent<boolean>>;
802
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
803
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsDetails, never>;
804
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsDetails, "mds-details", never, { "opened": { "alias": "opened"; "required": false; }; }, { "mdsDetailsChange": "mdsDetailsChange"; }, never, ["*"], true, never>;
805
+ }
806
+ declare interface MdsDetails extends Components.MdsDetails {
807
+ /**
808
+ * Emits when the component is opened
809
+ */
810
+ mdsDetailsChange: EventEmitter<MdsDetailsCustomEvent<boolean>>;
811
+ }
812
+ declare class MdsDropdown {
813
+ protected z: NgZone;
814
+ protected el: HTMLMdsDropdownElement;
815
+ /**
816
+ * If set, the component will have an arrow pointing to the caller. @default true
817
+ */
818
+ set arrow(_: Components.MdsDropdown['arrow']);
819
+ /**
820
+ * Sets the distance between arrow and dropdown margins. @default 24
821
+ */
822
+ set arrowPadding(_: Components.MdsDropdown['arrowPadding']);
823
+ /**
824
+ * If set, the component will be placed automatically near it's caller. @default false
825
+ */
826
+ set autoPlacement(_: Components.MdsDropdown['autoPlacement']);
827
+ /**
828
+ * Specifies if the component has a backdrop background @default false
829
+ */
830
+ set backdrop(_: Components.MdsDropdown['backdrop']);
831
+ /**
832
+ * Specifies the placement of the component if no space is available where it is placed. @default false
833
+ */
834
+ set flip(_: Components.MdsDropdown['flip']);
835
+ /**
836
+ * Specifies if the component is triggered from the caller on mouseover or click event @default 'click'
837
+ */
838
+ set interaction(_: Components.MdsDropdown['interaction']);
839
+ /**
840
+ * Specifies the selector of the target element, this attribute is used with `querySelector` method.
841
+ */
842
+ set target(_: Components.MdsDropdown['target']);
843
+ /**
844
+ * Sets distance between the dropdown and the caller. @default 24
845
+ */
846
+ set offset(_: Components.MdsDropdown['offset']);
847
+ /**
848
+ * Specifies where the component should be placed relative to the caller. @default 'bottom'
849
+ */
850
+ set placement(_: Components.MdsDropdown['placement']);
851
+ /**
852
+ * If set, the component will be kept inside the viewport. @default true
853
+ */
854
+ set shift(_: Components.MdsDropdown['shift']);
855
+ /**
856
+ * Sets a safe area distance between the dropdown and the viewport. @default 24
857
+ */
858
+ set shiftPadding(_: Components.MdsDropdown['shiftPadding']);
859
+ /**
860
+ * If set, the component will follow the caller smoothly, visible when the page scrolls. @default true
861
+ */
862
+ set smooth(_: Components.MdsDropdown['smooth']);
863
+ /**
864
+ * Sets the CSS position strategy of the component. @default 'absolute'
865
+ */
866
+ set strategy(_: Components.MdsDropdown['strategy']);
867
+ /**
868
+ * Specifies the visibility of the component. @default false
869
+ */
870
+ set visible(_: Components.MdsDropdown['visible']);
871
+ /**
872
+ * Specifies the visibility of the component.
873
+ */
874
+ set zIndex(_: Components.MdsDropdown['zIndex']);
875
+ mdsDropdownVisible: EventEmitter<MdsDropdownCustomEvent<MdsDropdownEventDetail>>;
876
+ mdsDropdownHide: EventEmitter<MdsDropdownCustomEvent<MdsDropdownEventDetail>>;
877
+ mdsDropdownChange: EventEmitter<MdsDropdownCustomEvent<MdsDropdownEventDetail>>;
878
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
879
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsDropdown, never>;
880
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsDropdown, "mds-dropdown", never, { "arrow": { "alias": "arrow"; "required": false; }; "arrowPadding": { "alias": "arrowPadding"; "required": false; }; "autoPlacement": { "alias": "autoPlacement"; "required": false; }; "backdrop": { "alias": "backdrop"; "required": false; }; "flip": { "alias": "flip"; "required": false; }; "interaction": { "alias": "interaction"; "required": false; }; "offset": { "alias": "offset"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "shift": { "alias": "shift"; "required": false; }; "shiftPadding": { "alias": "shiftPadding"; "required": false; }; "smooth": { "alias": "smooth"; "required": false; }; "strategy": { "alias": "strategy"; "required": false; }; "target": { "alias": "target"; "required": true; }; "visible": { "alias": "visible"; "required": false; }; "zIndex": { "alias": "zIndex"; "required": false; }; }, { "mdsDropdownVisible": "mdsDropdownVisible"; "mdsDropdownHide": "mdsDropdownHide"; "mdsDropdownChange": "mdsDropdownChange"; }, never, ["*"], true, never>;
881
+ }
882
+ declare interface MdsDropdown extends Components.MdsDropdown {
883
+ /**
884
+ * Emits when a modal is visible
885
+ */
886
+ mdsDropdownVisible: EventEmitter<MdsDropdownCustomEvent<MdsDropdownEventDetail>>;
887
+ /**
888
+ * Emits when a modal is hidden
889
+ */
890
+ mdsDropdownHide: EventEmitter<MdsDropdownCustomEvent<MdsDropdownEventDetail>>;
891
+ /**
892
+ * Emits when a modal is visible or hidden
893
+ */
894
+ mdsDropdownChange: EventEmitter<MdsDropdownCustomEvent<MdsDropdownEventDetail>>;
895
+ }
896
+ declare class MdsEmoji {
897
+ protected z: NgZone;
898
+ protected el: HTMLMdsEmojiElement;
899
+ /**
900
+ * Specifies which emoji to display. @default 'mia'
901
+ */
902
+ set name(_: Components.MdsEmoji['name']);
903
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
904
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsEmoji, never>;
905
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsEmoji, "mds-emoji", never, { "name": { "alias": "name"; "required": false; }; }, {}, never, ["*"], true, never>;
906
+ }
907
+ declare interface MdsEmoji extends Components.MdsEmoji {
908
+ }
909
+ declare class MdsEntity {
910
+ protected z: NgZone;
911
+ protected el: HTMLMdsEntityElement;
912
+ /**
913
+ * Specifies if the component is awaiting a response from an external resource
914
+ */
915
+ set await(_: Components.MdsEntity['await']);
916
+ /**
917
+ * Specifies the icon to be displayed if src propery is not used
918
+ */
919
+ set icon(_: Components.MdsEntity['icon']);
920
+ /**
921
+ * Specifies the path to the image
922
+ */
923
+ set src(_: Components.MdsEntity['src']);
924
+ /**
925
+ * The user's inizials displayed if there's no image available and icon is not set
926
+ */
927
+ set initials(_: Components.MdsEntity['initials']);
928
+ /**
929
+ * Specifies the color tone of the component
930
+ */
931
+ set tone(_: Components.MdsEntity['tone']);
932
+ /**
933
+ * Specifies the color variant of the component
934
+ */
935
+ set variant(_: Components.MdsEntity['variant']);
936
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
937
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsEntity, never>;
938
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsEntity, "mds-entity", never, { "await": { "alias": "await"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "initials": { "alias": "initials"; "required": false; }; "src": { "alias": "src"; "required": false; }; "tone": { "alias": "tone"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], true, never>;
939
+ }
940
+ declare interface MdsEntity extends Components.MdsEntity {
941
+ }
942
+ declare class MdsFile {
943
+ protected z: NgZone;
944
+ protected el: HTMLMdsFileElement;
945
+ /**
946
+ * Overrides the automatic filetype recongition by forcing the suffix to one of the available formats choosen
947
+ */
948
+ set suffix(_: Components.MdsFile['suffix']);
949
+ /**
950
+ * Overrides the default filetype description
951
+ */
952
+ set description(_: Components.MdsFile['description']);
953
+ /**
954
+ * The filename shown as component title, is used to auto assign one of the filetype known in the filetype dictionary
955
+ */
956
+ set filename(_: Components.MdsFile['filename']);
957
+ /**
958
+ * The image preview src if available of a file, useful if you have a logo to display, or a smaller version of a bigger image
959
+ */
960
+ set preview(_: Components.MdsFile['preview']);
961
+ /**
962
+ * Sets if the download icon must be shown or not @default true
963
+ */
964
+ set showDownloadedIcon(_: Components.MdsFile['showDownloadedIcon']);
965
+ /**
966
+ * Sets if the download icon must be shown or not
967
+ */
968
+ set format(_: Components.MdsFile['format']);
969
+ mdsFileDownload: EventEmitter<MdsFileCustomEvent<MdsFileEventDetail>>;
970
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
971
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsFile, never>;
972
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsFile, "mds-file", never, { "description": { "alias": "description"; "required": false; }; "filename": { "alias": "filename"; "required": false; }; "format": { "alias": "format"; "required": false; }; "preview": { "alias": "preview"; "required": false; }; "showDownloadedIcon": { "alias": "showDownloadedIcon"; "required": false; }; "suffix": { "alias": "suffix"; "required": false; }; }, { "mdsFileDownload": "mdsFileDownload"; }, never, ["*"], true, never>;
973
+ }
974
+ declare interface MdsFile extends Components.MdsFile {
975
+ /**
976
+ * Emits when the component is clicked, returning file infos
977
+ */
978
+ mdsFileDownload: EventEmitter<MdsFileCustomEvent<MdsFileEventDetail>>;
979
+ }
980
+ declare class MdsFilePreview {
981
+ protected z: NgZone;
982
+ protected el: HTMLMdsFilePreviewElement;
983
+ /**
984
+ * Enables the cross icon to perform cancel/delete action on element
985
+ */
986
+ set deletable(_: Components.MdsFilePreview['deletable']);
987
+ /**
988
+ * Enables the download icon to perform the related action on element
989
+ */
990
+ set downloadable(_: Components.MdsFilePreview['downloadable']);
991
+ /**
992
+ * Overrides the default filetype description
993
+ */
994
+ set description(_: Components.MdsFilePreview['description']);
995
+ /**
996
+ * The filename shown as component title, is used to auto assign one of the filetype known in the filetype dictionary
997
+ */
998
+ set filename(_: Components.MdsFilePreview['filename']);
999
+ /**
1000
+ * The filesize shown, if you pass a string you can write whathever you want, if you pass a number it expect filesize in bytes, the component will format it automatically.
1001
+ */
1002
+ set filesize(_: Components.MdsFilePreview['filesize']);
1003
+ /**
1004
+ * Sets a feedback message related to the component
1005
+ */
1006
+ set message(_: Components.MdsFilePreview['message']);
1007
+ /**
1008
+ * Truncates the filename shown @default 'word'
1009
+ */
1010
+ set truncate(_: Components.MdsFilePreview['truncate']);
1011
+ /**
1012
+ * The image preview src if available of a file, useful if you have a logo to display, or a smaller version of a bigger image
1013
+ */
1014
+ set src(_: Components.MdsFilePreview['src']);
1015
+ /**
1016
+ * Overrides the automatic filetype recongition by forcing the suffix to one of the available formats choosen
1017
+ */
1018
+ set suffix(_: Components.MdsFilePreview['suffix']);
1019
+ /**
1020
+ * The name of the icon or a base64 string to render it as an svg
1021
+ */
1022
+ set icon(_: Components.MdsFilePreview['icon']);
1023
+ /**
1024
+ * The variant of the component, is shown only if the message attribute is defined
1025
+ */
1026
+ set variant(_: Components.MdsFilePreview['variant']);
1027
+ /**
1028
+ * Sets if the download icon must be shown or not
1029
+ */
1030
+ set format(_: Components.MdsFilePreview['format']);
1031
+ mdsFileDownload: EventEmitter<MdsFilePreviewCustomEvent<MdsFilePreviewEventDetail>>;
1032
+ mdsFileDelete: EventEmitter<MdsFilePreviewCustomEvent<MdsFilePreviewEventDetail>>;
1033
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1034
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsFilePreview, never>;
1035
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsFilePreview, "mds-file-preview", never, { "deletable": { "alias": "deletable"; "required": false; }; "description": { "alias": "description"; "required": false; }; "downloadable": { "alias": "downloadable"; "required": false; }; "filename": { "alias": "filename"; "required": true; }; "filesize": { "alias": "filesize"; "required": false; }; "format": { "alias": "format"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "message": { "alias": "message"; "required": false; }; "src": { "alias": "src"; "required": false; }; "suffix": { "alias": "suffix"; "required": false; }; "truncate": { "alias": "truncate"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, { "mdsFileDownload": "mdsFileDownload"; "mdsFileDelete": "mdsFileDelete"; }, never, ["*"], true, never>;
1036
+ }
1037
+ declare interface MdsFilePreview extends Components.MdsFilePreview {
1038
+ /**
1039
+ * Emits when the component is clicked, returning file infos
1040
+ */
1041
+ mdsFileDownload: EventEmitter<MdsFilePreviewCustomEvent<MdsFilePreviewEventDetail>>;
1042
+ /**
1043
+ * Emits when the component is removed, returning file infos
1044
+ */
1045
+ mdsFileDelete: EventEmitter<MdsFilePreviewCustomEvent<MdsFilePreviewEventDetail>>;
1046
+ }
1047
+ declare class MdsFilter {
1048
+ protected z: NgZone;
1049
+ protected el: HTMLMdsFilterElement;
1050
+ /**
1051
+ * Sets an automatic reset of active filters if all filters are triggered
1052
+ */
1053
+ set autoReset(_: Components.MdsFilter['autoReset']);
1054
+ /**
1055
+ * Sets the label of the filter group
1056
+ */
1057
+ set label(_: Components.MdsFilter['label']);
1058
+ /**
1059
+ * Sets if the filter group can filter multiple filters simultaneously
1060
+ */
1061
+ set multiple(_: Components.MdsFilter['multiple']);
1062
+ /**
1063
+ * Shows a reset button if one or more filters are active
1064
+ */
1065
+ set reset(_: Components.MdsFilter['reset']);
1066
+ mdsFilterChange: EventEmitter<MdsFilterCustomEvent<MdsFilterEventDetail>>;
1067
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1068
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsFilter, never>;
1069
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsFilter, "mds-filter", never, { "autoReset": { "alias": "autoReset"; "required": false; }; "label": { "alias": "label"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "reset": { "alias": "reset"; "required": false; }; }, { "mdsFilterChange": "mdsFilterChange"; }, never, ["*"], true, never>;
1070
+ }
1071
+ declare interface MdsFilter extends Components.MdsFilter {
1072
+ /**
1073
+ * Emits when the one of the children is changed
1074
+ */
1075
+ mdsFilterChange: EventEmitter<MdsFilterCustomEvent<MdsFilterEventDetail>>;
1076
+ }
1077
+ declare class MdsFilterItem {
1078
+ protected z: NgZone;
1079
+ protected el: HTMLMdsFilterItemElement;
1080
+ /**
1081
+ * Sets the component to selected state
1082
+ */
1083
+ set selected(_: Components.MdsFilterItem['selected']);
1084
+ /**
1085
+ * Sets the label of the filter item
1086
+ */
1087
+ set label(_: Components.MdsFilterItem['label']);
1088
+ /**
1089
+ * Sets the icon of the filter item
1090
+ */
1091
+ set icon(_: Components.MdsFilterItem['icon']);
1092
+ /**
1093
+ * Sets the value of the component to be used with forms
1094
+ */
1095
+ set value(_: Components.MdsFilterItem['value']);
1096
+ /**
1097
+ * Shows the number of items will be filtered by the component
1098
+ */
1099
+ set count(_: Components.MdsFilterItem['count']);
1100
+ /**
1101
+ * Sets if the component is disabled or not
1102
+ */
1103
+ set disabled(_: Components.MdsFilterItem['disabled']);
1104
+ mdsFilterItemSelect: EventEmitter<MdsFilterItemCustomEvent<MdsFilterItemEventDetail>>;
1105
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1106
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsFilterItem, never>;
1107
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsFilterItem, "mds-filter-item", never, { "count": { "alias": "count"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "mdsFilterItemSelect": "mdsFilterItemSelect"; }, never, ["*"], true, never>;
1108
+ }
1109
+ declare interface MdsFilterItem extends Components.MdsFilterItem {
1110
+ /**
1111
+ * Emits when the element is active
1112
+ */
1113
+ mdsFilterItemSelect: EventEmitter<MdsFilterItemCustomEvent<MdsFilterItemEventDetail>>;
1114
+ }
1115
+ declare class MdsHeader {
1116
+ protected z: NgZone;
1117
+ protected el: HTMLMdsHeaderElement;
1118
+ /**
1119
+ * Sets the appearance of the header bar element when loaded,
1120
+ it can be changed depending on how `appearance-set` attribute is set @default 'stripe'
1121
+ */
1122
+ set appearance(_: Components.MdsHeader['appearance']);
1123
+ /**
1124
+ * Sets the appearance of the header bar element depending on the scroll position
1125
+ you should set three different values: initial appearance, changed appearance and `window.scrollY` threshold
1126
+ Es: appearance-set="stripe, inline 200" means the component will start with stripe appearance
1127
+ that will change to inline if the page is scrolled more of 199 pixels
1128
+ */
1129
+ set appearanceSet(_: Components.MdsHeader['appearanceSet']);
1130
+ /**
1131
+ * When the page is scrolled down, the component mds-header-bar is hidden starting
1132
+ from the `autoHide` attribute's value, then if the page is scrolled up it is shown again
1133
+ */
1134
+ set autoHide(_: Components.MdsHeader['autoHide']);
1135
+ /**
1136
+ * Sets if the backdrop is shown when the mds-header-bar attribute appearace is set to `inline` @default true
1137
+ */
1138
+ set backdrop(_: Components.MdsHeader['backdrop']);
1139
+ /**
1140
+ * Sets the visibility type of the hamburger menu of mds-header-bar @default 'mobile'
1141
+ */
1142
+ set menu(_: Components.MdsHeader['menu']);
1143
+ /**
1144
+ * Sets the visibility type of the navigation menu of mds-header-bar @default 'desktop'
1145
+ */
1146
+ set nav(_: Components.MdsHeader['nav']);
1147
+ /**
1148
+ * Sets the threshold margin to trigger hide or show status of the `mds-header-bar` when the page is scrolled @default 1
1149
+ */
1150
+ set threshold(_: Components.MdsHeader['threshold']);
1151
+ /**
1152
+ * Sets the visibility type of the navigation menu of mds-header-bar @default 'visible'
1153
+ */
1154
+ set visibility(_: Components.MdsHeader['visibility']);
1155
+ mdsHeaderClose: EventEmitter<MdsHeaderCustomEvent<MdsHeaderEventDetail>>;
1156
+ mdsHeaderVisibilityChange: EventEmitter<MdsHeaderCustomEvent<MdsHeaderVisibilityEventDetail>>;
1157
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1158
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsHeader, never>;
1159
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsHeader, "mds-header", never, { "appearance": { "alias": "appearance"; "required": false; }; "appearanceSet": { "alias": "appearanceSet"; "required": false; }; "autoHide": { "alias": "autoHide"; "required": false; }; "backdrop": { "alias": "backdrop"; "required": false; }; "menu": { "alias": "menu"; "required": false; }; "nav": { "alias": "nav"; "required": false; }; "threshold": { "alias": "threshold"; "required": false; }; "visibility": { "alias": "visibility"; "required": false; }; }, { "mdsHeaderClose": "mdsHeaderClose"; "mdsHeaderVisibilityChange": "mdsHeaderVisibilityChange"; }, never, ["*"], true, never>;
1160
+ }
1161
+ declare interface MdsHeader extends Components.MdsHeader {
1162
+ /**
1163
+ * Emits when the component is closed
1164
+ */
1165
+ mdsHeaderClose: EventEmitter<MdsHeaderCustomEvent<MdsHeaderEventDetail>>;
1166
+ /**
1167
+ * Emits when the component mds-header-bar is shown or hidden
1168
+ */
1169
+ mdsHeaderVisibilityChange: EventEmitter<MdsHeaderCustomEvent<MdsHeaderVisibilityEventDetail>>;
1170
+ }
1171
+ declare class MdsHeaderBar {
1172
+ protected z: NgZone;
1173
+ protected el: HTMLMdsHeaderBarElement;
1174
+ /**
1175
+ * Sets the visibility type of the hamburger menu @default 'mobile'
1176
+ */
1177
+ set menu(_: Components.MdsHeaderBar['menu']);
1178
+ /**
1179
+ * Sets the visibility type of the navigation menu @default 'desktop'
1180
+ */
1181
+ set nav(_: Components.MdsHeaderBar['nav']);
1182
+ mdsHeaderBarOpen: EventEmitter<MdsHeaderBarCustomEvent<void>>;
1183
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1184
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsHeaderBar, never>;
1185
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsHeaderBar, "mds-header-bar", never, { "menu": { "alias": "menu"; "required": false; }; "nav": { "alias": "nav"; "required": false; }; }, { "mdsHeaderBarOpen": "mdsHeaderBarOpen"; }, never, ["*"], true, never>;
1186
+ }
1187
+ declare interface MdsHeaderBar extends Components.MdsHeaderBar {
1188
+ /**
1189
+ * Emits when the component is opened
1190
+ */
1191
+ mdsHeaderBarOpen: EventEmitter<MdsHeaderBarCustomEvent<void>>;
1192
+ }
1193
+ declare class MdsHelp {
1194
+ protected z: NgZone;
1195
+ protected el: HTMLMdsHelpElement;
1196
+ /**
1197
+ * Set the name of the icon.
1198
+ */
1199
+ set icon(_: Components.MdsHelp['icon']);
1200
+ /**
1201
+ * If set, the component will be placed automatically near it's caller. @default true
1202
+ */
1203
+ set autoPlacement(_: Components.MdsHelp['autoPlacement']);
1204
+ /**
1205
+ * Specifies where the component should be placed relative to the caller. @default 'top'
1206
+ */
1207
+ set placement(_: Components.MdsHelp['placement']);
1208
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1209
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsHelp, never>;
1210
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsHelp, "mds-help", never, { "autoPlacement": { "alias": "autoPlacement"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; }, {}, never, ["*"], true, never>;
1211
+ }
1212
+ declare interface MdsHelp extends Components.MdsHelp {
1213
+ }
1214
+ declare class MdsHorizontalScroll {
1215
+ protected z: NgZone;
1216
+ protected el: HTMLMdsHorizontalScrollElement;
1217
+ /**
1218
+ * Specifies the viewport which will display navigation controls @default 'desktop'
1219
+ */
1220
+ set controls(_: Components.MdsHorizontalScroll['controls']);
1221
+ /**
1222
+ * Specifies the box’s snap position as an alignment of its snap area @default 'position'
1223
+ */
1224
+ set navigation(_: Components.MdsHorizontalScroll['navigation']);
1225
+ /**
1226
+ * Specifies the box’s snap position as an alignment of its snap area @default 'start'
1227
+ */
1228
+ set snap(_: Components.MdsHorizontalScroll['snap']);
1229
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1230
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsHorizontalScroll, never>;
1231
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsHorizontalScroll, "mds-horizontal-scroll", never, { "controls": { "alias": "controls"; "required": false; }; "navigation": { "alias": "navigation"; "required": false; }; "snap": { "alias": "snap"; "required": false; }; }, {}, never, ["*"], true, never>;
1232
+ }
1233
+ declare interface MdsHorizontalScroll extends Components.MdsHorizontalScroll {
1234
+ }
1235
+ declare class MdsHr {
1236
+ protected z: NgZone;
1237
+ protected el: HTMLMdsHrElement;
1238
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1239
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsHr, never>;
1240
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsHr, "mds-hr", never, {}, {}, never, ["*"], true, never>;
1241
+ }
1242
+ declare interface MdsHr extends Components.MdsHr {
1243
+ }
1244
+ declare class MdsIcon {
1245
+ protected z: NgZone;
1246
+ protected el: HTMLMdsIconElement;
1247
+ /**
1248
+ * The name of the icon or a base64 string to render it as an svg
1249
+ */
1250
+ set name(_: Components.MdsIcon['name']);
1251
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1252
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsIcon, never>;
1253
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsIcon, "mds-icon", never, { "name": { "alias": "name"; "required": true; }; }, {}, never, ["*"], true, never>;
1254
+ }
1255
+ declare interface MdsIcon extends Components.MdsIcon {
1256
+ }
1257
+ declare class MdsImg {
1258
+ protected z: NgZone;
1259
+ protected el: HTMLMdsImgElement;
1260
+ /**
1261
+ * Specifies an alternate text for an image @default ''
1262
+ */
1263
+ set alt(_: Components.MdsImg['alt']);
1264
+ /**
1265
+ * Allow images from third-party sites that allow
1266
+ cross-origin access to be used with canvas @default 'use-credentials'
1267
+ */
1268
+ set crossorigin(_: Components.MdsImg['crossorigin']);
1269
+ /**
1270
+ * The height attribute specifies the height of an image, in pixels.
1271
+ */
1272
+ set height(_: Components.MdsImg['height']);
1273
+ /**
1274
+ * Specifies whether a browser should load an image immediately
1275
+ or to defer loading of images until some conditions are met. @default 'lazy'
1276
+ */
1277
+ set loading(_: Components.MdsImg['loading']);
1278
+ /**
1279
+ * Specifies which referrer information to use when fetching an image. @default 'no-referrer-when-downgrade'
1280
+ */
1281
+ set referrerpolicy(_: Components.MdsImg['referrerpolicy']);
1282
+ /**
1283
+ * One or more strings separated by commas, indicating a set of source sizes.
1284
+ https://medium.com/@MRWwebDesign/responsive-images-the-sizes-attribute-and-unexpected-image-sizes-882a2eadb6db
1285
+ */
1286
+ set sizes(_: Components.MdsImg['sizes']);
1287
+ /**
1288
+ * Specifies the path to the image
1289
+ */
1290
+ set src(_: Components.MdsImg['src']);
1291
+ /**
1292
+ * Specifies a list of image files to use in different situations.
1293
+ Defines multiple sizes of the same image, allowing the browser
1294
+ to select the appropriate image source.
1295
+ */
1296
+ set srcset(_: Components.MdsImg['srcset']);
1297
+ /**
1298
+ * Specifies a list of image files to use in different situations.
1299
+ Defines multiple sizes of the same image, allowing the browser
1300
+ to select the appropriate image source based on consumption configuration.
1301
+ ```
1302
+ <mds-img srcset-consumption="image-black-n-white-1x.jpg low, image-1x.jpg medium, image-2x.jpg high"></mds-img>
1303
+ ```
1304
+ */
1305
+ set srcsetConsumption(_: Components.MdsImg['srcsetConsumption']);
1306
+ /**
1307
+ * The width attribute specifies the width of an image, in pixels.
1308
+ */
1309
+ set width(_: Components.MdsImg['width']);
1310
+ mdsImgLoadError: EventEmitter<MdsImgCustomEvent<MdsImgEventDetail>>;
1311
+ mdsImgLoadSuccess: EventEmitter<MdsImgCustomEvent<MdsImgEventDetail>>;
1312
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1313
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsImg, never>;
1314
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsImg, "mds-img", never, { "alt": { "alias": "alt"; "required": false; }; "crossorigin": { "alias": "crossorigin"; "required": false; }; "height": { "alias": "height"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "referrerpolicy": { "alias": "referrerpolicy"; "required": false; }; "sizes": { "alias": "sizes"; "required": false; }; "src": { "alias": "src"; "required": false; }; "srcset": { "alias": "srcset"; "required": false; }; "srcsetConsumption": { "alias": "srcsetConsumption"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, { "mdsImgLoadError": "mdsImgLoadError"; "mdsImgLoadSuccess": "mdsImgLoadSuccess"; }, never, ["*"], true, never>;
1315
+ }
1316
+ declare interface MdsImg extends Components.MdsImg {
1317
+ /**
1318
+ * Emits when the image is not loaded
1319
+ */
1320
+ mdsImgLoadError: EventEmitter<MdsImgCustomEvent<MdsImgEventDetail>>;
1321
+ /**
1322
+ * Emits when the image is successfully loaded
1323
+ */
1324
+ mdsImgLoadSuccess: EventEmitter<MdsImgCustomEvent<MdsImgEventDetail>>;
1325
+ }
1326
+ declare class MdsInput {
1327
+ protected z: NgZone;
1328
+ protected el: HTMLMdsInputElement;
1329
+ /**
1330
+ * Specifies whether the element should have autocomplete enabled @default 'off'
1331
+ */
1332
+ set autocomplete(_: Components.MdsInput['autocomplete']);
1333
+ /**
1334
+ * Specifies that the element should automatically get focus when the page loads @default false
1335
+ */
1336
+ set autofocus(_: Components.MdsInput['autofocus']);
1337
+ /**
1338
+ * Specifies if the spinner icon is shown, replacing the icon if present @default false
1339
+ */
1340
+ set await(_: Components.MdsInput['await']);
1341
+ /**
1342
+ * Specifies the layout of the counter button when the input type is set to `number` @default 'vertical'
1343
+ */
1344
+ set controlsLayout(_: Components.MdsInput['controlsLayout']);
1345
+ /**
1346
+ * Specifies the icon type of the counter button when the input type is set to `number` @default 'arrow'
1347
+ */
1348
+ set controlsIcon(_: Components.MdsInput['controlsIcon']);
1349
+ /**
1350
+ * A list of search terms to be searched from the input field,
1351
+ it should be used with type="search" input.
1352
+ */
1353
+ set datalist(_: Components.MdsInput['datalist']);
1354
+ /**
1355
+ * If true, the element is displayed as disabled @default false
1356
+ */
1357
+ set disabled(_: Components.MdsInput['disabled']);
1358
+ /**
1359
+ * An icon displayed at the right of the input
1360
+ */
1361
+ set icon(_: Components.MdsInput['icon']);
1362
+ /**
1363
+ * Specifies the maximum value
1364
+ use it with input type="number" or type="date"
1365
+ Example: max="180", max="2046-12-04"
1366
+ */
1367
+ set max(_: Components.MdsInput['max']);
1368
+ /**
1369
+ * Specifies the maximum number of characters allowed in an element.
1370
+ Use it with input type="text".
1371
+ If maxlength is set to 0 or a negative number it will be considered as undefined.
1372
+ */
1373
+ set maxlength(_: Components.MdsInput['maxlength']);
1374
+ /**
1375
+ * Toggles text recognition
1376
+ */
1377
+ set mic(_: Components.MdsInput['mic']);
1378
+ /**
1379
+ * Specifies the minimum value
1380
+ use it with input type="number" or type="date"
1381
+ Example: min="-3", min="1988-04-15"
1382
+ */
1383
+ set min(_: Components.MdsInput['min']);
1384
+ /**
1385
+ * Specifies the minimum number of characters allowed in an element
1386
+ use it with input type="number"
1387
+ */
1388
+ set minlength(_: Components.MdsInput['minlength']);
1389
+ /**
1390
+ * Is needed to reference the form data after the form is submitted
1391
+ */
1392
+ set name(_: Components.MdsInput['name']);
1393
+ /**
1394
+ * Specifies a regular expression that element\'s value is checked against
1395
+ */
1396
+ set pattern(_: Components.MdsInput['pattern']);
1397
+ /**
1398
+ * Specifies a short hint that describes the expected value of the element
1399
+ */
1400
+ set placeholder(_: Components.MdsInput['placeholder']);
1401
+ /**
1402
+ * Specifies that the element is read-only @default false
1403
+ */
1404
+ set readonly(_: Components.MdsInput['readonly']);
1405
+ /**
1406
+ * Specifies that the element must be filled out before submitting the form @default false
1407
+ */
1408
+ set required(_: Components.MdsInput['required']);
1409
+ /**
1410
+ * Sets the variant of the input field @default 'primary'
1411
+ */
1412
+ set variant(_: Components.MdsInput['variant']);
1413
+ /**
1414
+ * Sets the word(s) of the tip of the input field
1415
+ */
1416
+ set tip(_: Components.MdsInput['tip']);
1417
+ /**
1418
+ * Specifies the interval between legal numbers in an input field
1419
+ */
1420
+ set step(_: Components.MdsInput['step']);
1421
+ /**
1422
+ * Specifies the type of input element @default 'text'
1423
+ */
1424
+ set type(_: Components.MdsInput['type']);
1425
+ /**
1426
+ * Specifies the typography of input element @default 'detail'
1427
+ */
1428
+ set typography(_: Components.MdsInput['typography']);
1429
+ /**
1430
+ * Specifies the value of the input element @default ''
1431
+ */
1432
+ set value(_: Components.MdsInput['value']);
1433
+ mdsInputChange: EventEmitter<MdsInputCustomEvent<MdsInputEventDetail>>;
1434
+ mdsInputKeydown: EventEmitter<MdsInputCustomEvent<KeyboardEvent>>;
1435
+ mdsInputBlur: EventEmitter<MdsInputCustomEvent<void>>;
1436
+ mdsInputFocus: EventEmitter<MdsInputCustomEvent<void>>;
1437
+ mdsInputSpeechEnd: EventEmitter<MdsInputCustomEvent<void>>;
1438
+ mdsInputValidation: EventEmitter<MdsInputCustomEvent<boolean>>;
1439
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1440
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsInput, never>;
1441
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsInput, "mds-input", never, { "autocomplete": { "alias": "autocomplete"; "required": false; }; "autofocus": { "alias": "autofocus"; "required": false; }; "await": { "alias": "await"; "required": false; }; "controlsIcon": { "alias": "controlsIcon"; "required": false; }; "controlsLayout": { "alias": "controlsLayout"; "required": false; }; "datalist": { "alias": "datalist"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "max": { "alias": "max"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "mic": { "alias": "mic"; "required": false; }; "min": { "alias": "min"; "required": false; }; "minlength": { "alias": "minlength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "step": { "alias": "step"; "required": false; }; "tip": { "alias": "tip"; "required": false; }; "type": { "alias": "type"; "required": false; }; "typography": { "alias": "typography"; "required": false; }; "value": { "alias": "value"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, { "mdsInputChange": "mdsInputChange"; "mdsInputKeydown": "mdsInputKeydown"; "mdsInputBlur": "mdsInputBlur"; "mdsInputFocus": "mdsInputFocus"; "mdsInputSpeechEnd": "mdsInputSpeechEnd"; "mdsInputValidation": "mdsInputValidation"; }, never, ["*"], true, never>;
1442
+ }
1443
+ declare interface MdsInput extends Components.MdsInput {
1444
+ /**
1445
+ * Emits an InputChangeEventDetail when the value of the input element changes
1446
+ */
1447
+ mdsInputChange: EventEmitter<MdsInputCustomEvent<MdsInputEventDetail>>;
1448
+ /**
1449
+ * Emits a KeyboardEvent when a keyboard key is pressed on the focused input element
1450
+ */
1451
+ mdsInputKeydown: EventEmitter<MdsInputCustomEvent<KeyboardEvent>>;
1452
+ /**
1453
+ * Emits a void event when input element is blurred
1454
+ */
1455
+ mdsInputBlur: EventEmitter<MdsInputCustomEvent<void>>;
1456
+ /**
1457
+ * Emits a void event when input element is focused
1458
+ */
1459
+ mdsInputFocus: EventEmitter<MdsInputCustomEvent<void>>;
1460
+ /**
1461
+ * Emits a void event when input speech recognition ends
1462
+ */
1463
+ mdsInputSpeechEnd: EventEmitter<MdsInputCustomEvent<void>>;
1464
+ /**
1465
+ * Emits a boolean event when a input execute validation
1466
+ */
1467
+ mdsInputValidation: EventEmitter<MdsInputCustomEvent<boolean>>;
1468
+ }
1469
+ declare class MdsInputDate {
1470
+ protected z: NgZone;
1471
+ protected el: HTMLMdsInputDateElement;
1472
+ /**
1473
+ * Specifies the value of the input @description It's in ISO format (YYYY-MM-DD).,@default ''
1474
+ */
1475
+ set value(_: Components.MdsInputDate['value']);
1476
+ /**
1477
+ * Is needed to reference the form data after the form is submitted
1478
+ */
1479
+ set name(_: Components.MdsInputDate['name']);
1480
+ /**
1481
+ * Sets the variant of the input field @default 'primary'
1482
+ */
1483
+ set variant(_: Components.MdsInputDate['variant']);
1484
+ /**
1485
+ * Specifies the min date of the range, user cannot set dates before this date @description It's in ISO format (YYYY-MM-DD).,@default null
1486
+ */
1487
+ set min(_: Components.MdsInputDate['min']);
1488
+ /**
1489
+ * Specifies the max date of the range, user cannot set dates after this date @description It's in ISO format (YYYY-MM-DD).,@default null
1490
+ */
1491
+ set max(_: Components.MdsInputDate['max']);
1492
+ /**
1493
+ * Specifies the delay in milliseconds before closing the calendar dropdown, if the value is 0 the dropdown will not close @description Default is 500,@default 500
1494
+ */
1495
+ set delay(_: Components.MdsInputDate['delay']);
1496
+ /**
1497
+ * If true, the element is displayed as disabled @default false
1498
+ */
1499
+ set disabled(_: Components.MdsInputDate['disabled']);
1500
+ /**
1501
+ * Specifies that the element is read-only @default false
1502
+ */
1503
+ set readonly(_: Components.MdsInputDate['readonly']);
1504
+ /**
1505
+ * Specifies that the element must be filled out before submitting the form @default false
1506
+ */
1507
+ set required(_: Components.MdsInputDate['required']);
1508
+ mdsInputValidation: EventEmitter<MdsInputDateCustomEvent<boolean>>;
1509
+ mdsInputDateSelect: EventEmitter<MdsInputDateCustomEvent<string>>;
1510
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1511
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsInputDate, never>;
1512
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsInputDate, "mds-input-date", never, { "delay": { "alias": "delay"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "name": { "alias": "name"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "value": { "alias": "value"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, { "mdsInputValidation": "mdsInputValidation"; "mdsInputDateSelect": "mdsInputDateSelect"; }, never, ["*"], true, never>;
1513
+ }
1514
+ declare interface MdsInputDate extends Components.MdsInputDate {
1515
+ /**
1516
+ * Emits a boolean event when a input execute validation
1517
+ */
1518
+ mdsInputValidation: EventEmitter<MdsInputDateCustomEvent<boolean>>;
1519
+ /**
1520
+ * Emitted when the selected date value changes.
1521
+ */
1522
+ mdsInputDateSelect: EventEmitter<MdsInputDateCustomEvent<string>>;
1523
+ }
1524
+ declare class MdsInputDateRange {
1525
+ protected z: NgZone;
1526
+ protected el: HTMLMdsInputDateRangeElement;
1527
+ /**
1528
+ * Specifies the start date of the range @description It's in ISO format (YYYY-MM-DD).,@default ''
1529
+ */
1530
+ set startDate(_: Components.MdsInputDateRange['startDate']);
1531
+ /**
1532
+ * Specifies the end date of the range @description It's in ISO format (YYYY-MM-DD).,@default ''
1533
+ */
1534
+ set endDate(_: Components.MdsInputDateRange['endDate']);
1535
+ /**
1536
+ * Specifies the min date of the range, user cannot set dates before this date @description It's in ISO format (YYYY-MM-DD).,@default null
1537
+ */
1538
+ set min(_: Components.MdsInputDateRange['min']);
1539
+ /**
1540
+ * Specifies the max date of the range, user cannot set dates after this date @description It's in ISO format (YYYY-MM-DD).,@default null
1541
+ */
1542
+ set max(_: Components.MdsInputDateRange['max']);
1543
+ /**
1544
+ * Specifies the delay in milliseconds before closing the calendar dropdown, if the value is 0 the dropdown will not close @description Default is 500,@default 500
1545
+ */
1546
+ set delay(_: Components.MdsInputDateRange['delay']);
1547
+ /**
1548
+ * Enables the linked dual-calendar range picker behavior. @default false
1549
+ */
1550
+ set dualCalendar(_: Components.MdsInputDateRange['dualCalendar']);
1551
+ /**
1552
+ * Is needed to reference the form data after the form is submitted
1553
+ */
1554
+ set name(_: Components.MdsInputDateRange['name']);
1555
+ mdsInputDateRangeValueChange: EventEmitter<MdsInputDateRangeCustomEvent<{
1556
+ startDate: string;
1557
+ endDate: string;
1558
+ }>>;
1559
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1560
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsInputDateRange, never>;
1561
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsInputDateRange, "mds-input-date-range", never, { "delay": { "alias": "delay"; "required": false; }; "dualCalendar": { "alias": "dualCalendar"; "required": false; }; "endDate": { "alias": "endDate"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "name": { "alias": "name"; "required": false; }; "startDate": { "alias": "startDate"; "required": false; }; }, { "mdsInputDateRangeValueChange": "mdsInputDateRangeValueChange"; }, never, ["*"], true, never>;
1562
+ }
1563
+ declare interface MdsInputDateRange extends Components.MdsInputDateRange {
1564
+ /**
1565
+ * Emitted when the selected start or end date changes.
1566
+ */
1567
+ mdsInputDateRangeValueChange: EventEmitter<MdsInputDateRangeCustomEvent<{
1568
+ startDate: string;
1569
+ endDate: string;
1570
+ }>>;
1571
+ }
1572
+ declare class MdsInputDateRangePreselection {
1573
+ protected z: NgZone;
1574
+ protected el: HTMLMdsInputDateRangePreselectionElement;
1575
+ /**
1576
+ * Sets the preselection date range
1577
+ */
1578
+ set selected(_: Components.MdsInputDateRangePreselection['selected']);
1579
+ /**
1580
+ * Sets the start date of the preselection
1581
+ */
1582
+ set start(_: Components.MdsInputDateRangePreselection['start']);
1583
+ /**
1584
+ * Sets the end date of the preselection
1585
+ */
1586
+ set end(_: Components.MdsInputDateRangePreselection['end']);
1587
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1588
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsInputDateRangePreselection, never>;
1589
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsInputDateRangePreselection, "mds-input-date-range-preselection", never, { "end": { "alias": "end"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "start": { "alias": "start"; "required": true; }; }, {}, never, ["*"], true, never>;
1590
+ }
1591
+ declare interface MdsInputDateRangePreselection extends Components.MdsInputDateRangePreselection {
1592
+ }
1593
+ declare class MdsInputField {
1594
+ protected z: NgZone;
1595
+ protected el: HTMLMdsInputFieldElement;
1596
+ /**
1597
+ * Display a text on the top of the input text field
1598
+ */
1599
+ set label(_: Components.MdsInputField['label']);
1600
+ /**
1601
+ * Display a message at the bottom of the input text field
1602
+ */
1603
+ set message(_: Components.MdsInputField['message']);
1604
+ /**
1605
+ * Display the variant of a message at the bottom of the input text field @default 'primary'
1606
+ */
1607
+ set variant(_: Components.MdsInputField['variant']);
1608
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1609
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsInputField, never>;
1610
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsInputField, "mds-input-field", never, { "label": { "alias": "label"; "required": false; }; "message": { "alias": "message"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], true, never>;
1611
+ }
1612
+ declare interface MdsInputField extends Components.MdsInputField {
1613
+ }
1614
+ declare class MdsInputOtp {
1615
+ protected z: NgZone;
1616
+ protected el: HTMLMdsInputOtpElement;
1617
+ /**
1618
+ * Number of digits in the OTP code @default 6
1619
+ */
1620
+ set length(_: Components.MdsInputOtp['length']);
1621
+ /**
1622
+ * Automatically submits the form when the OTP code is complete @default false
1623
+ */
1624
+ set autosubmit(_: Components.MdsInputOtp['autosubmit']);
1625
+ /**
1626
+ * The current value of the OTP code @default ''
1627
+ */
1628
+ set value(_: Components.MdsInputOtp['value']);
1629
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1630
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsInputOtp, never>;
1631
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsInputOtp, "mds-input-otp", never, { "autosubmit": { "alias": "autosubmit"; "required": false; }; "length": { "alias": "length"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], true, never>;
1632
+ }
1633
+ declare interface MdsInputOtp extends Components.MdsInputOtp {
1634
+ }
1635
+ declare class MdsInputRange {
1636
+ protected z: NgZone;
1637
+ protected el: HTMLMdsInputRangeElement;
1638
+ /**
1639
+ * A function to custom how value is represented
1640
+ */
1641
+ set formatValue(_: Components.MdsInputRange['formatValue']);
1642
+ /**
1643
+ * Is needed to reference the form data after the form is submitted
1644
+ */
1645
+ set name(_: Components.MdsInputRange['name']);
1646
+ /**
1647
+ * The greatest value in the range of permitted values @default 100
1648
+ */
1649
+ set max(_: Components.MdsInputRange['max']);
1650
+ /**
1651
+ * The lowest value in the range of permitted values @default 0
1652
+ */
1653
+ set min(_: Components.MdsInputRange['min']);
1654
+ /**
1655
+ * The step attribute is a number that specifies the granularity that
1656
+ the value must adhere to, or the special value any, which is described below. @default 1
1657
+ */
1658
+ set step(_: Components.MdsInputRange['step']);
1659
+ /**
1660
+ * Sets if the component is disabled
1661
+ */
1662
+ set disabled(_: Components.MdsInputRange['disabled']);
1663
+ /**
1664
+ * The value attribute contains a number which contains a representation of the selected number.
1665
+ */
1666
+ set value(_: Components.MdsInputRange['value']);
1667
+ mdsInputRangeChange: EventEmitter<MdsInputRangeCustomEvent<number>>;
1668
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1669
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsInputRange, never>;
1670
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsInputRange, "mds-input-range", never, { "disabled": { "alias": "disabled"; "required": false; }; "formatValue": { "alias": "formatValue"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "name": { "alias": "name"; "required": false; }; "step": { "alias": "step"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "mdsInputRangeChange": "mdsInputRangeChange"; }, never, ["*"], true, never>;
1671
+ }
1672
+ declare interface MdsInputRange extends Components.MdsInputRange {
1673
+ /**
1674
+ * Emits when the input range is changed
1675
+ */
1676
+ mdsInputRangeChange: EventEmitter<MdsInputRangeCustomEvent<number>>;
1677
+ }
1678
+ declare class MdsInputSelect {
1679
+ protected z: NgZone;
1680
+ protected el: HTMLMdsInputSelectElement;
1681
+ /**
1682
+ * Specifies a short hint that describes the expected value of the element
1683
+ */
1684
+ set autocomplete(_: Components.MdsInputSelect['autocomplete']);
1685
+ /**
1686
+ * Specifies a short hint that describes the expected value of the element
1687
+ */
1688
+ set autoFocus(_: Components.MdsInputSelect['autoFocus']);
1689
+ /**
1690
+ * Specifies a short hint that describes the expected value of the element
1691
+ */
1692
+ set placeholder(_: Components.MdsInputSelect['placeholder']);
1693
+ /**
1694
+ * Is needed to reference the form data after the form is submitted
1695
+ */
1696
+ set name(_: Components.MdsInputSelect['name']);
1697
+ /**
1698
+ * If true, the element is displayed as disabled @default false
1699
+ */
1700
+ set disabled(_: Components.MdsInputSelect['disabled']);
1701
+ /**
1702
+ * Specifies that the element must be filled out before submitting the form @default false
1703
+ */
1704
+ set required(_: Components.MdsInputSelect['required']);
1705
+ /**
1706
+ * Specifies if the select should allow multiple options to be selected in the list @default false
1707
+ */
1708
+ set multiple(_: Components.MdsInputSelect['multiple']);
1709
+ /**
1710
+ * When `multiple` is set to `true`, represents the number or rows in the list that should be visible @default 0
1711
+ */
1712
+ set size(_: Components.MdsInputSelect['size']);
1713
+ /**
1714
+ * Specifies the value of the component @default ''
1715
+ */
1716
+ set value(_: Components.MdsInputSelect['value']);
1717
+ /**
1718
+ * Specifies the default value of the component
1719
+ */
1720
+ set defaultValue(_: Components.MdsInputSelect['defaultValue']);
1721
+ /**
1722
+ * Sets the variant of the component
1723
+ */
1724
+ set variant(_: Components.MdsInputSelect['variant']);
1725
+ mdsInputSelectChange: EventEmitter<MdsInputSelectCustomEvent<MdsInputEventDetail>>;
1726
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1727
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsInputSelect, never>;
1728
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsInputSelect, "mds-input-select", never, { "autoFocus": { "alias": "autoFocus"; "required": false; }; "autocomplete": { "alias": "autocomplete"; "required": false; }; "defaultValue": { "alias": "defaultValue"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "required": { "alias": "required"; "required": false; }; "size": { "alias": "size"; "required": false; }; "value": { "alias": "value"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, { "mdsInputSelectChange": "mdsInputSelectChange"; }, never, ["*"], true, never>;
1729
+ }
1730
+ declare interface MdsInputSelect extends Components.MdsInputSelect {
1731
+ /**
1732
+ * Emits an InputChangeEventDetail when the value of the input element changes
1733
+ */
1734
+ mdsInputSelectChange: EventEmitter<MdsInputSelectCustomEvent<MdsInputEventDetail>>;
1735
+ }
1736
+ declare class MdsInputSwitch {
1737
+ protected z: NgZone;
1738
+ protected el: HTMLMdsInputSwitchElement;
1739
+ /**
1740
+ * Sets or returns whether a checkbox should automatically
1741
+ get focus when the page loads
1742
+ */
1743
+ set autofocus(_: Components.MdsInputSwitch['autofocus']);
1744
+ /**
1745
+ * Specifies that an <input> element should be pre-selected
1746
+ when the page loads (for type="checkbox" or type="radio")
1747
+ */
1748
+ set checked(_: Components.MdsInputSwitch['checked']);
1749
+ /**
1750
+ * Sets or returns whether a checkbox is disabled, or not
1751
+ */
1752
+ set disabled(_: Components.MdsInputSwitch['disabled']);
1753
+ /**
1754
+ * Sets if the type switch mode shows explicit icons
1755
+ */
1756
+ set explicit(_: Components.MdsInputSwitch['explicit']);
1757
+ /**
1758
+ * The checked icon displayed @default ''
1759
+ */
1760
+ set icon(_: Components.MdsInputSwitch['icon']);
1761
+ /**
1762
+ * Sets or returns the indeterminate state of the checkbox
1763
+ */
1764
+ set indeterminate(_: Components.MdsInputSwitch['indeterminate']);
1765
+ /**
1766
+ * Specifies the name of an <input> element @default ''
1767
+ */
1768
+ set name(_: Components.MdsInputSwitch['name']);
1769
+ /**
1770
+ * Specifies the size for the switch toggle, it works only if attribute 'type' is set to 'switch' @default 'md'
1771
+ */
1772
+ set size(_: Components.MdsInputSwitch['size']);
1773
+ /**
1774
+ * Specifies switch type: switch (default), checkbox and radio @default 'switch'
1775
+ */
1776
+ set type(_: Components.MdsInputSwitch['type']);
1777
+ /**
1778
+ * Specifies the font typography of the element @default 'detail'
1779
+ */
1780
+ set typography(_: Components.MdsInputSwitch['typography']);
1781
+ /**
1782
+ * Specifies the variant for `typography`
1783
+ */
1784
+ set variant(_: Components.MdsInputSwitch['variant']);
1785
+ /**
1786
+ * Specifies the value of the input element @default ''
1787
+ */
1788
+ set value(_: Components.MdsInputSwitch['value']);
1789
+ mdsInputSwitchChange: EventEmitter<MdsInputSwitchCustomEvent<MdsInputSwitchEventDetail>>;
1790
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1791
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsInputSwitch, never>;
1792
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsInputSwitch, "mds-input-switch", never, { "autofocus": { "alias": "autofocus"; "required": false; }; "checked": { "alias": "checked"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "explicit": { "alias": "explicit"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "name": { "alias": "name"; "required": false; }; "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; "typography": { "alias": "typography"; "required": false; }; "value": { "alias": "value"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, { "mdsInputSwitchChange": "mdsInputSwitchChange"; }, never, ["*"], true, never>;
1793
+ }
1794
+ declare interface MdsInputSwitch extends Components.MdsInputSwitch {
1795
+ /**
1796
+ * Emits when the value changes
1797
+ */
1798
+ mdsInputSwitchChange: EventEmitter<MdsInputSwitchCustomEvent<MdsInputSwitchEventDetail>>;
1799
+ }
1800
+ declare class MdsInputTip {
1801
+ protected z: NgZone;
1802
+ protected el: HTMLMdsInputTipElement;
1803
+ /**
1804
+ * Specifies if the component is active and shows expanded children or not @default false
1805
+ */
1806
+ set active(_: Components.MdsInputTip['active']);
1807
+ /**
1808
+ * Specifies the position of the element relative to its container @default 'top'
1809
+ */
1810
+ set position(_: Components.MdsInputTip['position']);
1811
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1812
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsInputTip, never>;
1813
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsInputTip, "mds-input-tip", never, { "active": { "alias": "active"; "required": false; }; "position": { "alias": "position"; "required": false; }; }, {}, never, ["*"], true, never>;
1814
+ }
1815
+ declare interface MdsInputTip extends Components.MdsInputTip {
1816
+ }
1817
+ declare class MdsInputTipItem {
1818
+ protected z: NgZone;
1819
+ protected el: HTMLMdsInputTipItemElement;
1820
+ /**
1821
+ * Specifies the variant of the element @default 'required'
1822
+ */
1823
+ set variant(_: Components.MdsInputTipItem['variant']);
1824
+ /**
1825
+ * Specifies if the element is expanded
1826
+ */
1827
+ set expanded(_: Components.MdsInputTipItem['expanded']);
1828
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1829
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsInputTipItem, never>;
1830
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsInputTipItem, "mds-input-tip-item", never, { "expanded": { "alias": "expanded"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], true, never>;
1831
+ }
1832
+ declare interface MdsInputTipItem extends Components.MdsInputTipItem {
1833
+ }
1834
+ declare class MdsInputUpload {
1835
+ protected z: NgZone;
1836
+ protected el: HTMLMdsInputUploadElement;
1837
+ /**
1838
+ * Defines the file types the file input should accept @default ''
1839
+ */
1840
+ set accept(_: Components.MdsInputUpload['accept']);
1841
+ /**
1842
+ * Specifies the max size of a single file that can be uploaded in MB @default 20
1843
+ */
1844
+ set maxFileSize(_: Components.MdsInputUpload['maxFileSize']);
1845
+ /**
1846
+ * Specifies the max number of files that can be uploaded @default 1
1847
+ */
1848
+ set maxFiles(_: Components.MdsInputUpload['maxFiles']);
1849
+ /**
1850
+ * Specifies if the component should show a sort widget by status or date of upload, if not defined let user choose
1851
+ */
1852
+ set sort(_: Components.MdsInputUpload['sort']);
1853
+ /**
1854
+ * Specifies initial files uploaded
1855
+ */
1856
+ set initialValue(_: Components.MdsInputUpload['initialValue']);
1857
+ mdsInputUploadChange: EventEmitter<MdsInputUploadCustomEvent<FileList | null>>;
1858
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1859
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsInputUpload, never>;
1860
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsInputUpload, "mds-input-upload", never, { "accept": { "alias": "accept"; "required": false; }; "initialValue": { "alias": "initialValue"; "required": false; }; "maxFileSize": { "alias": "maxFileSize"; "required": false; }; "maxFiles": { "alias": "maxFiles"; "required": false; }; "sort": { "alias": "sort"; "required": false; }; }, { "mdsInputUploadChange": "mdsInputUploadChange"; }, never, ["*"], true, never>;
1861
+ }
1862
+ declare interface MdsInputUpload extends Components.MdsInputUpload {
1863
+ /**
1864
+ * Emits when the component files are changed
1865
+ */
1866
+ mdsInputUploadChange: EventEmitter<MdsInputUploadCustomEvent<FileList | null>>;
1867
+ }
1868
+ declare class MdsKeyboard {
1869
+ protected z: NgZone;
1870
+ protected el: HTMLMdsKeyboardElement;
1871
+ /**
1872
+ * Shows the keyboard key combination test result
1873
+ */
1874
+ set test(_: Components.MdsKeyboard['test']);
1875
+ /**
1876
+ * Sets if the keyboard key combination test is enabled
1877
+ */
1878
+ set try(_: Components.MdsKeyboard['try']);
1879
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1880
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsKeyboard, never>;
1881
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsKeyboard, "mds-keyboard", never, { "test": { "alias": "test"; "required": false; }; "try": { "alias": "try"; "required": false; }; }, {}, never, ["*"], true, never>;
1882
+ }
1883
+ declare interface MdsKeyboard extends Components.MdsKeyboard {
1884
+ }
1885
+ declare class MdsKeyboardKey {
1886
+ protected z: NgZone;
1887
+ protected el: HTMLMdsKeyboardKeyElement;
1888
+ /**
1889
+ * Sets the code of the keyboard key for combination tests if `try` attribute is set from `mds-keyboard` parent component
1890
+ */
1891
+ set name(_: Components.MdsKeyboardKey['name']);
1892
+ /**
1893
+ * Sets if the key is pressed or not
1894
+ */
1895
+ set pressed(_: Components.MdsKeyboardKey['pressed']);
1896
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1897
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsKeyboardKey, never>;
1898
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsKeyboardKey, "mds-keyboard-key", never, { "name": { "alias": "name"; "required": false; }; "pressed": { "alias": "pressed"; "required": false; }; }, {}, never, ["*"], true, never>;
1899
+ }
1900
+ declare interface MdsKeyboardKey extends Components.MdsKeyboardKey {
1901
+ }
1902
+ declare class MdsKpi {
1903
+ protected z: NgZone;
1904
+ protected el: HTMLMdsKpiElement;
1905
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1906
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsKpi, never>;
1907
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsKpi, "mds-kpi", never, {}, {}, never, ["*"], true, never>;
1908
+ }
1909
+ declare interface MdsKpi extends Components.MdsKpi {
1910
+ }
1911
+ declare class MdsKpiItem {
1912
+ protected z: NgZone;
1913
+ protected el: HTMLMdsKpiItemElement;
1914
+ /**
1915
+ * Specifies the number to be displayed in the KPI element
1916
+ */
1917
+ set label(_: Components.MdsKpiItem['label']);
1918
+ /**
1919
+ * Specifies the description under the value in the KPI element
1920
+ */
1921
+ set description(_: Components.MdsKpiItem['description']);
1922
+ /**
1923
+ * Specifies the page threshold which starts the text animation @default 0
1924
+ */
1925
+ set threshold(_: Components.MdsKpiItem['threshold']);
1926
+ /**
1927
+ * Specifies the icon on the top of the KPI element
1928
+ */
1929
+ set icon(_: Components.MdsKpiItem['icon']);
1930
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1931
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsKpiItem, never>;
1932
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsKpiItem, "mds-kpi-item", never, { "description": { "alias": "description"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; "threshold": { "alias": "threshold"; "required": false; }; }, {}, never, ["*"], true, never>;
1933
+ }
1934
+ declare interface MdsKpiItem extends Components.MdsKpiItem {
1935
+ }
1936
+ declare class MdsLabel {
1937
+ protected z: NgZone;
1938
+ protected el: HTMLMdsLabelElement;
1939
+ /**
1940
+ * The label of the component
1941
+ */
1942
+ set label(_: Components.MdsLabel['label']);
1943
+ /**
1944
+ * Sets the theme variant colors @default 'sky'
1945
+ */
1946
+ set variant(_: Components.MdsLabel['variant']);
1947
+ /**
1948
+ * Sets the tone of the color variant @default 'weak'
1949
+ */
1950
+ set tone(_: Components.MdsLabel['tone']);
1951
+ /**
1952
+ * Truncates text inside the label or displays it in multiline if needed @default 'word'
1953
+ */
1954
+ set truncate(_: Components.MdsLabel['truncate']);
1955
+ /**
1956
+ * Specifies the typography of the element @default 'caption'
1957
+ */
1958
+ set typography(_: Components.MdsLabel['typography']);
1959
+ /**
1960
+ * Enables the cross icon to perform cancel/delete action on element @default false
1961
+ */
1962
+ set deletable(_: Components.MdsLabel['deletable']);
1963
+ mdsLabelDelete: EventEmitter<MdsLabelCustomEvent<void>>;
1964
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1965
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsLabel, never>;
1966
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsLabel, "mds-label", never, { "deletable": { "alias": "deletable"; "required": false; }; "label": { "alias": "label"; "required": false; }; "tone": { "alias": "tone"; "required": false; }; "truncate": { "alias": "truncate"; "required": false; }; "typography": { "alias": "typography"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, { "mdsLabelDelete": "mdsLabelDelete"; }, never, ["*"], true, never>;
1967
+ }
1968
+ declare interface MdsLabel extends Components.MdsLabel {
1969
+ /**
1970
+ * Emits when the label has to be cancelled
1971
+ */
1972
+ mdsLabelDelete: EventEmitter<MdsLabelCustomEvent<void>>;
1973
+ }
1974
+ declare class MdsList {
1975
+ protected z: NgZone;
1976
+ protected el: HTMLMdsListElement;
1977
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1978
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsList, never>;
1979
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsList, "mds-list", never, {}, {}, never, ["*"], true, never>;
1980
+ }
1981
+ declare interface MdsList extends Components.MdsList {
1982
+ }
1983
+ declare class MdsListItem {
1984
+ protected z: NgZone;
1985
+ protected el: HTMLMdsListItemElement;
1986
+ /**
1987
+ * Specifies the typography of the element @default 'detail'
1988
+ */
1989
+ set typography(_: Components.MdsListItem['typography']);
1990
+ /**
1991
+ * Specifies the variant for `typography` @default 'info'
1992
+ */
1993
+ set variant(_: Components.MdsListItem['variant']);
1994
+ /**
1995
+ * Specifies the icon displayed in the element
1996
+ */
1997
+ set icon(_: Components.MdsListItem['icon']);
1998
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
1999
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsListItem, never>;
2000
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsListItem, "mds-list-item", never, { "icon": { "alias": "icon"; "required": false; }; "typography": { "alias": "typography"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], true, never>;
2001
+ }
2002
+ declare interface MdsListItem extends Components.MdsListItem {
2003
+ }
2004
+ declare class MdsMention {
2005
+ protected z: NgZone;
2006
+ protected el: HTMLMdsMentionElement;
2007
+ /**
2008
+ * Sets the icon shown at the left of the label
2009
+ */
2010
+ set icon(_: Components.MdsMention['icon']);
2011
+ /**
2012
+ * Sets the label of the component
2013
+ */
2014
+ set label(_: Components.MdsMention['label']);
2015
+ /**
2016
+ * Sets the label of the component @default 'sm'
2017
+ */
2018
+ set size(_: Components.MdsMention['size']);
2019
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2020
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsMention, never>;
2021
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsMention, "mds-mention", never, { "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], true, never>;
2022
+ }
2023
+ declare interface MdsMention extends Components.MdsMention {
2024
+ }
2025
+ declare class MdsModal {
2026
+ protected z: NgZone;
2027
+ protected el: HTMLMdsModalElement;
2028
+ /**
2029
+ * Specifies if the modal is opened or not @default false
2030
+ */
2031
+ set opened(_: Components.MdsModal['opened']);
2032
+ /**
2033
+ * Specifies if the modal shows the backdrop @default true
2034
+ */
2035
+ set backdrop(_: Components.MdsModal['backdrop']);
2036
+ /**
2037
+ * Specifies the animation position of the modal window @default 'center'
2038
+ */
2039
+ set position(_: Components.MdsModal['position']);
2040
+ /**
2041
+ * Specifies if the component is animating itself or not @default 'none'
2042
+ */
2043
+ set animating(_: Components.MdsModal['animating']);
2044
+ /**
2045
+ * Specifies if the component is animating itself or not @default 'slide'
2046
+ */
2047
+ set animation(_: Components.MdsModal['animation']);
2048
+ /**
2049
+ * Specifies if the component prevents the body from scrolling when modal window is opened @default 'auto'
2050
+ */
2051
+ set overflow(_: Components.MdsModal['overflow']);
2052
+ /**
2053
+ * Specifies if the component can be closed with close button, or also if the backdrop background is cliccked.
2054
+ If `strict` is selected only the close button can dismiss the component via UI.
2055
+ If `relaxed` is selected the component can be dismissed also by cliccking the backdrop area. @default 'relaxed'
2056
+ */
2057
+ set interaction(_: Components.MdsModal['interaction']);
2058
+ mdsModalOpen: EventEmitter<MdsModalCustomEvent<void>>;
2059
+ mdsModalShow: EventEmitter<MdsModalCustomEvent<void>>;
2060
+ mdsModalClose: EventEmitter<MdsModalCustomEvent<void>>;
2061
+ mdsModalHide: EventEmitter<MdsModalCustomEvent<void>>;
2062
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2063
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsModal, never>;
2064
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsModal, "mds-modal", never, { "animating": { "alias": "animating"; "required": false; }; "animation": { "alias": "animation"; "required": false; }; "backdrop": { "alias": "backdrop"; "required": false; }; "interaction": { "alias": "interaction"; "required": false; }; "opened": { "alias": "opened"; "required": false; }; "overflow": { "alias": "overflow"; "required": false; }; "position": { "alias": "position"; "required": false; }; }, { "mdsModalOpen": "mdsModalOpen"; "mdsModalShow": "mdsModalShow"; "mdsModalClose": "mdsModalClose"; "mdsModalHide": "mdsModalHide"; }, never, ["*"], true, never>;
2065
+ }
2066
+ declare interface MdsModal extends Components.MdsModal {
2067
+ /**
2068
+ * Emits when a modal is closed
2069
+ */
2070
+ mdsModalOpen: EventEmitter<MdsModalCustomEvent<void>>;
2071
+ /**
2072
+ * Emits when a modal is totally visible, when the modal intro animation is finished
2073
+ */
2074
+ mdsModalShow: EventEmitter<MdsModalCustomEvent<void>>;
2075
+ /**
2076
+ * Emits when a modal is closed
2077
+ */
2078
+ mdsModalClose: EventEmitter<MdsModalCustomEvent<void>>;
2079
+ /**
2080
+ * Emits when a modal is totally invisible, can be useful to detach the component when it's hidden and gain memory
2081
+ */
2082
+ mdsModalHide: EventEmitter<MdsModalCustomEvent<void>>;
2083
+ }
2084
+ declare class MdsNote {
2085
+ protected z: NgZone;
2086
+ protected el: HTMLMdsNoteElement;
2087
+ /**
2088
+ * Enables the cross icon to perform cancel/delete action on element @default false
2089
+ */
2090
+ set deletable(_: Components.MdsNote['deletable']);
2091
+ /**
2092
+ * Specifies the color variant for the element @default 'yellow'
2093
+ */
2094
+ set variant(_: Components.MdsNote['variant']);
2095
+ mdsNoteDelete: EventEmitter<MdsNoteCustomEvent<void>>;
2096
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2097
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsNote, never>;
2098
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsNote, "mds-note", never, { "deletable": { "alias": "deletable"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, { "mdsNoteDelete": "mdsNoteDelete"; }, never, ["*"], true, never>;
2099
+ }
2100
+ declare interface MdsNote extends Components.MdsNote {
2101
+ /**
2102
+ * Emits when the note has to be cancelled
2103
+ */
2104
+ mdsNoteDelete: EventEmitter<MdsNoteCustomEvent<void>>;
2105
+ }
2106
+ declare class MdsNotification {
2107
+ protected z: NgZone;
2108
+ protected el: HTMLMdsNotificationElement;
2109
+ /**
2110
+ * Specifies the selector of the target element, this attribute is used with `querySelector` method.
2111
+ */
2112
+ set target(_: Components.MdsNotification['target']);
2113
+ /**
2114
+ * Specifies number of notifications to display, if it set to 0, the element will be hidden @default 0
2115
+ */
2116
+ set value(_: Components.MdsNotification['value']);
2117
+ /**
2118
+ * Specifies if the notification is visible @default true
2119
+ */
2120
+ set visible(_: Components.MdsNotification['visible']);
2121
+ /**
2122
+ * Specifies the position strategy of the notification @default 'fixed'
2123
+ */
2124
+ set strategy(_: Components.MdsNotification['strategy']);
2125
+ /**
2126
+ * Specifies the maximum number that can be seen, assuming that the number is for example 9 and that this is exceeded with 15, the component shows +9
2127
+ */
2128
+ set max(_: Components.MdsNotification['max']);
2129
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2130
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsNotification, never>;
2131
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsNotification, "mds-notification", never, { "max": { "alias": "max"; "required": false; }; "strategy": { "alias": "strategy"; "required": false; }; "target": { "alias": "target"; "required": false; }; "value": { "alias": "value"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; }, {}, never, ["*"], true, never>;
2132
+ }
2133
+ declare interface MdsNotification extends Components.MdsNotification {
2134
+ }
2135
+ declare class MdsPaginator {
2136
+ protected z: NgZone;
2137
+ protected el: HTMLMdsPaginatorElement;
2138
+ /**
2139
+ * Specifies the number of total pages to be handled @default 0
2140
+ */
2141
+ set pages(_: Components.MdsPaginator['pages']);
2142
+ /**
2143
+ * Specifies the current page selected in the paginator @default 1
2144
+ */
2145
+ set currentPage(_: Components.MdsPaginator['currentPage']);
2146
+ mdsPaginatorChange: EventEmitter<MdsPaginatorCustomEvent<MdsPaginatorEventDetail>>;
2147
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2148
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsPaginator, never>;
2149
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsPaginator, "mds-paginator", never, { "currentPage": { "alias": "currentPage"; "required": false; }; "pages": { "alias": "pages"; "required": false; }; }, { "mdsPaginatorChange": "mdsPaginatorChange"; }, never, ["*"], true, never>;
2150
+ }
2151
+ declare interface MdsPaginator extends Components.MdsPaginator {
2152
+ /**
2153
+ * Emits when a page is changed
2154
+ */
2155
+ mdsPaginatorChange: EventEmitter<MdsPaginatorCustomEvent<MdsPaginatorEventDetail>>;
2156
+ }
2157
+ declare class MdsPaginatorItem {
2158
+ protected z: NgZone;
2159
+ protected el: HTMLMdsPaginatorItemElement;
2160
+ /**
2161
+ * Specifies the icon used inside the paginator item
2162
+ */
2163
+ set icon(_: Components.MdsPaginatorItem['icon']);
2164
+ /**
2165
+ * Specifies if the item is selected or not, is handled from the parent paginator
2166
+ */
2167
+ set selected(_: Components.MdsPaginatorItem['selected']);
2168
+ /**
2169
+ * Specifies if the item is disabled or not, is handled from the parent paginator
2170
+ */
2171
+ set disabled(_: Components.MdsPaginatorItem['disabled']);
2172
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2173
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsPaginatorItem, never>;
2174
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsPaginatorItem, "mds-paginator-item", never, { "disabled": { "alias": "disabled"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, {}, never, ["*"], true, never>;
2175
+ }
2176
+ declare interface MdsPaginatorItem extends Components.MdsPaginatorItem {
2177
+ }
2178
+ declare class MdsPolicyAi {
2179
+ protected z: NgZone;
2180
+ protected el: HTMLMdsPolicyAiElement;
2181
+ /**
2182
+ * Sets the headline to custom component text
2183
+ */
2184
+ set headline(_: Components.MdsPolicyAi['headline']);
2185
+ /**
2186
+ * Sets the description to custom component long text
2187
+ */
2188
+ set description(_: Components.MdsPolicyAi['description']);
2189
+ /**
2190
+ * Sets the variant type of the component @default 'chip'
2191
+ */
2192
+ set variant(_: Components.MdsPolicyAi['variant']);
2193
+ /**
2194
+ * Sets the pointing URL of the component @default 'https://www.maggiolieditore.it/il-regolamento-europeo-sull-intelligenza-artificiale.html'
2195
+ */
2196
+ set href(_: Components.MdsPolicyAi['href']);
2197
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2198
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsPolicyAi, never>;
2199
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsPolicyAi, "mds-policy-ai", never, { "description": { "alias": "description"; "required": false; }; "headline": { "alias": "headline"; "required": false; }; "href": { "alias": "href"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], true, never>;
2200
+ }
2201
+ declare interface MdsPolicyAi extends Components.MdsPolicyAi {
2202
+ }
2203
+ declare class MdsPref {
2204
+ protected z: NgZone;
2205
+ protected el: HTMLMdsPrefElement;
2206
+ /**
2207
+ * Sets the size of the component items nested inside it
2208
+ */
2209
+ set size(_: Components.MdsPref['size']);
2210
+ /**
2211
+ * Sets if the component works as hidden element controller instead as UI element, visible on the DOM
2212
+ */
2213
+ set controller(_: Components.MdsPref['controller']);
2214
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2215
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsPref, never>;
2216
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsPref, "mds-pref", never, { "controller": { "alias": "controller"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, ["*"], true, never>;
2217
+ }
2218
+ declare interface MdsPref extends Components.MdsPref {
2219
+ }
2220
+ declare class MdsPrefAnimation {
2221
+ protected z: NgZone;
2222
+ protected el: HTMLMdsPrefAnimationElement;
2223
+ /**
2224
+ * Sets the size of the component items nested inside it
2225
+ */
2226
+ set size(_: Components.MdsPrefAnimation['size']);
2227
+ /**
2228
+ * Specifies the preference mode
2229
+ */
2230
+ set mode(_: Components.MdsPrefAnimation['mode']);
2231
+ mdsPrefChange: EventEmitter<MdsPrefAnimationCustomEvent<MdsPrefChangeEventDetail>>;
2232
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2233
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsPrefAnimation, never>;
2234
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsPrefAnimation, "mds-pref-animation", never, { "mode": { "alias": "mode"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "mdsPrefChange": "mdsPrefChange"; }, never, ["*"], true, never>;
2235
+ }
2236
+ declare interface MdsPrefAnimation extends Components.MdsPrefAnimation {
2237
+ /**
2238
+ * Emits when the component is triggered
2239
+ */
2240
+ mdsPrefChange: EventEmitter<MdsPrefAnimationCustomEvent<MdsPrefChangeEventDetail>>;
2241
+ }
2242
+ declare class MdsPrefConsumption {
2243
+ protected z: NgZone;
2244
+ protected el: HTMLMdsPrefConsumptionElement;
2245
+ /**
2246
+ * Sets the size of the component items nested inside it
2247
+ */
2248
+ set size(_: Components.MdsPrefConsumption['size']);
2249
+ /**
2250
+ * Specifies the preference mode
2251
+ */
2252
+ set mode(_: Components.MdsPrefConsumption['mode']);
2253
+ mdsPrefChange: EventEmitter<MdsPrefConsumptionCustomEvent<MdsPrefChangeEventDetail>>;
2254
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2255
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsPrefConsumption, never>;
2256
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsPrefConsumption, "mds-pref-consumption", never, { "mode": { "alias": "mode"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "mdsPrefChange": "mdsPrefChange"; }, never, ["*"], true, never>;
2257
+ }
2258
+ declare interface MdsPrefConsumption extends Components.MdsPrefConsumption {
2259
+ /**
2260
+ * Emits when the component is triggered
2261
+ */
2262
+ mdsPrefChange: EventEmitter<MdsPrefConsumptionCustomEvent<MdsPrefChangeEventDetail>>;
2263
+ }
2264
+ declare class MdsPrefContrast {
2265
+ protected z: NgZone;
2266
+ protected el: HTMLMdsPrefContrastElement;
2267
+ /**
2268
+ * Sets the size of the component items nested inside it
2269
+ */
2270
+ set size(_: Components.MdsPrefContrast['size']);
2271
+ /**
2272
+ * Specifies the preference mode
2273
+ */
2274
+ set mode(_: Components.MdsPrefContrast['mode']);
2275
+ mdsPrefChange: EventEmitter<MdsPrefContrastCustomEvent<MdsPrefChangeEventDetail>>;
2276
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2277
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsPrefContrast, never>;
2278
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsPrefContrast, "mds-pref-contrast", never, { "mode": { "alias": "mode"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "mdsPrefChange": "mdsPrefChange"; }, never, ["*"], true, never>;
2279
+ }
2280
+ declare interface MdsPrefContrast extends Components.MdsPrefContrast {
2281
+ /**
2282
+ * Emits when the component is triggered
2283
+ */
2284
+ mdsPrefChange: EventEmitter<MdsPrefContrastCustomEvent<MdsPrefChangeEventDetail>>;
2285
+ }
2286
+ declare class MdsPrefLanguage {
2287
+ protected z: NgZone;
2288
+ protected el: HTMLMdsPrefLanguageElement;
2289
+ /**
2290
+ * Sets the size of the component items nested inside it
2291
+ */
2292
+ set size(_: Components.MdsPrefLanguage['size']);
2293
+ /**
2294
+ * Specifies the language code based on HTML `lang` attribute
2295
+
2296
+ A string representing the language version as defined in {@link https://datatracker.ietf.org/doc/html/rfc5646 RFC 5646: Tags for Identifying Languages (also known as BCP 47)}.
2297
+
2298
+ `Examples of valid language codes include "en", "en-US", "fr", "fr-FR", "es-ES", etc.`
2299
+
2300
+ Supported languages are Italiano, English, Español, ελληνικά @default 'auto'
2301
+ */
2302
+ set set(_: Components.MdsPrefLanguage['set']);
2303
+ mdsPrefLanguageChange: EventEmitter<MdsPrefLanguageCustomEvent<MdsPrefLanguageEventDetail>>;
2304
+ mdsPrefChange: EventEmitter<MdsPrefLanguageCustomEvent<MdsPrefChangeEventDetail>>;
2305
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2306
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsPrefLanguage, never>;
2307
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsPrefLanguage, "mds-pref-language", never, { "set": { "alias": "set"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "mdsPrefLanguageChange": "mdsPrefLanguageChange"; "mdsPrefChange": "mdsPrefChange"; }, never, ["*"], true, never>;
2308
+ }
2309
+ declare interface MdsPrefLanguage extends Components.MdsPrefLanguage {
2310
+ /**
2311
+ * Emits when the component changes the language selected from the click event of the dropdown list item
2312
+ */
2313
+ mdsPrefLanguageChange: EventEmitter<MdsPrefLanguageCustomEvent<MdsPrefLanguageEventDetail>>;
2314
+ /**
2315
+ * Emits when the component is triggered
2316
+ */
2317
+ mdsPrefChange: EventEmitter<MdsPrefLanguageCustomEvent<MdsPrefChangeEventDetail>>;
2318
+ }
2319
+ declare class MdsPrefLanguageItem {
2320
+ protected z: NgZone;
2321
+ protected el: HTMLMdsPrefLanguageItemElement;
2322
+ /**
2323
+ * Specifies the language code based on HTML `lang` attribute
2324
+ */
2325
+ set code(_: Components.MdsPrefLanguageItem['code']);
2326
+ /**
2327
+ * Specifies if the element is selected @default false
2328
+ */
2329
+ set selected(_: Components.MdsPrefLanguageItem['selected']);
2330
+ mdsPrefLanguageItemSelect: EventEmitter<MdsPrefLanguageItemCustomEvent<MdsPrefLanguageEventDetail>>;
2331
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2332
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsPrefLanguageItem, never>;
2333
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsPrefLanguageItem, "mds-pref-language-item", never, { "code": { "alias": "code"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, { "mdsPrefLanguageItemSelect": "mdsPrefLanguageItemSelect"; }, never, ["*"], true, never>;
2334
+ }
2335
+ declare interface MdsPrefLanguageItem extends Components.MdsPrefLanguageItem {
2336
+ /**
2337
+ * Emits when the component trigger the language
2338
+ */
2339
+ mdsPrefLanguageItemSelect: EventEmitter<MdsPrefLanguageItemCustomEvent<MdsPrefLanguageEventDetail>>;
2340
+ }
2341
+ declare class MdsPrefTheme {
2342
+ protected z: NgZone;
2343
+ protected el: HTMLMdsPrefThemeElement;
2344
+ /**
2345
+ * Sets the size of the component items nested inside it
2346
+ */
2347
+ set size(_: Components.MdsPrefTheme['size']);
2348
+ /**
2349
+ * Specifies the preference mode
2350
+ */
2351
+ set mode(_: Components.MdsPrefTheme['mode']);
2352
+ /**
2353
+ * Specifies the transition of switching from a theme to another one @default 'smooth'
2354
+ */
2355
+ set transition(_: Components.MdsPrefTheme['transition']);
2356
+ mdsPrefChange: EventEmitter<MdsPrefThemeCustomEvent<MdsPrefChangeEventDetail>>;
2357
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2358
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsPrefTheme, never>;
2359
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsPrefTheme, "mds-pref-theme", never, { "mode": { "alias": "mode"; "required": false; }; "size": { "alias": "size"; "required": false; }; "transition": { "alias": "transition"; "required": false; }; }, { "mdsPrefChange": "mdsPrefChange"; }, never, ["*"], true, never>;
2360
+ }
2361
+ declare interface MdsPrefTheme extends Components.MdsPrefTheme {
2362
+ /**
2363
+ * Emits when the component is triggered
2364
+ */
2365
+ mdsPrefChange: EventEmitter<MdsPrefThemeCustomEvent<MdsPrefChangeEventDetail>>;
2366
+ }
2367
+ declare class MdsPrefThemeVariant {
2368
+ protected z: NgZone;
2369
+ protected el: HTMLMdsPrefThemeVariantElement;
2370
+ /**
2371
+ * Sets the size of the component items nested inside it
2372
+ */
2373
+ set size(_: Components.MdsPrefThemeVariant['size']);
2374
+ /**
2375
+ * Specifies the theme name attribute
2376
+ A string representing the theme name, should be a simple string name or kebab kase name.
2377
+ `Examples of valid language codes include "magma", "maggioli-editore", etc.` @default 'default'
2378
+ */
2379
+ set name(_: Components.MdsPrefThemeVariant['name']);
2380
+ /**
2381
+ * Specifies the theme scheme which can be 'light', 'dark' or 'all'
2382
+ Default is 'all' which means this theme supporto both light and dark.
2383
+ If you set 'light' means this theme support only light mode and will be forced and shown light colors mode only. @default 'all'
2384
+ */
2385
+ set scheme(_: Components.MdsPrefThemeVariant['scheme']);
2386
+ mdsPrefThemeVariantChange: EventEmitter<MdsPrefThemeVariantCustomEvent<MdsPrefThemeVariantEventDetail>>;
2387
+ mdsPrefChange: EventEmitter<MdsPrefThemeVariantCustomEvent<MdsPrefChangeEventDetail>>;
2388
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2389
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsPrefThemeVariant, never>;
2390
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsPrefThemeVariant, "mds-pref-theme-variant", never, { "name": { "alias": "name"; "required": false; }; "scheme": { "alias": "scheme"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "mdsPrefThemeVariantChange": "mdsPrefThemeVariantChange"; "mdsPrefChange": "mdsPrefChange"; }, never, ["*"], true, never>;
2391
+ }
2392
+ declare interface MdsPrefThemeVariant extends Components.MdsPrefThemeVariant {
2393
+ /**
2394
+ * Emits when the component changes the language selected from the click event of the dropdown list item
2395
+ */
2396
+ mdsPrefThemeVariantChange: EventEmitter<MdsPrefThemeVariantCustomEvent<MdsPrefThemeVariantEventDetail>>;
2397
+ /**
2398
+ * Emits when the component is triggered
2399
+ */
2400
+ mdsPrefChange: EventEmitter<MdsPrefThemeVariantCustomEvent<MdsPrefChangeEventDetail>>;
2401
+ }
2402
+ declare class MdsPrefThemeVariantItem {
2403
+ protected z: NgZone;
2404
+ protected el: HTMLMdsPrefThemeVariantItemElement;
2405
+ /**
2406
+ * Specifies the theme name
2407
+ */
2408
+ set label(_: Components.MdsPrefThemeVariantItem['label']);
2409
+ /**
2410
+ * Specifies the theme name @default 'default'
2411
+ */
2412
+ set name(_: Components.MdsPrefThemeVariantItem['name']);
2413
+ /**
2414
+ * Specifies the theme scheme which can be 'light', 'dark' or 'all' @default 'all'
2415
+ */
2416
+ set scheme(_: Components.MdsPrefThemeVariantItem['scheme']);
2417
+ /**
2418
+ * Specifies if the element is selected @default false
2419
+ */
2420
+ set selected(_: Components.MdsPrefThemeVariantItem['selected']);
2421
+ mdsPrefThemeVariantItemSelect: EventEmitter<MdsPrefThemeVariantItemCustomEvent<MdsPrefThemeVariantEventDetail>>;
2422
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2423
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsPrefThemeVariantItem, never>;
2424
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsPrefThemeVariantItem, "mds-pref-theme-variant-item", never, { "label": { "alias": "label"; "required": false; }; "name": { "alias": "name"; "required": false; }; "scheme": { "alias": "scheme"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; }, { "mdsPrefThemeVariantItemSelect": "mdsPrefThemeVariantItemSelect"; }, never, ["*"], true, never>;
2425
+ }
2426
+ declare interface MdsPrefThemeVariantItem extends Components.MdsPrefThemeVariantItem {
2427
+ /**
2428
+ * Emits when the component trigger the language
2429
+ */
2430
+ mdsPrefThemeVariantItemSelect: EventEmitter<MdsPrefThemeVariantItemCustomEvent<MdsPrefThemeVariantEventDetail>>;
2431
+ }
2432
+ declare class MdsPriceTable {
2433
+ protected z: NgZone;
2434
+ protected el: HTMLMdsPriceTableElement;
2435
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2436
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsPriceTable, never>;
2437
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsPriceTable, "mds-price-table", never, {}, {}, never, ["*"], true, never>;
2438
+ }
2439
+ declare interface MdsPriceTable extends Components.MdsPriceTable {
2440
+ }
2441
+ declare class MdsPriceTableFeatures {
2442
+ protected z: NgZone;
2443
+ protected el: HTMLMdsPriceTableFeaturesElement;
2444
+ /**
2445
+ * Sets a header title for the entire table
2446
+ */
2447
+ set label(_: Components.MdsPriceTableFeatures['label']);
2448
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2449
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsPriceTableFeatures, never>;
2450
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsPriceTableFeatures, "mds-price-table-features", never, { "label": { "alias": "label"; "required": false; }; }, {}, never, ["*"], true, never>;
2451
+ }
2452
+ declare interface MdsPriceTableFeatures extends Components.MdsPriceTableFeatures {
2453
+ }
2454
+ declare class MdsPriceTableFeaturesCell {
2455
+ protected z: NgZone;
2456
+ protected el: HTMLMdsPriceTableFeaturesCellElement;
2457
+ /**
2458
+ * Specifies the support type which is represented @default 'text'
2459
+ */
2460
+ set type(_: Components.MdsPriceTableFeaturesCell['type']);
2461
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2462
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsPriceTableFeaturesCell, never>;
2463
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsPriceTableFeaturesCell, "mds-price-table-features-cell", never, { "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], true, never>;
2464
+ }
2465
+ declare interface MdsPriceTableFeaturesCell extends Components.MdsPriceTableFeaturesCell {
2466
+ }
2467
+ declare class MdsPriceTableFeaturesRow {
2468
+ protected z: NgZone;
2469
+ protected el: HTMLMdsPriceTableFeaturesRowElement;
2470
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2471
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsPriceTableFeaturesRow, never>;
2472
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsPriceTableFeaturesRow, "mds-price-table-features-row", never, {}, {}, never, ["*"], true, never>;
2473
+ }
2474
+ declare interface MdsPriceTableFeaturesRow extends Components.MdsPriceTableFeaturesRow {
2475
+ }
2476
+ declare class MdsPriceTableHeader {
2477
+ protected z: NgZone;
2478
+ protected el: HTMLMdsPriceTableHeaderElement;
2479
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2480
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsPriceTableHeader, never>;
2481
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsPriceTableHeader, "mds-price-table-header", never, {}, {}, never, ["*"], true, never>;
2482
+ }
2483
+ declare interface MdsPriceTableHeader extends Components.MdsPriceTableHeader {
2484
+ }
2485
+ declare class MdsPriceTableList {
2486
+ protected z: NgZone;
2487
+ protected el: HTMLMdsPriceTableListElement;
2488
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2489
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsPriceTableList, never>;
2490
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsPriceTableList, "mds-price-table-list", never, {}, {}, never, ["*"], true, never>;
2491
+ }
2492
+ declare interface MdsPriceTableList extends Components.MdsPriceTableList {
2493
+ }
2494
+ declare class MdsPriceTableListItem {
2495
+ protected z: NgZone;
2496
+ protected el: HTMLMdsPriceTableListItemElement;
2497
+ /**
2498
+ * Specifies if the feature is supported or not @default false
2499
+ */
2500
+ set supported(_: Components.MdsPriceTableListItem['supported']);
2501
+ /**
2502
+ * Specifies if the feature is supported or not @default 'detail'
2503
+ */
2504
+ set typography(_: Components.MdsPriceTableListItem['typography']);
2505
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2506
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsPriceTableListItem, never>;
2507
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsPriceTableListItem, "mds-price-table-list-item", never, { "supported": { "alias": "supported"; "required": false; }; "typography": { "alias": "typography"; "required": false; }; }, {}, never, ["*"], true, never>;
2508
+ }
2509
+ declare interface MdsPriceTableListItem extends Components.MdsPriceTableListItem {
2510
+ }
2511
+ declare class MdsProgress {
2512
+ protected z: NgZone;
2513
+ protected el: HTMLMdsProgressElement;
2514
+ /**
2515
+ * A value between 0 and 1 that rapresents the status progress @default 0
2516
+ */
2517
+ set progress(_: Components.MdsProgress['progress']);
2518
+ /**
2519
+ * Specifies the direction of the progress bar, if horizonatl or vertical @default 'horizontal'
2520
+ */
2521
+ set direction(_: Components.MdsProgress['direction']);
2522
+ /**
2523
+ * Sets the theme variant colors @default 'primary'
2524
+ */
2525
+ set variant(_: Components.MdsProgress['variant']);
2526
+ /**
2527
+ * The typography of the component @default 'option'
2528
+ */
2529
+ set typography(_: Components.MdsProgress['typography']);
2530
+ /**
2531
+ * Sets the size of the component @default 'sm'
2532
+ */
2533
+ set size(_: Components.MdsProgress['size']);
2534
+ /**
2535
+ * Sets the steps that can be pronounced by accessibility technologies @default 'Inizio,Un quarto,Metà,Tre quarti,Fine'
2536
+ */
2537
+ set steps(_: Components.MdsProgress['steps']);
2538
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2539
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsProgress, never>;
2540
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsProgress, "mds-progress", never, { "direction": { "alias": "direction"; "required": false; }; "progress": { "alias": "progress"; "required": false; }; "size": { "alias": "size"; "required": false; }; "steps": { "alias": "steps"; "required": false; }; "typography": { "alias": "typography"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], true, never>;
2541
+ }
2542
+ declare interface MdsProgress extends Components.MdsProgress {
2543
+ }
2544
+ declare class MdsPushNotification {
2545
+ protected z: NgZone;
2546
+ protected el: HTMLMdsPushNotificationElement;
2547
+ /**
2548
+ * Specifies if the component is visible or not.
2549
+ */
2550
+ set visible(_: Components.MdsPushNotification['visible']);
2551
+ /**
2552
+ * Specifies if the component is visible or not.
2553
+ behavior = manual
2554
+ should hide when click outside
2555
+ should hide when all notifications are removed
2556
+ should show when change visible from component or call show method
2557
+
2558
+ behavior = auto
2559
+ should hide when all notifications are removed
2560
+ should show when one or more notifications are added @default 'auto'
2561
+ */
2562
+ set behavior(_: Components.MdsPushNotification['behavior']);
2563
+ mdsPushNotificationChange: EventEmitter<MdsPushNotificationCustomEvent<MdsPushNotificationEventDetail>>;
2564
+ mdsPushNotificationShow: EventEmitter<MdsPushNotificationCustomEvent<void>>;
2565
+ mdsPushNotificationHide: EventEmitter<MdsPushNotificationCustomEvent<void>>;
2566
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2567
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsPushNotification, never>;
2568
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsPushNotification, "mds-push-notification", never, { "behavior": { "alias": "behavior"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; }, { "mdsPushNotificationChange": "mdsPushNotificationChange"; "mdsPushNotificationShow": "mdsPushNotificationShow"; "mdsPushNotificationHide": "mdsPushNotificationHide"; }, never, ["*"], true, never>;
2569
+ }
2570
+ declare interface MdsPushNotification extends Components.MdsPushNotification {
2571
+ /**
2572
+ * Emits when the component visibility changes
2573
+ */
2574
+ mdsPushNotificationChange: EventEmitter<MdsPushNotificationCustomEvent<MdsPushNotificationEventDetail>>;
2575
+ /**
2576
+ * Emits when the component is shown
2577
+ */
2578
+ mdsPushNotificationShow: EventEmitter<MdsPushNotificationCustomEvent<void>>;
2579
+ /**
2580
+ * Emits when the component is hidden
2581
+ */
2582
+ mdsPushNotificationHide: EventEmitter<MdsPushNotificationCustomEvent<void>>;
2583
+ }
2584
+ declare class MdsPushNotificationItem {
2585
+ protected z: NgZone;
2586
+ protected el: HTMLMdsPushNotificationItemElement;
2587
+ /**
2588
+ * Specifies the notification date based on [standard ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html).
2589
+ */
2590
+ set datetime(_: Components.MdsPushNotificationItem['datetime']);
2591
+ /**
2592
+ * Specifies if the notification date format shows time passed or displays date as a static string @default 'timeago'
2593
+ */
2594
+ set dateFormat(_: Components.MdsPushNotificationItem['dateFormat']);
2595
+ /**
2596
+ * Specifies if the component is dismissable or not, it should be set to true by default is used with it's parent component `mds-push-notification-items` @default true
2597
+ */
2598
+ set deletable(_: Components.MdsPushNotificationItem['deletable']);
2599
+ /**
2600
+ * Specifies the icon to be displayed
2601
+ */
2602
+ set icon(_: Components.MdsPushNotificationItem['icon']);
2603
+ /**
2604
+ * The user's inizials displayed if there's no image available, initials will override tone and variant senttings to keep user recognizable from others
2605
+ */
2606
+ set initials(_: Components.MdsPushNotificationItem['initials']);
2607
+ /**
2608
+ * Specifies the message of the component @default 'Nessun messaggio disponibile'
2609
+ */
2610
+ set message(_: Components.MdsPushNotificationItem['message']);
2611
+ /**
2612
+ * Specifies if the `src` attribute is used to show a the image as avatar or full image @default 'image'
2613
+ */
2614
+ set preview(_: Components.MdsPushNotificationItem['preview']);
2615
+ /**
2616
+ * Specifies the path to the image
2617
+ */
2618
+ set src(_: Components.MdsPushNotificationItem['src']);
2619
+ /**
2620
+ * Specifies the subject of the component
2621
+ */
2622
+ set subject(_: Components.MdsPushNotificationItem['subject']);
2623
+ /**
2624
+ * Specifies the color tone of the component @default 'weak'
2625
+ */
2626
+ set tone(_: Components.MdsPushNotificationItem['tone']);
2627
+ /**
2628
+ * Specifies the color variant of the component
2629
+ */
2630
+ set variant(_: Components.MdsPushNotificationItem['variant']);
2631
+ mdsPushNotificationItemClose: EventEmitter<MdsPushNotificationItemCustomEvent<MdsPushNotificationItemEventDetail>>;
2632
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2633
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsPushNotificationItem, never>;
2634
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsPushNotificationItem, "mds-push-notification-item", never, { "dateFormat": { "alias": "dateFormat"; "required": false; }; "datetime": { "alias": "datetime"; "required": false; }; "deletable": { "alias": "deletable"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "initials": { "alias": "initials"; "required": false; }; "message": { "alias": "message"; "required": false; }; "preview": { "alias": "preview"; "required": false; }; "src": { "alias": "src"; "required": false; }; "subject": { "alias": "subject"; "required": false; }; "tone": { "alias": "tone"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, { "mdsPushNotificationItemClose": "mdsPushNotificationItemClose"; }, never, ["*"], true, never>;
2635
+ }
2636
+ declare interface MdsPushNotificationItem extends Components.MdsPushNotificationItem {
2637
+ /**
2638
+ * Emits when the component is closed
2639
+ */
2640
+ mdsPushNotificationItemClose: EventEmitter<MdsPushNotificationItemCustomEvent<MdsPushNotificationItemEventDetail>>;
2641
+ }
2642
+ declare class MdsQuote {
2643
+ protected z: NgZone;
2644
+ protected el: HTMLMdsQuoteElement;
2645
+ /**
2646
+ * Specifies the font typography of the element @default 'h3'
2647
+ */
2648
+ set typography(_: Components.MdsQuote['typography']);
2649
+ /**
2650
+ * Specifies the tag the element @default 'h3'
2651
+ */
2652
+ set tag(_: Components.MdsQuote['tag']);
2653
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2654
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsQuote, never>;
2655
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsQuote, "mds-quote", never, { "tag": { "alias": "tag"; "required": false; }; "typography": { "alias": "typography"; "required": false; }; }, {}, never, ["*"], true, never>;
2656
+ }
2657
+ declare interface MdsQuote extends Components.MdsQuote {
2658
+ }
2659
+ declare class MdsRadialMenu {
2660
+ protected z: NgZone;
2661
+ protected el: HTMLMdsRadialMenuElement;
2662
+ /**
2663
+ * Specifies the starting angle of the menu @default 0
2664
+ */
2665
+ set angleStart(_: Components.MdsRadialMenu['angleStart']);
2666
+ /**
2667
+ * Specifies the ending angle of the menu @default 360
2668
+ */
2669
+ set angleEnd(_: Components.MdsRadialMenu['angleEnd']);
2670
+ /**
2671
+ * Specifies the radius of the menu @default 5
2672
+ */
2673
+ set radius(_: Components.MdsRadialMenu['radius']);
2674
+ /**
2675
+ * Specifies the direction of the menu elements @default 'clockwise'
2676
+ */
2677
+ set direction(_: Components.MdsRadialMenu['direction']);
2678
+ /**
2679
+ * Specifies if the menu is opened or not
2680
+ */
2681
+ set opened(_: Components.MdsRadialMenu['opened']);
2682
+ /**
2683
+ * Specifies if the menu has a disc beneath or not
2684
+ */
2685
+ set disc(_: Components.MdsRadialMenu['disc']);
2686
+ /**
2687
+ * Specifies if the component has a backdrop background @default false
2688
+ */
2689
+ set backdrop(_: Components.MdsRadialMenu['backdrop']);
2690
+ /**
2691
+ * Specifies how to open the menu @default 'click'
2692
+ */
2693
+ set interaction(_: Components.MdsRadialMenu['interaction']);
2694
+ /**
2695
+ * The icon displayed in the button
2696
+ */
2697
+ set icon(_: Components.MdsRadialMenu['icon']);
2698
+ /**
2699
+ * Specifies the color variant for the button @default 'dark'
2700
+ */
2701
+ set variant(_: Components.MdsRadialMenu['variant']);
2702
+ /**
2703
+ * Specifies the tone variant for the button @default 'strong'
2704
+ */
2705
+ set tone(_: Components.MdsRadialMenu['tone']);
2706
+ /**
2707
+ * Specifies the size for the button @default 'lg'
2708
+ */
2709
+ set size(_: Components.MdsRadialMenu['size']);
2710
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2711
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsRadialMenu, never>;
2712
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsRadialMenu, "mds-radial-menu", never, { "angleEnd": { "alias": "angleEnd"; "required": false; }; "angleStart": { "alias": "angleStart"; "required": false; }; "backdrop": { "alias": "backdrop"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "disc": { "alias": "disc"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "interaction": { "alias": "interaction"; "required": false; }; "opened": { "alias": "opened"; "required": false; }; "radius": { "alias": "radius"; "required": false; }; "size": { "alias": "size"; "required": false; }; "tone": { "alias": "tone"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], true, never>;
2713
+ }
2714
+ declare interface MdsRadialMenu extends Components.MdsRadialMenu {
2715
+ }
2716
+ declare class MdsRadialMenuItem {
2717
+ protected z: NgZone;
2718
+ protected el: HTMLMdsRadialMenuItemElement;
2719
+ /**
2720
+ * The tooltip displayed when hovering over the button
2721
+ */
2722
+ set tooltip(_: Components.MdsRadialMenuItem['tooltip']);
2723
+ /**
2724
+ * The icon displayed in the button
2725
+ */
2726
+ set icon(_: Components.MdsRadialMenuItem['icon']);
2727
+ /**
2728
+ * Specifies the tone variant for the button @default 'weak'
2729
+ */
2730
+ set tone(_: Components.MdsRadialMenuItem['tone']);
2731
+ /**
2732
+ * Specifies the color variant for the button @default 'dark'
2733
+ */
2734
+ set variant(_: Components.MdsRadialMenuItem['variant']);
2735
+ /**
2736
+ * Specifies the size of the menu item. @default 'lg'
2737
+ */
2738
+ set size(_: Components.MdsRadialMenuItem['size']);
2739
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2740
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsRadialMenuItem, never>;
2741
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsRadialMenuItem, "mds-radial-menu-item", never, { "icon": { "alias": "icon"; "required": false; }; "size": { "alias": "size"; "required": false; }; "tone": { "alias": "tone"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], true, never>;
2742
+ }
2743
+ declare interface MdsRadialMenuItem extends Components.MdsRadialMenuItem {
2744
+ }
2745
+ declare class MdsRadialProgress {
2746
+ protected z: NgZone;
2747
+ protected el: HTMLMdsRadialProgressElement;
2748
+ /**
2749
+ * A value between 0 and 1 that rapresents the status progress @default 0
2750
+ */
2751
+ set progress(_: Components.MdsRadialProgress['progress']);
2752
+ /**
2753
+ * Specifies if the component should display an icon
2754
+ */
2755
+ set icon(_: Components.MdsRadialProgress['icon']);
2756
+ /**
2757
+ * The typography of the component @default 'option'
2758
+ */
2759
+ set typography(_: Components.MdsRadialProgress['typography']);
2760
+ /**
2761
+ * Sets the theme variant colors @default 'primary'
2762
+ */
2763
+ set variant(_: Components.MdsRadialProgress['variant']);
2764
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2765
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsRadialProgress, never>;
2766
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsRadialProgress, "mds-radial-progress", never, { "icon": { "alias": "icon"; "required": false; }; "progress": { "alias": "progress"; "required": false; }; "typography": { "alias": "typography"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], true, never>;
2767
+ }
2768
+ declare interface MdsRadialProgress extends Components.MdsRadialProgress {
2769
+ }
2770
+ declare class MdsSeparator {
2771
+ protected z: NgZone;
2772
+ protected el: HTMLMdsSeparatorElement;
2773
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2774
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsSeparator, never>;
2775
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsSeparator, "mds-separator", never, {}, {}, never, ["*"], true, never>;
2776
+ }
2777
+ declare interface MdsSeparator extends Components.MdsSeparator {
2778
+ }
2779
+ declare class MdsSpinner {
2780
+ protected z: NgZone;
2781
+ protected el: HTMLMdsSpinnerElement;
2782
+ /**
2783
+ * Specifies if the animation is running or not, it's required for performance reasons @default false
2784
+ */
2785
+ set running(_: Components.MdsSpinner['running']);
2786
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2787
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsSpinner, never>;
2788
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsSpinner, "mds-spinner", never, { "running": { "alias": "running"; "required": false; }; }, {}, never, ["*"], true, never>;
2789
+ }
2790
+ declare interface MdsSpinner extends Components.MdsSpinner {
2791
+ }
2792
+ declare class MdsStatusBar {
2793
+ protected z: NgZone;
2794
+ protected el: HTMLMdsStatusBarElement;
2795
+ /**
2796
+ * Specifies the description near the slotted actions
2797
+ */
2798
+ set description(_: Components.MdsStatusBar['description']);
2799
+ /**
2800
+ * Specifies if the component prevents the body from scrolling when modal window is opened @default 'manual'
2801
+ */
2802
+ set overflow(_: Components.MdsStatusBar['overflow']);
2803
+ /**
2804
+ * Specifies the position of the status bar @default 'bottom-right'
2805
+ */
2806
+ set position(_: Components.MdsStatusBar['position']);
2807
+ /**
2808
+ * Specifies if the component is visible
2809
+ */
2810
+ set visible(_: Components.MdsStatusBar['visible']);
2811
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2812
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsStatusBar, never>;
2813
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsStatusBar, "mds-status-bar", never, { "description": { "alias": "description"; "required": false; }; "overflow": { "alias": "overflow"; "required": false; }; "position": { "alias": "position"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; }, {}, never, ["*"], true, never>;
2814
+ }
2815
+ declare interface MdsStatusBar extends Components.MdsStatusBar {
2816
+ }
2817
+ declare class MdsStepperBar {
2818
+ protected z: NgZone;
2819
+ protected el: HTMLMdsStepperBarElement;
2820
+ /**
2821
+ * Sets the current item to the given index: 0 is none done, 1 is the first item done, last number + 1 is all items done @default 1
2822
+ */
2823
+ set itemsDone(_: Components.MdsStepperBar['itemsDone']);
2824
+ /**
2825
+ * Specifies the navigation type @default 'none'
2826
+ */
2827
+ set navigation(_: Components.MdsStepperBar['navigation']);
2828
+ mdsStepperBarChange: EventEmitter<MdsStepperBarCustomEvent<MdsStepperBarEventDetail>>;
2829
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2830
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsStepperBar, never>;
2831
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsStepperBar, "mds-stepper-bar", never, { "itemsDone": { "alias": "itemsDone"; "required": false; }; "navigation": { "alias": "navigation"; "required": false; }; }, { "mdsStepperBarChange": "mdsStepperBarChange"; }, never, ["*"], true, never>;
2832
+ }
2833
+ declare interface MdsStepperBar extends Components.MdsStepperBar {
2834
+ /**
2835
+ * Emits when a step is changed
2836
+ */
2837
+ mdsStepperBarChange: EventEmitter<MdsStepperBarCustomEvent<MdsStepperBarEventDetail>>;
2838
+ }
2839
+ declare class MdsStepperBarItem {
2840
+ protected z: NgZone;
2841
+ protected el: HTMLMdsStepperBarItemElement;
2842
+ /**
2843
+ * Specifies a short description of the component
2844
+ */
2845
+ set label(_: Components.MdsStepperBarItem['label']);
2846
+ /**
2847
+ * Specifies if the step is displayed
2848
+ */
2849
+ set step(_: Components.MdsStepperBarItem['step']);
2850
+ /**
2851
+ * Specifies if the badge status is displayed
2852
+ */
2853
+ set badge(_: Components.MdsStepperBarItem['badge']);
2854
+ /**
2855
+ * Specifies the icon displayed of the component when is not checked or the current item
2856
+ */
2857
+ set icon(_: Components.MdsStepperBarItem['icon']);
2858
+ /**
2859
+ * Specifies the icon displayed of the component when is checked @default this.icon
2860
+ */
2861
+ set iconChecked(_: Components.MdsStepperBarItem['iconChecked']);
2862
+ /**
2863
+ * Specifies if the component is checked or not @default false
2864
+ */
2865
+ set done(_: Components.MdsStepperBarItem['done']);
2866
+ /**
2867
+ * Specifies if the component is the current or not @default false
2868
+ */
2869
+ set current(_: Components.MdsStepperBarItem['current']);
2870
+ /**
2871
+ * Specifies the value the component will return mdsStepperBarItemSelect event
2872
+ */
2873
+ set value(_: Components.MdsStepperBarItem['value']);
2874
+ /**
2875
+ * Specifies the typography of the element @default 'h6'
2876
+ */
2877
+ set typography(_: Components.MdsStepperBarItem['typography']);
2878
+ mdsStepperBarItemDone: EventEmitter<MdsStepperBarItemCustomEvent<MdsStepperBarItemEventDetail>>;
2879
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2880
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsStepperBarItem, never>;
2881
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsStepperBarItem, "mds-stepper-bar-item", never, { "badge": { "alias": "badge"; "required": false; }; "current": { "alias": "current"; "required": false; }; "done": { "alias": "done"; "required": false; }; "icon": { "alias": "icon"; "required": true; }; "iconChecked": { "alias": "iconChecked"; "required": false; }; "label": { "alias": "label"; "required": true; }; "step": { "alias": "step"; "required": false; }; "typography": { "alias": "typography"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "mdsStepperBarItemDone": "mdsStepperBarItemDone"; }, never, ["*"], true, never>;
2882
+ }
2883
+ declare interface MdsStepperBarItem extends Components.MdsStepperBarItem {
2884
+ /**
2885
+ * Emits when the accordion is selected
2886
+ */
2887
+ mdsStepperBarItemDone: EventEmitter<MdsStepperBarItemCustomEvent<MdsStepperBarItemEventDetail>>;
2888
+ }
2889
+ declare class MdsTab {
2890
+ protected z: NgZone;
2891
+ protected el: HTMLMdsTabElement;
2892
+ /**
2893
+ * Sets if the component distributes item vertically or horzontally @default 'horizontal'
2894
+ */
2895
+ set direction(_: Components.MdsTab['direction']);
2896
+ /**
2897
+ * Shows the horizontal scrollbar to maximize accessibility
2898
+ */
2899
+ set scrollbar(_: Components.MdsTab['scrollbar']);
2900
+ /**
2901
+ * Sets the animation type of the selection transition between `mds-tab-item` elements @default 'slide'
2902
+ */
2903
+ set animation(_: Components.MdsTab['animation']);
2904
+ /**
2905
+ * Sets if the tab area should fill the entire width
2906
+ */
2907
+ set fill(_: Components.MdsTab['fill']);
2908
+ /**
2909
+ * Sets if the tab area should show an inset shadow when the tabs overflows it's container
2910
+ */
2911
+ set overflow(_: Components.MdsTab['overflow']);
2912
+ /**
2913
+ * Sets the size of the component items nested inside it
2914
+ */
2915
+ set size(_: Components.MdsTab['size']);
2916
+ mdsTabChange: EventEmitter<MdsTabCustomEvent<MdsTabEventDetail>>;
2917
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2918
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsTab, never>;
2919
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsTab, "mds-tab", never, { "animation": { "alias": "animation"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "fill": { "alias": "fill"; "required": false; }; "overflow": { "alias": "overflow"; "required": false; }; "scrollbar": { "alias": "scrollbar"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "mdsTabChange": "mdsTabChange"; }, never, ["*"], true, never>;
2920
+ }
2921
+ declare interface MdsTab extends Components.MdsTab {
2922
+ /**
2923
+ * Emits when a children is changed
2924
+ */
2925
+ mdsTabChange: EventEmitter<MdsTabCustomEvent<MdsTabEventDetail>>;
2926
+ }
2927
+ declare class MdsTabBar {
2928
+ protected z: NgZone;
2929
+ protected el: HTMLMdsTabBarElement;
2930
+ mdsTabBarChange: EventEmitter<MdsTabBarCustomEvent<MdsTabBarEventDetail>>;
2931
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2932
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsTabBar, never>;
2933
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsTabBar, "mds-tab-bar", never, {}, { "mdsTabBarChange": "mdsTabBarChange"; }, never, ["*"], true, never>;
2934
+ }
2935
+ declare interface MdsTabBar extends Components.MdsTabBar {
2936
+ /**
2937
+ * Emits when a step is changed
2938
+ */
2939
+ mdsTabBarChange: EventEmitter<MdsTabBarCustomEvent<MdsTabBarEventDetail>>;
2940
+ }
2941
+ declare class MdsTabBarItem {
2942
+ protected z: NgZone;
2943
+ protected el: HTMLMdsTabBarItemElement;
2944
+ /**
2945
+ * The icon displayed in the tab bar item. @default ''
2946
+ */
2947
+ set icon(_: Components.MdsTabBarItem['icon']);
2948
+ /**
2949
+ * Sets the label of the tab bar item
2950
+ */
2951
+ set label(_: Components.MdsTabBarItem['label']);
2952
+ /**
2953
+ * Specifies if the component is selected or not
2954
+ */
2955
+ set selected(_: Components.MdsTabBarItem['selected']);
2956
+ /**
2957
+ * Specifies the typography of the element @default 'tip'
2958
+ */
2959
+ set typography(_: Components.MdsTabBarItem['typography']);
2960
+ mdsTabBarItemSelect: EventEmitter<MdsTabBarItemCustomEvent<string>>;
2961
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
2962
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsTabBarItem, never>;
2963
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsTabBarItem, "mds-tab-bar-item", never, { "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "typography": { "alias": "typography"; "required": false; }; }, { "mdsTabBarItemSelect": "mdsTabBarItemSelect"; }, never, ["*"], true, never>;
2964
+ }
2965
+ declare interface MdsTabBarItem extends Components.MdsTabBarItem {
2966
+ /**
2967
+ * Emits when the component is selected
2968
+ */
2969
+ mdsTabBarItemSelect: EventEmitter<MdsTabBarItemCustomEvent<string>>;
2970
+ }
2971
+ declare class MdsTabItem {
2972
+ protected z: NgZone;
2973
+ protected el: HTMLMdsTabItemElement;
2974
+ /**
2975
+ * Specifies if the button is awaiting for a response
2976
+ */
2977
+ set await(_: Components.MdsTabItem['await']);
2978
+ /**
2979
+ * Specifies if the tab item is selected or not
2980
+ */
2981
+ set selected(_: Components.MdsTabItem['selected']);
2982
+ /**
2983
+ * Specifies if the tab item is disabled or not
2984
+ */
2985
+ set disabled(_: Components.MdsTabItem['disabled']);
2986
+ /**
2987
+ * The icon displayed in the tab item
2988
+ */
2989
+ set icon(_: Components.MdsTabItem['icon']);
2990
+ /**
2991
+ * The label of the tab item
2992
+ */
2993
+ set label(_: Components.MdsTabItem['label']);
2994
+ /**
2995
+ * Specifies the horizontal position of the icon displayed in the tab item @default 'left'
2996
+ */
2997
+ set iconPosition(_: Components.MdsTabItem['iconPosition']);
2998
+ /**
2999
+ * The type of the tab item element @default 'submit'
3000
+ */
3001
+ set type(_: Components.MdsTabItem['type']);
3002
+ /**
3003
+ * Specifies the size for the tab item @default 'md'
3004
+ */
3005
+ set size(_: Components.MdsTabItem['size']);
3006
+ /**
3007
+ * Specifies an optional value to get from mdsTabItemSelect event
3008
+ */
3009
+ set value(_: Components.MdsTabItem['value']);
3010
+ /**
3011
+ * Specifies the URL target of the button
3012
+ */
3013
+ set href(_: Components.MdsTabItem['href']);
3014
+ mdsTabItemSelect: EventEmitter<MdsTabItemCustomEvent<MdsTabItemEventDetail>>;
3015
+ mdsTabItemFocus: EventEmitter<MdsTabItemCustomEvent<MdsTabItemEventDetail>>;
3016
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
3017
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsTabItem, never>;
3018
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsTabItem, "mds-tab-item", never, { "await": { "alias": "await"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "href": { "alias": "href"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "label": { "alias": "label"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "mdsTabItemSelect": "mdsTabItemSelect"; "mdsTabItemFocus": "mdsTabItemFocus"; }, never, ["*"], true, never>;
3019
+ }
3020
+ declare interface MdsTabItem extends Components.MdsTabItem {
3021
+ /**
3022
+ * Emits when the tab item is selected
3023
+ */
3024
+ mdsTabItemSelect: EventEmitter<MdsTabItemCustomEvent<MdsTabItemEventDetail>>;
3025
+ /**
3026
+ * Emits when the tab item is selected
3027
+ */
3028
+ mdsTabItemFocus: EventEmitter<MdsTabItemCustomEvent<MdsTabItemEventDetail>>;
3029
+ }
3030
+ declare class MdsTable {
3031
+ protected z: NgZone;
3032
+ protected el: HTMLMdsTableElement;
3033
+ /**
3034
+ * Specifies if the table rows are higlighted on mouseover event
3035
+ */
3036
+ set interactive(_: Components.MdsTable['interactive']);
3037
+ /**
3038
+ * Specifies if the table rows are selectable by a checkbox
3039
+ */
3040
+ set selectable(_: Components.MdsTable['selectable']);
3041
+ /**
3042
+ * Indicates whether row selection is currently active in the table.
3043
+ */
3044
+ set selection(_: Components.MdsTable['selection']);
3045
+ mdsTableSelectionChange: EventEmitter<MdsTableCustomEvent<MdsTableSelectionEventDetail>>;
3046
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
3047
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsTable, never>;
3048
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsTable, "mds-table", never, { "interactive": { "alias": "interactive"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "selection": { "alias": "selection"; "required": false; }; }, { "mdsTableSelectionChange": "mdsTableSelectionChange"; }, never, ["*"], true, never>;
3049
+ }
3050
+ declare interface MdsTable extends Components.MdsTable {
3051
+ /**
3052
+ * Dispatces when interactive property changes
3053
+ */
3054
+ mdsTableSelectionChange: EventEmitter<MdsTableCustomEvent<MdsTableSelectionEventDetail>>;
3055
+ }
3056
+ declare class MdsTableBody {
3057
+ protected z: NgZone;
3058
+ protected el: HTMLMdsTableBodyElement;
3059
+ /**
3060
+ * Specifies whether the rows react to user interaction (hover/focus).
3061
+ */
3062
+ set interactive(_: Components.MdsTableBody['interactive']);
3063
+ /**
3064
+ * Enables the selection column for the rows in this table body.
3065
+ */
3066
+ set selection(_: Components.MdsTableBody['selection']);
3067
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
3068
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsTableBody, never>;
3069
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsTableBody, "mds-table-body", never, { "interactive": { "alias": "interactive"; "required": false; }; "selection": { "alias": "selection"; "required": false; }; }, {}, never, ["*"], true, never>;
3070
+ }
3071
+ declare interface MdsTableBody extends Components.MdsTableBody {
3072
+ }
3073
+ declare class MdsTableCell {
3074
+ protected z: NgZone;
3075
+ protected el: HTMLMdsTableCellElement;
3076
+ /**
3077
+ * Sets a value to help the sorting function from `mds-table-header-cell`, if not set it will be used the content of the cell.
3078
+ */
3079
+ set value(_: Components.MdsTableCell['value']);
3080
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
3081
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsTableCell, never>;
3082
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsTableCell, "mds-table-cell", never, { "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], true, never>;
3083
+ }
3084
+ declare interface MdsTableCell extends Components.MdsTableCell {
3085
+ }
3086
+ declare class MdsTableFooter {
3087
+ protected z: NgZone;
3088
+ protected el: HTMLMdsTableFooterElement;
3089
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
3090
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsTableFooter, never>;
3091
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsTableFooter, "mds-table-footer", never, {}, {}, never, ["*"], true, never>;
3092
+ }
3093
+ declare interface MdsTableFooter extends Components.MdsTableFooter {
3094
+ }
3095
+ declare class MdsTableHeader {
3096
+ protected z: NgZone;
3097
+ protected el: HTMLMdsTableHeaderElement;
3098
+ /**
3099
+ * Enables the select-all checkbox in the header.
3100
+ */
3101
+ set selectable(_: Components.MdsTableHeader['selectable']);
3102
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
3103
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsTableHeader, never>;
3104
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsTableHeader, "mds-table-header", never, { "selectable": { "alias": "selectable"; "required": false; }; }, {}, never, ["*"], true, never>;
3105
+ }
3106
+ declare interface MdsTableHeader extends Components.MdsTableHeader {
3107
+ }
3108
+ declare class MdsTableHeaderCell {
3109
+ protected z: NgZone;
3110
+ protected el: HTMLMdsTableHeaderCellElement;
3111
+ /**
3112
+ * Tells the component to make the cell able to sort the table columns items
3113
+ */
3114
+ set sortable(_: Components.MdsTableHeaderCell['sortable']);
3115
+ /**
3116
+ * Sets a label for the cell
3117
+ */
3118
+ set label(_: Components.MdsTableHeaderCell['label']);
3119
+ /**
3120
+ * Specifies the current sort direction of the column. @default 'none'
3121
+ */
3122
+ set direction(_: Components.MdsTableHeaderCell['direction']);
3123
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
3124
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsTableHeaderCell, never>;
3125
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsTableHeaderCell, "mds-table-header-cell", never, { "direction": { "alias": "direction"; "required": false; }; "label": { "alias": "label"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; }, {}, never, ["*"], true, never>;
3126
+ }
3127
+ declare interface MdsTableHeaderCell extends Components.MdsTableHeaderCell {
3128
+ }
3129
+ declare class MdsTableRow {
3130
+ protected z: NgZone;
3131
+ protected el: HTMLMdsTableRowElement;
3132
+ /**
3133
+ * Specifies whether the row reacts to user interaction (hover/focus).
3134
+ */
3135
+ set interactive(_: Components.MdsTableRow['interactive']);
3136
+ /**
3137
+ * Specifies whether the row's actions are shown as an overlay.
3138
+ */
3139
+ set overlayActions(_: Components.MdsTableRow['overlayActions']);
3140
+ /**
3141
+ * Specifies whether the row can be selected via a checkbox. @default undefined
3142
+ */
3143
+ set selectable(_: Components.MdsTableRow['selectable']);
3144
+ /**
3145
+ * Specifies whether the row is currently selected.
3146
+ */
3147
+ set selected(_: Components.MdsTableRow['selected']);
3148
+ /**
3149
+ * The value associated with the row, emitted when the row is selected.
3150
+ */
3151
+ set value(_: Components.MdsTableRow['value']);
3152
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
3153
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsTableRow, never>;
3154
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsTableRow, "mds-table-row", never, { "interactive": { "alias": "interactive"; "required": false; }; "overlayActions": { "alias": "overlayActions"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, ["*"], true, never>;
3155
+ }
3156
+ declare interface MdsTableRow extends Components.MdsTableRow {
3157
+ }
3158
+ declare class MdsText {
3159
+ protected z: NgZone;
3160
+ protected el: HTMLMdsTextElement;
3161
+ /**
3162
+ * Specifies if the text is animated when it is rendered @default 'none'
3163
+ */
3164
+ set animation(_: Components.MdsText['animation']);
3165
+ /**
3166
+ * Specifies the HTML tag of the element
3167
+ */
3168
+ set tag(_: Components.MdsText['tag']);
3169
+ /**
3170
+ * Specifies the text string to the component instead of passing an HTML node
3171
+ */
3172
+ set text(_: Components.MdsText['text']);
3173
+ /**
3174
+ * Specifies if the text shoud be truncated or should behave as a normal text
3175
+ */
3176
+ set truncate(_: Components.MdsText['truncate']);
3177
+ /**
3178
+ * Specifies the font typography of the element @default 'detail'
3179
+ */
3180
+ set typography(_: Components.MdsText['typography']);
3181
+ /**
3182
+ * Specifies the variant for `typography`
3183
+ */
3184
+ set variant(_: Components.MdsText['variant']);
3185
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
3186
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsText, never>;
3187
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsText, "mds-text", never, { "animation": { "alias": "animation"; "required": false; }; "tag": { "alias": "tag"; "required": false; }; "text": { "alias": "text"; "required": false; }; "truncate": { "alias": "truncate"; "required": false; }; "typography": { "alias": "typography"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], true, never>;
3188
+ }
3189
+ declare interface MdsText extends Components.MdsText {
3190
+ }
3191
+ declare class MdsToast {
3192
+ protected z: NgZone;
3193
+ protected el: HTMLMdsToastElement;
3194
+ /**
3195
+ * If set, specifies the visibility duration in milliseconds of the element inside the viewport, when the time is up the visible property will be set to false. If the duration is set to 0 the component will still visible until intentionally closed by user. @default 5000
3196
+ */
3197
+ set duration(_: Components.MdsToast['duration']);
3198
+ /**
3199
+ * Specifies if toast is visible at the bottom or not
3200
+ */
3201
+ set visible(_: Components.MdsToast['visible']);
3202
+ /**
3203
+ * Sets the theme variant colours @default 'light'
3204
+ */
3205
+ set variant(_: Components.MdsToast['variant']);
3206
+ /**
3207
+ * Sets the tone of the color variant @default 'strong'
3208
+ */
3209
+ set tone(_: Components.MdsToast['tone']);
3210
+ /**
3211
+ * Sets position of toast @default 'bottom-center'
3212
+ */
3213
+ set position(_: Components.MdsToast['position']);
3214
+ mdsToastClose: EventEmitter<MdsToastCustomEvent<void>>;
3215
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
3216
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsToast, never>;
3217
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsToast, "mds-toast", never, { "duration": { "alias": "duration"; "required": false; }; "position": { "alias": "position"; "required": false; }; "tone": { "alias": "tone"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; }, { "mdsToastClose": "mdsToastClose"; }, never, ["*"], true, never>;
3218
+ }
3219
+ declare interface MdsToast extends Components.MdsToast {
3220
+ /**
3221
+ * Emits when the accordion is opened
3222
+ */
3223
+ mdsToastClose: EventEmitter<MdsToastCustomEvent<void>>;
3224
+ }
3225
+ declare class MdsTooltip {
3226
+ protected z: NgZone;
3227
+ protected el: HTMLMdsTooltipElement;
3228
+ /**
3229
+ * If set, the component will be placed automatically near it's caller. @default true
3230
+ */
3231
+ set autoPlacement(_: Components.MdsTooltip['autoPlacement']);
3232
+ /**
3233
+ * Specifies the placement of the component if no space is available where it is placed. @default false
3234
+ */
3235
+ set flip(_: Components.MdsTooltip['flip']);
3236
+ /**
3237
+ * Specifies the selector of the target element, this attribute is used with `querySelector` method.
3238
+ */
3239
+ set target(_: Components.MdsTooltip['target']);
3240
+ /**
3241
+ * Sets distance between the tooltip and the caller. @default 12
3242
+ */
3243
+ set offset(_: Components.MdsTooltip['offset']);
3244
+ /**
3245
+ * Specifies where the component should be placed relative to the caller. @default 'top'
3246
+ */
3247
+ set placement(_: Components.MdsTooltip['placement']);
3248
+ /**
3249
+ * Specifies the font typography of the element @default 'tip'
3250
+ */
3251
+ set typography(_: Components.MdsTooltip['typography']);
3252
+ /**
3253
+ * If set, the component will be kept inside the viewport. @default true
3254
+ */
3255
+ set shift(_: Components.MdsTooltip['shift']);
3256
+ /**
3257
+ * Sets a safe area distance between the tooltip and the viewport. @default 12
3258
+ */
3259
+ set shiftPadding(_: Components.MdsTooltip['shiftPadding']);
3260
+ /**
3261
+ * Sets the CSS position strategy of the component. @default 'fixed'
3262
+ */
3263
+ set strategy(_: Components.MdsTooltip['strategy']);
3264
+ /**
3265
+ * Specifies the visibility of the component. @default false
3266
+ */
3267
+ set visible(_: Components.MdsTooltip['visible']);
3268
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
3269
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsTooltip, never>;
3270
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsTooltip, "mds-tooltip", never, { "autoPlacement": { "alias": "autoPlacement"; "required": false; }; "flip": { "alias": "flip"; "required": false; }; "offset": { "alias": "offset"; "required": false; }; "placement": { "alias": "placement"; "required": false; }; "shift": { "alias": "shift"; "required": false; }; "shiftPadding": { "alias": "shiftPadding"; "required": false; }; "strategy": { "alias": "strategy"; "required": false; }; "target": { "alias": "target"; "required": true; }; "typography": { "alias": "typography"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; }, {}, never, ["*"], true, never>;
3271
+ }
3272
+ declare interface MdsTooltip extends Components.MdsTooltip {
3273
+ }
3274
+ declare class MdsTree {
3275
+ protected z: NgZone;
3276
+ protected el: HTMLMdsTreeElement;
3277
+ /**
3278
+ * Specifies if the branches depth decorations are visible. @default 'depth'
3279
+ */
3280
+ set appearance(_: Components.MdsTree['appearance']);
3281
+ /**
3282
+ * Specifies the tree should be opened asynchronously when after the click, .
3283
+ */
3284
+ set async(_: Components.MdsTree['async']);
3285
+ /**
3286
+ * Specifies the selector of the target element, this attribute is used with `querySelector` method.
3287
+ */
3288
+ set label(_: Components.MdsTree['label']);
3289
+ /**
3290
+ * Specifies the toggle icon of the element @default 'chevron'
3291
+ */
3292
+ set toggle(_: Components.MdsTree['toggle']);
3293
+ /**
3294
+ * Specifies the toggle icon position of the element @default 'left'
3295
+ */
3296
+ set togglePosition(_: Components.MdsTree['togglePosition']);
3297
+ /**
3298
+ * Specifies if the tree is expanded.
3299
+ */
3300
+ set expanded(_: Components.MdsTree['expanded']);
3301
+ /**
3302
+ * Truncate the text of the element on one single line. @default 'word'
3303
+ */
3304
+ set truncate(_: Components.MdsTree['truncate']);
3305
+ /**
3306
+ * Show actions on the every tree item on hover or by default. @default 'auto'
3307
+ */
3308
+ set actions(_: Components.MdsTree['actions']);
3309
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
3310
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsTree, never>;
3311
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsTree, "mds-tree", never, { "actions": { "alias": "actions"; "required": false; }; "appearance": { "alias": "appearance"; "required": false; }; "async": { "alias": "async"; "required": false; }; "expanded": { "alias": "expanded"; "required": false; }; "label": { "alias": "label"; "required": false; }; "toggle": { "alias": "toggle"; "required": false; }; "togglePosition": { "alias": "togglePosition"; "required": false; }; "truncate": { "alias": "truncate"; "required": false; }; }, {}, never, ["*"], true, never>;
3312
+ }
3313
+ declare interface MdsTree extends Components.MdsTree {
3314
+ }
3315
+ declare class MdsTreeItem {
3316
+ protected z: NgZone;
3317
+ protected el: HTMLMdsTreeItemElement;
3318
+ /**
3319
+ * Show actions on the tree item on hover or by default.
3320
+ */
3321
+ set actions(_: Components.MdsTreeItem['actions']);
3322
+ /**
3323
+ * Specifies the tree should be opened asynchronously when after the click.
3324
+ */
3325
+ set async(_: Components.MdsTreeItem['async']);
3326
+ /**
3327
+ * Specifies the tree branch depth. Internal: used by CSS to remove branch lines on first-level elements.
3328
+ */
3329
+ set depth(_: Components.MdsTreeItem['depth']);
3330
+ /**
3331
+ * Specifies the label of the tree item
3332
+ */
3333
+ set label(_: Components.MdsTreeItem['label']);
3334
+ /**
3335
+ * Specifies the icon of the element
3336
+ */
3337
+ set toggle(_: Components.MdsTreeItem['toggle']);
3338
+ /**
3339
+ * Specifies if the tree is expanded.
3340
+ */
3341
+ set expanded(_: Components.MdsTreeItem['expanded']);
3342
+ /**
3343
+ * Truncate the text of the element on one single line. @default 'word'
3344
+ */
3345
+ set truncate(_: Components.MdsTreeItem['truncate']);
3346
+ /**
3347
+ * The icon displayed in the button
3348
+ */
3349
+ set icon(_: Components.MdsTreeItem['icon']);
3350
+ mdsTreeItemExpand: EventEmitter<MdsTreeItemCustomEvent<MdsTreeItemEventDetail>>;
3351
+ mdsTreeItemCollapse: EventEmitter<MdsTreeItemCustomEvent<MdsTreeItemEventDetail>>;
3352
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
3353
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsTreeItem, never>;
3354
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsTreeItem, "mds-tree-item", never, { "actions": { "alias": "actions"; "required": false; }; "async": { "alias": "async"; "required": false; }; "depth": { "alias": "depth"; "required": false; }; "expanded": { "alias": "expanded"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; "toggle": { "alias": "toggle"; "required": false; }; "truncate": { "alias": "truncate"; "required": false; }; }, { "mdsTreeItemExpand": "mdsTreeItemExpand"; "mdsTreeItemCollapse": "mdsTreeItemCollapse"; }, never, ["*"], true, never>;
3355
+ }
3356
+ declare interface MdsTreeItem extends Components.MdsTreeItem {
3357
+ /**
3358
+ * Emits when the component expand it's children container
3359
+ */
3360
+ mdsTreeItemExpand: EventEmitter<MdsTreeItemCustomEvent<MdsTreeItemEventDetail>>;
3361
+ /**
3362
+ * Emits when the component attribute selected is changed
3363
+ */
3364
+ mdsTreeItemCollapse: EventEmitter<MdsTreeItemCustomEvent<MdsTreeItemEventDetail>>;
3365
+ }
3366
+ declare class MdsUrlView {
3367
+ protected z: NgZone;
3368
+ protected el: HTMLMdsUrlViewElement;
3369
+ /**
3370
+ * Specifies if domain is visible on header
3371
+ */
3372
+ set icon(_: Components.MdsUrlView['icon']);
3373
+ /**
3374
+ * Specifies if the window has a label
3375
+ */
3376
+ set label(_: Components.MdsUrlView['label']);
3377
+ /**
3378
+ * Specifies the URL to the web page
3379
+ */
3380
+ set src(_: Components.MdsUrlView['src']);
3381
+ /**
3382
+ * Specifies whether a browser should load an iframe immediately
3383
+ or to defer loading of images until some conditions are met. @default 'lazy'
3384
+ */
3385
+ set loading(_: Components.MdsUrlView['loading']);
3386
+ mdsUrlViewClose: EventEmitter<MdsUrlViewCustomEvent<void>>;
3387
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
3388
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsUrlView, never>;
3389
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsUrlView, "mds-url-view", never, { "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "src": { "alias": "src"; "required": true; }; }, { "mdsUrlViewClose": "mdsUrlViewClose"; }, never, ["*"], true, never>;
3390
+ }
3391
+ declare interface MdsUrlView extends Components.MdsUrlView {
3392
+ /**
3393
+ * Emits when the close button is clicked
3394
+ */
3395
+ mdsUrlViewClose: EventEmitter<MdsUrlViewCustomEvent<void>>;
3396
+ }
3397
+ declare class MdsUsage {
3398
+ protected z: NgZone;
3399
+ protected el: HTMLMdsUsageElement;
3400
+ /**
3401
+ * Specifies the delay when the tooltip will trigger @default 'info'
3402
+ */
3403
+ set variant(_: Components.MdsUsage['variant']);
3404
+ /**
3405
+ * Specifies the alias of the usage phrase on the top of the component
3406
+ */
3407
+ set alias(_: Components.MdsUsage['alias']);
3408
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
3409
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsUsage, never>;
3410
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsUsage, "mds-usage", never, { "alias": { "alias": "alias"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, {}, never, ["*"], true, never>;
3411
+ }
3412
+ declare interface MdsUsage extends Components.MdsUsage {
3413
+ }
3414
+ declare class MdsVideoWall {
3415
+ protected z: NgZone;
3416
+ protected el: HTMLMdsVideoWallElement;
3417
+ /**
3418
+ * Specifies that the video will start playing as soon as it is ready @default true
3419
+ */
3420
+ set autoplay(_: Components.MdsVideoWall['autoplay']);
3421
+ /**
3422
+ * Specifies that the video will start over again, every time it is finished @default true
3423
+ */
3424
+ set loop(_: Components.MdsVideoWall['loop']);
3425
+ /**
3426
+ * Specifies that the audio output of the video should be muted @default true
3427
+ */
3428
+ set muted(_: Components.MdsVideoWall['muted']);
3429
+ /**
3430
+ * Specifies if the video has a noise overlay effect @default 'none'
3431
+ */
3432
+ set noise(_: Components.MdsVideoWall['noise']);
3433
+ /**
3434
+ * Specifies an image to be shown while the video is downloading
3435
+ */
3436
+ set poster(_: Components.MdsVideoWall['poster']);
3437
+ /**
3438
+ * Specifies if and how the author thinks the video should be loaded when the page loads. Note: The preload attribute is ignored if autoplay is present @default 'auto'
3439
+ */
3440
+ set preload(_: Components.MdsVideoWall['preload']);
3441
+ /**
3442
+ * Specifies the URL of the video file
3443
+ */
3444
+ set src(_: Components.MdsVideoWall['src']);
3445
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
3446
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsVideoWall, never>;
3447
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsVideoWall, "mds-video-wall", never, { "autoplay": { "alias": "autoplay"; "required": false; }; "loop": { "alias": "loop"; "required": false; }; "muted": { "alias": "muted"; "required": false; }; "noise": { "alias": "noise"; "required": false; }; "poster": { "alias": "poster"; "required": false; }; "preload": { "alias": "preload"; "required": false; }; "src": { "alias": "src"; "required": false; }; }, {}, never, ["*"], true, never>;
3448
+ }
3449
+ declare interface MdsVideoWall extends Components.MdsVideoWall {
3450
+ }
3451
+ declare class MdsZero {
3452
+ protected z: NgZone;
3453
+ protected el: HTMLMdsZeroElement;
3454
+ constructor(c: ChangeDetectorRef, r: ElementRef, z: NgZone);
3455
+ static ɵfac: i0.ɵɵFactoryDeclaration<MdsZero, never>;
3456
+ static ɵcmp: i0.ɵɵComponentDeclaration<MdsZero, "mds-zero", never, {}, {}, never, ["*"], true, never>;
3457
+ }
3458
+ declare interface MdsZero extends Components.MdsZero {
3459
+ }
3460
+
3461
+ declare class ValueAccessor implements ControlValueAccessor {
3462
+ protected el: ElementRef;
3463
+ private onChange;
3464
+ private onTouched;
3465
+ protected lastValue: any;
3466
+ constructor(el: ElementRef);
3467
+ writeValue(value: any): void;
3468
+ handleChangeEvent(value: any): void;
3469
+ _handleBlurEvent(): void;
3470
+ registerOnChange(fn: (value: any) => void): void;
3471
+ registerOnTouched(fn: () => void): void;
3472
+ setDisabledState(isDisabled: boolean): void;
3473
+ static ɵfac: i0.ɵɵFactoryDeclaration<ValueAccessor, never>;
3474
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ValueAccessor, never, never, {}, {}, never, never, true, never>;
3475
+ }
3476
+
3477
+ declare class TextValueAccessor extends ValueAccessor {
3478
+ constructor(el: ElementRef);
3479
+ static ɵfac: i0.ɵɵFactoryDeclaration<TextValueAccessor, never>;
3480
+ static ɵdir: i0.ɵɵDirectiveDeclaration<TextValueAccessor, "mds-input, mds-input-date", never, {}, {}, never, never, true, never>;
3481
+ }
3482
+
3483
+ declare class SelectValueAccessor extends ValueAccessor {
3484
+ constructor(el: ElementRef);
3485
+ static ɵfac: i0.ɵɵFactoryDeclaration<SelectValueAccessor, never>;
3486
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SelectValueAccessor, "mds-input-select", never, {}, {}, never, never, true, never>;
3487
+ }
3488
+
3489
+ declare class NumericValueAccessor extends ValueAccessor {
3490
+ constructor(el: ElementRef);
3491
+ registerOnChange(fn: (_: number | null) => void): void;
3492
+ static ɵfac: i0.ɵɵFactoryDeclaration<NumericValueAccessor, never>;
3493
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NumericValueAccessor, "mds-input-range", never, {}, {}, never, never, true, never>;
3494
+ }
3495
+
3496
+ declare class BooleanValueAccessor extends ValueAccessor {
3497
+ constructor(el: ElementRef);
3498
+ writeValue(value: any): void;
3499
+ static ɵfac: i0.ɵɵFactoryDeclaration<BooleanValueAccessor, never>;
3500
+ static ɵdir: i0.ɵɵDirectiveDeclaration<BooleanValueAccessor, "mds-input-switch", never, {}, {}, never, never, true, never>;
3501
+ }
3502
+
3503
+ declare class MagmaModule {
3504
+ static forRoot(): ModuleWithProviders<MagmaModule>;
3505
+ static ɵfac: i0.ɵɵFactoryDeclaration<MagmaModule, never>;
3506
+ static ɵmod: i0.ɵɵNgModuleDeclaration<MagmaModule, never, [typeof MdsAccordion, typeof MdsAccordionItem, typeof MdsAccordionTimer, typeof MdsAccordionTimerItem, typeof MdsAuthor, typeof MdsAvatar, typeof MdsAvatarStack, typeof MdsAvatarStackItem, typeof MdsBadge, typeof MdsBanner, typeof MdsBenchmarkBar, typeof MdsBibliography, typeof MdsBreadcrumb, typeof MdsBreadcrumbItem, typeof MdsButton, typeof MdsButtonDropdown, typeof MdsButtonGroup, typeof MdsCalendar, typeof MdsCalendarCell, typeof MdsCard, typeof MdsCardContent, typeof MdsCardFooter, typeof MdsCardHeader, typeof MdsCardMedia, typeof MdsChip, typeof MdsDetails, typeof MdsDropdown, typeof MdsEmoji, typeof MdsEntity, typeof MdsFile, typeof MdsFilePreview, typeof MdsFilter, typeof MdsFilterItem, typeof MdsHeader, typeof MdsHeaderBar, typeof MdsHelp, typeof MdsHorizontalScroll, typeof MdsHr, typeof MdsIcon, typeof MdsImg, typeof MdsInput, typeof MdsInputDate, typeof MdsInputDateRange, typeof MdsInputDateRangePreselection, typeof MdsInputField, typeof MdsInputOtp, typeof MdsInputRange, typeof MdsInputSelect, typeof MdsInputSwitch, typeof MdsInputTip, typeof MdsInputTipItem, typeof MdsInputUpload, typeof MdsKeyboard, typeof MdsKeyboardKey, typeof MdsKpi, typeof MdsKpiItem, typeof MdsLabel, typeof MdsList, typeof MdsListItem, typeof MdsMention, typeof MdsModal, typeof MdsNote, typeof MdsNotification, typeof MdsPaginator, typeof MdsPaginatorItem, typeof MdsPolicyAi, typeof MdsPref, typeof MdsPrefAnimation, typeof MdsPrefConsumption, typeof MdsPrefContrast, typeof MdsPrefLanguage, typeof MdsPrefLanguageItem, typeof MdsPrefTheme, typeof MdsPrefThemeVariant, typeof MdsPrefThemeVariantItem, typeof MdsPriceTable, typeof MdsPriceTableFeatures, typeof MdsPriceTableFeaturesCell, typeof MdsPriceTableFeaturesRow, typeof MdsPriceTableHeader, typeof MdsPriceTableList, typeof MdsPriceTableListItem, typeof MdsProgress, typeof MdsPushNotification, typeof MdsPushNotificationItem, typeof MdsQuote, typeof MdsRadialMenu, typeof MdsRadialMenuItem, typeof MdsRadialProgress, typeof MdsSeparator, typeof MdsSpinner, typeof MdsStatusBar, typeof MdsStepperBar, typeof MdsStepperBarItem, typeof MdsTab, typeof MdsTabBar, typeof MdsTabBarItem, typeof MdsTabItem, typeof MdsTable, typeof MdsTableBody, typeof MdsTableCell, typeof MdsTableFooter, typeof MdsTableHeader, typeof MdsTableHeaderCell, typeof MdsTableRow, typeof MdsText, typeof MdsToast, typeof MdsTooltip, typeof MdsTree, typeof MdsTreeItem, typeof MdsUrlView, typeof MdsUsage, typeof MdsVideoWall, typeof MdsZero, typeof TextValueAccessor, typeof SelectValueAccessor, typeof NumericValueAccessor, typeof BooleanValueAccessor], [typeof MdsAccordion, typeof MdsAccordionItem, typeof MdsAccordionTimer, typeof MdsAccordionTimerItem, typeof MdsAuthor, typeof MdsAvatar, typeof MdsAvatarStack, typeof MdsAvatarStackItem, typeof MdsBadge, typeof MdsBanner, typeof MdsBenchmarkBar, typeof MdsBibliography, typeof MdsBreadcrumb, typeof MdsBreadcrumbItem, typeof MdsButton, typeof MdsButtonDropdown, typeof MdsButtonGroup, typeof MdsCalendar, typeof MdsCalendarCell, typeof MdsCard, typeof MdsCardContent, typeof MdsCardFooter, typeof MdsCardHeader, typeof MdsCardMedia, typeof MdsChip, typeof MdsDetails, typeof MdsDropdown, typeof MdsEmoji, typeof MdsEntity, typeof MdsFile, typeof MdsFilePreview, typeof MdsFilter, typeof MdsFilterItem, typeof MdsHeader, typeof MdsHeaderBar, typeof MdsHelp, typeof MdsHorizontalScroll, typeof MdsHr, typeof MdsIcon, typeof MdsImg, typeof MdsInput, typeof MdsInputDate, typeof MdsInputDateRange, typeof MdsInputDateRangePreselection, typeof MdsInputField, typeof MdsInputOtp, typeof MdsInputRange, typeof MdsInputSelect, typeof MdsInputSwitch, typeof MdsInputTip, typeof MdsInputTipItem, typeof MdsInputUpload, typeof MdsKeyboard, typeof MdsKeyboardKey, typeof MdsKpi, typeof MdsKpiItem, typeof MdsLabel, typeof MdsList, typeof MdsListItem, typeof MdsMention, typeof MdsModal, typeof MdsNote, typeof MdsNotification, typeof MdsPaginator, typeof MdsPaginatorItem, typeof MdsPolicyAi, typeof MdsPref, typeof MdsPrefAnimation, typeof MdsPrefConsumption, typeof MdsPrefContrast, typeof MdsPrefLanguage, typeof MdsPrefLanguageItem, typeof MdsPrefTheme, typeof MdsPrefThemeVariant, typeof MdsPrefThemeVariantItem, typeof MdsPriceTable, typeof MdsPriceTableFeatures, typeof MdsPriceTableFeaturesCell, typeof MdsPriceTableFeaturesRow, typeof MdsPriceTableHeader, typeof MdsPriceTableList, typeof MdsPriceTableListItem, typeof MdsProgress, typeof MdsPushNotification, typeof MdsPushNotificationItem, typeof MdsQuote, typeof MdsRadialMenu, typeof MdsRadialMenuItem, typeof MdsRadialProgress, typeof MdsSeparator, typeof MdsSpinner, typeof MdsStatusBar, typeof MdsStepperBar, typeof MdsStepperBarItem, typeof MdsTab, typeof MdsTabBar, typeof MdsTabBarItem, typeof MdsTabItem, typeof MdsTable, typeof MdsTableBody, typeof MdsTableCell, typeof MdsTableFooter, typeof MdsTableHeader, typeof MdsTableHeaderCell, typeof MdsTableRow, typeof MdsText, typeof MdsToast, typeof MdsTooltip, typeof MdsTree, typeof MdsTreeItem, typeof MdsUrlView, typeof MdsUsage, typeof MdsVideoWall, typeof MdsZero, typeof TextValueAccessor, typeof SelectValueAccessor, typeof NumericValueAccessor, typeof BooleanValueAccessor]>;
3507
+ static ɵinj: i0.ɵɵInjectorDeclaration<MagmaModule>;
3508
+ }
3509
+
3510
+ declare const DIRECTIVES: (typeof MdsAccordion | typeof MdsAccordionItem | typeof MdsAccordionTimer | typeof MdsAccordionTimerItem | typeof MdsAuthor | typeof MdsAvatar | typeof MdsAvatarStack | typeof MdsAvatarStackItem | typeof MdsBadge | typeof MdsBanner | typeof MdsBenchmarkBar | typeof MdsBibliography | typeof MdsBreadcrumb | typeof MdsBreadcrumbItem | typeof MdsButton | typeof MdsButtonDropdown | typeof MdsButtonGroup | typeof MdsCalendar | typeof MdsCalendarCell | typeof MdsCard | typeof MdsCardContent | typeof MdsCardFooter | typeof MdsCardHeader | typeof MdsCardMedia | typeof MdsChip | typeof MdsDetails | typeof MdsDropdown | typeof MdsEmoji | typeof MdsEntity | typeof MdsFile | typeof MdsFilePreview | typeof MdsFilter | typeof MdsFilterItem | typeof MdsHeader | typeof MdsHeaderBar | typeof MdsHelp | typeof MdsHorizontalScroll | typeof MdsHr | typeof MdsIcon | typeof MdsImg | typeof MdsInput | typeof MdsInputDate | typeof MdsInputDateRange | typeof MdsInputDateRangePreselection | typeof MdsInputField | typeof MdsInputOtp | typeof MdsInputRange | typeof MdsInputSelect | typeof MdsInputSwitch | typeof MdsInputTip | typeof MdsInputTipItem | typeof MdsInputUpload | typeof MdsKeyboard | typeof MdsKeyboardKey | typeof MdsKpi | typeof MdsKpiItem | typeof MdsLabel | typeof MdsList | typeof MdsListItem | typeof MdsMention | typeof MdsModal | typeof MdsNote | typeof MdsNotification | typeof MdsPaginator | typeof MdsPaginatorItem | typeof MdsPolicyAi | typeof MdsPref | typeof MdsPrefAnimation | typeof MdsPrefConsumption | typeof MdsPrefContrast | typeof MdsPrefLanguage | typeof MdsPrefLanguageItem | typeof MdsPrefTheme | typeof MdsPrefThemeVariant | typeof MdsPrefThemeVariantItem | typeof MdsPriceTable | typeof MdsPriceTableFeatures | typeof MdsPriceTableFeaturesCell | typeof MdsPriceTableFeaturesRow | typeof MdsPriceTableHeader | typeof MdsPriceTableList | typeof MdsPriceTableListItem | typeof MdsProgress | typeof MdsPushNotification | typeof MdsPushNotificationItem | typeof MdsQuote | typeof MdsRadialMenu | typeof MdsRadialMenuItem | typeof MdsRadialProgress | typeof MdsSeparator | typeof MdsSpinner | typeof MdsStatusBar | typeof MdsStepperBar | typeof MdsStepperBarItem | typeof MdsTab | typeof MdsTabBar | typeof MdsTabBarItem | typeof MdsTabItem | typeof MdsTable | typeof MdsTableBody | typeof MdsTableCell | typeof MdsTableFooter | typeof MdsTableHeader | typeof MdsTableHeaderCell | typeof MdsTableRow | typeof MdsText | typeof MdsToast | typeof MdsTooltip | typeof MdsTree | typeof MdsTreeItem | typeof MdsUrlView | typeof MdsUsage | typeof MdsVideoWall | typeof MdsZero)[];
3511
+
3512
+ export { BooleanValueAccessor, DIRECTIVES, MagmaModule, MdsAccordion, MdsAccordionItem, MdsAccordionTimer, MdsAccordionTimerItem, MdsAuthor, MdsAvatar, MdsAvatarStack, MdsAvatarStackItem, MdsBadge, MdsBanner, MdsBenchmarkBar, MdsBibliography, MdsBreadcrumb, MdsBreadcrumbItem, MdsButton, MdsButtonDropdown, MdsButtonGroup, MdsCalendar, MdsCalendarCell, MdsCard, MdsCardContent, MdsCardFooter, MdsCardHeader, MdsCardMedia, MdsChip, MdsDetails, MdsDropdown, MdsEmoji, MdsEntity, MdsFile, MdsFilePreview, MdsFilter, MdsFilterItem, MdsHeader, MdsHeaderBar, MdsHelp, MdsHorizontalScroll, MdsHr, MdsIcon, MdsImg, MdsInput, MdsInputDate, MdsInputDateRange, MdsInputDateRangePreselection, MdsInputField, MdsInputOtp, MdsInputRange, MdsInputSelect, MdsInputSwitch, MdsInputTip, MdsInputTipItem, MdsInputUpload, MdsKeyboard, MdsKeyboardKey, MdsKpi, MdsKpiItem, MdsLabel, MdsList, MdsListItem, MdsMention, MdsModal, MdsNote, MdsNotification, MdsPaginator, MdsPaginatorItem, MdsPolicyAi, MdsPref, MdsPrefAnimation, MdsPrefConsumption, MdsPrefContrast, MdsPrefLanguage, MdsPrefLanguageItem, MdsPrefTheme, MdsPrefThemeVariant, MdsPrefThemeVariantItem, MdsPriceTable, MdsPriceTableFeatures, MdsPriceTableFeaturesCell, MdsPriceTableFeaturesRow, MdsPriceTableHeader, MdsPriceTableList, MdsPriceTableListItem, MdsProgress, MdsPushNotification, MdsPushNotificationItem, MdsQuote, MdsRadialMenu, MdsRadialMenuItem, MdsRadialProgress, MdsSeparator, MdsSpinner, MdsStatusBar, MdsStepperBar, MdsStepperBarItem, MdsTab, MdsTabBar, MdsTabBarItem, MdsTabItem, MdsTable, MdsTableBody, MdsTableCell, MdsTableFooter, MdsTableHeader, MdsTableHeaderCell, MdsTableRow, MdsText, MdsToast, MdsTooltip, MdsTree, MdsTreeItem, MdsUrlView, MdsUsage, MdsVideoWall, MdsZero, NumericValueAccessor, SelectValueAccessor, TextValueAccessor };