@trimble-oss/moduswebcomponents-angular 1.0.0-ng19 → 1.0.1-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 +1188 -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 +176 -239
- 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 +66 -45
- package/lib/stencil-generated/index.d.ts +1 -1
- 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,49 +336,45 @@ 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
|
-
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
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
|
-
inputs: ['bordered', 'customClass', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'readOnly', 'required', 'size', 'value']
|
|
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',
|
|
381
357
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
382
358
|
template: '<ng-content></ng-content>',
|
|
383
359
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
384
|
-
inputs: ['bordered', 'customClass', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'readOnly', 'required', 'size', 'value'],
|
|
360
|
+
inputs: ['bordered', 'customClass', 'disabled', 'feedback', 'format', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'readOnly', 'required', 'size', 'value', 'weekStartDay'],
|
|
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',
|
|
@@ -437,23 +409,46 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
437
409
|
inputs: ['buttonAriaLabel', 'buttonColor', 'buttonSize', 'buttonVariant', 'customClass', 'disabled', 'menuBordered', 'menuOffset', 'menuPlacement', 'menuSize', 'menuVisible'],
|
|
438
410
|
}]
|
|
439
411
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
412
|
+
let ModusWcFileDropzone = class ModusWcFileDropzone {
|
|
413
|
+
constructor(c, r, z) {
|
|
414
|
+
this.z = z;
|
|
415
|
+
c.detach();
|
|
416
|
+
this.el = r.nativeElement;
|
|
417
|
+
proxyOutputs(this, this.el, ['fileSelect']);
|
|
418
|
+
}
|
|
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 }); }
|
|
421
|
+
};
|
|
422
|
+
ModusWcFileDropzone = __decorate([
|
|
423
|
+
ProxyCmp({
|
|
424
|
+
inputs: ['acceptFileTypes', 'customClass', 'disabled', 'fileDraggedOverInstructions', 'includeStateIcon', 'instructions', 'invalidFileTypeMessage', 'maxFileCount', 'maxFileNameLength', 'maxTotalFileSizeBytes', 'multiple', 'successMessage']
|
|
425
|
+
})
|
|
426
|
+
], ModusWcFileDropzone);
|
|
427
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcFileDropzone, decorators: [{
|
|
428
|
+
type: Component,
|
|
429
|
+
args: [{
|
|
430
|
+
selector: 'modus-wc-file-dropzone',
|
|
431
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
432
|
+
template: '<ng-content></ng-content>',
|
|
433
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
434
|
+
inputs: ['acceptFileTypes', 'customClass', 'disabled', 'fileDraggedOverInstructions', 'includeStateIcon', 'instructions', 'invalidFileTypeMessage', 'maxFileCount', 'maxFileNameLength', 'maxTotalFileSizeBytes', 'multiple', 'successMessage'],
|
|
435
|
+
}]
|
|
436
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
440
437
|
let ModusWcIcon = class ModusWcIcon {
|
|
441
|
-
z;
|
|
442
|
-
el;
|
|
443
438
|
constructor(c, r, z) {
|
|
444
439
|
this.z = z;
|
|
445
440
|
c.detach();
|
|
446
441
|
this.el = r.nativeElement;
|
|
447
442
|
}
|
|
448
|
-
static
|
|
449
|
-
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 }); }
|
|
450
445
|
};
|
|
451
446
|
ModusWcIcon = __decorate([
|
|
452
447
|
ProxyCmp({
|
|
453
448
|
inputs: ['customClass', 'decorative', 'name', 'size', 'variant']
|
|
454
449
|
})
|
|
455
450
|
], ModusWcIcon);
|
|
456
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
451
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcIcon, decorators: [{
|
|
457
452
|
type: Component,
|
|
458
453
|
args: [{
|
|
459
454
|
selector: 'modus-wc-icon',
|
|
@@ -464,22 +459,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
464
459
|
}]
|
|
465
460
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
466
461
|
let ModusWcInputFeedback = class ModusWcInputFeedback {
|
|
467
|
-
z;
|
|
468
|
-
el;
|
|
469
462
|
constructor(c, r, z) {
|
|
470
463
|
this.z = z;
|
|
471
464
|
c.detach();
|
|
472
465
|
this.el = r.nativeElement;
|
|
473
466
|
}
|
|
474
|
-
static
|
|
475
|
-
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 }); }
|
|
476
469
|
};
|
|
477
470
|
ModusWcInputFeedback = __decorate([
|
|
478
471
|
ProxyCmp({
|
|
479
472
|
inputs: ['customClass', 'icon', 'level', 'message', 'size']
|
|
480
473
|
})
|
|
481
474
|
], ModusWcInputFeedback);
|
|
482
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
475
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcInputFeedback, decorators: [{
|
|
483
476
|
type: Component,
|
|
484
477
|
args: [{
|
|
485
478
|
selector: 'modus-wc-input-feedback',
|
|
@@ -490,22 +483,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
490
483
|
}]
|
|
491
484
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
492
485
|
let ModusWcInputLabel = class ModusWcInputLabel {
|
|
493
|
-
z;
|
|
494
|
-
el;
|
|
495
486
|
constructor(c, r, z) {
|
|
496
487
|
this.z = z;
|
|
497
488
|
c.detach();
|
|
498
489
|
this.el = r.nativeElement;
|
|
499
490
|
}
|
|
500
|
-
static
|
|
501
|
-
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 }); }
|
|
502
493
|
};
|
|
503
494
|
ModusWcInputLabel = __decorate([
|
|
504
495
|
ProxyCmp({
|
|
505
496
|
inputs: ['customClass', 'forId', 'labelText', 'required', 'size', 'subLabelText']
|
|
506
497
|
})
|
|
507
498
|
], ModusWcInputLabel);
|
|
508
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
499
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcInputLabel, decorators: [{
|
|
509
500
|
type: Component,
|
|
510
501
|
args: [{
|
|
511
502
|
selector: 'modus-wc-input-label',
|
|
@@ -516,22 +507,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
516
507
|
}]
|
|
517
508
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
518
509
|
let ModusWcLoader = class ModusWcLoader {
|
|
519
|
-
z;
|
|
520
|
-
el;
|
|
521
510
|
constructor(c, r, z) {
|
|
522
511
|
this.z = z;
|
|
523
512
|
c.detach();
|
|
524
513
|
this.el = r.nativeElement;
|
|
525
514
|
}
|
|
526
|
-
static
|
|
527
|
-
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 }); }
|
|
528
517
|
};
|
|
529
518
|
ModusWcLoader = __decorate([
|
|
530
519
|
ProxyCmp({
|
|
531
520
|
inputs: ['color', 'customClass', 'size', 'variant']
|
|
532
521
|
})
|
|
533
522
|
], ModusWcLoader);
|
|
534
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
523
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcLoader, decorators: [{
|
|
535
524
|
type: Component,
|
|
536
525
|
args: [{
|
|
537
526
|
selector: 'modus-wc-loader',
|
|
@@ -542,23 +531,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
542
531
|
}]
|
|
543
532
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
544
533
|
let ModusWcMenu = class ModusWcMenu {
|
|
545
|
-
z;
|
|
546
|
-
el;
|
|
547
534
|
constructor(c, r, z) {
|
|
548
535
|
this.z = z;
|
|
549
536
|
c.detach();
|
|
550
537
|
this.el = r.nativeElement;
|
|
551
538
|
proxyOutputs(this, this.el, ['menuFocusout']);
|
|
552
539
|
}
|
|
553
|
-
static
|
|
554
|
-
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", orientation: "orientation", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
555
542
|
};
|
|
556
543
|
ModusWcMenu = __decorate([
|
|
557
544
|
ProxyCmp({
|
|
558
545
|
inputs: ['bordered', 'customClass', 'orientation', 'size']
|
|
559
546
|
})
|
|
560
547
|
], ModusWcMenu);
|
|
561
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
548
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcMenu, decorators: [{
|
|
562
549
|
type: Component,
|
|
563
550
|
args: [{
|
|
564
551
|
selector: 'modus-wc-menu',
|
|
@@ -569,23 +556,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
569
556
|
}]
|
|
570
557
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
571
558
|
let ModusWcMenuItem = class ModusWcMenuItem {
|
|
572
|
-
z;
|
|
573
|
-
el;
|
|
574
559
|
constructor(c, r, z) {
|
|
575
560
|
this.z = z;
|
|
576
561
|
c.detach();
|
|
577
562
|
this.el = r.nativeElement;
|
|
578
563
|
proxyOutputs(this, this.el, ['itemSelect']);
|
|
579
564
|
}
|
|
580
|
-
static
|
|
581
|
-
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", 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 }); }
|
|
582
567
|
};
|
|
583
568
|
ModusWcMenuItem = __decorate([
|
|
584
569
|
ProxyCmp({
|
|
585
570
|
inputs: ['bordered', 'checkbox', 'customClass', 'disabled', 'focused', 'label', 'selected', 'size', 'startIcon', 'subLabel', 'tooltipContent', 'tooltipPosition', 'value']
|
|
586
571
|
})
|
|
587
572
|
], ModusWcMenuItem);
|
|
588
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
573
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcMenuItem, decorators: [{
|
|
589
574
|
type: Component,
|
|
590
575
|
args: [{
|
|
591
576
|
selector: 'modus-wc-menu-item',
|
|
@@ -596,22 +581,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
596
581
|
}]
|
|
597
582
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
598
583
|
let ModusWcModal = class ModusWcModal {
|
|
599
|
-
z;
|
|
600
|
-
el;
|
|
601
584
|
constructor(c, r, z) {
|
|
602
585
|
this.z = z;
|
|
603
586
|
c.detach();
|
|
604
587
|
this.el = r.nativeElement;
|
|
605
588
|
}
|
|
606
|
-
static
|
|
607
|
-
static
|
|
589
|
+
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 }); }
|
|
590
|
+
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 }); }
|
|
608
591
|
};
|
|
609
592
|
ModusWcModal = __decorate([
|
|
610
593
|
ProxyCmp({
|
|
611
594
|
inputs: ['backdrop', 'customClass', 'fullscreen', 'modalId', 'position', 'showClose', 'showFullscreenToggle']
|
|
612
595
|
})
|
|
613
596
|
], ModusWcModal);
|
|
614
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
597
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcModal, decorators: [{
|
|
615
598
|
type: Component,
|
|
616
599
|
args: [{
|
|
617
600
|
selector: 'modus-wc-modal',
|
|
@@ -622,23 +605,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
622
605
|
}]
|
|
623
606
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
624
607
|
let ModusWcNavbar = class ModusWcNavbar {
|
|
625
|
-
z;
|
|
626
|
-
el;
|
|
627
608
|
constructor(c, r, z) {
|
|
628
609
|
this.z = z;
|
|
629
610
|
c.detach();
|
|
630
611
|
this.el = r.nativeElement;
|
|
631
612
|
proxyOutputs(this, this.el, ['aiClick', 'appsClick', 'appsMenuOpenChange', 'condensedMenuOpenChange', 'helpClick', 'mainMenuOpenChange', 'myTrimbleClick', 'notificationsClick', 'notificationsMenuOpenChange', 'searchChange', 'searchClick', 'searchInputOpenChange', 'signOutClick', 'trimbleLogoClick', 'userMenuOpenChange']);
|
|
632
613
|
}
|
|
633
|
-
static
|
|
634
|
-
static
|
|
614
|
+
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 }); }
|
|
615
|
+
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 }); }
|
|
635
616
|
};
|
|
636
617
|
ModusWcNavbar = __decorate([
|
|
637
618
|
ProxyCmp({
|
|
638
619
|
inputs: ['appsMenuOpen', 'condensed', 'condensedMenuOpen', 'customClass', 'mainMenuOpen', 'notificationsMenuOpen', 'searchDebounceMs', 'searchInputOpen', 'textOverrides', 'userCard', 'userMenuOpen', 'visibility']
|
|
639
620
|
})
|
|
640
621
|
], ModusWcNavbar);
|
|
641
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
622
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcNavbar, decorators: [{
|
|
642
623
|
type: Component,
|
|
643
624
|
args: [{
|
|
644
625
|
selector: 'modus-wc-navbar',
|
|
@@ -649,23 +630,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
649
630
|
}]
|
|
650
631
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
651
632
|
let ModusWcNumberInput = class ModusWcNumberInput {
|
|
652
|
-
z;
|
|
653
|
-
el;
|
|
654
633
|
constructor(c, r, z) {
|
|
655
634
|
this.z = z;
|
|
656
635
|
c.detach();
|
|
657
636
|
this.el = r.nativeElement;
|
|
658
637
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
659
638
|
}
|
|
660
|
-
static
|
|
661
|
-
static
|
|
639
|
+
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 }); }
|
|
640
|
+
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 }); }
|
|
662
641
|
};
|
|
663
642
|
ModusWcNumberInput = __decorate([
|
|
664
643
|
ProxyCmp({
|
|
665
644
|
inputs: ['autoComplete', 'bordered', 'currencySymbol', 'customClass', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'placeholder', 'readOnly', 'required', 'size', 'step', 'type', 'value']
|
|
666
645
|
})
|
|
667
646
|
], ModusWcNumberInput);
|
|
668
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
647
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcNumberInput, decorators: [{
|
|
669
648
|
type: Component,
|
|
670
649
|
args: [{
|
|
671
650
|
selector: 'modus-wc-number-input',
|
|
@@ -676,23 +655,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
676
655
|
}]
|
|
677
656
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
678
657
|
let ModusWcPagination = class ModusWcPagination {
|
|
679
|
-
z;
|
|
680
|
-
el;
|
|
681
658
|
constructor(c, r, z) {
|
|
682
659
|
this.z = z;
|
|
683
660
|
c.detach();
|
|
684
661
|
this.el = r.nativeElement;
|
|
685
662
|
proxyOutputs(this, this.el, ['pageChange']);
|
|
686
663
|
}
|
|
687
|
-
static
|
|
688
|
-
static
|
|
664
|
+
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 }); }
|
|
665
|
+
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 }); }
|
|
689
666
|
};
|
|
690
667
|
ModusWcPagination = __decorate([
|
|
691
668
|
ProxyCmp({
|
|
692
669
|
inputs: ['ariaLabelValues', 'count', 'customClass', 'nextButtonText', 'page', 'prevButtonText', 'size']
|
|
693
670
|
})
|
|
694
671
|
], ModusWcPagination);
|
|
695
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
672
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcPagination, decorators: [{
|
|
696
673
|
type: Component,
|
|
697
674
|
args: [{
|
|
698
675
|
selector: 'modus-wc-pagination',
|
|
@@ -703,22 +680,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
703
680
|
}]
|
|
704
681
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
705
682
|
let ModusWcProgress = class ModusWcProgress {
|
|
706
|
-
z;
|
|
707
|
-
el;
|
|
708
683
|
constructor(c, r, z) {
|
|
709
684
|
this.z = z;
|
|
710
685
|
c.detach();
|
|
711
686
|
this.el = r.nativeElement;
|
|
712
687
|
}
|
|
713
|
-
static
|
|
714
|
-
static
|
|
688
|
+
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 }); }
|
|
689
|
+
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 }); }
|
|
715
690
|
};
|
|
716
691
|
ModusWcProgress = __decorate([
|
|
717
692
|
ProxyCmp({
|
|
718
693
|
inputs: ['customClass', 'indeterminate', 'label', 'max', 'value', 'variant']
|
|
719
694
|
})
|
|
720
695
|
], ModusWcProgress);
|
|
721
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
696
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcProgress, decorators: [{
|
|
722
697
|
type: Component,
|
|
723
698
|
args: [{
|
|
724
699
|
selector: 'modus-wc-progress',
|
|
@@ -729,23 +704,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
729
704
|
}]
|
|
730
705
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
731
706
|
let ModusWcRadio = class ModusWcRadio {
|
|
732
|
-
z;
|
|
733
|
-
el;
|
|
734
707
|
constructor(c, r, z) {
|
|
735
708
|
this.z = z;
|
|
736
709
|
c.detach();
|
|
737
710
|
this.el = r.nativeElement;
|
|
738
711
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
739
712
|
}
|
|
740
|
-
static
|
|
741
|
-
static
|
|
713
|
+
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 }); }
|
|
714
|
+
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 }); }
|
|
742
715
|
};
|
|
743
716
|
ModusWcRadio = __decorate([
|
|
744
717
|
ProxyCmp({
|
|
745
718
|
inputs: ['customClass', 'disabled', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value']
|
|
746
719
|
})
|
|
747
720
|
], ModusWcRadio);
|
|
748
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
721
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcRadio, decorators: [{
|
|
749
722
|
type: Component,
|
|
750
723
|
args: [{
|
|
751
724
|
selector: 'modus-wc-radio',
|
|
@@ -756,23 +729,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
756
729
|
}]
|
|
757
730
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
758
731
|
let ModusWcRating = class ModusWcRating {
|
|
759
|
-
z;
|
|
760
|
-
el;
|
|
761
732
|
constructor(c, r, z) {
|
|
762
733
|
this.z = z;
|
|
763
734
|
c.detach();
|
|
764
735
|
this.el = r.nativeElement;
|
|
765
736
|
proxyOutputs(this, this.el, ['ratingChange']);
|
|
766
737
|
}
|
|
767
|
-
static
|
|
768
|
-
static
|
|
738
|
+
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 }); }
|
|
739
|
+
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 }); }
|
|
769
740
|
};
|
|
770
741
|
ModusWcRating = __decorate([
|
|
771
742
|
ProxyCmp({
|
|
772
743
|
inputs: ['allowHalf', 'count', 'customClass', 'disabled', 'getAriaLabelText', 'size', 'value', 'variant']
|
|
773
744
|
})
|
|
774
745
|
], ModusWcRating);
|
|
775
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
746
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcRating, decorators: [{
|
|
776
747
|
type: Component,
|
|
777
748
|
args: [{
|
|
778
749
|
selector: 'modus-wc-rating',
|
|
@@ -783,23 +754,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
783
754
|
}]
|
|
784
755
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
785
756
|
let ModusWcSelect = class ModusWcSelect {
|
|
786
|
-
z;
|
|
787
|
-
el;
|
|
788
757
|
constructor(c, r, z) {
|
|
789
758
|
this.z = z;
|
|
790
759
|
c.detach();
|
|
791
760
|
this.el = r.nativeElement;
|
|
792
761
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
793
762
|
}
|
|
794
|
-
static
|
|
795
|
-
static
|
|
763
|
+
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 }); }
|
|
764
|
+
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 }); }
|
|
796
765
|
};
|
|
797
766
|
ModusWcSelect = __decorate([
|
|
798
767
|
ProxyCmp({
|
|
799
768
|
inputs: ['bordered', 'customClass', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'name', 'options', 'required', 'size', 'value']
|
|
800
769
|
})
|
|
801
770
|
], ModusWcSelect);
|
|
802
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
771
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSelect, decorators: [{
|
|
803
772
|
type: Component,
|
|
804
773
|
args: [{
|
|
805
774
|
selector: 'modus-wc-select',
|
|
@@ -810,23 +779,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
810
779
|
}]
|
|
811
780
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
812
781
|
let ModusWcSideNavigation = class ModusWcSideNavigation {
|
|
813
|
-
z;
|
|
814
|
-
el;
|
|
815
782
|
constructor(c, r, z) {
|
|
816
783
|
this.z = z;
|
|
817
784
|
c.detach();
|
|
818
785
|
this.el = r.nativeElement;
|
|
819
786
|
proxyOutputs(this, this.el, ['expandedChange']);
|
|
820
787
|
}
|
|
821
|
-
static
|
|
822
|
-
static
|
|
788
|
+
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 }); }
|
|
789
|
+
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 }); }
|
|
823
790
|
};
|
|
824
791
|
ModusWcSideNavigation = __decorate([
|
|
825
792
|
ProxyCmp({
|
|
826
793
|
inputs: ['collapseOnClickOutside', 'customClass', 'expanded', 'maxWidth', 'mode', 'targetContent']
|
|
827
794
|
})
|
|
828
795
|
], ModusWcSideNavigation);
|
|
829
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
796
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSideNavigation, decorators: [{
|
|
830
797
|
type: Component,
|
|
831
798
|
args: [{
|
|
832
799
|
selector: 'modus-wc-side-navigation',
|
|
@@ -837,22 +804,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
837
804
|
}]
|
|
838
805
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
839
806
|
let ModusWcSkeleton = class ModusWcSkeleton {
|
|
840
|
-
z;
|
|
841
|
-
el;
|
|
842
807
|
constructor(c, r, z) {
|
|
843
808
|
this.z = z;
|
|
844
809
|
c.detach();
|
|
845
810
|
this.el = r.nativeElement;
|
|
846
811
|
}
|
|
847
|
-
static
|
|
848
|
-
static
|
|
812
|
+
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 }); }
|
|
813
|
+
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 }); }
|
|
849
814
|
};
|
|
850
815
|
ModusWcSkeleton = __decorate([
|
|
851
816
|
ProxyCmp({
|
|
852
817
|
inputs: ['customClass', 'height', 'shape', 'width']
|
|
853
818
|
})
|
|
854
819
|
], ModusWcSkeleton);
|
|
855
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
820
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSkeleton, decorators: [{
|
|
856
821
|
type: Component,
|
|
857
822
|
args: [{
|
|
858
823
|
selector: 'modus-wc-skeleton',
|
|
@@ -863,23 +828,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
863
828
|
}]
|
|
864
829
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
865
830
|
let ModusWcSlider = class ModusWcSlider {
|
|
866
|
-
z;
|
|
867
|
-
el;
|
|
868
831
|
constructor(c, r, z) {
|
|
869
832
|
this.z = z;
|
|
870
833
|
c.detach();
|
|
871
834
|
this.el = r.nativeElement;
|
|
872
835
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
873
836
|
}
|
|
874
|
-
static
|
|
875
|
-
static
|
|
837
|
+
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 }); }
|
|
838
|
+
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 }); }
|
|
876
839
|
};
|
|
877
840
|
ModusWcSlider = __decorate([
|
|
878
841
|
ProxyCmp({
|
|
879
842
|
inputs: ['customClass', 'disabled', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'required', 'size', 'step', 'value']
|
|
880
843
|
})
|
|
881
844
|
], ModusWcSlider);
|
|
882
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
845
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSlider, decorators: [{
|
|
883
846
|
type: Component,
|
|
884
847
|
args: [{
|
|
885
848
|
selector: 'modus-wc-slider',
|
|
@@ -890,22 +853,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
890
853
|
}]
|
|
891
854
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
892
855
|
let ModusWcStepper = class ModusWcStepper {
|
|
893
|
-
z;
|
|
894
|
-
el;
|
|
895
856
|
constructor(c, r, z) {
|
|
896
857
|
this.z = z;
|
|
897
858
|
c.detach();
|
|
898
859
|
this.el = r.nativeElement;
|
|
899
860
|
}
|
|
900
|
-
static
|
|
901
|
-
static
|
|
861
|
+
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 }); }
|
|
862
|
+
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 }); }
|
|
902
863
|
};
|
|
903
864
|
ModusWcStepper = __decorate([
|
|
904
865
|
ProxyCmp({
|
|
905
866
|
inputs: ['customClass', 'orientation', 'steps']
|
|
906
867
|
})
|
|
907
868
|
], ModusWcStepper);
|
|
908
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
869
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcStepper, decorators: [{
|
|
909
870
|
type: Component,
|
|
910
871
|
args: [{
|
|
911
872
|
selector: 'modus-wc-stepper',
|
|
@@ -916,23 +877,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
916
877
|
}]
|
|
917
878
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
918
879
|
let ModusWcSwitch = class ModusWcSwitch {
|
|
919
|
-
z;
|
|
920
|
-
el;
|
|
921
880
|
constructor(c, r, z) {
|
|
922
881
|
this.z = z;
|
|
923
882
|
c.detach();
|
|
924
883
|
this.el = r.nativeElement;
|
|
925
884
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
926
885
|
}
|
|
927
|
-
static
|
|
928
|
-
static
|
|
886
|
+
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 }); }
|
|
887
|
+
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 }); }
|
|
929
888
|
};
|
|
930
889
|
ModusWcSwitch = __decorate([
|
|
931
890
|
ProxyCmp({
|
|
932
891
|
inputs: ['customClass', 'disabled', 'indeterminate', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value']
|
|
933
892
|
})
|
|
934
893
|
], ModusWcSwitch);
|
|
935
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
894
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSwitch, decorators: [{
|
|
936
895
|
type: Component,
|
|
937
896
|
args: [{
|
|
938
897
|
selector: 'modus-wc-switch',
|
|
@@ -943,23 +902,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
943
902
|
}]
|
|
944
903
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
945
904
|
let ModusWcTable = class ModusWcTable {
|
|
946
|
-
z;
|
|
947
|
-
el;
|
|
948
905
|
constructor(c, r, z) {
|
|
949
906
|
this.z = z;
|
|
950
907
|
c.detach();
|
|
951
908
|
this.el = r.nativeElement;
|
|
952
909
|
proxyOutputs(this, this.el, ['cellEditStart', 'cellEditCommit', 'rowClick', 'sortChange', 'paginationChange', 'rowSelectionChange']);
|
|
953
910
|
}
|
|
954
|
-
static
|
|
955
|
-
static
|
|
911
|
+
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 }); }
|
|
912
|
+
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 }); }
|
|
956
913
|
};
|
|
957
914
|
ModusWcTable = __decorate([
|
|
958
915
|
ProxyCmp({
|
|
959
916
|
inputs: ['caption', 'columns', 'currentPage', 'customClass', 'data', 'density', 'editable', 'hover', 'pageSizeOptions', 'paginated', 'selectable', 'selectedRowIds', 'showPageSizeSelector', 'sortable', 'zebra']
|
|
960
917
|
})
|
|
961
918
|
], ModusWcTable);
|
|
962
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
919
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTable, decorators: [{
|
|
963
920
|
type: Component,
|
|
964
921
|
args: [{
|
|
965
922
|
selector: 'modus-wc-table',
|
|
@@ -970,23 +927,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
970
927
|
}]
|
|
971
928
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
972
929
|
let ModusWcTabs = class ModusWcTabs {
|
|
973
|
-
z;
|
|
974
|
-
el;
|
|
975
930
|
constructor(c, r, z) {
|
|
976
931
|
this.z = z;
|
|
977
932
|
c.detach();
|
|
978
933
|
this.el = r.nativeElement;
|
|
979
934
|
proxyOutputs(this, this.el, ['tabChange']);
|
|
980
935
|
}
|
|
981
|
-
static
|
|
982
|
-
static
|
|
936
|
+
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 }); }
|
|
937
|
+
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 }); }
|
|
983
938
|
};
|
|
984
939
|
ModusWcTabs = __decorate([
|
|
985
940
|
ProxyCmp({
|
|
986
941
|
inputs: ['activeTabIndex', 'customClass', 'size', 'tabStyle', 'tabs']
|
|
987
942
|
})
|
|
988
943
|
], ModusWcTabs);
|
|
989
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
944
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTabs, decorators: [{
|
|
990
945
|
type: Component,
|
|
991
946
|
args: [{
|
|
992
947
|
selector: 'modus-wc-tabs',
|
|
@@ -997,23 +952,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
997
952
|
}]
|
|
998
953
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
999
954
|
let ModusWcTextInput = class ModusWcTextInput {
|
|
1000
|
-
z;
|
|
1001
|
-
el;
|
|
1002
955
|
constructor(c, r, z) {
|
|
1003
956
|
this.z = z;
|
|
1004
957
|
c.detach();
|
|
1005
958
|
this.el = r.nativeElement;
|
|
1006
959
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
1007
960
|
}
|
|
1008
|
-
static
|
|
1009
|
-
static
|
|
961
|
+
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 }); }
|
|
962
|
+
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 }); }
|
|
1010
963
|
};
|
|
1011
964
|
ModusWcTextInput = __decorate([
|
|
1012
965
|
ProxyCmp({
|
|
1013
966
|
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']
|
|
1014
967
|
})
|
|
1015
968
|
], ModusWcTextInput);
|
|
1016
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
969
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTextInput, decorators: [{
|
|
1017
970
|
type: Component,
|
|
1018
971
|
args: [{
|
|
1019
972
|
selector: 'modus-wc-text-input',
|
|
@@ -1024,23 +977,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1024
977
|
}]
|
|
1025
978
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1026
979
|
let ModusWcTextarea = class ModusWcTextarea {
|
|
1027
|
-
z;
|
|
1028
|
-
el;
|
|
1029
980
|
constructor(c, r, z) {
|
|
1030
981
|
this.z = z;
|
|
1031
982
|
c.detach();
|
|
1032
983
|
this.el = r.nativeElement;
|
|
1033
984
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
1034
985
|
}
|
|
1035
|
-
static
|
|
1036
|
-
static
|
|
986
|
+
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 }); }
|
|
987
|
+
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 }); }
|
|
1037
988
|
};
|
|
1038
989
|
ModusWcTextarea = __decorate([
|
|
1039
990
|
ProxyCmp({
|
|
1040
991
|
inputs: ['autoCorrect', 'bordered', 'customClass', 'disabled', 'enterkeyhint', 'feedback', 'inputId', 'inputTabIndex', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'readonly', 'required', 'rows', 'size', 'value']
|
|
1041
992
|
})
|
|
1042
993
|
], ModusWcTextarea);
|
|
1043
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
994
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTextarea, decorators: [{
|
|
1044
995
|
type: Component,
|
|
1045
996
|
args: [{
|
|
1046
997
|
selector: 'modus-wc-textarea',
|
|
@@ -1051,22 +1002,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1051
1002
|
}]
|
|
1052
1003
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1053
1004
|
let ModusWcThemeProvider = class ModusWcThemeProvider {
|
|
1054
|
-
z;
|
|
1055
|
-
el;
|
|
1056
1005
|
constructor(c, r, z) {
|
|
1057
1006
|
this.z = z;
|
|
1058
1007
|
c.detach();
|
|
1059
1008
|
this.el = r.nativeElement;
|
|
1060
1009
|
}
|
|
1061
|
-
static
|
|
1062
|
-
static
|
|
1010
|
+
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 }); }
|
|
1011
|
+
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 }); }
|
|
1063
1012
|
};
|
|
1064
1013
|
ModusWcThemeProvider = __decorate([
|
|
1065
1014
|
ProxyCmp({
|
|
1066
1015
|
inputs: ['initialTheme']
|
|
1067
1016
|
})
|
|
1068
1017
|
], ModusWcThemeProvider);
|
|
1069
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1018
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcThemeProvider, decorators: [{
|
|
1070
1019
|
type: Component,
|
|
1071
1020
|
args: [{
|
|
1072
1021
|
selector: 'modus-wc-theme-provider',
|
|
@@ -1077,23 +1026,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1077
1026
|
}]
|
|
1078
1027
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1079
1028
|
let ModusWcThemeSwitcher = class ModusWcThemeSwitcher {
|
|
1080
|
-
z;
|
|
1081
|
-
el;
|
|
1082
1029
|
constructor(c, r, z) {
|
|
1083
1030
|
this.z = z;
|
|
1084
1031
|
c.detach();
|
|
1085
1032
|
this.el = r.nativeElement;
|
|
1086
1033
|
proxyOutputs(this, this.el, ['themeChange']);
|
|
1087
1034
|
}
|
|
1088
|
-
static
|
|
1089
|
-
static
|
|
1035
|
+
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 }); }
|
|
1036
|
+
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 }); }
|
|
1090
1037
|
};
|
|
1091
1038
|
ModusWcThemeSwitcher = __decorate([
|
|
1092
1039
|
ProxyCmp({
|
|
1093
1040
|
inputs: ['customClass']
|
|
1094
1041
|
})
|
|
1095
1042
|
], ModusWcThemeSwitcher);
|
|
1096
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1043
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcThemeSwitcher, decorators: [{
|
|
1097
1044
|
type: Component,
|
|
1098
1045
|
args: [{
|
|
1099
1046
|
selector: 'modus-wc-theme-switcher',
|
|
@@ -1104,23 +1051,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1104
1051
|
}]
|
|
1105
1052
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1106
1053
|
let ModusWcTimeInput = class ModusWcTimeInput {
|
|
1107
|
-
z;
|
|
1108
|
-
el;
|
|
1109
1054
|
constructor(c, r, z) {
|
|
1110
1055
|
this.z = z;
|
|
1111
1056
|
c.detach();
|
|
1112
1057
|
this.el = r.nativeElement;
|
|
1113
1058
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
1114
1059
|
}
|
|
1115
|
-
static
|
|
1116
|
-
static
|
|
1060
|
+
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 }); }
|
|
1061
|
+
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 }); }
|
|
1117
1062
|
};
|
|
1118
1063
|
ModusWcTimeInput = __decorate([
|
|
1119
1064
|
ProxyCmp({
|
|
1120
1065
|
inputs: ['autoComplete', 'bordered', 'customClass', 'datalistId', 'datalistOptions', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'readOnly', 'required', 'showSeconds', 'size', 'step', 'value']
|
|
1121
1066
|
})
|
|
1122
1067
|
], ModusWcTimeInput);
|
|
1123
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1068
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTimeInput, decorators: [{
|
|
1124
1069
|
type: Component,
|
|
1125
1070
|
args: [{
|
|
1126
1071
|
selector: 'modus-wc-time-input',
|
|
@@ -1131,22 +1076,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1131
1076
|
}]
|
|
1132
1077
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1133
1078
|
let ModusWcToast = class ModusWcToast {
|
|
1134
|
-
z;
|
|
1135
|
-
el;
|
|
1136
1079
|
constructor(c, r, z) {
|
|
1137
1080
|
this.z = z;
|
|
1138
1081
|
c.detach();
|
|
1139
1082
|
this.el = r.nativeElement;
|
|
1140
1083
|
}
|
|
1141
|
-
static
|
|
1142
|
-
static
|
|
1084
|
+
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 }); }
|
|
1085
|
+
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 }); }
|
|
1143
1086
|
};
|
|
1144
1087
|
ModusWcToast = __decorate([
|
|
1145
1088
|
ProxyCmp({
|
|
1146
1089
|
inputs: ['customClass', 'delay', 'position']
|
|
1147
1090
|
})
|
|
1148
1091
|
], ModusWcToast);
|
|
1149
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1092
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcToast, decorators: [{
|
|
1150
1093
|
type: Component,
|
|
1151
1094
|
args: [{
|
|
1152
1095
|
selector: 'modus-wc-toast',
|
|
@@ -1157,22 +1100,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1157
1100
|
}]
|
|
1158
1101
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1159
1102
|
let ModusWcToolbar = class ModusWcToolbar {
|
|
1160
|
-
z;
|
|
1161
|
-
el;
|
|
1162
1103
|
constructor(c, r, z) {
|
|
1163
1104
|
this.z = z;
|
|
1164
1105
|
c.detach();
|
|
1165
1106
|
this.el = r.nativeElement;
|
|
1166
1107
|
}
|
|
1167
|
-
static
|
|
1168
|
-
static
|
|
1108
|
+
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 }); }
|
|
1109
|
+
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 }); }
|
|
1169
1110
|
};
|
|
1170
1111
|
ModusWcToolbar = __decorate([
|
|
1171
1112
|
ProxyCmp({
|
|
1172
1113
|
inputs: ['customClass']
|
|
1173
1114
|
})
|
|
1174
1115
|
], ModusWcToolbar);
|
|
1175
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1116
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcToolbar, decorators: [{
|
|
1176
1117
|
type: Component,
|
|
1177
1118
|
args: [{
|
|
1178
1119
|
selector: 'modus-wc-toolbar',
|
|
@@ -1183,23 +1124,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1183
1124
|
}]
|
|
1184
1125
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1185
1126
|
let ModusWcTooltip = class ModusWcTooltip {
|
|
1186
|
-
z;
|
|
1187
|
-
el;
|
|
1188
1127
|
constructor(c, r, z) {
|
|
1189
1128
|
this.z = z;
|
|
1190
1129
|
c.detach();
|
|
1191
1130
|
this.el = r.nativeElement;
|
|
1192
1131
|
proxyOutputs(this, this.el, ['dismissEscape']);
|
|
1193
1132
|
}
|
|
1194
|
-
static
|
|
1195
|
-
static
|
|
1133
|
+
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 }); }
|
|
1134
|
+
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 }); }
|
|
1196
1135
|
};
|
|
1197
1136
|
ModusWcTooltip = __decorate([
|
|
1198
1137
|
ProxyCmp({
|
|
1199
1138
|
inputs: ['content', 'customClass', 'disabled', 'forceOpen', 'position', 'tooltipId']
|
|
1200
1139
|
})
|
|
1201
1140
|
], ModusWcTooltip);
|
|
1202
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1141
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTooltip, decorators: [{
|
|
1203
1142
|
type: Component,
|
|
1204
1143
|
args: [{
|
|
1205
1144
|
selector: 'modus-wc-tooltip',
|
|
@@ -1210,22 +1149,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1210
1149
|
}]
|
|
1211
1150
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1212
1151
|
let ModusWcTypography = class ModusWcTypography {
|
|
1213
|
-
z;
|
|
1214
|
-
el;
|
|
1215
1152
|
constructor(c, r, z) {
|
|
1216
1153
|
this.z = z;
|
|
1217
1154
|
c.detach();
|
|
1218
1155
|
this.el = r.nativeElement;
|
|
1219
1156
|
}
|
|
1220
|
-
static
|
|
1221
|
-
static
|
|
1157
|
+
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 }); }
|
|
1158
|
+
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 }); }
|
|
1222
1159
|
};
|
|
1223
1160
|
ModusWcTypography = __decorate([
|
|
1224
1161
|
ProxyCmp({
|
|
1225
1162
|
inputs: ['customClass', 'hierarchy', 'size', 'weight']
|
|
1226
1163
|
})
|
|
1227
1164
|
], ModusWcTypography);
|
|
1228
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1165
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTypography, decorators: [{
|
|
1229
1166
|
type: Component,
|
|
1230
1167
|
args: [{
|
|
1231
1168
|
selector: 'modus-wc-typography',
|
|
@@ -1236,23 +1173,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1236
1173
|
}]
|
|
1237
1174
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1238
1175
|
let ModusWcUtilityPanel = class ModusWcUtilityPanel {
|
|
1239
|
-
z;
|
|
1240
|
-
el;
|
|
1241
1176
|
constructor(c, r, z) {
|
|
1242
1177
|
this.z = z;
|
|
1243
1178
|
c.detach();
|
|
1244
1179
|
this.el = r.nativeElement;
|
|
1245
1180
|
proxyOutputs(this, this.el, ['panelOpened', 'panelClosed']);
|
|
1246
1181
|
}
|
|
1247
|
-
static
|
|
1248
|
-
static
|
|
1182
|
+
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 }); }
|
|
1183
|
+
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 }); }
|
|
1249
1184
|
};
|
|
1250
1185
|
ModusWcUtilityPanel = __decorate([
|
|
1251
1186
|
ProxyCmp({
|
|
1252
1187
|
inputs: ['expanded', 'pushContent', 'targetElement']
|
|
1253
1188
|
})
|
|
1254
1189
|
], ModusWcUtilityPanel);
|
|
1255
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1190
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcUtilityPanel, decorators: [{
|
|
1256
1191
|
type: Component,
|
|
1257
1192
|
args: [{
|
|
1258
1193
|
selector: 'modus-wc-utility-panel',
|
|
@@ -1278,6 +1213,7 @@ const DIRECTIVES = [
|
|
|
1278
1213
|
ModusWcDate,
|
|
1279
1214
|
ModusWcDivider,
|
|
1280
1215
|
ModusWcDropdownMenu,
|
|
1216
|
+
ModusWcFileDropzone,
|
|
1281
1217
|
ModusWcIcon,
|
|
1282
1218
|
ModusWcInputFeedback,
|
|
1283
1219
|
ModusWcInputLabel,
|
|
@@ -1312,28 +1248,29 @@ const DIRECTIVES = [
|
|
|
1312
1248
|
];
|
|
1313
1249
|
|
|
1314
1250
|
class ModusAngularComponentsModule {
|
|
1315
|
-
static
|
|
1316
|
-
static
|
|
1317
|
-
static
|
|
1251
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusAngularComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1252
|
+
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] }); }
|
|
1253
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusAngularComponentsModule, providers: [
|
|
1318
1254
|
{
|
|
1319
1255
|
provide: APP_INITIALIZER,
|
|
1320
1256
|
useFactory: () => defineCustomElements,
|
|
1321
1257
|
multi: true,
|
|
1322
|
-
}
|
|
1323
|
-
] });
|
|
1258
|
+
},
|
|
1259
|
+
] }); }
|
|
1324
1260
|
}
|
|
1325
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1261
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusAngularComponentsModule, decorators: [{
|
|
1326
1262
|
type: NgModule,
|
|
1327
1263
|
args: [{
|
|
1328
|
-
|
|
1264
|
+
declarations: [...DIRECTIVES],
|
|
1265
|
+
imports: [],
|
|
1329
1266
|
exports: [...DIRECTIVES],
|
|
1330
1267
|
providers: [
|
|
1331
1268
|
{
|
|
1332
1269
|
provide: APP_INITIALIZER,
|
|
1333
1270
|
useFactory: () => defineCustomElements,
|
|
1334
1271
|
multi: true,
|
|
1335
|
-
}
|
|
1336
|
-
]
|
|
1272
|
+
},
|
|
1273
|
+
],
|
|
1337
1274
|
}]
|
|
1338
1275
|
}] });
|
|
1339
1276
|
|
|
@@ -1345,5 +1282,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1345
1282
|
* Generated bundle index. Do not edit.
|
|
1346
1283
|
*/
|
|
1347
1284
|
|
|
1348
|
-
export { DIRECTIVES, ModusAngularComponentsModule, ModusWcAccordion, ModusWcAlert, ModusWcAutocomplete, ModusWcAvatar, ModusWcBadge, ModusWcBreadcrumbs, ModusWcButton, ModusWcCard, ModusWcCheckbox, ModusWcChip, ModusWcCollapse, ModusWcDate, ModusWcDivider, ModusWcDropdownMenu, 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 };
|
|
1285
|
+
export { DIRECTIVES, ModusAngularComponentsModule, 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 };
|
|
1349
1286
|
//# sourceMappingURL=trimble-oss-moduswebcomponents-angular.mjs.map
|