@trimble-oss/moduswebcomponents-angular 1.0.5-ng19 → 1.0.6-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 +1291 -0
- package/esm2022/lib/stencil-generated/index.mjs +54 -0
- package/esm2022/public-api.mjs +7 -0
- package/esm2022/trimble-oss-moduswebcomponents-angular.mjs +5 -0
- package/fesm2022/trimble-oss-moduswebcomponents-angular.mjs +184 -256
- 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 +58 -49
- 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', 'clearClick', '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,23 +237,21 @@ 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 ModusWcButtonGroup = class ModusWcButtonGroup {
|
|
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
|
proxyOutputs(this, this.el, ['buttonGroupClick', 'buttonSelectionChange']);
|
|
261
245
|
}
|
|
262
|
-
static
|
|
263
|
-
static
|
|
246
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcButtonGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
247
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcButtonGroup, selector: "modus-wc-button-group", inputs: { color: "color", disabled: "disabled", orientation: "orientation", selectionType: "selectionType", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
264
248
|
};
|
|
265
249
|
ModusWcButtonGroup = __decorate([
|
|
266
250
|
ProxyCmp({
|
|
267
251
|
inputs: ['color', 'disabled', 'orientation', 'selectionType', 'variant']
|
|
268
252
|
})
|
|
269
253
|
], ModusWcButtonGroup);
|
|
270
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
254
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcButtonGroup, decorators: [{
|
|
271
255
|
type: Component,
|
|
272
256
|
args: [{
|
|
273
257
|
selector: 'modus-wc-button-group',
|
|
@@ -278,22 +262,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
278
262
|
}]
|
|
279
263
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
280
264
|
let ModusWcCard = class ModusWcCard {
|
|
281
|
-
z;
|
|
282
|
-
el;
|
|
283
265
|
constructor(c, r, z) {
|
|
284
266
|
this.z = z;
|
|
285
267
|
c.detach();
|
|
286
268
|
this.el = r.nativeElement;
|
|
287
269
|
}
|
|
288
|
-
static
|
|
289
|
-
static
|
|
270
|
+
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 }); }
|
|
271
|
+
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 }); }
|
|
290
272
|
};
|
|
291
273
|
ModusWcCard = __decorate([
|
|
292
274
|
ProxyCmp({
|
|
293
275
|
inputs: ['backgroundFigure', 'bordered', 'customClass', 'layout', 'padding']
|
|
294
276
|
})
|
|
295
277
|
], ModusWcCard);
|
|
296
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
278
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcCard, decorators: [{
|
|
297
279
|
type: Component,
|
|
298
280
|
args: [{
|
|
299
281
|
selector: 'modus-wc-card',
|
|
@@ -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 ModusWcCheckbox = class ModusWcCheckbox {
|
|
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, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
314
294
|
}
|
|
315
|
-
static
|
|
316
|
-
static
|
|
295
|
+
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 }); }
|
|
296
|
+
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 }); }
|
|
317
297
|
};
|
|
318
298
|
ModusWcCheckbox = __decorate([
|
|
319
299
|
ProxyCmp({
|
|
320
300
|
inputs: ['customClass', 'disabled', 'indeterminate', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value']
|
|
321
301
|
})
|
|
322
302
|
], ModusWcCheckbox);
|
|
323
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
303
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcCheckbox, decorators: [{
|
|
324
304
|
type: Component,
|
|
325
305
|
args: [{
|
|
326
306
|
selector: 'modus-wc-checkbox',
|
|
@@ -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 ModusWcChip = class ModusWcChip {
|
|
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, ['chipClick', 'chipRemove']);
|
|
341
319
|
}
|
|
342
|
-
static
|
|
343
|
-
static
|
|
320
|
+
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 }); }
|
|
321
|
+
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 }); }
|
|
344
322
|
};
|
|
345
323
|
ModusWcChip = __decorate([
|
|
346
324
|
ProxyCmp({
|
|
347
325
|
inputs: ['active', 'customClass', 'disabled', 'hasError', 'label', 'shape', 'showRemove', 'size', 'variant']
|
|
348
326
|
})
|
|
349
327
|
], ModusWcChip);
|
|
350
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
328
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcChip, decorators: [{
|
|
351
329
|
type: Component,
|
|
352
330
|
args: [{
|
|
353
331
|
selector: 'modus-wc-chip',
|
|
@@ -358,23 +336,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
358
336
|
}]
|
|
359
337
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
360
338
|
let ModusWcCollapse = class ModusWcCollapse {
|
|
361
|
-
z;
|
|
362
|
-
el;
|
|
363
339
|
constructor(c, r, z) {
|
|
364
340
|
this.z = z;
|
|
365
341
|
c.detach();
|
|
366
342
|
this.el = r.nativeElement;
|
|
367
343
|
proxyOutputs(this, this.el, ['expandedChange']);
|
|
368
344
|
}
|
|
369
|
-
static
|
|
370
|
-
static
|
|
345
|
+
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 }); }
|
|
346
|
+
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 }); }
|
|
371
347
|
};
|
|
372
348
|
ModusWcCollapse = __decorate([
|
|
373
349
|
ProxyCmp({
|
|
374
350
|
inputs: ['bordered', 'collapseId', 'customClass', 'expanded', 'options']
|
|
375
351
|
})
|
|
376
352
|
], ModusWcCollapse);
|
|
377
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
353
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcCollapse, decorators: [{
|
|
378
354
|
type: Component,
|
|
379
355
|
args: [{
|
|
380
356
|
selector: 'modus-wc-collapse',
|
|
@@ -385,23 +361,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
385
361
|
}]
|
|
386
362
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
387
363
|
let ModusWcDate = class ModusWcDate {
|
|
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
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus', 'calendarMonthChange', 'calendarYearChange']);
|
|
395
369
|
}
|
|
396
|
-
static
|
|
397
|
-
static
|
|
370
|
+
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 }); }
|
|
371
|
+
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", showWeekNumbers: "showWeekNumbers", size: "size", value: "value", weekStartDay: "weekStartDay" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
398
372
|
};
|
|
399
373
|
ModusWcDate = __decorate([
|
|
400
374
|
ProxyCmp({
|
|
401
375
|
inputs: ['bordered', 'customClass', 'disabled', 'feedback', 'format', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'readOnly', 'required', 'showWeekNumbers', 'size', 'value', 'weekStartDay']
|
|
402
376
|
})
|
|
403
377
|
], ModusWcDate);
|
|
404
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
378
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcDate, decorators: [{
|
|
405
379
|
type: Component,
|
|
406
380
|
args: [{
|
|
407
381
|
selector: 'modus-wc-date',
|
|
@@ -412,22 +386,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
412
386
|
}]
|
|
413
387
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
414
388
|
let ModusWcDivider = class ModusWcDivider {
|
|
415
|
-
z;
|
|
416
|
-
el;
|
|
417
389
|
constructor(c, r, z) {
|
|
418
390
|
this.z = z;
|
|
419
391
|
c.detach();
|
|
420
392
|
this.el = r.nativeElement;
|
|
421
393
|
}
|
|
422
|
-
static
|
|
423
|
-
static
|
|
394
|
+
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 }); }
|
|
395
|
+
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 }); }
|
|
424
396
|
};
|
|
425
397
|
ModusWcDivider = __decorate([
|
|
426
398
|
ProxyCmp({
|
|
427
399
|
inputs: ['color', 'content', 'customClass', 'orientation', 'position', 'responsive']
|
|
428
400
|
})
|
|
429
401
|
], ModusWcDivider);
|
|
430
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
402
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcDivider, decorators: [{
|
|
431
403
|
type: Component,
|
|
432
404
|
args: [{
|
|
433
405
|
selector: 'modus-wc-divider',
|
|
@@ -438,23 +410,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
438
410
|
}]
|
|
439
411
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
440
412
|
let ModusWcDropdownMenu = class ModusWcDropdownMenu {
|
|
441
|
-
z;
|
|
442
|
-
el;
|
|
443
413
|
constructor(c, r, z) {
|
|
444
414
|
this.z = z;
|
|
445
415
|
c.detach();
|
|
446
416
|
this.el = r.nativeElement;
|
|
447
417
|
proxyOutputs(this, this.el, ['menuVisibilityChange']);
|
|
448
418
|
}
|
|
449
|
-
static
|
|
450
|
-
static
|
|
419
|
+
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 }); }
|
|
420
|
+
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 }); }
|
|
451
421
|
};
|
|
452
422
|
ModusWcDropdownMenu = __decorate([
|
|
453
423
|
ProxyCmp({
|
|
454
424
|
inputs: ['buttonAriaLabel', 'buttonColor', 'buttonSize', 'buttonVariant', 'customClass', 'disabled', 'menuBordered', 'menuOffset', 'menuPlacement', 'menuSize', 'menuVisible']
|
|
455
425
|
})
|
|
456
426
|
], ModusWcDropdownMenu);
|
|
457
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
427
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcDropdownMenu, decorators: [{
|
|
458
428
|
type: Component,
|
|
459
429
|
args: [{
|
|
460
430
|
selector: 'modus-wc-dropdown-menu',
|
|
@@ -465,16 +435,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
465
435
|
}]
|
|
466
436
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
467
437
|
let ModusWcFileDropzone = class ModusWcFileDropzone {
|
|
468
|
-
z;
|
|
469
|
-
el;
|
|
470
438
|
constructor(c, r, z) {
|
|
471
439
|
this.z = z;
|
|
472
440
|
c.detach();
|
|
473
441
|
this.el = r.nativeElement;
|
|
474
442
|
proxyOutputs(this, this.el, ['fileSelect']);
|
|
475
443
|
}
|
|
476
|
-
static
|
|
477
|
-
static
|
|
444
|
+
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 }); }
|
|
445
|
+
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 }); }
|
|
478
446
|
};
|
|
479
447
|
ModusWcFileDropzone = __decorate([
|
|
480
448
|
ProxyCmp({
|
|
@@ -482,7 +450,7 @@ ModusWcFileDropzone = __decorate([
|
|
|
482
450
|
methods: ['reset']
|
|
483
451
|
})
|
|
484
452
|
], ModusWcFileDropzone);
|
|
485
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
453
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcFileDropzone, decorators: [{
|
|
486
454
|
type: Component,
|
|
487
455
|
args: [{
|
|
488
456
|
selector: 'modus-wc-file-dropzone',
|
|
@@ -492,23 +460,45 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
492
460
|
inputs: ['acceptFileTypes', 'customClass', 'disabled', 'fileDraggedOverInstructions', 'includeStateIcon', 'instructions', 'invalidFileTypeMessage', 'maxFileCount', 'maxFileNameLength', 'maxTotalFileSizeBytes', 'multiple', 'successMessage'],
|
|
493
461
|
}]
|
|
494
462
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
463
|
+
let ModusWcHandle = class ModusWcHandle {
|
|
464
|
+
constructor(c, r, z) {
|
|
465
|
+
this.z = z;
|
|
466
|
+
c.detach();
|
|
467
|
+
this.el = r.nativeElement;
|
|
468
|
+
}
|
|
469
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcHandle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
470
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcHandle, selector: "modus-wc-handle", inputs: { buttonColor: "buttonColor", buttonSize: "buttonSize", buttonVariant: "buttonVariant", customClass: "customClass", defaultSplit: "defaultSplit", density: "density", leftTarget: "leftTarget", orientation: "orientation", rightTarget: "rightTarget", size: "size", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
471
|
+
};
|
|
472
|
+
ModusWcHandle = __decorate([
|
|
473
|
+
ProxyCmp({
|
|
474
|
+
inputs: ['buttonColor', 'buttonSize', 'buttonVariant', 'customClass', 'defaultSplit', 'density', 'leftTarget', 'orientation', 'rightTarget', 'size', 'type']
|
|
475
|
+
})
|
|
476
|
+
], ModusWcHandle);
|
|
477
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcHandle, decorators: [{
|
|
478
|
+
type: Component,
|
|
479
|
+
args: [{
|
|
480
|
+
selector: 'modus-wc-handle',
|
|
481
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
482
|
+
template: '<ng-content></ng-content>',
|
|
483
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
484
|
+
inputs: ['buttonColor', 'buttonSize', 'buttonVariant', 'customClass', 'defaultSplit', 'density', 'leftTarget', 'orientation', 'rightTarget', 'size', 'type'],
|
|
485
|
+
}]
|
|
486
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
495
487
|
let ModusWcIcon = class ModusWcIcon {
|
|
496
|
-
z;
|
|
497
|
-
el;
|
|
498
488
|
constructor(c, r, z) {
|
|
499
489
|
this.z = z;
|
|
500
490
|
c.detach();
|
|
501
491
|
this.el = r.nativeElement;
|
|
502
492
|
}
|
|
503
|
-
static
|
|
504
|
-
static
|
|
493
|
+
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 }); }
|
|
494
|
+
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 }); }
|
|
505
495
|
};
|
|
506
496
|
ModusWcIcon = __decorate([
|
|
507
497
|
ProxyCmp({
|
|
508
498
|
inputs: ['customClass', 'decorative', 'name', 'size', 'variant']
|
|
509
499
|
})
|
|
510
500
|
], ModusWcIcon);
|
|
511
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
501
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcIcon, decorators: [{
|
|
512
502
|
type: Component,
|
|
513
503
|
args: [{
|
|
514
504
|
selector: 'modus-wc-icon',
|
|
@@ -519,22 +509,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
519
509
|
}]
|
|
520
510
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
521
511
|
let ModusWcInputFeedback = class ModusWcInputFeedback {
|
|
522
|
-
z;
|
|
523
|
-
el;
|
|
524
512
|
constructor(c, r, z) {
|
|
525
513
|
this.z = z;
|
|
526
514
|
c.detach();
|
|
527
515
|
this.el = r.nativeElement;
|
|
528
516
|
}
|
|
529
|
-
static
|
|
530
|
-
static
|
|
517
|
+
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 }); }
|
|
518
|
+
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 }); }
|
|
531
519
|
};
|
|
532
520
|
ModusWcInputFeedback = __decorate([
|
|
533
521
|
ProxyCmp({
|
|
534
522
|
inputs: ['customClass', 'icon', 'level', 'message', 'size']
|
|
535
523
|
})
|
|
536
524
|
], ModusWcInputFeedback);
|
|
537
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
525
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcInputFeedback, decorators: [{
|
|
538
526
|
type: Component,
|
|
539
527
|
args: [{
|
|
540
528
|
selector: 'modus-wc-input-feedback',
|
|
@@ -545,22 +533,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
545
533
|
}]
|
|
546
534
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
547
535
|
let ModusWcInputLabel = class ModusWcInputLabel {
|
|
548
|
-
z;
|
|
549
|
-
el;
|
|
550
536
|
constructor(c, r, z) {
|
|
551
537
|
this.z = z;
|
|
552
538
|
c.detach();
|
|
553
539
|
this.el = r.nativeElement;
|
|
554
540
|
}
|
|
555
|
-
static
|
|
556
|
-
static
|
|
541
|
+
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 }); }
|
|
542
|
+
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 }); }
|
|
557
543
|
};
|
|
558
544
|
ModusWcInputLabel = __decorate([
|
|
559
545
|
ProxyCmp({
|
|
560
546
|
inputs: ['customClass', 'forId', 'labelText', 'required', 'size', 'subLabelText']
|
|
561
547
|
})
|
|
562
548
|
], ModusWcInputLabel);
|
|
563
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
549
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcInputLabel, decorators: [{
|
|
564
550
|
type: Component,
|
|
565
551
|
args: [{
|
|
566
552
|
selector: 'modus-wc-input-label',
|
|
@@ -571,22 +557,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
571
557
|
}]
|
|
572
558
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
573
559
|
let ModusWcLoader = class ModusWcLoader {
|
|
574
|
-
z;
|
|
575
|
-
el;
|
|
576
560
|
constructor(c, r, z) {
|
|
577
561
|
this.z = z;
|
|
578
562
|
c.detach();
|
|
579
563
|
this.el = r.nativeElement;
|
|
580
564
|
}
|
|
581
|
-
static
|
|
582
|
-
static
|
|
565
|
+
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 }); }
|
|
566
|
+
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 }); }
|
|
583
567
|
};
|
|
584
568
|
ModusWcLoader = __decorate([
|
|
585
569
|
ProxyCmp({
|
|
586
570
|
inputs: ['color', 'customClass', 'size', 'variant']
|
|
587
571
|
})
|
|
588
572
|
], ModusWcLoader);
|
|
589
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
573
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcLoader, decorators: [{
|
|
590
574
|
type: Component,
|
|
591
575
|
args: [{
|
|
592
576
|
selector: 'modus-wc-loader',
|
|
@@ -597,22 +581,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
597
581
|
}]
|
|
598
582
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
599
583
|
let ModusWcLogo = class ModusWcLogo {
|
|
600
|
-
z;
|
|
601
|
-
el;
|
|
602
584
|
constructor(c, r, z) {
|
|
603
585
|
this.z = z;
|
|
604
586
|
c.detach();
|
|
605
587
|
this.el = r.nativeElement;
|
|
606
588
|
}
|
|
607
|
-
static
|
|
608
|
-
static
|
|
589
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcLogo, 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: ModusWcLogo, selector: "modus-wc-logo", inputs: { alt: "alt", customClass: "customClass", emblem: "emblem", name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
609
591
|
};
|
|
610
592
|
ModusWcLogo = __decorate([
|
|
611
593
|
ProxyCmp({
|
|
612
594
|
inputs: ['alt', 'customClass', 'emblem', 'name']
|
|
613
595
|
})
|
|
614
596
|
], ModusWcLogo);
|
|
615
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
597
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcLogo, decorators: [{
|
|
616
598
|
type: Component,
|
|
617
599
|
args: [{
|
|
618
600
|
selector: 'modus-wc-logo',
|
|
@@ -623,23 +605,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
623
605
|
}]
|
|
624
606
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
625
607
|
let ModusWcMenu = class ModusWcMenu {
|
|
626
|
-
z;
|
|
627
|
-
el;
|
|
628
608
|
constructor(c, r, z) {
|
|
629
609
|
this.z = z;
|
|
630
610
|
c.detach();
|
|
631
611
|
this.el = r.nativeElement;
|
|
632
612
|
proxyOutputs(this, this.el, ['menuFocusout']);
|
|
633
613
|
}
|
|
634
|
-
static
|
|
635
|
-
static
|
|
614
|
+
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 }); }
|
|
615
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcMenu, selector: "modus-wc-menu", inputs: { bordered: "bordered", customClass: "customClass", isSubMenu: "isSubMenu", orientation: "orientation", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
636
616
|
};
|
|
637
617
|
ModusWcMenu = __decorate([
|
|
638
618
|
ProxyCmp({
|
|
639
619
|
inputs: ['bordered', 'customClass', 'isSubMenu', 'orientation', 'size']
|
|
640
620
|
})
|
|
641
621
|
], ModusWcMenu);
|
|
642
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
622
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcMenu, decorators: [{
|
|
643
623
|
type: Component,
|
|
644
624
|
args: [{
|
|
645
625
|
selector: 'modus-wc-menu',
|
|
@@ -650,16 +630,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
650
630
|
}]
|
|
651
631
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
652
632
|
let ModusWcMenuItem = class ModusWcMenuItem {
|
|
653
|
-
z;
|
|
654
|
-
el;
|
|
655
633
|
constructor(c, r, z) {
|
|
656
634
|
this.z = z;
|
|
657
635
|
c.detach();
|
|
658
636
|
this.el = r.nativeElement;
|
|
659
637
|
proxyOutputs(this, this.el, ['itemSelect']);
|
|
660
638
|
}
|
|
661
|
-
static
|
|
662
|
-
static
|
|
639
|
+
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 }); }
|
|
640
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcMenuItem, selector: "modus-wc-menu-item", inputs: { bordered: "bordered", checkbox: "checkbox", customClass: "customClass", disabled: "disabled", focused: "focused", hasSubmenu: "hasSubmenu", label: "label", selected: "selected", size: "size", startIcon: "startIcon", subLabel: "subLabel", tooltipContent: "tooltipContent", tooltipPosition: "tooltipPosition", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
663
641
|
};
|
|
664
642
|
ModusWcMenuItem = __decorate([
|
|
665
643
|
ProxyCmp({
|
|
@@ -667,7 +645,7 @@ ModusWcMenuItem = __decorate([
|
|
|
667
645
|
methods: ['collapseSubmenu']
|
|
668
646
|
})
|
|
669
647
|
], ModusWcMenuItem);
|
|
670
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
648
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcMenuItem, decorators: [{
|
|
671
649
|
type: Component,
|
|
672
650
|
args: [{
|
|
673
651
|
selector: 'modus-wc-menu-item',
|
|
@@ -678,22 +656,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
678
656
|
}]
|
|
679
657
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
680
658
|
let ModusWcModal = class ModusWcModal {
|
|
681
|
-
z;
|
|
682
|
-
el;
|
|
683
659
|
constructor(c, r, z) {
|
|
684
660
|
this.z = z;
|
|
685
661
|
c.detach();
|
|
686
662
|
this.el = r.nativeElement;
|
|
687
663
|
}
|
|
688
|
-
static
|
|
689
|
-
static
|
|
664
|
+
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 }); }
|
|
665
|
+
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 }); }
|
|
690
666
|
};
|
|
691
667
|
ModusWcModal = __decorate([
|
|
692
668
|
ProxyCmp({
|
|
693
669
|
inputs: ['backdrop', 'customClass', 'fullscreen', 'modalId', 'position', 'showClose', 'showFullscreenToggle']
|
|
694
670
|
})
|
|
695
671
|
], ModusWcModal);
|
|
696
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
672
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcModal, decorators: [{
|
|
697
673
|
type: Component,
|
|
698
674
|
args: [{
|
|
699
675
|
selector: 'modus-wc-modal',
|
|
@@ -704,23 +680,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
704
680
|
}]
|
|
705
681
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
706
682
|
let ModusWcNavbar = class ModusWcNavbar {
|
|
707
|
-
z;
|
|
708
|
-
el;
|
|
709
683
|
constructor(c, r, z) {
|
|
710
684
|
this.z = z;
|
|
711
685
|
c.detach();
|
|
712
686
|
this.el = r.nativeElement;
|
|
713
687
|
proxyOutputs(this, this.el, ['aiClick', 'appsClick', 'appsMenuOpenChange', 'condensedMenuOpenChange', 'helpClick', 'mainMenuOpenChange', 'myTrimbleClick', 'notificationsClick', 'notificationsMenuOpenChange', 'searchChange', 'searchClick', 'searchInputOpenChange', 'signOutClick', 'trimbleLogoClick', 'userMenuOpenChange']);
|
|
714
688
|
}
|
|
715
|
-
static
|
|
716
|
-
static
|
|
689
|
+
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 }); }
|
|
690
|
+
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 }); }
|
|
717
691
|
};
|
|
718
692
|
ModusWcNavbar = __decorate([
|
|
719
693
|
ProxyCmp({
|
|
720
694
|
inputs: ['appsMenuOpen', 'condensed', 'condensedMenuOpen', 'customClass', 'mainMenuOpen', 'notificationsMenuOpen', 'searchDebounceMs', 'searchInputOpen', 'textOverrides', 'userCard', 'userMenuOpen', 'visibility']
|
|
721
695
|
})
|
|
722
696
|
], ModusWcNavbar);
|
|
723
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
697
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcNavbar, decorators: [{
|
|
724
698
|
type: Component,
|
|
725
699
|
args: [{
|
|
726
700
|
selector: 'modus-wc-navbar',
|
|
@@ -731,23 +705,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
731
705
|
}]
|
|
732
706
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
733
707
|
let ModusWcNumberInput = class ModusWcNumberInput {
|
|
734
|
-
z;
|
|
735
|
-
el;
|
|
736
708
|
constructor(c, r, z) {
|
|
737
709
|
this.z = z;
|
|
738
710
|
c.detach();
|
|
739
711
|
this.el = r.nativeElement;
|
|
740
712
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
741
713
|
}
|
|
742
|
-
static
|
|
743
|
-
static
|
|
714
|
+
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 }); }
|
|
715
|
+
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 }); }
|
|
744
716
|
};
|
|
745
717
|
ModusWcNumberInput = __decorate([
|
|
746
718
|
ProxyCmp({
|
|
747
719
|
inputs: ['autoComplete', 'bordered', 'currencySymbol', 'customClass', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'placeholder', 'readOnly', 'required', 'size', 'step', 'type', 'value']
|
|
748
720
|
})
|
|
749
721
|
], ModusWcNumberInput);
|
|
750
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
722
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcNumberInput, decorators: [{
|
|
751
723
|
type: Component,
|
|
752
724
|
args: [{
|
|
753
725
|
selector: 'modus-wc-number-input',
|
|
@@ -758,23 +730,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
758
730
|
}]
|
|
759
731
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
760
732
|
let ModusWcPagination = class ModusWcPagination {
|
|
761
|
-
z;
|
|
762
|
-
el;
|
|
763
733
|
constructor(c, r, z) {
|
|
764
734
|
this.z = z;
|
|
765
735
|
c.detach();
|
|
766
736
|
this.el = r.nativeElement;
|
|
767
737
|
proxyOutputs(this, this.el, ['pageChange']);
|
|
768
738
|
}
|
|
769
|
-
static
|
|
770
|
-
static
|
|
739
|
+
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 }); }
|
|
740
|
+
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 }); }
|
|
771
741
|
};
|
|
772
742
|
ModusWcPagination = __decorate([
|
|
773
743
|
ProxyCmp({
|
|
774
744
|
inputs: ['ariaLabelValues', 'count', 'customClass', 'nextButtonText', 'page', 'prevButtonText', 'size']
|
|
775
745
|
})
|
|
776
746
|
], ModusWcPagination);
|
|
777
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
747
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcPagination, decorators: [{
|
|
778
748
|
type: Component,
|
|
779
749
|
args: [{
|
|
780
750
|
selector: 'modus-wc-pagination',
|
|
@@ -785,22 +755,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
785
755
|
}]
|
|
786
756
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
787
757
|
let ModusWcPanel = class ModusWcPanel {
|
|
788
|
-
z;
|
|
789
|
-
el;
|
|
790
758
|
constructor(c, r, z) {
|
|
791
759
|
this.z = z;
|
|
792
760
|
c.detach();
|
|
793
761
|
this.el = r.nativeElement;
|
|
794
762
|
}
|
|
795
|
-
static
|
|
796
|
-
static
|
|
763
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcPanel, 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: ModusWcPanel, selector: "modus-wc-panel", inputs: { customClass: "customClass", floating: "floating", height: "height", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
797
765
|
};
|
|
798
766
|
ModusWcPanel = __decorate([
|
|
799
767
|
ProxyCmp({
|
|
800
768
|
inputs: ['customClass', 'floating', 'height', 'width']
|
|
801
769
|
})
|
|
802
770
|
], ModusWcPanel);
|
|
803
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
771
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcPanel, decorators: [{
|
|
804
772
|
type: Component,
|
|
805
773
|
args: [{
|
|
806
774
|
selector: 'modus-wc-panel',
|
|
@@ -811,22 +779,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
811
779
|
}]
|
|
812
780
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
813
781
|
let ModusWcProgress = class ModusWcProgress {
|
|
814
|
-
z;
|
|
815
|
-
el;
|
|
816
782
|
constructor(c, r, z) {
|
|
817
783
|
this.z = z;
|
|
818
784
|
c.detach();
|
|
819
785
|
this.el = r.nativeElement;
|
|
820
786
|
}
|
|
821
|
-
static
|
|
822
|
-
static
|
|
787
|
+
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 }); }
|
|
788
|
+
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 }); }
|
|
823
789
|
};
|
|
824
790
|
ModusWcProgress = __decorate([
|
|
825
791
|
ProxyCmp({
|
|
826
792
|
inputs: ['customClass', 'indeterminate', 'label', 'max', 'value', 'variant']
|
|
827
793
|
})
|
|
828
794
|
], ModusWcProgress);
|
|
829
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
795
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcProgress, decorators: [{
|
|
830
796
|
type: Component,
|
|
831
797
|
args: [{
|
|
832
798
|
selector: 'modus-wc-progress',
|
|
@@ -837,23 +803,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
837
803
|
}]
|
|
838
804
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
839
805
|
let ModusWcRadio = class ModusWcRadio {
|
|
840
|
-
z;
|
|
841
|
-
el;
|
|
842
806
|
constructor(c, r, z) {
|
|
843
807
|
this.z = z;
|
|
844
808
|
c.detach();
|
|
845
809
|
this.el = r.nativeElement;
|
|
846
810
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
847
811
|
}
|
|
848
|
-
static
|
|
849
|
-
static
|
|
812
|
+
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 }); }
|
|
813
|
+
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 }); }
|
|
850
814
|
};
|
|
851
815
|
ModusWcRadio = __decorate([
|
|
852
816
|
ProxyCmp({
|
|
853
817
|
inputs: ['customClass', 'disabled', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value']
|
|
854
818
|
})
|
|
855
819
|
], ModusWcRadio);
|
|
856
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
820
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcRadio, decorators: [{
|
|
857
821
|
type: Component,
|
|
858
822
|
args: [{
|
|
859
823
|
selector: 'modus-wc-radio',
|
|
@@ -864,23 +828,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
864
828
|
}]
|
|
865
829
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
866
830
|
let ModusWcRating = class ModusWcRating {
|
|
867
|
-
z;
|
|
868
|
-
el;
|
|
869
831
|
constructor(c, r, z) {
|
|
870
832
|
this.z = z;
|
|
871
833
|
c.detach();
|
|
872
834
|
this.el = r.nativeElement;
|
|
873
835
|
proxyOutputs(this, this.el, ['ratingChange']);
|
|
874
836
|
}
|
|
875
|
-
static
|
|
876
|
-
static
|
|
837
|
+
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 }); }
|
|
838
|
+
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 }); }
|
|
877
839
|
};
|
|
878
840
|
ModusWcRating = __decorate([
|
|
879
841
|
ProxyCmp({
|
|
880
842
|
inputs: ['allowHalf', 'count', 'customClass', 'disabled', 'getAriaLabelText', 'size', 'value', 'variant']
|
|
881
843
|
})
|
|
882
844
|
], ModusWcRating);
|
|
883
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
845
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcRating, decorators: [{
|
|
884
846
|
type: Component,
|
|
885
847
|
args: [{
|
|
886
848
|
selector: 'modus-wc-rating',
|
|
@@ -891,23 +853,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
891
853
|
}]
|
|
892
854
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
893
855
|
let ModusWcSelect = class ModusWcSelect {
|
|
894
|
-
z;
|
|
895
|
-
el;
|
|
896
856
|
constructor(c, r, z) {
|
|
897
857
|
this.z = z;
|
|
898
858
|
c.detach();
|
|
899
859
|
this.el = r.nativeElement;
|
|
900
860
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
901
861
|
}
|
|
902
|
-
static
|
|
903
|
-
static
|
|
862
|
+
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 }); }
|
|
863
|
+
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 }); }
|
|
904
864
|
};
|
|
905
865
|
ModusWcSelect = __decorate([
|
|
906
866
|
ProxyCmp({
|
|
907
867
|
inputs: ['bordered', 'customClass', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'name', 'options', 'required', 'size', 'value']
|
|
908
868
|
})
|
|
909
869
|
], ModusWcSelect);
|
|
910
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
870
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSelect, decorators: [{
|
|
911
871
|
type: Component,
|
|
912
872
|
args: [{
|
|
913
873
|
selector: 'modus-wc-select',
|
|
@@ -918,23 +878,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
918
878
|
}]
|
|
919
879
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
920
880
|
let ModusWcSideNavigation = class ModusWcSideNavigation {
|
|
921
|
-
z;
|
|
922
|
-
el;
|
|
923
881
|
constructor(c, r, z) {
|
|
924
882
|
this.z = z;
|
|
925
883
|
c.detach();
|
|
926
884
|
this.el = r.nativeElement;
|
|
927
885
|
proxyOutputs(this, this.el, ['expandedChange']);
|
|
928
886
|
}
|
|
929
|
-
static
|
|
930
|
-
static
|
|
887
|
+
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 }); }
|
|
888
|
+
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 }); }
|
|
931
889
|
};
|
|
932
890
|
ModusWcSideNavigation = __decorate([
|
|
933
891
|
ProxyCmp({
|
|
934
892
|
inputs: ['collapseOnClickOutside', 'customClass', 'expanded', 'maxWidth', 'mode', 'targetContent']
|
|
935
893
|
})
|
|
936
894
|
], ModusWcSideNavigation);
|
|
937
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
895
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSideNavigation, decorators: [{
|
|
938
896
|
type: Component,
|
|
939
897
|
args: [{
|
|
940
898
|
selector: 'modus-wc-side-navigation',
|
|
@@ -945,22 +903,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
945
903
|
}]
|
|
946
904
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
947
905
|
let ModusWcSkeleton = class ModusWcSkeleton {
|
|
948
|
-
z;
|
|
949
|
-
el;
|
|
950
906
|
constructor(c, r, z) {
|
|
951
907
|
this.z = z;
|
|
952
908
|
c.detach();
|
|
953
909
|
this.el = r.nativeElement;
|
|
954
910
|
}
|
|
955
|
-
static
|
|
956
|
-
static
|
|
911
|
+
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 }); }
|
|
912
|
+
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 }); }
|
|
957
913
|
};
|
|
958
914
|
ModusWcSkeleton = __decorate([
|
|
959
915
|
ProxyCmp({
|
|
960
916
|
inputs: ['customClass', 'height', 'shape', 'width']
|
|
961
917
|
})
|
|
962
918
|
], ModusWcSkeleton);
|
|
963
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
919
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSkeleton, decorators: [{
|
|
964
920
|
type: Component,
|
|
965
921
|
args: [{
|
|
966
922
|
selector: 'modus-wc-skeleton',
|
|
@@ -971,23 +927,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
971
927
|
}]
|
|
972
928
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
973
929
|
let ModusWcSlider = class ModusWcSlider {
|
|
974
|
-
z;
|
|
975
|
-
el;
|
|
976
930
|
constructor(c, r, z) {
|
|
977
931
|
this.z = z;
|
|
978
932
|
c.detach();
|
|
979
933
|
this.el = r.nativeElement;
|
|
980
934
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
981
935
|
}
|
|
982
|
-
static
|
|
983
|
-
static
|
|
936
|
+
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 }); }
|
|
937
|
+
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 }); }
|
|
984
938
|
};
|
|
985
939
|
ModusWcSlider = __decorate([
|
|
986
940
|
ProxyCmp({
|
|
987
941
|
inputs: ['customClass', 'disabled', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'required', 'size', 'step', 'value']
|
|
988
942
|
})
|
|
989
943
|
], ModusWcSlider);
|
|
990
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
944
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSlider, decorators: [{
|
|
991
945
|
type: Component,
|
|
992
946
|
args: [{
|
|
993
947
|
selector: 'modus-wc-slider',
|
|
@@ -998,22 +952,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
998
952
|
}]
|
|
999
953
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1000
954
|
let ModusWcStepper = class ModusWcStepper {
|
|
1001
|
-
z;
|
|
1002
|
-
el;
|
|
1003
955
|
constructor(c, r, z) {
|
|
1004
956
|
this.z = z;
|
|
1005
957
|
c.detach();
|
|
1006
958
|
this.el = r.nativeElement;
|
|
1007
959
|
}
|
|
1008
|
-
static
|
|
1009
|
-
static
|
|
960
|
+
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 }); }
|
|
961
|
+
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 }); }
|
|
1010
962
|
};
|
|
1011
963
|
ModusWcStepper = __decorate([
|
|
1012
964
|
ProxyCmp({
|
|
1013
965
|
inputs: ['customClass', 'orientation', 'steps']
|
|
1014
966
|
})
|
|
1015
967
|
], ModusWcStepper);
|
|
1016
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
968
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcStepper, decorators: [{
|
|
1017
969
|
type: Component,
|
|
1018
970
|
args: [{
|
|
1019
971
|
selector: 'modus-wc-stepper',
|
|
@@ -1024,23 +976,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1024
976
|
}]
|
|
1025
977
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1026
978
|
let ModusWcSwitch = class ModusWcSwitch {
|
|
1027
|
-
z;
|
|
1028
|
-
el;
|
|
1029
979
|
constructor(c, r, z) {
|
|
1030
980
|
this.z = z;
|
|
1031
981
|
c.detach();
|
|
1032
982
|
this.el = r.nativeElement;
|
|
1033
983
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
1034
984
|
}
|
|
1035
|
-
static
|
|
1036
|
-
static
|
|
985
|
+
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 }); }
|
|
986
|
+
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 }); }
|
|
1037
987
|
};
|
|
1038
988
|
ModusWcSwitch = __decorate([
|
|
1039
989
|
ProxyCmp({
|
|
1040
990
|
inputs: ['customClass', 'disabled', 'indeterminate', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value']
|
|
1041
991
|
})
|
|
1042
992
|
], ModusWcSwitch);
|
|
1043
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
993
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSwitch, decorators: [{
|
|
1044
994
|
type: Component,
|
|
1045
995
|
args: [{
|
|
1046
996
|
selector: 'modus-wc-switch',
|
|
@@ -1051,23 +1001,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1051
1001
|
}]
|
|
1052
1002
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1053
1003
|
let ModusWcTable = class ModusWcTable {
|
|
1054
|
-
z;
|
|
1055
|
-
el;
|
|
1056
1004
|
constructor(c, r, z) {
|
|
1057
1005
|
this.z = z;
|
|
1058
1006
|
c.detach();
|
|
1059
1007
|
this.el = r.nativeElement;
|
|
1060
1008
|
proxyOutputs(this, this.el, ['cellEditStart', 'cellEditCommit', 'rowClick', 'sortChange', 'paginationChange', 'rowSelectionChange']);
|
|
1061
1009
|
}
|
|
1062
|
-
static
|
|
1063
|
-
static
|
|
1010
|
+
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 }); }
|
|
1011
|
+
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 }); }
|
|
1064
1012
|
};
|
|
1065
1013
|
ModusWcTable = __decorate([
|
|
1066
1014
|
ProxyCmp({
|
|
1067
1015
|
inputs: ['caption', 'columns', 'currentPage', 'customClass', 'data', 'density', 'editable', 'hover', 'pageSizeOptions', 'paginated', 'selectable', 'selectedRowIds', 'showPageSizeSelector', 'sortable', 'zebra']
|
|
1068
1016
|
})
|
|
1069
1017
|
], ModusWcTable);
|
|
1070
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1018
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTable, decorators: [{
|
|
1071
1019
|
type: Component,
|
|
1072
1020
|
args: [{
|
|
1073
1021
|
selector: 'modus-wc-table',
|
|
@@ -1078,23 +1026,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1078
1026
|
}]
|
|
1079
1027
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1080
1028
|
let ModusWcTabs = class ModusWcTabs {
|
|
1081
|
-
z;
|
|
1082
|
-
el;
|
|
1083
1029
|
constructor(c, r, z) {
|
|
1084
1030
|
this.z = z;
|
|
1085
1031
|
c.detach();
|
|
1086
1032
|
this.el = r.nativeElement;
|
|
1087
1033
|
proxyOutputs(this, this.el, ['tabChange']);
|
|
1088
1034
|
}
|
|
1089
|
-
static
|
|
1090
|
-
static
|
|
1035
|
+
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 }); }
|
|
1036
|
+
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 }); }
|
|
1091
1037
|
};
|
|
1092
1038
|
ModusWcTabs = __decorate([
|
|
1093
1039
|
ProxyCmp({
|
|
1094
1040
|
inputs: ['activeTabIndex', 'customClass', 'size', 'tabStyle', 'tabs']
|
|
1095
1041
|
})
|
|
1096
1042
|
], ModusWcTabs);
|
|
1097
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1043
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTabs, decorators: [{
|
|
1098
1044
|
type: Component,
|
|
1099
1045
|
args: [{
|
|
1100
1046
|
selector: 'modus-wc-tabs',
|
|
@@ -1105,23 +1051,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1105
1051
|
}]
|
|
1106
1052
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1107
1053
|
let ModusWcTextInput = class ModusWcTextInput {
|
|
1108
|
-
z;
|
|
1109
|
-
el;
|
|
1110
1054
|
constructor(c, r, z) {
|
|
1111
1055
|
this.z = z;
|
|
1112
1056
|
c.detach();
|
|
1113
1057
|
this.el = r.nativeElement;
|
|
1114
1058
|
proxyOutputs(this, this.el, ['clearClick', 'inputBlur', 'inputChange', 'inputFocus']);
|
|
1115
1059
|
}
|
|
1116
|
-
static
|
|
1117
|
-
static
|
|
1060
|
+
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 }); }
|
|
1061
|
+
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 }); }
|
|
1118
1062
|
};
|
|
1119
1063
|
ModusWcTextInput = __decorate([
|
|
1120
1064
|
ProxyCmp({
|
|
1121
1065
|
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']
|
|
1122
1066
|
})
|
|
1123
1067
|
], ModusWcTextInput);
|
|
1124
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1068
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTextInput, decorators: [{
|
|
1125
1069
|
type: Component,
|
|
1126
1070
|
args: [{
|
|
1127
1071
|
selector: 'modus-wc-text-input',
|
|
@@ -1132,23 +1076,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1132
1076
|
}]
|
|
1133
1077
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1134
1078
|
let ModusWcTextarea = class ModusWcTextarea {
|
|
1135
|
-
z;
|
|
1136
|
-
el;
|
|
1137
1079
|
constructor(c, r, z) {
|
|
1138
1080
|
this.z = z;
|
|
1139
1081
|
c.detach();
|
|
1140
1082
|
this.el = r.nativeElement;
|
|
1141
1083
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
1142
1084
|
}
|
|
1143
|
-
static
|
|
1144
|
-
static
|
|
1085
|
+
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 }); }
|
|
1086
|
+
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 }); }
|
|
1145
1087
|
};
|
|
1146
1088
|
ModusWcTextarea = __decorate([
|
|
1147
1089
|
ProxyCmp({
|
|
1148
1090
|
inputs: ['autoCorrect', 'bordered', 'customClass', 'disabled', 'enterkeyhint', 'feedback', 'inputId', 'inputTabIndex', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'readonly', 'required', 'rows', 'size', 'value']
|
|
1149
1091
|
})
|
|
1150
1092
|
], ModusWcTextarea);
|
|
1151
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1093
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTextarea, decorators: [{
|
|
1152
1094
|
type: Component,
|
|
1153
1095
|
args: [{
|
|
1154
1096
|
selector: 'modus-wc-textarea',
|
|
@@ -1159,22 +1101,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1159
1101
|
}]
|
|
1160
1102
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1161
1103
|
let ModusWcThemeProvider = class ModusWcThemeProvider {
|
|
1162
|
-
z;
|
|
1163
|
-
el;
|
|
1164
1104
|
constructor(c, r, z) {
|
|
1165
1105
|
this.z = z;
|
|
1166
1106
|
c.detach();
|
|
1167
1107
|
this.el = r.nativeElement;
|
|
1168
1108
|
}
|
|
1169
|
-
static
|
|
1170
|
-
static
|
|
1109
|
+
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 }); }
|
|
1110
|
+
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 }); }
|
|
1171
1111
|
};
|
|
1172
1112
|
ModusWcThemeProvider = __decorate([
|
|
1173
1113
|
ProxyCmp({
|
|
1174
1114
|
inputs: ['initialTheme']
|
|
1175
1115
|
})
|
|
1176
1116
|
], ModusWcThemeProvider);
|
|
1177
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1117
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcThemeProvider, decorators: [{
|
|
1178
1118
|
type: Component,
|
|
1179
1119
|
args: [{
|
|
1180
1120
|
selector: 'modus-wc-theme-provider',
|
|
@@ -1185,23 +1125,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1185
1125
|
}]
|
|
1186
1126
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1187
1127
|
let ModusWcThemeSwitcher = class ModusWcThemeSwitcher {
|
|
1188
|
-
z;
|
|
1189
|
-
el;
|
|
1190
1128
|
constructor(c, r, z) {
|
|
1191
1129
|
this.z = z;
|
|
1192
1130
|
c.detach();
|
|
1193
1131
|
this.el = r.nativeElement;
|
|
1194
1132
|
proxyOutputs(this, this.el, ['themeChange']);
|
|
1195
1133
|
}
|
|
1196
|
-
static
|
|
1197
|
-
static
|
|
1134
|
+
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 }); }
|
|
1135
|
+
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 }); }
|
|
1198
1136
|
};
|
|
1199
1137
|
ModusWcThemeSwitcher = __decorate([
|
|
1200
1138
|
ProxyCmp({
|
|
1201
1139
|
inputs: ['customClass']
|
|
1202
1140
|
})
|
|
1203
1141
|
], ModusWcThemeSwitcher);
|
|
1204
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1142
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcThemeSwitcher, decorators: [{
|
|
1205
1143
|
type: Component,
|
|
1206
1144
|
args: [{
|
|
1207
1145
|
selector: 'modus-wc-theme-switcher',
|
|
@@ -1212,23 +1150,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1212
1150
|
}]
|
|
1213
1151
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1214
1152
|
let ModusWcTimeInput = class ModusWcTimeInput {
|
|
1215
|
-
z;
|
|
1216
|
-
el;
|
|
1217
1153
|
constructor(c, r, z) {
|
|
1218
1154
|
this.z = z;
|
|
1219
1155
|
c.detach();
|
|
1220
1156
|
this.el = r.nativeElement;
|
|
1221
1157
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
1222
1158
|
}
|
|
1223
|
-
static
|
|
1224
|
-
static
|
|
1159
|
+
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 }); }
|
|
1160
|
+
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 }); }
|
|
1225
1161
|
};
|
|
1226
1162
|
ModusWcTimeInput = __decorate([
|
|
1227
1163
|
ProxyCmp({
|
|
1228
1164
|
inputs: ['autoComplete', 'bordered', 'customClass', 'datalistId', 'datalistOptions', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'readOnly', 'required', 'showSeconds', 'size', 'step', 'value']
|
|
1229
1165
|
})
|
|
1230
1166
|
], ModusWcTimeInput);
|
|
1231
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1167
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTimeInput, decorators: [{
|
|
1232
1168
|
type: Component,
|
|
1233
1169
|
args: [{
|
|
1234
1170
|
selector: 'modus-wc-time-input',
|
|
@@ -1239,22 +1175,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1239
1175
|
}]
|
|
1240
1176
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1241
1177
|
let ModusWcToast = class ModusWcToast {
|
|
1242
|
-
z;
|
|
1243
|
-
el;
|
|
1244
1178
|
constructor(c, r, z) {
|
|
1245
1179
|
this.z = z;
|
|
1246
1180
|
c.detach();
|
|
1247
1181
|
this.el = r.nativeElement;
|
|
1248
1182
|
}
|
|
1249
|
-
static
|
|
1250
|
-
static
|
|
1183
|
+
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 }); }
|
|
1184
|
+
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 }); }
|
|
1251
1185
|
};
|
|
1252
1186
|
ModusWcToast = __decorate([
|
|
1253
1187
|
ProxyCmp({
|
|
1254
1188
|
inputs: ['customClass', 'delay', 'position']
|
|
1255
1189
|
})
|
|
1256
1190
|
], ModusWcToast);
|
|
1257
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1191
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcToast, decorators: [{
|
|
1258
1192
|
type: Component,
|
|
1259
1193
|
args: [{
|
|
1260
1194
|
selector: 'modus-wc-toast',
|
|
@@ -1265,22 +1199,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1265
1199
|
}]
|
|
1266
1200
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1267
1201
|
let ModusWcToolbar = class ModusWcToolbar {
|
|
1268
|
-
z;
|
|
1269
|
-
el;
|
|
1270
1202
|
constructor(c, r, z) {
|
|
1271
1203
|
this.z = z;
|
|
1272
1204
|
c.detach();
|
|
1273
1205
|
this.el = r.nativeElement;
|
|
1274
1206
|
}
|
|
1275
|
-
static
|
|
1276
|
-
static
|
|
1207
|
+
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 }); }
|
|
1208
|
+
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 }); }
|
|
1277
1209
|
};
|
|
1278
1210
|
ModusWcToolbar = __decorate([
|
|
1279
1211
|
ProxyCmp({
|
|
1280
1212
|
inputs: ['customClass']
|
|
1281
1213
|
})
|
|
1282
1214
|
], ModusWcToolbar);
|
|
1283
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1215
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcToolbar, decorators: [{
|
|
1284
1216
|
type: Component,
|
|
1285
1217
|
args: [{
|
|
1286
1218
|
selector: 'modus-wc-toolbar',
|
|
@@ -1291,23 +1223,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1291
1223
|
}]
|
|
1292
1224
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1293
1225
|
let ModusWcTooltip = class ModusWcTooltip {
|
|
1294
|
-
z;
|
|
1295
|
-
el;
|
|
1296
1226
|
constructor(c, r, z) {
|
|
1297
1227
|
this.z = z;
|
|
1298
1228
|
c.detach();
|
|
1299
1229
|
this.el = r.nativeElement;
|
|
1300
1230
|
proxyOutputs(this, this.el, ['dismissEscape']);
|
|
1301
1231
|
}
|
|
1302
|
-
static
|
|
1303
|
-
static
|
|
1232
|
+
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 }); }
|
|
1233
|
+
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 }); }
|
|
1304
1234
|
};
|
|
1305
1235
|
ModusWcTooltip = __decorate([
|
|
1306
1236
|
ProxyCmp({
|
|
1307
1237
|
inputs: ['content', 'customClass', 'disabled', 'forceOpen', 'position', 'tooltipId']
|
|
1308
1238
|
})
|
|
1309
1239
|
], ModusWcTooltip);
|
|
1310
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1240
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTooltip, decorators: [{
|
|
1311
1241
|
type: Component,
|
|
1312
1242
|
args: [{
|
|
1313
1243
|
selector: 'modus-wc-tooltip',
|
|
@@ -1318,22 +1248,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1318
1248
|
}]
|
|
1319
1249
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1320
1250
|
let ModusWcTypography = class ModusWcTypography {
|
|
1321
|
-
z;
|
|
1322
|
-
el;
|
|
1323
1251
|
constructor(c, r, z) {
|
|
1324
1252
|
this.z = z;
|
|
1325
1253
|
c.detach();
|
|
1326
1254
|
this.el = r.nativeElement;
|
|
1327
1255
|
}
|
|
1328
|
-
static
|
|
1329
|
-
static
|
|
1256
|
+
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 }); }
|
|
1257
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTypography, selector: "modus-wc-typography", inputs: { customClass: "customClass", hierarchy: "hierarchy", label: "label", size: "size", weight: "weight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1330
1258
|
};
|
|
1331
1259
|
ModusWcTypography = __decorate([
|
|
1332
1260
|
ProxyCmp({
|
|
1333
1261
|
inputs: ['customClass', 'hierarchy', 'label', 'size', 'weight']
|
|
1334
1262
|
})
|
|
1335
1263
|
], ModusWcTypography);
|
|
1336
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1264
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTypography, decorators: [{
|
|
1337
1265
|
type: Component,
|
|
1338
1266
|
args: [{
|
|
1339
1267
|
selector: 'modus-wc-typography',
|
|
@@ -1344,23 +1272,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1344
1272
|
}]
|
|
1345
1273
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1346
1274
|
let ModusWcUtilityPanel = class ModusWcUtilityPanel {
|
|
1347
|
-
z;
|
|
1348
|
-
el;
|
|
1349
1275
|
constructor(c, r, z) {
|
|
1350
1276
|
this.z = z;
|
|
1351
1277
|
c.detach();
|
|
1352
1278
|
this.el = r.nativeElement;
|
|
1353
1279
|
proxyOutputs(this, this.el, ['panelOpened', 'panelClosed']);
|
|
1354
1280
|
}
|
|
1355
|
-
static
|
|
1356
|
-
static
|
|
1281
|
+
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 }); }
|
|
1282
|
+
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 }); }
|
|
1357
1283
|
};
|
|
1358
1284
|
ModusWcUtilityPanel = __decorate([
|
|
1359
1285
|
ProxyCmp({
|
|
1360
1286
|
inputs: ['expanded', 'pushContent', 'targetElement']
|
|
1361
1287
|
})
|
|
1362
1288
|
], ModusWcUtilityPanel);
|
|
1363
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1289
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcUtilityPanel, decorators: [{
|
|
1364
1290
|
type: Component,
|
|
1365
1291
|
args: [{
|
|
1366
1292
|
selector: 'modus-wc-utility-panel',
|
|
@@ -1388,6 +1314,7 @@ const DIRECTIVES = [
|
|
|
1388
1314
|
ModusWcDivider,
|
|
1389
1315
|
ModusWcDropdownMenu,
|
|
1390
1316
|
ModusWcFileDropzone,
|
|
1317
|
+
ModusWcHandle,
|
|
1391
1318
|
ModusWcIcon,
|
|
1392
1319
|
ModusWcInputFeedback,
|
|
1393
1320
|
ModusWcInputLabel,
|
|
@@ -1424,28 +1351,29 @@ const DIRECTIVES = [
|
|
|
1424
1351
|
];
|
|
1425
1352
|
|
|
1426
1353
|
class ModusAngularComponentsModule {
|
|
1427
|
-
static
|
|
1428
|
-
static
|
|
1429
|
-
static
|
|
1354
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusAngularComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1355
|
+
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, ModusWcButtonGroup, ModusWcCard, ModusWcCheckbox, ModusWcChip, ModusWcCollapse, ModusWcDate, ModusWcDivider, ModusWcDropdownMenu, ModusWcFileDropzone, ModusWcHandle, ModusWcIcon, ModusWcInputFeedback, ModusWcInputLabel, ModusWcLoader, ModusWcLogo, ModusWcMenu, ModusWcMenuItem, ModusWcModal, ModusWcNavbar, ModusWcNumberInput, ModusWcPagination, ModusWcPanel, 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, ModusWcButtonGroup, ModusWcCard, ModusWcCheckbox, ModusWcChip, ModusWcCollapse, ModusWcDate, ModusWcDivider, ModusWcDropdownMenu, ModusWcFileDropzone, ModusWcHandle, ModusWcIcon, ModusWcInputFeedback, ModusWcInputLabel, ModusWcLoader, ModusWcLogo, ModusWcMenu, ModusWcMenuItem, ModusWcModal, ModusWcNavbar, ModusWcNumberInput, ModusWcPagination, ModusWcPanel, ModusWcProgress, ModusWcRadio, ModusWcRating, ModusWcSelect, ModusWcSideNavigation, ModusWcSkeleton, ModusWcSlider, ModusWcStepper, ModusWcSwitch, ModusWcTable, ModusWcTabs, ModusWcTextInput, ModusWcTextarea, ModusWcThemeProvider, ModusWcThemeSwitcher, ModusWcTimeInput, ModusWcToast, ModusWcToolbar, ModusWcTooltip, ModusWcTypography, ModusWcUtilityPanel] }); }
|
|
1356
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusAngularComponentsModule, providers: [
|
|
1430
1357
|
{
|
|
1431
1358
|
provide: APP_INITIALIZER,
|
|
1432
1359
|
useFactory: () => defineCustomElements,
|
|
1433
1360
|
multi: true,
|
|
1434
|
-
}
|
|
1435
|
-
] });
|
|
1361
|
+
},
|
|
1362
|
+
] }); }
|
|
1436
1363
|
}
|
|
1437
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1364
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusAngularComponentsModule, decorators: [{
|
|
1438
1365
|
type: NgModule,
|
|
1439
1366
|
args: [{
|
|
1440
|
-
|
|
1367
|
+
declarations: [...DIRECTIVES],
|
|
1368
|
+
imports: [],
|
|
1441
1369
|
exports: [...DIRECTIVES],
|
|
1442
1370
|
providers: [
|
|
1443
1371
|
{
|
|
1444
1372
|
provide: APP_INITIALIZER,
|
|
1445
1373
|
useFactory: () => defineCustomElements,
|
|
1446
1374
|
multi: true,
|
|
1447
|
-
}
|
|
1448
|
-
]
|
|
1375
|
+
},
|
|
1376
|
+
],
|
|
1449
1377
|
}]
|
|
1450
1378
|
}] });
|
|
1451
1379
|
|
|
@@ -1457,5 +1385,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1457
1385
|
* Generated bundle index. Do not edit.
|
|
1458
1386
|
*/
|
|
1459
1387
|
|
|
1460
|
-
export { DIRECTIVES, ModusAngularComponentsModule, ModusWcAccordion, ModusWcAlert, ModusWcAutocomplete, ModusWcAvatar, ModusWcBadge, ModusWcBreadcrumbs, ModusWcButton, ModusWcButtonGroup, ModusWcCard, ModusWcCheckbox, ModusWcChip, ModusWcCollapse, ModusWcDate, ModusWcDivider, ModusWcDropdownMenu, ModusWcFileDropzone, ModusWcIcon, ModusWcInputFeedback, ModusWcInputLabel, ModusWcLoader, ModusWcLogo, ModusWcMenu, ModusWcMenuItem, ModusWcModal, ModusWcNavbar, ModusWcNumberInput, ModusWcPagination, ModusWcPanel, ModusWcProgress, ModusWcRadio, ModusWcRating, ModusWcSelect, ModusWcSideNavigation, ModusWcSkeleton, ModusWcSlider, ModusWcStepper, ModusWcSwitch, ModusWcTable, ModusWcTabs, ModusWcTextInput, ModusWcTextarea, ModusWcThemeProvider, ModusWcThemeSwitcher, ModusWcTimeInput, ModusWcToast, ModusWcToolbar, ModusWcTooltip, ModusWcTypography, ModusWcUtilityPanel };
|
|
1388
|
+
export { DIRECTIVES, ModusAngularComponentsModule, ModusWcAccordion, ModusWcAlert, ModusWcAutocomplete, ModusWcAvatar, ModusWcBadge, ModusWcBreadcrumbs, ModusWcButton, ModusWcButtonGroup, ModusWcCard, ModusWcCheckbox, ModusWcChip, ModusWcCollapse, ModusWcDate, ModusWcDivider, ModusWcDropdownMenu, ModusWcFileDropzone, ModusWcHandle, ModusWcIcon, ModusWcInputFeedback, ModusWcInputLabel, ModusWcLoader, ModusWcLogo, ModusWcMenu, ModusWcMenuItem, ModusWcModal, ModusWcNavbar, ModusWcNumberInput, ModusWcPagination, ModusWcPanel, ModusWcProgress, ModusWcRadio, ModusWcRating, ModusWcSelect, ModusWcSideNavigation, ModusWcSkeleton, ModusWcSlider, ModusWcStepper, ModusWcSwitch, ModusWcTable, ModusWcTabs, ModusWcTextInput, ModusWcTextarea, ModusWcThemeProvider, ModusWcThemeSwitcher, ModusWcTimeInput, ModusWcToast, ModusWcToolbar, ModusWcTooltip, ModusWcTypography, ModusWcUtilityPanel };
|
|
1461
1389
|
//# sourceMappingURL=trimble-oss-moduswebcomponents-angular.mjs.map
|