@maggioli-design-system/magma-angular 1.0.0-beta.8 → 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,147 +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", 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({
2051
+ inputs: ['controller', 'size'],
1485
2052
  methods: ['updateLang']
1486
2053
  })
1487
2054
  ], MdsPref);
1488
- 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: [{
1489
2056
  type: Component,
1490
2057
  args: [{
1491
2058
  selector: 'mds-pref',
1492
2059
  changeDetection: ChangeDetectionStrategy.OnPush,
1493
2060
  template: '<ng-content></ng-content>',
1494
2061
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1495
- inputs: [],
2062
+ inputs: ['controller', 'size'],
2063
+ standalone: false
1496
2064
  }]
1497
2065
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1498
2066
  let MdsPrefAnimation = class MdsPrefAnimation {
1499
2067
  z;
1500
2068
  el;
2069
+ mdsPrefChange = new EventEmitter();
1501
2070
  constructor(c, r, z) {
1502
2071
  this.z = z;
1503
2072
  c.detach();
1504
2073
  this.el = r.nativeElement;
1505
- proxyOutputs(this, this.el, ['mdsPrefChange']);
1506
2074
  }
1507
- 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 });
1508
- 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 });
1509
2077
  };
1510
2078
  MdsPrefAnimation = __decorate([
1511
2079
  ProxyCmp({
1512
- inputs: ['mode'],
2080
+ inputs: ['mode', 'size'],
1513
2081
  methods: ['updateLang']
1514
2082
  })
1515
2083
  ], MdsPrefAnimation);
1516
- 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: [{
1517
2085
  type: Component,
1518
2086
  args: [{
1519
2087
  selector: 'mds-pref-animation',
1520
2088
  changeDetection: ChangeDetectionStrategy.OnPush,
1521
2089
  template: '<ng-content></ng-content>',
1522
2090
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1523
- inputs: ['mode'],
2091
+ inputs: ['mode', 'size'],
2092
+ outputs: ['mdsPrefChange'],
2093
+ standalone: false
1524
2094
  }]
1525
- }], 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
+ }] } });
1526
2098
  let MdsPrefConsumption = class MdsPrefConsumption {
1527
2099
  z;
1528
2100
  el;
2101
+ mdsPrefChange = new EventEmitter();
1529
2102
  constructor(c, r, z) {
1530
2103
  this.z = z;
1531
2104
  c.detach();
1532
2105
  this.el = r.nativeElement;
1533
- proxyOutputs(this, this.el, ['mdsPrefChange']);
1534
2106
  }
1535
- 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 });
1536
- 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 });
1537
2109
  };
1538
2110
  MdsPrefConsumption = __decorate([
1539
2111
  ProxyCmp({
1540
- inputs: ['mode'],
2112
+ inputs: ['mode', 'size'],
1541
2113
  methods: ['updateLang']
1542
2114
  })
1543
2115
  ], MdsPrefConsumption);
1544
- 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: [{
1545
2117
  type: Component,
1546
2118
  args: [{
1547
2119
  selector: 'mds-pref-consumption',
1548
2120
  changeDetection: ChangeDetectionStrategy.OnPush,
1549
2121
  template: '<ng-content></ng-content>',
1550
2122
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1551
- inputs: ['mode'],
2123
+ inputs: ['mode', 'size'],
2124
+ outputs: ['mdsPrefChange'],
2125
+ standalone: false
1552
2126
  }]
1553
- }], 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
+ }] } });
1554
2130
  let MdsPrefContrast = class MdsPrefContrast {
1555
2131
  z;
1556
2132
  el;
2133
+ mdsPrefChange = new EventEmitter();
1557
2134
  constructor(c, r, z) {
1558
2135
  this.z = z;
1559
2136
  c.detach();
1560
2137
  this.el = r.nativeElement;
1561
- proxyOutputs(this, this.el, ['mdsPrefChange']);
1562
2138
  }
1563
- 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 });
1564
- 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 });
1565
2141
  };
1566
2142
  MdsPrefContrast = __decorate([
1567
2143
  ProxyCmp({
1568
- inputs: ['mode'],
2144
+ inputs: ['mode', 'size'],
1569
2145
  methods: ['updateLang']
1570
2146
  })
1571
2147
  ], MdsPrefContrast);
1572
- 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: [{
1573
2149
  type: Component,
1574
2150
  args: [{
1575
2151
  selector: 'mds-pref-contrast',
1576
2152
  changeDetection: ChangeDetectionStrategy.OnPush,
1577
2153
  template: '<ng-content></ng-content>',
1578
2154
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1579
- inputs: ['mode'],
2155
+ inputs: ['mode', 'size'],
2156
+ outputs: ['mdsPrefChange'],
2157
+ standalone: false
1580
2158
  }]
1581
- }], 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
+ }] } });
1582
2162
  let MdsPrefLanguage = class MdsPrefLanguage {
1583
2163
  z;
1584
2164
  el;
2165
+ mdsPrefLanguageChange = new EventEmitter();
2166
+ mdsPrefChange = new EventEmitter();
1585
2167
  constructor(c, r, z) {
1586
2168
  this.z = z;
1587
2169
  c.detach();
1588
2170
  this.el = r.nativeElement;
1589
- proxyOutputs(this, this.el, ['mdsPrefLanguageChange', 'mdsPrefChange']);
1590
2171
  }
1591
- 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 });
1592
- 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 });
1593
2174
  };
1594
2175
  MdsPrefLanguage = __decorate([
1595
2176
  ProxyCmp({
1596
- inputs: ['set'],
2177
+ inputs: ['set', 'size'],
1597
2178
  methods: ['updateLang']
1598
2179
  })
1599
2180
  ], MdsPrefLanguage);
1600
- 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: [{
1601
2182
  type: Component,
1602
2183
  args: [{
1603
2184
  selector: 'mds-pref-language',
1604
2185
  changeDetection: ChangeDetectionStrategy.OnPush,
1605
2186
  template: '<ng-content></ng-content>',
1606
2187
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1607
- inputs: ['set'],
2188
+ inputs: ['set', 'size'],
2189
+ outputs: ['mdsPrefLanguageChange', 'mdsPrefChange'],
2190
+ standalone: false
1608
2191
  }]
1609
- }], 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
+ }] } });
1610
2197
  let MdsPrefLanguageItem = class MdsPrefLanguageItem {
1611
2198
  z;
1612
2199
  el;
2200
+ mdsPrefLanguageItemSelect = new EventEmitter();
1613
2201
  constructor(c, r, z) {
1614
2202
  this.z = z;
1615
2203
  c.detach();
1616
2204
  this.el = r.nativeElement;
1617
- proxyOutputs(this, this.el, ['mdsPrefLanguageItemSelect']);
1618
2205
  }
1619
- 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 });
1620
- 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 });
1621
2208
  };
1622
2209
  MdsPrefLanguageItem = __decorate([
1623
2210
  ProxyCmp({
@@ -1625,7 +2212,7 @@ MdsPrefLanguageItem = __decorate([
1625
2212
  methods: ['updateLang']
1626
2213
  })
1627
2214
  ], MdsPrefLanguageItem);
1628
- 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: [{
1629
2216
  type: Component,
1630
2217
  args: [{
1631
2218
  selector: 'mds-pref-language-item',
@@ -1633,36 +2220,111 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1633
2220
  template: '<ng-content></ng-content>',
1634
2221
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1635
2222
  inputs: ['code', 'selected'],
2223
+ outputs: ['mdsPrefLanguageItemSelect'],
2224
+ standalone: false
1636
2225
  }]
1637
- }], 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
+ }] } });
1638
2229
  let MdsPrefTheme = class MdsPrefTheme {
1639
2230
  z;
1640
2231
  el;
2232
+ mdsPrefChange = new EventEmitter();
1641
2233
  constructor(c, r, z) {
1642
2234
  this.z = z;
1643
2235
  c.detach();
1644
2236
  this.el = r.nativeElement;
1645
- proxyOutputs(this, this.el, ['mdsPrefChange']);
1646
2237
  }
1647
- 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 });
1648
- 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 });
1649
2240
  };
1650
2241
  MdsPrefTheme = __decorate([
1651
2242
  ProxyCmp({
1652
- inputs: ['mode', 'transition'],
2243
+ inputs: ['mode', 'size', 'transition'],
1653
2244
  methods: ['updateLang']
1654
2245
  })
1655
2246
  ], MdsPrefTheme);
1656
- 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: [{
1657
2248
  type: Component,
1658
2249
  args: [{
1659
2250
  selector: 'mds-pref-theme',
1660
2251
  changeDetection: ChangeDetectionStrategy.OnPush,
1661
2252
  template: '<ng-content></ng-content>',
1662
2253
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1663
- inputs: ['mode', 'transition'],
2254
+ inputs: ['mode', 'size', 'transition'],
2255
+ outputs: ['mdsPrefChange'],
2256
+ standalone: false
1664
2257
  }]
1665
- }], 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
+ }] } });
1666
2328
  let MdsPriceTable = class MdsPriceTable {
1667
2329
  z;
1668
2330
  el;
@@ -1671,13 +2333,13 @@ let MdsPriceTable = class MdsPriceTable {
1671
2333
  c.detach();
1672
2334
  this.el = r.nativeElement;
1673
2335
  }
1674
- 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 });
1675
- 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 });
1676
2338
  };
1677
2339
  MdsPriceTable = __decorate([
1678
2340
  ProxyCmp({})
1679
2341
  ], MdsPriceTable);
1680
- 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: [{
1681
2343
  type: Component,
1682
2344
  args: [{
1683
2345
  selector: 'mds-price-table',
@@ -1685,6 +2347,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1685
2347
  template: '<ng-content></ng-content>',
1686
2348
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1687
2349
  inputs: [],
2350
+ standalone: false
1688
2351
  }]
1689
2352
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1690
2353
  let MdsPriceTableFeatures = class MdsPriceTableFeatures {
@@ -1695,15 +2358,15 @@ let MdsPriceTableFeatures = class MdsPriceTableFeatures {
1695
2358
  c.detach();
1696
2359
  this.el = r.nativeElement;
1697
2360
  }
1698
- 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 });
1699
- 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 });
1700
2363
  };
1701
2364
  MdsPriceTableFeatures = __decorate([
1702
2365
  ProxyCmp({
1703
2366
  inputs: ['label']
1704
2367
  })
1705
2368
  ], MdsPriceTableFeatures);
1706
- 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: [{
1707
2370
  type: Component,
1708
2371
  args: [{
1709
2372
  selector: 'mds-price-table-features',
@@ -1711,6 +2374,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1711
2374
  template: '<ng-content></ng-content>',
1712
2375
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1713
2376
  inputs: ['label'],
2377
+ standalone: false
1714
2378
  }]
1715
2379
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1716
2380
  let MdsPriceTableFeaturesCell = class MdsPriceTableFeaturesCell {
@@ -1721,15 +2385,15 @@ let MdsPriceTableFeaturesCell = class MdsPriceTableFeaturesCell {
1721
2385
  c.detach();
1722
2386
  this.el = r.nativeElement;
1723
2387
  }
1724
- 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 });
1725
- 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 });
1726
2390
  };
1727
2391
  MdsPriceTableFeaturesCell = __decorate([
1728
2392
  ProxyCmp({
1729
2393
  inputs: ['type']
1730
2394
  })
1731
2395
  ], MdsPriceTableFeaturesCell);
1732
- 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: [{
1733
2397
  type: Component,
1734
2398
  args: [{
1735
2399
  selector: 'mds-price-table-features-cell',
@@ -1737,6 +2401,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1737
2401
  template: '<ng-content></ng-content>',
1738
2402
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1739
2403
  inputs: ['type'],
2404
+ standalone: false
1740
2405
  }]
1741
2406
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1742
2407
  let MdsPriceTableFeaturesRow = class MdsPriceTableFeaturesRow {
@@ -1747,13 +2412,13 @@ let MdsPriceTableFeaturesRow = class MdsPriceTableFeaturesRow {
1747
2412
  c.detach();
1748
2413
  this.el = r.nativeElement;
1749
2414
  }
1750
- 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 });
1751
- 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 });
1752
2417
  };
1753
2418
  MdsPriceTableFeaturesRow = __decorate([
1754
2419
  ProxyCmp({})
1755
2420
  ], MdsPriceTableFeaturesRow);
1756
- 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: [{
1757
2422
  type: Component,
1758
2423
  args: [{
1759
2424
  selector: 'mds-price-table-features-row',
@@ -1761,6 +2426,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1761
2426
  template: '<ng-content></ng-content>',
1762
2427
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1763
2428
  inputs: [],
2429
+ standalone: false
1764
2430
  }]
1765
2431
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1766
2432
  let MdsPriceTableHeader = class MdsPriceTableHeader {
@@ -1771,13 +2437,13 @@ let MdsPriceTableHeader = class MdsPriceTableHeader {
1771
2437
  c.detach();
1772
2438
  this.el = r.nativeElement;
1773
2439
  }
1774
- 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 });
1775
- 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 });
1776
2442
  };
1777
2443
  MdsPriceTableHeader = __decorate([
1778
2444
  ProxyCmp({})
1779
2445
  ], MdsPriceTableHeader);
1780
- 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: [{
1781
2447
  type: Component,
1782
2448
  args: [{
1783
2449
  selector: 'mds-price-table-header',
@@ -1785,6 +2451,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1785
2451
  template: '<ng-content></ng-content>',
1786
2452
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1787
2453
  inputs: [],
2454
+ standalone: false
1788
2455
  }]
1789
2456
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1790
2457
  let MdsPriceTableList = class MdsPriceTableList {
@@ -1795,13 +2462,13 @@ let MdsPriceTableList = class MdsPriceTableList {
1795
2462
  c.detach();
1796
2463
  this.el = r.nativeElement;
1797
2464
  }
1798
- 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 });
1799
- 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 });
1800
2467
  };
1801
2468
  MdsPriceTableList = __decorate([
1802
2469
  ProxyCmp({})
1803
2470
  ], MdsPriceTableList);
1804
- 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: [{
1805
2472
  type: Component,
1806
2473
  args: [{
1807
2474
  selector: 'mds-price-table-list',
@@ -1809,6 +2476,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1809
2476
  template: '<ng-content></ng-content>',
1810
2477
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1811
2478
  inputs: [],
2479
+ standalone: false
1812
2480
  }]
1813
2481
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1814
2482
  let MdsPriceTableListItem = class MdsPriceTableListItem {
@@ -1819,15 +2487,15 @@ let MdsPriceTableListItem = class MdsPriceTableListItem {
1819
2487
  c.detach();
1820
2488
  this.el = r.nativeElement;
1821
2489
  }
1822
- 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 });
1823
- 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 });
1824
2492
  };
1825
2493
  MdsPriceTableListItem = __decorate([
1826
2494
  ProxyCmp({
1827
2495
  inputs: ['supported', 'typography']
1828
2496
  })
1829
2497
  ], MdsPriceTableListItem);
1830
- 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: [{
1831
2499
  type: Component,
1832
2500
  args: [{
1833
2501
  selector: 'mds-price-table-list-item',
@@ -1835,6 +2503,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1835
2503
  template: '<ng-content></ng-content>',
1836
2504
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1837
2505
  inputs: ['supported', 'typography'],
2506
+ standalone: false
1838
2507
  }]
1839
2508
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1840
2509
  let MdsProgress = class MdsProgress {
@@ -1845,78 +2514,95 @@ let MdsProgress = class MdsProgress {
1845
2514
  c.detach();
1846
2515
  this.el = r.nativeElement;
1847
2516
  }
1848
- 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 });
1849
- 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 });
1850
2519
  };
1851
2520
  MdsProgress = __decorate([
1852
2521
  ProxyCmp({
1853
- inputs: ['direction', 'progress', 'steps', 'variant']
2522
+ inputs: ['direction', 'progress', 'size', 'steps', 'typography', 'variant']
1854
2523
  })
1855
2524
  ], MdsProgress);
1856
- 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: [{
1857
2526
  type: Component,
1858
2527
  args: [{
1859
2528
  selector: 'mds-progress',
1860
2529
  changeDetection: ChangeDetectionStrategy.OnPush,
1861
2530
  template: '<ng-content></ng-content>',
1862
2531
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1863
- inputs: ['direction', 'progress', 'steps', 'variant'],
2532
+ inputs: ['direction', 'progress', 'size', 'steps', 'typography', 'variant'],
2533
+ standalone: false
1864
2534
  }]
1865
2535
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1866
2536
  let MdsPushNotification = class MdsPushNotification {
1867
2537
  z;
1868
2538
  el;
2539
+ mdsPushNotificationChange = new EventEmitter();
2540
+ mdsPushNotificationShow = new EventEmitter();
2541
+ mdsPushNotificationHide = new EventEmitter();
1869
2542
  constructor(c, r, z) {
1870
2543
  this.z = z;
1871
2544
  c.detach();
1872
2545
  this.el = r.nativeElement;
1873
- proxyOutputs(this, this.el, ['mdsPushNotificationClose']);
1874
2546
  }
1875
- 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 });
1876
- 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 });
1877
2549
  };
1878
2550
  MdsPushNotification = __decorate([
1879
2551
  ProxyCmp({
1880
- inputs: ['dateFormat', 'datetime', 'deletable', 'icon', 'initials', 'message', 'preview', 'src', 'subject', 'tone', 'variant'],
1881
- methods: ['updateLang']
2552
+ inputs: ['behavior', 'visible'],
2553
+ methods: ['show', 'hide', 'removeNotification']
1882
2554
  })
1883
2555
  ], MdsPushNotification);
1884
- 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: [{
1885
2557
  type: Component,
1886
2558
  args: [{
1887
2559
  selector: 'mds-push-notification',
1888
2560
  changeDetection: ChangeDetectionStrategy.OnPush,
1889
2561
  template: '<ng-content></ng-content>',
1890
2562
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1891
- inputs: ['dateFormat', 'datetime', 'deletable', 'icon', 'initials', 'message', 'preview', 'src', 'subject', 'tone', 'variant'],
2563
+ inputs: ['behavior', 'visible'],
2564
+ outputs: ['mdsPushNotificationChange', 'mdsPushNotificationShow', 'mdsPushNotificationHide'],
2565
+ standalone: false
1892
2566
  }]
1893
- }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1894
- 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 {
1895
2575
  z;
1896
2576
  el;
2577
+ mdsPushNotificationItemClose = new EventEmitter();
1897
2578
  constructor(c, r, z) {
1898
2579
  this.z = z;
1899
2580
  c.detach();
1900
2581
  this.el = r.nativeElement;
1901
2582
  }
1902
- 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 });
1903
- 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 });
1904
2585
  };
1905
- MdsPushNotifications = __decorate([
2586
+ MdsPushNotificationItem = __decorate([
1906
2587
  ProxyCmp({
1907
- inputs: ['visible']
2588
+ inputs: ['dateFormat', 'datetime', 'deletable', 'icon', 'initials', 'message', 'preview', 'src', 'subject', 'tone', 'variant'],
2589
+ methods: ['updateLang']
1908
2590
  })
1909
- ], MdsPushNotifications);
1910
- 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: [{
1911
2593
  type: Component,
1912
2594
  args: [{
1913
- selector: 'mds-push-notifications',
2595
+ selector: 'mds-push-notification-item',
1914
2596
  changeDetection: ChangeDetectionStrategy.OnPush,
1915
2597
  template: '<ng-content></ng-content>',
1916
2598
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1917
- inputs: ['visible'],
2599
+ inputs: ['dateFormat', 'datetime', 'deletable', 'icon', 'initials', 'message', 'preview', 'src', 'subject', 'tone', 'variant'],
2600
+ outputs: ['mdsPushNotificationItemClose'],
2601
+ standalone: false
1918
2602
  }]
1919
- }], 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
+ }] } });
1920
2606
  let MdsQuote = class MdsQuote {
1921
2607
  z;
1922
2608
  el;
@@ -1925,15 +2611,15 @@ let MdsQuote = class MdsQuote {
1925
2611
  c.detach();
1926
2612
  this.el = r.nativeElement;
1927
2613
  }
1928
- 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 });
1929
- 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 });
1930
2616
  };
1931
2617
  MdsQuote = __decorate([
1932
2618
  ProxyCmp({
1933
2619
  inputs: ['tag', 'typography']
1934
2620
  })
1935
2621
  ], MdsQuote);
1936
- 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: [{
1937
2623
  type: Component,
1938
2624
  args: [{
1939
2625
  selector: 'mds-quote',
@@ -1941,6 +2627,88 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1941
2627
  template: '<ng-content></ng-content>',
1942
2628
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1943
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
1944
2712
  }]
1945
2713
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1946
2714
  let MdsSeparator = class MdsSeparator {
@@ -1951,13 +2719,13 @@ let MdsSeparator = class MdsSeparator {
1951
2719
  c.detach();
1952
2720
  this.el = r.nativeElement;
1953
2721
  }
1954
- 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 });
1955
- 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 });
1956
2724
  };
1957
2725
  MdsSeparator = __decorate([
1958
2726
  ProxyCmp({})
1959
2727
  ], MdsSeparator);
1960
- 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: [{
1961
2729
  type: Component,
1962
2730
  args: [{
1963
2731
  selector: 'mds-separator',
@@ -1965,6 +2733,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1965
2733
  template: '<ng-content></ng-content>',
1966
2734
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1967
2735
  inputs: [],
2736
+ standalone: false
1968
2737
  }]
1969
2738
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1970
2739
  let MdsSpinner = class MdsSpinner {
@@ -1975,15 +2744,15 @@ let MdsSpinner = class MdsSpinner {
1975
2744
  c.detach();
1976
2745
  this.el = r.nativeElement;
1977
2746
  }
1978
- 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 });
1979
- 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 });
1980
2749
  };
1981
2750
  MdsSpinner = __decorate([
1982
2751
  ProxyCmp({
1983
2752
  inputs: ['running']
1984
2753
  })
1985
2754
  ], MdsSpinner);
1986
- 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: [{
1987
2756
  type: Component,
1988
2757
  args: [{
1989
2758
  selector: 'mds-spinner',
@@ -1991,105 +2760,147 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
1991
2760
  template: '<ng-content></ng-content>',
1992
2761
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1993
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
1994
2792
  }]
1995
2793
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1996
2794
  let MdsStepperBar = class MdsStepperBar {
1997
2795
  z;
1998
2796
  el;
2797
+ mdsStepperBarChange = new EventEmitter();
1999
2798
  constructor(c, r, z) {
2000
2799
  this.z = z;
2001
2800
  c.detach();
2002
2801
  this.el = r.nativeElement;
2003
- proxyOutputs(this, this.el, ['mdsStepperBarChange']);
2004
2802
  }
2005
- 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 });
2006
- 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 });
2007
2805
  };
2008
2806
  MdsStepperBar = __decorate([
2009
2807
  ProxyCmp({
2010
- inputs: ['itemsDone']
2808
+ inputs: ['itemsDone', 'navigation']
2011
2809
  })
2012
2810
  ], MdsStepperBar);
2013
- 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: [{
2014
2812
  type: Component,
2015
2813
  args: [{
2016
2814
  selector: 'mds-stepper-bar',
2017
2815
  changeDetection: ChangeDetectionStrategy.OnPush,
2018
2816
  template: '<ng-content></ng-content>',
2019
2817
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2020
- inputs: ['itemsDone'],
2818
+ inputs: ['itemsDone', 'navigation'],
2819
+ outputs: ['mdsStepperBarChange'],
2820
+ standalone: false
2021
2821
  }]
2022
- }], 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
+ }] } });
2023
2825
  let MdsStepperBarItem = class MdsStepperBarItem {
2024
2826
  z;
2025
2827
  el;
2828
+ mdsStepperBarItemDone = new EventEmitter();
2026
2829
  constructor(c, r, z) {
2027
2830
  this.z = z;
2028
2831
  c.detach();
2029
2832
  this.el = r.nativeElement;
2030
- proxyOutputs(this, this.el, ['mdsStepperBarItemDone']);
2031
2833
  }
2032
- 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 });
2033
- 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 });
2034
2836
  };
2035
2837
  MdsStepperBarItem = __decorate([
2036
2838
  ProxyCmp({
2037
- inputs: ['badge', 'current', 'done', 'icon', 'iconChecked', 'label', 'step', 'typography', 'value']
2839
+ inputs: ['badge', 'current', 'done', 'icon', 'iconChecked', 'label', 'step', 'typography', 'value'],
2840
+ methods: ['updateLang']
2038
2841
  })
2039
2842
  ], MdsStepperBarItem);
2040
- 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: [{
2041
2844
  type: Component,
2042
2845
  args: [{
2043
2846
  selector: 'mds-stepper-bar-item',
2044
2847
  changeDetection: ChangeDetectionStrategy.OnPush,
2045
2848
  template: '<ng-content></ng-content>',
2046
2849
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2047
- 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
2048
2853
  }]
2049
- }], 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
+ }] } });
2050
2857
  let MdsTab = class MdsTab {
2051
2858
  z;
2052
2859
  el;
2860
+ mdsTabChange = new EventEmitter();
2053
2861
  constructor(c, r, z) {
2054
2862
  this.z = z;
2055
2863
  c.detach();
2056
2864
  this.el = r.nativeElement;
2057
- proxyOutputs(this, this.el, ['mdsTabChange']);
2058
2865
  }
2059
- 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 });
2060
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsTab, selector: "mds-tab", inputs: { animation: "animation", fill: "fill", 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 });
2061
2868
  };
2062
2869
  MdsTab = __decorate([
2063
2870
  ProxyCmp({
2064
- inputs: ['animation', 'fill', 'scrollbar']
2871
+ inputs: ['animation', 'direction', 'fill', 'overflow', 'scrollbar', 'size']
2065
2872
  })
2066
2873
  ], MdsTab);
2067
- 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: [{
2068
2875
  type: Component,
2069
2876
  args: [{
2070
2877
  selector: 'mds-tab',
2071
2878
  changeDetection: ChangeDetectionStrategy.OnPush,
2072
2879
  template: '<ng-content></ng-content>',
2073
2880
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2074
- inputs: ['animation', 'fill', 'scrollbar'],
2881
+ inputs: ['animation', 'direction', 'fill', 'overflow', 'scrollbar', 'size'],
2882
+ outputs: ['mdsTabChange'],
2883
+ standalone: false
2075
2884
  }]
2076
- }], 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
+ }] } });
2077
2888
  let MdsTabBar = class MdsTabBar {
2078
2889
  z;
2079
2890
  el;
2891
+ mdsTabBarChange = new EventEmitter();
2080
2892
  constructor(c, r, z) {
2081
2893
  this.z = z;
2082
2894
  c.detach();
2083
2895
  this.el = r.nativeElement;
2084
- proxyOutputs(this, this.el, ['mdsTabBarChange']);
2085
2896
  }
2086
- 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 });
2087
- 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 });
2088
2899
  };
2089
2900
  MdsTabBar = __decorate([
2090
2901
  ProxyCmp({})
2091
2902
  ], MdsTabBar);
2092
- 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: [{
2093
2904
  type: Component,
2094
2905
  args: [{
2095
2906
  selector: 'mds-tab-bar',
@@ -2097,73 +2908,88 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2097
2908
  template: '<ng-content></ng-content>',
2098
2909
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2099
2910
  inputs: [],
2911
+ outputs: ['mdsTabBarChange'],
2912
+ standalone: false
2100
2913
  }]
2101
- }], 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
+ }] } });
2102
2917
  let MdsTabBarItem = class MdsTabBarItem {
2103
2918
  z;
2104
2919
  el;
2920
+ mdsTabBarItemSelect = new EventEmitter();
2105
2921
  constructor(c, r, z) {
2106
2922
  this.z = z;
2107
2923
  c.detach();
2108
2924
  this.el = r.nativeElement;
2109
- proxyOutputs(this, this.el, ['mdsTabBarItemSelect']);
2110
2925
  }
2111
- 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 });
2112
- 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 });
2113
2928
  };
2114
2929
  MdsTabBarItem = __decorate([
2115
2930
  ProxyCmp({
2116
- inputs: ['icon', 'selected', 'typography']
2931
+ inputs: ['icon', 'label', 'selected', 'typography']
2117
2932
  })
2118
2933
  ], MdsTabBarItem);
2119
- 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: [{
2120
2935
  type: Component,
2121
2936
  args: [{
2122
2937
  selector: 'mds-tab-bar-item',
2123
2938
  changeDetection: ChangeDetectionStrategy.OnPush,
2124
2939
  template: '<ng-content></ng-content>',
2125
2940
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2126
- inputs: ['icon', 'selected', 'typography'],
2941
+ inputs: ['icon', 'label', 'selected', 'typography'],
2942
+ outputs: ['mdsTabBarItemSelect'],
2943
+ standalone: false
2127
2944
  }]
2128
- }], 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
+ }] } });
2129
2948
  let MdsTabItem = class MdsTabItem {
2130
2949
  z;
2131
2950
  el;
2951
+ mdsTabItemSelect = new EventEmitter();
2952
+ mdsTabItemFocus = new EventEmitter();
2132
2953
  constructor(c, r, z) {
2133
2954
  this.z = z;
2134
2955
  c.detach();
2135
2956
  this.el = r.nativeElement;
2136
- proxyOutputs(this, this.el, ['mdsTabItemSelect', 'mdsTabItemFocus']);
2137
2957
  }
2138
- 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 });
2139
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: MdsTabItem, selector: "mds-tab-item", inputs: { 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 });
2140
2960
  };
2141
2961
  MdsTabItem = __decorate([
2142
2962
  ProxyCmp({
2143
- inputs: ['href', 'icon', 'iconPosition', 'selected', 'size', 'type', 'value']
2963
+ inputs: ['await', 'disabled', 'href', 'icon', 'iconPosition', 'label', 'selected', 'size', 'type', 'value']
2144
2964
  })
2145
2965
  ], MdsTabItem);
2146
- 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: [{
2147
2967
  type: Component,
2148
2968
  args: [{
2149
2969
  selector: 'mds-tab-item',
2150
2970
  changeDetection: ChangeDetectionStrategy.OnPush,
2151
2971
  template: '<ng-content></ng-content>',
2152
2972
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2153
- inputs: ['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
2154
2976
  }]
2155
- }], 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
+ }] } });
2156
2982
  let MdsTable = class MdsTable {
2157
2983
  z;
2158
2984
  el;
2985
+ mdsTableSelectionChange = new EventEmitter();
2159
2986
  constructor(c, r, z) {
2160
2987
  this.z = z;
2161
2988
  c.detach();
2162
2989
  this.el = r.nativeElement;
2163
- proxyOutputs(this, this.el, ['mdsTableSelectionChange']);
2164
2990
  }
2165
- 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 });
2166
- 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 });
2167
2993
  };
2168
2994
  MdsTable = __decorate([
2169
2995
  ProxyCmp({
@@ -2171,7 +2997,7 @@ MdsTable = __decorate([
2171
2997
  methods: ['updateSelection', 'selectAll']
2172
2998
  })
2173
2999
  ], MdsTable);
2174
- 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: [{
2175
3001
  type: Component,
2176
3002
  args: [{
2177
3003
  selector: 'mds-table',
@@ -2179,8 +3005,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2179
3005
  template: '<ng-content></ng-content>',
2180
3006
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2181
3007
  inputs: ['interactive', 'selectable', 'selection'],
3008
+ outputs: ['mdsTableSelectionChange'],
3009
+ standalone: false
2182
3010
  }]
2183
- }], 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
+ }] } });
2184
3014
  let MdsTableBody = class MdsTableBody {
2185
3015
  z;
2186
3016
  el;
@@ -2189,15 +3019,15 @@ let MdsTableBody = class MdsTableBody {
2189
3019
  c.detach();
2190
3020
  this.el = r.nativeElement;
2191
3021
  }
2192
- 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 });
2193
- 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 });
2194
3024
  };
2195
3025
  MdsTableBody = __decorate([
2196
3026
  ProxyCmp({
2197
3027
  inputs: ['interactive', 'selection']
2198
3028
  })
2199
3029
  ], MdsTableBody);
2200
- 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: [{
2201
3031
  type: Component,
2202
3032
  args: [{
2203
3033
  selector: 'mds-table-body',
@@ -2205,6 +3035,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2205
3035
  template: '<ng-content></ng-content>',
2206
3036
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2207
3037
  inputs: ['interactive', 'selection'],
3038
+ standalone: false
2208
3039
  }]
2209
3040
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2210
3041
  let MdsTableCell = class MdsTableCell {
@@ -2215,15 +3046,15 @@ let MdsTableCell = class MdsTableCell {
2215
3046
  c.detach();
2216
3047
  this.el = r.nativeElement;
2217
3048
  }
2218
- 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 });
2219
- 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 });
2220
3051
  };
2221
3052
  MdsTableCell = __decorate([
2222
3053
  ProxyCmp({
2223
3054
  inputs: ['value']
2224
3055
  })
2225
3056
  ], MdsTableCell);
2226
- 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: [{
2227
3058
  type: Component,
2228
3059
  args: [{
2229
3060
  selector: 'mds-table-cell',
@@ -2231,6 +3062,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2231
3062
  template: '<ng-content></ng-content>',
2232
3063
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2233
3064
  inputs: ['value'],
3065
+ standalone: false
2234
3066
  }]
2235
3067
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2236
3068
  let MdsTableFooter = class MdsTableFooter {
@@ -2241,13 +3073,13 @@ let MdsTableFooter = class MdsTableFooter {
2241
3073
  c.detach();
2242
3074
  this.el = r.nativeElement;
2243
3075
  }
2244
- 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 });
2245
- 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 });
2246
3078
  };
2247
3079
  MdsTableFooter = __decorate([
2248
3080
  ProxyCmp({})
2249
3081
  ], MdsTableFooter);
2250
- 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: [{
2251
3083
  type: Component,
2252
3084
  args: [{
2253
3085
  selector: 'mds-table-footer',
@@ -2255,6 +3087,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2255
3087
  template: '<ng-content></ng-content>',
2256
3088
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2257
3089
  inputs: [],
3090
+ standalone: false
2258
3091
  }]
2259
3092
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2260
3093
  let MdsTableHeader = class MdsTableHeader {
@@ -2265,8 +3098,8 @@ let MdsTableHeader = class MdsTableHeader {
2265
3098
  c.detach();
2266
3099
  this.el = r.nativeElement;
2267
3100
  }
2268
- 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 });
2269
- 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 });
2270
3103
  };
2271
3104
  MdsTableHeader = __decorate([
2272
3105
  ProxyCmp({
@@ -2274,7 +3107,7 @@ MdsTableHeader = __decorate([
2274
3107
  methods: ['updateLang', 'setSelection']
2275
3108
  })
2276
3109
  ], MdsTableHeader);
2277
- 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: [{
2278
3111
  type: Component,
2279
3112
  args: [{
2280
3113
  selector: 'mds-table-header',
@@ -2282,6 +3115,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2282
3115
  template: '<ng-content></ng-content>',
2283
3116
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2284
3117
  inputs: ['selectable'],
3118
+ standalone: false
2285
3119
  }]
2286
3120
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2287
3121
  let MdsTableHeaderCell = class MdsTableHeaderCell {
@@ -2292,15 +3126,15 @@ let MdsTableHeaderCell = class MdsTableHeaderCell {
2292
3126
  c.detach();
2293
3127
  this.el = r.nativeElement;
2294
3128
  }
2295
- 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 });
2296
- 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 });
2297
3131
  };
2298
3132
  MdsTableHeaderCell = __decorate([
2299
3133
  ProxyCmp({
2300
3134
  inputs: ['direction', 'label', 'sortable']
2301
3135
  })
2302
3136
  ], MdsTableHeaderCell);
2303
- 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: [{
2304
3138
  type: Component,
2305
3139
  args: [{
2306
3140
  selector: 'mds-table-header-cell',
@@ -2308,6 +3142,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2308
3142
  template: '<ng-content></ng-content>',
2309
3143
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2310
3144
  inputs: ['direction', 'label', 'sortable'],
3145
+ standalone: false
2311
3146
  }]
2312
3147
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2313
3148
  let MdsTableRow = class MdsTableRow {
@@ -2318,8 +3153,8 @@ let MdsTableRow = class MdsTableRow {
2318
3153
  c.detach();
2319
3154
  this.el = r.nativeElement;
2320
3155
  }
2321
- 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 });
2322
- 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 });
2323
3158
  };
2324
3159
  MdsTableRow = __decorate([
2325
3160
  ProxyCmp({
@@ -2327,7 +3162,7 @@ MdsTableRow = __decorate([
2327
3162
  methods: ['updateLang']
2328
3163
  })
2329
3164
  ], MdsTableRow);
2330
- 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: [{
2331
3166
  type: Component,
2332
3167
  args: [{
2333
3168
  selector: 'mds-table-row',
@@ -2335,6 +3170,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2335
3170
  template: '<ng-content></ng-content>',
2336
3171
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2337
3172
  inputs: ['interactive', 'overlayActions', 'selectable', 'selected', 'value'],
3173
+ standalone: false
2338
3174
  }]
2339
3175
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2340
3176
  let MdsText = class MdsText {
@@ -2345,15 +3181,15 @@ let MdsText = class MdsText {
2345
3181
  c.detach();
2346
3182
  this.el = r.nativeElement;
2347
3183
  }
2348
- 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 });
2349
- 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 });
2350
3186
  };
2351
3187
  MdsText = __decorate([
2352
3188
  ProxyCmp({
2353
3189
  inputs: ['animation', 'tag', 'text', 'truncate', 'typography', 'variant']
2354
3190
  })
2355
3191
  ], MdsText);
2356
- 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: [{
2357
3193
  type: Component,
2358
3194
  args: [{
2359
3195
  selector: 'mds-text',
@@ -2361,26 +3197,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2361
3197
  template: '<ng-content></ng-content>',
2362
3198
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2363
3199
  inputs: ['animation', 'tag', 'text', 'truncate', 'typography', 'variant'],
3200
+ standalone: false
2364
3201
  }]
2365
3202
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2366
3203
  let MdsToast = class MdsToast {
2367
3204
  z;
2368
3205
  el;
3206
+ mdsToastClose = new EventEmitter();
2369
3207
  constructor(c, r, z) {
2370
3208
  this.z = z;
2371
3209
  c.detach();
2372
3210
  this.el = r.nativeElement;
2373
- proxyOutputs(this, this.el, ['mdsToastClose']);
2374
3211
  }
2375
- 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 });
2376
- 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 });
2377
3214
  };
2378
3215
  MdsToast = __decorate([
2379
3216
  ProxyCmp({
2380
3217
  inputs: ['duration', 'position', 'tone', 'variant', 'visible']
2381
3218
  })
2382
3219
  ], MdsToast);
2383
- 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: [{
2384
3221
  type: Component,
2385
3222
  args: [{
2386
3223
  selector: 'mds-toast',
@@ -2388,8 +3225,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2388
3225
  template: '<ng-content></ng-content>',
2389
3226
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2390
3227
  inputs: ['duration', 'position', 'tone', 'variant', 'visible'],
3228
+ outputs: ['mdsToastClose'],
3229
+ standalone: false
2391
3230
  }]
2392
- }], 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
+ }] } });
2393
3234
  let MdsTooltip = class MdsTooltip {
2394
3235
  z;
2395
3236
  el;
@@ -2398,22 +3239,23 @@ let MdsTooltip = class MdsTooltip {
2398
3239
  c.detach();
2399
3240
  this.el = r.nativeElement;
2400
3241
  }
2401
- 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 });
2402
- 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 });
2403
3244
  };
2404
3245
  MdsTooltip = __decorate([
2405
3246
  ProxyCmp({
2406
3247
  inputs: ['autoPlacement', 'flip', 'offset', 'placement', 'shift', 'shiftPadding', 'strategy', 'target', 'typography', 'visible']
2407
3248
  })
2408
3249
  ], MdsTooltip);
2409
- 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: [{
2410
3251
  type: Component,
2411
3252
  args: [{
2412
3253
  selector: 'mds-tooltip',
2413
3254
  changeDetection: ChangeDetectionStrategy.OnPush,
2414
3255
  template: '<ng-content></ng-content>',
2415
3256
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2416
- 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
2417
3259
  }]
2418
3260
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2419
3261
  let MdsTree = class MdsTree {
@@ -2424,15 +3266,15 @@ let MdsTree = class MdsTree {
2424
3266
  c.detach();
2425
3267
  this.el = r.nativeElement;
2426
3268
  }
2427
- 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 });
2428
- 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 });
2429
3271
  };
2430
3272
  MdsTree = __decorate([
2431
3273
  ProxyCmp({
2432
3274
  inputs: ['actions', 'appearance', 'async', 'expanded', 'label', 'toggle', 'togglePosition', 'truncate']
2433
3275
  })
2434
3276
  ], MdsTree);
2435
- 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: [{
2436
3278
  type: Component,
2437
3279
  args: [{
2438
3280
  selector: 'mds-tree',
@@ -2440,19 +3282,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2440
3282
  template: '<ng-content></ng-content>',
2441
3283
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2442
3284
  inputs: ['actions', 'appearance', 'async', 'expanded', 'label', 'toggle', 'togglePosition', 'truncate'],
3285
+ standalone: false
2443
3286
  }]
2444
3287
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2445
3288
  let MdsTreeItem = class MdsTreeItem {
2446
3289
  z;
2447
3290
  el;
3291
+ mdsTreeItemExpand = new EventEmitter();
3292
+ mdsTreeItemCollapse = new EventEmitter();
2448
3293
  constructor(c, r, z) {
2449
3294
  this.z = z;
2450
3295
  c.detach();
2451
3296
  this.el = r.nativeElement;
2452
- proxyOutputs(this, this.el, ['mdsTreeItemExpand', 'mdsTreeItemCollapse']);
2453
3297
  }
2454
- 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 });
2455
- 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 });
2456
3300
  };
2457
3301
  MdsTreeItem = __decorate([
2458
3302
  ProxyCmp({
@@ -2460,7 +3304,7 @@ MdsTreeItem = __decorate([
2460
3304
  methods: ['updateLang', 'expand']
2461
3305
  })
2462
3306
  ], MdsTreeItem);
2463
- 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: [{
2464
3308
  type: Component,
2465
3309
  args: [{
2466
3310
  selector: 'mds-tree-item',
@@ -2468,36 +3312,46 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2468
3312
  template: '<ng-content></ng-content>',
2469
3313
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2470
3314
  inputs: ['actions', 'async', 'depth', 'expanded', 'icon', 'label', 'toggle', 'truncate'],
2471
- }]
2472
- }], 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
+ }] } });
2473
3323
  let MdsUrlView = class MdsUrlView {
2474
3324
  z;
2475
3325
  el;
3326
+ mdsUrlViewClose = new EventEmitter();
2476
3327
  constructor(c, r, z) {
2477
3328
  this.z = z;
2478
3329
  c.detach();
2479
3330
  this.el = r.nativeElement;
2480
- proxyOutputs(this, this.el, ['mdsUrlViewClose']);
2481
3331
  }
2482
- 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 });
2483
- 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 });
2484
3334
  };
2485
3335
  MdsUrlView = __decorate([
2486
3336
  ProxyCmp({
2487
- inputs: ['domain', 'loading', 'src'],
3337
+ inputs: ['icon', 'label', 'loading', 'src'],
2488
3338
  methods: ['updateLang']
2489
3339
  })
2490
3340
  ], MdsUrlView);
2491
- 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: [{
2492
3342
  type: Component,
2493
3343
  args: [{
2494
3344
  selector: 'mds-url-view',
2495
3345
  changeDetection: ChangeDetectionStrategy.OnPush,
2496
3346
  template: '<ng-content></ng-content>',
2497
3347
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2498
- inputs: ['domain', 'loading', 'src'],
3348
+ inputs: ['icon', 'label', 'loading', { name: 'src', required: true }],
3349
+ outputs: ['mdsUrlViewClose'],
3350
+ standalone: false
2499
3351
  }]
2500
- }], 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
+ }] } });
2501
3355
  let MdsUsage = class MdsUsage {
2502
3356
  z;
2503
3357
  el;
@@ -2506,15 +3360,16 @@ let MdsUsage = class MdsUsage {
2506
3360
  c.detach();
2507
3361
  this.el = r.nativeElement;
2508
3362
  }
2509
- 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 });
2510
- 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 });
2511
3365
  };
2512
3366
  MdsUsage = __decorate([
2513
3367
  ProxyCmp({
2514
- inputs: ['alias', 'variant']
3368
+ inputs: ['alias', 'variant'],
3369
+ methods: ['updateLang']
2515
3370
  })
2516
3371
  ], MdsUsage);
2517
- 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: [{
2518
3373
  type: Component,
2519
3374
  args: [{
2520
3375
  selector: 'mds-usage',
@@ -2522,6 +3377,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2522
3377
  template: '<ng-content></ng-content>',
2523
3378
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2524
3379
  inputs: ['alias', 'variant'],
3380
+ standalone: false
2525
3381
  }]
2526
3382
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2527
3383
  let MdsVideoWall = class MdsVideoWall {
@@ -2532,15 +3388,15 @@ let MdsVideoWall = class MdsVideoWall {
2532
3388
  c.detach();
2533
3389
  this.el = r.nativeElement;
2534
3390
  }
2535
- 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 });
2536
- 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 });
2537
3393
  };
2538
3394
  MdsVideoWall = __decorate([
2539
3395
  ProxyCmp({
2540
3396
  inputs: ['autoplay', 'loop', 'muted', 'noise', 'poster', 'preload', 'src']
2541
3397
  })
2542
3398
  ], MdsVideoWall);
2543
- 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: [{
2544
3400
  type: Component,
2545
3401
  args: [{
2546
3402
  selector: 'mds-video-wall',
@@ -2548,6 +3404,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2548
3404
  template: '<ng-content></ng-content>',
2549
3405
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2550
3406
  inputs: ['autoplay', 'loop', 'muted', 'noise', 'poster', 'preload', 'src'],
3407
+ standalone: false
2551
3408
  }]
2552
3409
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2553
3410
  let MdsZero = class MdsZero {
@@ -2558,13 +3415,13 @@ let MdsZero = class MdsZero {
2558
3415
  c.detach();
2559
3416
  this.el = r.nativeElement;
2560
3417
  }
2561
- 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 });
2562
- 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 });
2563
3420
  };
2564
3421
  MdsZero = __decorate([
2565
3422
  ProxyCmp({})
2566
3423
  ], MdsZero);
2567
- 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: [{
2568
3425
  type: Component,
2569
3426
  args: [{
2570
3427
  selector: 'mds-zero',
@@ -2572,6 +3429,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2572
3429
  template: '<ng-content></ng-content>',
2573
3430
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2574
3431
  inputs: [],
3432
+ standalone: false
2575
3433
  }]
2576
3434
  }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2577
3435
 
@@ -2582,6 +3440,8 @@ const DIRECTIVES = [
2582
3440
  MdsAccordionTimerItem,
2583
3441
  MdsAuthor,
2584
3442
  MdsAvatar,
3443
+ MdsAvatarStack,
3444
+ MdsAvatarStackItem,
2585
3445
  MdsBadge,
2586
3446
  MdsBanner,
2587
3447
  MdsBenchmarkBar,
@@ -2589,6 +3449,10 @@ const DIRECTIVES = [
2589
3449
  MdsBreadcrumb,
2590
3450
  MdsBreadcrumbItem,
2591
3451
  MdsButton,
3452
+ MdsButtonDropdown,
3453
+ MdsButtonGroup,
3454
+ MdsCalendar,
3455
+ MdsCalendarCell,
2592
3456
  MdsCard,
2593
3457
  MdsCardContent,
2594
3458
  MdsCardFooter,
@@ -2597,6 +3461,7 @@ const DIRECTIVES = [
2597
3461
  MdsChip,
2598
3462
  MdsDetails,
2599
3463
  MdsDropdown,
3464
+ MdsEmoji,
2600
3465
  MdsEntity,
2601
3466
  MdsFile,
2602
3467
  MdsFilePreview,
@@ -2610,7 +3475,11 @@ const DIRECTIVES = [
2610
3475
  MdsIcon,
2611
3476
  MdsImg,
2612
3477
  MdsInput,
3478
+ MdsInputDate,
3479
+ MdsInputDateRange,
3480
+ MdsInputDateRangePreselection,
2613
3481
  MdsInputField,
3482
+ MdsInputOtp,
2614
3483
  MdsInputRange,
2615
3484
  MdsInputSelect,
2616
3485
  MdsInputSwitch,
@@ -2624,11 +3493,13 @@ const DIRECTIVES = [
2624
3493
  MdsLabel,
2625
3494
  MdsList,
2626
3495
  MdsListItem,
3496
+ MdsMention,
2627
3497
  MdsModal,
2628
3498
  MdsNote,
2629
3499
  MdsNotification,
2630
3500
  MdsPaginator,
2631
3501
  MdsPaginatorItem,
3502
+ MdsPolicyAi,
2632
3503
  MdsPref,
2633
3504
  MdsPrefAnimation,
2634
3505
  MdsPrefConsumption,
@@ -2636,6 +3507,8 @@ const DIRECTIVES = [
2636
3507
  MdsPrefLanguage,
2637
3508
  MdsPrefLanguageItem,
2638
3509
  MdsPrefTheme,
3510
+ MdsPrefThemeVariant,
3511
+ MdsPrefThemeVariantItem,
2639
3512
  MdsPriceTable,
2640
3513
  MdsPriceTableFeatures,
2641
3514
  MdsPriceTableFeaturesCell,
@@ -2645,10 +3518,14 @@ const DIRECTIVES = [
2645
3518
  MdsPriceTableListItem,
2646
3519
  MdsProgress,
2647
3520
  MdsPushNotification,
2648
- MdsPushNotifications,
3521
+ MdsPushNotificationItem,
2649
3522
  MdsQuote,
3523
+ MdsRadialMenu,
3524
+ MdsRadialMenuItem,
3525
+ MdsRadialProgress,
2650
3526
  MdsSeparator,
2651
3527
  MdsSpinner,
3528
+ MdsStatusBar,
2652
3529
  MdsStepperBar,
2653
3530
  MdsStepperBarItem,
2654
3531
  MdsTab,
@@ -2686,11 +3563,11 @@ class MagmaModule {
2686
3563
  ],
2687
3564
  };
2688
3565
  }
2689
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MagmaModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
2690
- 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] });
2691
- 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 });
2692
3569
  }
2693
- 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: [{
2694
3571
  type: NgModule,
2695
3572
  args: [{
2696
3573
  declarations: [...DIRECTIVES],
@@ -2706,5 +3583,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
2706
3583
  * Generated bundle index. Do not edit.
2707
3584
  */
2708
3585
 
2709
- 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 };
2710
3587
  //# sourceMappingURL=maggioli-design-system-magma-angular.mjs.map