@maggioli-design-system/magma-angular 1.0.0-beta.9 → 2.0.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
  import * as i0 from '@angular/core';
2
- import { ChangeDetectionStrategy, Component, APP_INITIALIZER, NgModule } from '@angular/core';
2
+ import { EventEmitter, Output, ChangeDetectionStrategy, Component, APP_INITIALIZER, NgModule } from '@angular/core';
3
3
  import { defineCustomElements } from '@maggioli-design-system/magma/loader';
4
4
  import { __decorate } from 'tslib';
5
5
  import { fromEvent } from 'rxjs';
@@ -65,21 +65,21 @@ function ProxyCmp(opts) {
65
65
  let MdsAccordion = class MdsAccordion {
66
66
  z;
67
67
  el;
68
+ mdsAccordionChange = new EventEmitter();
68
69
  constructor(c, r, z) {
69
70
  this.z = z;
70
71
  c.detach();
71
72
  this.el = r.nativeElement;
72
- proxyOutputs(this, this.el, ['mdsAccordionChange']);
73
73
  }
74
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
75
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsAccordion, selector: "mds-accordion", inputs: { closable: "closable", multiple: "multiple" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
74
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
75
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsAccordion, selector: "mds-accordion", inputs: { closable: "closable", multiple: "multiple" }, outputs: { mdsAccordionChange: "mdsAccordionChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
76
76
  };
77
77
  MdsAccordion = __decorate([
78
78
  ProxyCmp({
79
79
  inputs: ['closable', 'multiple']
80
80
  })
81
81
  ], MdsAccordion);
82
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsAccordion, decorators: [{
82
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsAccordion, decorators: [{
83
83
  type: Component,
84
84
  args: [{
85
85
  selector: 'mds-accordion',
@@ -87,53 +87,67 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
87
87
  template: '<ng-content></ng-content>',
88
88
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
89
89
  inputs: ['closable', 'multiple'],
90
+ outputs: ['mdsAccordionChange'],
91
+ standalone: false
90
92
  }]
91
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
93
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsAccordionChange: [{
94
+ type: Output
95
+ }] } });
92
96
  let MdsAccordionItem = class MdsAccordionItem {
93
97
  z;
94
98
  el;
99
+ mdsAccordionItemSelect = new EventEmitter();
100
+ mdsAccordionItemUnselect = new EventEmitter();
101
+ mdsAccordionItemChange = new EventEmitter();
95
102
  constructor(c, r, z) {
96
103
  this.z = z;
97
104
  c.detach();
98
105
  this.el = r.nativeElement;
99
- proxyOutputs(this, this.el, ['mdsAccordionItemSelect', 'mdsAccordionItemUnselect', 'mdsAccordionItemChange']);
100
106
  }
101
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsAccordionItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
102
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsAccordionItem, selector: "mds-accordion-item", inputs: { label: "label", selected: "selected", typography: "typography" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
107
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsAccordionItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
108
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsAccordionItem, selector: "mds-accordion-item", inputs: { label: "label", selected: "selected", typography: "typography" }, outputs: { mdsAccordionItemSelect: "mdsAccordionItemSelect", mdsAccordionItemUnselect: "mdsAccordionItemUnselect", mdsAccordionItemChange: "mdsAccordionItemChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
103
109
  };
104
110
  MdsAccordionItem = __decorate([
105
111
  ProxyCmp({
106
112
  inputs: ['label', 'selected', 'typography']
107
113
  })
108
114
  ], MdsAccordionItem);
109
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsAccordionItem, decorators: [{
115
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsAccordionItem, decorators: [{
110
116
  type: Component,
111
117
  args: [{
112
118
  selector: 'mds-accordion-item',
113
119
  changeDetection: ChangeDetectionStrategy.OnPush,
114
120
  template: '<ng-content></ng-content>',
115
121
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
116
- inputs: ['label', 'selected', 'typography'],
122
+ inputs: [{ name: 'label', required: true }, 'selected', 'typography'],
123
+ outputs: ['mdsAccordionItemSelect', 'mdsAccordionItemUnselect', 'mdsAccordionItemChange'],
124
+ standalone: false
117
125
  }]
118
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
126
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsAccordionItemSelect: [{
127
+ type: Output
128
+ }], mdsAccordionItemUnselect: [{
129
+ type: Output
130
+ }], mdsAccordionItemChange: [{
131
+ type: Output
132
+ }] } });
119
133
  let MdsAccordionTimer = class MdsAccordionTimer {
120
134
  z;
121
135
  el;
136
+ mdsAccordionTimerChange = new EventEmitter();
122
137
  constructor(c, r, z) {
123
138
  this.z = z;
124
139
  c.detach();
125
140
  this.el = r.nativeElement;
126
- proxyOutputs(this, this.el, ['mdsAccordionTimerChange']);
127
141
  }
128
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsAccordionTimer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
129
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsAccordionTimer, selector: "mds-accordion-timer", inputs: { duration: "duration", paused: "paused" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
142
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsAccordionTimer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
143
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsAccordionTimer, selector: "mds-accordion-timer", inputs: { duration: "duration", paused: "paused" }, outputs: { mdsAccordionTimerChange: "mdsAccordionTimerChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
130
144
  };
131
145
  MdsAccordionTimer = __decorate([
132
146
  ProxyCmp({
133
147
  inputs: ['duration', 'paused']
134
148
  })
135
149
  ], MdsAccordionTimer);
136
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsAccordionTimer, decorators: [{
150
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsAccordionTimer, decorators: [{
137
151
  type: Component,
138
152
  args: [{
139
153
  selector: 'mds-accordion-timer',
@@ -141,35 +155,52 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
141
155
  template: '<ng-content></ng-content>',
142
156
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
143
157
  inputs: ['duration', 'paused'],
158
+ outputs: ['mdsAccordionTimerChange'],
159
+ standalone: false
144
160
  }]
145
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
161
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsAccordionTimerChange: [{
162
+ type: Output
163
+ }] } });
146
164
  let MdsAccordionTimerItem = class MdsAccordionTimerItem {
147
165
  z;
148
166
  el;
167
+ mdsAccordionTimerItemClickSelect = new EventEmitter();
168
+ mdsAccordionTimerItemSelect = new EventEmitter();
169
+ mdsAccordionTimerItemMouseEnterSelect = new EventEmitter();
170
+ mdsAccordionTimerItemMouseLeaveSelect = new EventEmitter();
149
171
  constructor(c, r, z) {
150
172
  this.z = z;
151
173
  c.detach();
152
174
  this.el = r.nativeElement;
153
- proxyOutputs(this, this.el, ['mdsAccordionTimerItemClickSelect', 'mdsAccordionTimerItemSelect', 'mdsAccordionTimerItemMouseEnterSelect', 'mdsAccordionTimerItemMouseLeaveSelect']);
154
175
  }
155
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsAccordionTimerItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
156
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsAccordionTimerItem, selector: "mds-accordion-timer-item", inputs: { description: "description", duration: "duration", progress: "progress", selected: "selected", typography: "typography", uuid: "uuid" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
176
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsAccordionTimerItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
177
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsAccordionTimerItem, selector: "mds-accordion-timer-item", inputs: { description: "description", duration: "duration", progress: "progress", selected: "selected", typography: "typography", uuid: "uuid" }, outputs: { mdsAccordionTimerItemClickSelect: "mdsAccordionTimerItemClickSelect", mdsAccordionTimerItemSelect: "mdsAccordionTimerItemSelect", mdsAccordionTimerItemMouseEnterSelect: "mdsAccordionTimerItemMouseEnterSelect", mdsAccordionTimerItemMouseLeaveSelect: "mdsAccordionTimerItemMouseLeaveSelect" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
157
178
  };
158
179
  MdsAccordionTimerItem = __decorate([
159
180
  ProxyCmp({
160
181
  inputs: ['description', 'duration', 'progress', 'selected', 'typography', 'uuid']
161
182
  })
162
183
  ], MdsAccordionTimerItem);
163
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsAccordionTimerItem, decorators: [{
184
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsAccordionTimerItem, decorators: [{
164
185
  type: Component,
165
186
  args: [{
166
187
  selector: 'mds-accordion-timer-item',
167
188
  changeDetection: ChangeDetectionStrategy.OnPush,
168
189
  template: '<ng-content></ng-content>',
169
190
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
170
- inputs: ['description', 'duration', 'progress', 'selected', 'typography', 'uuid'],
191
+ inputs: [{ name: 'description', required: true }, 'duration', 'progress', 'selected', 'typography', 'uuid'],
192
+ outputs: ['mdsAccordionTimerItemClickSelect', 'mdsAccordionTimerItemSelect', 'mdsAccordionTimerItemMouseEnterSelect', 'mdsAccordionTimerItemMouseLeaveSelect'],
193
+ standalone: false
171
194
  }]
172
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
195
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsAccordionTimerItemClickSelect: [{
196
+ type: Output
197
+ }], mdsAccordionTimerItemSelect: [{
198
+ type: Output
199
+ }], mdsAccordionTimerItemMouseEnterSelect: [{
200
+ type: Output
201
+ }], mdsAccordionTimerItemMouseLeaveSelect: [{
202
+ type: Output
203
+ }] } });
173
204
  let MdsAuthor = class MdsAuthor {
174
205
  z;
175
206
  el;
@@ -178,13 +209,13 @@ let MdsAuthor = class MdsAuthor {
178
209
  c.detach();
179
210
  this.el = r.nativeElement;
180
211
  }
181
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsAuthor, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
182
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsAuthor, selector: "mds-author", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
212
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsAuthor, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
213
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsAuthor, selector: "mds-author", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
183
214
  };
184
215
  MdsAuthor = __decorate([
185
216
  ProxyCmp({})
186
217
  ], MdsAuthor);
187
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsAuthor, decorators: [{
218
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsAuthor, decorators: [{
188
219
  type: Component,
189
220
  args: [{
190
221
  selector: 'mds-author',
@@ -192,6 +223,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
192
223
  template: '<ng-content></ng-content>',
193
224
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
194
225
  inputs: [],
226
+ standalone: false
195
227
  }]
196
228
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
197
229
  let MdsAvatar = class MdsAvatar {
@@ -202,22 +234,77 @@ let MdsAvatar = class MdsAvatar {
202
234
  c.detach();
203
235
  this.el = r.nativeElement;
204
236
  }
205
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
206
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsAvatar, selector: "mds-avatar", inputs: { icon: "icon", initials: "initials", src: "src", tone: "tone", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
237
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
238
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsAvatar, selector: "mds-avatar", inputs: { count: "count", icon: "icon", initials: "initials", src: "src", tone: "tone", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
207
239
  };
208
240
  MdsAvatar = __decorate([
209
241
  ProxyCmp({
210
- inputs: ['icon', 'initials', 'src', 'tone', 'variant']
242
+ inputs: ['count', 'icon', 'initials', 'src', 'tone', 'variant']
211
243
  })
212
244
  ], MdsAvatar);
213
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsAvatar, decorators: [{
245
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsAvatar, decorators: [{
214
246
  type: Component,
215
247
  args: [{
216
248
  selector: 'mds-avatar',
217
249
  changeDetection: ChangeDetectionStrategy.OnPush,
218
250
  template: '<ng-content></ng-content>',
219
251
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
220
- inputs: ['icon', 'initials', 'src', 'tone', 'variant'],
252
+ inputs: ['count', 'icon', 'initials', 'src', 'tone', 'variant'],
253
+ standalone: false
254
+ }]
255
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
256
+ let MdsAvatarStack = class MdsAvatarStack {
257
+ z;
258
+ el;
259
+ constructor(c, r, z) {
260
+ this.z = z;
261
+ c.detach();
262
+ this.el = r.nativeElement;
263
+ }
264
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsAvatarStack, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
265
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsAvatarStack, selector: "mds-avatar-stack", inputs: { size: "size", total: "total" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
266
+ };
267
+ MdsAvatarStack = __decorate([
268
+ ProxyCmp({
269
+ inputs: ['size', 'total']
270
+ })
271
+ ], MdsAvatarStack);
272
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsAvatarStack, decorators: [{
273
+ type: Component,
274
+ args: [{
275
+ selector: 'mds-avatar-stack',
276
+ changeDetection: ChangeDetectionStrategy.OnPush,
277
+ template: '<ng-content></ng-content>',
278
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
279
+ inputs: ['size', 'total'],
280
+ standalone: false
281
+ }]
282
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
283
+ let MdsAvatarStackItem = class MdsAvatarStackItem {
284
+ z;
285
+ el;
286
+ constructor(c, r, z) {
287
+ this.z = z;
288
+ c.detach();
289
+ this.el = r.nativeElement;
290
+ }
291
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsAvatarStackItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
292
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsAvatarStackItem, selector: "mds-avatar-stack-item", inputs: { count: "count", initials: "initials", src: "src", tone: "tone", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
293
+ };
294
+ MdsAvatarStackItem = __decorate([
295
+ ProxyCmp({
296
+ inputs: ['count', 'initials', 'src', 'tone', 'variant']
297
+ })
298
+ ], MdsAvatarStackItem);
299
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsAvatarStackItem, decorators: [{
300
+ type: Component,
301
+ args: [{
302
+ selector: 'mds-avatar-stack-item',
303
+ changeDetection: ChangeDetectionStrategy.OnPush,
304
+ template: '<ng-content></ng-content>',
305
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
306
+ inputs: ['count', 'initials', 'src', 'tone', 'variant'],
307
+ standalone: false
221
308
  }]
222
309
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
223
310
  let MdsBadge = class MdsBadge {
@@ -228,52 +315,57 @@ let MdsBadge = class MdsBadge {
228
315
  c.detach();
229
316
  this.el = r.nativeElement;
230
317
  }
231
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
232
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsBadge, selector: "mds-badge", inputs: { tone: "tone", typography: "typography", typographyVariant: "typographyVariant", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
318
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
319
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsBadge, selector: "mds-badge", inputs: { label: "label", tone: "tone", typography: "typography", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
233
320
  };
234
321
  MdsBadge = __decorate([
235
322
  ProxyCmp({
236
- inputs: ['tone', 'typography', 'typographyVariant', 'variant']
323
+ inputs: ['label', 'tone', 'typography', 'variant']
237
324
  })
238
325
  ], MdsBadge);
239
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsBadge, decorators: [{
326
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsBadge, decorators: [{
240
327
  type: Component,
241
328
  args: [{
242
329
  selector: 'mds-badge',
243
330
  changeDetection: ChangeDetectionStrategy.OnPush,
244
331
  template: '<ng-content></ng-content>',
245
332
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
246
- inputs: ['tone', 'typography', 'typographyVariant', 'variant'],
333
+ inputs: ['label', 'tone', 'typography', 'variant'],
334
+ standalone: false
247
335
  }]
248
336
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
249
337
  let MdsBanner = class MdsBanner {
250
338
  z;
251
339
  el;
340
+ mdsBannerClose = new EventEmitter();
252
341
  constructor(c, r, z) {
253
342
  this.z = z;
254
343
  c.detach();
255
344
  this.el = r.nativeElement;
256
- proxyOutputs(this, this.el, ['mdsBannerClose']);
257
345
  }
258
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsBanner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
259
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsBanner, selector: "mds-banner", inputs: { deletable: "deletable", headline: "headline", icon: "icon", tone: "tone", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
346
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsBanner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
347
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsBanner, selector: "mds-banner", inputs: { cockade: "cockade", deletable: "deletable", headline: "headline", icon: "icon", tone: "tone", variant: "variant" }, outputs: { mdsBannerClose: "mdsBannerClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
260
348
  };
261
349
  MdsBanner = __decorate([
262
350
  ProxyCmp({
263
- inputs: ['deletable', 'headline', 'icon', 'tone', 'variant'],
351
+ inputs: ['cockade', 'deletable', 'headline', 'icon', 'tone', 'variant'],
264
352
  methods: ['updateLang']
265
353
  })
266
354
  ], MdsBanner);
267
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsBanner, decorators: [{
355
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsBanner, decorators: [{
268
356
  type: Component,
269
357
  args: [{
270
358
  selector: 'mds-banner',
271
359
  changeDetection: ChangeDetectionStrategy.OnPush,
272
360
  template: '<ng-content></ng-content>',
273
361
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
274
- inputs: ['deletable', 'headline', 'icon', 'tone', 'variant'],
362
+ inputs: ['cockade', 'deletable', 'headline', 'icon', 'tone', 'variant'],
363
+ outputs: ['mdsBannerClose'],
364
+ standalone: false
275
365
  }]
276
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
366
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsBannerClose: [{
367
+ type: Output
368
+ }] } });
277
369
  let MdsBenchmarkBar = class MdsBenchmarkBar {
278
370
  z;
279
371
  el;
@@ -282,22 +374,23 @@ let MdsBenchmarkBar = class MdsBenchmarkBar {
282
374
  c.detach();
283
375
  this.el = r.nativeElement;
284
376
  }
285
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsBenchmarkBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
286
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsBenchmarkBar, selector: "mds-benchmark-bar", inputs: { alias: "alias", typography: "typography", value: "value", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
377
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsBenchmarkBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
378
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsBenchmarkBar, selector: "mds-benchmark-bar", inputs: { alias: "alias", label: "label", size: "size", typography: "typography", value: "value", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
287
379
  };
288
380
  MdsBenchmarkBar = __decorate([
289
381
  ProxyCmp({
290
- inputs: ['alias', 'typography', 'value', 'variant']
382
+ inputs: ['alias', 'label', 'size', 'typography', 'value', 'variant']
291
383
  })
292
384
  ], MdsBenchmarkBar);
293
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsBenchmarkBar, decorators: [{
385
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsBenchmarkBar, decorators: [{
294
386
  type: Component,
295
387
  args: [{
296
388
  selector: 'mds-benchmark-bar',
297
389
  changeDetection: ChangeDetectionStrategy.OnPush,
298
390
  template: '<ng-content></ng-content>',
299
391
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
300
- inputs: ['alias', 'typography', 'value', 'variant'],
392
+ inputs: ['alias', 'label', 'size', 'typography', 'value', 'variant'],
393
+ standalone: false
301
394
  }]
302
395
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
303
396
  let MdsBibliography = class MdsBibliography {
@@ -308,15 +401,15 @@ let MdsBibliography = class MdsBibliography {
308
401
  c.detach();
309
402
  this.el = r.nativeElement;
310
403
  }
311
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsBibliography, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
312
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsBibliography, selector: "mds-bibliography", inputs: { author: "author", date: "date", format: "format", location: "location", name: "name", publisher: "publisher", rel: "rel", typography: "typography", url: "url", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
404
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsBibliography, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
405
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsBibliography, selector: "mds-bibliography", inputs: { author: "author", date: "date", format: "format", location: "location", name: "name", publisher: "publisher", rel: "rel", typography: "typography", url: "url", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
313
406
  };
314
407
  MdsBibliography = __decorate([
315
408
  ProxyCmp({
316
409
  inputs: ['author', 'date', 'format', 'location', 'name', 'publisher', 'rel', 'typography', 'url', 'variant']
317
410
  })
318
411
  ], MdsBibliography);
319
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsBibliography, decorators: [{
412
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsBibliography, decorators: [{
320
413
  type: Component,
321
414
  args: [{
322
415
  selector: 'mds-bibliography',
@@ -324,19 +417,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
324
417
  template: '<ng-content></ng-content>',
325
418
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
326
419
  inputs: ['author', 'date', 'format', 'location', 'name', 'publisher', 'rel', 'typography', 'url', 'variant'],
420
+ standalone: false
327
421
  }]
328
422
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
329
423
  let MdsBreadcrumb = class MdsBreadcrumb {
330
424
  z;
331
425
  el;
426
+ mdsBreadcrumbChange = new EventEmitter();
332
427
  constructor(c, r, z) {
333
428
  this.z = z;
334
429
  c.detach();
335
430
  this.el = r.nativeElement;
336
- proxyOutputs(this, this.el, ['mdsBreadcrumbChange']);
337
431
  }
338
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
339
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsBreadcrumb, selector: "mds-breadcrumb", inputs: { back: "back" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
432
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
433
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsBreadcrumb, selector: "mds-breadcrumb", inputs: { back: "back" }, outputs: { mdsBreadcrumbChange: "mdsBreadcrumbChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
340
434
  };
341
435
  MdsBreadcrumb = __decorate([
342
436
  ProxyCmp({
@@ -344,7 +438,7 @@ MdsBreadcrumb = __decorate([
344
438
  methods: ['updateLang']
345
439
  })
346
440
  ], MdsBreadcrumb);
347
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsBreadcrumb, decorators: [{
441
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsBreadcrumb, decorators: [{
348
442
  type: Component,
349
443
  args: [{
350
444
  selector: 'mds-breadcrumb',
@@ -352,35 +446,43 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
352
446
  template: '<ng-content></ng-content>',
353
447
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
354
448
  inputs: ['back'],
449
+ outputs: ['mdsBreadcrumbChange'],
450
+ standalone: false
355
451
  }]
356
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
452
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsBreadcrumbChange: [{
453
+ type: Output
454
+ }] } });
357
455
  let MdsBreadcrumbItem = class MdsBreadcrumbItem {
358
456
  z;
359
457
  el;
458
+ mdsBreadcrumbItemSelect = new EventEmitter();
360
459
  constructor(c, r, z) {
361
460
  this.z = z;
362
461
  c.detach();
363
462
  this.el = r.nativeElement;
364
- proxyOutputs(this, this.el, ['mdsBreadcrumbItemSelect']);
365
463
  }
366
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsBreadcrumbItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
367
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsBreadcrumbItem, selector: "mds-breadcrumb-item", inputs: { selected: "selected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
464
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsBreadcrumbItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
465
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsBreadcrumbItem, selector: "mds-breadcrumb-item", inputs: { label: "label", selected: "selected" }, outputs: { mdsBreadcrumbItemSelect: "mdsBreadcrumbItemSelect" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
368
466
  };
369
467
  MdsBreadcrumbItem = __decorate([
370
468
  ProxyCmp({
371
- inputs: ['selected']
469
+ inputs: ['label', 'selected']
372
470
  })
373
471
  ], MdsBreadcrumbItem);
374
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsBreadcrumbItem, decorators: [{
472
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsBreadcrumbItem, decorators: [{
375
473
  type: Component,
376
474
  args: [{
377
475
  selector: 'mds-breadcrumb-item',
378
476
  changeDetection: ChangeDetectionStrategy.OnPush,
379
477
  template: '<ng-content></ng-content>',
380
478
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
381
- inputs: ['selected'],
479
+ inputs: ['label', 'selected'],
480
+ outputs: ['mdsBreadcrumbItemSelect'],
481
+ standalone: false
382
482
  }]
383
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
483
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsBreadcrumbItemSelect: [{
484
+ type: Output
485
+ }] } });
384
486
  let MdsButton = class MdsButton {
385
487
  z;
386
488
  el;
@@ -389,22 +491,137 @@ let MdsButton = class MdsButton {
389
491
  c.detach();
390
492
  this.el = r.nativeElement;
391
493
  }
392
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
393
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsButton, selector: "mds-button", inputs: { active: "active", autoFocus: "autoFocus", await: "await", disabled: "disabled", href: "href", icon: "icon", iconPosition: "iconPosition", size: "size", target: "target", tone: "tone", truncate: "truncate", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
494
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
495
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsButton, selector: "mds-button", inputs: { active: "active", animation: "animation", autoFocus: "autoFocus", await: "await", disabled: "disabled", href: "href", icon: "icon", iconPosition: "iconPosition", label: "label", size: "size", target: "target", tone: "tone", truncate: "truncate", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
394
496
  };
395
497
  MdsButton = __decorate([
396
498
  ProxyCmp({
397
- inputs: ['active', 'autoFocus', 'await', 'disabled', 'href', 'icon', 'iconPosition', 'size', 'target', 'tone', 'truncate', 'type', 'variant']
499
+ inputs: ['active', 'animation', 'autoFocus', 'await', 'disabled', 'href', 'icon', 'iconPosition', 'label', 'size', 'target', 'tone', 'truncate', 'type', 'variant']
398
500
  })
399
501
  ], MdsButton);
400
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsButton, decorators: [{
502
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsButton, decorators: [{
401
503
  type: Component,
402
504
  args: [{
403
505
  selector: 'mds-button',
404
506
  changeDetection: ChangeDetectionStrategy.OnPush,
405
507
  template: '<ng-content></ng-content>',
406
508
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
407
- inputs: ['active', 'autoFocus', 'await', 'disabled', 'href', 'icon', 'iconPosition', 'size', 'target', 'tone', 'truncate', 'type', 'variant'],
509
+ inputs: ['active', 'animation', 'autoFocus', 'await', 'disabled', 'href', 'icon', 'iconPosition', 'label', 'size', 'target', 'tone', 'truncate', 'type', 'variant'],
510
+ standalone: false
511
+ }]
512
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
513
+ let MdsButtonDropdown = class MdsButtonDropdown {
514
+ z;
515
+ el;
516
+ constructor(c, r, z) {
517
+ this.z = z;
518
+ c.detach();
519
+ this.el = r.nativeElement;
520
+ }
521
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsButtonDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
522
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsButtonDropdown, selector: "mds-button-dropdown", inputs: { active: "active", autoFocus: "autoFocus", await: "await", disabled: "disabled", href: "href", icon: "icon", label: "label", size: "size", target: "target", tone: "tone", truncate: "truncate", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
523
+ };
524
+ MdsButtonDropdown = __decorate([
525
+ ProxyCmp({
526
+ inputs: ['active', 'autoFocus', 'await', 'disabled', 'href', 'icon', 'label', 'size', 'target', 'tone', 'truncate', 'type', 'variant']
527
+ })
528
+ ], MdsButtonDropdown);
529
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsButtonDropdown, decorators: [{
530
+ type: Component,
531
+ args: [{
532
+ selector: 'mds-button-dropdown',
533
+ changeDetection: ChangeDetectionStrategy.OnPush,
534
+ template: '<ng-content></ng-content>',
535
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
536
+ inputs: ['active', 'autoFocus', 'await', 'disabled', 'href', 'icon', 'label', 'size', 'target', 'tone', 'truncate', 'type', 'variant'],
537
+ standalone: false
538
+ }]
539
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
540
+ let MdsButtonGroup = class MdsButtonGroup {
541
+ z;
542
+ el;
543
+ constructor(c, r, z) {
544
+ this.z = z;
545
+ c.detach();
546
+ this.el = r.nativeElement;
547
+ }
548
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsButtonGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
549
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsButtonGroup, selector: "mds-button-group", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
550
+ };
551
+ MdsButtonGroup = __decorate([
552
+ ProxyCmp({})
553
+ ], MdsButtonGroup);
554
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsButtonGroup, decorators: [{
555
+ type: Component,
556
+ args: [{
557
+ selector: 'mds-button-group',
558
+ changeDetection: ChangeDetectionStrategy.OnPush,
559
+ template: '<ng-content></ng-content>',
560
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
561
+ inputs: [],
562
+ standalone: false
563
+ }]
564
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
565
+ let MdsCalendar = class MdsCalendar {
566
+ z;
567
+ el;
568
+ mdsCalendarChange = new EventEmitter();
569
+ mdsCalendarPreselect = new EventEmitter();
570
+ constructor(c, r, z) {
571
+ this.z = z;
572
+ c.detach();
573
+ this.el = r.nativeElement;
574
+ }
575
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsCalendar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
576
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsCalendar, selector: "mds-calendar", inputs: { endDate: "endDate", max: "max", min: "min", rangePicker: "rangePicker", startDate: "startDate" }, outputs: { mdsCalendarChange: "mdsCalendarChange", mdsCalendarPreselect: "mdsCalendarPreselect" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
577
+ };
578
+ MdsCalendar = __decorate([
579
+ ProxyCmp({
580
+ inputs: ['endDate', 'max', 'min', 'rangePicker', 'startDate'],
581
+ methods: ['updateLang', 'updateCurrentDate']
582
+ })
583
+ ], MdsCalendar);
584
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsCalendar, decorators: [{
585
+ type: Component,
586
+ args: [{
587
+ selector: 'mds-calendar',
588
+ changeDetection: ChangeDetectionStrategy.OnPush,
589
+ template: '<ng-content></ng-content>',
590
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
591
+ inputs: ['endDate', 'max', 'min', 'rangePicker', 'startDate'],
592
+ outputs: ['mdsCalendarChange', 'mdsCalendarPreselect'],
593
+ standalone: false
594
+ }]
595
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsCalendarChange: [{
596
+ type: Output
597
+ }], mdsCalendarPreselect: [{
598
+ type: Output
599
+ }] } });
600
+ let MdsCalendarCell = class MdsCalendarCell {
601
+ z;
602
+ el;
603
+ constructor(c, r, z) {
604
+ this.z = z;
605
+ c.detach();
606
+ this.el = r.nativeElement;
607
+ }
608
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsCalendarCell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
609
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsCalendarCell, selector: "mds-calendar-cell", inputs: { date: "date", disabled: "disabled", label: "label", month: "month", orientation: "orientation", preview: "preview", selection: "selection", today: "today" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
610
+ };
611
+ MdsCalendarCell = __decorate([
612
+ ProxyCmp({
613
+ inputs: ['date', 'disabled', 'label', 'month', 'orientation', 'preview', 'selection', 'today']
614
+ })
615
+ ], MdsCalendarCell);
616
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsCalendarCell, decorators: [{
617
+ type: Component,
618
+ args: [{
619
+ selector: 'mds-calendar-cell',
620
+ changeDetection: ChangeDetectionStrategy.OnPush,
621
+ template: '<ng-content></ng-content>',
622
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
623
+ inputs: ['date', 'disabled', 'label', 'month', 'orientation', 'preview', 'selection', 'today'],
624
+ standalone: false
408
625
  }]
409
626
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
410
627
  let MdsCard = class MdsCard {
@@ -415,15 +632,15 @@ let MdsCard = class MdsCard {
415
632
  c.detach();
416
633
  this.el = r.nativeElement;
417
634
  }
418
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
419
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsCard, selector: "mds-card", inputs: { autoGrid: "autoGrid" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
635
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
636
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsCard, selector: "mds-card", inputs: { autoGrid: "autoGrid" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
420
637
  };
421
638
  MdsCard = __decorate([
422
639
  ProxyCmp({
423
640
  inputs: ['autoGrid']
424
641
  })
425
642
  ], MdsCard);
426
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsCard, decorators: [{
643
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsCard, decorators: [{
427
644
  type: Component,
428
645
  args: [{
429
646
  selector: 'mds-card',
@@ -431,6 +648,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
431
648
  template: '<ng-content></ng-content>',
432
649
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
433
650
  inputs: ['autoGrid'],
651
+ standalone: false
434
652
  }]
435
653
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
436
654
  let MdsCardContent = class MdsCardContent {
@@ -441,13 +659,13 @@ let MdsCardContent = class MdsCardContent {
441
659
  c.detach();
442
660
  this.el = r.nativeElement;
443
661
  }
444
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsCardContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
445
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsCardContent, selector: "mds-card-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
662
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsCardContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
663
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsCardContent, selector: "mds-card-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
446
664
  };
447
665
  MdsCardContent = __decorate([
448
666
  ProxyCmp({})
449
667
  ], MdsCardContent);
450
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsCardContent, decorators: [{
668
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsCardContent, decorators: [{
451
669
  type: Component,
452
670
  args: [{
453
671
  selector: 'mds-card-content',
@@ -455,6 +673,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
455
673
  template: '<ng-content></ng-content>',
456
674
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
457
675
  inputs: [],
676
+ standalone: false
458
677
  }]
459
678
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
460
679
  let MdsCardFooter = class MdsCardFooter {
@@ -465,13 +684,13 @@ let MdsCardFooter = class MdsCardFooter {
465
684
  c.detach();
466
685
  this.el = r.nativeElement;
467
686
  }
468
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsCardFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
469
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsCardFooter, selector: "mds-card-footer", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
687
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsCardFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
688
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsCardFooter, selector: "mds-card-footer", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
470
689
  };
471
690
  MdsCardFooter = __decorate([
472
691
  ProxyCmp({})
473
692
  ], MdsCardFooter);
474
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsCardFooter, decorators: [{
693
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsCardFooter, decorators: [{
475
694
  type: Component,
476
695
  args: [{
477
696
  selector: 'mds-card-footer',
@@ -479,6 +698,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
479
698
  template: '<ng-content></ng-content>',
480
699
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
481
700
  inputs: [],
701
+ standalone: false
482
702
  }]
483
703
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
484
704
  let MdsCardHeader = class MdsCardHeader {
@@ -489,13 +709,13 @@ let MdsCardHeader = class MdsCardHeader {
489
709
  c.detach();
490
710
  this.el = r.nativeElement;
491
711
  }
492
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsCardHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
493
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsCardHeader, selector: "mds-card-header", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
712
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsCardHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
713
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsCardHeader, selector: "mds-card-header", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
494
714
  };
495
715
  MdsCardHeader = __decorate([
496
716
  ProxyCmp({})
497
717
  ], MdsCardHeader);
498
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsCardHeader, decorators: [{
718
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsCardHeader, decorators: [{
499
719
  type: Component,
500
720
  args: [{
501
721
  selector: 'mds-card-header',
@@ -503,6 +723,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
503
723
  template: '<ng-content></ng-content>',
504
724
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
505
725
  inputs: [],
726
+ standalone: false
506
727
  }]
507
728
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
508
729
  let MdsCardMedia = class MdsCardMedia {
@@ -513,13 +734,13 @@ let MdsCardMedia = class MdsCardMedia {
513
734
  c.detach();
514
735
  this.el = r.nativeElement;
515
736
  }
516
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsCardMedia, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
517
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsCardMedia, selector: "mds-card-media", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
737
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsCardMedia, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
738
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsCardMedia, selector: "mds-card-media", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
518
739
  };
519
740
  MdsCardMedia = __decorate([
520
741
  ProxyCmp({})
521
742
  ], MdsCardMedia);
522
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsCardMedia, decorators: [{
743
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsCardMedia, decorators: [{
523
744
  type: Component,
524
745
  args: [{
525
746
  selector: 'mds-card-media',
@@ -527,19 +748,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
527
748
  template: '<ng-content></ng-content>',
528
749
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
529
750
  inputs: [],
751
+ standalone: false
530
752
  }]
531
753
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
532
754
  let MdsChip = class MdsChip {
533
755
  z;
534
756
  el;
757
+ mdsChipClickLabel = new EventEmitter();
758
+ mdsChipDelete = new EventEmitter();
759
+ mdsChipSelect = new EventEmitter();
535
760
  constructor(c, r, z) {
536
761
  this.z = z;
537
762
  c.detach();
538
763
  this.el = r.nativeElement;
539
- proxyOutputs(this, this.el, ['mdsChipClickLabel', 'mdsChipDelete']);
540
764
  }
541
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
542
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsChip, selector: "mds-chip", inputs: { clickable: "clickable", deletable: "deletable", disabled: "disabled", icon: "icon", label: "label", selectable: "selectable", selected: "selected", tone: "tone", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
765
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
766
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsChip, selector: "mds-chip", inputs: { clickable: "clickable", deletable: "deletable", disabled: "disabled", icon: "icon", label: "label", selectable: "selectable", selected: "selected", tone: "tone", variant: "variant" }, outputs: { mdsChipClickLabel: "mdsChipClickLabel", mdsChipDelete: "mdsChipDelete", mdsChipSelect: "mdsChipSelect" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
543
767
  };
544
768
  MdsChip = __decorate([
545
769
  ProxyCmp({
@@ -547,34 +771,42 @@ MdsChip = __decorate([
547
771
  methods: ['updateLang']
548
772
  })
549
773
  ], MdsChip);
550
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsChip, decorators: [{
774
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsChip, decorators: [{
551
775
  type: Component,
552
776
  args: [{
553
777
  selector: 'mds-chip',
554
778
  changeDetection: ChangeDetectionStrategy.OnPush,
555
779
  template: '<ng-content></ng-content>',
556
780
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
557
- inputs: ['clickable', 'deletable', 'disabled', 'icon', 'label', 'selectable', 'selected', 'tone', 'variant'],
781
+ inputs: ['clickable', 'deletable', 'disabled', 'icon', { name: 'label', required: true }, 'selectable', 'selected', 'tone', 'variant'],
782
+ outputs: ['mdsChipClickLabel', 'mdsChipDelete', 'mdsChipSelect'],
783
+ standalone: false
558
784
  }]
559
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
785
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsChipClickLabel: [{
786
+ type: Output
787
+ }], mdsChipDelete: [{
788
+ type: Output
789
+ }], mdsChipSelect: [{
790
+ type: Output
791
+ }] } });
560
792
  let MdsDetails = class MdsDetails {
561
793
  z;
562
794
  el;
795
+ mdsDetailsChange = new EventEmitter();
563
796
  constructor(c, r, z) {
564
797
  this.z = z;
565
798
  c.detach();
566
799
  this.el = r.nativeElement;
567
- proxyOutputs(this, this.el, ['mdsDetailsChange']);
568
800
  }
569
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsDetails, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
570
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsDetails, selector: "mds-details", inputs: { opened: "opened" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
801
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsDetails, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
802
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsDetails, selector: "mds-details", inputs: { opened: "opened" }, outputs: { mdsDetailsChange: "mdsDetailsChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
571
803
  };
572
804
  MdsDetails = __decorate([
573
805
  ProxyCmp({
574
806
  inputs: ['opened']
575
807
  })
576
808
  ], MdsDetails);
577
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsDetails, decorators: [{
809
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsDetails, decorators: [{
578
810
  type: Component,
579
811
  args: [{
580
812
  selector: 'mds-details',
@@ -582,33 +814,75 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
582
814
  template: '<ng-content></ng-content>',
583
815
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
584
816
  inputs: ['opened'],
817
+ outputs: ['mdsDetailsChange'],
818
+ standalone: false
585
819
  }]
586
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
820
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsDetailsChange: [{
821
+ type: Output
822
+ }] } });
587
823
  let MdsDropdown = class MdsDropdown {
588
824
  z;
589
825
  el;
826
+ mdsDropdownVisible = new EventEmitter();
827
+ mdsDropdownHide = new EventEmitter();
828
+ mdsDropdownChange = new EventEmitter();
590
829
  constructor(c, r, z) {
591
830
  this.z = z;
592
831
  c.detach();
593
832
  this.el = r.nativeElement;
594
- proxyOutputs(this, this.el, ['mdsDropdownVisible', 'mdsDropdownHide', 'mdsDropdownChange']);
595
833
  }
596
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
597
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsDropdown, selector: "mds-dropdown", inputs: { arrow: "arrow", arrowPadding: "arrowPadding", autoPlacement: "autoPlacement", backdrop: "backdrop", flip: "flip", interaction: "interaction", offset: "offset", placement: "placement", shift: "shift", shiftPadding: "shiftPadding", smooth: "smooth", strategy: "strategy", target: "target", visible: "visible", zIndex: "zIndex" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
834
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
835
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsDropdown, selector: "mds-dropdown", inputs: { arrow: "arrow", arrowPadding: "arrowPadding", autoPlacement: "autoPlacement", backdrop: "backdrop", flip: "flip", interaction: "interaction", offset: "offset", placement: "placement", shift: "shift", shiftPadding: "shiftPadding", smooth: "smooth", strategy: "strategy", target: "target", visible: "visible", zIndex: "zIndex" }, outputs: { mdsDropdownVisible: "mdsDropdownVisible", mdsDropdownHide: "mdsDropdownHide", mdsDropdownChange: "mdsDropdownChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
598
836
  };
599
837
  MdsDropdown = __decorate([
600
838
  ProxyCmp({
601
839
  inputs: ['arrow', 'arrowPadding', 'autoPlacement', 'backdrop', 'flip', 'interaction', 'offset', 'placement', 'shift', 'shiftPadding', 'smooth', 'strategy', 'target', 'visible', 'zIndex']
602
840
  })
603
841
  ], MdsDropdown);
604
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsDropdown, decorators: [{
842
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsDropdown, decorators: [{
605
843
  type: Component,
606
844
  args: [{
607
845
  selector: 'mds-dropdown',
608
846
  changeDetection: ChangeDetectionStrategy.OnPush,
609
847
  template: '<ng-content></ng-content>',
610
848
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
611
- inputs: ['arrow', 'arrowPadding', 'autoPlacement', 'backdrop', 'flip', 'interaction', 'offset', 'placement', 'shift', 'shiftPadding', 'smooth', 'strategy', 'target', 'visible', 'zIndex'],
849
+ inputs: ['arrow', 'arrowPadding', 'autoPlacement', 'backdrop', 'flip', 'interaction', 'offset', 'placement', 'shift', 'shiftPadding', 'smooth', 'strategy', { name: 'target', required: true }, 'visible', 'zIndex'],
850
+ outputs: ['mdsDropdownVisible', 'mdsDropdownHide', 'mdsDropdownChange'],
851
+ standalone: false
852
+ }]
853
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsDropdownVisible: [{
854
+ type: Output
855
+ }], mdsDropdownHide: [{
856
+ type: Output
857
+ }], mdsDropdownChange: [{
858
+ type: Output
859
+ }] } });
860
+ let MdsEmoji = class MdsEmoji {
861
+ z;
862
+ el;
863
+ constructor(c, r, z) {
864
+ this.z = z;
865
+ c.detach();
866
+ this.el = r.nativeElement;
867
+ }
868
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsEmoji, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
869
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsEmoji, selector: "mds-emoji", inputs: { name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
870
+ };
871
+ MdsEmoji = __decorate([
872
+ ProxyCmp({
873
+ inputs: ['name'],
874
+ methods: ['agree', 'smile', 'disagree', 'startThinking', 'stopThinking', 'startBlinking', 'stopBlinking', 'stopFollowMouse', 'startFollowMouse']
875
+ })
876
+ ], MdsEmoji);
877
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsEmoji, decorators: [{
878
+ type: Component,
879
+ args: [{
880
+ selector: 'mds-emoji',
881
+ changeDetection: ChangeDetectionStrategy.OnPush,
882
+ template: '<ng-content></ng-content>',
883
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
884
+ inputs: ['name'],
885
+ standalone: false
612
886
  }]
613
887
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
614
888
  let MdsEntity = class MdsEntity {
@@ -619,15 +893,15 @@ let MdsEntity = class MdsEntity {
619
893
  c.detach();
620
894
  this.el = r.nativeElement;
621
895
  }
622
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsEntity, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
623
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsEntity, selector: "mds-entity", inputs: { await: "await", icon: "icon", initials: "initials", src: "src", tone: "tone", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
896
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsEntity, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
897
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsEntity, selector: "mds-entity", inputs: { await: "await", icon: "icon", initials: "initials", src: "src", tone: "tone", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
624
898
  };
625
899
  MdsEntity = __decorate([
626
900
  ProxyCmp({
627
901
  inputs: ['await', 'icon', 'initials', 'src', 'tone', 'variant']
628
902
  })
629
903
  ], MdsEntity);
630
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsEntity, decorators: [{
904
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsEntity, decorators: [{
631
905
  type: Component,
632
906
  args: [{
633
907
  selector: 'mds-entity',
@@ -635,19 +909,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
635
909
  template: '<ng-content></ng-content>',
636
910
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
637
911
  inputs: ['await', 'icon', 'initials', 'src', 'tone', 'variant'],
912
+ standalone: false
638
913
  }]
639
914
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
640
915
  let MdsFile = class MdsFile {
641
916
  z;
642
917
  el;
918
+ mdsFileDownload = new EventEmitter();
643
919
  constructor(c, r, z) {
644
920
  this.z = z;
645
921
  c.detach();
646
922
  this.el = r.nativeElement;
647
- proxyOutputs(this, this.el, ['mdsFileDownload']);
648
923
  }
649
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsFile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
650
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsFile, selector: "mds-file", inputs: { description: "description", filename: "filename", format: "format", preview: "preview", showDownloadedIcon: "showDownloadedIcon", suffix: "suffix" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
924
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsFile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
925
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsFile, selector: "mds-file", inputs: { description: "description", filename: "filename", format: "format", preview: "preview", showDownloadedIcon: "showDownloadedIcon", suffix: "suffix" }, outputs: { mdsFileDownload: "mdsFileDownload" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
651
926
  };
652
927
  MdsFile = __decorate([
653
928
  ProxyCmp({
@@ -655,7 +930,7 @@ MdsFile = __decorate([
655
930
  methods: ['updateLang']
656
931
  })
657
932
  ], MdsFile);
658
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsFile, decorators: [{
933
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsFile, decorators: [{
659
934
  type: Component,
660
935
  args: [{
661
936
  selector: 'mds-file',
@@ -663,19 +938,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
663
938
  template: '<ng-content></ng-content>',
664
939
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
665
940
  inputs: ['description', 'filename', 'format', 'preview', 'showDownloadedIcon', 'suffix'],
941
+ outputs: ['mdsFileDownload'],
942
+ standalone: false
666
943
  }]
667
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
944
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsFileDownload: [{
945
+ type: Output
946
+ }] } });
668
947
  let MdsFilePreview = class MdsFilePreview {
669
948
  z;
670
949
  el;
950
+ mdsFileDownload = new EventEmitter();
951
+ mdsFileDelete = new EventEmitter();
671
952
  constructor(c, r, z) {
672
953
  this.z = z;
673
954
  c.detach();
674
955
  this.el = r.nativeElement;
675
- proxyOutputs(this, this.el, ['mdsFileDownload', 'mdsFileDelete']);
676
956
  }
677
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsFilePreview, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
678
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsFilePreview, selector: "mds-file-preview", inputs: { deletable: "deletable", description: "description", downloadable: "downloadable", filename: "filename", filesize: "filesize", format: "format", icon: "icon", message: "message", src: "src", suffix: "suffix", truncate: "truncate", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
957
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsFilePreview, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
958
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsFilePreview, selector: "mds-file-preview", inputs: { deletable: "deletable", description: "description", downloadable: "downloadable", filename: "filename", filesize: "filesize", format: "format", icon: "icon", message: "message", src: "src", suffix: "suffix", truncate: "truncate", variant: "variant" }, outputs: { mdsFileDownload: "mdsFileDownload", mdsFileDelete: "mdsFileDelete" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
679
959
  };
680
960
  MdsFilePreview = __decorate([
681
961
  ProxyCmp({
@@ -683,34 +963,40 @@ MdsFilePreview = __decorate([
683
963
  methods: ['updateLang']
684
964
  })
685
965
  ], MdsFilePreview);
686
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsFilePreview, decorators: [{
966
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsFilePreview, decorators: [{
687
967
  type: Component,
688
968
  args: [{
689
969
  selector: 'mds-file-preview',
690
970
  changeDetection: ChangeDetectionStrategy.OnPush,
691
971
  template: '<ng-content></ng-content>',
692
972
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
693
- inputs: ['deletable', 'description', 'downloadable', 'filename', 'filesize', 'format', 'icon', 'message', 'src', 'suffix', 'truncate', 'variant'],
973
+ inputs: ['deletable', 'description', 'downloadable', { name: 'filename', required: true }, 'filesize', 'format', 'icon', 'message', 'src', 'suffix', 'truncate', 'variant'],
974
+ outputs: ['mdsFileDownload', 'mdsFileDelete'],
975
+ standalone: false
694
976
  }]
695
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
977
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsFileDownload: [{
978
+ type: Output
979
+ }], mdsFileDelete: [{
980
+ type: Output
981
+ }] } });
696
982
  let MdsFilter = class MdsFilter {
697
983
  z;
698
984
  el;
985
+ mdsFilterChange = new EventEmitter();
699
986
  constructor(c, r, z) {
700
987
  this.z = z;
701
988
  c.detach();
702
989
  this.el = r.nativeElement;
703
- proxyOutputs(this, this.el, ['mdsFilterChange']);
704
990
  }
705
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsFilter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
706
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsFilter, selector: "mds-filter", inputs: { autoReset: "autoReset", label: "label", multiple: "multiple", reset: "reset" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
991
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsFilter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
992
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsFilter, selector: "mds-filter", inputs: { autoReset: "autoReset", label: "label", multiple: "multiple", reset: "reset" }, outputs: { mdsFilterChange: "mdsFilterChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
707
993
  };
708
994
  MdsFilter = __decorate([
709
995
  ProxyCmp({
710
996
  inputs: ['autoReset', 'label', 'multiple', 'reset']
711
997
  })
712
998
  ], MdsFilter);
713
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsFilter, decorators: [{
999
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsFilter, decorators: [{
714
1000
  type: Component,
715
1001
  args: [{
716
1002
  selector: 'mds-filter',
@@ -718,26 +1004,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
718
1004
  template: '<ng-content></ng-content>',
719
1005
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
720
1006
  inputs: ['autoReset', 'label', 'multiple', 'reset'],
1007
+ outputs: ['mdsFilterChange'],
1008
+ standalone: false
721
1009
  }]
722
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1010
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsFilterChange: [{
1011
+ type: Output
1012
+ }] } });
723
1013
  let MdsFilterItem = class MdsFilterItem {
724
1014
  z;
725
1015
  el;
1016
+ mdsFilterItemSelect = new EventEmitter();
726
1017
  constructor(c, r, z) {
727
1018
  this.z = z;
728
1019
  c.detach();
729
1020
  this.el = r.nativeElement;
730
- proxyOutputs(this, this.el, ['mdsFilterItemSelect']);
731
1021
  }
732
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsFilterItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
733
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsFilterItem, selector: "mds-filter-item", inputs: { count: "count", disabled: "disabled", icon: "icon", label: "label", selected: "selected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1022
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsFilterItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1023
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsFilterItem, selector: "mds-filter-item", inputs: { count: "count", disabled: "disabled", icon: "icon", label: "label", selected: "selected", value: "value" }, outputs: { mdsFilterItemSelect: "mdsFilterItemSelect" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
734
1024
  };
735
1025
  MdsFilterItem = __decorate([
736
1026
  ProxyCmp({
737
1027
  inputs: ['count', 'disabled', 'icon', 'label', 'selected', 'value']
738
1028
  })
739
1029
  ], MdsFilterItem);
740
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsFilterItem, decorators: [{
1030
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsFilterItem, decorators: [{
741
1031
  type: Component,
742
1032
  args: [{
743
1033
  selector: 'mds-filter-item',
@@ -745,19 +1035,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
745
1035
  template: '<ng-content></ng-content>',
746
1036
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
747
1037
  inputs: ['count', 'disabled', 'icon', 'label', 'selected', 'value'],
1038
+ outputs: ['mdsFilterItemSelect'],
1039
+ standalone: false
748
1040
  }]
749
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1041
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsFilterItemSelect: [{
1042
+ type: Output
1043
+ }] } });
750
1044
  let MdsHeader = class MdsHeader {
751
1045
  z;
752
1046
  el;
1047
+ mdsHeaderClose = new EventEmitter();
1048
+ mdsHeaderVisibilityChange = new EventEmitter();
753
1049
  constructor(c, r, z) {
754
1050
  this.z = z;
755
1051
  c.detach();
756
1052
  this.el = r.nativeElement;
757
- proxyOutputs(this, this.el, ['mdsHeaderClose', 'mdsHeaderVisibilityChange']);
758
1053
  }
759
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
760
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsHeader, selector: "mds-header", inputs: { appearance: "appearance", appearanceSet: "appearanceSet", autoHide: "autoHide", backdrop: "backdrop", menu: "menu", nav: "nav", threshold: "threshold", visibility: "visibility" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1054
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1055
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsHeader, selector: "mds-header", inputs: { appearance: "appearance", appearanceSet: "appearanceSet", autoHide: "autoHide", backdrop: "backdrop", menu: "menu", nav: "nav", threshold: "threshold", visibility: "visibility" }, outputs: { mdsHeaderClose: "mdsHeaderClose", mdsHeaderVisibilityChange: "mdsHeaderVisibilityChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
761
1056
  };
762
1057
  MdsHeader = __decorate([
763
1058
  ProxyCmp({
@@ -765,7 +1060,7 @@ MdsHeader = __decorate([
765
1060
  methods: ['setOpened']
766
1061
  })
767
1062
  ], MdsHeader);
768
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsHeader, decorators: [{
1063
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsHeader, decorators: [{
769
1064
  type: Component,
770
1065
  args: [{
771
1066
  selector: 'mds-header',
@@ -773,19 +1068,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
773
1068
  template: '<ng-content></ng-content>',
774
1069
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
775
1070
  inputs: ['appearance', 'appearanceSet', 'autoHide', 'backdrop', 'menu', 'nav', 'threshold', 'visibility'],
776
- }]
777
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1071
+ outputs: ['mdsHeaderClose', 'mdsHeaderVisibilityChange'],
1072
+ standalone: false
1073
+ }]
1074
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsHeaderClose: [{
1075
+ type: Output
1076
+ }], mdsHeaderVisibilityChange: [{
1077
+ type: Output
1078
+ }] } });
778
1079
  let MdsHeaderBar = class MdsHeaderBar {
779
1080
  z;
780
1081
  el;
1082
+ mdsHeaderBarOpen = new EventEmitter();
781
1083
  constructor(c, r, z) {
782
1084
  this.z = z;
783
1085
  c.detach();
784
1086
  this.el = r.nativeElement;
785
- proxyOutputs(this, this.el, ['mdsHeaderBarOpen']);
786
1087
  }
787
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsHeaderBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
788
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsHeaderBar, selector: "mds-header-bar", inputs: { menu: "menu", nav: "nav" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1088
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsHeaderBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1089
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsHeaderBar, selector: "mds-header-bar", inputs: { menu: "menu", nav: "nav" }, outputs: { mdsHeaderBarOpen: "mdsHeaderBarOpen" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
789
1090
  };
790
1091
  MdsHeaderBar = __decorate([
791
1092
  ProxyCmp({
@@ -793,7 +1094,7 @@ MdsHeaderBar = __decorate([
793
1094
  methods: ['setOpened']
794
1095
  })
795
1096
  ], MdsHeaderBar);
796
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsHeaderBar, decorators: [{
1097
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsHeaderBar, decorators: [{
797
1098
  type: Component,
798
1099
  args: [{
799
1100
  selector: 'mds-header-bar',
@@ -801,8 +1102,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
801
1102
  template: '<ng-content></ng-content>',
802
1103
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
803
1104
  inputs: ['menu', 'nav'],
1105
+ outputs: ['mdsHeaderBarOpen'],
1106
+ standalone: false
804
1107
  }]
805
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1108
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsHeaderBarOpen: [{
1109
+ type: Output
1110
+ }] } });
806
1111
  let MdsHelp = class MdsHelp {
807
1112
  z;
808
1113
  el;
@@ -811,15 +1116,15 @@ let MdsHelp = class MdsHelp {
811
1116
  c.detach();
812
1117
  this.el = r.nativeElement;
813
1118
  }
814
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsHelp, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
815
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsHelp, selector: "mds-help", inputs: { autoPlacement: "autoPlacement", icon: "icon", placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1119
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsHelp, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1120
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsHelp, selector: "mds-help", inputs: { autoPlacement: "autoPlacement", icon: "icon", placement: "placement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
816
1121
  };
817
1122
  MdsHelp = __decorate([
818
1123
  ProxyCmp({
819
1124
  inputs: ['autoPlacement', 'icon', 'placement']
820
1125
  })
821
1126
  ], MdsHelp);
822
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsHelp, decorators: [{
1127
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsHelp, decorators: [{
823
1128
  type: Component,
824
1129
  args: [{
825
1130
  selector: 'mds-help',
@@ -827,6 +1132,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
827
1132
  template: '<ng-content></ng-content>',
828
1133
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
829
1134
  inputs: ['autoPlacement', 'icon', 'placement'],
1135
+ standalone: false
830
1136
  }]
831
1137
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
832
1138
  let MdsHorizontalScroll = class MdsHorizontalScroll {
@@ -837,22 +1143,23 @@ let MdsHorizontalScroll = class MdsHorizontalScroll {
837
1143
  c.detach();
838
1144
  this.el = r.nativeElement;
839
1145
  }
840
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsHorizontalScroll, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
841
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsHorizontalScroll, selector: "mds-horizontal-scroll", inputs: { controls: "controls", scrollbar: "scrollbar", snap: "snap" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1146
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsHorizontalScroll, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1147
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsHorizontalScroll, selector: "mds-horizontal-scroll", inputs: { controls: "controls", navigation: "navigation", snap: "snap" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
842
1148
  };
843
1149
  MdsHorizontalScroll = __decorate([
844
1150
  ProxyCmp({
845
- inputs: ['controls', 'scrollbar', 'snap']
1151
+ inputs: ['controls', 'navigation', 'snap']
846
1152
  })
847
1153
  ], MdsHorizontalScroll);
848
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsHorizontalScroll, decorators: [{
1154
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsHorizontalScroll, decorators: [{
849
1155
  type: Component,
850
1156
  args: [{
851
1157
  selector: 'mds-horizontal-scroll',
852
1158
  changeDetection: ChangeDetectionStrategy.OnPush,
853
1159
  template: '<ng-content></ng-content>',
854
1160
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
855
- inputs: ['controls', 'scrollbar', 'snap'],
1161
+ inputs: ['controls', 'navigation', 'snap'],
1162
+ standalone: false
856
1163
  }]
857
1164
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
858
1165
  let MdsHr = class MdsHr {
@@ -863,13 +1170,13 @@ let MdsHr = class MdsHr {
863
1170
  c.detach();
864
1171
  this.el = r.nativeElement;
865
1172
  }
866
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsHr, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
867
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsHr, selector: "mds-hr", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1173
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsHr, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1174
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsHr, selector: "mds-hr", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
868
1175
  };
869
1176
  MdsHr = __decorate([
870
1177
  ProxyCmp({})
871
1178
  ], MdsHr);
872
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsHr, decorators: [{
1179
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsHr, decorators: [{
873
1180
  type: Component,
874
1181
  args: [{
875
1182
  selector: 'mds-hr',
@@ -877,6 +1184,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
877
1184
  template: '<ng-content></ng-content>',
878
1185
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
879
1186
  inputs: [],
1187
+ standalone: false
880
1188
  }]
881
1189
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
882
1190
  let MdsIcon = class MdsIcon {
@@ -887,8 +1195,8 @@ let MdsIcon = class MdsIcon {
887
1195
  c.detach();
888
1196
  this.el = r.nativeElement;
889
1197
  }
890
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
891
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsIcon, selector: "mds-icon", inputs: { name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1198
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1199
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsIcon, selector: "mds-icon", inputs: { name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
892
1200
  };
893
1201
  MdsIcon = __decorate([
894
1202
  ProxyCmp({
@@ -896,27 +1204,29 @@ MdsIcon = __decorate([
896
1204
  methods: ['setSvgPath']
897
1205
  })
898
1206
  ], MdsIcon);
899
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsIcon, decorators: [{
1207
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsIcon, decorators: [{
900
1208
  type: Component,
901
1209
  args: [{
902
1210
  selector: 'mds-icon',
903
1211
  changeDetection: ChangeDetectionStrategy.OnPush,
904
1212
  template: '<ng-content></ng-content>',
905
1213
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
906
- inputs: ['name'],
1214
+ inputs: [{ name: 'name', required: true }],
1215
+ standalone: false
907
1216
  }]
908
1217
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
909
1218
  let MdsImg = class MdsImg {
910
1219
  z;
911
1220
  el;
1221
+ mdsImgLoadError = new EventEmitter();
1222
+ mdsImgLoadSuccess = new EventEmitter();
912
1223
  constructor(c, r, z) {
913
1224
  this.z = z;
914
1225
  c.detach();
915
1226
  this.el = r.nativeElement;
916
- proxyOutputs(this, this.el, ['mdsImgLoadError', 'mdsImgLoadSuccess']);
917
1227
  }
918
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsImg, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
919
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsImg, selector: "mds-img", inputs: { alt: "alt", crossorigin: "crossorigin", height: "height", loading: "loading", referrerpolicy: "referrerpolicy", sizes: "sizes", src: "src", srcset: "srcset", srcsetConsumption: "srcsetConsumption", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1228
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsImg, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1229
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsImg, selector: "mds-img", inputs: { alt: "alt", crossorigin: "crossorigin", height: "height", loading: "loading", referrerpolicy: "referrerpolicy", sizes: "sizes", src: "src", srcset: "srcset", srcsetConsumption: "srcsetConsumption", width: "width" }, outputs: { mdsImgLoadError: "mdsImgLoadError", mdsImgLoadSuccess: "mdsImgLoadSuccess" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
920
1230
  };
921
1231
  MdsImg = __decorate([
922
1232
  ProxyCmp({
@@ -924,7 +1234,7 @@ MdsImg = __decorate([
924
1234
  methods: ['updateLang']
925
1235
  })
926
1236
  ], MdsImg);
927
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsImg, decorators: [{
1237
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsImg, decorators: [{
928
1238
  type: Component,
929
1239
  args: [{
930
1240
  selector: 'mds-img',
@@ -932,34 +1242,156 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
932
1242
  template: '<ng-content></ng-content>',
933
1243
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
934
1244
  inputs: ['alt', 'crossorigin', 'height', 'loading', 'referrerpolicy', 'sizes', 'src', 'srcset', 'srcsetConsumption', 'width'],
935
- }]
936
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1245
+ outputs: ['mdsImgLoadError', 'mdsImgLoadSuccess'],
1246
+ standalone: false
1247
+ }]
1248
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsImgLoadError: [{
1249
+ type: Output
1250
+ }], mdsImgLoadSuccess: [{
1251
+ type: Output
1252
+ }] } });
937
1253
  let MdsInput = class MdsInput {
938
1254
  z;
939
1255
  el;
1256
+ mdsInputChange = new EventEmitter();
1257
+ mdsInputKeydown = new EventEmitter();
1258
+ mdsInputBlur = new EventEmitter();
1259
+ mdsInputFocus = new EventEmitter();
1260
+ mdsInputSpeechEnd = new EventEmitter();
1261
+ mdsInputValidation = new EventEmitter();
940
1262
  constructor(c, r, z) {
941
1263
  this.z = z;
942
1264
  c.detach();
943
1265
  this.el = r.nativeElement;
944
- proxyOutputs(this, this.el, ['mdsInputChange', 'mdsInputKeydown', 'mdsInputBlur', 'mdsInputFocus']);
945
1266
  }
946
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
947
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsInput, selector: "mds-input", inputs: { autocomplete: "autocomplete", autofocus: "autofocus", await: "await", controlDecreaseLabel: "controlDecreaseLabel", controlIncreaseLabel: "controlIncreaseLabel", controlsIcon: "controlsIcon", controlsLayout: "controlsLayout", datalist: "datalist", disabled: "disabled", icon: "icon", max: "max", maxlength: "maxlength", min: "min", minlength: "minlength", name: "name", pattern: "pattern", placeholder: "placeholder", readonly: "readonly", required: "required", step: "step", tip: "tip", type: "type", typography: "typography", value: "value", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1267
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1268
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsInput, selector: "mds-input", inputs: { autocomplete: "autocomplete", autofocus: "autofocus", await: "await", controlsIcon: "controlsIcon", controlsLayout: "controlsLayout", datalist: "datalist", disabled: "disabled", icon: "icon", max: "max", maxlength: "maxlength", mic: "mic", min: "min", minlength: "minlength", name: "name", pattern: "pattern", placeholder: "placeholder", readonly: "readonly", required: "required", step: "step", tip: "tip", type: "type", typography: "typography", value: "value", variant: "variant" }, outputs: { mdsInputChange: "mdsInputChange", mdsInputKeydown: "mdsInputKeydown", mdsInputBlur: "mdsInputBlur", mdsInputFocus: "mdsInputFocus", mdsInputSpeechEnd: "mdsInputSpeechEnd", mdsInputValidation: "mdsInputValidation" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
948
1269
  };
949
1270
  MdsInput = __decorate([
950
1271
  ProxyCmp({
951
- inputs: ['autocomplete', 'autofocus', 'await', 'controlDecreaseLabel', 'controlIncreaseLabel', 'controlsIcon', 'controlsLayout', 'datalist', 'disabled', 'icon', 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'step', 'tip', 'type', 'typography', 'value', 'variant'],
952
- methods: ['updateLang', 'setFocus', 'getInputElement']
1272
+ inputs: ['autocomplete', 'autofocus', 'await', 'controlsIcon', 'controlsLayout', 'datalist', 'disabled', 'icon', 'max', 'maxlength', 'mic', 'min', 'minlength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'step', 'tip', 'type', 'typography', 'value', 'variant'],
1273
+ methods: ['updateLang', 'addValidator', 'removeValidator', 'hasValidator', 'getErrors', 'setFocus', 'getInputElement']
953
1274
  })
954
1275
  ], MdsInput);
955
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsInput, decorators: [{
1276
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsInput, decorators: [{
956
1277
  type: Component,
957
1278
  args: [{
958
1279
  selector: 'mds-input',
959
1280
  changeDetection: ChangeDetectionStrategy.OnPush,
960
1281
  template: '<ng-content></ng-content>',
961
1282
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
962
- inputs: ['autocomplete', 'autofocus', 'await', 'controlDecreaseLabel', 'controlIncreaseLabel', 'controlsIcon', 'controlsLayout', 'datalist', 'disabled', 'icon', 'max', 'maxlength', 'min', 'minlength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'step', 'tip', 'type', 'typography', 'value', 'variant'],
1283
+ inputs: ['autocomplete', 'autofocus', 'await', 'controlsIcon', 'controlsLayout', 'datalist', 'disabled', 'icon', 'max', 'maxlength', 'mic', 'min', 'minlength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'step', 'tip', 'type', 'typography', 'value', 'variant'],
1284
+ outputs: ['mdsInputChange', 'mdsInputKeydown', 'mdsInputBlur', 'mdsInputFocus', 'mdsInputSpeechEnd', 'mdsInputValidation'],
1285
+ standalone: false
1286
+ }]
1287
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsInputChange: [{
1288
+ type: Output
1289
+ }], mdsInputKeydown: [{
1290
+ type: Output
1291
+ }], mdsInputBlur: [{
1292
+ type: Output
1293
+ }], mdsInputFocus: [{
1294
+ type: Output
1295
+ }], mdsInputSpeechEnd: [{
1296
+ type: Output
1297
+ }], mdsInputValidation: [{
1298
+ type: Output
1299
+ }] } });
1300
+ let MdsInputDate = class MdsInputDate {
1301
+ z;
1302
+ el;
1303
+ mdsInputValidation = new EventEmitter();
1304
+ mdsInputDateSelect = new EventEmitter();
1305
+ constructor(c, r, z) {
1306
+ this.z = z;
1307
+ c.detach();
1308
+ this.el = r.nativeElement;
1309
+ }
1310
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsInputDate, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1311
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsInputDate, selector: "mds-input-date", inputs: { delay: "delay", disabled: "disabled", max: "max", min: "min", name: "name", readonly: "readonly", required: "required", value: "value", variant: "variant" }, outputs: { mdsInputValidation: "mdsInputValidation", mdsInputDateSelect: "mdsInputDateSelect" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1312
+ };
1313
+ MdsInputDate = __decorate([
1314
+ ProxyCmp({
1315
+ inputs: ['delay', 'disabled', 'max', 'min', 'name', 'readonly', 'required', 'value', 'variant'],
1316
+ methods: ['updateLang', 'focusInput', 'setValue', 'getErrors']
1317
+ })
1318
+ ], MdsInputDate);
1319
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsInputDate, decorators: [{
1320
+ type: Component,
1321
+ args: [{
1322
+ selector: 'mds-input-date',
1323
+ changeDetection: ChangeDetectionStrategy.OnPush,
1324
+ template: '<ng-content></ng-content>',
1325
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1326
+ inputs: ['delay', 'disabled', 'max', 'min', 'name', 'readonly', 'required', 'value', 'variant'],
1327
+ outputs: ['mdsInputValidation', 'mdsInputDateSelect'],
1328
+ standalone: false
1329
+ }]
1330
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsInputValidation: [{
1331
+ type: Output
1332
+ }], mdsInputDateSelect: [{
1333
+ type: Output
1334
+ }] } });
1335
+ let MdsInputDateRange = class MdsInputDateRange {
1336
+ z;
1337
+ el;
1338
+ mdsInputDateRangeSelect = new EventEmitter();
1339
+ mdsInputDateRangeValueChange = new EventEmitter();
1340
+ constructor(c, r, z) {
1341
+ this.z = z;
1342
+ c.detach();
1343
+ this.el = r.nativeElement;
1344
+ }
1345
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsInputDateRange, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1346
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsInputDateRange, selector: "mds-input-date-range", inputs: { delay: "delay", endDate: "endDate", max: "max", min: "min", name: "name", startDate: "startDate" }, outputs: { mdsInputDateRangeSelect: "mdsInputDateRangeSelect", mdsInputDateRangeValueChange: "mdsInputDateRangeValueChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1347
+ };
1348
+ MdsInputDateRange = __decorate([
1349
+ ProxyCmp({
1350
+ inputs: ['delay', 'endDate', 'max', 'min', 'name', 'startDate'],
1351
+ methods: ['updateLang', 'preselect']
1352
+ })
1353
+ ], MdsInputDateRange);
1354
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsInputDateRange, decorators: [{
1355
+ type: Component,
1356
+ args: [{
1357
+ selector: 'mds-input-date-range',
1358
+ changeDetection: ChangeDetectionStrategy.OnPush,
1359
+ template: '<ng-content></ng-content>',
1360
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1361
+ inputs: ['delay', 'endDate', 'max', 'min', 'name', 'startDate'],
1362
+ outputs: ['mdsInputDateRangeSelect', 'mdsInputDateRangeValueChange'],
1363
+ standalone: false
1364
+ }]
1365
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsInputDateRangeSelect: [{
1366
+ type: Output
1367
+ }], mdsInputDateRangeValueChange: [{
1368
+ type: Output
1369
+ }] } });
1370
+ let MdsInputDateRangePreselection = class MdsInputDateRangePreselection {
1371
+ z;
1372
+ el;
1373
+ constructor(c, r, z) {
1374
+ this.z = z;
1375
+ c.detach();
1376
+ this.el = r.nativeElement;
1377
+ }
1378
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsInputDateRangePreselection, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1379
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsInputDateRangePreselection, selector: "mds-input-date-range-preselection", inputs: { end: "end", selected: "selected", start: "start" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1380
+ };
1381
+ MdsInputDateRangePreselection = __decorate([
1382
+ ProxyCmp({
1383
+ inputs: ['end', 'selected', 'start']
1384
+ })
1385
+ ], MdsInputDateRangePreselection);
1386
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsInputDateRangePreselection, decorators: [{
1387
+ type: Component,
1388
+ args: [{
1389
+ selector: 'mds-input-date-range-preselection',
1390
+ changeDetection: ChangeDetectionStrategy.OnPush,
1391
+ template: '<ng-content></ng-content>',
1392
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1393
+ inputs: ['end', 'selected', { name: 'start', required: true }],
1394
+ standalone: false
963
1395
  }]
964
1396
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
965
1397
  let MdsInputField = class MdsInputField {
@@ -969,92 +1401,127 @@ let MdsInputField = class MdsInputField {
969
1401
  this.z = z;
970
1402
  c.detach();
971
1403
  this.el = r.nativeElement;
972
- proxyOutputs(this, this.el, ['mdsInputFieldChange', 'mdsInputFieldKeydown', 'mdsInputFieldBlur', 'mdsInputFieldFocus']);
973
1404
  }
974
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsInputField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
975
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsInputField, selector: "mds-input-field", inputs: { autocomplete: "autocomplete", autofocus: "autofocus", await: "await", controlsIcon: "controlsIcon", controlsLayout: "controlsLayout", disabled: "disabled", icon: "icon", label: "label", max: "max", maxlength: "maxlength", message: "message", min: "min", minlength: "minlength", name: "name", pattern: "pattern", placeholder: "placeholder", readonly: "readonly", required: "required", step: "step", tip: "tip", type: "type", typography: "typography", value: "value", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1405
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsInputField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1406
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsInputField, selector: "mds-input-field", inputs: { label: "label", message: "message", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
976
1407
  };
977
1408
  MdsInputField = __decorate([
978
1409
  ProxyCmp({
979
- inputs: ['autocomplete', 'autofocus', 'await', 'controlsIcon', 'controlsLayout', 'disabled', 'icon', 'label', 'max', 'maxlength', 'message', 'min', 'minlength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'step', 'tip', 'type', 'typography', 'value', 'variant'],
980
- methods: ['setFocus', 'getInputElement', 'addValidator', 'removeValidator', 'getErrors']
1410
+ inputs: ['label', 'message', 'variant']
981
1411
  })
982
1412
  ], MdsInputField);
983
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsInputField, decorators: [{
1413
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsInputField, decorators: [{
984
1414
  type: Component,
985
1415
  args: [{
986
1416
  selector: 'mds-input-field',
987
1417
  changeDetection: ChangeDetectionStrategy.OnPush,
988
1418
  template: '<ng-content></ng-content>',
989
1419
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
990
- inputs: ['autocomplete', 'autofocus', 'await', 'controlsIcon', 'controlsLayout', 'disabled', 'icon', 'label', 'max', 'maxlength', 'message', 'min', 'minlength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'step', 'tip', 'type', 'typography', 'value', 'variant'],
1420
+ inputs: ['label', 'message', 'variant'],
1421
+ standalone: false
1422
+ }]
1423
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1424
+ let MdsInputOtp = class MdsInputOtp {
1425
+ z;
1426
+ el;
1427
+ constructor(c, r, z) {
1428
+ this.z = z;
1429
+ c.detach();
1430
+ this.el = r.nativeElement;
1431
+ }
1432
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsInputOtp, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1433
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsInputOtp, selector: "mds-input-otp", inputs: { autosubmit: "autosubmit", length: "length", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1434
+ };
1435
+ MdsInputOtp = __decorate([
1436
+ ProxyCmp({
1437
+ inputs: ['autosubmit', 'length', 'value']
1438
+ })
1439
+ ], MdsInputOtp);
1440
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsInputOtp, decorators: [{
1441
+ type: Component,
1442
+ args: [{
1443
+ selector: 'mds-input-otp',
1444
+ changeDetection: ChangeDetectionStrategy.OnPush,
1445
+ template: '<ng-content></ng-content>',
1446
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1447
+ inputs: ['autosubmit', 'length', 'value'],
1448
+ standalone: false
991
1449
  }]
992
1450
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
993
1451
  let MdsInputRange = class MdsInputRange {
994
1452
  z;
995
1453
  el;
1454
+ mdsInputRangeChange = new EventEmitter();
996
1455
  constructor(c, r, z) {
997
1456
  this.z = z;
998
1457
  c.detach();
999
1458
  this.el = r.nativeElement;
1000
- proxyOutputs(this, this.el, ['mdsInputRangeChange']);
1001
1459
  }
1002
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsInputRange, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1003
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsInputRange, selector: "mds-input-range", inputs: { disabled: "disabled", max: "max", min: "min", step: "step", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1460
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsInputRange, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1461
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsInputRange, selector: "mds-input-range", inputs: { disabled: "disabled", formatValue: "formatValue", max: "max", min: "min", name: "name", step: "step", value: "value" }, outputs: { mdsInputRangeChange: "mdsInputRangeChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1004
1462
  };
1005
1463
  MdsInputRange = __decorate([
1006
1464
  ProxyCmp({
1007
- inputs: ['disabled', 'max', 'min', 'step', 'value']
1465
+ inputs: ['disabled', 'formatValue', 'max', 'min', 'name', 'step', 'value']
1008
1466
  })
1009
1467
  ], MdsInputRange);
1010
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsInputRange, decorators: [{
1468
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsInputRange, decorators: [{
1011
1469
  type: Component,
1012
1470
  args: [{
1013
1471
  selector: 'mds-input-range',
1014
1472
  changeDetection: ChangeDetectionStrategy.OnPush,
1015
1473
  template: '<ng-content></ng-content>',
1016
1474
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1017
- inputs: ['disabled', 'max', 'min', 'step', 'value'],
1475
+ inputs: ['disabled', 'formatValue', 'max', 'min', 'name', 'step', 'value'],
1476
+ outputs: ['mdsInputRangeChange'],
1477
+ standalone: false
1018
1478
  }]
1019
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1479
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsInputRangeChange: [{
1480
+ type: Output
1481
+ }] } });
1020
1482
  let MdsInputSelect = class MdsInputSelect {
1021
1483
  z;
1022
1484
  el;
1485
+ mdsInputSelectChange = new EventEmitter();
1023
1486
  constructor(c, r, z) {
1024
1487
  this.z = z;
1025
1488
  c.detach();
1026
1489
  this.el = r.nativeElement;
1027
- proxyOutputs(this, this.el, ['mdsInputSelectChange']);
1028
1490
  }
1029
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsInputSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1030
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsInputSelect, selector: "mds-input-select", inputs: { autoFocus: "autoFocus", autocomplete: "autocomplete", disabled: "disabled", multiple: "multiple", name: "name", placeholder: "placeholder", required: "required", size: "size", value: "value", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1491
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsInputSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1492
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsInputSelect, selector: "mds-input-select", inputs: { autoFocus: "autoFocus", autocomplete: "autocomplete", defaultValue: "defaultValue", disabled: "disabled", multiple: "multiple", name: "name", placeholder: "placeholder", required: "required", size: "size", value: "value", variant: "variant" }, outputs: { mdsInputSelectChange: "mdsInputSelectChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1031
1493
  };
1032
1494
  MdsInputSelect = __decorate([
1033
1495
  ProxyCmp({
1034
- inputs: ['autoFocus', 'autocomplete', 'disabled', 'multiple', 'name', 'placeholder', 'required', 'size', 'value', 'variant']
1496
+ inputs: ['autoFocus', 'autocomplete', 'defaultValue', 'disabled', 'multiple', 'name', 'placeholder', 'required', 'size', 'value', 'variant'],
1497
+ methods: ['updateLang', 'setValue']
1035
1498
  })
1036
1499
  ], MdsInputSelect);
1037
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsInputSelect, decorators: [{
1500
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsInputSelect, decorators: [{
1038
1501
  type: Component,
1039
1502
  args: [{
1040
1503
  selector: 'mds-input-select',
1041
1504
  changeDetection: ChangeDetectionStrategy.OnPush,
1042
1505
  template: '<ng-content></ng-content>',
1043
1506
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1044
- inputs: ['autoFocus', 'autocomplete', 'disabled', 'multiple', 'name', 'placeholder', 'required', 'size', 'value', 'variant'],
1507
+ inputs: ['autoFocus', 'autocomplete', 'defaultValue', 'disabled', 'multiple', 'name', 'placeholder', 'required', 'size', 'value', 'variant'],
1508
+ outputs: ['mdsInputSelectChange'],
1509
+ standalone: false
1045
1510
  }]
1046
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1511
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsInputSelectChange: [{
1512
+ type: Output
1513
+ }] } });
1047
1514
  let MdsInputSwitch = class MdsInputSwitch {
1048
1515
  z;
1049
1516
  el;
1517
+ mdsInputSwitchChange = new EventEmitter();
1050
1518
  constructor(c, r, z) {
1051
1519
  this.z = z;
1052
1520
  c.detach();
1053
1521
  this.el = r.nativeElement;
1054
- proxyOutputs(this, this.el, ['mdsInputSwitchChange']);
1055
1522
  }
1056
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsInputSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1057
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsInputSwitch, selector: "mds-input-switch", inputs: { autofocus: "autofocus", checked: "checked", disabled: "disabled", explicit: "explicit", icon: "icon", indeterminate: "indeterminate", name: "name", size: "size", type: "type", typography: "typography", value: "value", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1523
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsInputSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1524
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsInputSwitch, selector: "mds-input-switch", inputs: { autofocus: "autofocus", checked: "checked", disabled: "disabled", explicit: "explicit", icon: "icon", indeterminate: "indeterminate", name: "name", size: "size", type: "type", typography: "typography", value: "value", variant: "variant" }, outputs: { mdsInputSwitchChange: "mdsInputSwitchChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1058
1525
  };
1059
1526
  MdsInputSwitch = __decorate([
1060
1527
  ProxyCmp({
@@ -1062,7 +1529,7 @@ MdsInputSwitch = __decorate([
1062
1529
  methods: ['updateLang']
1063
1530
  })
1064
1531
  ], MdsInputSwitch);
1065
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsInputSwitch, decorators: [{
1532
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsInputSwitch, decorators: [{
1066
1533
  type: Component,
1067
1534
  args: [{
1068
1535
  selector: 'mds-input-switch',
@@ -1070,8 +1537,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1070
1537
  template: '<ng-content></ng-content>',
1071
1538
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1072
1539
  inputs: ['autofocus', 'checked', 'disabled', 'explicit', 'icon', 'indeterminate', 'name', 'size', 'type', 'typography', 'value', 'variant'],
1540
+ outputs: ['mdsInputSwitchChange'],
1541
+ standalone: false
1073
1542
  }]
1074
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1543
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsInputSwitchChange: [{
1544
+ type: Output
1545
+ }] } });
1075
1546
  let MdsInputTip = class MdsInputTip {
1076
1547
  z;
1077
1548
  el;
@@ -1080,15 +1551,15 @@ let MdsInputTip = class MdsInputTip {
1080
1551
  c.detach();
1081
1552
  this.el = r.nativeElement;
1082
1553
  }
1083
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsInputTip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1084
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsInputTip, selector: "mds-input-tip", inputs: { active: "active", position: "position" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1554
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsInputTip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1555
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsInputTip, selector: "mds-input-tip", inputs: { active: "active", position: "position" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1085
1556
  };
1086
1557
  MdsInputTip = __decorate([
1087
1558
  ProxyCmp({
1088
1559
  inputs: ['active', 'position']
1089
1560
  })
1090
1561
  ], MdsInputTip);
1091
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsInputTip, decorators: [{
1562
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsInputTip, decorators: [{
1092
1563
  type: Component,
1093
1564
  args: [{
1094
1565
  selector: 'mds-input-tip',
@@ -1096,6 +1567,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1096
1567
  template: '<ng-content></ng-content>',
1097
1568
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1098
1569
  inputs: ['active', 'position'],
1570
+ standalone: false
1099
1571
  }]
1100
1572
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1101
1573
  let MdsInputTipItem = class MdsInputTipItem {
@@ -1106,8 +1578,8 @@ let MdsInputTipItem = class MdsInputTipItem {
1106
1578
  c.detach();
1107
1579
  this.el = r.nativeElement;
1108
1580
  }
1109
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsInputTipItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1110
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsInputTipItem, selector: "mds-input-tip-item", inputs: { expanded: "expanded", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1581
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsInputTipItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1582
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsInputTipItem, selector: "mds-input-tip-item", inputs: { expanded: "expanded", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1111
1583
  };
1112
1584
  MdsInputTipItem = __decorate([
1113
1585
  ProxyCmp({
@@ -1115,7 +1587,7 @@ MdsInputTipItem = __decorate([
1115
1587
  methods: ['updateLang']
1116
1588
  })
1117
1589
  ], MdsInputTipItem);
1118
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsInputTipItem, decorators: [{
1590
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsInputTipItem, decorators: [{
1119
1591
  type: Component,
1120
1592
  args: [{
1121
1593
  selector: 'mds-input-tip-item',
@@ -1123,36 +1595,41 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1123
1595
  template: '<ng-content></ng-content>',
1124
1596
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1125
1597
  inputs: ['expanded', 'variant'],
1598
+ standalone: false
1126
1599
  }]
1127
1600
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1128
1601
  let MdsInputUpload = class MdsInputUpload {
1129
1602
  z;
1130
1603
  el;
1604
+ mdsInputUploadChange = new EventEmitter();
1131
1605
  constructor(c, r, z) {
1132
1606
  this.z = z;
1133
1607
  c.detach();
1134
1608
  this.el = r.nativeElement;
1135
- proxyOutputs(this, this.el, ['mdsInputUploadChange']);
1136
1609
  }
1137
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsInputUpload, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1138
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsInputUpload, selector: "mds-input-upload", inputs: { accept: "accept", maxFileSize: "maxFileSize", maxFiles: "maxFiles", sort: "sort" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1610
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsInputUpload, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1611
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsInputUpload, selector: "mds-input-upload", inputs: { accept: "accept", initialValue: "initialValue", maxFileSize: "maxFileSize", maxFiles: "maxFiles", sort: "sort" }, outputs: { mdsInputUploadChange: "mdsInputUploadChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1139
1612
  };
1140
1613
  MdsInputUpload = __decorate([
1141
1614
  ProxyCmp({
1142
- inputs: ['accept', 'maxFileSize', 'maxFiles', 'sort'],
1143
- methods: ['updateLang', 'getFiles', 'getFilesError']
1615
+ inputs: ['accept', 'initialValue', 'maxFileSize', 'maxFiles', 'sort'],
1616
+ methods: ['updateLang', 'getFiles', 'getFilesError', 'reset']
1144
1617
  })
1145
1618
  ], MdsInputUpload);
1146
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsInputUpload, decorators: [{
1619
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsInputUpload, decorators: [{
1147
1620
  type: Component,
1148
1621
  args: [{
1149
1622
  selector: 'mds-input-upload',
1150
1623
  changeDetection: ChangeDetectionStrategy.OnPush,
1151
1624
  template: '<ng-content></ng-content>',
1152
1625
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1153
- inputs: ['accept', 'maxFileSize', 'maxFiles', 'sort'],
1626
+ inputs: ['accept', 'initialValue', 'maxFileSize', 'maxFiles', 'sort'],
1627
+ outputs: ['mdsInputUploadChange'],
1628
+ standalone: false
1154
1629
  }]
1155
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1630
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsInputUploadChange: [{
1631
+ type: Output
1632
+ }] } });
1156
1633
  let MdsKeyboard = class MdsKeyboard {
1157
1634
  z;
1158
1635
  el;
@@ -1161,8 +1638,8 @@ let MdsKeyboard = class MdsKeyboard {
1161
1638
  c.detach();
1162
1639
  this.el = r.nativeElement;
1163
1640
  }
1164
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsKeyboard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1165
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsKeyboard, selector: "mds-keyboard", inputs: { test: "test", try: "try" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1641
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsKeyboard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1642
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsKeyboard, selector: "mds-keyboard", inputs: { test: "test", try: "try" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1166
1643
  };
1167
1644
  MdsKeyboard = __decorate([
1168
1645
  ProxyCmp({
@@ -1170,7 +1647,7 @@ MdsKeyboard = __decorate([
1170
1647
  methods: ['updateLang']
1171
1648
  })
1172
1649
  ], MdsKeyboard);
1173
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsKeyboard, decorators: [{
1650
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsKeyboard, decorators: [{
1174
1651
  type: Component,
1175
1652
  args: [{
1176
1653
  selector: 'mds-keyboard',
@@ -1178,6 +1655,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1178
1655
  template: '<ng-content></ng-content>',
1179
1656
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1180
1657
  inputs: ['test', 'try'],
1658
+ standalone: false
1181
1659
  }]
1182
1660
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1183
1661
  let MdsKeyboardKey = class MdsKeyboardKey {
@@ -1188,8 +1666,8 @@ let MdsKeyboardKey = class MdsKeyboardKey {
1188
1666
  c.detach();
1189
1667
  this.el = r.nativeElement;
1190
1668
  }
1191
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsKeyboardKey, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1192
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsKeyboardKey, selector: "mds-keyboard-key", inputs: { name: "name", pressed: "pressed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1669
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsKeyboardKey, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1670
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsKeyboardKey, selector: "mds-keyboard-key", inputs: { name: "name", pressed: "pressed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1193
1671
  };
1194
1672
  MdsKeyboardKey = __decorate([
1195
1673
  ProxyCmp({
@@ -1197,7 +1675,7 @@ MdsKeyboardKey = __decorate([
1197
1675
  methods: ['updateLang']
1198
1676
  })
1199
1677
  ], MdsKeyboardKey);
1200
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsKeyboardKey, decorators: [{
1678
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsKeyboardKey, decorators: [{
1201
1679
  type: Component,
1202
1680
  args: [{
1203
1681
  selector: 'mds-keyboard-key',
@@ -1205,6 +1683,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1205
1683
  template: '<ng-content></ng-content>',
1206
1684
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1207
1685
  inputs: ['name', 'pressed'],
1686
+ standalone: false
1208
1687
  }]
1209
1688
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1210
1689
  let MdsKpi = class MdsKpi {
@@ -1215,13 +1694,13 @@ let MdsKpi = class MdsKpi {
1215
1694
  c.detach();
1216
1695
  this.el = r.nativeElement;
1217
1696
  }
1218
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsKpi, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1219
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsKpi, selector: "mds-kpi", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1697
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsKpi, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1698
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsKpi, selector: "mds-kpi", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1220
1699
  };
1221
1700
  MdsKpi = __decorate([
1222
1701
  ProxyCmp({})
1223
1702
  ], MdsKpi);
1224
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsKpi, decorators: [{
1703
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsKpi, decorators: [{
1225
1704
  type: Component,
1226
1705
  args: [{
1227
1706
  selector: 'mds-kpi',
@@ -1229,6 +1708,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1229
1708
  template: '<ng-content></ng-content>',
1230
1709
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1231
1710
  inputs: [],
1711
+ standalone: false
1232
1712
  }]
1233
1713
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1234
1714
  let MdsKpiItem = class MdsKpiItem {
@@ -1239,15 +1719,15 @@ let MdsKpiItem = class MdsKpiItem {
1239
1719
  c.detach();
1240
1720
  this.el = r.nativeElement;
1241
1721
  }
1242
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsKpiItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1243
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsKpiItem, selector: "mds-kpi-item", inputs: { description: "description", icon: "icon", label: "label", threshold: "threshold" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1722
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsKpiItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1723
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsKpiItem, selector: "mds-kpi-item", inputs: { description: "description", icon: "icon", label: "label", threshold: "threshold" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1244
1724
  };
1245
1725
  MdsKpiItem = __decorate([
1246
1726
  ProxyCmp({
1247
1727
  inputs: ['description', 'icon', 'label', 'threshold']
1248
1728
  })
1249
1729
  ], MdsKpiItem);
1250
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsKpiItem, decorators: [{
1730
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsKpiItem, decorators: [{
1251
1731
  type: Component,
1252
1732
  args: [{
1253
1733
  selector: 'mds-kpi-item',
@@ -1255,36 +1735,41 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1255
1735
  template: '<ng-content></ng-content>',
1256
1736
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1257
1737
  inputs: ['description', 'icon', 'label', 'threshold'],
1738
+ standalone: false
1258
1739
  }]
1259
1740
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1260
1741
  let MdsLabel = class MdsLabel {
1261
1742
  z;
1262
1743
  el;
1744
+ mdsLabelDelete = new EventEmitter();
1263
1745
  constructor(c, r, z) {
1264
1746
  this.z = z;
1265
1747
  c.detach();
1266
1748
  this.el = r.nativeElement;
1267
- proxyOutputs(this, this.el, ['mdsLabelDelete']);
1268
1749
  }
1269
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1270
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsLabel, selector: "mds-label", inputs: { deletable: "deletable", labelAction: "labelAction", tone: "tone", truncate: "truncate", typography: "typography", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1750
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1751
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsLabel, selector: "mds-label", inputs: { deletable: "deletable", label: "label", tone: "tone", truncate: "truncate", typography: "typography", variant: "variant" }, outputs: { mdsLabelDelete: "mdsLabelDelete" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1271
1752
  };
1272
1753
  MdsLabel = __decorate([
1273
1754
  ProxyCmp({
1274
- inputs: ['deletable', 'labelAction', 'tone', 'truncate', 'typography', 'variant'],
1755
+ inputs: ['deletable', 'label', 'tone', 'truncate', 'typography', 'variant'],
1275
1756
  methods: ['updateLang']
1276
1757
  })
1277
1758
  ], MdsLabel);
1278
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsLabel, decorators: [{
1759
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsLabel, decorators: [{
1279
1760
  type: Component,
1280
1761
  args: [{
1281
1762
  selector: 'mds-label',
1282
1763
  changeDetection: ChangeDetectionStrategy.OnPush,
1283
1764
  template: '<ng-content></ng-content>',
1284
1765
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1285
- inputs: ['deletable', 'labelAction', 'tone', 'truncate', 'typography', 'variant'],
1766
+ inputs: ['deletable', 'label', 'tone', 'truncate', 'typography', 'variant'],
1767
+ outputs: ['mdsLabelDelete'],
1768
+ standalone: false
1286
1769
  }]
1287
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1770
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsLabelDelete: [{
1771
+ type: Output
1772
+ }] } });
1288
1773
  let MdsList = class MdsList {
1289
1774
  z;
1290
1775
  el;
@@ -1293,13 +1778,13 @@ let MdsList = class MdsList {
1293
1778
  c.detach();
1294
1779
  this.el = r.nativeElement;
1295
1780
  }
1296
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1297
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsList, selector: "mds-list", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1781
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1782
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsList, selector: "mds-list", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1298
1783
  };
1299
1784
  MdsList = __decorate([
1300
1785
  ProxyCmp({})
1301
1786
  ], MdsList);
1302
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsList, decorators: [{
1787
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsList, decorators: [{
1303
1788
  type: Component,
1304
1789
  args: [{
1305
1790
  selector: 'mds-list',
@@ -1307,6 +1792,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1307
1792
  template: '<ng-content></ng-content>',
1308
1793
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1309
1794
  inputs: [],
1795
+ standalone: false
1310
1796
  }]
1311
1797
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1312
1798
  let MdsListItem = class MdsListItem {
@@ -1317,15 +1803,15 @@ let MdsListItem = class MdsListItem {
1317
1803
  c.detach();
1318
1804
  this.el = r.nativeElement;
1319
1805
  }
1320
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1321
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsListItem, selector: "mds-list-item", inputs: { icon: "icon", typography: "typography", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1806
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1807
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsListItem, selector: "mds-list-item", inputs: { icon: "icon", typography: "typography", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1322
1808
  };
1323
1809
  MdsListItem = __decorate([
1324
1810
  ProxyCmp({
1325
1811
  inputs: ['icon', 'typography', 'variant']
1326
1812
  })
1327
1813
  ], MdsListItem);
1328
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsListItem, decorators: [{
1814
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsListItem, decorators: [{
1329
1815
  type: Component,
1330
1816
  args: [{
1331
1817
  selector: 'mds-list-item',
@@ -1333,46 +1819,88 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1333
1819
  template: '<ng-content></ng-content>',
1334
1820
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1335
1821
  inputs: ['icon', 'typography', 'variant'],
1822
+ standalone: false
1823
+ }]
1824
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1825
+ let MdsMention = class MdsMention {
1826
+ z;
1827
+ el;
1828
+ constructor(c, r, z) {
1829
+ this.z = z;
1830
+ c.detach();
1831
+ this.el = r.nativeElement;
1832
+ }
1833
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsMention, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1834
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsMention, selector: "mds-mention", inputs: { icon: "icon", label: "label", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1835
+ };
1836
+ MdsMention = __decorate([
1837
+ ProxyCmp({
1838
+ inputs: ['icon', 'label', 'size']
1839
+ })
1840
+ ], MdsMention);
1841
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsMention, decorators: [{
1842
+ type: Component,
1843
+ args: [{
1844
+ selector: 'mds-mention',
1845
+ changeDetection: ChangeDetectionStrategy.OnPush,
1846
+ template: '<ng-content></ng-content>',
1847
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1848
+ inputs: ['icon', 'label', 'size'],
1849
+ standalone: false
1336
1850
  }]
1337
1851
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1338
1852
  let MdsModal = class MdsModal {
1339
1853
  z;
1340
1854
  el;
1855
+ mdsModalOpen = new EventEmitter();
1856
+ mdsModalShow = new EventEmitter();
1857
+ mdsModalClose = new EventEmitter();
1858
+ mdsModalHide = new EventEmitter();
1341
1859
  constructor(c, r, z) {
1342
1860
  this.z = z;
1343
1861
  c.detach();
1344
1862
  this.el = r.nativeElement;
1345
- proxyOutputs(this, this.el, ['mdsModalClose', 'mdsModalHide']);
1346
1863
  }
1347
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1348
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsModal, selector: "mds-modal", inputs: { animating: "animating", opened: "opened", overflow: "overflow", position: "position" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1864
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1865
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsModal, selector: "mds-modal", inputs: { animating: "animating", animation: "animation", backdrop: "backdrop", interaction: "interaction", opened: "opened", overflow: "overflow", position: "position" }, outputs: { mdsModalOpen: "mdsModalOpen", mdsModalShow: "mdsModalShow", mdsModalClose: "mdsModalClose", mdsModalHide: "mdsModalHide" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1349
1866
  };
1350
1867
  MdsModal = __decorate([
1351
1868
  ProxyCmp({
1352
- inputs: ['animating', 'opened', 'overflow', 'position']
1869
+ inputs: ['animating', 'animation', 'backdrop', 'interaction', 'opened', 'overflow', 'position'],
1870
+ methods: ['close']
1353
1871
  })
1354
1872
  ], MdsModal);
1355
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsModal, decorators: [{
1873
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsModal, decorators: [{
1356
1874
  type: Component,
1357
1875
  args: [{
1358
1876
  selector: 'mds-modal',
1359
1877
  changeDetection: ChangeDetectionStrategy.OnPush,
1360
1878
  template: '<ng-content></ng-content>',
1361
1879
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1362
- inputs: ['animating', 'opened', 'overflow', 'position'],
1880
+ inputs: ['animating', 'animation', 'backdrop', 'interaction', 'opened', 'overflow', 'position'],
1881
+ outputs: ['mdsModalOpen', 'mdsModalShow', 'mdsModalClose', 'mdsModalHide'],
1882
+ standalone: false
1363
1883
  }]
1364
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1884
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsModalOpen: [{
1885
+ type: Output
1886
+ }], mdsModalShow: [{
1887
+ type: Output
1888
+ }], mdsModalClose: [{
1889
+ type: Output
1890
+ }], mdsModalHide: [{
1891
+ type: Output
1892
+ }] } });
1365
1893
  let MdsNote = class MdsNote {
1366
1894
  z;
1367
1895
  el;
1896
+ mdsNoteDelete = new EventEmitter();
1368
1897
  constructor(c, r, z) {
1369
1898
  this.z = z;
1370
1899
  c.detach();
1371
1900
  this.el = r.nativeElement;
1372
- proxyOutputs(this, this.el, ['mdsNoteDelete']);
1373
1901
  }
1374
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsNote, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1375
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsNote, selector: "mds-note", inputs: { deletable: "deletable", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1902
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsNote, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1903
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsNote, selector: "mds-note", inputs: { deletable: "deletable", variant: "variant" }, outputs: { mdsNoteDelete: "mdsNoteDelete" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1376
1904
  };
1377
1905
  MdsNote = __decorate([
1378
1906
  ProxyCmp({
@@ -1380,7 +1908,7 @@ MdsNote = __decorate([
1380
1908
  methods: ['updateLang']
1381
1909
  })
1382
1910
  ], MdsNote);
1383
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsNote, decorators: [{
1911
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsNote, decorators: [{
1384
1912
  type: Component,
1385
1913
  args: [{
1386
1914
  selector: 'mds-note',
@@ -1388,8 +1916,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1388
1916
  template: '<ng-content></ng-content>',
1389
1917
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1390
1918
  inputs: ['deletable', 'variant'],
1919
+ outputs: ['mdsNoteDelete'],
1920
+ standalone: false
1391
1921
  }]
1392
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1922
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsNoteDelete: [{
1923
+ type: Output
1924
+ }] } });
1393
1925
  let MdsNotification = class MdsNotification {
1394
1926
  z;
1395
1927
  el;
@@ -1398,15 +1930,15 @@ let MdsNotification = class MdsNotification {
1398
1930
  c.detach();
1399
1931
  this.el = r.nativeElement;
1400
1932
  }
1401
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1402
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsNotification, selector: "mds-notification", inputs: { max: "max", strategy: "strategy", target: "target", value: "value", visible: "visible" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1933
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1934
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsNotification, selector: "mds-notification", inputs: { max: "max", strategy: "strategy", target: "target", value: "value", visible: "visible" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1403
1935
  };
1404
1936
  MdsNotification = __decorate([
1405
1937
  ProxyCmp({
1406
1938
  inputs: ['max', 'strategy', 'target', 'value', 'visible']
1407
1939
  })
1408
1940
  ], MdsNotification);
1409
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsNotification, decorators: [{
1941
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsNotification, decorators: [{
1410
1942
  type: Component,
1411
1943
  args: [{
1412
1944
  selector: 'mds-notification',
@@ -1414,26 +1946,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1414
1946
  template: '<ng-content></ng-content>',
1415
1947
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1416
1948
  inputs: ['max', 'strategy', 'target', 'value', 'visible'],
1949
+ standalone: false
1417
1950
  }]
1418
1951
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1419
1952
  let MdsPaginator = class MdsPaginator {
1420
1953
  z;
1421
1954
  el;
1955
+ mdsPaginatorChange = new EventEmitter();
1422
1956
  constructor(c, r, z) {
1423
1957
  this.z = z;
1424
1958
  c.detach();
1425
1959
  this.el = r.nativeElement;
1426
- proxyOutputs(this, this.el, ['mdsPaginatorChange']);
1427
1960
  }
1428
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPaginator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1429
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsPaginator, selector: "mds-paginator", inputs: { currentPage: "currentPage", pages: "pages" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1961
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPaginator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1962
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsPaginator, selector: "mds-paginator", inputs: { currentPage: "currentPage", pages: "pages" }, outputs: { mdsPaginatorChange: "mdsPaginatorChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1430
1963
  };
1431
1964
  MdsPaginator = __decorate([
1432
1965
  ProxyCmp({
1433
1966
  inputs: ['currentPage', 'pages']
1434
1967
  })
1435
1968
  ], MdsPaginator);
1436
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPaginator, decorators: [{
1969
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPaginator, decorators: [{
1437
1970
  type: Component,
1438
1971
  args: [{
1439
1972
  selector: 'mds-paginator',
@@ -1441,8 +1974,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1441
1974
  template: '<ng-content></ng-content>',
1442
1975
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1443
1976
  inputs: ['currentPage', 'pages'],
1977
+ outputs: ['mdsPaginatorChange'],
1978
+ standalone: false
1444
1979
  }]
1445
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1980
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsPaginatorChange: [{
1981
+ type: Output
1982
+ }] } });
1446
1983
  let MdsPaginatorItem = class MdsPaginatorItem {
1447
1984
  z;
1448
1985
  el;
@@ -1451,15 +1988,15 @@ let MdsPaginatorItem = class MdsPaginatorItem {
1451
1988
  c.detach();
1452
1989
  this.el = r.nativeElement;
1453
1990
  }
1454
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPaginatorItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1455
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsPaginatorItem, selector: "mds-paginator-item", inputs: { disabled: "disabled", icon: "icon", selected: "selected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1991
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPaginatorItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1992
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsPaginatorItem, selector: "mds-paginator-item", inputs: { disabled: "disabled", icon: "icon", selected: "selected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1456
1993
  };
1457
1994
  MdsPaginatorItem = __decorate([
1458
1995
  ProxyCmp({
1459
1996
  inputs: ['disabled', 'icon', 'selected']
1460
1997
  })
1461
1998
  ], MdsPaginatorItem);
1462
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPaginatorItem, decorators: [{
1999
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPaginatorItem, decorators: [{
1463
2000
  type: Component,
1464
2001
  args: [{
1465
2002
  selector: 'mds-paginator-item',
@@ -1467,6 +2004,35 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1467
2004
  template: '<ng-content></ng-content>',
1468
2005
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1469
2006
  inputs: ['disabled', 'icon', 'selected'],
2007
+ standalone: false
2008
+ }]
2009
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2010
+ let MdsPolicyAi = class MdsPolicyAi {
2011
+ z;
2012
+ el;
2013
+ constructor(c, r, z) {
2014
+ this.z = z;
2015
+ c.detach();
2016
+ this.el = r.nativeElement;
2017
+ }
2018
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPolicyAi, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2019
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsPolicyAi, selector: "mds-policy-ai", inputs: { description: "description", headline: "headline", href: "href", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2020
+ };
2021
+ MdsPolicyAi = __decorate([
2022
+ ProxyCmp({
2023
+ inputs: ['description', 'headline', 'href', 'variant'],
2024
+ methods: ['updateLang']
2025
+ })
2026
+ ], MdsPolicyAi);
2027
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPolicyAi, decorators: [{
2028
+ type: Component,
2029
+ args: [{
2030
+ selector: 'mds-policy-ai',
2031
+ changeDetection: ChangeDetectionStrategy.OnPush,
2032
+ template: '<ng-content></ng-content>',
2033
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2034
+ inputs: ['description', 'headline', 'href', 'variant'],
2035
+ standalone: false
1470
2036
  }]
1471
2037
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1472
2038
  let MdsPref = class MdsPref {
@@ -1477,148 +2043,168 @@ let MdsPref = class MdsPref {
1477
2043
  c.detach();
1478
2044
  this.el = r.nativeElement;
1479
2045
  }
1480
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPref, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1481
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsPref, selector: "mds-pref", inputs: { controller: "controller" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2046
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPref, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2047
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsPref, selector: "mds-pref", inputs: { controller: "controller", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1482
2048
  };
1483
2049
  MdsPref = __decorate([
1484
2050
  ProxyCmp({
1485
- inputs: ['controller'],
2051
+ inputs: ['controller', 'size'],
1486
2052
  methods: ['updateLang']
1487
2053
  })
1488
2054
  ], MdsPref);
1489
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPref, decorators: [{
2055
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPref, decorators: [{
1490
2056
  type: Component,
1491
2057
  args: [{
1492
2058
  selector: 'mds-pref',
1493
2059
  changeDetection: ChangeDetectionStrategy.OnPush,
1494
2060
  template: '<ng-content></ng-content>',
1495
2061
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1496
- inputs: ['controller'],
2062
+ inputs: ['controller', 'size'],
2063
+ standalone: false
1497
2064
  }]
1498
2065
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1499
2066
  let MdsPrefAnimation = class MdsPrefAnimation {
1500
2067
  z;
1501
2068
  el;
2069
+ mdsPrefChange = new EventEmitter();
1502
2070
  constructor(c, r, z) {
1503
2071
  this.z = z;
1504
2072
  c.detach();
1505
2073
  this.el = r.nativeElement;
1506
- proxyOutputs(this, this.el, ['mdsPrefChange']);
1507
2074
  }
1508
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPrefAnimation, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1509
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsPrefAnimation, selector: "mds-pref-animation", inputs: { mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2075
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPrefAnimation, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2076
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsPrefAnimation, selector: "mds-pref-animation", inputs: { mode: "mode", size: "size" }, outputs: { mdsPrefChange: "mdsPrefChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1510
2077
  };
1511
2078
  MdsPrefAnimation = __decorate([
1512
2079
  ProxyCmp({
1513
- inputs: ['mode'],
2080
+ inputs: ['mode', 'size'],
1514
2081
  methods: ['updateLang']
1515
2082
  })
1516
2083
  ], MdsPrefAnimation);
1517
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPrefAnimation, decorators: [{
2084
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPrefAnimation, decorators: [{
1518
2085
  type: Component,
1519
2086
  args: [{
1520
2087
  selector: 'mds-pref-animation',
1521
2088
  changeDetection: ChangeDetectionStrategy.OnPush,
1522
2089
  template: '<ng-content></ng-content>',
1523
2090
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1524
- inputs: ['mode'],
2091
+ inputs: ['mode', 'size'],
2092
+ outputs: ['mdsPrefChange'],
2093
+ standalone: false
1525
2094
  }]
1526
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2095
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsPrefChange: [{
2096
+ type: Output
2097
+ }] } });
1527
2098
  let MdsPrefConsumption = class MdsPrefConsumption {
1528
2099
  z;
1529
2100
  el;
2101
+ mdsPrefChange = new EventEmitter();
1530
2102
  constructor(c, r, z) {
1531
2103
  this.z = z;
1532
2104
  c.detach();
1533
2105
  this.el = r.nativeElement;
1534
- proxyOutputs(this, this.el, ['mdsPrefChange']);
1535
2106
  }
1536
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPrefConsumption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1537
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsPrefConsumption, selector: "mds-pref-consumption", inputs: { mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2107
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPrefConsumption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2108
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsPrefConsumption, selector: "mds-pref-consumption", inputs: { mode: "mode", size: "size" }, outputs: { mdsPrefChange: "mdsPrefChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1538
2109
  };
1539
2110
  MdsPrefConsumption = __decorate([
1540
2111
  ProxyCmp({
1541
- inputs: ['mode'],
2112
+ inputs: ['mode', 'size'],
1542
2113
  methods: ['updateLang']
1543
2114
  })
1544
2115
  ], MdsPrefConsumption);
1545
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPrefConsumption, decorators: [{
2116
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPrefConsumption, decorators: [{
1546
2117
  type: Component,
1547
2118
  args: [{
1548
2119
  selector: 'mds-pref-consumption',
1549
2120
  changeDetection: ChangeDetectionStrategy.OnPush,
1550
2121
  template: '<ng-content></ng-content>',
1551
2122
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1552
- inputs: ['mode'],
2123
+ inputs: ['mode', 'size'],
2124
+ outputs: ['mdsPrefChange'],
2125
+ standalone: false
1553
2126
  }]
1554
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2127
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsPrefChange: [{
2128
+ type: Output
2129
+ }] } });
1555
2130
  let MdsPrefContrast = class MdsPrefContrast {
1556
2131
  z;
1557
2132
  el;
2133
+ mdsPrefChange = new EventEmitter();
1558
2134
  constructor(c, r, z) {
1559
2135
  this.z = z;
1560
2136
  c.detach();
1561
2137
  this.el = r.nativeElement;
1562
- proxyOutputs(this, this.el, ['mdsPrefChange']);
1563
2138
  }
1564
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPrefContrast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1565
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsPrefContrast, selector: "mds-pref-contrast", inputs: { mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2139
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPrefContrast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2140
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsPrefContrast, selector: "mds-pref-contrast", inputs: { mode: "mode", size: "size" }, outputs: { mdsPrefChange: "mdsPrefChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1566
2141
  };
1567
2142
  MdsPrefContrast = __decorate([
1568
2143
  ProxyCmp({
1569
- inputs: ['mode'],
2144
+ inputs: ['mode', 'size'],
1570
2145
  methods: ['updateLang']
1571
2146
  })
1572
2147
  ], MdsPrefContrast);
1573
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPrefContrast, decorators: [{
2148
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPrefContrast, decorators: [{
1574
2149
  type: Component,
1575
2150
  args: [{
1576
2151
  selector: 'mds-pref-contrast',
1577
2152
  changeDetection: ChangeDetectionStrategy.OnPush,
1578
2153
  template: '<ng-content></ng-content>',
1579
2154
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1580
- inputs: ['mode'],
2155
+ inputs: ['mode', 'size'],
2156
+ outputs: ['mdsPrefChange'],
2157
+ standalone: false
1581
2158
  }]
1582
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2159
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsPrefChange: [{
2160
+ type: Output
2161
+ }] } });
1583
2162
  let MdsPrefLanguage = class MdsPrefLanguage {
1584
2163
  z;
1585
2164
  el;
2165
+ mdsPrefLanguageChange = new EventEmitter();
2166
+ mdsPrefChange = new EventEmitter();
1586
2167
  constructor(c, r, z) {
1587
2168
  this.z = z;
1588
2169
  c.detach();
1589
2170
  this.el = r.nativeElement;
1590
- proxyOutputs(this, this.el, ['mdsPrefLanguageChange', 'mdsPrefChange']);
1591
2171
  }
1592
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPrefLanguage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1593
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsPrefLanguage, selector: "mds-pref-language", inputs: { set: "set" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2172
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPrefLanguage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2173
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsPrefLanguage, selector: "mds-pref-language", inputs: { set: "set", size: "size" }, outputs: { mdsPrefLanguageChange: "mdsPrefLanguageChange", mdsPrefChange: "mdsPrefChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1594
2174
  };
1595
2175
  MdsPrefLanguage = __decorate([
1596
2176
  ProxyCmp({
1597
- inputs: ['set'],
2177
+ inputs: ['set', 'size'],
1598
2178
  methods: ['updateLang']
1599
2179
  })
1600
2180
  ], MdsPrefLanguage);
1601
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPrefLanguage, decorators: [{
2181
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPrefLanguage, decorators: [{
1602
2182
  type: Component,
1603
2183
  args: [{
1604
2184
  selector: 'mds-pref-language',
1605
2185
  changeDetection: ChangeDetectionStrategy.OnPush,
1606
2186
  template: '<ng-content></ng-content>',
1607
2187
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1608
- inputs: ['set'],
2188
+ inputs: ['set', 'size'],
2189
+ outputs: ['mdsPrefLanguageChange', 'mdsPrefChange'],
2190
+ standalone: false
1609
2191
  }]
1610
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2192
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsPrefLanguageChange: [{
2193
+ type: Output
2194
+ }], mdsPrefChange: [{
2195
+ type: Output
2196
+ }] } });
1611
2197
  let MdsPrefLanguageItem = class MdsPrefLanguageItem {
1612
2198
  z;
1613
2199
  el;
2200
+ mdsPrefLanguageItemSelect = new EventEmitter();
1614
2201
  constructor(c, r, z) {
1615
2202
  this.z = z;
1616
2203
  c.detach();
1617
2204
  this.el = r.nativeElement;
1618
- proxyOutputs(this, this.el, ['mdsPrefLanguageItemSelect']);
1619
2205
  }
1620
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPrefLanguageItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1621
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsPrefLanguageItem, selector: "mds-pref-language-item", inputs: { code: "code", selected: "selected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2206
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPrefLanguageItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2207
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsPrefLanguageItem, selector: "mds-pref-language-item", inputs: { code: "code", selected: "selected" }, outputs: { mdsPrefLanguageItemSelect: "mdsPrefLanguageItemSelect" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1622
2208
  };
1623
2209
  MdsPrefLanguageItem = __decorate([
1624
2210
  ProxyCmp({
@@ -1626,7 +2212,7 @@ MdsPrefLanguageItem = __decorate([
1626
2212
  methods: ['updateLang']
1627
2213
  })
1628
2214
  ], MdsPrefLanguageItem);
1629
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPrefLanguageItem, decorators: [{
2215
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPrefLanguageItem, decorators: [{
1630
2216
  type: Component,
1631
2217
  args: [{
1632
2218
  selector: 'mds-pref-language-item',
@@ -1634,36 +2220,111 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1634
2220
  template: '<ng-content></ng-content>',
1635
2221
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1636
2222
  inputs: ['code', 'selected'],
2223
+ outputs: ['mdsPrefLanguageItemSelect'],
2224
+ standalone: false
1637
2225
  }]
1638
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2226
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsPrefLanguageItemSelect: [{
2227
+ type: Output
2228
+ }] } });
1639
2229
  let MdsPrefTheme = class MdsPrefTheme {
1640
2230
  z;
1641
2231
  el;
2232
+ mdsPrefChange = new EventEmitter();
1642
2233
  constructor(c, r, z) {
1643
2234
  this.z = z;
1644
2235
  c.detach();
1645
2236
  this.el = r.nativeElement;
1646
- proxyOutputs(this, this.el, ['mdsPrefChange']);
1647
2237
  }
1648
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPrefTheme, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1649
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsPrefTheme, selector: "mds-pref-theme", inputs: { mode: "mode", transition: "transition" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2238
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPrefTheme, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2239
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsPrefTheme, selector: "mds-pref-theme", inputs: { mode: "mode", size: "size", transition: "transition" }, outputs: { mdsPrefChange: "mdsPrefChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1650
2240
  };
1651
2241
  MdsPrefTheme = __decorate([
1652
2242
  ProxyCmp({
1653
- inputs: ['mode', 'transition'],
2243
+ inputs: ['mode', 'size', 'transition'],
1654
2244
  methods: ['updateLang']
1655
2245
  })
1656
2246
  ], MdsPrefTheme);
1657
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPrefTheme, decorators: [{
2247
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPrefTheme, decorators: [{
1658
2248
  type: Component,
1659
2249
  args: [{
1660
2250
  selector: 'mds-pref-theme',
1661
2251
  changeDetection: ChangeDetectionStrategy.OnPush,
1662
2252
  template: '<ng-content></ng-content>',
1663
2253
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1664
- inputs: ['mode', 'transition'],
2254
+ inputs: ['mode', 'size', 'transition'],
2255
+ outputs: ['mdsPrefChange'],
2256
+ standalone: false
1665
2257
  }]
1666
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2258
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsPrefChange: [{
2259
+ type: Output
2260
+ }] } });
2261
+ let MdsPrefThemeVariant = class MdsPrefThemeVariant {
2262
+ z;
2263
+ el;
2264
+ mdsPrefThemeVariantChange = new EventEmitter();
2265
+ mdsPrefChange = new EventEmitter();
2266
+ constructor(c, r, z) {
2267
+ this.z = z;
2268
+ c.detach();
2269
+ this.el = r.nativeElement;
2270
+ }
2271
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPrefThemeVariant, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2272
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsPrefThemeVariant, selector: "mds-pref-theme-variant", inputs: { name: "name", scheme: "scheme", size: "size" }, outputs: { mdsPrefThemeVariantChange: "mdsPrefThemeVariantChange", mdsPrefChange: "mdsPrefChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2273
+ };
2274
+ MdsPrefThemeVariant = __decorate([
2275
+ ProxyCmp({
2276
+ inputs: ['name', 'scheme', 'size'],
2277
+ methods: ['updateLang']
2278
+ })
2279
+ ], MdsPrefThemeVariant);
2280
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPrefThemeVariant, decorators: [{
2281
+ type: Component,
2282
+ args: [{
2283
+ selector: 'mds-pref-theme-variant',
2284
+ changeDetection: ChangeDetectionStrategy.OnPush,
2285
+ template: '<ng-content></ng-content>',
2286
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2287
+ inputs: ['name', 'scheme', 'size'],
2288
+ outputs: ['mdsPrefThemeVariantChange', 'mdsPrefChange'],
2289
+ standalone: false
2290
+ }]
2291
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsPrefThemeVariantChange: [{
2292
+ type: Output
2293
+ }], mdsPrefChange: [{
2294
+ type: Output
2295
+ }] } });
2296
+ let MdsPrefThemeVariantItem = class MdsPrefThemeVariantItem {
2297
+ z;
2298
+ el;
2299
+ mdsPrefThemeVariantItemSelect = new EventEmitter();
2300
+ constructor(c, r, z) {
2301
+ this.z = z;
2302
+ c.detach();
2303
+ this.el = r.nativeElement;
2304
+ }
2305
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPrefThemeVariantItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2306
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsPrefThemeVariantItem, selector: "mds-pref-theme-variant-item", inputs: { label: "label", name: "name", scheme: "scheme", selected: "selected" }, outputs: { mdsPrefThemeVariantItemSelect: "mdsPrefThemeVariantItemSelect" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2307
+ };
2308
+ MdsPrefThemeVariantItem = __decorate([
2309
+ ProxyCmp({
2310
+ inputs: ['label', 'name', 'scheme', 'selected'],
2311
+ methods: ['updateLang']
2312
+ })
2313
+ ], MdsPrefThemeVariantItem);
2314
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPrefThemeVariantItem, decorators: [{
2315
+ type: Component,
2316
+ args: [{
2317
+ selector: 'mds-pref-theme-variant-item',
2318
+ changeDetection: ChangeDetectionStrategy.OnPush,
2319
+ template: '<ng-content></ng-content>',
2320
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2321
+ inputs: ['label', 'name', 'scheme', 'selected'],
2322
+ outputs: ['mdsPrefThemeVariantItemSelect'],
2323
+ standalone: false
2324
+ }]
2325
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsPrefThemeVariantItemSelect: [{
2326
+ type: Output
2327
+ }] } });
1667
2328
  let MdsPriceTable = class MdsPriceTable {
1668
2329
  z;
1669
2330
  el;
@@ -1672,13 +2333,13 @@ let MdsPriceTable = class MdsPriceTable {
1672
2333
  c.detach();
1673
2334
  this.el = r.nativeElement;
1674
2335
  }
1675
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPriceTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1676
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsPriceTable, selector: "mds-price-table", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2336
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPriceTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2337
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsPriceTable, selector: "mds-price-table", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1677
2338
  };
1678
2339
  MdsPriceTable = __decorate([
1679
2340
  ProxyCmp({})
1680
2341
  ], MdsPriceTable);
1681
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPriceTable, decorators: [{
2342
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPriceTable, decorators: [{
1682
2343
  type: Component,
1683
2344
  args: [{
1684
2345
  selector: 'mds-price-table',
@@ -1686,6 +2347,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1686
2347
  template: '<ng-content></ng-content>',
1687
2348
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1688
2349
  inputs: [],
2350
+ standalone: false
1689
2351
  }]
1690
2352
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1691
2353
  let MdsPriceTableFeatures = class MdsPriceTableFeatures {
@@ -1696,15 +2358,15 @@ let MdsPriceTableFeatures = class MdsPriceTableFeatures {
1696
2358
  c.detach();
1697
2359
  this.el = r.nativeElement;
1698
2360
  }
1699
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPriceTableFeatures, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1700
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsPriceTableFeatures, selector: "mds-price-table-features", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2361
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPriceTableFeatures, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2362
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsPriceTableFeatures, selector: "mds-price-table-features", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1701
2363
  };
1702
2364
  MdsPriceTableFeatures = __decorate([
1703
2365
  ProxyCmp({
1704
2366
  inputs: ['label']
1705
2367
  })
1706
2368
  ], MdsPriceTableFeatures);
1707
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPriceTableFeatures, decorators: [{
2369
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPriceTableFeatures, decorators: [{
1708
2370
  type: Component,
1709
2371
  args: [{
1710
2372
  selector: 'mds-price-table-features',
@@ -1712,6 +2374,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1712
2374
  template: '<ng-content></ng-content>',
1713
2375
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1714
2376
  inputs: ['label'],
2377
+ standalone: false
1715
2378
  }]
1716
2379
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1717
2380
  let MdsPriceTableFeaturesCell = class MdsPriceTableFeaturesCell {
@@ -1722,15 +2385,15 @@ let MdsPriceTableFeaturesCell = class MdsPriceTableFeaturesCell {
1722
2385
  c.detach();
1723
2386
  this.el = r.nativeElement;
1724
2387
  }
1725
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPriceTableFeaturesCell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1726
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsPriceTableFeaturesCell, selector: "mds-price-table-features-cell", inputs: { type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2388
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPriceTableFeaturesCell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2389
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsPriceTableFeaturesCell, selector: "mds-price-table-features-cell", inputs: { type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1727
2390
  };
1728
2391
  MdsPriceTableFeaturesCell = __decorate([
1729
2392
  ProxyCmp({
1730
2393
  inputs: ['type']
1731
2394
  })
1732
2395
  ], MdsPriceTableFeaturesCell);
1733
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPriceTableFeaturesCell, decorators: [{
2396
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPriceTableFeaturesCell, decorators: [{
1734
2397
  type: Component,
1735
2398
  args: [{
1736
2399
  selector: 'mds-price-table-features-cell',
@@ -1738,6 +2401,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1738
2401
  template: '<ng-content></ng-content>',
1739
2402
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1740
2403
  inputs: ['type'],
2404
+ standalone: false
1741
2405
  }]
1742
2406
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1743
2407
  let MdsPriceTableFeaturesRow = class MdsPriceTableFeaturesRow {
@@ -1748,13 +2412,13 @@ let MdsPriceTableFeaturesRow = class MdsPriceTableFeaturesRow {
1748
2412
  c.detach();
1749
2413
  this.el = r.nativeElement;
1750
2414
  }
1751
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPriceTableFeaturesRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1752
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsPriceTableFeaturesRow, selector: "mds-price-table-features-row", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2415
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPriceTableFeaturesRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2416
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsPriceTableFeaturesRow, selector: "mds-price-table-features-row", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1753
2417
  };
1754
2418
  MdsPriceTableFeaturesRow = __decorate([
1755
2419
  ProxyCmp({})
1756
2420
  ], MdsPriceTableFeaturesRow);
1757
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPriceTableFeaturesRow, decorators: [{
2421
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPriceTableFeaturesRow, decorators: [{
1758
2422
  type: Component,
1759
2423
  args: [{
1760
2424
  selector: 'mds-price-table-features-row',
@@ -1762,6 +2426,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1762
2426
  template: '<ng-content></ng-content>',
1763
2427
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1764
2428
  inputs: [],
2429
+ standalone: false
1765
2430
  }]
1766
2431
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1767
2432
  let MdsPriceTableHeader = class MdsPriceTableHeader {
@@ -1772,13 +2437,13 @@ let MdsPriceTableHeader = class MdsPriceTableHeader {
1772
2437
  c.detach();
1773
2438
  this.el = r.nativeElement;
1774
2439
  }
1775
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPriceTableHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1776
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsPriceTableHeader, selector: "mds-price-table-header", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2440
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPriceTableHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2441
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsPriceTableHeader, selector: "mds-price-table-header", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1777
2442
  };
1778
2443
  MdsPriceTableHeader = __decorate([
1779
2444
  ProxyCmp({})
1780
2445
  ], MdsPriceTableHeader);
1781
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPriceTableHeader, decorators: [{
2446
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPriceTableHeader, decorators: [{
1782
2447
  type: Component,
1783
2448
  args: [{
1784
2449
  selector: 'mds-price-table-header',
@@ -1786,6 +2451,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1786
2451
  template: '<ng-content></ng-content>',
1787
2452
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1788
2453
  inputs: [],
2454
+ standalone: false
1789
2455
  }]
1790
2456
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1791
2457
  let MdsPriceTableList = class MdsPriceTableList {
@@ -1796,13 +2462,13 @@ let MdsPriceTableList = class MdsPriceTableList {
1796
2462
  c.detach();
1797
2463
  this.el = r.nativeElement;
1798
2464
  }
1799
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPriceTableList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1800
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsPriceTableList, selector: "mds-price-table-list", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2465
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPriceTableList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2466
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsPriceTableList, selector: "mds-price-table-list", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1801
2467
  };
1802
2468
  MdsPriceTableList = __decorate([
1803
2469
  ProxyCmp({})
1804
2470
  ], MdsPriceTableList);
1805
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPriceTableList, decorators: [{
2471
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPriceTableList, decorators: [{
1806
2472
  type: Component,
1807
2473
  args: [{
1808
2474
  selector: 'mds-price-table-list',
@@ -1810,6 +2476,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1810
2476
  template: '<ng-content></ng-content>',
1811
2477
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1812
2478
  inputs: [],
2479
+ standalone: false
1813
2480
  }]
1814
2481
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1815
2482
  let MdsPriceTableListItem = class MdsPriceTableListItem {
@@ -1820,15 +2487,15 @@ let MdsPriceTableListItem = class MdsPriceTableListItem {
1820
2487
  c.detach();
1821
2488
  this.el = r.nativeElement;
1822
2489
  }
1823
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPriceTableListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1824
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsPriceTableListItem, selector: "mds-price-table-list-item", inputs: { supported: "supported", typography: "typography" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2490
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPriceTableListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2491
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsPriceTableListItem, selector: "mds-price-table-list-item", inputs: { supported: "supported", typography: "typography" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1825
2492
  };
1826
2493
  MdsPriceTableListItem = __decorate([
1827
2494
  ProxyCmp({
1828
2495
  inputs: ['supported', 'typography']
1829
2496
  })
1830
2497
  ], MdsPriceTableListItem);
1831
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPriceTableListItem, decorators: [{
2498
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPriceTableListItem, decorators: [{
1832
2499
  type: Component,
1833
2500
  args: [{
1834
2501
  selector: 'mds-price-table-list-item',
@@ -1836,6 +2503,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1836
2503
  template: '<ng-content></ng-content>',
1837
2504
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1838
2505
  inputs: ['supported', 'typography'],
2506
+ standalone: false
1839
2507
  }]
1840
2508
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1841
2509
  let MdsProgress = class MdsProgress {
@@ -1846,78 +2514,95 @@ let MdsProgress = class MdsProgress {
1846
2514
  c.detach();
1847
2515
  this.el = r.nativeElement;
1848
2516
  }
1849
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsProgress, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1850
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsProgress, selector: "mds-progress", inputs: { direction: "direction", progress: "progress", steps: "steps", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2517
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsProgress, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2518
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsProgress, selector: "mds-progress", inputs: { direction: "direction", progress: "progress", size: "size", steps: "steps", typography: "typography", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1851
2519
  };
1852
2520
  MdsProgress = __decorate([
1853
2521
  ProxyCmp({
1854
- inputs: ['direction', 'progress', 'steps', 'variant']
2522
+ inputs: ['direction', 'progress', 'size', 'steps', 'typography', 'variant']
1855
2523
  })
1856
2524
  ], MdsProgress);
1857
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsProgress, decorators: [{
2525
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsProgress, decorators: [{
1858
2526
  type: Component,
1859
2527
  args: [{
1860
2528
  selector: 'mds-progress',
1861
2529
  changeDetection: ChangeDetectionStrategy.OnPush,
1862
2530
  template: '<ng-content></ng-content>',
1863
2531
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1864
- inputs: ['direction', 'progress', 'steps', 'variant'],
2532
+ inputs: ['direction', 'progress', 'size', 'steps', 'typography', 'variant'],
2533
+ standalone: false
1865
2534
  }]
1866
2535
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1867
2536
  let MdsPushNotification = class MdsPushNotification {
1868
2537
  z;
1869
2538
  el;
2539
+ mdsPushNotificationChange = new EventEmitter();
2540
+ mdsPushNotificationShow = new EventEmitter();
2541
+ mdsPushNotificationHide = new EventEmitter();
1870
2542
  constructor(c, r, z) {
1871
2543
  this.z = z;
1872
2544
  c.detach();
1873
2545
  this.el = r.nativeElement;
1874
- proxyOutputs(this, this.el, ['mdsPushNotificationClose']);
1875
2546
  }
1876
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPushNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1877
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsPushNotification, selector: "mds-push-notification", inputs: { dateFormat: "dateFormat", datetime: "datetime", deletable: "deletable", icon: "icon", initials: "initials", message: "message", preview: "preview", src: "src", subject: "subject", tone: "tone", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2547
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPushNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2548
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsPushNotification, selector: "mds-push-notification", inputs: { behavior: "behavior", visible: "visible" }, outputs: { mdsPushNotificationChange: "mdsPushNotificationChange", mdsPushNotificationShow: "mdsPushNotificationShow", mdsPushNotificationHide: "mdsPushNotificationHide" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1878
2549
  };
1879
2550
  MdsPushNotification = __decorate([
1880
2551
  ProxyCmp({
1881
- inputs: ['dateFormat', 'datetime', 'deletable', 'icon', 'initials', 'message', 'preview', 'src', 'subject', 'tone', 'variant'],
1882
- methods: ['updateLang']
2552
+ inputs: ['behavior', 'visible'],
2553
+ methods: ['show', 'hide', 'removeNotification']
1883
2554
  })
1884
2555
  ], MdsPushNotification);
1885
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPushNotification, decorators: [{
2556
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPushNotification, decorators: [{
1886
2557
  type: Component,
1887
2558
  args: [{
1888
2559
  selector: 'mds-push-notification',
1889
2560
  changeDetection: ChangeDetectionStrategy.OnPush,
1890
2561
  template: '<ng-content></ng-content>',
1891
2562
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1892
- inputs: ['dateFormat', 'datetime', 'deletable', 'icon', 'initials', 'message', 'preview', 'src', 'subject', 'tone', 'variant'],
2563
+ inputs: ['behavior', 'visible'],
2564
+ outputs: ['mdsPushNotificationChange', 'mdsPushNotificationShow', 'mdsPushNotificationHide'],
2565
+ standalone: false
1893
2566
  }]
1894
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1895
- let MdsPushNotifications = class MdsPushNotifications {
2567
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsPushNotificationChange: [{
2568
+ type: Output
2569
+ }], mdsPushNotificationShow: [{
2570
+ type: Output
2571
+ }], mdsPushNotificationHide: [{
2572
+ type: Output
2573
+ }] } });
2574
+ let MdsPushNotificationItem = class MdsPushNotificationItem {
1896
2575
  z;
1897
2576
  el;
2577
+ mdsPushNotificationItemClose = new EventEmitter();
1898
2578
  constructor(c, r, z) {
1899
2579
  this.z = z;
1900
2580
  c.detach();
1901
2581
  this.el = r.nativeElement;
1902
2582
  }
1903
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPushNotifications, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1904
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsPushNotifications, selector: "mds-push-notifications", inputs: { visible: "visible" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2583
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPushNotificationItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2584
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsPushNotificationItem, selector: "mds-push-notification-item", inputs: { dateFormat: "dateFormat", datetime: "datetime", deletable: "deletable", icon: "icon", initials: "initials", message: "message", preview: "preview", src: "src", subject: "subject", tone: "tone", variant: "variant" }, outputs: { mdsPushNotificationItemClose: "mdsPushNotificationItemClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1905
2585
  };
1906
- MdsPushNotifications = __decorate([
2586
+ MdsPushNotificationItem = __decorate([
1907
2587
  ProxyCmp({
1908
- inputs: ['visible']
2588
+ inputs: ['dateFormat', 'datetime', 'deletable', 'icon', 'initials', 'message', 'preview', 'src', 'subject', 'tone', 'variant'],
2589
+ methods: ['updateLang']
1909
2590
  })
1910
- ], MdsPushNotifications);
1911
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsPushNotifications, decorators: [{
2591
+ ], MdsPushNotificationItem);
2592
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsPushNotificationItem, decorators: [{
1912
2593
  type: Component,
1913
2594
  args: [{
1914
- selector: 'mds-push-notifications',
2595
+ selector: 'mds-push-notification-item',
1915
2596
  changeDetection: ChangeDetectionStrategy.OnPush,
1916
2597
  template: '<ng-content></ng-content>',
1917
2598
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1918
- inputs: ['visible'],
2599
+ inputs: ['dateFormat', 'datetime', 'deletable', 'icon', 'initials', 'message', 'preview', 'src', 'subject', 'tone', 'variant'],
2600
+ outputs: ['mdsPushNotificationItemClose'],
2601
+ standalone: false
1919
2602
  }]
1920
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2603
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsPushNotificationItemClose: [{
2604
+ type: Output
2605
+ }] } });
1921
2606
  let MdsQuote = class MdsQuote {
1922
2607
  z;
1923
2608
  el;
@@ -1926,15 +2611,15 @@ let MdsQuote = class MdsQuote {
1926
2611
  c.detach();
1927
2612
  this.el = r.nativeElement;
1928
2613
  }
1929
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsQuote, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1930
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsQuote, selector: "mds-quote", inputs: { tag: "tag", typography: "typography" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2614
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsQuote, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2615
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsQuote, selector: "mds-quote", inputs: { tag: "tag", typography: "typography" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1931
2616
  };
1932
2617
  MdsQuote = __decorate([
1933
2618
  ProxyCmp({
1934
2619
  inputs: ['tag', 'typography']
1935
2620
  })
1936
2621
  ], MdsQuote);
1937
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsQuote, decorators: [{
2622
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsQuote, decorators: [{
1938
2623
  type: Component,
1939
2624
  args: [{
1940
2625
  selector: 'mds-quote',
@@ -1942,6 +2627,88 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1942
2627
  template: '<ng-content></ng-content>',
1943
2628
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1944
2629
  inputs: ['tag', 'typography'],
2630
+ standalone: false
2631
+ }]
2632
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2633
+ let MdsRadialMenu = class MdsRadialMenu {
2634
+ z;
2635
+ el;
2636
+ constructor(c, r, z) {
2637
+ this.z = z;
2638
+ c.detach();
2639
+ this.el = r.nativeElement;
2640
+ }
2641
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsRadialMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2642
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsRadialMenu, selector: "mds-radial-menu", inputs: { angleEnd: "angleEnd", angleStart: "angleStart", backdrop: "backdrop", direction: "direction", disc: "disc", icon: "icon", interaction: "interaction", opened: "opened", radius: "radius", size: "size", tone: "tone", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2643
+ };
2644
+ MdsRadialMenu = __decorate([
2645
+ ProxyCmp({
2646
+ inputs: ['angleEnd', 'angleStart', 'backdrop', 'direction', 'disc', 'icon', 'interaction', 'opened', 'radius', 'size', 'tone', 'variant']
2647
+ })
2648
+ ], MdsRadialMenu);
2649
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsRadialMenu, decorators: [{
2650
+ type: Component,
2651
+ args: [{
2652
+ selector: 'mds-radial-menu',
2653
+ changeDetection: ChangeDetectionStrategy.OnPush,
2654
+ template: '<ng-content></ng-content>',
2655
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2656
+ inputs: ['angleEnd', 'angleStart', 'backdrop', 'direction', 'disc', 'icon', 'interaction', 'opened', 'radius', 'size', 'tone', 'variant'],
2657
+ standalone: false
2658
+ }]
2659
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2660
+ let MdsRadialMenuItem = class MdsRadialMenuItem {
2661
+ z;
2662
+ el;
2663
+ constructor(c, r, z) {
2664
+ this.z = z;
2665
+ c.detach();
2666
+ this.el = r.nativeElement;
2667
+ }
2668
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsRadialMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2669
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsRadialMenuItem, selector: "mds-radial-menu-item", inputs: { icon: "icon", size: "size", tone: "tone", tooltip: "tooltip", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2670
+ };
2671
+ MdsRadialMenuItem = __decorate([
2672
+ ProxyCmp({
2673
+ inputs: ['icon', 'size', 'tone', 'tooltip', 'variant']
2674
+ })
2675
+ ], MdsRadialMenuItem);
2676
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsRadialMenuItem, decorators: [{
2677
+ type: Component,
2678
+ args: [{
2679
+ selector: 'mds-radial-menu-item',
2680
+ changeDetection: ChangeDetectionStrategy.OnPush,
2681
+ template: '<ng-content></ng-content>',
2682
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2683
+ inputs: ['icon', 'size', 'tone', 'tooltip', 'variant'],
2684
+ standalone: false
2685
+ }]
2686
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2687
+ let MdsRadialProgress = class MdsRadialProgress {
2688
+ z;
2689
+ el;
2690
+ constructor(c, r, z) {
2691
+ this.z = z;
2692
+ c.detach();
2693
+ this.el = r.nativeElement;
2694
+ }
2695
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsRadialProgress, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2696
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsRadialProgress, selector: "mds-radial-progress", inputs: { icon: "icon", progress: "progress", typography: "typography", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2697
+ };
2698
+ MdsRadialProgress = __decorate([
2699
+ ProxyCmp({
2700
+ inputs: ['icon', 'progress', 'typography', 'variant']
2701
+ })
2702
+ ], MdsRadialProgress);
2703
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsRadialProgress, decorators: [{
2704
+ type: Component,
2705
+ args: [{
2706
+ selector: 'mds-radial-progress',
2707
+ changeDetection: ChangeDetectionStrategy.OnPush,
2708
+ template: '<ng-content></ng-content>',
2709
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2710
+ inputs: ['icon', 'progress', 'typography', 'variant'],
2711
+ standalone: false
1945
2712
  }]
1946
2713
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1947
2714
  let MdsSeparator = class MdsSeparator {
@@ -1952,13 +2719,13 @@ let MdsSeparator = class MdsSeparator {
1952
2719
  c.detach();
1953
2720
  this.el = r.nativeElement;
1954
2721
  }
1955
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsSeparator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1956
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsSeparator, selector: "mds-separator", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2722
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsSeparator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2723
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsSeparator, selector: "mds-separator", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1957
2724
  };
1958
2725
  MdsSeparator = __decorate([
1959
2726
  ProxyCmp({})
1960
2727
  ], MdsSeparator);
1961
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsSeparator, decorators: [{
2728
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsSeparator, decorators: [{
1962
2729
  type: Component,
1963
2730
  args: [{
1964
2731
  selector: 'mds-separator',
@@ -1966,6 +2733,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1966
2733
  template: '<ng-content></ng-content>',
1967
2734
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1968
2735
  inputs: [],
2736
+ standalone: false
1969
2737
  }]
1970
2738
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1971
2739
  let MdsSpinner = class MdsSpinner {
@@ -1976,15 +2744,15 @@ let MdsSpinner = class MdsSpinner {
1976
2744
  c.detach();
1977
2745
  this.el = r.nativeElement;
1978
2746
  }
1979
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
1980
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsSpinner, selector: "mds-spinner", inputs: { running: "running" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2747
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2748
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsSpinner, selector: "mds-spinner", inputs: { running: "running" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
1981
2749
  };
1982
2750
  MdsSpinner = __decorate([
1983
2751
  ProxyCmp({
1984
2752
  inputs: ['running']
1985
2753
  })
1986
2754
  ], MdsSpinner);
1987
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsSpinner, decorators: [{
2755
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsSpinner, decorators: [{
1988
2756
  type: Component,
1989
2757
  args: [{
1990
2758
  selector: 'mds-spinner',
@@ -1992,105 +2760,147 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1992
2760
  template: '<ng-content></ng-content>',
1993
2761
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1994
2762
  inputs: ['running'],
2763
+ standalone: false
2764
+ }]
2765
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2766
+ let MdsStatusBar = class MdsStatusBar {
2767
+ z;
2768
+ el;
2769
+ constructor(c, r, z) {
2770
+ this.z = z;
2771
+ c.detach();
2772
+ this.el = r.nativeElement;
2773
+ }
2774
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsStatusBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2775
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsStatusBar, selector: "mds-status-bar", inputs: { description: "description", overflow: "overflow", position: "position", visible: "visible" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2776
+ };
2777
+ MdsStatusBar = __decorate([
2778
+ ProxyCmp({
2779
+ inputs: ['description', 'overflow', 'position', 'visible'],
2780
+ methods: ['hide']
2781
+ })
2782
+ ], MdsStatusBar);
2783
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsStatusBar, decorators: [{
2784
+ type: Component,
2785
+ args: [{
2786
+ selector: 'mds-status-bar',
2787
+ changeDetection: ChangeDetectionStrategy.OnPush,
2788
+ template: '<ng-content></ng-content>',
2789
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2790
+ inputs: ['description', 'overflow', 'position', 'visible'],
2791
+ standalone: false
1995
2792
  }]
1996
2793
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1997
2794
  let MdsStepperBar = class MdsStepperBar {
1998
2795
  z;
1999
2796
  el;
2797
+ mdsStepperBarChange = new EventEmitter();
2000
2798
  constructor(c, r, z) {
2001
2799
  this.z = z;
2002
2800
  c.detach();
2003
2801
  this.el = r.nativeElement;
2004
- proxyOutputs(this, this.el, ['mdsStepperBarChange']);
2005
2802
  }
2006
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsStepperBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2007
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsStepperBar, selector: "mds-stepper-bar", inputs: { itemsDone: "itemsDone" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2803
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsStepperBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2804
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsStepperBar, selector: "mds-stepper-bar", inputs: { itemsDone: "itemsDone", navigation: "navigation" }, outputs: { mdsStepperBarChange: "mdsStepperBarChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2008
2805
  };
2009
2806
  MdsStepperBar = __decorate([
2010
2807
  ProxyCmp({
2011
- inputs: ['itemsDone']
2808
+ inputs: ['itemsDone', 'navigation']
2012
2809
  })
2013
2810
  ], MdsStepperBar);
2014
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsStepperBar, decorators: [{
2811
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsStepperBar, decorators: [{
2015
2812
  type: Component,
2016
2813
  args: [{
2017
2814
  selector: 'mds-stepper-bar',
2018
2815
  changeDetection: ChangeDetectionStrategy.OnPush,
2019
2816
  template: '<ng-content></ng-content>',
2020
2817
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2021
- inputs: ['itemsDone'],
2818
+ inputs: ['itemsDone', 'navigation'],
2819
+ outputs: ['mdsStepperBarChange'],
2820
+ standalone: false
2022
2821
  }]
2023
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2822
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsStepperBarChange: [{
2823
+ type: Output
2824
+ }] } });
2024
2825
  let MdsStepperBarItem = class MdsStepperBarItem {
2025
2826
  z;
2026
2827
  el;
2828
+ mdsStepperBarItemDone = new EventEmitter();
2027
2829
  constructor(c, r, z) {
2028
2830
  this.z = z;
2029
2831
  c.detach();
2030
2832
  this.el = r.nativeElement;
2031
- proxyOutputs(this, this.el, ['mdsStepperBarItemDone']);
2032
2833
  }
2033
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsStepperBarItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2034
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsStepperBarItem, selector: "mds-stepper-bar-item", inputs: { badge: "badge", current: "current", done: "done", icon: "icon", iconChecked: "iconChecked", label: "label", step: "step", typography: "typography", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2834
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsStepperBarItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2835
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsStepperBarItem, selector: "mds-stepper-bar-item", inputs: { badge: "badge", current: "current", done: "done", icon: "icon", iconChecked: "iconChecked", label: "label", step: "step", typography: "typography", value: "value" }, outputs: { mdsStepperBarItemDone: "mdsStepperBarItemDone" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2035
2836
  };
2036
2837
  MdsStepperBarItem = __decorate([
2037
2838
  ProxyCmp({
2038
- inputs: ['badge', 'current', 'done', 'icon', 'iconChecked', 'label', 'step', 'typography', 'value']
2839
+ inputs: ['badge', 'current', 'done', 'icon', 'iconChecked', 'label', 'step', 'typography', 'value'],
2840
+ methods: ['updateLang']
2039
2841
  })
2040
2842
  ], MdsStepperBarItem);
2041
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsStepperBarItem, decorators: [{
2843
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsStepperBarItem, decorators: [{
2042
2844
  type: Component,
2043
2845
  args: [{
2044
2846
  selector: 'mds-stepper-bar-item',
2045
2847
  changeDetection: ChangeDetectionStrategy.OnPush,
2046
2848
  template: '<ng-content></ng-content>',
2047
2849
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2048
- inputs: ['badge', 'current', 'done', 'icon', 'iconChecked', 'label', 'step', 'typography', 'value'],
2850
+ inputs: ['badge', 'current', 'done', { name: 'icon', required: true }, 'iconChecked', { name: 'label', required: true }, 'step', 'typography', 'value'],
2851
+ outputs: ['mdsStepperBarItemDone'],
2852
+ standalone: false
2049
2853
  }]
2050
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2854
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsStepperBarItemDone: [{
2855
+ type: Output
2856
+ }] } });
2051
2857
  let MdsTab = class MdsTab {
2052
2858
  z;
2053
2859
  el;
2860
+ mdsTabChange = new EventEmitter();
2054
2861
  constructor(c, r, z) {
2055
2862
  this.z = z;
2056
2863
  c.detach();
2057
2864
  this.el = r.nativeElement;
2058
- proxyOutputs(this, this.el, ['mdsTabChange']);
2059
2865
  }
2060
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2061
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsTab, selector: "mds-tab", inputs: { animation: "animation", fill: "fill", overflow: "overflow", scrollbar: "scrollbar" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2866
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2867
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsTab, selector: "mds-tab", inputs: { animation: "animation", direction: "direction", fill: "fill", overflow: "overflow", scrollbar: "scrollbar", size: "size" }, outputs: { mdsTabChange: "mdsTabChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2062
2868
  };
2063
2869
  MdsTab = __decorate([
2064
2870
  ProxyCmp({
2065
- inputs: ['animation', 'fill', 'overflow', 'scrollbar']
2871
+ inputs: ['animation', 'direction', 'fill', 'overflow', 'scrollbar', 'size']
2066
2872
  })
2067
2873
  ], MdsTab);
2068
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsTab, decorators: [{
2874
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsTab, decorators: [{
2069
2875
  type: Component,
2070
2876
  args: [{
2071
2877
  selector: 'mds-tab',
2072
2878
  changeDetection: ChangeDetectionStrategy.OnPush,
2073
2879
  template: '<ng-content></ng-content>',
2074
2880
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2075
- inputs: ['animation', 'fill', 'overflow', 'scrollbar'],
2881
+ inputs: ['animation', 'direction', 'fill', 'overflow', 'scrollbar', 'size'],
2882
+ outputs: ['mdsTabChange'],
2883
+ standalone: false
2076
2884
  }]
2077
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2885
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsTabChange: [{
2886
+ type: Output
2887
+ }] } });
2078
2888
  let MdsTabBar = class MdsTabBar {
2079
2889
  z;
2080
2890
  el;
2891
+ mdsTabBarChange = new EventEmitter();
2081
2892
  constructor(c, r, z) {
2082
2893
  this.z = z;
2083
2894
  c.detach();
2084
2895
  this.el = r.nativeElement;
2085
- proxyOutputs(this, this.el, ['mdsTabBarChange']);
2086
2896
  }
2087
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsTabBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2088
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsTabBar, selector: "mds-tab-bar", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2897
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsTabBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2898
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsTabBar, selector: "mds-tab-bar", outputs: { mdsTabBarChange: "mdsTabBarChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2089
2899
  };
2090
2900
  MdsTabBar = __decorate([
2091
2901
  ProxyCmp({})
2092
2902
  ], MdsTabBar);
2093
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsTabBar, decorators: [{
2903
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsTabBar, decorators: [{
2094
2904
  type: Component,
2095
2905
  args: [{
2096
2906
  selector: 'mds-tab-bar',
@@ -2098,73 +2908,88 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2098
2908
  template: '<ng-content></ng-content>',
2099
2909
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2100
2910
  inputs: [],
2911
+ outputs: ['mdsTabBarChange'],
2912
+ standalone: false
2101
2913
  }]
2102
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2914
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsTabBarChange: [{
2915
+ type: Output
2916
+ }] } });
2103
2917
  let MdsTabBarItem = class MdsTabBarItem {
2104
2918
  z;
2105
2919
  el;
2920
+ mdsTabBarItemSelect = new EventEmitter();
2106
2921
  constructor(c, r, z) {
2107
2922
  this.z = z;
2108
2923
  c.detach();
2109
2924
  this.el = r.nativeElement;
2110
- proxyOutputs(this, this.el, ['mdsTabBarItemSelect']);
2111
2925
  }
2112
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsTabBarItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2113
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsTabBarItem, selector: "mds-tab-bar-item", inputs: { icon: "icon", selected: "selected", typography: "typography" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2926
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsTabBarItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2927
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsTabBarItem, selector: "mds-tab-bar-item", inputs: { icon: "icon", label: "label", selected: "selected", typography: "typography" }, outputs: { mdsTabBarItemSelect: "mdsTabBarItemSelect" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2114
2928
  };
2115
2929
  MdsTabBarItem = __decorate([
2116
2930
  ProxyCmp({
2117
- inputs: ['icon', 'selected', 'typography']
2931
+ inputs: ['icon', 'label', 'selected', 'typography']
2118
2932
  })
2119
2933
  ], MdsTabBarItem);
2120
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsTabBarItem, decorators: [{
2934
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsTabBarItem, decorators: [{
2121
2935
  type: Component,
2122
2936
  args: [{
2123
2937
  selector: 'mds-tab-bar-item',
2124
2938
  changeDetection: ChangeDetectionStrategy.OnPush,
2125
2939
  template: '<ng-content></ng-content>',
2126
2940
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2127
- inputs: ['icon', 'selected', 'typography'],
2941
+ inputs: ['icon', 'label', 'selected', 'typography'],
2942
+ outputs: ['mdsTabBarItemSelect'],
2943
+ standalone: false
2128
2944
  }]
2129
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2945
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsTabBarItemSelect: [{
2946
+ type: Output
2947
+ }] } });
2130
2948
  let MdsTabItem = class MdsTabItem {
2131
2949
  z;
2132
2950
  el;
2951
+ mdsTabItemSelect = new EventEmitter();
2952
+ mdsTabItemFocus = new EventEmitter();
2133
2953
  constructor(c, r, z) {
2134
2954
  this.z = z;
2135
2955
  c.detach();
2136
2956
  this.el = r.nativeElement;
2137
- proxyOutputs(this, this.el, ['mdsTabItemSelect', 'mdsTabItemFocus']);
2138
2957
  }
2139
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsTabItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2140
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsTabItem, selector: "mds-tab-item", inputs: { disabled: "disabled", href: "href", icon: "icon", iconPosition: "iconPosition", selected: "selected", size: "size", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2958
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsTabItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2959
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsTabItem, selector: "mds-tab-item", inputs: { await: "await", disabled: "disabled", href: "href", icon: "icon", iconPosition: "iconPosition", label: "label", selected: "selected", size: "size", type: "type", value: "value" }, outputs: { mdsTabItemSelect: "mdsTabItemSelect", mdsTabItemFocus: "mdsTabItemFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2141
2960
  };
2142
2961
  MdsTabItem = __decorate([
2143
2962
  ProxyCmp({
2144
- inputs: ['disabled', 'href', 'icon', 'iconPosition', 'selected', 'size', 'type', 'value']
2963
+ inputs: ['await', 'disabled', 'href', 'icon', 'iconPosition', 'label', 'selected', 'size', 'type', 'value']
2145
2964
  })
2146
2965
  ], MdsTabItem);
2147
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsTabItem, decorators: [{
2966
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsTabItem, decorators: [{
2148
2967
  type: Component,
2149
2968
  args: [{
2150
2969
  selector: 'mds-tab-item',
2151
2970
  changeDetection: ChangeDetectionStrategy.OnPush,
2152
2971
  template: '<ng-content></ng-content>',
2153
2972
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2154
- inputs: ['disabled', 'href', 'icon', 'iconPosition', 'selected', 'size', 'type', 'value'],
2973
+ inputs: ['await', 'disabled', 'href', 'icon', 'iconPosition', 'label', 'selected', 'size', 'type', 'value'],
2974
+ outputs: ['mdsTabItemSelect', 'mdsTabItemFocus'],
2975
+ standalone: false
2155
2976
  }]
2156
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2977
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsTabItemSelect: [{
2978
+ type: Output
2979
+ }], mdsTabItemFocus: [{
2980
+ type: Output
2981
+ }] } });
2157
2982
  let MdsTable = class MdsTable {
2158
2983
  z;
2159
2984
  el;
2985
+ mdsTableSelectionChange = new EventEmitter();
2160
2986
  constructor(c, r, z) {
2161
2987
  this.z = z;
2162
2988
  c.detach();
2163
2989
  this.el = r.nativeElement;
2164
- proxyOutputs(this, this.el, ['mdsTableSelectionChange']);
2165
2990
  }
2166
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2167
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsTable, selector: "mds-table", inputs: { interactive: "interactive", selectable: "selectable", selection: "selection" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2991
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2992
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsTable, selector: "mds-table", inputs: { interactive: "interactive", selectable: "selectable", selection: "selection" }, outputs: { mdsTableSelectionChange: "mdsTableSelectionChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2168
2993
  };
2169
2994
  MdsTable = __decorate([
2170
2995
  ProxyCmp({
@@ -2172,7 +2997,7 @@ MdsTable = __decorate([
2172
2997
  methods: ['updateSelection', 'selectAll']
2173
2998
  })
2174
2999
  ], MdsTable);
2175
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsTable, decorators: [{
3000
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsTable, decorators: [{
2176
3001
  type: Component,
2177
3002
  args: [{
2178
3003
  selector: 'mds-table',
@@ -2180,8 +3005,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2180
3005
  template: '<ng-content></ng-content>',
2181
3006
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2182
3007
  inputs: ['interactive', 'selectable', 'selection'],
3008
+ outputs: ['mdsTableSelectionChange'],
3009
+ standalone: false
2183
3010
  }]
2184
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
3011
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsTableSelectionChange: [{
3012
+ type: Output
3013
+ }] } });
2185
3014
  let MdsTableBody = class MdsTableBody {
2186
3015
  z;
2187
3016
  el;
@@ -2190,15 +3019,15 @@ let MdsTableBody = class MdsTableBody {
2190
3019
  c.detach();
2191
3020
  this.el = r.nativeElement;
2192
3021
  }
2193
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsTableBody, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2194
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsTableBody, selector: "mds-table-body", inputs: { interactive: "interactive", selection: "selection" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3022
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsTableBody, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3023
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsTableBody, selector: "mds-table-body", inputs: { interactive: "interactive", selection: "selection" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2195
3024
  };
2196
3025
  MdsTableBody = __decorate([
2197
3026
  ProxyCmp({
2198
3027
  inputs: ['interactive', 'selection']
2199
3028
  })
2200
3029
  ], MdsTableBody);
2201
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsTableBody, decorators: [{
3030
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsTableBody, decorators: [{
2202
3031
  type: Component,
2203
3032
  args: [{
2204
3033
  selector: 'mds-table-body',
@@ -2206,6 +3035,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2206
3035
  template: '<ng-content></ng-content>',
2207
3036
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2208
3037
  inputs: ['interactive', 'selection'],
3038
+ standalone: false
2209
3039
  }]
2210
3040
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2211
3041
  let MdsTableCell = class MdsTableCell {
@@ -2216,15 +3046,15 @@ let MdsTableCell = class MdsTableCell {
2216
3046
  c.detach();
2217
3047
  this.el = r.nativeElement;
2218
3048
  }
2219
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsTableCell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2220
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsTableCell, selector: "mds-table-cell", inputs: { value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3049
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsTableCell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3050
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsTableCell, selector: "mds-table-cell", inputs: { value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2221
3051
  };
2222
3052
  MdsTableCell = __decorate([
2223
3053
  ProxyCmp({
2224
3054
  inputs: ['value']
2225
3055
  })
2226
3056
  ], MdsTableCell);
2227
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsTableCell, decorators: [{
3057
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsTableCell, decorators: [{
2228
3058
  type: Component,
2229
3059
  args: [{
2230
3060
  selector: 'mds-table-cell',
@@ -2232,6 +3062,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2232
3062
  template: '<ng-content></ng-content>',
2233
3063
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2234
3064
  inputs: ['value'],
3065
+ standalone: false
2235
3066
  }]
2236
3067
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2237
3068
  let MdsTableFooter = class MdsTableFooter {
@@ -2242,13 +3073,13 @@ let MdsTableFooter = class MdsTableFooter {
2242
3073
  c.detach();
2243
3074
  this.el = r.nativeElement;
2244
3075
  }
2245
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsTableFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2246
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsTableFooter, selector: "mds-table-footer", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3076
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsTableFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3077
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsTableFooter, selector: "mds-table-footer", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2247
3078
  };
2248
3079
  MdsTableFooter = __decorate([
2249
3080
  ProxyCmp({})
2250
3081
  ], MdsTableFooter);
2251
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsTableFooter, decorators: [{
3082
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsTableFooter, decorators: [{
2252
3083
  type: Component,
2253
3084
  args: [{
2254
3085
  selector: 'mds-table-footer',
@@ -2256,6 +3087,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2256
3087
  template: '<ng-content></ng-content>',
2257
3088
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2258
3089
  inputs: [],
3090
+ standalone: false
2259
3091
  }]
2260
3092
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2261
3093
  let MdsTableHeader = class MdsTableHeader {
@@ -2266,8 +3098,8 @@ let MdsTableHeader = class MdsTableHeader {
2266
3098
  c.detach();
2267
3099
  this.el = r.nativeElement;
2268
3100
  }
2269
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsTableHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2270
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsTableHeader, selector: "mds-table-header", inputs: { selectable: "selectable" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3101
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsTableHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3102
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsTableHeader, selector: "mds-table-header", inputs: { selectable: "selectable" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2271
3103
  };
2272
3104
  MdsTableHeader = __decorate([
2273
3105
  ProxyCmp({
@@ -2275,7 +3107,7 @@ MdsTableHeader = __decorate([
2275
3107
  methods: ['updateLang', 'setSelection']
2276
3108
  })
2277
3109
  ], MdsTableHeader);
2278
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsTableHeader, decorators: [{
3110
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsTableHeader, decorators: [{
2279
3111
  type: Component,
2280
3112
  args: [{
2281
3113
  selector: 'mds-table-header',
@@ -2283,6 +3115,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2283
3115
  template: '<ng-content></ng-content>',
2284
3116
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2285
3117
  inputs: ['selectable'],
3118
+ standalone: false
2286
3119
  }]
2287
3120
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2288
3121
  let MdsTableHeaderCell = class MdsTableHeaderCell {
@@ -2293,15 +3126,15 @@ let MdsTableHeaderCell = class MdsTableHeaderCell {
2293
3126
  c.detach();
2294
3127
  this.el = r.nativeElement;
2295
3128
  }
2296
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsTableHeaderCell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2297
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsTableHeaderCell, selector: "mds-table-header-cell", inputs: { direction: "direction", label: "label", sortable: "sortable" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3129
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsTableHeaderCell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3130
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsTableHeaderCell, selector: "mds-table-header-cell", inputs: { direction: "direction", label: "label", sortable: "sortable" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2298
3131
  };
2299
3132
  MdsTableHeaderCell = __decorate([
2300
3133
  ProxyCmp({
2301
3134
  inputs: ['direction', 'label', 'sortable']
2302
3135
  })
2303
3136
  ], MdsTableHeaderCell);
2304
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsTableHeaderCell, decorators: [{
3137
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsTableHeaderCell, decorators: [{
2305
3138
  type: Component,
2306
3139
  args: [{
2307
3140
  selector: 'mds-table-header-cell',
@@ -2309,6 +3142,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2309
3142
  template: '<ng-content></ng-content>',
2310
3143
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2311
3144
  inputs: ['direction', 'label', 'sortable'],
3145
+ standalone: false
2312
3146
  }]
2313
3147
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2314
3148
  let MdsTableRow = class MdsTableRow {
@@ -2319,8 +3153,8 @@ let MdsTableRow = class MdsTableRow {
2319
3153
  c.detach();
2320
3154
  this.el = r.nativeElement;
2321
3155
  }
2322
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsTableRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2323
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsTableRow, selector: "mds-table-row", inputs: { interactive: "interactive", overlayActions: "overlayActions", selectable: "selectable", selected: "selected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3156
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsTableRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3157
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsTableRow, selector: "mds-table-row", inputs: { interactive: "interactive", overlayActions: "overlayActions", selectable: "selectable", selected: "selected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2324
3158
  };
2325
3159
  MdsTableRow = __decorate([
2326
3160
  ProxyCmp({
@@ -2328,7 +3162,7 @@ MdsTableRow = __decorate([
2328
3162
  methods: ['updateLang']
2329
3163
  })
2330
3164
  ], MdsTableRow);
2331
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsTableRow, decorators: [{
3165
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsTableRow, decorators: [{
2332
3166
  type: Component,
2333
3167
  args: [{
2334
3168
  selector: 'mds-table-row',
@@ -2336,6 +3170,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2336
3170
  template: '<ng-content></ng-content>',
2337
3171
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2338
3172
  inputs: ['interactive', 'overlayActions', 'selectable', 'selected', 'value'],
3173
+ standalone: false
2339
3174
  }]
2340
3175
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2341
3176
  let MdsText = class MdsText {
@@ -2346,15 +3181,15 @@ let MdsText = class MdsText {
2346
3181
  c.detach();
2347
3182
  this.el = r.nativeElement;
2348
3183
  }
2349
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsText, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2350
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsText, selector: "mds-text", inputs: { animation: "animation", tag: "tag", text: "text", truncate: "truncate", typography: "typography", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3184
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsText, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3185
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsText, selector: "mds-text", inputs: { animation: "animation", tag: "tag", text: "text", truncate: "truncate", typography: "typography", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2351
3186
  };
2352
3187
  MdsText = __decorate([
2353
3188
  ProxyCmp({
2354
3189
  inputs: ['animation', 'tag', 'text', 'truncate', 'typography', 'variant']
2355
3190
  })
2356
3191
  ], MdsText);
2357
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsText, decorators: [{
3192
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsText, decorators: [{
2358
3193
  type: Component,
2359
3194
  args: [{
2360
3195
  selector: 'mds-text',
@@ -2362,26 +3197,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2362
3197
  template: '<ng-content></ng-content>',
2363
3198
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2364
3199
  inputs: ['animation', 'tag', 'text', 'truncate', 'typography', 'variant'],
3200
+ standalone: false
2365
3201
  }]
2366
3202
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2367
3203
  let MdsToast = class MdsToast {
2368
3204
  z;
2369
3205
  el;
3206
+ mdsToastClose = new EventEmitter();
2370
3207
  constructor(c, r, z) {
2371
3208
  this.z = z;
2372
3209
  c.detach();
2373
3210
  this.el = r.nativeElement;
2374
- proxyOutputs(this, this.el, ['mdsToastClose']);
2375
3211
  }
2376
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2377
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsToast, selector: "mds-toast", inputs: { duration: "duration", position: "position", tone: "tone", variant: "variant", visible: "visible" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3212
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3213
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsToast, selector: "mds-toast", inputs: { duration: "duration", position: "position", tone: "tone", variant: "variant", visible: "visible" }, outputs: { mdsToastClose: "mdsToastClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2378
3214
  };
2379
3215
  MdsToast = __decorate([
2380
3216
  ProxyCmp({
2381
3217
  inputs: ['duration', 'position', 'tone', 'variant', 'visible']
2382
3218
  })
2383
3219
  ], MdsToast);
2384
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsToast, decorators: [{
3220
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsToast, decorators: [{
2385
3221
  type: Component,
2386
3222
  args: [{
2387
3223
  selector: 'mds-toast',
@@ -2389,8 +3225,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2389
3225
  template: '<ng-content></ng-content>',
2390
3226
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2391
3227
  inputs: ['duration', 'position', 'tone', 'variant', 'visible'],
3228
+ outputs: ['mdsToastClose'],
3229
+ standalone: false
2392
3230
  }]
2393
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
3231
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsToastClose: [{
3232
+ type: Output
3233
+ }] } });
2394
3234
  let MdsTooltip = class MdsTooltip {
2395
3235
  z;
2396
3236
  el;
@@ -2399,22 +3239,23 @@ let MdsTooltip = class MdsTooltip {
2399
3239
  c.detach();
2400
3240
  this.el = r.nativeElement;
2401
3241
  }
2402
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2403
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsTooltip, selector: "mds-tooltip", inputs: { autoPlacement: "autoPlacement", flip: "flip", offset: "offset", placement: "placement", shift: "shift", shiftPadding: "shiftPadding", strategy: "strategy", target: "target", typography: "typography", visible: "visible" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3242
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3243
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsTooltip, selector: "mds-tooltip", inputs: { autoPlacement: "autoPlacement", flip: "flip", offset: "offset", placement: "placement", shift: "shift", shiftPadding: "shiftPadding", strategy: "strategy", target: "target", typography: "typography", visible: "visible" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2404
3244
  };
2405
3245
  MdsTooltip = __decorate([
2406
3246
  ProxyCmp({
2407
3247
  inputs: ['autoPlacement', 'flip', 'offset', 'placement', 'shift', 'shiftPadding', 'strategy', 'target', 'typography', 'visible']
2408
3248
  })
2409
3249
  ], MdsTooltip);
2410
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsTooltip, decorators: [{
3250
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsTooltip, decorators: [{
2411
3251
  type: Component,
2412
3252
  args: [{
2413
3253
  selector: 'mds-tooltip',
2414
3254
  changeDetection: ChangeDetectionStrategy.OnPush,
2415
3255
  template: '<ng-content></ng-content>',
2416
3256
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2417
- inputs: ['autoPlacement', 'flip', 'offset', 'placement', 'shift', 'shiftPadding', 'strategy', 'target', 'typography', 'visible'],
3257
+ inputs: ['autoPlacement', 'flip', 'offset', 'placement', 'shift', 'shiftPadding', 'strategy', { name: 'target', required: true }, 'typography', 'visible'],
3258
+ standalone: false
2418
3259
  }]
2419
3260
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2420
3261
  let MdsTree = class MdsTree {
@@ -2425,15 +3266,15 @@ let MdsTree = class MdsTree {
2425
3266
  c.detach();
2426
3267
  this.el = r.nativeElement;
2427
3268
  }
2428
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsTree, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2429
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsTree, selector: "mds-tree", inputs: { actions: "actions", appearance: "appearance", async: "async", expanded: "expanded", label: "label", toggle: "toggle", togglePosition: "togglePosition", truncate: "truncate" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3269
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsTree, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3270
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsTree, selector: "mds-tree", inputs: { actions: "actions", appearance: "appearance", async: "async", expanded: "expanded", label: "label", toggle: "toggle", togglePosition: "togglePosition", truncate: "truncate" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2430
3271
  };
2431
3272
  MdsTree = __decorate([
2432
3273
  ProxyCmp({
2433
3274
  inputs: ['actions', 'appearance', 'async', 'expanded', 'label', 'toggle', 'togglePosition', 'truncate']
2434
3275
  })
2435
3276
  ], MdsTree);
2436
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsTree, decorators: [{
3277
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsTree, decorators: [{
2437
3278
  type: Component,
2438
3279
  args: [{
2439
3280
  selector: 'mds-tree',
@@ -2441,19 +3282,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2441
3282
  template: '<ng-content></ng-content>',
2442
3283
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2443
3284
  inputs: ['actions', 'appearance', 'async', 'expanded', 'label', 'toggle', 'togglePosition', 'truncate'],
3285
+ standalone: false
2444
3286
  }]
2445
3287
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2446
3288
  let MdsTreeItem = class MdsTreeItem {
2447
3289
  z;
2448
3290
  el;
3291
+ mdsTreeItemExpand = new EventEmitter();
3292
+ mdsTreeItemCollapse = new EventEmitter();
2449
3293
  constructor(c, r, z) {
2450
3294
  this.z = z;
2451
3295
  c.detach();
2452
3296
  this.el = r.nativeElement;
2453
- proxyOutputs(this, this.el, ['mdsTreeItemExpand', 'mdsTreeItemCollapse']);
2454
3297
  }
2455
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsTreeItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2456
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsTreeItem, selector: "mds-tree-item", inputs: { actions: "actions", async: "async", depth: "depth", expanded: "expanded", icon: "icon", label: "label", toggle: "toggle", truncate: "truncate" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3298
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsTreeItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3299
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsTreeItem, selector: "mds-tree-item", inputs: { actions: "actions", async: "async", depth: "depth", expanded: "expanded", icon: "icon", label: "label", toggle: "toggle", truncate: "truncate" }, outputs: { mdsTreeItemExpand: "mdsTreeItemExpand", mdsTreeItemCollapse: "mdsTreeItemCollapse" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2457
3300
  };
2458
3301
  MdsTreeItem = __decorate([
2459
3302
  ProxyCmp({
@@ -2461,7 +3304,7 @@ MdsTreeItem = __decorate([
2461
3304
  methods: ['updateLang', 'expand']
2462
3305
  })
2463
3306
  ], MdsTreeItem);
2464
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsTreeItem, decorators: [{
3307
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsTreeItem, decorators: [{
2465
3308
  type: Component,
2466
3309
  args: [{
2467
3310
  selector: 'mds-tree-item',
@@ -2469,36 +3312,46 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2469
3312
  template: '<ng-content></ng-content>',
2470
3313
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2471
3314
  inputs: ['actions', 'async', 'depth', 'expanded', 'icon', 'label', 'toggle', 'truncate'],
2472
- }]
2473
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
3315
+ outputs: ['mdsTreeItemExpand', 'mdsTreeItemCollapse'],
3316
+ standalone: false
3317
+ }]
3318
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsTreeItemExpand: [{
3319
+ type: Output
3320
+ }], mdsTreeItemCollapse: [{
3321
+ type: Output
3322
+ }] } });
2474
3323
  let MdsUrlView = class MdsUrlView {
2475
3324
  z;
2476
3325
  el;
3326
+ mdsUrlViewClose = new EventEmitter();
2477
3327
  constructor(c, r, z) {
2478
3328
  this.z = z;
2479
3329
  c.detach();
2480
3330
  this.el = r.nativeElement;
2481
- proxyOutputs(this, this.el, ['mdsUrlViewClose']);
2482
3331
  }
2483
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsUrlView, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2484
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsUrlView, selector: "mds-url-view", inputs: { domain: "domain", loading: "loading", src: "src" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3332
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsUrlView, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3333
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsUrlView, selector: "mds-url-view", inputs: { icon: "icon", label: "label", loading: "loading", src: "src" }, outputs: { mdsUrlViewClose: "mdsUrlViewClose" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2485
3334
  };
2486
3335
  MdsUrlView = __decorate([
2487
3336
  ProxyCmp({
2488
- inputs: ['domain', 'loading', 'src'],
3337
+ inputs: ['icon', 'label', 'loading', 'src'],
2489
3338
  methods: ['updateLang']
2490
3339
  })
2491
3340
  ], MdsUrlView);
2492
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsUrlView, decorators: [{
3341
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsUrlView, decorators: [{
2493
3342
  type: Component,
2494
3343
  args: [{
2495
3344
  selector: 'mds-url-view',
2496
3345
  changeDetection: ChangeDetectionStrategy.OnPush,
2497
3346
  template: '<ng-content></ng-content>',
2498
3347
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2499
- inputs: ['domain', 'loading', 'src'],
3348
+ inputs: ['icon', 'label', 'loading', { name: 'src', required: true }],
3349
+ outputs: ['mdsUrlViewClose'],
3350
+ standalone: false
2500
3351
  }]
2501
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
3352
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mdsUrlViewClose: [{
3353
+ type: Output
3354
+ }] } });
2502
3355
  let MdsUsage = class MdsUsage {
2503
3356
  z;
2504
3357
  el;
@@ -2507,15 +3360,16 @@ let MdsUsage = class MdsUsage {
2507
3360
  c.detach();
2508
3361
  this.el = r.nativeElement;
2509
3362
  }
2510
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsUsage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2511
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsUsage, selector: "mds-usage", inputs: { alias: "alias", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3363
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsUsage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3364
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsUsage, selector: "mds-usage", inputs: { alias: "alias", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2512
3365
  };
2513
3366
  MdsUsage = __decorate([
2514
3367
  ProxyCmp({
2515
- inputs: ['alias', 'variant']
3368
+ inputs: ['alias', 'variant'],
3369
+ methods: ['updateLang']
2516
3370
  })
2517
3371
  ], MdsUsage);
2518
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsUsage, decorators: [{
3372
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsUsage, decorators: [{
2519
3373
  type: Component,
2520
3374
  args: [{
2521
3375
  selector: 'mds-usage',
@@ -2523,6 +3377,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2523
3377
  template: '<ng-content></ng-content>',
2524
3378
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2525
3379
  inputs: ['alias', 'variant'],
3380
+ standalone: false
2526
3381
  }]
2527
3382
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2528
3383
  let MdsVideoWall = class MdsVideoWall {
@@ -2533,15 +3388,15 @@ let MdsVideoWall = class MdsVideoWall {
2533
3388
  c.detach();
2534
3389
  this.el = r.nativeElement;
2535
3390
  }
2536
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsVideoWall, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2537
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsVideoWall, selector: "mds-video-wall", inputs: { autoplay: "autoplay", loop: "loop", muted: "muted", noise: "noise", poster: "poster", preload: "preload", src: "src" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3391
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsVideoWall, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3392
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsVideoWall, selector: "mds-video-wall", inputs: { autoplay: "autoplay", loop: "loop", muted: "muted", noise: "noise", poster: "poster", preload: "preload", src: "src" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2538
3393
  };
2539
3394
  MdsVideoWall = __decorate([
2540
3395
  ProxyCmp({
2541
3396
  inputs: ['autoplay', 'loop', 'muted', 'noise', 'poster', 'preload', 'src']
2542
3397
  })
2543
3398
  ], MdsVideoWall);
2544
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsVideoWall, decorators: [{
3399
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsVideoWall, decorators: [{
2545
3400
  type: Component,
2546
3401
  args: [{
2547
3402
  selector: 'mds-video-wall',
@@ -2549,6 +3404,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2549
3404
  template: '<ng-content></ng-content>',
2550
3405
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2551
3406
  inputs: ['autoplay', 'loop', 'muted', 'noise', 'poster', 'preload', 'src'],
3407
+ standalone: false
2552
3408
  }]
2553
3409
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2554
3410
  let MdsZero = class MdsZero {
@@ -2559,13 +3415,13 @@ let MdsZero = class MdsZero {
2559
3415
  c.detach();
2560
3416
  this.el = r.nativeElement;
2561
3417
  }
2562
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsZero, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2563
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsZero, selector: "mds-zero", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
3418
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsZero, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3419
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: MdsZero, selector: "mds-zero", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2564
3420
  };
2565
3421
  MdsZero = __decorate([
2566
3422
  ProxyCmp({})
2567
3423
  ], MdsZero);
2568
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MdsZero, decorators: [{
3424
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MdsZero, decorators: [{
2569
3425
  type: Component,
2570
3426
  args: [{
2571
3427
  selector: 'mds-zero',
@@ -2573,6 +3429,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2573
3429
  template: '<ng-content></ng-content>',
2574
3430
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2575
3431
  inputs: [],
3432
+ standalone: false
2576
3433
  }]
2577
3434
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2578
3435
 
@@ -2583,6 +3440,8 @@ const DIRECTIVES = [
2583
3440
  MdsAccordionTimerItem,
2584
3441
  MdsAuthor,
2585
3442
  MdsAvatar,
3443
+ MdsAvatarStack,
3444
+ MdsAvatarStackItem,
2586
3445
  MdsBadge,
2587
3446
  MdsBanner,
2588
3447
  MdsBenchmarkBar,
@@ -2590,6 +3449,10 @@ const DIRECTIVES = [
2590
3449
  MdsBreadcrumb,
2591
3450
  MdsBreadcrumbItem,
2592
3451
  MdsButton,
3452
+ MdsButtonDropdown,
3453
+ MdsButtonGroup,
3454
+ MdsCalendar,
3455
+ MdsCalendarCell,
2593
3456
  MdsCard,
2594
3457
  MdsCardContent,
2595
3458
  MdsCardFooter,
@@ -2598,6 +3461,7 @@ const DIRECTIVES = [
2598
3461
  MdsChip,
2599
3462
  MdsDetails,
2600
3463
  MdsDropdown,
3464
+ MdsEmoji,
2601
3465
  MdsEntity,
2602
3466
  MdsFile,
2603
3467
  MdsFilePreview,
@@ -2611,7 +3475,11 @@ const DIRECTIVES = [
2611
3475
  MdsIcon,
2612
3476
  MdsImg,
2613
3477
  MdsInput,
3478
+ MdsInputDate,
3479
+ MdsInputDateRange,
3480
+ MdsInputDateRangePreselection,
2614
3481
  MdsInputField,
3482
+ MdsInputOtp,
2615
3483
  MdsInputRange,
2616
3484
  MdsInputSelect,
2617
3485
  MdsInputSwitch,
@@ -2625,11 +3493,13 @@ const DIRECTIVES = [
2625
3493
  MdsLabel,
2626
3494
  MdsList,
2627
3495
  MdsListItem,
3496
+ MdsMention,
2628
3497
  MdsModal,
2629
3498
  MdsNote,
2630
3499
  MdsNotification,
2631
3500
  MdsPaginator,
2632
3501
  MdsPaginatorItem,
3502
+ MdsPolicyAi,
2633
3503
  MdsPref,
2634
3504
  MdsPrefAnimation,
2635
3505
  MdsPrefConsumption,
@@ -2637,6 +3507,8 @@ const DIRECTIVES = [
2637
3507
  MdsPrefLanguage,
2638
3508
  MdsPrefLanguageItem,
2639
3509
  MdsPrefTheme,
3510
+ MdsPrefThemeVariant,
3511
+ MdsPrefThemeVariantItem,
2640
3512
  MdsPriceTable,
2641
3513
  MdsPriceTableFeatures,
2642
3514
  MdsPriceTableFeaturesCell,
@@ -2646,10 +3518,14 @@ const DIRECTIVES = [
2646
3518
  MdsPriceTableListItem,
2647
3519
  MdsProgress,
2648
3520
  MdsPushNotification,
2649
- MdsPushNotifications,
3521
+ MdsPushNotificationItem,
2650
3522
  MdsQuote,
3523
+ MdsRadialMenu,
3524
+ MdsRadialMenuItem,
3525
+ MdsRadialProgress,
2651
3526
  MdsSeparator,
2652
3527
  MdsSpinner,
3528
+ MdsStatusBar,
2653
3529
  MdsStepperBar,
2654
3530
  MdsStepperBarItem,
2655
3531
  MdsTab,
@@ -2687,11 +3563,11 @@ class MagmaModule {
2687
3563
  ],
2688
3564
  };
2689
3565
  }
2690
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MagmaModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2691
- static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MagmaModule, declarations: [MdsAccordion, MdsAccordionItem, MdsAccordionTimer, MdsAccordionTimerItem, MdsAuthor, MdsAvatar, MdsBadge, MdsBanner, MdsBenchmarkBar, MdsBibliography, MdsBreadcrumb, MdsBreadcrumbItem, MdsButton, MdsCard, MdsCardContent, MdsCardFooter, MdsCardHeader, MdsCardMedia, MdsChip, MdsDetails, MdsDropdown, MdsEntity, MdsFile, MdsFilePreview, MdsFilter, MdsFilterItem, MdsHeader, MdsHeaderBar, MdsHelp, MdsHorizontalScroll, MdsHr, MdsIcon, MdsImg, MdsInput, MdsInputField, MdsInputRange, MdsInputSelect, MdsInputSwitch, MdsInputTip, MdsInputTipItem, MdsInputUpload, MdsKeyboard, MdsKeyboardKey, MdsKpi, MdsKpiItem, MdsLabel, MdsList, MdsListItem, MdsModal, MdsNote, MdsNotification, MdsPaginator, MdsPaginatorItem, MdsPref, MdsPrefAnimation, MdsPrefConsumption, MdsPrefContrast, MdsPrefLanguage, MdsPrefLanguageItem, MdsPrefTheme, MdsPriceTable, MdsPriceTableFeatures, MdsPriceTableFeaturesCell, MdsPriceTableFeaturesRow, MdsPriceTableHeader, MdsPriceTableList, MdsPriceTableListItem, MdsProgress, MdsPushNotification, MdsPushNotifications, MdsQuote, MdsSeparator, MdsSpinner, MdsStepperBar, MdsStepperBarItem, MdsTab, MdsTabBar, MdsTabBarItem, MdsTabItem, MdsTable, MdsTableBody, MdsTableCell, MdsTableFooter, MdsTableHeader, MdsTableHeaderCell, MdsTableRow, MdsText, MdsToast, MdsTooltip, MdsTree, MdsTreeItem, MdsUrlView, MdsUsage, MdsVideoWall, MdsZero], exports: [MdsAccordion, MdsAccordionItem, MdsAccordionTimer, MdsAccordionTimerItem, MdsAuthor, MdsAvatar, MdsBadge, MdsBanner, MdsBenchmarkBar, MdsBibliography, MdsBreadcrumb, MdsBreadcrumbItem, MdsButton, MdsCard, MdsCardContent, MdsCardFooter, MdsCardHeader, MdsCardMedia, MdsChip, MdsDetails, MdsDropdown, MdsEntity, MdsFile, MdsFilePreview, MdsFilter, MdsFilterItem, MdsHeader, MdsHeaderBar, MdsHelp, MdsHorizontalScroll, MdsHr, MdsIcon, MdsImg, MdsInput, MdsInputField, MdsInputRange, MdsInputSelect, MdsInputSwitch, MdsInputTip, MdsInputTipItem, MdsInputUpload, MdsKeyboard, MdsKeyboardKey, MdsKpi, MdsKpiItem, MdsLabel, MdsList, MdsListItem, MdsModal, MdsNote, MdsNotification, MdsPaginator, MdsPaginatorItem, MdsPref, MdsPrefAnimation, MdsPrefConsumption, MdsPrefContrast, MdsPrefLanguage, MdsPrefLanguageItem, MdsPrefTheme, MdsPriceTable, MdsPriceTableFeatures, MdsPriceTableFeaturesCell, MdsPriceTableFeaturesRow, MdsPriceTableHeader, MdsPriceTableList, MdsPriceTableListItem, MdsProgress, MdsPushNotification, MdsPushNotifications, MdsQuote, MdsSeparator, MdsSpinner, MdsStepperBar, MdsStepperBarItem, MdsTab, MdsTabBar, MdsTabBarItem, MdsTabItem, MdsTable, MdsTableBody, MdsTableCell, MdsTableFooter, MdsTableHeader, MdsTableHeaderCell, MdsTableRow, MdsText, MdsToast, MdsTooltip, MdsTree, MdsTreeItem, MdsUrlView, MdsUsage, MdsVideoWall, MdsZero] });
2692
- static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MagmaModule });
3566
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MagmaModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
3567
+ static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.14", ngImport: i0, type: MagmaModule, declarations: [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], exports: [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] });
3568
+ static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MagmaModule });
2693
3569
  }
2694
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MagmaModule, decorators: [{
3570
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: MagmaModule, decorators: [{
2695
3571
  type: NgModule,
2696
3572
  args: [{
2697
3573
  declarations: [...DIRECTIVES],
@@ -2707,5 +3583,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2707
3583
  * Generated bundle index. Do not edit.
2708
3584
  */
2709
3585
 
2710
- export { DIRECTIVES, MagmaModule, MdsAccordion, MdsAccordionItem, MdsAccordionTimer, MdsAccordionTimerItem, MdsAuthor, MdsAvatar, MdsBadge, MdsBanner, MdsBenchmarkBar, MdsBibliography, MdsBreadcrumb, MdsBreadcrumbItem, MdsButton, MdsCard, MdsCardContent, MdsCardFooter, MdsCardHeader, MdsCardMedia, MdsChip, MdsDetails, MdsDropdown, MdsEntity, MdsFile, MdsFilePreview, MdsFilter, MdsFilterItem, MdsHeader, MdsHeaderBar, MdsHelp, MdsHorizontalScroll, MdsHr, MdsIcon, MdsImg, MdsInput, MdsInputField, MdsInputRange, MdsInputSelect, MdsInputSwitch, MdsInputTip, MdsInputTipItem, MdsInputUpload, MdsKeyboard, MdsKeyboardKey, MdsKpi, MdsKpiItem, MdsLabel, MdsList, MdsListItem, MdsModal, MdsNote, MdsNotification, MdsPaginator, MdsPaginatorItem, MdsPref, MdsPrefAnimation, MdsPrefConsumption, MdsPrefContrast, MdsPrefLanguage, MdsPrefLanguageItem, MdsPrefTheme, MdsPriceTable, MdsPriceTableFeatures, MdsPriceTableFeaturesCell, MdsPriceTableFeaturesRow, MdsPriceTableHeader, MdsPriceTableList, MdsPriceTableListItem, MdsProgress, MdsPushNotification, MdsPushNotifications, MdsQuote, MdsSeparator, MdsSpinner, MdsStepperBar, MdsStepperBarItem, MdsTab, MdsTabBar, MdsTabBarItem, MdsTabItem, MdsTable, MdsTableBody, MdsTableCell, MdsTableFooter, MdsTableHeader, MdsTableHeaderCell, MdsTableRow, MdsText, MdsToast, MdsTooltip, MdsTree, MdsTreeItem, MdsUrlView, MdsUsage, MdsVideoWall, MdsZero };
3586
+ export { 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 };
2711
3587
  //# sourceMappingURL=maggioli-design-system-magma-angular.mjs.map