@maggioli-design-system/magma-angular 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +24 -0
- package/esm2022/lib/component-library.module.mjs +31 -0
- package/esm2022/maggioli-design-system-magma-angular.mjs +5 -0
- package/esm2022/public-api.mjs +7 -0
- package/esm2022/stencil-generated/angular-component-lib/utils.mjs +59 -0
- package/esm2022/stencil-generated/components.mjs +2503 -0
- package/esm2022/stencil-generated/index.mjs +96 -0
- package/fesm2022/maggioli-design-system-magma-angular.mjs +2600 -0
- package/fesm2022/maggioli-design-system-magma-angular.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/component-library.module.d.ts +7 -0
- package/package.json +26 -0
- package/public-api.d.ts +3 -0
- package/stencil-generated/angular-component-lib/utils.d.ts +9 -0
- package/stencil-generated/components.d.ts +1116 -0
- package/stencil-generated/index.d.ts +2 -0
|
@@ -0,0 +1,2600 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, APP_INITIALIZER, NgModule } from '@angular/core';
|
|
3
|
+
import { defineCustomElements } from '@maggioli-design-system/magma/loader';
|
|
4
|
+
import { __decorate } from 'tslib';
|
|
5
|
+
import { fromEvent } from 'rxjs';
|
|
6
|
+
|
|
7
|
+
/* eslint-disable */
|
|
8
|
+
/* tslint:disable */
|
|
9
|
+
const proxyInputs = (Cmp, inputs) => {
|
|
10
|
+
const Prototype = Cmp.prototype;
|
|
11
|
+
inputs.forEach((item) => {
|
|
12
|
+
Object.defineProperty(Prototype, item, {
|
|
13
|
+
get() {
|
|
14
|
+
return this.el[item];
|
|
15
|
+
},
|
|
16
|
+
set(val) {
|
|
17
|
+
this.z.runOutsideAngular(() => (this.el[item] = val));
|
|
18
|
+
},
|
|
19
|
+
/**
|
|
20
|
+
* In the event that proxyInputs is called
|
|
21
|
+
* multiple times re-defining these inputs
|
|
22
|
+
* will cause an error to be thrown. As a result
|
|
23
|
+
* we set configurable: true to indicate these
|
|
24
|
+
* properties can be changed.
|
|
25
|
+
*/
|
|
26
|
+
configurable: true,
|
|
27
|
+
});
|
|
28
|
+
});
|
|
29
|
+
};
|
|
30
|
+
const proxyMethods = (Cmp, methods) => {
|
|
31
|
+
const Prototype = Cmp.prototype;
|
|
32
|
+
methods.forEach((methodName) => {
|
|
33
|
+
Prototype[methodName] = function () {
|
|
34
|
+
const args = arguments;
|
|
35
|
+
return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
|
|
36
|
+
};
|
|
37
|
+
});
|
|
38
|
+
};
|
|
39
|
+
const proxyOutputs = (instance, el, events) => {
|
|
40
|
+
events.forEach((eventName) => (instance[eventName] = fromEvent(el, eventName)));
|
|
41
|
+
};
|
|
42
|
+
const defineCustomElement = (tagName, customElement) => {
|
|
43
|
+
if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {
|
|
44
|
+
customElements.define(tagName, customElement);
|
|
45
|
+
}
|
|
46
|
+
};
|
|
47
|
+
// tslint:disable-next-line: only-arrow-functions
|
|
48
|
+
function ProxyCmp(opts) {
|
|
49
|
+
const decorator = function (cls) {
|
|
50
|
+
const { defineCustomElementFn, inputs, methods } = opts;
|
|
51
|
+
if (defineCustomElementFn !== undefined) {
|
|
52
|
+
defineCustomElementFn();
|
|
53
|
+
}
|
|
54
|
+
if (inputs) {
|
|
55
|
+
proxyInputs(cls, inputs);
|
|
56
|
+
}
|
|
57
|
+
if (methods) {
|
|
58
|
+
proxyMethods(cls, methods);
|
|
59
|
+
}
|
|
60
|
+
return cls;
|
|
61
|
+
};
|
|
62
|
+
return decorator;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
let MdsAccordion = class MdsAccordion {
|
|
66
|
+
z;
|
|
67
|
+
el;
|
|
68
|
+
constructor(c, r, z) {
|
|
69
|
+
this.z = z;
|
|
70
|
+
c.detach();
|
|
71
|
+
this.el = r.nativeElement;
|
|
72
|
+
proxyOutputs(this, this.el, ['mdsAccordionChange']);
|
|
73
|
+
}
|
|
74
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", 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.12", type: MdsAccordion, selector: "mds-accordion", inputs: { closable: "closable", multiple: "multiple" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
76
|
+
};
|
|
77
|
+
MdsAccordion = __decorate([
|
|
78
|
+
ProxyCmp({
|
|
79
|
+
inputs: ['closable', 'multiple']
|
|
80
|
+
})
|
|
81
|
+
], MdsAccordion);
|
|
82
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsAccordion, decorators: [{
|
|
83
|
+
type: Component,
|
|
84
|
+
args: [{
|
|
85
|
+
selector: 'mds-accordion',
|
|
86
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
87
|
+
template: '<ng-content></ng-content>',
|
|
88
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
89
|
+
inputs: ['closable', 'multiple'],
|
|
90
|
+
}]
|
|
91
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
92
|
+
let MdsAccordionItem = class MdsAccordionItem {
|
|
93
|
+
z;
|
|
94
|
+
el;
|
|
95
|
+
constructor(c, r, z) {
|
|
96
|
+
this.z = z;
|
|
97
|
+
c.detach();
|
|
98
|
+
this.el = r.nativeElement;
|
|
99
|
+
proxyOutputs(this, this.el, ['mdsAccordionItemSelect', 'mdsAccordionItemUnselect', 'mdsAccordionItemChange']);
|
|
100
|
+
}
|
|
101
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", 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.12", 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 });
|
|
103
|
+
};
|
|
104
|
+
MdsAccordionItem = __decorate([
|
|
105
|
+
ProxyCmp({
|
|
106
|
+
inputs: ['label', 'selected', 'typography']
|
|
107
|
+
})
|
|
108
|
+
], MdsAccordionItem);
|
|
109
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsAccordionItem, decorators: [{
|
|
110
|
+
type: Component,
|
|
111
|
+
args: [{
|
|
112
|
+
selector: 'mds-accordion-item',
|
|
113
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
114
|
+
template: '<ng-content></ng-content>',
|
|
115
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
116
|
+
inputs: ['label', 'selected', 'typography'],
|
|
117
|
+
}]
|
|
118
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
119
|
+
let MdsAccordionTimer = class MdsAccordionTimer {
|
|
120
|
+
z;
|
|
121
|
+
el;
|
|
122
|
+
constructor(c, r, z) {
|
|
123
|
+
this.z = z;
|
|
124
|
+
c.detach();
|
|
125
|
+
this.el = r.nativeElement;
|
|
126
|
+
proxyOutputs(this, this.el, ['mdsAccordionTimerChange']);
|
|
127
|
+
}
|
|
128
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", 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.12", type: MdsAccordionTimer, selector: "mds-accordion-timer", inputs: { duration: "duration", paused: "paused" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
130
|
+
};
|
|
131
|
+
MdsAccordionTimer = __decorate([
|
|
132
|
+
ProxyCmp({
|
|
133
|
+
inputs: ['duration', 'paused']
|
|
134
|
+
})
|
|
135
|
+
], MdsAccordionTimer);
|
|
136
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsAccordionTimer, decorators: [{
|
|
137
|
+
type: Component,
|
|
138
|
+
args: [{
|
|
139
|
+
selector: 'mds-accordion-timer',
|
|
140
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
141
|
+
template: '<ng-content></ng-content>',
|
|
142
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
143
|
+
inputs: ['duration', 'paused'],
|
|
144
|
+
}]
|
|
145
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
146
|
+
let MdsAccordionTimerItem = class MdsAccordionTimerItem {
|
|
147
|
+
z;
|
|
148
|
+
el;
|
|
149
|
+
constructor(c, r, z) {
|
|
150
|
+
this.z = z;
|
|
151
|
+
c.detach();
|
|
152
|
+
this.el = r.nativeElement;
|
|
153
|
+
proxyOutputs(this, this.el, ['mdsAccordionTimerItemClickSelect', 'mdsAccordionTimerItemSelect', 'mdsAccordionTimerItemMouseEnterSelect', 'mdsAccordionTimerItemMouseLeaveSelect']);
|
|
154
|
+
}
|
|
155
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", 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.12", 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 });
|
|
157
|
+
};
|
|
158
|
+
MdsAccordionTimerItem = __decorate([
|
|
159
|
+
ProxyCmp({
|
|
160
|
+
inputs: ['description', 'duration', 'progress', 'selected', 'typography', 'uuid']
|
|
161
|
+
})
|
|
162
|
+
], MdsAccordionTimerItem);
|
|
163
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsAccordionTimerItem, decorators: [{
|
|
164
|
+
type: Component,
|
|
165
|
+
args: [{
|
|
166
|
+
selector: 'mds-accordion-timer-item',
|
|
167
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
168
|
+
template: '<ng-content></ng-content>',
|
|
169
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
170
|
+
inputs: ['description', 'duration', 'progress', 'selected', 'typography', 'uuid'],
|
|
171
|
+
}]
|
|
172
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
173
|
+
let MdsAuthor = class MdsAuthor {
|
|
174
|
+
z;
|
|
175
|
+
el;
|
|
176
|
+
constructor(c, r, z) {
|
|
177
|
+
this.z = z;
|
|
178
|
+
c.detach();
|
|
179
|
+
this.el = r.nativeElement;
|
|
180
|
+
}
|
|
181
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", 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.12", type: MdsAuthor, selector: "mds-author", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
183
|
+
};
|
|
184
|
+
MdsAuthor = __decorate([
|
|
185
|
+
ProxyCmp({})
|
|
186
|
+
], MdsAuthor);
|
|
187
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsAuthor, decorators: [{
|
|
188
|
+
type: Component,
|
|
189
|
+
args: [{
|
|
190
|
+
selector: 'mds-author',
|
|
191
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
192
|
+
template: '<ng-content></ng-content>',
|
|
193
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
194
|
+
inputs: [],
|
|
195
|
+
}]
|
|
196
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
197
|
+
let MdsAvatar = class MdsAvatar {
|
|
198
|
+
z;
|
|
199
|
+
el;
|
|
200
|
+
constructor(c, r, z) {
|
|
201
|
+
this.z = z;
|
|
202
|
+
c.detach();
|
|
203
|
+
this.el = r.nativeElement;
|
|
204
|
+
}
|
|
205
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", 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.12", 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 });
|
|
207
|
+
};
|
|
208
|
+
MdsAvatar = __decorate([
|
|
209
|
+
ProxyCmp({
|
|
210
|
+
inputs: ['icon', 'initials', 'src', 'tone', 'variant']
|
|
211
|
+
})
|
|
212
|
+
], MdsAvatar);
|
|
213
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsAvatar, decorators: [{
|
|
214
|
+
type: Component,
|
|
215
|
+
args: [{
|
|
216
|
+
selector: 'mds-avatar',
|
|
217
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
218
|
+
template: '<ng-content></ng-content>',
|
|
219
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
220
|
+
inputs: ['icon', 'initials', 'src', 'tone', 'variant'],
|
|
221
|
+
}]
|
|
222
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
223
|
+
let MdsBadge = class MdsBadge {
|
|
224
|
+
z;
|
|
225
|
+
el;
|
|
226
|
+
constructor(c, r, z) {
|
|
227
|
+
this.z = z;
|
|
228
|
+
c.detach();
|
|
229
|
+
this.el = r.nativeElement;
|
|
230
|
+
}
|
|
231
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", 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.12", 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 });
|
|
233
|
+
};
|
|
234
|
+
MdsBadge = __decorate([
|
|
235
|
+
ProxyCmp({
|
|
236
|
+
inputs: ['tone', 'typography', 'typographyVariant', 'variant']
|
|
237
|
+
})
|
|
238
|
+
], MdsBadge);
|
|
239
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsBadge, decorators: [{
|
|
240
|
+
type: Component,
|
|
241
|
+
args: [{
|
|
242
|
+
selector: 'mds-badge',
|
|
243
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
244
|
+
template: '<ng-content></ng-content>',
|
|
245
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
246
|
+
inputs: ['tone', 'typography', 'typographyVariant', 'variant'],
|
|
247
|
+
}]
|
|
248
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
249
|
+
let MdsBanner = class MdsBanner {
|
|
250
|
+
z;
|
|
251
|
+
el;
|
|
252
|
+
constructor(c, r, z) {
|
|
253
|
+
this.z = z;
|
|
254
|
+
c.detach();
|
|
255
|
+
this.el = r.nativeElement;
|
|
256
|
+
proxyOutputs(this, this.el, ['mdsBannerClose']);
|
|
257
|
+
}
|
|
258
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", 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.12", 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 });
|
|
260
|
+
};
|
|
261
|
+
MdsBanner = __decorate([
|
|
262
|
+
ProxyCmp({
|
|
263
|
+
inputs: ['deletable', 'headline', 'icon', 'tone', 'variant']
|
|
264
|
+
})
|
|
265
|
+
], MdsBanner);
|
|
266
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsBanner, decorators: [{
|
|
267
|
+
type: Component,
|
|
268
|
+
args: [{
|
|
269
|
+
selector: 'mds-banner',
|
|
270
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
271
|
+
template: '<ng-content></ng-content>',
|
|
272
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
273
|
+
inputs: ['deletable', 'headline', 'icon', 'tone', 'variant'],
|
|
274
|
+
}]
|
|
275
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
276
|
+
let MdsBenchmarkBar = class MdsBenchmarkBar {
|
|
277
|
+
z;
|
|
278
|
+
el;
|
|
279
|
+
constructor(c, r, z) {
|
|
280
|
+
this.z = z;
|
|
281
|
+
c.detach();
|
|
282
|
+
this.el = r.nativeElement;
|
|
283
|
+
}
|
|
284
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsBenchmarkBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
285
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", 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 });
|
|
286
|
+
};
|
|
287
|
+
MdsBenchmarkBar = __decorate([
|
|
288
|
+
ProxyCmp({
|
|
289
|
+
inputs: ['alias', 'typography', 'value', 'variant']
|
|
290
|
+
})
|
|
291
|
+
], MdsBenchmarkBar);
|
|
292
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsBenchmarkBar, decorators: [{
|
|
293
|
+
type: Component,
|
|
294
|
+
args: [{
|
|
295
|
+
selector: 'mds-benchmark-bar',
|
|
296
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
297
|
+
template: '<ng-content></ng-content>',
|
|
298
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
299
|
+
inputs: ['alias', 'typography', 'value', 'variant'],
|
|
300
|
+
}]
|
|
301
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
302
|
+
let MdsBibliography = class MdsBibliography {
|
|
303
|
+
z;
|
|
304
|
+
el;
|
|
305
|
+
constructor(c, r, z) {
|
|
306
|
+
this.z = z;
|
|
307
|
+
c.detach();
|
|
308
|
+
this.el = r.nativeElement;
|
|
309
|
+
}
|
|
310
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsBibliography, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
311
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", 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 });
|
|
312
|
+
};
|
|
313
|
+
MdsBibliography = __decorate([
|
|
314
|
+
ProxyCmp({
|
|
315
|
+
inputs: ['author', 'date', 'format', 'location', 'name', 'publisher', 'rel', 'typography', 'url', 'variant']
|
|
316
|
+
})
|
|
317
|
+
], MdsBibliography);
|
|
318
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsBibliography, decorators: [{
|
|
319
|
+
type: Component,
|
|
320
|
+
args: [{
|
|
321
|
+
selector: 'mds-bibliography',
|
|
322
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
323
|
+
template: '<ng-content></ng-content>',
|
|
324
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
325
|
+
inputs: ['author', 'date', 'format', 'location', 'name', 'publisher', 'rel', 'typography', 'url', 'variant'],
|
|
326
|
+
}]
|
|
327
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
328
|
+
let MdsBreadcrumb = class MdsBreadcrumb {
|
|
329
|
+
z;
|
|
330
|
+
el;
|
|
331
|
+
constructor(c, r, z) {
|
|
332
|
+
this.z = z;
|
|
333
|
+
c.detach();
|
|
334
|
+
this.el = r.nativeElement;
|
|
335
|
+
proxyOutputs(this, this.el, ['mdsBreadcrumbChange']);
|
|
336
|
+
}
|
|
337
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
338
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsBreadcrumb, selector: "mds-breadcrumb", inputs: { back: "back" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
339
|
+
};
|
|
340
|
+
MdsBreadcrumb = __decorate([
|
|
341
|
+
ProxyCmp({
|
|
342
|
+
inputs: ['back']
|
|
343
|
+
})
|
|
344
|
+
], MdsBreadcrumb);
|
|
345
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsBreadcrumb, decorators: [{
|
|
346
|
+
type: Component,
|
|
347
|
+
args: [{
|
|
348
|
+
selector: 'mds-breadcrumb',
|
|
349
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
350
|
+
template: '<ng-content></ng-content>',
|
|
351
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
352
|
+
inputs: ['back'],
|
|
353
|
+
}]
|
|
354
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
355
|
+
let MdsBreadcrumbItem = class MdsBreadcrumbItem {
|
|
356
|
+
z;
|
|
357
|
+
el;
|
|
358
|
+
constructor(c, r, z) {
|
|
359
|
+
this.z = z;
|
|
360
|
+
c.detach();
|
|
361
|
+
this.el = r.nativeElement;
|
|
362
|
+
proxyOutputs(this, this.el, ['mdsBreadcrumbItemSelect']);
|
|
363
|
+
}
|
|
364
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsBreadcrumbItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
365
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsBreadcrumbItem, selector: "mds-breadcrumb-item", inputs: { selected: "selected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
366
|
+
};
|
|
367
|
+
MdsBreadcrumbItem = __decorate([
|
|
368
|
+
ProxyCmp({
|
|
369
|
+
inputs: ['selected']
|
|
370
|
+
})
|
|
371
|
+
], MdsBreadcrumbItem);
|
|
372
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsBreadcrumbItem, decorators: [{
|
|
373
|
+
type: Component,
|
|
374
|
+
args: [{
|
|
375
|
+
selector: 'mds-breadcrumb-item',
|
|
376
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
377
|
+
template: '<ng-content></ng-content>',
|
|
378
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
379
|
+
inputs: ['selected'],
|
|
380
|
+
}]
|
|
381
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
382
|
+
let MdsButton = class MdsButton {
|
|
383
|
+
z;
|
|
384
|
+
el;
|
|
385
|
+
constructor(c, r, z) {
|
|
386
|
+
this.z = z;
|
|
387
|
+
c.detach();
|
|
388
|
+
this.el = r.nativeElement;
|
|
389
|
+
}
|
|
390
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
391
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", 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", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
392
|
+
};
|
|
393
|
+
MdsButton = __decorate([
|
|
394
|
+
ProxyCmp({
|
|
395
|
+
inputs: ['active', 'autoFocus', 'await', 'disabled', 'href', 'icon', 'iconPosition', 'size', 'target', 'tone', 'type', 'variant']
|
|
396
|
+
})
|
|
397
|
+
], MdsButton);
|
|
398
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsButton, decorators: [{
|
|
399
|
+
type: Component,
|
|
400
|
+
args: [{
|
|
401
|
+
selector: 'mds-button',
|
|
402
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
403
|
+
template: '<ng-content></ng-content>',
|
|
404
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
405
|
+
inputs: ['active', 'autoFocus', 'await', 'disabled', 'href', 'icon', 'iconPosition', 'size', 'target', 'tone', 'type', 'variant'],
|
|
406
|
+
}]
|
|
407
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
408
|
+
let MdsCard = class MdsCard {
|
|
409
|
+
z;
|
|
410
|
+
el;
|
|
411
|
+
constructor(c, r, z) {
|
|
412
|
+
this.z = z;
|
|
413
|
+
c.detach();
|
|
414
|
+
this.el = r.nativeElement;
|
|
415
|
+
}
|
|
416
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
417
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsCard, selector: "mds-card", inputs: { autoGrid: "autoGrid" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
418
|
+
};
|
|
419
|
+
MdsCard = __decorate([
|
|
420
|
+
ProxyCmp({
|
|
421
|
+
inputs: ['autoGrid']
|
|
422
|
+
})
|
|
423
|
+
], MdsCard);
|
|
424
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsCard, decorators: [{
|
|
425
|
+
type: Component,
|
|
426
|
+
args: [{
|
|
427
|
+
selector: 'mds-card',
|
|
428
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
429
|
+
template: '<ng-content></ng-content>',
|
|
430
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
431
|
+
inputs: ['autoGrid'],
|
|
432
|
+
}]
|
|
433
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
434
|
+
let MdsCardContent = class MdsCardContent {
|
|
435
|
+
z;
|
|
436
|
+
el;
|
|
437
|
+
constructor(c, r, z) {
|
|
438
|
+
this.z = z;
|
|
439
|
+
c.detach();
|
|
440
|
+
this.el = r.nativeElement;
|
|
441
|
+
}
|
|
442
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsCardContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
443
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsCardContent, selector: "mds-card-content", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
444
|
+
};
|
|
445
|
+
MdsCardContent = __decorate([
|
|
446
|
+
ProxyCmp({})
|
|
447
|
+
], MdsCardContent);
|
|
448
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsCardContent, decorators: [{
|
|
449
|
+
type: Component,
|
|
450
|
+
args: [{
|
|
451
|
+
selector: 'mds-card-content',
|
|
452
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
453
|
+
template: '<ng-content></ng-content>',
|
|
454
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
455
|
+
inputs: [],
|
|
456
|
+
}]
|
|
457
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
458
|
+
let MdsCardFooter = class MdsCardFooter {
|
|
459
|
+
z;
|
|
460
|
+
el;
|
|
461
|
+
constructor(c, r, z) {
|
|
462
|
+
this.z = z;
|
|
463
|
+
c.detach();
|
|
464
|
+
this.el = r.nativeElement;
|
|
465
|
+
}
|
|
466
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsCardFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
467
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsCardFooter, selector: "mds-card-footer", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
468
|
+
};
|
|
469
|
+
MdsCardFooter = __decorate([
|
|
470
|
+
ProxyCmp({})
|
|
471
|
+
], MdsCardFooter);
|
|
472
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsCardFooter, decorators: [{
|
|
473
|
+
type: Component,
|
|
474
|
+
args: [{
|
|
475
|
+
selector: 'mds-card-footer',
|
|
476
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
477
|
+
template: '<ng-content></ng-content>',
|
|
478
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
479
|
+
inputs: [],
|
|
480
|
+
}]
|
|
481
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
482
|
+
let MdsCardHeader = class MdsCardHeader {
|
|
483
|
+
z;
|
|
484
|
+
el;
|
|
485
|
+
constructor(c, r, z) {
|
|
486
|
+
this.z = z;
|
|
487
|
+
c.detach();
|
|
488
|
+
this.el = r.nativeElement;
|
|
489
|
+
}
|
|
490
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsCardHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
491
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsCardHeader, selector: "mds-card-header", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
492
|
+
};
|
|
493
|
+
MdsCardHeader = __decorate([
|
|
494
|
+
ProxyCmp({})
|
|
495
|
+
], MdsCardHeader);
|
|
496
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsCardHeader, decorators: [{
|
|
497
|
+
type: Component,
|
|
498
|
+
args: [{
|
|
499
|
+
selector: 'mds-card-header',
|
|
500
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
501
|
+
template: '<ng-content></ng-content>',
|
|
502
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
503
|
+
inputs: [],
|
|
504
|
+
}]
|
|
505
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
506
|
+
let MdsCardMedia = class MdsCardMedia {
|
|
507
|
+
z;
|
|
508
|
+
el;
|
|
509
|
+
constructor(c, r, z) {
|
|
510
|
+
this.z = z;
|
|
511
|
+
c.detach();
|
|
512
|
+
this.el = r.nativeElement;
|
|
513
|
+
}
|
|
514
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsCardMedia, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
515
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsCardMedia, selector: "mds-card-media", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
516
|
+
};
|
|
517
|
+
MdsCardMedia = __decorate([
|
|
518
|
+
ProxyCmp({})
|
|
519
|
+
], MdsCardMedia);
|
|
520
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsCardMedia, decorators: [{
|
|
521
|
+
type: Component,
|
|
522
|
+
args: [{
|
|
523
|
+
selector: 'mds-card-media',
|
|
524
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
525
|
+
template: '<ng-content></ng-content>',
|
|
526
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
527
|
+
inputs: [],
|
|
528
|
+
}]
|
|
529
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
530
|
+
let MdsChip = class MdsChip {
|
|
531
|
+
z;
|
|
532
|
+
el;
|
|
533
|
+
constructor(c, r, z) {
|
|
534
|
+
this.z = z;
|
|
535
|
+
c.detach();
|
|
536
|
+
this.el = r.nativeElement;
|
|
537
|
+
proxyOutputs(this, this.el, ['mdsChipClickLabel', 'mdsChipDelete']);
|
|
538
|
+
}
|
|
539
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
540
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsChip, selector: "mds-chip", inputs: { clickable: "clickable", deletable: "deletable", deleteLabel: "deleteLabel", disabled: "disabled", icon: "icon", label: "label", selected: "selected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
541
|
+
};
|
|
542
|
+
MdsChip = __decorate([
|
|
543
|
+
ProxyCmp({
|
|
544
|
+
inputs: ['clickable', 'deletable', 'deleteLabel', 'disabled', 'icon', 'label', 'selected']
|
|
545
|
+
})
|
|
546
|
+
], MdsChip);
|
|
547
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsChip, decorators: [{
|
|
548
|
+
type: Component,
|
|
549
|
+
args: [{
|
|
550
|
+
selector: 'mds-chip',
|
|
551
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
552
|
+
template: '<ng-content></ng-content>',
|
|
553
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
554
|
+
inputs: ['clickable', 'deletable', 'deleteLabel', 'disabled', 'icon', 'label', 'selected'],
|
|
555
|
+
}]
|
|
556
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
557
|
+
let MdsDetails = class MdsDetails {
|
|
558
|
+
z;
|
|
559
|
+
el;
|
|
560
|
+
constructor(c, r, z) {
|
|
561
|
+
this.z = z;
|
|
562
|
+
c.detach();
|
|
563
|
+
this.el = r.nativeElement;
|
|
564
|
+
proxyOutputs(this, this.el, ['mdsDetailsChange']);
|
|
565
|
+
}
|
|
566
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsDetails, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
567
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsDetails, selector: "mds-details", inputs: { opened: "opened" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
568
|
+
};
|
|
569
|
+
MdsDetails = __decorate([
|
|
570
|
+
ProxyCmp({
|
|
571
|
+
inputs: ['opened']
|
|
572
|
+
})
|
|
573
|
+
], MdsDetails);
|
|
574
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsDetails, decorators: [{
|
|
575
|
+
type: Component,
|
|
576
|
+
args: [{
|
|
577
|
+
selector: 'mds-details',
|
|
578
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
579
|
+
template: '<ng-content></ng-content>',
|
|
580
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
581
|
+
inputs: ['opened'],
|
|
582
|
+
}]
|
|
583
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
584
|
+
let MdsDropdown = class MdsDropdown {
|
|
585
|
+
z;
|
|
586
|
+
el;
|
|
587
|
+
constructor(c, r, z) {
|
|
588
|
+
this.z = z;
|
|
589
|
+
c.detach();
|
|
590
|
+
this.el = r.nativeElement;
|
|
591
|
+
proxyOutputs(this, this.el, ['mdsDropdownVisible', 'mdsDropdownHide', 'mdsDropdownChange']);
|
|
592
|
+
}
|
|
593
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
594
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", 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 });
|
|
595
|
+
};
|
|
596
|
+
MdsDropdown = __decorate([
|
|
597
|
+
ProxyCmp({
|
|
598
|
+
inputs: ['arrow', 'arrowPadding', 'autoPlacement', 'backdrop', 'flip', 'interaction', 'offset', 'placement', 'shift', 'shiftPadding', 'smooth', 'strategy', 'target', 'visible', 'zIndex']
|
|
599
|
+
})
|
|
600
|
+
], MdsDropdown);
|
|
601
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsDropdown, decorators: [{
|
|
602
|
+
type: Component,
|
|
603
|
+
args: [{
|
|
604
|
+
selector: 'mds-dropdown',
|
|
605
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
606
|
+
template: '<ng-content></ng-content>',
|
|
607
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
608
|
+
inputs: ['arrow', 'arrowPadding', 'autoPlacement', 'backdrop', 'flip', 'interaction', 'offset', 'placement', 'shift', 'shiftPadding', 'smooth', 'strategy', 'target', 'visible', 'zIndex'],
|
|
609
|
+
}]
|
|
610
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
611
|
+
let MdsEntity = class MdsEntity {
|
|
612
|
+
z;
|
|
613
|
+
el;
|
|
614
|
+
constructor(c, r, z) {
|
|
615
|
+
this.z = z;
|
|
616
|
+
c.detach();
|
|
617
|
+
this.el = r.nativeElement;
|
|
618
|
+
}
|
|
619
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsEntity, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
620
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", 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 });
|
|
621
|
+
};
|
|
622
|
+
MdsEntity = __decorate([
|
|
623
|
+
ProxyCmp({
|
|
624
|
+
inputs: ['await', 'icon', 'initials', 'src', 'tone', 'variant']
|
|
625
|
+
})
|
|
626
|
+
], MdsEntity);
|
|
627
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsEntity, decorators: [{
|
|
628
|
+
type: Component,
|
|
629
|
+
args: [{
|
|
630
|
+
selector: 'mds-entity',
|
|
631
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
632
|
+
template: '<ng-content></ng-content>',
|
|
633
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
634
|
+
inputs: ['await', 'icon', 'initials', 'src', 'tone', 'variant'],
|
|
635
|
+
}]
|
|
636
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
637
|
+
let MdsFile = class MdsFile {
|
|
638
|
+
z;
|
|
639
|
+
el;
|
|
640
|
+
constructor(c, r, z) {
|
|
641
|
+
this.z = z;
|
|
642
|
+
c.detach();
|
|
643
|
+
this.el = r.nativeElement;
|
|
644
|
+
proxyOutputs(this, this.el, ['mdsFileDownload']);
|
|
645
|
+
}
|
|
646
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsFile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
647
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsFile, selector: "mds-file", inputs: { description: "description", downloadedLabel: "downloadedLabel", filename: "filename", format: "format", preview: "preview", showDownloadedIcon: "showDownloadedIcon", suffix: "suffix" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
648
|
+
};
|
|
649
|
+
MdsFile = __decorate([
|
|
650
|
+
ProxyCmp({
|
|
651
|
+
inputs: ['description', 'downloadedLabel', 'filename', 'format', 'preview', 'showDownloadedIcon', 'suffix']
|
|
652
|
+
})
|
|
653
|
+
], MdsFile);
|
|
654
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsFile, decorators: [{
|
|
655
|
+
type: Component,
|
|
656
|
+
args: [{
|
|
657
|
+
selector: 'mds-file',
|
|
658
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
659
|
+
template: '<ng-content></ng-content>',
|
|
660
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
661
|
+
inputs: ['description', 'downloadedLabel', 'filename', 'format', 'preview', 'showDownloadedIcon', 'suffix'],
|
|
662
|
+
}]
|
|
663
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
664
|
+
let MdsFilePreview = class MdsFilePreview {
|
|
665
|
+
z;
|
|
666
|
+
el;
|
|
667
|
+
constructor(c, r, z) {
|
|
668
|
+
this.z = z;
|
|
669
|
+
c.detach();
|
|
670
|
+
this.el = r.nativeElement;
|
|
671
|
+
proxyOutputs(this, this.el, ['mdsFileDownload', 'mdsFileDelete']);
|
|
672
|
+
}
|
|
673
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsFilePreview, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
674
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", 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 });
|
|
675
|
+
};
|
|
676
|
+
MdsFilePreview = __decorate([
|
|
677
|
+
ProxyCmp({
|
|
678
|
+
inputs: ['deletable', 'description', 'downloadable', 'filename', 'filesize', 'format', 'icon', 'message', 'src', 'suffix', 'truncate', 'variant']
|
|
679
|
+
})
|
|
680
|
+
], MdsFilePreview);
|
|
681
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsFilePreview, decorators: [{
|
|
682
|
+
type: Component,
|
|
683
|
+
args: [{
|
|
684
|
+
selector: 'mds-file-preview',
|
|
685
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
686
|
+
template: '<ng-content></ng-content>',
|
|
687
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
688
|
+
inputs: ['deletable', 'description', 'downloadable', 'filename', 'filesize', 'format', 'icon', 'message', 'src', 'suffix', 'truncate', 'variant'],
|
|
689
|
+
}]
|
|
690
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
691
|
+
let MdsFilter = class MdsFilter {
|
|
692
|
+
z;
|
|
693
|
+
el;
|
|
694
|
+
constructor(c, r, z) {
|
|
695
|
+
this.z = z;
|
|
696
|
+
c.detach();
|
|
697
|
+
this.el = r.nativeElement;
|
|
698
|
+
proxyOutputs(this, this.el, ['mdsFilterChange']);
|
|
699
|
+
}
|
|
700
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsFilter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
701
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", 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 });
|
|
702
|
+
};
|
|
703
|
+
MdsFilter = __decorate([
|
|
704
|
+
ProxyCmp({
|
|
705
|
+
inputs: ['autoReset', 'label', 'multiple', 'reset']
|
|
706
|
+
})
|
|
707
|
+
], MdsFilter);
|
|
708
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsFilter, decorators: [{
|
|
709
|
+
type: Component,
|
|
710
|
+
args: [{
|
|
711
|
+
selector: 'mds-filter',
|
|
712
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
713
|
+
template: '<ng-content></ng-content>',
|
|
714
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
715
|
+
inputs: ['autoReset', 'label', 'multiple', 'reset'],
|
|
716
|
+
}]
|
|
717
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
718
|
+
let MdsFilterItem = class MdsFilterItem {
|
|
719
|
+
z;
|
|
720
|
+
el;
|
|
721
|
+
constructor(c, r, z) {
|
|
722
|
+
this.z = z;
|
|
723
|
+
c.detach();
|
|
724
|
+
this.el = r.nativeElement;
|
|
725
|
+
proxyOutputs(this, this.el, ['mdsFilterItemSelect']);
|
|
726
|
+
}
|
|
727
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsFilterItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
728
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsFilterItem, selector: "mds-filter-item", inputs: { icon: "icon", label: "label", selected: "selected", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
729
|
+
};
|
|
730
|
+
MdsFilterItem = __decorate([
|
|
731
|
+
ProxyCmp({
|
|
732
|
+
inputs: ['icon', 'label', 'selected', 'value']
|
|
733
|
+
})
|
|
734
|
+
], MdsFilterItem);
|
|
735
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsFilterItem, decorators: [{
|
|
736
|
+
type: Component,
|
|
737
|
+
args: [{
|
|
738
|
+
selector: 'mds-filter-item',
|
|
739
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
740
|
+
template: '<ng-content></ng-content>',
|
|
741
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
742
|
+
inputs: ['icon', 'label', 'selected', 'value'],
|
|
743
|
+
}]
|
|
744
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
745
|
+
let MdsHeader = class MdsHeader {
|
|
746
|
+
z;
|
|
747
|
+
el;
|
|
748
|
+
constructor(c, r, z) {
|
|
749
|
+
this.z = z;
|
|
750
|
+
c.detach();
|
|
751
|
+
this.el = r.nativeElement;
|
|
752
|
+
proxyOutputs(this, this.el, ['mdsHeaderClose']);
|
|
753
|
+
}
|
|
754
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
755
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsHeader, selector: "mds-header", inputs: { appearance: "appearance", appearanceSet: "appearanceSet", autoHide: "autoHide", menu: "menu", nav: "nav", threshold: "threshold", visibility: "visibility" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
756
|
+
};
|
|
757
|
+
MdsHeader = __decorate([
|
|
758
|
+
ProxyCmp({
|
|
759
|
+
inputs: ['appearance', 'appearanceSet', 'autoHide', 'menu', 'nav', 'threshold', 'visibility']
|
|
760
|
+
})
|
|
761
|
+
], MdsHeader);
|
|
762
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsHeader, decorators: [{
|
|
763
|
+
type: Component,
|
|
764
|
+
args: [{
|
|
765
|
+
selector: 'mds-header',
|
|
766
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
767
|
+
template: '<ng-content></ng-content>',
|
|
768
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
769
|
+
inputs: ['appearance', 'appearanceSet', 'autoHide', 'menu', 'nav', 'threshold', 'visibility'],
|
|
770
|
+
}]
|
|
771
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
772
|
+
let MdsHeaderBar = class MdsHeaderBar {
|
|
773
|
+
z;
|
|
774
|
+
el;
|
|
775
|
+
constructor(c, r, z) {
|
|
776
|
+
this.z = z;
|
|
777
|
+
c.detach();
|
|
778
|
+
this.el = r.nativeElement;
|
|
779
|
+
proxyOutputs(this, this.el, ['mdsHeaderBarOpen']);
|
|
780
|
+
}
|
|
781
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsHeaderBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
782
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsHeaderBar, selector: "mds-header-bar", inputs: { menu: "menu", nav: "nav" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
783
|
+
};
|
|
784
|
+
MdsHeaderBar = __decorate([
|
|
785
|
+
ProxyCmp({
|
|
786
|
+
inputs: ['menu', 'nav']
|
|
787
|
+
})
|
|
788
|
+
], MdsHeaderBar);
|
|
789
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsHeaderBar, decorators: [{
|
|
790
|
+
type: Component,
|
|
791
|
+
args: [{
|
|
792
|
+
selector: 'mds-header-bar',
|
|
793
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
794
|
+
template: '<ng-content></ng-content>',
|
|
795
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
796
|
+
inputs: ['menu', 'nav'],
|
|
797
|
+
}]
|
|
798
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
799
|
+
let MdsHelp = class MdsHelp {
|
|
800
|
+
z;
|
|
801
|
+
el;
|
|
802
|
+
constructor(c, r, z) {
|
|
803
|
+
this.z = z;
|
|
804
|
+
c.detach();
|
|
805
|
+
this.el = r.nativeElement;
|
|
806
|
+
}
|
|
807
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsHelp, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
808
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", 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 });
|
|
809
|
+
};
|
|
810
|
+
MdsHelp = __decorate([
|
|
811
|
+
ProxyCmp({
|
|
812
|
+
inputs: ['autoPlacement', 'icon', 'placement']
|
|
813
|
+
})
|
|
814
|
+
], MdsHelp);
|
|
815
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsHelp, decorators: [{
|
|
816
|
+
type: Component,
|
|
817
|
+
args: [{
|
|
818
|
+
selector: 'mds-help',
|
|
819
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
820
|
+
template: '<ng-content></ng-content>',
|
|
821
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
822
|
+
inputs: ['autoPlacement', 'icon', 'placement'],
|
|
823
|
+
}]
|
|
824
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
825
|
+
let MdsHorizontalScroll = class MdsHorizontalScroll {
|
|
826
|
+
z;
|
|
827
|
+
el;
|
|
828
|
+
constructor(c, r, z) {
|
|
829
|
+
this.z = z;
|
|
830
|
+
c.detach();
|
|
831
|
+
this.el = r.nativeElement;
|
|
832
|
+
}
|
|
833
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsHorizontalScroll, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
834
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", 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 });
|
|
835
|
+
};
|
|
836
|
+
MdsHorizontalScroll = __decorate([
|
|
837
|
+
ProxyCmp({
|
|
838
|
+
inputs: ['controls', 'scrollbar', 'snap']
|
|
839
|
+
})
|
|
840
|
+
], MdsHorizontalScroll);
|
|
841
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsHorizontalScroll, decorators: [{
|
|
842
|
+
type: Component,
|
|
843
|
+
args: [{
|
|
844
|
+
selector: 'mds-horizontal-scroll',
|
|
845
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
846
|
+
template: '<ng-content></ng-content>',
|
|
847
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
848
|
+
inputs: ['controls', 'scrollbar', 'snap'],
|
|
849
|
+
}]
|
|
850
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
851
|
+
let MdsHr = class MdsHr {
|
|
852
|
+
z;
|
|
853
|
+
el;
|
|
854
|
+
constructor(c, r, z) {
|
|
855
|
+
this.z = z;
|
|
856
|
+
c.detach();
|
|
857
|
+
this.el = r.nativeElement;
|
|
858
|
+
}
|
|
859
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsHr, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
860
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsHr, selector: "mds-hr", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
861
|
+
};
|
|
862
|
+
MdsHr = __decorate([
|
|
863
|
+
ProxyCmp({})
|
|
864
|
+
], MdsHr);
|
|
865
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsHr, decorators: [{
|
|
866
|
+
type: Component,
|
|
867
|
+
args: [{
|
|
868
|
+
selector: 'mds-hr',
|
|
869
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
870
|
+
template: '<ng-content></ng-content>',
|
|
871
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
872
|
+
inputs: [],
|
|
873
|
+
}]
|
|
874
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
875
|
+
let MdsIcon = class MdsIcon {
|
|
876
|
+
z;
|
|
877
|
+
el;
|
|
878
|
+
constructor(c, r, z) {
|
|
879
|
+
this.z = z;
|
|
880
|
+
c.detach();
|
|
881
|
+
this.el = r.nativeElement;
|
|
882
|
+
}
|
|
883
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
884
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsIcon, selector: "mds-icon", inputs: { name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
885
|
+
};
|
|
886
|
+
MdsIcon = __decorate([
|
|
887
|
+
ProxyCmp({
|
|
888
|
+
inputs: ['name'],
|
|
889
|
+
methods: ['setSvgPath']
|
|
890
|
+
})
|
|
891
|
+
], MdsIcon);
|
|
892
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsIcon, decorators: [{
|
|
893
|
+
type: Component,
|
|
894
|
+
args: [{
|
|
895
|
+
selector: 'mds-icon',
|
|
896
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
897
|
+
template: '<ng-content></ng-content>',
|
|
898
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
899
|
+
inputs: ['name'],
|
|
900
|
+
}]
|
|
901
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
902
|
+
let MdsImg = class MdsImg {
|
|
903
|
+
z;
|
|
904
|
+
el;
|
|
905
|
+
constructor(c, r, z) {
|
|
906
|
+
this.z = z;
|
|
907
|
+
c.detach();
|
|
908
|
+
this.el = r.nativeElement;
|
|
909
|
+
proxyOutputs(this, this.el, ['mdsImgLoadError', 'mdsImgLoadSuccess']);
|
|
910
|
+
}
|
|
911
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsImg, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
912
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", 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 });
|
|
913
|
+
};
|
|
914
|
+
MdsImg = __decorate([
|
|
915
|
+
ProxyCmp({
|
|
916
|
+
inputs: ['alt', 'crossorigin', 'height', 'loading', 'referrerpolicy', 'sizes', 'src', 'srcset', 'srcsetConsumption', 'width']
|
|
917
|
+
})
|
|
918
|
+
], MdsImg);
|
|
919
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsImg, decorators: [{
|
|
920
|
+
type: Component,
|
|
921
|
+
args: [{
|
|
922
|
+
selector: 'mds-img',
|
|
923
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
924
|
+
template: '<ng-content></ng-content>',
|
|
925
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
926
|
+
inputs: ['alt', 'crossorigin', 'height', 'loading', 'referrerpolicy', 'sizes', 'src', 'srcset', 'srcsetConsumption', 'width'],
|
|
927
|
+
}]
|
|
928
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
929
|
+
let MdsInput = class MdsInput {
|
|
930
|
+
z;
|
|
931
|
+
el;
|
|
932
|
+
constructor(c, r, z) {
|
|
933
|
+
this.z = z;
|
|
934
|
+
c.detach();
|
|
935
|
+
this.el = r.nativeElement;
|
|
936
|
+
proxyOutputs(this, this.el, ['mdsInputChange', 'mdsInputKeydown', 'mdsInputBlur', 'mdsInputFocus']);
|
|
937
|
+
}
|
|
938
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
939
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", 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 });
|
|
940
|
+
};
|
|
941
|
+
MdsInput = __decorate([
|
|
942
|
+
ProxyCmp({
|
|
943
|
+
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'],
|
|
944
|
+
methods: ['setFocus', 'getInputElement']
|
|
945
|
+
})
|
|
946
|
+
], MdsInput);
|
|
947
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsInput, decorators: [{
|
|
948
|
+
type: Component,
|
|
949
|
+
args: [{
|
|
950
|
+
selector: 'mds-input',
|
|
951
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
952
|
+
template: '<ng-content></ng-content>',
|
|
953
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
954
|
+
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'],
|
|
955
|
+
}]
|
|
956
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
957
|
+
let MdsInputField = class MdsInputField {
|
|
958
|
+
z;
|
|
959
|
+
el;
|
|
960
|
+
constructor(c, r, z) {
|
|
961
|
+
this.z = z;
|
|
962
|
+
c.detach();
|
|
963
|
+
this.el = r.nativeElement;
|
|
964
|
+
proxyOutputs(this, this.el, ['mdsInputFieldChange', 'mdsInputFieldKeydown', 'mdsInputFieldBlur', 'mdsInputFieldFocus']);
|
|
965
|
+
}
|
|
966
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsInputField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
967
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", 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 });
|
|
968
|
+
};
|
|
969
|
+
MdsInputField = __decorate([
|
|
970
|
+
ProxyCmp({
|
|
971
|
+
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'],
|
|
972
|
+
methods: ['setFocus', 'getInputElement', 'addValidator', 'removeValidator', 'getErrors']
|
|
973
|
+
})
|
|
974
|
+
], MdsInputField);
|
|
975
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsInputField, decorators: [{
|
|
976
|
+
type: Component,
|
|
977
|
+
args: [{
|
|
978
|
+
selector: 'mds-input-field',
|
|
979
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
980
|
+
template: '<ng-content></ng-content>',
|
|
981
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
982
|
+
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'],
|
|
983
|
+
}]
|
|
984
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
985
|
+
let MdsInputRange = class MdsInputRange {
|
|
986
|
+
z;
|
|
987
|
+
el;
|
|
988
|
+
constructor(c, r, z) {
|
|
989
|
+
this.z = z;
|
|
990
|
+
c.detach();
|
|
991
|
+
this.el = r.nativeElement;
|
|
992
|
+
proxyOutputs(this, this.el, ['mdsInputRangeChange']);
|
|
993
|
+
}
|
|
994
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsInputRange, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
995
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsInputRange, selector: "mds-input-range", inputs: { max: "max", min: "min", step: "step", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
996
|
+
};
|
|
997
|
+
MdsInputRange = __decorate([
|
|
998
|
+
ProxyCmp({
|
|
999
|
+
inputs: ['max', 'min', 'step', 'value']
|
|
1000
|
+
})
|
|
1001
|
+
], MdsInputRange);
|
|
1002
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsInputRange, decorators: [{
|
|
1003
|
+
type: Component,
|
|
1004
|
+
args: [{
|
|
1005
|
+
selector: 'mds-input-range',
|
|
1006
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1007
|
+
template: '<ng-content></ng-content>',
|
|
1008
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1009
|
+
inputs: ['max', 'min', 'step', 'value'],
|
|
1010
|
+
}]
|
|
1011
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1012
|
+
let MdsInputSelect = class MdsInputSelect {
|
|
1013
|
+
z;
|
|
1014
|
+
el;
|
|
1015
|
+
constructor(c, r, z) {
|
|
1016
|
+
this.z = z;
|
|
1017
|
+
c.detach();
|
|
1018
|
+
this.el = r.nativeElement;
|
|
1019
|
+
proxyOutputs(this, this.el, ['mdsInputSelectChange']);
|
|
1020
|
+
}
|
|
1021
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsInputSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1022
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", 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 });
|
|
1023
|
+
};
|
|
1024
|
+
MdsInputSelect = __decorate([
|
|
1025
|
+
ProxyCmp({
|
|
1026
|
+
inputs: ['autoFocus', 'autocomplete', 'disabled', 'multiple', 'name', 'placeholder', 'required', 'size', 'value', 'variant']
|
|
1027
|
+
})
|
|
1028
|
+
], MdsInputSelect);
|
|
1029
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsInputSelect, decorators: [{
|
|
1030
|
+
type: Component,
|
|
1031
|
+
args: [{
|
|
1032
|
+
selector: 'mds-input-select',
|
|
1033
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1034
|
+
template: '<ng-content></ng-content>',
|
|
1035
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1036
|
+
inputs: ['autoFocus', 'autocomplete', 'disabled', 'multiple', 'name', 'placeholder', 'required', 'size', 'value', 'variant'],
|
|
1037
|
+
}]
|
|
1038
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1039
|
+
let MdsInputSwitch = class MdsInputSwitch {
|
|
1040
|
+
z;
|
|
1041
|
+
el;
|
|
1042
|
+
constructor(c, r, z) {
|
|
1043
|
+
this.z = z;
|
|
1044
|
+
c.detach();
|
|
1045
|
+
this.el = r.nativeElement;
|
|
1046
|
+
proxyOutputs(this, this.el, ['mdsInputSwitchChange']);
|
|
1047
|
+
}
|
|
1048
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsInputSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1049
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", 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 });
|
|
1050
|
+
};
|
|
1051
|
+
MdsInputSwitch = __decorate([
|
|
1052
|
+
ProxyCmp({
|
|
1053
|
+
inputs: ['autofocus', 'checked', 'disabled', 'explicit', 'icon', 'indeterminate', 'name', 'size', 'type', 'typography', 'value', 'variant']
|
|
1054
|
+
})
|
|
1055
|
+
], MdsInputSwitch);
|
|
1056
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsInputSwitch, decorators: [{
|
|
1057
|
+
type: Component,
|
|
1058
|
+
args: [{
|
|
1059
|
+
selector: 'mds-input-switch',
|
|
1060
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1061
|
+
template: '<ng-content></ng-content>',
|
|
1062
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1063
|
+
inputs: ['autofocus', 'checked', 'disabled', 'explicit', 'icon', 'indeterminate', 'name', 'size', 'type', 'typography', 'value', 'variant'],
|
|
1064
|
+
}]
|
|
1065
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1066
|
+
let MdsInputTip = class MdsInputTip {
|
|
1067
|
+
z;
|
|
1068
|
+
el;
|
|
1069
|
+
constructor(c, r, z) {
|
|
1070
|
+
this.z = z;
|
|
1071
|
+
c.detach();
|
|
1072
|
+
this.el = r.nativeElement;
|
|
1073
|
+
}
|
|
1074
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsInputTip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1075
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsInputTip, selector: "mds-input-tip", inputs: { active: "active", position: "position" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1076
|
+
};
|
|
1077
|
+
MdsInputTip = __decorate([
|
|
1078
|
+
ProxyCmp({
|
|
1079
|
+
inputs: ['active', 'position']
|
|
1080
|
+
})
|
|
1081
|
+
], MdsInputTip);
|
|
1082
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsInputTip, decorators: [{
|
|
1083
|
+
type: Component,
|
|
1084
|
+
args: [{
|
|
1085
|
+
selector: 'mds-input-tip',
|
|
1086
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1087
|
+
template: '<ng-content></ng-content>',
|
|
1088
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1089
|
+
inputs: ['active', 'position'],
|
|
1090
|
+
}]
|
|
1091
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1092
|
+
let MdsInputTipItem = class MdsInputTipItem {
|
|
1093
|
+
z;
|
|
1094
|
+
el;
|
|
1095
|
+
constructor(c, r, z) {
|
|
1096
|
+
this.z = z;
|
|
1097
|
+
c.detach();
|
|
1098
|
+
this.el = r.nativeElement;
|
|
1099
|
+
}
|
|
1100
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsInputTipItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1101
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", 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 });
|
|
1102
|
+
};
|
|
1103
|
+
MdsInputTipItem = __decorate([
|
|
1104
|
+
ProxyCmp({
|
|
1105
|
+
inputs: ['expanded', 'variant']
|
|
1106
|
+
})
|
|
1107
|
+
], MdsInputTipItem);
|
|
1108
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsInputTipItem, decorators: [{
|
|
1109
|
+
type: Component,
|
|
1110
|
+
args: [{
|
|
1111
|
+
selector: 'mds-input-tip-item',
|
|
1112
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1113
|
+
template: '<ng-content></ng-content>',
|
|
1114
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1115
|
+
inputs: ['expanded', 'variant'],
|
|
1116
|
+
}]
|
|
1117
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1118
|
+
let MdsInputUpload = class MdsInputUpload {
|
|
1119
|
+
z;
|
|
1120
|
+
el;
|
|
1121
|
+
constructor(c, r, z) {
|
|
1122
|
+
this.z = z;
|
|
1123
|
+
c.detach();
|
|
1124
|
+
this.el = r.nativeElement;
|
|
1125
|
+
proxyOutputs(this, this.el, ['mdsInputUploadChange']);
|
|
1126
|
+
}
|
|
1127
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsInputUpload, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1128
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", 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 });
|
|
1129
|
+
};
|
|
1130
|
+
MdsInputUpload = __decorate([
|
|
1131
|
+
ProxyCmp({
|
|
1132
|
+
inputs: ['accept', 'maxFileSize', 'maxFiles', 'sort'],
|
|
1133
|
+
methods: ['getFiles', 'getFilesError']
|
|
1134
|
+
})
|
|
1135
|
+
], MdsInputUpload);
|
|
1136
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsInputUpload, decorators: [{
|
|
1137
|
+
type: Component,
|
|
1138
|
+
args: [{
|
|
1139
|
+
selector: 'mds-input-upload',
|
|
1140
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1141
|
+
template: '<ng-content></ng-content>',
|
|
1142
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1143
|
+
inputs: ['accept', 'maxFileSize', 'maxFiles', 'sort'],
|
|
1144
|
+
}]
|
|
1145
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1146
|
+
let MdsKpi = class MdsKpi {
|
|
1147
|
+
z;
|
|
1148
|
+
el;
|
|
1149
|
+
constructor(c, r, z) {
|
|
1150
|
+
this.z = z;
|
|
1151
|
+
c.detach();
|
|
1152
|
+
this.el = r.nativeElement;
|
|
1153
|
+
}
|
|
1154
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsKpi, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1155
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsKpi, selector: "mds-kpi", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1156
|
+
};
|
|
1157
|
+
MdsKpi = __decorate([
|
|
1158
|
+
ProxyCmp({})
|
|
1159
|
+
], MdsKpi);
|
|
1160
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsKpi, decorators: [{
|
|
1161
|
+
type: Component,
|
|
1162
|
+
args: [{
|
|
1163
|
+
selector: 'mds-kpi',
|
|
1164
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1165
|
+
template: '<ng-content></ng-content>',
|
|
1166
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1167
|
+
inputs: [],
|
|
1168
|
+
}]
|
|
1169
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1170
|
+
let MdsKpiItem = class MdsKpiItem {
|
|
1171
|
+
z;
|
|
1172
|
+
el;
|
|
1173
|
+
constructor(c, r, z) {
|
|
1174
|
+
this.z = z;
|
|
1175
|
+
c.detach();
|
|
1176
|
+
this.el = r.nativeElement;
|
|
1177
|
+
}
|
|
1178
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsKpiItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1179
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", 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 });
|
|
1180
|
+
};
|
|
1181
|
+
MdsKpiItem = __decorate([
|
|
1182
|
+
ProxyCmp({
|
|
1183
|
+
inputs: ['description', 'icon', 'label', 'threshold']
|
|
1184
|
+
})
|
|
1185
|
+
], MdsKpiItem);
|
|
1186
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsKpiItem, decorators: [{
|
|
1187
|
+
type: Component,
|
|
1188
|
+
args: [{
|
|
1189
|
+
selector: 'mds-kpi-item',
|
|
1190
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1191
|
+
template: '<ng-content></ng-content>',
|
|
1192
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1193
|
+
inputs: ['description', 'icon', 'label', 'threshold'],
|
|
1194
|
+
}]
|
|
1195
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1196
|
+
let MdsLabel = class MdsLabel {
|
|
1197
|
+
z;
|
|
1198
|
+
el;
|
|
1199
|
+
constructor(c, r, z) {
|
|
1200
|
+
this.z = z;
|
|
1201
|
+
c.detach();
|
|
1202
|
+
this.el = r.nativeElement;
|
|
1203
|
+
proxyOutputs(this, this.el, ['mdsLabelDelete']);
|
|
1204
|
+
}
|
|
1205
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1206
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", 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 });
|
|
1207
|
+
};
|
|
1208
|
+
MdsLabel = __decorate([
|
|
1209
|
+
ProxyCmp({
|
|
1210
|
+
inputs: ['deletable', 'labelAction', 'tone', 'truncate', 'typography', 'variant']
|
|
1211
|
+
})
|
|
1212
|
+
], MdsLabel);
|
|
1213
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsLabel, decorators: [{
|
|
1214
|
+
type: Component,
|
|
1215
|
+
args: [{
|
|
1216
|
+
selector: 'mds-label',
|
|
1217
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1218
|
+
template: '<ng-content></ng-content>',
|
|
1219
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1220
|
+
inputs: ['deletable', 'labelAction', 'tone', 'truncate', 'typography', 'variant'],
|
|
1221
|
+
}]
|
|
1222
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1223
|
+
let MdsList = class MdsList {
|
|
1224
|
+
z;
|
|
1225
|
+
el;
|
|
1226
|
+
constructor(c, r, z) {
|
|
1227
|
+
this.z = z;
|
|
1228
|
+
c.detach();
|
|
1229
|
+
this.el = r.nativeElement;
|
|
1230
|
+
}
|
|
1231
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1232
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsList, selector: "mds-list", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1233
|
+
};
|
|
1234
|
+
MdsList = __decorate([
|
|
1235
|
+
ProxyCmp({})
|
|
1236
|
+
], MdsList);
|
|
1237
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsList, decorators: [{
|
|
1238
|
+
type: Component,
|
|
1239
|
+
args: [{
|
|
1240
|
+
selector: 'mds-list',
|
|
1241
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1242
|
+
template: '<ng-content></ng-content>',
|
|
1243
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1244
|
+
inputs: [],
|
|
1245
|
+
}]
|
|
1246
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1247
|
+
let MdsListItem = class MdsListItem {
|
|
1248
|
+
z;
|
|
1249
|
+
el;
|
|
1250
|
+
constructor(c, r, z) {
|
|
1251
|
+
this.z = z;
|
|
1252
|
+
c.detach();
|
|
1253
|
+
this.el = r.nativeElement;
|
|
1254
|
+
}
|
|
1255
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1256
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", 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 });
|
|
1257
|
+
};
|
|
1258
|
+
MdsListItem = __decorate([
|
|
1259
|
+
ProxyCmp({
|
|
1260
|
+
inputs: ['icon', 'typography', 'variant']
|
|
1261
|
+
})
|
|
1262
|
+
], MdsListItem);
|
|
1263
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsListItem, decorators: [{
|
|
1264
|
+
type: Component,
|
|
1265
|
+
args: [{
|
|
1266
|
+
selector: 'mds-list-item',
|
|
1267
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1268
|
+
template: '<ng-content></ng-content>',
|
|
1269
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1270
|
+
inputs: ['icon', 'typography', 'variant'],
|
|
1271
|
+
}]
|
|
1272
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1273
|
+
let MdsModal = class MdsModal {
|
|
1274
|
+
z;
|
|
1275
|
+
el;
|
|
1276
|
+
constructor(c, r, z) {
|
|
1277
|
+
this.z = z;
|
|
1278
|
+
c.detach();
|
|
1279
|
+
this.el = r.nativeElement;
|
|
1280
|
+
proxyOutputs(this, this.el, ['mdsModalClose', 'mdsModalHide']);
|
|
1281
|
+
}
|
|
1282
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1283
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsModal, selector: "mds-modal", inputs: { animating: "animating", opened: "opened", position: "position" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1284
|
+
};
|
|
1285
|
+
MdsModal = __decorate([
|
|
1286
|
+
ProxyCmp({
|
|
1287
|
+
inputs: ['animating', 'opened', 'position']
|
|
1288
|
+
})
|
|
1289
|
+
], MdsModal);
|
|
1290
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsModal, decorators: [{
|
|
1291
|
+
type: Component,
|
|
1292
|
+
args: [{
|
|
1293
|
+
selector: 'mds-modal',
|
|
1294
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1295
|
+
template: '<ng-content></ng-content>',
|
|
1296
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1297
|
+
inputs: ['animating', 'opened', 'position'],
|
|
1298
|
+
}]
|
|
1299
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1300
|
+
let MdsNote = class MdsNote {
|
|
1301
|
+
z;
|
|
1302
|
+
el;
|
|
1303
|
+
constructor(c, r, z) {
|
|
1304
|
+
this.z = z;
|
|
1305
|
+
c.detach();
|
|
1306
|
+
this.el = r.nativeElement;
|
|
1307
|
+
proxyOutputs(this, this.el, ['mdsNoteDelete']);
|
|
1308
|
+
}
|
|
1309
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsNote, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1310
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsNote, selector: "mds-note", inputs: { deletable: "deletable", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1311
|
+
};
|
|
1312
|
+
MdsNote = __decorate([
|
|
1313
|
+
ProxyCmp({
|
|
1314
|
+
inputs: ['deletable', 'variant']
|
|
1315
|
+
})
|
|
1316
|
+
], MdsNote);
|
|
1317
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsNote, decorators: [{
|
|
1318
|
+
type: Component,
|
|
1319
|
+
args: [{
|
|
1320
|
+
selector: 'mds-note',
|
|
1321
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1322
|
+
template: '<ng-content></ng-content>',
|
|
1323
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1324
|
+
inputs: ['deletable', 'variant'],
|
|
1325
|
+
}]
|
|
1326
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1327
|
+
let MdsNotification = class MdsNotification {
|
|
1328
|
+
z;
|
|
1329
|
+
el;
|
|
1330
|
+
constructor(c, r, z) {
|
|
1331
|
+
this.z = z;
|
|
1332
|
+
c.detach();
|
|
1333
|
+
this.el = r.nativeElement;
|
|
1334
|
+
}
|
|
1335
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1336
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", 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 });
|
|
1337
|
+
};
|
|
1338
|
+
MdsNotification = __decorate([
|
|
1339
|
+
ProxyCmp({
|
|
1340
|
+
inputs: ['max', 'strategy', 'target', 'value', 'visible']
|
|
1341
|
+
})
|
|
1342
|
+
], MdsNotification);
|
|
1343
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsNotification, decorators: [{
|
|
1344
|
+
type: Component,
|
|
1345
|
+
args: [{
|
|
1346
|
+
selector: 'mds-notification',
|
|
1347
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1348
|
+
template: '<ng-content></ng-content>',
|
|
1349
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1350
|
+
inputs: ['max', 'strategy', 'target', 'value', 'visible'],
|
|
1351
|
+
}]
|
|
1352
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1353
|
+
let MdsPaginator = class MdsPaginator {
|
|
1354
|
+
z;
|
|
1355
|
+
el;
|
|
1356
|
+
constructor(c, r, z) {
|
|
1357
|
+
this.z = z;
|
|
1358
|
+
c.detach();
|
|
1359
|
+
this.el = r.nativeElement;
|
|
1360
|
+
proxyOutputs(this, this.el, ['mdsPaginatorChange']);
|
|
1361
|
+
}
|
|
1362
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPaginator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1363
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsPaginator, selector: "mds-paginator", inputs: { currentPage: "currentPage", pages: "pages" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1364
|
+
};
|
|
1365
|
+
MdsPaginator = __decorate([
|
|
1366
|
+
ProxyCmp({
|
|
1367
|
+
inputs: ['currentPage', 'pages']
|
|
1368
|
+
})
|
|
1369
|
+
], MdsPaginator);
|
|
1370
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPaginator, decorators: [{
|
|
1371
|
+
type: Component,
|
|
1372
|
+
args: [{
|
|
1373
|
+
selector: 'mds-paginator',
|
|
1374
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1375
|
+
template: '<ng-content></ng-content>',
|
|
1376
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1377
|
+
inputs: ['currentPage', 'pages'],
|
|
1378
|
+
}]
|
|
1379
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1380
|
+
let MdsPaginatorItem = class MdsPaginatorItem {
|
|
1381
|
+
z;
|
|
1382
|
+
el;
|
|
1383
|
+
constructor(c, r, z) {
|
|
1384
|
+
this.z = z;
|
|
1385
|
+
c.detach();
|
|
1386
|
+
this.el = r.nativeElement;
|
|
1387
|
+
}
|
|
1388
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPaginatorItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1389
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", 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 });
|
|
1390
|
+
};
|
|
1391
|
+
MdsPaginatorItem = __decorate([
|
|
1392
|
+
ProxyCmp({
|
|
1393
|
+
inputs: ['disabled', 'icon', 'selected']
|
|
1394
|
+
})
|
|
1395
|
+
], MdsPaginatorItem);
|
|
1396
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPaginatorItem, decorators: [{
|
|
1397
|
+
type: Component,
|
|
1398
|
+
args: [{
|
|
1399
|
+
selector: 'mds-paginator-item',
|
|
1400
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1401
|
+
template: '<ng-content></ng-content>',
|
|
1402
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1403
|
+
inputs: ['disabled', 'icon', 'selected'],
|
|
1404
|
+
}]
|
|
1405
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1406
|
+
let MdsPref = class MdsPref {
|
|
1407
|
+
z;
|
|
1408
|
+
el;
|
|
1409
|
+
constructor(c, r, z) {
|
|
1410
|
+
this.z = z;
|
|
1411
|
+
c.detach();
|
|
1412
|
+
this.el = r.nativeElement;
|
|
1413
|
+
}
|
|
1414
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPref, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1415
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsPref, selector: "mds-pref", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1416
|
+
};
|
|
1417
|
+
MdsPref = __decorate([
|
|
1418
|
+
ProxyCmp({})
|
|
1419
|
+
], MdsPref);
|
|
1420
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPref, decorators: [{
|
|
1421
|
+
type: Component,
|
|
1422
|
+
args: [{
|
|
1423
|
+
selector: 'mds-pref',
|
|
1424
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1425
|
+
template: '<ng-content></ng-content>',
|
|
1426
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1427
|
+
inputs: [],
|
|
1428
|
+
}]
|
|
1429
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1430
|
+
let MdsPrefAnimation = class MdsPrefAnimation {
|
|
1431
|
+
z;
|
|
1432
|
+
el;
|
|
1433
|
+
constructor(c, r, z) {
|
|
1434
|
+
this.z = z;
|
|
1435
|
+
c.detach();
|
|
1436
|
+
this.el = r.nativeElement;
|
|
1437
|
+
proxyOutputs(this, this.el, ['mdsPrefChange']);
|
|
1438
|
+
}
|
|
1439
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPrefAnimation, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1440
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsPrefAnimation, selector: "mds-pref-animation", inputs: { mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1441
|
+
};
|
|
1442
|
+
MdsPrefAnimation = __decorate([
|
|
1443
|
+
ProxyCmp({
|
|
1444
|
+
inputs: ['mode']
|
|
1445
|
+
})
|
|
1446
|
+
], MdsPrefAnimation);
|
|
1447
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPrefAnimation, decorators: [{
|
|
1448
|
+
type: Component,
|
|
1449
|
+
args: [{
|
|
1450
|
+
selector: 'mds-pref-animation',
|
|
1451
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1452
|
+
template: '<ng-content></ng-content>',
|
|
1453
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1454
|
+
inputs: ['mode'],
|
|
1455
|
+
}]
|
|
1456
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1457
|
+
let MdsPrefConsumption = class MdsPrefConsumption {
|
|
1458
|
+
z;
|
|
1459
|
+
el;
|
|
1460
|
+
constructor(c, r, z) {
|
|
1461
|
+
this.z = z;
|
|
1462
|
+
c.detach();
|
|
1463
|
+
this.el = r.nativeElement;
|
|
1464
|
+
proxyOutputs(this, this.el, ['mdsPrefChange']);
|
|
1465
|
+
}
|
|
1466
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPrefConsumption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1467
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsPrefConsumption, selector: "mds-pref-consumption", inputs: { mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1468
|
+
};
|
|
1469
|
+
MdsPrefConsumption = __decorate([
|
|
1470
|
+
ProxyCmp({
|
|
1471
|
+
inputs: ['mode']
|
|
1472
|
+
})
|
|
1473
|
+
], MdsPrefConsumption);
|
|
1474
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPrefConsumption, decorators: [{
|
|
1475
|
+
type: Component,
|
|
1476
|
+
args: [{
|
|
1477
|
+
selector: 'mds-pref-consumption',
|
|
1478
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1479
|
+
template: '<ng-content></ng-content>',
|
|
1480
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1481
|
+
inputs: ['mode'],
|
|
1482
|
+
}]
|
|
1483
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1484
|
+
let MdsPrefContrast = class MdsPrefContrast {
|
|
1485
|
+
z;
|
|
1486
|
+
el;
|
|
1487
|
+
constructor(c, r, z) {
|
|
1488
|
+
this.z = z;
|
|
1489
|
+
c.detach();
|
|
1490
|
+
this.el = r.nativeElement;
|
|
1491
|
+
proxyOutputs(this, this.el, ['mdsPrefChange']);
|
|
1492
|
+
}
|
|
1493
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPrefContrast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1494
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsPrefContrast, selector: "mds-pref-contrast", inputs: { mode: "mode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1495
|
+
};
|
|
1496
|
+
MdsPrefContrast = __decorate([
|
|
1497
|
+
ProxyCmp({
|
|
1498
|
+
inputs: ['mode']
|
|
1499
|
+
})
|
|
1500
|
+
], MdsPrefContrast);
|
|
1501
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPrefContrast, decorators: [{
|
|
1502
|
+
type: Component,
|
|
1503
|
+
args: [{
|
|
1504
|
+
selector: 'mds-pref-contrast',
|
|
1505
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1506
|
+
template: '<ng-content></ng-content>',
|
|
1507
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1508
|
+
inputs: ['mode'],
|
|
1509
|
+
}]
|
|
1510
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1511
|
+
let MdsPrefLanguage = class MdsPrefLanguage {
|
|
1512
|
+
z;
|
|
1513
|
+
el;
|
|
1514
|
+
constructor(c, r, z) {
|
|
1515
|
+
this.z = z;
|
|
1516
|
+
c.detach();
|
|
1517
|
+
this.el = r.nativeElement;
|
|
1518
|
+
proxyOutputs(this, this.el, ['mdsPrefLanguageChange', 'mdsPrefChange']);
|
|
1519
|
+
}
|
|
1520
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPrefLanguage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1521
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsPrefLanguage, selector: "mds-pref-language", inputs: { set: "set" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1522
|
+
};
|
|
1523
|
+
MdsPrefLanguage = __decorate([
|
|
1524
|
+
ProxyCmp({
|
|
1525
|
+
inputs: ['set']
|
|
1526
|
+
})
|
|
1527
|
+
], MdsPrefLanguage);
|
|
1528
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPrefLanguage, decorators: [{
|
|
1529
|
+
type: Component,
|
|
1530
|
+
args: [{
|
|
1531
|
+
selector: 'mds-pref-language',
|
|
1532
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1533
|
+
template: '<ng-content></ng-content>',
|
|
1534
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1535
|
+
inputs: ['set'],
|
|
1536
|
+
}]
|
|
1537
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1538
|
+
let MdsPrefLanguageItem = class MdsPrefLanguageItem {
|
|
1539
|
+
z;
|
|
1540
|
+
el;
|
|
1541
|
+
constructor(c, r, z) {
|
|
1542
|
+
this.z = z;
|
|
1543
|
+
c.detach();
|
|
1544
|
+
this.el = r.nativeElement;
|
|
1545
|
+
proxyOutputs(this, this.el, ['mdsPrefLanguageItemSelect']);
|
|
1546
|
+
}
|
|
1547
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPrefLanguageItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1548
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", 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 });
|
|
1549
|
+
};
|
|
1550
|
+
MdsPrefLanguageItem = __decorate([
|
|
1551
|
+
ProxyCmp({
|
|
1552
|
+
inputs: ['code', 'selected']
|
|
1553
|
+
})
|
|
1554
|
+
], MdsPrefLanguageItem);
|
|
1555
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPrefLanguageItem, decorators: [{
|
|
1556
|
+
type: Component,
|
|
1557
|
+
args: [{
|
|
1558
|
+
selector: 'mds-pref-language-item',
|
|
1559
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1560
|
+
template: '<ng-content></ng-content>',
|
|
1561
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1562
|
+
inputs: ['code', 'selected'],
|
|
1563
|
+
}]
|
|
1564
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1565
|
+
let MdsPrefLanguageNav = class MdsPrefLanguageNav {
|
|
1566
|
+
z;
|
|
1567
|
+
el;
|
|
1568
|
+
constructor(c, r, z) {
|
|
1569
|
+
this.z = z;
|
|
1570
|
+
c.detach();
|
|
1571
|
+
this.el = r.nativeElement;
|
|
1572
|
+
proxyOutputs(this, this.el, ['mdsPrefLanguageNavSelect']);
|
|
1573
|
+
}
|
|
1574
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPrefLanguageNav, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1575
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsPrefLanguageNav, selector: "mds-pref-language-nav", inputs: { active: "active", set: "set" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1576
|
+
};
|
|
1577
|
+
MdsPrefLanguageNav = __decorate([
|
|
1578
|
+
ProxyCmp({
|
|
1579
|
+
inputs: ['active', 'set']
|
|
1580
|
+
})
|
|
1581
|
+
], MdsPrefLanguageNav);
|
|
1582
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPrefLanguageNav, decorators: [{
|
|
1583
|
+
type: Component,
|
|
1584
|
+
args: [{
|
|
1585
|
+
selector: 'mds-pref-language-nav',
|
|
1586
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1587
|
+
template: '<ng-content></ng-content>',
|
|
1588
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1589
|
+
inputs: ['active', 'set'],
|
|
1590
|
+
}]
|
|
1591
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1592
|
+
let MdsPrefTheme = class MdsPrefTheme {
|
|
1593
|
+
z;
|
|
1594
|
+
el;
|
|
1595
|
+
constructor(c, r, z) {
|
|
1596
|
+
this.z = z;
|
|
1597
|
+
c.detach();
|
|
1598
|
+
this.el = r.nativeElement;
|
|
1599
|
+
proxyOutputs(this, this.el, ['mdsPrefChange']);
|
|
1600
|
+
}
|
|
1601
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPrefTheme, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1602
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsPrefTheme, selector: "mds-pref-theme", inputs: { mode: "mode", transition: "transition" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1603
|
+
};
|
|
1604
|
+
MdsPrefTheme = __decorate([
|
|
1605
|
+
ProxyCmp({
|
|
1606
|
+
inputs: ['mode', 'transition']
|
|
1607
|
+
})
|
|
1608
|
+
], MdsPrefTheme);
|
|
1609
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPrefTheme, decorators: [{
|
|
1610
|
+
type: Component,
|
|
1611
|
+
args: [{
|
|
1612
|
+
selector: 'mds-pref-theme',
|
|
1613
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1614
|
+
template: '<ng-content></ng-content>',
|
|
1615
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1616
|
+
inputs: ['mode', 'transition'],
|
|
1617
|
+
}]
|
|
1618
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1619
|
+
let MdsPriceTable = class MdsPriceTable {
|
|
1620
|
+
z;
|
|
1621
|
+
el;
|
|
1622
|
+
constructor(c, r, z) {
|
|
1623
|
+
this.z = z;
|
|
1624
|
+
c.detach();
|
|
1625
|
+
this.el = r.nativeElement;
|
|
1626
|
+
}
|
|
1627
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPriceTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1628
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsPriceTable, selector: "mds-price-table", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1629
|
+
};
|
|
1630
|
+
MdsPriceTable = __decorate([
|
|
1631
|
+
ProxyCmp({})
|
|
1632
|
+
], MdsPriceTable);
|
|
1633
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPriceTable, decorators: [{
|
|
1634
|
+
type: Component,
|
|
1635
|
+
args: [{
|
|
1636
|
+
selector: 'mds-price-table',
|
|
1637
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1638
|
+
template: '<ng-content></ng-content>',
|
|
1639
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1640
|
+
inputs: [],
|
|
1641
|
+
}]
|
|
1642
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1643
|
+
let MdsPriceTableFeatures = class MdsPriceTableFeatures {
|
|
1644
|
+
z;
|
|
1645
|
+
el;
|
|
1646
|
+
constructor(c, r, z) {
|
|
1647
|
+
this.z = z;
|
|
1648
|
+
c.detach();
|
|
1649
|
+
this.el = r.nativeElement;
|
|
1650
|
+
}
|
|
1651
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPriceTableFeatures, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1652
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsPriceTableFeatures, selector: "mds-price-table-features", inputs: { label: "label" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1653
|
+
};
|
|
1654
|
+
MdsPriceTableFeatures = __decorate([
|
|
1655
|
+
ProxyCmp({
|
|
1656
|
+
inputs: ['label']
|
|
1657
|
+
})
|
|
1658
|
+
], MdsPriceTableFeatures);
|
|
1659
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPriceTableFeatures, decorators: [{
|
|
1660
|
+
type: Component,
|
|
1661
|
+
args: [{
|
|
1662
|
+
selector: 'mds-price-table-features',
|
|
1663
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1664
|
+
template: '<ng-content></ng-content>',
|
|
1665
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1666
|
+
inputs: ['label'],
|
|
1667
|
+
}]
|
|
1668
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1669
|
+
let MdsPriceTableFeaturesCell = class MdsPriceTableFeaturesCell {
|
|
1670
|
+
z;
|
|
1671
|
+
el;
|
|
1672
|
+
constructor(c, r, z) {
|
|
1673
|
+
this.z = z;
|
|
1674
|
+
c.detach();
|
|
1675
|
+
this.el = r.nativeElement;
|
|
1676
|
+
}
|
|
1677
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPriceTableFeaturesCell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1678
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsPriceTableFeaturesCell, selector: "mds-price-table-features-cell", inputs: { type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1679
|
+
};
|
|
1680
|
+
MdsPriceTableFeaturesCell = __decorate([
|
|
1681
|
+
ProxyCmp({
|
|
1682
|
+
inputs: ['type']
|
|
1683
|
+
})
|
|
1684
|
+
], MdsPriceTableFeaturesCell);
|
|
1685
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPriceTableFeaturesCell, decorators: [{
|
|
1686
|
+
type: Component,
|
|
1687
|
+
args: [{
|
|
1688
|
+
selector: 'mds-price-table-features-cell',
|
|
1689
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1690
|
+
template: '<ng-content></ng-content>',
|
|
1691
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1692
|
+
inputs: ['type'],
|
|
1693
|
+
}]
|
|
1694
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1695
|
+
let MdsPriceTableFeaturesRow = class MdsPriceTableFeaturesRow {
|
|
1696
|
+
z;
|
|
1697
|
+
el;
|
|
1698
|
+
constructor(c, r, z) {
|
|
1699
|
+
this.z = z;
|
|
1700
|
+
c.detach();
|
|
1701
|
+
this.el = r.nativeElement;
|
|
1702
|
+
}
|
|
1703
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPriceTableFeaturesRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1704
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsPriceTableFeaturesRow, selector: "mds-price-table-features-row", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1705
|
+
};
|
|
1706
|
+
MdsPriceTableFeaturesRow = __decorate([
|
|
1707
|
+
ProxyCmp({})
|
|
1708
|
+
], MdsPriceTableFeaturesRow);
|
|
1709
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPriceTableFeaturesRow, decorators: [{
|
|
1710
|
+
type: Component,
|
|
1711
|
+
args: [{
|
|
1712
|
+
selector: 'mds-price-table-features-row',
|
|
1713
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1714
|
+
template: '<ng-content></ng-content>',
|
|
1715
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1716
|
+
inputs: [],
|
|
1717
|
+
}]
|
|
1718
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1719
|
+
let MdsPriceTableHeader = class MdsPriceTableHeader {
|
|
1720
|
+
z;
|
|
1721
|
+
el;
|
|
1722
|
+
constructor(c, r, z) {
|
|
1723
|
+
this.z = z;
|
|
1724
|
+
c.detach();
|
|
1725
|
+
this.el = r.nativeElement;
|
|
1726
|
+
}
|
|
1727
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPriceTableHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1728
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsPriceTableHeader, selector: "mds-price-table-header", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1729
|
+
};
|
|
1730
|
+
MdsPriceTableHeader = __decorate([
|
|
1731
|
+
ProxyCmp({})
|
|
1732
|
+
], MdsPriceTableHeader);
|
|
1733
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPriceTableHeader, decorators: [{
|
|
1734
|
+
type: Component,
|
|
1735
|
+
args: [{
|
|
1736
|
+
selector: 'mds-price-table-header',
|
|
1737
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1738
|
+
template: '<ng-content></ng-content>',
|
|
1739
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1740
|
+
inputs: [],
|
|
1741
|
+
}]
|
|
1742
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1743
|
+
let MdsPriceTableList = class MdsPriceTableList {
|
|
1744
|
+
z;
|
|
1745
|
+
el;
|
|
1746
|
+
constructor(c, r, z) {
|
|
1747
|
+
this.z = z;
|
|
1748
|
+
c.detach();
|
|
1749
|
+
this.el = r.nativeElement;
|
|
1750
|
+
}
|
|
1751
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPriceTableList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1752
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsPriceTableList, selector: "mds-price-table-list", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1753
|
+
};
|
|
1754
|
+
MdsPriceTableList = __decorate([
|
|
1755
|
+
ProxyCmp({})
|
|
1756
|
+
], MdsPriceTableList);
|
|
1757
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPriceTableList, decorators: [{
|
|
1758
|
+
type: Component,
|
|
1759
|
+
args: [{
|
|
1760
|
+
selector: 'mds-price-table-list',
|
|
1761
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1762
|
+
template: '<ng-content></ng-content>',
|
|
1763
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1764
|
+
inputs: [],
|
|
1765
|
+
}]
|
|
1766
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1767
|
+
let MdsPriceTableListItem = class MdsPriceTableListItem {
|
|
1768
|
+
z;
|
|
1769
|
+
el;
|
|
1770
|
+
constructor(c, r, z) {
|
|
1771
|
+
this.z = z;
|
|
1772
|
+
c.detach();
|
|
1773
|
+
this.el = r.nativeElement;
|
|
1774
|
+
}
|
|
1775
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPriceTableListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1776
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", 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 });
|
|
1777
|
+
};
|
|
1778
|
+
MdsPriceTableListItem = __decorate([
|
|
1779
|
+
ProxyCmp({
|
|
1780
|
+
inputs: ['supported', 'typography']
|
|
1781
|
+
})
|
|
1782
|
+
], MdsPriceTableListItem);
|
|
1783
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPriceTableListItem, decorators: [{
|
|
1784
|
+
type: Component,
|
|
1785
|
+
args: [{
|
|
1786
|
+
selector: 'mds-price-table-list-item',
|
|
1787
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1788
|
+
template: '<ng-content></ng-content>',
|
|
1789
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1790
|
+
inputs: ['supported', 'typography'],
|
|
1791
|
+
}]
|
|
1792
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1793
|
+
let MdsProgress = class MdsProgress {
|
|
1794
|
+
z;
|
|
1795
|
+
el;
|
|
1796
|
+
constructor(c, r, z) {
|
|
1797
|
+
this.z = z;
|
|
1798
|
+
c.detach();
|
|
1799
|
+
this.el = r.nativeElement;
|
|
1800
|
+
}
|
|
1801
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsProgress, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1802
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", 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 });
|
|
1803
|
+
};
|
|
1804
|
+
MdsProgress = __decorate([
|
|
1805
|
+
ProxyCmp({
|
|
1806
|
+
inputs: ['direction', 'progress', 'steps', 'variant']
|
|
1807
|
+
})
|
|
1808
|
+
], MdsProgress);
|
|
1809
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsProgress, decorators: [{
|
|
1810
|
+
type: Component,
|
|
1811
|
+
args: [{
|
|
1812
|
+
selector: 'mds-progress',
|
|
1813
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1814
|
+
template: '<ng-content></ng-content>',
|
|
1815
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1816
|
+
inputs: ['direction', 'progress', 'steps', 'variant'],
|
|
1817
|
+
}]
|
|
1818
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1819
|
+
let MdsPushNotification = class MdsPushNotification {
|
|
1820
|
+
z;
|
|
1821
|
+
el;
|
|
1822
|
+
constructor(c, r, z) {
|
|
1823
|
+
this.z = z;
|
|
1824
|
+
c.detach();
|
|
1825
|
+
this.el = r.nativeElement;
|
|
1826
|
+
proxyOutputs(this, this.el, ['mdsPushNotificationClose']);
|
|
1827
|
+
}
|
|
1828
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPushNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1829
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", 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 });
|
|
1830
|
+
};
|
|
1831
|
+
MdsPushNotification = __decorate([
|
|
1832
|
+
ProxyCmp({
|
|
1833
|
+
inputs: ['dateFormat', 'datetime', 'deletable', 'icon', 'initials', 'message', 'preview', 'src', 'subject', 'tone', 'variant']
|
|
1834
|
+
})
|
|
1835
|
+
], MdsPushNotification);
|
|
1836
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPushNotification, decorators: [{
|
|
1837
|
+
type: Component,
|
|
1838
|
+
args: [{
|
|
1839
|
+
selector: 'mds-push-notification',
|
|
1840
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1841
|
+
template: '<ng-content></ng-content>',
|
|
1842
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1843
|
+
inputs: ['dateFormat', 'datetime', 'deletable', 'icon', 'initials', 'message', 'preview', 'src', 'subject', 'tone', 'variant'],
|
|
1844
|
+
}]
|
|
1845
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1846
|
+
let MdsPushNotifications = class MdsPushNotifications {
|
|
1847
|
+
z;
|
|
1848
|
+
el;
|
|
1849
|
+
constructor(c, r, z) {
|
|
1850
|
+
this.z = z;
|
|
1851
|
+
c.detach();
|
|
1852
|
+
this.el = r.nativeElement;
|
|
1853
|
+
}
|
|
1854
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPushNotifications, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1855
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsPushNotifications, selector: "mds-push-notifications", inputs: { visible: "visible", visiblity: "visiblity" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1856
|
+
};
|
|
1857
|
+
MdsPushNotifications = __decorate([
|
|
1858
|
+
ProxyCmp({
|
|
1859
|
+
inputs: ['visible', 'visiblity']
|
|
1860
|
+
})
|
|
1861
|
+
], MdsPushNotifications);
|
|
1862
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsPushNotifications, decorators: [{
|
|
1863
|
+
type: Component,
|
|
1864
|
+
args: [{
|
|
1865
|
+
selector: 'mds-push-notifications',
|
|
1866
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1867
|
+
template: '<ng-content></ng-content>',
|
|
1868
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1869
|
+
inputs: ['visible', 'visiblity'],
|
|
1870
|
+
}]
|
|
1871
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1872
|
+
let MdsQuote = class MdsQuote {
|
|
1873
|
+
z;
|
|
1874
|
+
el;
|
|
1875
|
+
constructor(c, r, z) {
|
|
1876
|
+
this.z = z;
|
|
1877
|
+
c.detach();
|
|
1878
|
+
this.el = r.nativeElement;
|
|
1879
|
+
}
|
|
1880
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsQuote, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1881
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsQuote, selector: "mds-quote", inputs: { typography: "typography" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1882
|
+
};
|
|
1883
|
+
MdsQuote = __decorate([
|
|
1884
|
+
ProxyCmp({
|
|
1885
|
+
inputs: ['typography']
|
|
1886
|
+
})
|
|
1887
|
+
], MdsQuote);
|
|
1888
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsQuote, decorators: [{
|
|
1889
|
+
type: Component,
|
|
1890
|
+
args: [{
|
|
1891
|
+
selector: 'mds-quote',
|
|
1892
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1893
|
+
template: '<ng-content></ng-content>',
|
|
1894
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1895
|
+
inputs: ['typography'],
|
|
1896
|
+
}]
|
|
1897
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1898
|
+
let MdsSeparator = class MdsSeparator {
|
|
1899
|
+
z;
|
|
1900
|
+
el;
|
|
1901
|
+
constructor(c, r, z) {
|
|
1902
|
+
this.z = z;
|
|
1903
|
+
c.detach();
|
|
1904
|
+
this.el = r.nativeElement;
|
|
1905
|
+
}
|
|
1906
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsSeparator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1907
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsSeparator, selector: "mds-separator", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1908
|
+
};
|
|
1909
|
+
MdsSeparator = __decorate([
|
|
1910
|
+
ProxyCmp({})
|
|
1911
|
+
], MdsSeparator);
|
|
1912
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsSeparator, decorators: [{
|
|
1913
|
+
type: Component,
|
|
1914
|
+
args: [{
|
|
1915
|
+
selector: 'mds-separator',
|
|
1916
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1917
|
+
template: '<ng-content></ng-content>',
|
|
1918
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1919
|
+
inputs: [],
|
|
1920
|
+
}]
|
|
1921
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1922
|
+
let MdsSpinner = class MdsSpinner {
|
|
1923
|
+
z;
|
|
1924
|
+
el;
|
|
1925
|
+
constructor(c, r, z) {
|
|
1926
|
+
this.z = z;
|
|
1927
|
+
c.detach();
|
|
1928
|
+
this.el = r.nativeElement;
|
|
1929
|
+
}
|
|
1930
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1931
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsSpinner, selector: "mds-spinner", inputs: { running: "running" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1932
|
+
};
|
|
1933
|
+
MdsSpinner = __decorate([
|
|
1934
|
+
ProxyCmp({
|
|
1935
|
+
inputs: ['running']
|
|
1936
|
+
})
|
|
1937
|
+
], MdsSpinner);
|
|
1938
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsSpinner, decorators: [{
|
|
1939
|
+
type: Component,
|
|
1940
|
+
args: [{
|
|
1941
|
+
selector: 'mds-spinner',
|
|
1942
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1943
|
+
template: '<ng-content></ng-content>',
|
|
1944
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1945
|
+
inputs: ['running'],
|
|
1946
|
+
}]
|
|
1947
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1948
|
+
let MdsStepperBar = class MdsStepperBar {
|
|
1949
|
+
z;
|
|
1950
|
+
el;
|
|
1951
|
+
constructor(c, r, z) {
|
|
1952
|
+
this.z = z;
|
|
1953
|
+
c.detach();
|
|
1954
|
+
this.el = r.nativeElement;
|
|
1955
|
+
proxyOutputs(this, this.el, ['mdsStepperBarChange']);
|
|
1956
|
+
}
|
|
1957
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsStepperBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1958
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsStepperBar, selector: "mds-stepper-bar", inputs: { itemsDone: "itemsDone" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1959
|
+
};
|
|
1960
|
+
MdsStepperBar = __decorate([
|
|
1961
|
+
ProxyCmp({
|
|
1962
|
+
inputs: ['itemsDone']
|
|
1963
|
+
})
|
|
1964
|
+
], MdsStepperBar);
|
|
1965
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsStepperBar, decorators: [{
|
|
1966
|
+
type: Component,
|
|
1967
|
+
args: [{
|
|
1968
|
+
selector: 'mds-stepper-bar',
|
|
1969
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1970
|
+
template: '<ng-content></ng-content>',
|
|
1971
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1972
|
+
inputs: ['itemsDone'],
|
|
1973
|
+
}]
|
|
1974
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1975
|
+
let MdsStepperBarItem = class MdsStepperBarItem {
|
|
1976
|
+
z;
|
|
1977
|
+
el;
|
|
1978
|
+
constructor(c, r, z) {
|
|
1979
|
+
this.z = z;
|
|
1980
|
+
c.detach();
|
|
1981
|
+
this.el = r.nativeElement;
|
|
1982
|
+
proxyOutputs(this, this.el, ['mdsStepperBarItemDone']);
|
|
1983
|
+
}
|
|
1984
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsStepperBarItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1985
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", 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 });
|
|
1986
|
+
};
|
|
1987
|
+
MdsStepperBarItem = __decorate([
|
|
1988
|
+
ProxyCmp({
|
|
1989
|
+
inputs: ['badge', 'current', 'done', 'icon', 'iconChecked', 'label', 'step', 'typography', 'value']
|
|
1990
|
+
})
|
|
1991
|
+
], MdsStepperBarItem);
|
|
1992
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsStepperBarItem, decorators: [{
|
|
1993
|
+
type: Component,
|
|
1994
|
+
args: [{
|
|
1995
|
+
selector: 'mds-stepper-bar-item',
|
|
1996
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1997
|
+
template: '<ng-content></ng-content>',
|
|
1998
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1999
|
+
inputs: ['badge', 'current', 'done', 'icon', 'iconChecked', 'label', 'step', 'typography', 'value'],
|
|
2000
|
+
}]
|
|
2001
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2002
|
+
let MdsTab = class MdsTab {
|
|
2003
|
+
z;
|
|
2004
|
+
el;
|
|
2005
|
+
constructor(c, r, z) {
|
|
2006
|
+
this.z = z;
|
|
2007
|
+
c.detach();
|
|
2008
|
+
this.el = r.nativeElement;
|
|
2009
|
+
proxyOutputs(this, this.el, ['mdsTabChange']);
|
|
2010
|
+
}
|
|
2011
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2012
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsTab, selector: "mds-tab", inputs: { scrollbar: "scrollbar" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2013
|
+
};
|
|
2014
|
+
MdsTab = __decorate([
|
|
2015
|
+
ProxyCmp({
|
|
2016
|
+
inputs: ['scrollbar']
|
|
2017
|
+
})
|
|
2018
|
+
], MdsTab);
|
|
2019
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsTab, decorators: [{
|
|
2020
|
+
type: Component,
|
|
2021
|
+
args: [{
|
|
2022
|
+
selector: 'mds-tab',
|
|
2023
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2024
|
+
template: '<ng-content></ng-content>',
|
|
2025
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2026
|
+
inputs: ['scrollbar'],
|
|
2027
|
+
}]
|
|
2028
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2029
|
+
let MdsTabBar = class MdsTabBar {
|
|
2030
|
+
z;
|
|
2031
|
+
el;
|
|
2032
|
+
constructor(c, r, z) {
|
|
2033
|
+
this.z = z;
|
|
2034
|
+
c.detach();
|
|
2035
|
+
this.el = r.nativeElement;
|
|
2036
|
+
proxyOutputs(this, this.el, ['mdsTabBarChange']);
|
|
2037
|
+
}
|
|
2038
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsTabBar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2039
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsTabBar, selector: "mds-tab-bar", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2040
|
+
};
|
|
2041
|
+
MdsTabBar = __decorate([
|
|
2042
|
+
ProxyCmp({})
|
|
2043
|
+
], MdsTabBar);
|
|
2044
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsTabBar, decorators: [{
|
|
2045
|
+
type: Component,
|
|
2046
|
+
args: [{
|
|
2047
|
+
selector: 'mds-tab-bar',
|
|
2048
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2049
|
+
template: '<ng-content></ng-content>',
|
|
2050
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2051
|
+
inputs: [],
|
|
2052
|
+
}]
|
|
2053
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2054
|
+
let MdsTabBarItem = class MdsTabBarItem {
|
|
2055
|
+
z;
|
|
2056
|
+
el;
|
|
2057
|
+
constructor(c, r, z) {
|
|
2058
|
+
this.z = z;
|
|
2059
|
+
c.detach();
|
|
2060
|
+
this.el = r.nativeElement;
|
|
2061
|
+
proxyOutputs(this, this.el, ['mdsTabBarItemSelect']);
|
|
2062
|
+
}
|
|
2063
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsTabBarItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2064
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", 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 });
|
|
2065
|
+
};
|
|
2066
|
+
MdsTabBarItem = __decorate([
|
|
2067
|
+
ProxyCmp({
|
|
2068
|
+
inputs: ['icon', 'selected', 'typography']
|
|
2069
|
+
})
|
|
2070
|
+
], MdsTabBarItem);
|
|
2071
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsTabBarItem, decorators: [{
|
|
2072
|
+
type: Component,
|
|
2073
|
+
args: [{
|
|
2074
|
+
selector: 'mds-tab-bar-item',
|
|
2075
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2076
|
+
template: '<ng-content></ng-content>',
|
|
2077
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2078
|
+
inputs: ['icon', 'selected', 'typography'],
|
|
2079
|
+
}]
|
|
2080
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2081
|
+
let MdsTabItem = class MdsTabItem {
|
|
2082
|
+
z;
|
|
2083
|
+
el;
|
|
2084
|
+
constructor(c, r, z) {
|
|
2085
|
+
this.z = z;
|
|
2086
|
+
c.detach();
|
|
2087
|
+
this.el = r.nativeElement;
|
|
2088
|
+
proxyOutputs(this, this.el, ['mdsTabItemSelect', 'mdsTabItemFocus']);
|
|
2089
|
+
}
|
|
2090
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsTabItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2091
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsTabItem, selector: "mds-tab-item", inputs: { 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 });
|
|
2092
|
+
};
|
|
2093
|
+
MdsTabItem = __decorate([
|
|
2094
|
+
ProxyCmp({
|
|
2095
|
+
inputs: ['icon', 'iconPosition', 'selected', 'size', 'type', 'value']
|
|
2096
|
+
})
|
|
2097
|
+
], MdsTabItem);
|
|
2098
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsTabItem, decorators: [{
|
|
2099
|
+
type: Component,
|
|
2100
|
+
args: [{
|
|
2101
|
+
selector: 'mds-tab-item',
|
|
2102
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2103
|
+
template: '<ng-content></ng-content>',
|
|
2104
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2105
|
+
inputs: ['icon', 'iconPosition', 'selected', 'size', 'type', 'value'],
|
|
2106
|
+
}]
|
|
2107
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2108
|
+
let MdsTable = class MdsTable {
|
|
2109
|
+
z;
|
|
2110
|
+
el;
|
|
2111
|
+
constructor(c, r, z) {
|
|
2112
|
+
this.z = z;
|
|
2113
|
+
c.detach();
|
|
2114
|
+
this.el = r.nativeElement;
|
|
2115
|
+
proxyOutputs(this, this.el, ['mdsTableInteractiveChange']);
|
|
2116
|
+
}
|
|
2117
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2118
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsTable, selector: "mds-table", inputs: { interactive: "interactive" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2119
|
+
};
|
|
2120
|
+
MdsTable = __decorate([
|
|
2121
|
+
ProxyCmp({
|
|
2122
|
+
inputs: ['interactive']
|
|
2123
|
+
})
|
|
2124
|
+
], MdsTable);
|
|
2125
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsTable, decorators: [{
|
|
2126
|
+
type: Component,
|
|
2127
|
+
args: [{
|
|
2128
|
+
selector: 'mds-table',
|
|
2129
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2130
|
+
template: '<ng-content></ng-content>',
|
|
2131
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2132
|
+
inputs: ['interactive'],
|
|
2133
|
+
}]
|
|
2134
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2135
|
+
let MdsTableBody = class MdsTableBody {
|
|
2136
|
+
z;
|
|
2137
|
+
el;
|
|
2138
|
+
constructor(c, r, z) {
|
|
2139
|
+
this.z = z;
|
|
2140
|
+
c.detach();
|
|
2141
|
+
this.el = r.nativeElement;
|
|
2142
|
+
}
|
|
2143
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsTableBody, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2144
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsTableBody, selector: "mds-table-body", inputs: { interactive: "interactive" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2145
|
+
};
|
|
2146
|
+
MdsTableBody = __decorate([
|
|
2147
|
+
ProxyCmp({
|
|
2148
|
+
inputs: ['interactive']
|
|
2149
|
+
})
|
|
2150
|
+
], MdsTableBody);
|
|
2151
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsTableBody, decorators: [{
|
|
2152
|
+
type: Component,
|
|
2153
|
+
args: [{
|
|
2154
|
+
selector: 'mds-table-body',
|
|
2155
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2156
|
+
template: '<ng-content></ng-content>',
|
|
2157
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2158
|
+
inputs: ['interactive'],
|
|
2159
|
+
}]
|
|
2160
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2161
|
+
let MdsTableCell = class MdsTableCell {
|
|
2162
|
+
z;
|
|
2163
|
+
el;
|
|
2164
|
+
constructor(c, r, z) {
|
|
2165
|
+
this.z = z;
|
|
2166
|
+
c.detach();
|
|
2167
|
+
this.el = r.nativeElement;
|
|
2168
|
+
}
|
|
2169
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsTableCell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2170
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsTableCell, selector: "mds-table-cell", inputs: { value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2171
|
+
};
|
|
2172
|
+
MdsTableCell = __decorate([
|
|
2173
|
+
ProxyCmp({
|
|
2174
|
+
inputs: ['value']
|
|
2175
|
+
})
|
|
2176
|
+
], MdsTableCell);
|
|
2177
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsTableCell, decorators: [{
|
|
2178
|
+
type: Component,
|
|
2179
|
+
args: [{
|
|
2180
|
+
selector: 'mds-table-cell',
|
|
2181
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2182
|
+
template: '<ng-content></ng-content>',
|
|
2183
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2184
|
+
inputs: ['value'],
|
|
2185
|
+
}]
|
|
2186
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2187
|
+
let MdsTableFooter = class MdsTableFooter {
|
|
2188
|
+
z;
|
|
2189
|
+
el;
|
|
2190
|
+
constructor(c, r, z) {
|
|
2191
|
+
this.z = z;
|
|
2192
|
+
c.detach();
|
|
2193
|
+
this.el = r.nativeElement;
|
|
2194
|
+
}
|
|
2195
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsTableFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2196
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsTableFooter, selector: "mds-table-footer", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2197
|
+
};
|
|
2198
|
+
MdsTableFooter = __decorate([
|
|
2199
|
+
ProxyCmp({})
|
|
2200
|
+
], MdsTableFooter);
|
|
2201
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsTableFooter, decorators: [{
|
|
2202
|
+
type: Component,
|
|
2203
|
+
args: [{
|
|
2204
|
+
selector: 'mds-table-footer',
|
|
2205
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2206
|
+
template: '<ng-content></ng-content>',
|
|
2207
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2208
|
+
inputs: [],
|
|
2209
|
+
}]
|
|
2210
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2211
|
+
let MdsTableHeader = class MdsTableHeader {
|
|
2212
|
+
z;
|
|
2213
|
+
el;
|
|
2214
|
+
constructor(c, r, z) {
|
|
2215
|
+
this.z = z;
|
|
2216
|
+
c.detach();
|
|
2217
|
+
this.el = r.nativeElement;
|
|
2218
|
+
}
|
|
2219
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsTableHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2220
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsTableHeader, selector: "mds-table-header", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2221
|
+
};
|
|
2222
|
+
MdsTableHeader = __decorate([
|
|
2223
|
+
ProxyCmp({})
|
|
2224
|
+
], MdsTableHeader);
|
|
2225
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsTableHeader, decorators: [{
|
|
2226
|
+
type: Component,
|
|
2227
|
+
args: [{
|
|
2228
|
+
selector: 'mds-table-header',
|
|
2229
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2230
|
+
template: '<ng-content></ng-content>',
|
|
2231
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2232
|
+
inputs: [],
|
|
2233
|
+
}]
|
|
2234
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2235
|
+
let MdsTableHeaderCell = class MdsTableHeaderCell {
|
|
2236
|
+
z;
|
|
2237
|
+
el;
|
|
2238
|
+
constructor(c, r, z) {
|
|
2239
|
+
this.z = z;
|
|
2240
|
+
c.detach();
|
|
2241
|
+
this.el = r.nativeElement;
|
|
2242
|
+
}
|
|
2243
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsTableHeaderCell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2244
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", 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 });
|
|
2245
|
+
};
|
|
2246
|
+
MdsTableHeaderCell = __decorate([
|
|
2247
|
+
ProxyCmp({
|
|
2248
|
+
inputs: ['direction', 'label', 'sortable']
|
|
2249
|
+
})
|
|
2250
|
+
], MdsTableHeaderCell);
|
|
2251
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsTableHeaderCell, decorators: [{
|
|
2252
|
+
type: Component,
|
|
2253
|
+
args: [{
|
|
2254
|
+
selector: 'mds-table-header-cell',
|
|
2255
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2256
|
+
template: '<ng-content></ng-content>',
|
|
2257
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2258
|
+
inputs: ['direction', 'label', 'sortable'],
|
|
2259
|
+
}]
|
|
2260
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2261
|
+
let MdsTableRow = class MdsTableRow {
|
|
2262
|
+
z;
|
|
2263
|
+
el;
|
|
2264
|
+
constructor(c, r, z) {
|
|
2265
|
+
this.z = z;
|
|
2266
|
+
c.detach();
|
|
2267
|
+
this.el = r.nativeElement;
|
|
2268
|
+
}
|
|
2269
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsTableRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2270
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsTableRow, selector: "mds-table-row", inputs: { interactive: "interactive" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2271
|
+
};
|
|
2272
|
+
MdsTableRow = __decorate([
|
|
2273
|
+
ProxyCmp({
|
|
2274
|
+
inputs: ['interactive']
|
|
2275
|
+
})
|
|
2276
|
+
], MdsTableRow);
|
|
2277
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsTableRow, decorators: [{
|
|
2278
|
+
type: Component,
|
|
2279
|
+
args: [{
|
|
2280
|
+
selector: 'mds-table-row',
|
|
2281
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2282
|
+
template: '<ng-content></ng-content>',
|
|
2283
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2284
|
+
inputs: ['interactive'],
|
|
2285
|
+
}]
|
|
2286
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2287
|
+
let MdsText = class MdsText {
|
|
2288
|
+
z;
|
|
2289
|
+
el;
|
|
2290
|
+
constructor(c, r, z) {
|
|
2291
|
+
this.z = z;
|
|
2292
|
+
c.detach();
|
|
2293
|
+
this.el = r.nativeElement;
|
|
2294
|
+
}
|
|
2295
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsText, 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.12", 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 });
|
|
2297
|
+
};
|
|
2298
|
+
MdsText = __decorate([
|
|
2299
|
+
ProxyCmp({
|
|
2300
|
+
inputs: ['animation', 'tag', 'text', 'truncate', 'typography', 'variant']
|
|
2301
|
+
})
|
|
2302
|
+
], MdsText);
|
|
2303
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsText, decorators: [{
|
|
2304
|
+
type: Component,
|
|
2305
|
+
args: [{
|
|
2306
|
+
selector: 'mds-text',
|
|
2307
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2308
|
+
template: '<ng-content></ng-content>',
|
|
2309
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2310
|
+
inputs: ['animation', 'tag', 'text', 'truncate', 'typography', 'variant'],
|
|
2311
|
+
}]
|
|
2312
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2313
|
+
let MdsToast = class MdsToast {
|
|
2314
|
+
z;
|
|
2315
|
+
el;
|
|
2316
|
+
constructor(c, r, z) {
|
|
2317
|
+
this.z = z;
|
|
2318
|
+
c.detach();
|
|
2319
|
+
this.el = r.nativeElement;
|
|
2320
|
+
proxyOutputs(this, this.el, ['mdsToastClose']);
|
|
2321
|
+
}
|
|
2322
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2323
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", 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 });
|
|
2324
|
+
};
|
|
2325
|
+
MdsToast = __decorate([
|
|
2326
|
+
ProxyCmp({
|
|
2327
|
+
inputs: ['duration', 'position', 'tone', 'variant', 'visible']
|
|
2328
|
+
})
|
|
2329
|
+
], MdsToast);
|
|
2330
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsToast, decorators: [{
|
|
2331
|
+
type: Component,
|
|
2332
|
+
args: [{
|
|
2333
|
+
selector: 'mds-toast',
|
|
2334
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2335
|
+
template: '<ng-content></ng-content>',
|
|
2336
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2337
|
+
inputs: ['duration', 'position', 'tone', 'variant', 'visible'],
|
|
2338
|
+
}]
|
|
2339
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2340
|
+
let MdsTooltip = class MdsTooltip {
|
|
2341
|
+
z;
|
|
2342
|
+
el;
|
|
2343
|
+
constructor(c, r, z) {
|
|
2344
|
+
this.z = z;
|
|
2345
|
+
c.detach();
|
|
2346
|
+
this.el = r.nativeElement;
|
|
2347
|
+
}
|
|
2348
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsTooltip, 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.12", type: MdsTooltip, selector: "mds-tooltip", inputs: { arrow: "arrow", 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 });
|
|
2350
|
+
};
|
|
2351
|
+
MdsTooltip = __decorate([
|
|
2352
|
+
ProxyCmp({
|
|
2353
|
+
inputs: ['arrow', 'autoPlacement', 'flip', 'offset', 'placement', 'shift', 'shiftPadding', 'strategy', 'target', 'typography', 'visible']
|
|
2354
|
+
})
|
|
2355
|
+
], MdsTooltip);
|
|
2356
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsTooltip, decorators: [{
|
|
2357
|
+
type: Component,
|
|
2358
|
+
args: [{
|
|
2359
|
+
selector: 'mds-tooltip',
|
|
2360
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2361
|
+
template: '<ng-content></ng-content>',
|
|
2362
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2363
|
+
inputs: ['arrow', 'autoPlacement', 'flip', 'offset', 'placement', 'shift', 'shiftPadding', 'strategy', 'target', 'typography', 'visible'],
|
|
2364
|
+
}]
|
|
2365
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2366
|
+
let MdsUrlView = class MdsUrlView {
|
|
2367
|
+
z;
|
|
2368
|
+
el;
|
|
2369
|
+
constructor(c, r, z) {
|
|
2370
|
+
this.z = z;
|
|
2371
|
+
c.detach();
|
|
2372
|
+
this.el = r.nativeElement;
|
|
2373
|
+
proxyOutputs(this, this.el, ['mdsUrlViewClose']);
|
|
2374
|
+
}
|
|
2375
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsUrlView, 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.12", 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 });
|
|
2377
|
+
};
|
|
2378
|
+
MdsUrlView = __decorate([
|
|
2379
|
+
ProxyCmp({
|
|
2380
|
+
inputs: ['domain', 'loading', 'src']
|
|
2381
|
+
})
|
|
2382
|
+
], MdsUrlView);
|
|
2383
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsUrlView, decorators: [{
|
|
2384
|
+
type: Component,
|
|
2385
|
+
args: [{
|
|
2386
|
+
selector: 'mds-url-view',
|
|
2387
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2388
|
+
template: '<ng-content></ng-content>',
|
|
2389
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2390
|
+
inputs: ['domain', 'loading', 'src'],
|
|
2391
|
+
}]
|
|
2392
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2393
|
+
let MdsUsage = class MdsUsage {
|
|
2394
|
+
z;
|
|
2395
|
+
el;
|
|
2396
|
+
constructor(c, r, z) {
|
|
2397
|
+
this.z = z;
|
|
2398
|
+
c.detach();
|
|
2399
|
+
this.el = r.nativeElement;
|
|
2400
|
+
}
|
|
2401
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsUsage, 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.12", type: MdsUsage, selector: "mds-usage", inputs: { alias: "alias", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2403
|
+
};
|
|
2404
|
+
MdsUsage = __decorate([
|
|
2405
|
+
ProxyCmp({
|
|
2406
|
+
inputs: ['alias', 'variant']
|
|
2407
|
+
})
|
|
2408
|
+
], MdsUsage);
|
|
2409
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsUsage, decorators: [{
|
|
2410
|
+
type: Component,
|
|
2411
|
+
args: [{
|
|
2412
|
+
selector: 'mds-usage',
|
|
2413
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2414
|
+
template: '<ng-content></ng-content>',
|
|
2415
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2416
|
+
inputs: ['alias', 'variant'],
|
|
2417
|
+
}]
|
|
2418
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2419
|
+
let MdsVideoWall = class MdsVideoWall {
|
|
2420
|
+
z;
|
|
2421
|
+
el;
|
|
2422
|
+
constructor(c, r, z) {
|
|
2423
|
+
this.z = z;
|
|
2424
|
+
c.detach();
|
|
2425
|
+
this.el = r.nativeElement;
|
|
2426
|
+
}
|
|
2427
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsVideoWall, 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.12", 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 });
|
|
2429
|
+
};
|
|
2430
|
+
MdsVideoWall = __decorate([
|
|
2431
|
+
ProxyCmp({
|
|
2432
|
+
inputs: ['autoplay', 'loop', 'muted', 'noise', 'poster', 'preload', 'src']
|
|
2433
|
+
})
|
|
2434
|
+
], MdsVideoWall);
|
|
2435
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsVideoWall, decorators: [{
|
|
2436
|
+
type: Component,
|
|
2437
|
+
args: [{
|
|
2438
|
+
selector: 'mds-video-wall',
|
|
2439
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2440
|
+
template: '<ng-content></ng-content>',
|
|
2441
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2442
|
+
inputs: ['autoplay', 'loop', 'muted', 'noise', 'poster', 'preload', 'src'],
|
|
2443
|
+
}]
|
|
2444
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2445
|
+
let MdsZero = class MdsZero {
|
|
2446
|
+
z;
|
|
2447
|
+
el;
|
|
2448
|
+
constructor(c, r, z) {
|
|
2449
|
+
this.z = z;
|
|
2450
|
+
c.detach();
|
|
2451
|
+
this.el = r.nativeElement;
|
|
2452
|
+
}
|
|
2453
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsZero, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
2454
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.12", type: MdsZero, selector: "mds-zero", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
2455
|
+
};
|
|
2456
|
+
MdsZero = __decorate([
|
|
2457
|
+
ProxyCmp({})
|
|
2458
|
+
], MdsZero);
|
|
2459
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: MdsZero, decorators: [{
|
|
2460
|
+
type: Component,
|
|
2461
|
+
args: [{
|
|
2462
|
+
selector: 'mds-zero',
|
|
2463
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
2464
|
+
template: '<ng-content></ng-content>',
|
|
2465
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
2466
|
+
inputs: [],
|
|
2467
|
+
}]
|
|
2468
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
2469
|
+
|
|
2470
|
+
const DIRECTIVES = [
|
|
2471
|
+
MdsAccordion,
|
|
2472
|
+
MdsAccordionItem,
|
|
2473
|
+
MdsAccordionTimer,
|
|
2474
|
+
MdsAccordionTimerItem,
|
|
2475
|
+
MdsAuthor,
|
|
2476
|
+
MdsAvatar,
|
|
2477
|
+
MdsBadge,
|
|
2478
|
+
MdsBanner,
|
|
2479
|
+
MdsBenchmarkBar,
|
|
2480
|
+
MdsBibliography,
|
|
2481
|
+
MdsBreadcrumb,
|
|
2482
|
+
MdsBreadcrumbItem,
|
|
2483
|
+
MdsButton,
|
|
2484
|
+
MdsCard,
|
|
2485
|
+
MdsCardContent,
|
|
2486
|
+
MdsCardFooter,
|
|
2487
|
+
MdsCardHeader,
|
|
2488
|
+
MdsCardMedia,
|
|
2489
|
+
MdsChip,
|
|
2490
|
+
MdsDetails,
|
|
2491
|
+
MdsDropdown,
|
|
2492
|
+
MdsEntity,
|
|
2493
|
+
MdsFile,
|
|
2494
|
+
MdsFilePreview,
|
|
2495
|
+
MdsFilter,
|
|
2496
|
+
MdsFilterItem,
|
|
2497
|
+
MdsHeader,
|
|
2498
|
+
MdsHeaderBar,
|
|
2499
|
+
MdsHelp,
|
|
2500
|
+
MdsHorizontalScroll,
|
|
2501
|
+
MdsHr,
|
|
2502
|
+
MdsIcon,
|
|
2503
|
+
MdsImg,
|
|
2504
|
+
MdsInput,
|
|
2505
|
+
MdsInputField,
|
|
2506
|
+
MdsInputRange,
|
|
2507
|
+
MdsInputSelect,
|
|
2508
|
+
MdsInputSwitch,
|
|
2509
|
+
MdsInputTip,
|
|
2510
|
+
MdsInputTipItem,
|
|
2511
|
+
MdsInputUpload,
|
|
2512
|
+
MdsKpi,
|
|
2513
|
+
MdsKpiItem,
|
|
2514
|
+
MdsLabel,
|
|
2515
|
+
MdsList,
|
|
2516
|
+
MdsListItem,
|
|
2517
|
+
MdsModal,
|
|
2518
|
+
MdsNote,
|
|
2519
|
+
MdsNotification,
|
|
2520
|
+
MdsPaginator,
|
|
2521
|
+
MdsPaginatorItem,
|
|
2522
|
+
MdsPref,
|
|
2523
|
+
MdsPrefAnimation,
|
|
2524
|
+
MdsPrefConsumption,
|
|
2525
|
+
MdsPrefContrast,
|
|
2526
|
+
MdsPrefLanguage,
|
|
2527
|
+
MdsPrefLanguageItem,
|
|
2528
|
+
MdsPrefLanguageNav,
|
|
2529
|
+
MdsPrefTheme,
|
|
2530
|
+
MdsPriceTable,
|
|
2531
|
+
MdsPriceTableFeatures,
|
|
2532
|
+
MdsPriceTableFeaturesCell,
|
|
2533
|
+
MdsPriceTableFeaturesRow,
|
|
2534
|
+
MdsPriceTableHeader,
|
|
2535
|
+
MdsPriceTableList,
|
|
2536
|
+
MdsPriceTableListItem,
|
|
2537
|
+
MdsProgress,
|
|
2538
|
+
MdsPushNotification,
|
|
2539
|
+
MdsPushNotifications,
|
|
2540
|
+
MdsQuote,
|
|
2541
|
+
MdsSeparator,
|
|
2542
|
+
MdsSpinner,
|
|
2543
|
+
MdsStepperBar,
|
|
2544
|
+
MdsStepperBarItem,
|
|
2545
|
+
MdsTab,
|
|
2546
|
+
MdsTabBar,
|
|
2547
|
+
MdsTabBarItem,
|
|
2548
|
+
MdsTabItem,
|
|
2549
|
+
MdsTable,
|
|
2550
|
+
MdsTableBody,
|
|
2551
|
+
MdsTableCell,
|
|
2552
|
+
MdsTableFooter,
|
|
2553
|
+
MdsTableHeader,
|
|
2554
|
+
MdsTableHeaderCell,
|
|
2555
|
+
MdsTableRow,
|
|
2556
|
+
MdsText,
|
|
2557
|
+
MdsToast,
|
|
2558
|
+
MdsTooltip,
|
|
2559
|
+
MdsUrlView,
|
|
2560
|
+
MdsUsage,
|
|
2561
|
+
MdsVideoWall,
|
|
2562
|
+
MdsZero
|
|
2563
|
+
];
|
|
2564
|
+
|
|
2565
|
+
class ComponentLibraryModule {
|
|
2566
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: ComponentLibraryModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
2567
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.12", ngImport: i0, type: ComponentLibraryModule, 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, MdsKpi, MdsKpiItem, MdsLabel, MdsList, MdsListItem, MdsModal, MdsNote, MdsNotification, MdsPaginator, MdsPaginatorItem, MdsPref, MdsPrefAnimation, MdsPrefConsumption, MdsPrefContrast, MdsPrefLanguage, MdsPrefLanguageItem, MdsPrefLanguageNav, 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, 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, MdsKpi, MdsKpiItem, MdsLabel, MdsList, MdsListItem, MdsModal, MdsNote, MdsNotification, MdsPaginator, MdsPaginatorItem, MdsPref, MdsPrefAnimation, MdsPrefConsumption, MdsPrefContrast, MdsPrefLanguage, MdsPrefLanguageItem, MdsPrefLanguageNav, 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, MdsUrlView, MdsUsage, MdsVideoWall, MdsZero] });
|
|
2568
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: ComponentLibraryModule, providers: [
|
|
2569
|
+
{
|
|
2570
|
+
provide: APP_INITIALIZER,
|
|
2571
|
+
useFactory: () => defineCustomElements,
|
|
2572
|
+
multi: true
|
|
2573
|
+
},
|
|
2574
|
+
] });
|
|
2575
|
+
}
|
|
2576
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.12", ngImport: i0, type: ComponentLibraryModule, decorators: [{
|
|
2577
|
+
type: NgModule,
|
|
2578
|
+
args: [{
|
|
2579
|
+
declarations: [...DIRECTIVES],
|
|
2580
|
+
exports: [...DIRECTIVES],
|
|
2581
|
+
providers: [
|
|
2582
|
+
{
|
|
2583
|
+
provide: APP_INITIALIZER,
|
|
2584
|
+
useFactory: () => defineCustomElements,
|
|
2585
|
+
multi: true
|
|
2586
|
+
},
|
|
2587
|
+
]
|
|
2588
|
+
}]
|
|
2589
|
+
}] });
|
|
2590
|
+
|
|
2591
|
+
/*
|
|
2592
|
+
* Public API Surface of component-library
|
|
2593
|
+
*/
|
|
2594
|
+
|
|
2595
|
+
/**
|
|
2596
|
+
* Generated bundle index. Do not edit.
|
|
2597
|
+
*/
|
|
2598
|
+
|
|
2599
|
+
export { ComponentLibraryModule, DIRECTIVES, 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, MdsKpi, MdsKpiItem, MdsLabel, MdsList, MdsListItem, MdsModal, MdsNote, MdsNotification, MdsPaginator, MdsPaginatorItem, MdsPref, MdsPrefAnimation, MdsPrefConsumption, MdsPrefContrast, MdsPrefLanguage, MdsPrefLanguageItem, MdsPrefLanguageNav, 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, MdsUrlView, MdsUsage, MdsVideoWall, MdsZero };
|
|
2600
|
+
//# sourceMappingURL=maggioli-design-system-magma-angular.mjs.map
|