@trimble-oss/moduswebcomponents-angular 1.0.1-ng19 → 1.0.2-ng17
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 +14 -8
- package/esm2022/lib/modus-wc-angular.module.mjs +32 -0
- package/esm2022/lib/stencil-generated/angular-component-lib/utils.mjs +59 -0
- package/esm2022/lib/stencil-generated/components.mjs +1189 -0
- package/esm2022/lib/stencil-generated/index.mjs +50 -0
- package/esm2022/public-api.mjs +7 -0
- package/esm2022/trimble-oss-moduswebcomponents-angular.mjs +5 -0
- package/fesm2022/trimble-oss-moduswebcomponents-angular.mjs +154 -244
- package/fesm2022/trimble-oss-moduswebcomponents-angular.mjs.map +1 -1
- package/lib/modus-wc-angular.module.d.ts +1 -1
- package/lib/stencil-generated/components.d.ts +46 -46
- package/package.json +6 -7
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { Component, ChangeDetectionStrategy, APP_INITIALIZER, NgModule } from '@angular/core';
|
|
3
3
|
import { defineCustomElements } from '@trimble-oss/moduswebcomponents/loader';
|
|
4
4
|
import { __decorate } from 'tslib';
|
|
5
5
|
import { fromEvent } from 'rxjs';
|
|
@@ -63,23 +63,21 @@ function ProxyCmp(opts) {
|
|
|
63
63
|
}
|
|
64
64
|
|
|
65
65
|
let ModusWcAccordion = class ModusWcAccordion {
|
|
66
|
-
z;
|
|
67
|
-
el;
|
|
68
66
|
constructor(c, r, z) {
|
|
69
67
|
this.z = z;
|
|
70
68
|
c.detach();
|
|
71
69
|
this.el = r.nativeElement;
|
|
72
70
|
proxyOutputs(this, this.el, ['expandedChange']);
|
|
73
71
|
}
|
|
74
|
-
static
|
|
75
|
-
static
|
|
72
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
73
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcAccordion, selector: "modus-wc-accordion", inputs: { customClass: "customClass" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
76
74
|
};
|
|
77
75
|
ModusWcAccordion = __decorate([
|
|
78
76
|
ProxyCmp({
|
|
79
77
|
inputs: ['customClass']
|
|
80
78
|
})
|
|
81
79
|
], ModusWcAccordion);
|
|
82
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
80
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAccordion, decorators: [{
|
|
83
81
|
type: Component,
|
|
84
82
|
args: [{
|
|
85
83
|
selector: 'modus-wc-accordion',
|
|
@@ -90,23 +88,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
90
88
|
}]
|
|
91
89
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
92
90
|
let ModusWcAlert = class ModusWcAlert {
|
|
93
|
-
z;
|
|
94
|
-
el;
|
|
95
91
|
constructor(c, r, z) {
|
|
96
92
|
this.z = z;
|
|
97
93
|
c.detach();
|
|
98
94
|
this.el = r.nativeElement;
|
|
99
95
|
proxyOutputs(this, this.el, ['dismissClick']);
|
|
100
96
|
}
|
|
101
|
-
static
|
|
102
|
-
static
|
|
97
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
98
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcAlert, selector: "modus-wc-alert", inputs: { alertDescription: "alertDescription", alertTitle: "alertTitle", customClass: "customClass", delay: "delay", dismissible: "dismissible", icon: "icon", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
103
99
|
};
|
|
104
100
|
ModusWcAlert = __decorate([
|
|
105
101
|
ProxyCmp({
|
|
106
102
|
inputs: ['alertDescription', 'alertTitle', 'customClass', 'delay', 'dismissible', 'icon', 'variant']
|
|
107
103
|
})
|
|
108
104
|
], ModusWcAlert);
|
|
109
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
105
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAlert, decorators: [{
|
|
110
106
|
type: Component,
|
|
111
107
|
args: [{
|
|
112
108
|
selector: 'modus-wc-alert',
|
|
@@ -117,16 +113,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
117
113
|
}]
|
|
118
114
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
119
115
|
let ModusWcAutocomplete = class ModusWcAutocomplete {
|
|
120
|
-
z;
|
|
121
|
-
el;
|
|
122
116
|
constructor(c, r, z) {
|
|
123
117
|
this.z = z;
|
|
124
118
|
c.detach();
|
|
125
119
|
this.el = r.nativeElement;
|
|
126
120
|
proxyOutputs(this, this.el, ['chipRemove', 'chipsExpansionChange', 'inputBlur', 'inputChange', 'inputFocus', 'itemSelect']);
|
|
127
121
|
}
|
|
128
|
-
static
|
|
129
|
-
static
|
|
122
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAutocomplete, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
123
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcAutocomplete, selector: "modus-wc-autocomplete", inputs: { bordered: "bordered", customBlur: "customBlur", customClass: "customClass", customInputChange: "customInputChange", customItemSelect: "customItemSelect", customKeyDown: "customKeyDown", debounceMs: "debounceMs", disabled: "disabled", includeClear: "includeClear", includeSearch: "includeSearch", inputId: "inputId", inputTabIndex: "inputTabIndex", items: "items", label: "label", leaveMenuOpen: "leaveMenuOpen", maxChips: "maxChips", minChars: "minChars", minInputWidth: "minInputWidth", multiSelect: "multiSelect", name: "name", noResults: "noResults", placeholder: "placeholder", readOnly: "readOnly", required: "required", showMenuOnFocus: "showMenuOnFocus", showSpinner: "showSpinner", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
130
124
|
};
|
|
131
125
|
ModusWcAutocomplete = __decorate([
|
|
132
126
|
ProxyCmp({
|
|
@@ -134,7 +128,7 @@ ModusWcAutocomplete = __decorate([
|
|
|
134
128
|
methods: ['selectItem', 'openMenu', 'closeMenu', 'toggleMenu', 'focusInput', 'clearInput']
|
|
135
129
|
})
|
|
136
130
|
], ModusWcAutocomplete);
|
|
137
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
131
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAutocomplete, decorators: [{
|
|
138
132
|
type: Component,
|
|
139
133
|
args: [{
|
|
140
134
|
selector: 'modus-wc-autocomplete',
|
|
@@ -145,22 +139,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
145
139
|
}]
|
|
146
140
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
147
141
|
let ModusWcAvatar = class ModusWcAvatar {
|
|
148
|
-
z;
|
|
149
|
-
el;
|
|
150
142
|
constructor(c, r, z) {
|
|
151
143
|
this.z = z;
|
|
152
144
|
c.detach();
|
|
153
145
|
this.el = r.nativeElement;
|
|
154
146
|
}
|
|
155
|
-
static
|
|
156
|
-
static
|
|
147
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
148
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcAvatar, selector: "modus-wc-avatar", inputs: { alt: "alt", customClass: "customClass", imgSrc: "imgSrc", initials: "initials", shape: "shape", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
157
149
|
};
|
|
158
150
|
ModusWcAvatar = __decorate([
|
|
159
151
|
ProxyCmp({
|
|
160
152
|
inputs: ['alt', 'customClass', 'imgSrc', 'initials', 'shape', 'size']
|
|
161
153
|
})
|
|
162
154
|
], ModusWcAvatar);
|
|
163
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
155
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAvatar, decorators: [{
|
|
164
156
|
type: Component,
|
|
165
157
|
args: [{
|
|
166
158
|
selector: 'modus-wc-avatar',
|
|
@@ -171,22 +163,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
171
163
|
}]
|
|
172
164
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
173
165
|
let ModusWcBadge = class ModusWcBadge {
|
|
174
|
-
z;
|
|
175
|
-
el;
|
|
176
166
|
constructor(c, r, z) {
|
|
177
167
|
this.z = z;
|
|
178
168
|
c.detach();
|
|
179
169
|
this.el = r.nativeElement;
|
|
180
170
|
}
|
|
181
|
-
static
|
|
182
|
-
static
|
|
171
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
172
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcBadge, selector: "modus-wc-badge", inputs: { color: "color", customClass: "customClass", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
183
173
|
};
|
|
184
174
|
ModusWcBadge = __decorate([
|
|
185
175
|
ProxyCmp({
|
|
186
176
|
inputs: ['color', 'customClass', 'size', 'variant']
|
|
187
177
|
})
|
|
188
178
|
], ModusWcBadge);
|
|
189
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
179
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcBadge, decorators: [{
|
|
190
180
|
type: Component,
|
|
191
181
|
args: [{
|
|
192
182
|
selector: 'modus-wc-badge',
|
|
@@ -197,23 +187,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
197
187
|
}]
|
|
198
188
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
199
189
|
let ModusWcBreadcrumbs = class ModusWcBreadcrumbs {
|
|
200
|
-
z;
|
|
201
|
-
el;
|
|
202
190
|
constructor(c, r, z) {
|
|
203
191
|
this.z = z;
|
|
204
192
|
c.detach();
|
|
205
193
|
this.el = r.nativeElement;
|
|
206
194
|
proxyOutputs(this, this.el, ['breadcrumbClick']);
|
|
207
195
|
}
|
|
208
|
-
static
|
|
209
|
-
static
|
|
196
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcBreadcrumbs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
197
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcBreadcrumbs, selector: "modus-wc-breadcrumbs", inputs: { customClass: "customClass", items: "items", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
210
198
|
};
|
|
211
199
|
ModusWcBreadcrumbs = __decorate([
|
|
212
200
|
ProxyCmp({
|
|
213
201
|
inputs: ['customClass', 'items', 'size']
|
|
214
202
|
})
|
|
215
203
|
], ModusWcBreadcrumbs);
|
|
216
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
204
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcBreadcrumbs, decorators: [{
|
|
217
205
|
type: Component,
|
|
218
206
|
args: [{
|
|
219
207
|
selector: 'modus-wc-breadcrumbs',
|
|
@@ -224,23 +212,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
224
212
|
}]
|
|
225
213
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
226
214
|
let ModusWcButton = class ModusWcButton {
|
|
227
|
-
z;
|
|
228
|
-
el;
|
|
229
215
|
constructor(c, r, z) {
|
|
230
216
|
this.z = z;
|
|
231
217
|
c.detach();
|
|
232
218
|
this.el = r.nativeElement;
|
|
233
219
|
proxyOutputs(this, this.el, ['buttonClick']);
|
|
234
220
|
}
|
|
235
|
-
static
|
|
236
|
-
static
|
|
221
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
222
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcButton, selector: "modus-wc-button", inputs: { color: "color", customClass: "customClass", disabled: "disabled", fullWidth: "fullWidth", pressed: "pressed", shape: "shape", size: "size", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
237
223
|
};
|
|
238
224
|
ModusWcButton = __decorate([
|
|
239
225
|
ProxyCmp({
|
|
240
226
|
inputs: ['color', 'customClass', 'disabled', 'fullWidth', 'pressed', 'shape', 'size', 'type', 'variant']
|
|
241
227
|
})
|
|
242
228
|
], ModusWcButton);
|
|
243
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
229
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcButton, decorators: [{
|
|
244
230
|
type: Component,
|
|
245
231
|
args: [{
|
|
246
232
|
selector: 'modus-wc-button',
|
|
@@ -251,22 +237,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
251
237
|
}]
|
|
252
238
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
253
239
|
let ModusWcCard = class ModusWcCard {
|
|
254
|
-
z;
|
|
255
|
-
el;
|
|
256
240
|
constructor(c, r, z) {
|
|
257
241
|
this.z = z;
|
|
258
242
|
c.detach();
|
|
259
243
|
this.el = r.nativeElement;
|
|
260
244
|
}
|
|
261
|
-
static
|
|
262
|
-
static
|
|
245
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
246
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcCard, selector: "modus-wc-card", inputs: { backgroundFigure: "backgroundFigure", bordered: "bordered", customClass: "customClass", layout: "layout", padding: "padding" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
263
247
|
};
|
|
264
248
|
ModusWcCard = __decorate([
|
|
265
249
|
ProxyCmp({
|
|
266
250
|
inputs: ['backgroundFigure', 'bordered', 'customClass', 'layout', 'padding']
|
|
267
251
|
})
|
|
268
252
|
], ModusWcCard);
|
|
269
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
253
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcCard, decorators: [{
|
|
270
254
|
type: Component,
|
|
271
255
|
args: [{
|
|
272
256
|
selector: 'modus-wc-card',
|
|
@@ -277,23 +261,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
277
261
|
}]
|
|
278
262
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
279
263
|
let ModusWcCheckbox = class ModusWcCheckbox {
|
|
280
|
-
z;
|
|
281
|
-
el;
|
|
282
264
|
constructor(c, r, z) {
|
|
283
265
|
this.z = z;
|
|
284
266
|
c.detach();
|
|
285
267
|
this.el = r.nativeElement;
|
|
286
268
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
287
269
|
}
|
|
288
|
-
static
|
|
289
|
-
static
|
|
270
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
271
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcCheckbox, selector: "modus-wc-checkbox", inputs: { customClass: "customClass", disabled: "disabled", indeterminate: "indeterminate", inputId: "inputId", inputTabIndex: "inputTabIndex", label: "label", name: "name", required: "required", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
290
272
|
};
|
|
291
273
|
ModusWcCheckbox = __decorate([
|
|
292
274
|
ProxyCmp({
|
|
293
275
|
inputs: ['customClass', 'disabled', 'indeterminate', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value']
|
|
294
276
|
})
|
|
295
277
|
], ModusWcCheckbox);
|
|
296
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
278
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcCheckbox, decorators: [{
|
|
297
279
|
type: Component,
|
|
298
280
|
args: [{
|
|
299
281
|
selector: 'modus-wc-checkbox',
|
|
@@ -304,23 +286,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
304
286
|
}]
|
|
305
287
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
306
288
|
let ModusWcChip = class ModusWcChip {
|
|
307
|
-
z;
|
|
308
|
-
el;
|
|
309
289
|
constructor(c, r, z) {
|
|
310
290
|
this.z = z;
|
|
311
291
|
c.detach();
|
|
312
292
|
this.el = r.nativeElement;
|
|
313
293
|
proxyOutputs(this, this.el, ['chipClick', 'chipRemove']);
|
|
314
294
|
}
|
|
315
|
-
static
|
|
316
|
-
static
|
|
295
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
296
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcChip, selector: "modus-wc-chip", inputs: { active: "active", customClass: "customClass", disabled: "disabled", hasError: "hasError", label: "label", shape: "shape", showRemove: "showRemove", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
317
297
|
};
|
|
318
298
|
ModusWcChip = __decorate([
|
|
319
299
|
ProxyCmp({
|
|
320
300
|
inputs: ['active', 'customClass', 'disabled', 'hasError', 'label', 'shape', 'showRemove', 'size', 'variant']
|
|
321
301
|
})
|
|
322
302
|
], ModusWcChip);
|
|
323
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
303
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcChip, decorators: [{
|
|
324
304
|
type: Component,
|
|
325
305
|
args: [{
|
|
326
306
|
selector: 'modus-wc-chip',
|
|
@@ -331,23 +311,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
331
311
|
}]
|
|
332
312
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
333
313
|
let ModusWcCollapse = class ModusWcCollapse {
|
|
334
|
-
z;
|
|
335
|
-
el;
|
|
336
314
|
constructor(c, r, z) {
|
|
337
315
|
this.z = z;
|
|
338
316
|
c.detach();
|
|
339
317
|
this.el = r.nativeElement;
|
|
340
318
|
proxyOutputs(this, this.el, ['expandedChange']);
|
|
341
319
|
}
|
|
342
|
-
static
|
|
343
|
-
static
|
|
320
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcCollapse, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
321
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcCollapse, selector: "modus-wc-collapse", inputs: { bordered: "bordered", collapseId: "collapseId", customClass: "customClass", expanded: "expanded", options: "options" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
344
322
|
};
|
|
345
323
|
ModusWcCollapse = __decorate([
|
|
346
324
|
ProxyCmp({
|
|
347
325
|
inputs: ['bordered', 'collapseId', 'customClass', 'expanded', 'options']
|
|
348
326
|
})
|
|
349
327
|
], ModusWcCollapse);
|
|
350
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
328
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcCollapse, decorators: [{
|
|
351
329
|
type: Component,
|
|
352
330
|
args: [{
|
|
353
331
|
selector: 'modus-wc-collapse',
|
|
@@ -358,23 +336,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
358
336
|
}]
|
|
359
337
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
360
338
|
let ModusWcDate = class ModusWcDate {
|
|
361
|
-
z;
|
|
362
|
-
el;
|
|
363
339
|
constructor(c, r, z) {
|
|
364
340
|
this.z = z;
|
|
365
341
|
c.detach();
|
|
366
342
|
this.el = r.nativeElement;
|
|
367
343
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus', 'calendarMonthChange', 'calendarYearChange']);
|
|
368
344
|
}
|
|
369
|
-
static
|
|
370
|
-
static
|
|
345
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcDate, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
346
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcDate, selector: "modus-wc-date", inputs: { bordered: "bordered", customClass: "customClass", disabled: "disabled", feedback: "feedback", format: "format", inputId: "inputId", inputTabIndex: "inputTabIndex", label: "label", max: "max", min: "min", name: "name", readOnly: "readOnly", required: "required", size: "size", value: "value", weekStartDay: "weekStartDay" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
371
347
|
};
|
|
372
348
|
ModusWcDate = __decorate([
|
|
373
349
|
ProxyCmp({
|
|
374
350
|
inputs: ['bordered', 'customClass', 'disabled', 'feedback', 'format', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'readOnly', 'required', 'size', 'value', 'weekStartDay']
|
|
375
351
|
})
|
|
376
352
|
], ModusWcDate);
|
|
377
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
353
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcDate, decorators: [{
|
|
378
354
|
type: Component,
|
|
379
355
|
args: [{
|
|
380
356
|
selector: 'modus-wc-date',
|
|
@@ -385,22 +361,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
385
361
|
}]
|
|
386
362
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
387
363
|
let ModusWcDivider = class ModusWcDivider {
|
|
388
|
-
z;
|
|
389
|
-
el;
|
|
390
364
|
constructor(c, r, z) {
|
|
391
365
|
this.z = z;
|
|
392
366
|
c.detach();
|
|
393
367
|
this.el = r.nativeElement;
|
|
394
368
|
}
|
|
395
|
-
static
|
|
396
|
-
static
|
|
369
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
370
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcDivider, selector: "modus-wc-divider", inputs: { color: "color", content: "content", customClass: "customClass", orientation: "orientation", position: "position", responsive: "responsive" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
397
371
|
};
|
|
398
372
|
ModusWcDivider = __decorate([
|
|
399
373
|
ProxyCmp({
|
|
400
374
|
inputs: ['color', 'content', 'customClass', 'orientation', 'position', 'responsive']
|
|
401
375
|
})
|
|
402
376
|
], ModusWcDivider);
|
|
403
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
377
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcDivider, decorators: [{
|
|
404
378
|
type: Component,
|
|
405
379
|
args: [{
|
|
406
380
|
selector: 'modus-wc-divider',
|
|
@@ -411,23 +385,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
411
385
|
}]
|
|
412
386
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
413
387
|
let ModusWcDropdownMenu = class ModusWcDropdownMenu {
|
|
414
|
-
z;
|
|
415
|
-
el;
|
|
416
388
|
constructor(c, r, z) {
|
|
417
389
|
this.z = z;
|
|
418
390
|
c.detach();
|
|
419
391
|
this.el = r.nativeElement;
|
|
420
392
|
proxyOutputs(this, this.el, ['menuVisibilityChange']);
|
|
421
393
|
}
|
|
422
|
-
static
|
|
423
|
-
static
|
|
394
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcDropdownMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
395
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcDropdownMenu, selector: "modus-wc-dropdown-menu", inputs: { buttonAriaLabel: "buttonAriaLabel", buttonColor: "buttonColor", buttonSize: "buttonSize", buttonVariant: "buttonVariant", customClass: "customClass", disabled: "disabled", menuBordered: "menuBordered", menuOffset: "menuOffset", menuPlacement: "menuPlacement", menuSize: "menuSize", menuVisible: "menuVisible" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
424
396
|
};
|
|
425
397
|
ModusWcDropdownMenu = __decorate([
|
|
426
398
|
ProxyCmp({
|
|
427
399
|
inputs: ['buttonAriaLabel', 'buttonColor', 'buttonSize', 'buttonVariant', 'customClass', 'disabled', 'menuBordered', 'menuOffset', 'menuPlacement', 'menuSize', 'menuVisible']
|
|
428
400
|
})
|
|
429
401
|
], ModusWcDropdownMenu);
|
|
430
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
402
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcDropdownMenu, decorators: [{
|
|
431
403
|
type: Component,
|
|
432
404
|
args: [{
|
|
433
405
|
selector: 'modus-wc-dropdown-menu',
|
|
@@ -438,23 +410,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
438
410
|
}]
|
|
439
411
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
440
412
|
let ModusWcFileDropzone = class ModusWcFileDropzone {
|
|
441
|
-
z;
|
|
442
|
-
el;
|
|
443
413
|
constructor(c, r, z) {
|
|
444
414
|
this.z = z;
|
|
445
415
|
c.detach();
|
|
446
416
|
this.el = r.nativeElement;
|
|
447
417
|
proxyOutputs(this, this.el, ['fileSelect']);
|
|
448
418
|
}
|
|
449
|
-
static
|
|
450
|
-
static
|
|
419
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcFileDropzone, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
420
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcFileDropzone, selector: "modus-wc-file-dropzone", inputs: { acceptFileTypes: "acceptFileTypes", customClass: "customClass", disabled: "disabled", fileDraggedOverInstructions: "fileDraggedOverInstructions", includeStateIcon: "includeStateIcon", instructions: "instructions", invalidFileTypeMessage: "invalidFileTypeMessage", maxFileCount: "maxFileCount", maxFileNameLength: "maxFileNameLength", maxTotalFileSizeBytes: "maxTotalFileSizeBytes", multiple: "multiple", successMessage: "successMessage" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
451
421
|
};
|
|
452
422
|
ModusWcFileDropzone = __decorate([
|
|
453
423
|
ProxyCmp({
|
|
454
424
|
inputs: ['acceptFileTypes', 'customClass', 'disabled', 'fileDraggedOverInstructions', 'includeStateIcon', 'instructions', 'invalidFileTypeMessage', 'maxFileCount', 'maxFileNameLength', 'maxTotalFileSizeBytes', 'multiple', 'successMessage']
|
|
455
425
|
})
|
|
456
426
|
], ModusWcFileDropzone);
|
|
457
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
427
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcFileDropzone, decorators: [{
|
|
458
428
|
type: Component,
|
|
459
429
|
args: [{
|
|
460
430
|
selector: 'modus-wc-file-dropzone',
|
|
@@ -465,22 +435,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
465
435
|
}]
|
|
466
436
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
467
437
|
let ModusWcIcon = class ModusWcIcon {
|
|
468
|
-
z;
|
|
469
|
-
el;
|
|
470
438
|
constructor(c, r, z) {
|
|
471
439
|
this.z = z;
|
|
472
440
|
c.detach();
|
|
473
441
|
this.el = r.nativeElement;
|
|
474
442
|
}
|
|
475
|
-
static
|
|
476
|
-
static
|
|
443
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
444
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcIcon, selector: "modus-wc-icon", inputs: { customClass: "customClass", decorative: "decorative", name: "name", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
477
445
|
};
|
|
478
446
|
ModusWcIcon = __decorate([
|
|
479
447
|
ProxyCmp({
|
|
480
448
|
inputs: ['customClass', 'decorative', 'name', 'size', 'variant']
|
|
481
449
|
})
|
|
482
450
|
], ModusWcIcon);
|
|
483
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
451
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcIcon, decorators: [{
|
|
484
452
|
type: Component,
|
|
485
453
|
args: [{
|
|
486
454
|
selector: 'modus-wc-icon',
|
|
@@ -491,22 +459,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
491
459
|
}]
|
|
492
460
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
493
461
|
let ModusWcInputFeedback = class ModusWcInputFeedback {
|
|
494
|
-
z;
|
|
495
|
-
el;
|
|
496
462
|
constructor(c, r, z) {
|
|
497
463
|
this.z = z;
|
|
498
464
|
c.detach();
|
|
499
465
|
this.el = r.nativeElement;
|
|
500
466
|
}
|
|
501
|
-
static
|
|
502
|
-
static
|
|
467
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcInputFeedback, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
468
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcInputFeedback, selector: "modus-wc-input-feedback", inputs: { customClass: "customClass", icon: "icon", level: "level", message: "message", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
503
469
|
};
|
|
504
470
|
ModusWcInputFeedback = __decorate([
|
|
505
471
|
ProxyCmp({
|
|
506
472
|
inputs: ['customClass', 'icon', 'level', 'message', 'size']
|
|
507
473
|
})
|
|
508
474
|
], ModusWcInputFeedback);
|
|
509
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
475
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcInputFeedback, decorators: [{
|
|
510
476
|
type: Component,
|
|
511
477
|
args: [{
|
|
512
478
|
selector: 'modus-wc-input-feedback',
|
|
@@ -517,22 +483,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
517
483
|
}]
|
|
518
484
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
519
485
|
let ModusWcInputLabel = class ModusWcInputLabel {
|
|
520
|
-
z;
|
|
521
|
-
el;
|
|
522
486
|
constructor(c, r, z) {
|
|
523
487
|
this.z = z;
|
|
524
488
|
c.detach();
|
|
525
489
|
this.el = r.nativeElement;
|
|
526
490
|
}
|
|
527
|
-
static
|
|
528
|
-
static
|
|
491
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcInputLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
492
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcInputLabel, selector: "modus-wc-input-label", inputs: { customClass: "customClass", forId: "forId", labelText: "labelText", required: "required", size: "size", subLabelText: "subLabelText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
529
493
|
};
|
|
530
494
|
ModusWcInputLabel = __decorate([
|
|
531
495
|
ProxyCmp({
|
|
532
496
|
inputs: ['customClass', 'forId', 'labelText', 'required', 'size', 'subLabelText']
|
|
533
497
|
})
|
|
534
498
|
], ModusWcInputLabel);
|
|
535
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
499
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcInputLabel, decorators: [{
|
|
536
500
|
type: Component,
|
|
537
501
|
args: [{
|
|
538
502
|
selector: 'modus-wc-input-label',
|
|
@@ -543,22 +507,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
543
507
|
}]
|
|
544
508
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
545
509
|
let ModusWcLoader = class ModusWcLoader {
|
|
546
|
-
z;
|
|
547
|
-
el;
|
|
548
510
|
constructor(c, r, z) {
|
|
549
511
|
this.z = z;
|
|
550
512
|
c.detach();
|
|
551
513
|
this.el = r.nativeElement;
|
|
552
514
|
}
|
|
553
|
-
static
|
|
554
|
-
static
|
|
515
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcLoader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
516
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcLoader, selector: "modus-wc-loader", inputs: { color: "color", customClass: "customClass", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
555
517
|
};
|
|
556
518
|
ModusWcLoader = __decorate([
|
|
557
519
|
ProxyCmp({
|
|
558
520
|
inputs: ['color', 'customClass', 'size', 'variant']
|
|
559
521
|
})
|
|
560
522
|
], ModusWcLoader);
|
|
561
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
523
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcLoader, decorators: [{
|
|
562
524
|
type: Component,
|
|
563
525
|
args: [{
|
|
564
526
|
selector: 'modus-wc-loader',
|
|
@@ -569,76 +531,71 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
569
531
|
}]
|
|
570
532
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
571
533
|
let ModusWcMenu = class ModusWcMenu {
|
|
572
|
-
z;
|
|
573
|
-
el;
|
|
574
534
|
constructor(c, r, z) {
|
|
575
535
|
this.z = z;
|
|
576
536
|
c.detach();
|
|
577
537
|
this.el = r.nativeElement;
|
|
578
538
|
proxyOutputs(this, this.el, ['menuFocusout']);
|
|
579
539
|
}
|
|
580
|
-
static
|
|
581
|
-
static
|
|
540
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
541
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcMenu, selector: "modus-wc-menu", inputs: { bordered: "bordered", customClass: "customClass", isSubMenu: "isSubMenu", orientation: "orientation", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
582
542
|
};
|
|
583
543
|
ModusWcMenu = __decorate([
|
|
584
544
|
ProxyCmp({
|
|
585
|
-
inputs: ['bordered', 'customClass', 'orientation', 'size']
|
|
545
|
+
inputs: ['bordered', 'customClass', 'isSubMenu', 'orientation', 'size']
|
|
586
546
|
})
|
|
587
547
|
], ModusWcMenu);
|
|
588
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
548
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcMenu, decorators: [{
|
|
589
549
|
type: Component,
|
|
590
550
|
args: [{
|
|
591
551
|
selector: 'modus-wc-menu',
|
|
592
552
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
593
553
|
template: '<ng-content></ng-content>',
|
|
594
554
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
595
|
-
inputs: ['bordered', 'customClass', 'orientation', 'size'],
|
|
555
|
+
inputs: ['bordered', 'customClass', 'isSubMenu', 'orientation', 'size'],
|
|
596
556
|
}]
|
|
597
557
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
598
558
|
let ModusWcMenuItem = class ModusWcMenuItem {
|
|
599
|
-
z;
|
|
600
|
-
el;
|
|
601
559
|
constructor(c, r, z) {
|
|
602
560
|
this.z = z;
|
|
603
561
|
c.detach();
|
|
604
562
|
this.el = r.nativeElement;
|
|
605
563
|
proxyOutputs(this, this.el, ['itemSelect']);
|
|
606
564
|
}
|
|
607
|
-
static
|
|
608
|
-
static
|
|
565
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
566
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcMenuItem, selector: "modus-wc-menu-item", inputs: { bordered: "bordered", checkbox: "checkbox", customClass: "customClass", disabled: "disabled", focused: "focused", hasSubmenu: "hasSubmenu", label: "label", selected: "selected", size: "size", startIcon: "startIcon", subLabel: "subLabel", tooltipContent: "tooltipContent", tooltipPosition: "tooltipPosition", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
609
567
|
};
|
|
610
568
|
ModusWcMenuItem = __decorate([
|
|
611
569
|
ProxyCmp({
|
|
612
|
-
inputs: ['bordered', 'checkbox', 'customClass', 'disabled', 'focused', 'label', 'selected', 'size', 'startIcon', 'subLabel', 'tooltipContent', 'tooltipPosition', 'value']
|
|
570
|
+
inputs: ['bordered', 'checkbox', 'customClass', 'disabled', 'focused', 'hasSubmenu', 'label', 'selected', 'size', 'startIcon', 'subLabel', 'tooltipContent', 'tooltipPosition', 'value'],
|
|
571
|
+
methods: ['collapseSubmenu']
|
|
613
572
|
})
|
|
614
573
|
], ModusWcMenuItem);
|
|
615
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
574
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcMenuItem, decorators: [{
|
|
616
575
|
type: Component,
|
|
617
576
|
args: [{
|
|
618
577
|
selector: 'modus-wc-menu-item',
|
|
619
578
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
620
579
|
template: '<ng-content></ng-content>',
|
|
621
580
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
622
|
-
inputs: ['bordered', 'checkbox', 'customClass', 'disabled', 'focused', 'label', 'selected', 'size', 'startIcon', 'subLabel', 'tooltipContent', 'tooltipPosition', 'value'],
|
|
581
|
+
inputs: ['bordered', 'checkbox', 'customClass', 'disabled', 'focused', 'hasSubmenu', 'label', 'selected', 'size', 'startIcon', 'subLabel', 'tooltipContent', 'tooltipPosition', 'value'],
|
|
623
582
|
}]
|
|
624
583
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
625
584
|
let ModusWcModal = class ModusWcModal {
|
|
626
|
-
z;
|
|
627
|
-
el;
|
|
628
585
|
constructor(c, r, z) {
|
|
629
586
|
this.z = z;
|
|
630
587
|
c.detach();
|
|
631
588
|
this.el = r.nativeElement;
|
|
632
589
|
}
|
|
633
|
-
static
|
|
634
|
-
static
|
|
590
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
591
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcModal, selector: "modus-wc-modal", inputs: { backdrop: "backdrop", customClass: "customClass", fullscreen: "fullscreen", modalId: "modalId", position: "position", showClose: "showClose", showFullscreenToggle: "showFullscreenToggle" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
635
592
|
};
|
|
636
593
|
ModusWcModal = __decorate([
|
|
637
594
|
ProxyCmp({
|
|
638
595
|
inputs: ['backdrop', 'customClass', 'fullscreen', 'modalId', 'position', 'showClose', 'showFullscreenToggle']
|
|
639
596
|
})
|
|
640
597
|
], ModusWcModal);
|
|
641
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
598
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcModal, decorators: [{
|
|
642
599
|
type: Component,
|
|
643
600
|
args: [{
|
|
644
601
|
selector: 'modus-wc-modal',
|
|
@@ -649,23 +606,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
649
606
|
}]
|
|
650
607
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
651
608
|
let ModusWcNavbar = class ModusWcNavbar {
|
|
652
|
-
z;
|
|
653
|
-
el;
|
|
654
609
|
constructor(c, r, z) {
|
|
655
610
|
this.z = z;
|
|
656
611
|
c.detach();
|
|
657
612
|
this.el = r.nativeElement;
|
|
658
613
|
proxyOutputs(this, this.el, ['aiClick', 'appsClick', 'appsMenuOpenChange', 'condensedMenuOpenChange', 'helpClick', 'mainMenuOpenChange', 'myTrimbleClick', 'notificationsClick', 'notificationsMenuOpenChange', 'searchChange', 'searchClick', 'searchInputOpenChange', 'signOutClick', 'trimbleLogoClick', 'userMenuOpenChange']);
|
|
659
614
|
}
|
|
660
|
-
static
|
|
661
|
-
static
|
|
615
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcNavbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
616
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcNavbar, selector: "modus-wc-navbar", inputs: { appsMenuOpen: "appsMenuOpen", condensed: "condensed", condensedMenuOpen: "condensedMenuOpen", customClass: "customClass", mainMenuOpen: "mainMenuOpen", notificationsMenuOpen: "notificationsMenuOpen", searchDebounceMs: "searchDebounceMs", searchInputOpen: "searchInputOpen", textOverrides: "textOverrides", userCard: "userCard", userMenuOpen: "userMenuOpen", visibility: "visibility" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
662
617
|
};
|
|
663
618
|
ModusWcNavbar = __decorate([
|
|
664
619
|
ProxyCmp({
|
|
665
620
|
inputs: ['appsMenuOpen', 'condensed', 'condensedMenuOpen', 'customClass', 'mainMenuOpen', 'notificationsMenuOpen', 'searchDebounceMs', 'searchInputOpen', 'textOverrides', 'userCard', 'userMenuOpen', 'visibility']
|
|
666
621
|
})
|
|
667
622
|
], ModusWcNavbar);
|
|
668
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
623
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcNavbar, decorators: [{
|
|
669
624
|
type: Component,
|
|
670
625
|
args: [{
|
|
671
626
|
selector: 'modus-wc-navbar',
|
|
@@ -676,23 +631,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
676
631
|
}]
|
|
677
632
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
678
633
|
let ModusWcNumberInput = class ModusWcNumberInput {
|
|
679
|
-
z;
|
|
680
|
-
el;
|
|
681
634
|
constructor(c, r, z) {
|
|
682
635
|
this.z = z;
|
|
683
636
|
c.detach();
|
|
684
637
|
this.el = r.nativeElement;
|
|
685
638
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
686
639
|
}
|
|
687
|
-
static
|
|
688
|
-
static
|
|
640
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcNumberInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
641
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcNumberInput, selector: "modus-wc-number-input", inputs: { autoComplete: "autoComplete", bordered: "bordered", currencySymbol: "currencySymbol", customClass: "customClass", disabled: "disabled", feedback: "feedback", inputId: "inputId", inputTabIndex: "inputTabIndex", label: "label", max: "max", min: "min", name: "name", placeholder: "placeholder", readOnly: "readOnly", required: "required", size: "size", step: "step", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
689
642
|
};
|
|
690
643
|
ModusWcNumberInput = __decorate([
|
|
691
644
|
ProxyCmp({
|
|
692
645
|
inputs: ['autoComplete', 'bordered', 'currencySymbol', 'customClass', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'placeholder', 'readOnly', 'required', 'size', 'step', 'type', 'value']
|
|
693
646
|
})
|
|
694
647
|
], ModusWcNumberInput);
|
|
695
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
648
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcNumberInput, decorators: [{
|
|
696
649
|
type: Component,
|
|
697
650
|
args: [{
|
|
698
651
|
selector: 'modus-wc-number-input',
|
|
@@ -703,23 +656,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
703
656
|
}]
|
|
704
657
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
705
658
|
let ModusWcPagination = class ModusWcPagination {
|
|
706
|
-
z;
|
|
707
|
-
el;
|
|
708
659
|
constructor(c, r, z) {
|
|
709
660
|
this.z = z;
|
|
710
661
|
c.detach();
|
|
711
662
|
this.el = r.nativeElement;
|
|
712
663
|
proxyOutputs(this, this.el, ['pageChange']);
|
|
713
664
|
}
|
|
714
|
-
static
|
|
715
|
-
static
|
|
665
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcPagination, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
666
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcPagination, selector: "modus-wc-pagination", inputs: { ariaLabelValues: "ariaLabelValues", count: "count", customClass: "customClass", nextButtonText: "nextButtonText", page: "page", prevButtonText: "prevButtonText", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
716
667
|
};
|
|
717
668
|
ModusWcPagination = __decorate([
|
|
718
669
|
ProxyCmp({
|
|
719
670
|
inputs: ['ariaLabelValues', 'count', 'customClass', 'nextButtonText', 'page', 'prevButtonText', 'size']
|
|
720
671
|
})
|
|
721
672
|
], ModusWcPagination);
|
|
722
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
673
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcPagination, decorators: [{
|
|
723
674
|
type: Component,
|
|
724
675
|
args: [{
|
|
725
676
|
selector: 'modus-wc-pagination',
|
|
@@ -730,22 +681,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
730
681
|
}]
|
|
731
682
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
732
683
|
let ModusWcProgress = class ModusWcProgress {
|
|
733
|
-
z;
|
|
734
|
-
el;
|
|
735
684
|
constructor(c, r, z) {
|
|
736
685
|
this.z = z;
|
|
737
686
|
c.detach();
|
|
738
687
|
this.el = r.nativeElement;
|
|
739
688
|
}
|
|
740
|
-
static
|
|
741
|
-
static
|
|
689
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcProgress, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
690
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcProgress, selector: "modus-wc-progress", inputs: { customClass: "customClass", indeterminate: "indeterminate", label: "label", max: "max", value: "value", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
742
691
|
};
|
|
743
692
|
ModusWcProgress = __decorate([
|
|
744
693
|
ProxyCmp({
|
|
745
694
|
inputs: ['customClass', 'indeterminate', 'label', 'max', 'value', 'variant']
|
|
746
695
|
})
|
|
747
696
|
], ModusWcProgress);
|
|
748
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
697
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcProgress, decorators: [{
|
|
749
698
|
type: Component,
|
|
750
699
|
args: [{
|
|
751
700
|
selector: 'modus-wc-progress',
|
|
@@ -756,23 +705,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
756
705
|
}]
|
|
757
706
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
758
707
|
let ModusWcRadio = class ModusWcRadio {
|
|
759
|
-
z;
|
|
760
|
-
el;
|
|
761
708
|
constructor(c, r, z) {
|
|
762
709
|
this.z = z;
|
|
763
710
|
c.detach();
|
|
764
711
|
this.el = r.nativeElement;
|
|
765
712
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
766
713
|
}
|
|
767
|
-
static
|
|
768
|
-
static
|
|
714
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
715
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcRadio, selector: "modus-wc-radio", inputs: { customClass: "customClass", disabled: "disabled", inputId: "inputId", inputTabIndex: "inputTabIndex", label: "label", name: "name", required: "required", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
769
716
|
};
|
|
770
717
|
ModusWcRadio = __decorate([
|
|
771
718
|
ProxyCmp({
|
|
772
719
|
inputs: ['customClass', 'disabled', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value']
|
|
773
720
|
})
|
|
774
721
|
], ModusWcRadio);
|
|
775
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
722
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcRadio, decorators: [{
|
|
776
723
|
type: Component,
|
|
777
724
|
args: [{
|
|
778
725
|
selector: 'modus-wc-radio',
|
|
@@ -783,23 +730,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
783
730
|
}]
|
|
784
731
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
785
732
|
let ModusWcRating = class ModusWcRating {
|
|
786
|
-
z;
|
|
787
|
-
el;
|
|
788
733
|
constructor(c, r, z) {
|
|
789
734
|
this.z = z;
|
|
790
735
|
c.detach();
|
|
791
736
|
this.el = r.nativeElement;
|
|
792
737
|
proxyOutputs(this, this.el, ['ratingChange']);
|
|
793
738
|
}
|
|
794
|
-
static
|
|
795
|
-
static
|
|
739
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcRating, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
740
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcRating, selector: "modus-wc-rating", inputs: { allowHalf: "allowHalf", count: "count", customClass: "customClass", disabled: "disabled", getAriaLabelText: "getAriaLabelText", size: "size", value: "value", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
796
741
|
};
|
|
797
742
|
ModusWcRating = __decorate([
|
|
798
743
|
ProxyCmp({
|
|
799
744
|
inputs: ['allowHalf', 'count', 'customClass', 'disabled', 'getAriaLabelText', 'size', 'value', 'variant']
|
|
800
745
|
})
|
|
801
746
|
], ModusWcRating);
|
|
802
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
747
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcRating, decorators: [{
|
|
803
748
|
type: Component,
|
|
804
749
|
args: [{
|
|
805
750
|
selector: 'modus-wc-rating',
|
|
@@ -810,23 +755,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
810
755
|
}]
|
|
811
756
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
812
757
|
let ModusWcSelect = class ModusWcSelect {
|
|
813
|
-
z;
|
|
814
|
-
el;
|
|
815
758
|
constructor(c, r, z) {
|
|
816
759
|
this.z = z;
|
|
817
760
|
c.detach();
|
|
818
761
|
this.el = r.nativeElement;
|
|
819
762
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
820
763
|
}
|
|
821
|
-
static
|
|
822
|
-
static
|
|
764
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
765
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcSelect, selector: "modus-wc-select", inputs: { bordered: "bordered", customClass: "customClass", disabled: "disabled", feedback: "feedback", inputId: "inputId", inputTabIndex: "inputTabIndex", label: "label", name: "name", options: "options", required: "required", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
823
766
|
};
|
|
824
767
|
ModusWcSelect = __decorate([
|
|
825
768
|
ProxyCmp({
|
|
826
769
|
inputs: ['bordered', 'customClass', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'name', 'options', 'required', 'size', 'value']
|
|
827
770
|
})
|
|
828
771
|
], ModusWcSelect);
|
|
829
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
772
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSelect, decorators: [{
|
|
830
773
|
type: Component,
|
|
831
774
|
args: [{
|
|
832
775
|
selector: 'modus-wc-select',
|
|
@@ -837,23 +780,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
837
780
|
}]
|
|
838
781
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
839
782
|
let ModusWcSideNavigation = class ModusWcSideNavigation {
|
|
840
|
-
z;
|
|
841
|
-
el;
|
|
842
783
|
constructor(c, r, z) {
|
|
843
784
|
this.z = z;
|
|
844
785
|
c.detach();
|
|
845
786
|
this.el = r.nativeElement;
|
|
846
787
|
proxyOutputs(this, this.el, ['expandedChange']);
|
|
847
788
|
}
|
|
848
|
-
static
|
|
849
|
-
static
|
|
789
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSideNavigation, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
790
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcSideNavigation, selector: "modus-wc-side-navigation", inputs: { collapseOnClickOutside: "collapseOnClickOutside", customClass: "customClass", expanded: "expanded", maxWidth: "maxWidth", mode: "mode", targetContent: "targetContent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
850
791
|
};
|
|
851
792
|
ModusWcSideNavigation = __decorate([
|
|
852
793
|
ProxyCmp({
|
|
853
794
|
inputs: ['collapseOnClickOutside', 'customClass', 'expanded', 'maxWidth', 'mode', 'targetContent']
|
|
854
795
|
})
|
|
855
796
|
], ModusWcSideNavigation);
|
|
856
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
797
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSideNavigation, decorators: [{
|
|
857
798
|
type: Component,
|
|
858
799
|
args: [{
|
|
859
800
|
selector: 'modus-wc-side-navigation',
|
|
@@ -864,22 +805,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
864
805
|
}]
|
|
865
806
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
866
807
|
let ModusWcSkeleton = class ModusWcSkeleton {
|
|
867
|
-
z;
|
|
868
|
-
el;
|
|
869
808
|
constructor(c, r, z) {
|
|
870
809
|
this.z = z;
|
|
871
810
|
c.detach();
|
|
872
811
|
this.el = r.nativeElement;
|
|
873
812
|
}
|
|
874
|
-
static
|
|
875
|
-
static
|
|
813
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSkeleton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
814
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcSkeleton, selector: "modus-wc-skeleton", inputs: { customClass: "customClass", height: "height", shape: "shape", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
876
815
|
};
|
|
877
816
|
ModusWcSkeleton = __decorate([
|
|
878
817
|
ProxyCmp({
|
|
879
818
|
inputs: ['customClass', 'height', 'shape', 'width']
|
|
880
819
|
})
|
|
881
820
|
], ModusWcSkeleton);
|
|
882
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
821
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSkeleton, decorators: [{
|
|
883
822
|
type: Component,
|
|
884
823
|
args: [{
|
|
885
824
|
selector: 'modus-wc-skeleton',
|
|
@@ -890,23 +829,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
890
829
|
}]
|
|
891
830
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
892
831
|
let ModusWcSlider = class ModusWcSlider {
|
|
893
|
-
z;
|
|
894
|
-
el;
|
|
895
832
|
constructor(c, r, z) {
|
|
896
833
|
this.z = z;
|
|
897
834
|
c.detach();
|
|
898
835
|
this.el = r.nativeElement;
|
|
899
836
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
900
837
|
}
|
|
901
|
-
static
|
|
902
|
-
static
|
|
838
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
839
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcSlider, selector: "modus-wc-slider", inputs: { customClass: "customClass", disabled: "disabled", inputId: "inputId", inputTabIndex: "inputTabIndex", label: "label", max: "max", min: "min", name: "name", required: "required", size: "size", step: "step", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
903
840
|
};
|
|
904
841
|
ModusWcSlider = __decorate([
|
|
905
842
|
ProxyCmp({
|
|
906
843
|
inputs: ['customClass', 'disabled', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'required', 'size', 'step', 'value']
|
|
907
844
|
})
|
|
908
845
|
], ModusWcSlider);
|
|
909
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
846
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSlider, decorators: [{
|
|
910
847
|
type: Component,
|
|
911
848
|
args: [{
|
|
912
849
|
selector: 'modus-wc-slider',
|
|
@@ -917,22 +854,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
917
854
|
}]
|
|
918
855
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
919
856
|
let ModusWcStepper = class ModusWcStepper {
|
|
920
|
-
z;
|
|
921
|
-
el;
|
|
922
857
|
constructor(c, r, z) {
|
|
923
858
|
this.z = z;
|
|
924
859
|
c.detach();
|
|
925
860
|
this.el = r.nativeElement;
|
|
926
861
|
}
|
|
927
|
-
static
|
|
928
|
-
static
|
|
862
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcStepper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
863
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcStepper, selector: "modus-wc-stepper", inputs: { customClass: "customClass", orientation: "orientation", steps: "steps" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
929
864
|
};
|
|
930
865
|
ModusWcStepper = __decorate([
|
|
931
866
|
ProxyCmp({
|
|
932
867
|
inputs: ['customClass', 'orientation', 'steps']
|
|
933
868
|
})
|
|
934
869
|
], ModusWcStepper);
|
|
935
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
870
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcStepper, decorators: [{
|
|
936
871
|
type: Component,
|
|
937
872
|
args: [{
|
|
938
873
|
selector: 'modus-wc-stepper',
|
|
@@ -943,23 +878,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
943
878
|
}]
|
|
944
879
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
945
880
|
let ModusWcSwitch = class ModusWcSwitch {
|
|
946
|
-
z;
|
|
947
|
-
el;
|
|
948
881
|
constructor(c, r, z) {
|
|
949
882
|
this.z = z;
|
|
950
883
|
c.detach();
|
|
951
884
|
this.el = r.nativeElement;
|
|
952
885
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
953
886
|
}
|
|
954
|
-
static
|
|
955
|
-
static
|
|
887
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
888
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcSwitch, selector: "modus-wc-switch", inputs: { customClass: "customClass", disabled: "disabled", indeterminate: "indeterminate", inputId: "inputId", inputTabIndex: "inputTabIndex", label: "label", name: "name", required: "required", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
956
889
|
};
|
|
957
890
|
ModusWcSwitch = __decorate([
|
|
958
891
|
ProxyCmp({
|
|
959
892
|
inputs: ['customClass', 'disabled', 'indeterminate', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value']
|
|
960
893
|
})
|
|
961
894
|
], ModusWcSwitch);
|
|
962
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
895
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSwitch, decorators: [{
|
|
963
896
|
type: Component,
|
|
964
897
|
args: [{
|
|
965
898
|
selector: 'modus-wc-switch',
|
|
@@ -970,23 +903,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
970
903
|
}]
|
|
971
904
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
972
905
|
let ModusWcTable = class ModusWcTable {
|
|
973
|
-
z;
|
|
974
|
-
el;
|
|
975
906
|
constructor(c, r, z) {
|
|
976
907
|
this.z = z;
|
|
977
908
|
c.detach();
|
|
978
909
|
this.el = r.nativeElement;
|
|
979
910
|
proxyOutputs(this, this.el, ['cellEditStart', 'cellEditCommit', 'rowClick', 'sortChange', 'paginationChange', 'rowSelectionChange']);
|
|
980
911
|
}
|
|
981
|
-
static
|
|
982
|
-
static
|
|
912
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
913
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTable, selector: "modus-wc-table", inputs: { caption: "caption", columns: "columns", currentPage: "currentPage", customClass: "customClass", data: "data", density: "density", editable: "editable", hover: "hover", pageSizeOptions: "pageSizeOptions", paginated: "paginated", selectable: "selectable", selectedRowIds: "selectedRowIds", showPageSizeSelector: "showPageSizeSelector", sortable: "sortable", zebra: "zebra" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
983
914
|
};
|
|
984
915
|
ModusWcTable = __decorate([
|
|
985
916
|
ProxyCmp({
|
|
986
917
|
inputs: ['caption', 'columns', 'currentPage', 'customClass', 'data', 'density', 'editable', 'hover', 'pageSizeOptions', 'paginated', 'selectable', 'selectedRowIds', 'showPageSizeSelector', 'sortable', 'zebra']
|
|
987
918
|
})
|
|
988
919
|
], ModusWcTable);
|
|
989
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
920
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTable, decorators: [{
|
|
990
921
|
type: Component,
|
|
991
922
|
args: [{
|
|
992
923
|
selector: 'modus-wc-table',
|
|
@@ -997,23 +928,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
997
928
|
}]
|
|
998
929
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
999
930
|
let ModusWcTabs = class ModusWcTabs {
|
|
1000
|
-
z;
|
|
1001
|
-
el;
|
|
1002
931
|
constructor(c, r, z) {
|
|
1003
932
|
this.z = z;
|
|
1004
933
|
c.detach();
|
|
1005
934
|
this.el = r.nativeElement;
|
|
1006
935
|
proxyOutputs(this, this.el, ['tabChange']);
|
|
1007
936
|
}
|
|
1008
|
-
static
|
|
1009
|
-
static
|
|
937
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTabs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
938
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTabs, selector: "modus-wc-tabs", inputs: { activeTabIndex: "activeTabIndex", customClass: "customClass", size: "size", tabStyle: "tabStyle", tabs: "tabs" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1010
939
|
};
|
|
1011
940
|
ModusWcTabs = __decorate([
|
|
1012
941
|
ProxyCmp({
|
|
1013
942
|
inputs: ['activeTabIndex', 'customClass', 'size', 'tabStyle', 'tabs']
|
|
1014
943
|
})
|
|
1015
944
|
], ModusWcTabs);
|
|
1016
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
945
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTabs, decorators: [{
|
|
1017
946
|
type: Component,
|
|
1018
947
|
args: [{
|
|
1019
948
|
selector: 'modus-wc-tabs',
|
|
@@ -1024,23 +953,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1024
953
|
}]
|
|
1025
954
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1026
955
|
let ModusWcTextInput = class ModusWcTextInput {
|
|
1027
|
-
z;
|
|
1028
|
-
el;
|
|
1029
956
|
constructor(c, r, z) {
|
|
1030
957
|
this.z = z;
|
|
1031
958
|
c.detach();
|
|
1032
959
|
this.el = r.nativeElement;
|
|
1033
960
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
1034
961
|
}
|
|
1035
|
-
static
|
|
1036
|
-
static
|
|
962
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTextInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
963
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTextInput, selector: "modus-wc-text-input", inputs: { autoCapitalize: "autoCapitalize", autoComplete: "autoComplete", autoCorrect: "autoCorrect", bordered: "bordered", clearAriaLabel: "clearAriaLabel", customClass: "customClass", disabled: "disabled", enterkeyhint: "enterkeyhint", feedback: "feedback", includeClear: "includeClear", includeSearch: "includeSearch", inputId: "inputId", inputTabIndex: "inputTabIndex", label: "label", maxLength: "maxLength", minLength: "minLength", name: "name", pattern: "pattern", placeholder: "placeholder", readOnly: "readOnly", required: "required", size: "size", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1037
964
|
};
|
|
1038
965
|
ModusWcTextInput = __decorate([
|
|
1039
966
|
ProxyCmp({
|
|
1040
967
|
inputs: ['autoCapitalize', 'autoComplete', 'autoCorrect', 'bordered', 'clearAriaLabel', 'customClass', 'disabled', 'enterkeyhint', 'feedback', 'includeClear', 'includeSearch', 'inputId', 'inputTabIndex', 'label', 'maxLength', 'minLength', 'name', 'pattern', 'placeholder', 'readOnly', 'required', 'size', 'type', 'value']
|
|
1041
968
|
})
|
|
1042
969
|
], ModusWcTextInput);
|
|
1043
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
970
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTextInput, decorators: [{
|
|
1044
971
|
type: Component,
|
|
1045
972
|
args: [{
|
|
1046
973
|
selector: 'modus-wc-text-input',
|
|
@@ -1051,23 +978,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1051
978
|
}]
|
|
1052
979
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1053
980
|
let ModusWcTextarea = class ModusWcTextarea {
|
|
1054
|
-
z;
|
|
1055
|
-
el;
|
|
1056
981
|
constructor(c, r, z) {
|
|
1057
982
|
this.z = z;
|
|
1058
983
|
c.detach();
|
|
1059
984
|
this.el = r.nativeElement;
|
|
1060
985
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
1061
986
|
}
|
|
1062
|
-
static
|
|
1063
|
-
static
|
|
987
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
988
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTextarea, selector: "modus-wc-textarea", inputs: { autoCorrect: "autoCorrect", bordered: "bordered", customClass: "customClass", disabled: "disabled", enterkeyhint: "enterkeyhint", feedback: "feedback", inputId: "inputId", inputTabIndex: "inputTabIndex", label: "label", maxLength: "maxLength", minLength: "minLength", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", rows: "rows", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1064
989
|
};
|
|
1065
990
|
ModusWcTextarea = __decorate([
|
|
1066
991
|
ProxyCmp({
|
|
1067
992
|
inputs: ['autoCorrect', 'bordered', 'customClass', 'disabled', 'enterkeyhint', 'feedback', 'inputId', 'inputTabIndex', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'readonly', 'required', 'rows', 'size', 'value']
|
|
1068
993
|
})
|
|
1069
994
|
], ModusWcTextarea);
|
|
1070
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
995
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTextarea, decorators: [{
|
|
1071
996
|
type: Component,
|
|
1072
997
|
args: [{
|
|
1073
998
|
selector: 'modus-wc-textarea',
|
|
@@ -1078,22 +1003,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1078
1003
|
}]
|
|
1079
1004
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1080
1005
|
let ModusWcThemeProvider = class ModusWcThemeProvider {
|
|
1081
|
-
z;
|
|
1082
|
-
el;
|
|
1083
1006
|
constructor(c, r, z) {
|
|
1084
1007
|
this.z = z;
|
|
1085
1008
|
c.detach();
|
|
1086
1009
|
this.el = r.nativeElement;
|
|
1087
1010
|
}
|
|
1088
|
-
static
|
|
1089
|
-
static
|
|
1011
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcThemeProvider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1012
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcThemeProvider, selector: "modus-wc-theme-provider", inputs: { initialTheme: "initialTheme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1090
1013
|
};
|
|
1091
1014
|
ModusWcThemeProvider = __decorate([
|
|
1092
1015
|
ProxyCmp({
|
|
1093
1016
|
inputs: ['initialTheme']
|
|
1094
1017
|
})
|
|
1095
1018
|
], ModusWcThemeProvider);
|
|
1096
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1019
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcThemeProvider, decorators: [{
|
|
1097
1020
|
type: Component,
|
|
1098
1021
|
args: [{
|
|
1099
1022
|
selector: 'modus-wc-theme-provider',
|
|
@@ -1104,23 +1027,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1104
1027
|
}]
|
|
1105
1028
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1106
1029
|
let ModusWcThemeSwitcher = class ModusWcThemeSwitcher {
|
|
1107
|
-
z;
|
|
1108
|
-
el;
|
|
1109
1030
|
constructor(c, r, z) {
|
|
1110
1031
|
this.z = z;
|
|
1111
1032
|
c.detach();
|
|
1112
1033
|
this.el = r.nativeElement;
|
|
1113
1034
|
proxyOutputs(this, this.el, ['themeChange']);
|
|
1114
1035
|
}
|
|
1115
|
-
static
|
|
1116
|
-
static
|
|
1036
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcThemeSwitcher, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1037
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcThemeSwitcher, selector: "modus-wc-theme-switcher", inputs: { customClass: "customClass" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1117
1038
|
};
|
|
1118
1039
|
ModusWcThemeSwitcher = __decorate([
|
|
1119
1040
|
ProxyCmp({
|
|
1120
1041
|
inputs: ['customClass']
|
|
1121
1042
|
})
|
|
1122
1043
|
], ModusWcThemeSwitcher);
|
|
1123
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1044
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcThemeSwitcher, decorators: [{
|
|
1124
1045
|
type: Component,
|
|
1125
1046
|
args: [{
|
|
1126
1047
|
selector: 'modus-wc-theme-switcher',
|
|
@@ -1131,23 +1052,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1131
1052
|
}]
|
|
1132
1053
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1133
1054
|
let ModusWcTimeInput = class ModusWcTimeInput {
|
|
1134
|
-
z;
|
|
1135
|
-
el;
|
|
1136
1055
|
constructor(c, r, z) {
|
|
1137
1056
|
this.z = z;
|
|
1138
1057
|
c.detach();
|
|
1139
1058
|
this.el = r.nativeElement;
|
|
1140
1059
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
1141
1060
|
}
|
|
1142
|
-
static
|
|
1143
|
-
static
|
|
1061
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTimeInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1062
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTimeInput, selector: "modus-wc-time-input", inputs: { autoComplete: "autoComplete", bordered: "bordered", customClass: "customClass", datalistId: "datalistId", datalistOptions: "datalistOptions", disabled: "disabled", feedback: "feedback", inputId: "inputId", inputTabIndex: "inputTabIndex", label: "label", max: "max", min: "min", name: "name", readOnly: "readOnly", required: "required", showSeconds: "showSeconds", size: "size", step: "step", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1144
1063
|
};
|
|
1145
1064
|
ModusWcTimeInput = __decorate([
|
|
1146
1065
|
ProxyCmp({
|
|
1147
1066
|
inputs: ['autoComplete', 'bordered', 'customClass', 'datalistId', 'datalistOptions', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'readOnly', 'required', 'showSeconds', 'size', 'step', 'value']
|
|
1148
1067
|
})
|
|
1149
1068
|
], ModusWcTimeInput);
|
|
1150
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1069
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTimeInput, decorators: [{
|
|
1151
1070
|
type: Component,
|
|
1152
1071
|
args: [{
|
|
1153
1072
|
selector: 'modus-wc-time-input',
|
|
@@ -1158,22 +1077,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1158
1077
|
}]
|
|
1159
1078
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1160
1079
|
let ModusWcToast = class ModusWcToast {
|
|
1161
|
-
z;
|
|
1162
|
-
el;
|
|
1163
1080
|
constructor(c, r, z) {
|
|
1164
1081
|
this.z = z;
|
|
1165
1082
|
c.detach();
|
|
1166
1083
|
this.el = r.nativeElement;
|
|
1167
1084
|
}
|
|
1168
|
-
static
|
|
1169
|
-
static
|
|
1085
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1086
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcToast, selector: "modus-wc-toast", inputs: { customClass: "customClass", delay: "delay", position: "position" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1170
1087
|
};
|
|
1171
1088
|
ModusWcToast = __decorate([
|
|
1172
1089
|
ProxyCmp({
|
|
1173
1090
|
inputs: ['customClass', 'delay', 'position']
|
|
1174
1091
|
})
|
|
1175
1092
|
], ModusWcToast);
|
|
1176
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1093
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcToast, decorators: [{
|
|
1177
1094
|
type: Component,
|
|
1178
1095
|
args: [{
|
|
1179
1096
|
selector: 'modus-wc-toast',
|
|
@@ -1184,22 +1101,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1184
1101
|
}]
|
|
1185
1102
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1186
1103
|
let ModusWcToolbar = class ModusWcToolbar {
|
|
1187
|
-
z;
|
|
1188
|
-
el;
|
|
1189
1104
|
constructor(c, r, z) {
|
|
1190
1105
|
this.z = z;
|
|
1191
1106
|
c.detach();
|
|
1192
1107
|
this.el = r.nativeElement;
|
|
1193
1108
|
}
|
|
1194
|
-
static
|
|
1195
|
-
static
|
|
1109
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcToolbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1110
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcToolbar, selector: "modus-wc-toolbar", inputs: { customClass: "customClass" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1196
1111
|
};
|
|
1197
1112
|
ModusWcToolbar = __decorate([
|
|
1198
1113
|
ProxyCmp({
|
|
1199
1114
|
inputs: ['customClass']
|
|
1200
1115
|
})
|
|
1201
1116
|
], ModusWcToolbar);
|
|
1202
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1117
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcToolbar, decorators: [{
|
|
1203
1118
|
type: Component,
|
|
1204
1119
|
args: [{
|
|
1205
1120
|
selector: 'modus-wc-toolbar',
|
|
@@ -1210,23 +1125,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1210
1125
|
}]
|
|
1211
1126
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1212
1127
|
let ModusWcTooltip = class ModusWcTooltip {
|
|
1213
|
-
z;
|
|
1214
|
-
el;
|
|
1215
1128
|
constructor(c, r, z) {
|
|
1216
1129
|
this.z = z;
|
|
1217
1130
|
c.detach();
|
|
1218
1131
|
this.el = r.nativeElement;
|
|
1219
1132
|
proxyOutputs(this, this.el, ['dismissEscape']);
|
|
1220
1133
|
}
|
|
1221
|
-
static
|
|
1222
|
-
static
|
|
1134
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1135
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTooltip, selector: "modus-wc-tooltip", inputs: { content: "content", customClass: "customClass", disabled: "disabled", forceOpen: "forceOpen", position: "position", tooltipId: "tooltipId" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1223
1136
|
};
|
|
1224
1137
|
ModusWcTooltip = __decorate([
|
|
1225
1138
|
ProxyCmp({
|
|
1226
1139
|
inputs: ['content', 'customClass', 'disabled', 'forceOpen', 'position', 'tooltipId']
|
|
1227
1140
|
})
|
|
1228
1141
|
], ModusWcTooltip);
|
|
1229
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1142
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTooltip, decorators: [{
|
|
1230
1143
|
type: Component,
|
|
1231
1144
|
args: [{
|
|
1232
1145
|
selector: 'modus-wc-tooltip',
|
|
@@ -1237,22 +1150,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1237
1150
|
}]
|
|
1238
1151
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1239
1152
|
let ModusWcTypography = class ModusWcTypography {
|
|
1240
|
-
z;
|
|
1241
|
-
el;
|
|
1242
1153
|
constructor(c, r, z) {
|
|
1243
1154
|
this.z = z;
|
|
1244
1155
|
c.detach();
|
|
1245
1156
|
this.el = r.nativeElement;
|
|
1246
1157
|
}
|
|
1247
|
-
static
|
|
1248
|
-
static
|
|
1158
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTypography, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1159
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTypography, selector: "modus-wc-typography", inputs: { customClass: "customClass", hierarchy: "hierarchy", size: "size", weight: "weight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1249
1160
|
};
|
|
1250
1161
|
ModusWcTypography = __decorate([
|
|
1251
1162
|
ProxyCmp({
|
|
1252
1163
|
inputs: ['customClass', 'hierarchy', 'size', 'weight']
|
|
1253
1164
|
})
|
|
1254
1165
|
], ModusWcTypography);
|
|
1255
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1166
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTypography, decorators: [{
|
|
1256
1167
|
type: Component,
|
|
1257
1168
|
args: [{
|
|
1258
1169
|
selector: 'modus-wc-typography',
|
|
@@ -1263,23 +1174,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1263
1174
|
}]
|
|
1264
1175
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1265
1176
|
let ModusWcUtilityPanel = class ModusWcUtilityPanel {
|
|
1266
|
-
z;
|
|
1267
|
-
el;
|
|
1268
1177
|
constructor(c, r, z) {
|
|
1269
1178
|
this.z = z;
|
|
1270
1179
|
c.detach();
|
|
1271
1180
|
this.el = r.nativeElement;
|
|
1272
1181
|
proxyOutputs(this, this.el, ['panelOpened', 'panelClosed']);
|
|
1273
1182
|
}
|
|
1274
|
-
static
|
|
1275
|
-
static
|
|
1183
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcUtilityPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1184
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcUtilityPanel, selector: "modus-wc-utility-panel", inputs: { expanded: "expanded", pushContent: "pushContent", targetElement: "targetElement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1276
1185
|
};
|
|
1277
1186
|
ModusWcUtilityPanel = __decorate([
|
|
1278
1187
|
ProxyCmp({
|
|
1279
1188
|
inputs: ['expanded', 'pushContent', 'targetElement']
|
|
1280
1189
|
})
|
|
1281
1190
|
], ModusWcUtilityPanel);
|
|
1282
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1191
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcUtilityPanel, decorators: [{
|
|
1283
1192
|
type: Component,
|
|
1284
1193
|
args: [{
|
|
1285
1194
|
selector: 'modus-wc-utility-panel',
|
|
@@ -1340,28 +1249,29 @@ const DIRECTIVES = [
|
|
|
1340
1249
|
];
|
|
1341
1250
|
|
|
1342
1251
|
class ModusAngularComponentsModule {
|
|
1343
|
-
static
|
|
1344
|
-
static
|
|
1345
|
-
static
|
|
1252
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusAngularComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1253
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.12", ngImport: i0, type: ModusAngularComponentsModule, declarations: [ModusWcAccordion, ModusWcAlert, ModusWcAutocomplete, ModusWcAvatar, ModusWcBadge, ModusWcBreadcrumbs, ModusWcButton, ModusWcCard, ModusWcCheckbox, ModusWcChip, ModusWcCollapse, ModusWcDate, ModusWcDivider, ModusWcDropdownMenu, ModusWcFileDropzone, ModusWcIcon, ModusWcInputFeedback, ModusWcInputLabel, ModusWcLoader, ModusWcMenu, ModusWcMenuItem, ModusWcModal, ModusWcNavbar, ModusWcNumberInput, ModusWcPagination, ModusWcProgress, ModusWcRadio, ModusWcRating, ModusWcSelect, ModusWcSideNavigation, ModusWcSkeleton, ModusWcSlider, ModusWcStepper, ModusWcSwitch, ModusWcTable, ModusWcTabs, ModusWcTextInput, ModusWcTextarea, ModusWcThemeProvider, ModusWcThemeSwitcher, ModusWcTimeInput, ModusWcToast, ModusWcToolbar, ModusWcTooltip, ModusWcTypography, ModusWcUtilityPanel], exports: [ModusWcAccordion, ModusWcAlert, ModusWcAutocomplete, ModusWcAvatar, ModusWcBadge, ModusWcBreadcrumbs, ModusWcButton, ModusWcCard, ModusWcCheckbox, ModusWcChip, ModusWcCollapse, ModusWcDate, ModusWcDivider, ModusWcDropdownMenu, ModusWcFileDropzone, ModusWcIcon, ModusWcInputFeedback, ModusWcInputLabel, ModusWcLoader, ModusWcMenu, ModusWcMenuItem, ModusWcModal, ModusWcNavbar, ModusWcNumberInput, ModusWcPagination, ModusWcProgress, ModusWcRadio, ModusWcRating, ModusWcSelect, ModusWcSideNavigation, ModusWcSkeleton, ModusWcSlider, ModusWcStepper, ModusWcSwitch, ModusWcTable, ModusWcTabs, ModusWcTextInput, ModusWcTextarea, ModusWcThemeProvider, ModusWcThemeSwitcher, ModusWcTimeInput, ModusWcToast, ModusWcToolbar, ModusWcTooltip, ModusWcTypography, ModusWcUtilityPanel] }); }
|
|
1254
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusAngularComponentsModule, providers: [
|
|
1346
1255
|
{
|
|
1347
1256
|
provide: APP_INITIALIZER,
|
|
1348
1257
|
useFactory: () => defineCustomElements,
|
|
1349
1258
|
multi: true,
|
|
1350
|
-
}
|
|
1351
|
-
] });
|
|
1259
|
+
},
|
|
1260
|
+
] }); }
|
|
1352
1261
|
}
|
|
1353
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1262
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusAngularComponentsModule, decorators: [{
|
|
1354
1263
|
type: NgModule,
|
|
1355
1264
|
args: [{
|
|
1356
|
-
|
|
1265
|
+
declarations: [...DIRECTIVES],
|
|
1266
|
+
imports: [],
|
|
1357
1267
|
exports: [...DIRECTIVES],
|
|
1358
1268
|
providers: [
|
|
1359
1269
|
{
|
|
1360
1270
|
provide: APP_INITIALIZER,
|
|
1361
1271
|
useFactory: () => defineCustomElements,
|
|
1362
1272
|
multi: true,
|
|
1363
|
-
}
|
|
1364
|
-
]
|
|
1273
|
+
},
|
|
1274
|
+
],
|
|
1365
1275
|
}]
|
|
1366
1276
|
}] });
|
|
1367
1277
|
|