@trimble-oss/moduswebcomponents-angular 1.7.0-ng19 → 1.8.0-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 +42 -0
- package/esm2022/lib/stencil-generated/angular-component-lib/utils.mjs +59 -0
- package/esm2022/lib/stencil-generated/components.mjs +1753 -0
- package/esm2022/lib/stencil-generated/index.mjs +59 -0
- package/esm2022/public-api.mjs +7 -0
- package/esm2022/trimble-oss-moduswebcomponents-angular.mjs +5 -0
- package/fesm2022/trimble-oss-moduswebcomponents-angular.mjs +286 -384
- package/fesm2022/trimble-oss-moduswebcomponents-angular.mjs.map +1 -1
- package/lib/stencil-generated/components.d.ts +4 -4
- package/package.json +6 -7
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { EventEmitter, Output, ChangeDetectionStrategy, Component,
|
|
2
|
+
import { EventEmitter, Output, ChangeDetectionStrategy, Component, APP_INITIALIZER, NgModule } from '@angular/core';
|
|
3
3
|
import { defineCustomElements } from '@trimble-oss/moduswebcomponents/loader';
|
|
4
4
|
import { setAssetPath } from '@trimble-oss/moduswebcomponents/components';
|
|
5
5
|
import { __decorate } from 'tslib';
|
|
@@ -64,23 +64,21 @@ function ProxyCmp(opts) {
|
|
|
64
64
|
}
|
|
65
65
|
|
|
66
66
|
let ModusWcAccordion = class ModusWcAccordion {
|
|
67
|
-
z;
|
|
68
|
-
el;
|
|
69
|
-
expandedChange = new EventEmitter();
|
|
70
67
|
constructor(c, r, z) {
|
|
71
68
|
this.z = z;
|
|
69
|
+
this.expandedChange = new EventEmitter();
|
|
72
70
|
c.detach();
|
|
73
71
|
this.el = r.nativeElement;
|
|
74
72
|
}
|
|
75
|
-
static
|
|
76
|
-
static
|
|
73
|
+
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 }); }
|
|
74
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcAccordion, selector: "modus-wc-accordion", inputs: { customClass: "customClass" }, outputs: { expandedChange: "expandedChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
77
75
|
};
|
|
78
76
|
ModusWcAccordion = __decorate([
|
|
79
77
|
ProxyCmp({
|
|
80
78
|
inputs: ['customClass']
|
|
81
79
|
})
|
|
82
80
|
], ModusWcAccordion);
|
|
83
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
81
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAccordion, decorators: [{
|
|
84
82
|
type: Component,
|
|
85
83
|
args: [{
|
|
86
84
|
selector: 'modus-wc-accordion',
|
|
@@ -95,23 +93,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
95
93
|
type: Output
|
|
96
94
|
}] } });
|
|
97
95
|
let ModusWcAlert = class ModusWcAlert {
|
|
98
|
-
z;
|
|
99
|
-
el;
|
|
100
|
-
dismissClick = new EventEmitter();
|
|
101
96
|
constructor(c, r, z) {
|
|
102
97
|
this.z = z;
|
|
98
|
+
this.dismissClick = new EventEmitter();
|
|
103
99
|
c.detach();
|
|
104
100
|
this.el = r.nativeElement;
|
|
105
101
|
}
|
|
106
|
-
static
|
|
107
|
-
static
|
|
102
|
+
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 }); }
|
|
103
|
+
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", disableIcon: "disableIcon", dismissible: "dismissible", icon: "icon", variant: "variant" }, outputs: { dismissClick: "dismissClick" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
108
104
|
};
|
|
109
105
|
ModusWcAlert = __decorate([
|
|
110
106
|
ProxyCmp({
|
|
111
107
|
inputs: ['alertDescription', 'alertTitle', 'customClass', 'delay', 'disableIcon', 'dismissible', 'icon', 'variant']
|
|
112
108
|
})
|
|
113
109
|
], ModusWcAlert);
|
|
114
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
110
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAlert, decorators: [{
|
|
115
111
|
type: Component,
|
|
116
112
|
args: [{
|
|
117
113
|
selector: 'modus-wc-alert',
|
|
@@ -126,25 +122,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
126
122
|
type: Output
|
|
127
123
|
}] } });
|
|
128
124
|
let ModusWcAppMenu = class ModusWcAppMenu {
|
|
129
|
-
z;
|
|
130
|
-
el;
|
|
131
|
-
layoutChange = new EventEmitter();
|
|
132
|
-
itemsOrderChange = new EventEmitter();
|
|
133
|
-
itemClick = new EventEmitter();
|
|
134
125
|
constructor(c, r, z) {
|
|
135
126
|
this.z = z;
|
|
127
|
+
this.layoutChange = new EventEmitter();
|
|
128
|
+
this.itemsOrderChange = new EventEmitter();
|
|
129
|
+
this.itemClick = new EventEmitter();
|
|
136
130
|
c.detach();
|
|
137
131
|
this.el = r.nativeElement;
|
|
138
132
|
}
|
|
139
|
-
static
|
|
140
|
-
static
|
|
133
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAppMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
134
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcAppMenu, selector: "modus-wc-app-menu", inputs: { apps: "apps", customClass: "customClass", layout: "layout" }, outputs: { layoutChange: "layoutChange", itemsOrderChange: "itemsOrderChange", itemClick: "itemClick" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
141
135
|
};
|
|
142
136
|
ModusWcAppMenu = __decorate([
|
|
143
137
|
ProxyCmp({
|
|
144
138
|
inputs: ['apps', 'customClass', 'layout']
|
|
145
139
|
})
|
|
146
140
|
], ModusWcAppMenu);
|
|
147
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
141
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAppMenu, decorators: [{
|
|
148
142
|
type: Component,
|
|
149
143
|
args: [{
|
|
150
144
|
selector: 'modus-wc-app-menu',
|
|
@@ -163,22 +157,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
163
157
|
type: Output
|
|
164
158
|
}] } });
|
|
165
159
|
let ModusWcAutocomplete = class ModusWcAutocomplete {
|
|
166
|
-
z;
|
|
167
|
-
el;
|
|
168
|
-
chipRemove = new EventEmitter();
|
|
169
|
-
chipsExpansionChange = new EventEmitter();
|
|
170
|
-
clearClick = new EventEmitter();
|
|
171
|
-
inputBlur = new EventEmitter();
|
|
172
|
-
inputChange = new EventEmitter();
|
|
173
|
-
inputFocus = new EventEmitter();
|
|
174
|
-
itemSelect = new EventEmitter();
|
|
175
160
|
constructor(c, r, z) {
|
|
176
161
|
this.z = z;
|
|
162
|
+
this.chipRemove = new EventEmitter();
|
|
163
|
+
this.chipsExpansionChange = new EventEmitter();
|
|
164
|
+
this.clearClick = new EventEmitter();
|
|
165
|
+
this.inputBlur = new EventEmitter();
|
|
166
|
+
this.inputChange = new EventEmitter();
|
|
167
|
+
this.inputFocus = new EventEmitter();
|
|
168
|
+
this.itemSelect = new EventEmitter();
|
|
177
169
|
c.detach();
|
|
178
170
|
this.el = r.nativeElement;
|
|
179
171
|
}
|
|
180
|
-
static
|
|
181
|
-
static
|
|
172
|
+
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 }); }
|
|
173
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcAutocomplete, selector: "modus-wc-autocomplete", inputs: { autoComplete: "autoComplete", bordered: "bordered", customBlur: "customBlur", customClass: "customClass", customInputChange: "customInputChange", customItemSelect: "customItemSelect", customKeyDown: "customKeyDown", debounceMs: "debounceMs", disabled: "disabled", feedback: "feedback", 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" }, outputs: { chipRemove: "chipRemove", chipsExpansionChange: "chipsExpansionChange", clearClick: "clearClick", inputBlur: "inputBlur", inputChange: "inputChange", inputFocus: "inputFocus", itemSelect: "itemSelect" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
182
174
|
};
|
|
183
175
|
ModusWcAutocomplete = __decorate([
|
|
184
176
|
ProxyCmp({
|
|
@@ -186,7 +178,7 @@ ModusWcAutocomplete = __decorate([
|
|
|
186
178
|
methods: ['selectItem', 'openMenu', 'closeMenu', 'toggleMenu', 'focusInput', 'clearInput']
|
|
187
179
|
})
|
|
188
180
|
], ModusWcAutocomplete);
|
|
189
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
181
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAutocomplete, decorators: [{
|
|
190
182
|
type: Component,
|
|
191
183
|
args: [{
|
|
192
184
|
selector: 'modus-wc-autocomplete',
|
|
@@ -213,22 +205,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
213
205
|
type: Output
|
|
214
206
|
}] } });
|
|
215
207
|
let ModusWcAvatar = class ModusWcAvatar {
|
|
216
|
-
z;
|
|
217
|
-
el;
|
|
218
208
|
constructor(c, r, z) {
|
|
219
209
|
this.z = z;
|
|
220
210
|
c.detach();
|
|
221
211
|
this.el = r.nativeElement;
|
|
222
212
|
}
|
|
223
|
-
static
|
|
224
|
-
static
|
|
213
|
+
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 }); }
|
|
214
|
+
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 }); }
|
|
225
215
|
};
|
|
226
216
|
ModusWcAvatar = __decorate([
|
|
227
217
|
ProxyCmp({
|
|
228
218
|
inputs: ['alt', 'customClass', 'imgSrc', 'initials', 'shape', 'size']
|
|
229
219
|
})
|
|
230
220
|
], ModusWcAvatar);
|
|
231
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
221
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAvatar, decorators: [{
|
|
232
222
|
type: Component,
|
|
233
223
|
args: [{
|
|
234
224
|
selector: 'modus-wc-avatar',
|
|
@@ -240,22 +230,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
240
230
|
}]
|
|
241
231
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
242
232
|
let ModusWcBadge = class ModusWcBadge {
|
|
243
|
-
z;
|
|
244
|
-
el;
|
|
245
233
|
constructor(c, r, z) {
|
|
246
234
|
this.z = z;
|
|
247
235
|
c.detach();
|
|
248
236
|
this.el = r.nativeElement;
|
|
249
237
|
}
|
|
250
|
-
static
|
|
251
|
-
static
|
|
238
|
+
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 }); }
|
|
239
|
+
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 }); }
|
|
252
240
|
};
|
|
253
241
|
ModusWcBadge = __decorate([
|
|
254
242
|
ProxyCmp({
|
|
255
243
|
inputs: ['color', 'customClass', 'size', 'variant']
|
|
256
244
|
})
|
|
257
245
|
], ModusWcBadge);
|
|
258
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
246
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcBadge, decorators: [{
|
|
259
247
|
type: Component,
|
|
260
248
|
args: [{
|
|
261
249
|
selector: 'modus-wc-badge',
|
|
@@ -267,23 +255,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
267
255
|
}]
|
|
268
256
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
269
257
|
let ModusWcBreadcrumbs = class ModusWcBreadcrumbs {
|
|
270
|
-
z;
|
|
271
|
-
el;
|
|
272
|
-
breadcrumbClick = new EventEmitter();
|
|
273
258
|
constructor(c, r, z) {
|
|
274
259
|
this.z = z;
|
|
260
|
+
this.breadcrumbClick = new EventEmitter();
|
|
275
261
|
c.detach();
|
|
276
262
|
this.el = r.nativeElement;
|
|
277
263
|
}
|
|
278
|
-
static
|
|
279
|
-
static
|
|
264
|
+
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 }); }
|
|
265
|
+
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" }, outputs: { breadcrumbClick: "breadcrumbClick" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
280
266
|
};
|
|
281
267
|
ModusWcBreadcrumbs = __decorate([
|
|
282
268
|
ProxyCmp({
|
|
283
269
|
inputs: ['customClass', 'items', 'size']
|
|
284
270
|
})
|
|
285
271
|
], ModusWcBreadcrumbs);
|
|
286
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
272
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcBreadcrumbs, decorators: [{
|
|
287
273
|
type: Component,
|
|
288
274
|
args: [{
|
|
289
275
|
selector: 'modus-wc-breadcrumbs',
|
|
@@ -298,23 +284,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
298
284
|
type: Output
|
|
299
285
|
}] } });
|
|
300
286
|
let ModusWcButton = class ModusWcButton {
|
|
301
|
-
z;
|
|
302
|
-
el;
|
|
303
|
-
buttonClick = new EventEmitter();
|
|
304
287
|
constructor(c, r, z) {
|
|
305
288
|
this.z = z;
|
|
289
|
+
this.buttonClick = new EventEmitter();
|
|
306
290
|
c.detach();
|
|
307
291
|
this.el = r.nativeElement;
|
|
308
292
|
}
|
|
309
|
-
static
|
|
310
|
-
static
|
|
293
|
+
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 }); }
|
|
294
|
+
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" }, outputs: { buttonClick: "buttonClick" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
311
295
|
};
|
|
312
296
|
ModusWcButton = __decorate([
|
|
313
297
|
ProxyCmp({
|
|
314
298
|
inputs: ['color', 'customClass', 'disabled', 'fullWidth', 'pressed', 'shape', 'size', 'type', 'variant']
|
|
315
299
|
})
|
|
316
300
|
], ModusWcButton);
|
|
317
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
301
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcButton, decorators: [{
|
|
318
302
|
type: Component,
|
|
319
303
|
args: [{
|
|
320
304
|
selector: 'modus-wc-button',
|
|
@@ -329,24 +313,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
329
313
|
type: Output
|
|
330
314
|
}] } });
|
|
331
315
|
let ModusWcButtonGroup = class ModusWcButtonGroup {
|
|
332
|
-
z;
|
|
333
|
-
el;
|
|
334
|
-
buttonGroupClick = new EventEmitter();
|
|
335
|
-
buttonSelectionChange = new EventEmitter();
|
|
336
316
|
constructor(c, r, z) {
|
|
337
317
|
this.z = z;
|
|
318
|
+
this.buttonGroupClick = new EventEmitter();
|
|
319
|
+
this.buttonSelectionChange = new EventEmitter();
|
|
338
320
|
c.detach();
|
|
339
321
|
this.el = r.nativeElement;
|
|
340
322
|
}
|
|
341
|
-
static
|
|
342
|
-
static
|
|
323
|
+
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 }); }
|
|
324
|
+
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" }, outputs: { buttonGroupClick: "buttonGroupClick", buttonSelectionChange: "buttonSelectionChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
343
325
|
};
|
|
344
326
|
ModusWcButtonGroup = __decorate([
|
|
345
327
|
ProxyCmp({
|
|
346
328
|
inputs: ['color', 'disabled', 'orientation', 'selectionType', 'variant']
|
|
347
329
|
})
|
|
348
330
|
], ModusWcButtonGroup);
|
|
349
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
331
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcButtonGroup, decorators: [{
|
|
350
332
|
type: Component,
|
|
351
333
|
args: [{
|
|
352
334
|
selector: 'modus-wc-button-group',
|
|
@@ -363,22 +345,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
363
345
|
type: Output
|
|
364
346
|
}] } });
|
|
365
347
|
let ModusWcCard = class ModusWcCard {
|
|
366
|
-
z;
|
|
367
|
-
el;
|
|
368
348
|
constructor(c, r, z) {
|
|
369
349
|
this.z = z;
|
|
370
350
|
c.detach();
|
|
371
351
|
this.el = r.nativeElement;
|
|
372
352
|
}
|
|
373
|
-
static
|
|
374
|
-
static
|
|
353
|
+
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 }); }
|
|
354
|
+
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 }); }
|
|
375
355
|
};
|
|
376
356
|
ModusWcCard = __decorate([
|
|
377
357
|
ProxyCmp({
|
|
378
358
|
inputs: ['backgroundFigure', 'bordered', 'customClass', 'layout', 'padding']
|
|
379
359
|
})
|
|
380
360
|
], ModusWcCard);
|
|
381
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
361
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcCard, decorators: [{
|
|
382
362
|
type: Component,
|
|
383
363
|
args: [{
|
|
384
364
|
selector: 'modus-wc-card',
|
|
@@ -390,25 +370,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
390
370
|
}]
|
|
391
371
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
392
372
|
let ModusWcCheckbox = class ModusWcCheckbox {
|
|
393
|
-
z;
|
|
394
|
-
el;
|
|
395
|
-
inputBlur = new EventEmitter();
|
|
396
|
-
inputChange = new EventEmitter();
|
|
397
|
-
inputFocus = new EventEmitter();
|
|
398
373
|
constructor(c, r, z) {
|
|
399
374
|
this.z = z;
|
|
375
|
+
this.inputBlur = new EventEmitter();
|
|
376
|
+
this.inputChange = new EventEmitter();
|
|
377
|
+
this.inputFocus = new EventEmitter();
|
|
400
378
|
c.detach();
|
|
401
379
|
this.el = r.nativeElement;
|
|
402
380
|
}
|
|
403
|
-
static
|
|
404
|
-
static
|
|
381
|
+
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 }); }
|
|
382
|
+
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" }, outputs: { inputBlur: "inputBlur", inputChange: "inputChange", inputFocus: "inputFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
405
383
|
};
|
|
406
384
|
ModusWcCheckbox = __decorate([
|
|
407
385
|
ProxyCmp({
|
|
408
386
|
inputs: ['customClass', 'disabled', 'indeterminate', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value']
|
|
409
387
|
})
|
|
410
388
|
], ModusWcCheckbox);
|
|
411
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
389
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcCheckbox, decorators: [{
|
|
412
390
|
type: Component,
|
|
413
391
|
args: [{
|
|
414
392
|
selector: 'modus-wc-checkbox',
|
|
@@ -427,24 +405,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
427
405
|
type: Output
|
|
428
406
|
}] } });
|
|
429
407
|
let ModusWcChip = class ModusWcChip {
|
|
430
|
-
z;
|
|
431
|
-
el;
|
|
432
|
-
chipClick = new EventEmitter();
|
|
433
|
-
chipRemove = new EventEmitter();
|
|
434
408
|
constructor(c, r, z) {
|
|
435
409
|
this.z = z;
|
|
410
|
+
this.chipClick = new EventEmitter();
|
|
411
|
+
this.chipRemove = new EventEmitter();
|
|
436
412
|
c.detach();
|
|
437
413
|
this.el = r.nativeElement;
|
|
438
414
|
}
|
|
439
|
-
static
|
|
440
|
-
static
|
|
415
|
+
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 }); }
|
|
416
|
+
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", multiline: "multiline", shape: "shape", showRemove: "showRemove", size: "size", variant: "variant" }, outputs: { chipClick: "chipClick", chipRemove: "chipRemove" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
441
417
|
};
|
|
442
418
|
ModusWcChip = __decorate([
|
|
443
419
|
ProxyCmp({
|
|
444
420
|
inputs: ['active', 'customClass', 'disabled', 'hasError', 'label', 'multiline', 'shape', 'showRemove', 'size', 'variant']
|
|
445
421
|
})
|
|
446
422
|
], ModusWcChip);
|
|
447
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
423
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcChip, decorators: [{
|
|
448
424
|
type: Component,
|
|
449
425
|
args: [{
|
|
450
426
|
selector: 'modus-wc-chip',
|
|
@@ -461,23 +437,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
461
437
|
type: Output
|
|
462
438
|
}] } });
|
|
463
439
|
let ModusWcCollapse = class ModusWcCollapse {
|
|
464
|
-
z;
|
|
465
|
-
el;
|
|
466
|
-
expandedChange = new EventEmitter();
|
|
467
440
|
constructor(c, r, z) {
|
|
468
441
|
this.z = z;
|
|
442
|
+
this.expandedChange = new EventEmitter();
|
|
469
443
|
c.detach();
|
|
470
444
|
this.el = r.nativeElement;
|
|
471
445
|
}
|
|
472
|
-
static
|
|
473
|
-
static
|
|
446
|
+
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 }); }
|
|
447
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcCollapse, selector: "modus-wc-collapse", inputs: { bordered: "bordered", chevronPosition: "chevronPosition", collapseId: "collapseId", customClass: "customClass", expanded: "expanded", options: "options" }, outputs: { expandedChange: "expandedChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
474
448
|
};
|
|
475
449
|
ModusWcCollapse = __decorate([
|
|
476
450
|
ProxyCmp({
|
|
477
451
|
inputs: ['bordered', 'chevronPosition', 'collapseId', 'customClass', 'expanded', 'options']
|
|
478
452
|
})
|
|
479
453
|
], ModusWcCollapse);
|
|
480
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
454
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcCollapse, decorators: [{
|
|
481
455
|
type: Component,
|
|
482
456
|
args: [{
|
|
483
457
|
selector: 'modus-wc-collapse',
|
|
@@ -492,27 +466,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
492
466
|
type: Output
|
|
493
467
|
}] } });
|
|
494
468
|
let ModusWcDate = class ModusWcDate {
|
|
495
|
-
z;
|
|
496
|
-
el;
|
|
497
|
-
inputBlur = new EventEmitter();
|
|
498
|
-
inputChange = new EventEmitter();
|
|
499
|
-
inputFocus = new EventEmitter();
|
|
500
|
-
calendarMonthChange = new EventEmitter();
|
|
501
|
-
calendarYearChange = new EventEmitter();
|
|
502
469
|
constructor(c, r, z) {
|
|
503
470
|
this.z = z;
|
|
471
|
+
this.inputBlur = new EventEmitter();
|
|
472
|
+
this.inputChange = new EventEmitter();
|
|
473
|
+
this.inputFocus = new EventEmitter();
|
|
474
|
+
this.calendarMonthChange = new EventEmitter();
|
|
475
|
+
this.calendarYearChange = new EventEmitter();
|
|
504
476
|
c.detach();
|
|
505
477
|
this.el = r.nativeElement;
|
|
506
478
|
}
|
|
507
|
-
static
|
|
508
|
-
static
|
|
479
|
+
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 }); }
|
|
480
|
+
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" }, outputs: { inputBlur: "inputBlur", inputChange: "inputChange", inputFocus: "inputFocus", calendarMonthChange: "calendarMonthChange", calendarYearChange: "calendarYearChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
509
481
|
};
|
|
510
482
|
ModusWcDate = __decorate([
|
|
511
483
|
ProxyCmp({
|
|
512
484
|
inputs: ['bordered', 'customClass', 'disabled', 'feedback', 'format', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'readOnly', 'required', 'showWeekNumbers', 'size', 'value', 'weekStartDay']
|
|
513
485
|
})
|
|
514
486
|
], ModusWcDate);
|
|
515
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
487
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcDate, decorators: [{
|
|
516
488
|
type: Component,
|
|
517
489
|
args: [{
|
|
518
490
|
selector: 'modus-wc-date',
|
|
@@ -535,22 +507,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
535
507
|
type: Output
|
|
536
508
|
}] } });
|
|
537
509
|
let ModusWcDivider = class ModusWcDivider {
|
|
538
|
-
z;
|
|
539
|
-
el;
|
|
540
510
|
constructor(c, r, z) {
|
|
541
511
|
this.z = z;
|
|
542
512
|
c.detach();
|
|
543
513
|
this.el = r.nativeElement;
|
|
544
514
|
}
|
|
545
|
-
static
|
|
546
|
-
static
|
|
515
|
+
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 }); }
|
|
516
|
+
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 }); }
|
|
547
517
|
};
|
|
548
518
|
ModusWcDivider = __decorate([
|
|
549
519
|
ProxyCmp({
|
|
550
520
|
inputs: ['color', 'content', 'customClass', 'orientation', 'position', 'responsive']
|
|
551
521
|
})
|
|
552
522
|
], ModusWcDivider);
|
|
553
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
523
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcDivider, decorators: [{
|
|
554
524
|
type: Component,
|
|
555
525
|
args: [{
|
|
556
526
|
selector: 'modus-wc-divider',
|
|
@@ -562,23 +532,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
562
532
|
}]
|
|
563
533
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
564
534
|
let ModusWcDropdownMenu = class ModusWcDropdownMenu {
|
|
565
|
-
z;
|
|
566
|
-
el;
|
|
567
|
-
menuVisibilityChange = new EventEmitter();
|
|
568
535
|
constructor(c, r, z) {
|
|
569
536
|
this.z = z;
|
|
537
|
+
this.menuVisibilityChange = new EventEmitter();
|
|
570
538
|
c.detach();
|
|
571
539
|
this.el = r.nativeElement;
|
|
572
540
|
}
|
|
573
|
-
static
|
|
574
|
-
static
|
|
541
|
+
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 }); }
|
|
542
|
+
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", buttonShape: "buttonShape", buttonSize: "buttonSize", buttonVariant: "buttonVariant", customClass: "customClass", disabled: "disabled", menuBordered: "menuBordered", menuOffset: "menuOffset", menuPlacement: "menuPlacement", menuSize: "menuSize", menuStrategy: "menuStrategy", menuVisible: "menuVisible" }, outputs: { menuVisibilityChange: "menuVisibilityChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
575
543
|
};
|
|
576
544
|
ModusWcDropdownMenu = __decorate([
|
|
577
545
|
ProxyCmp({
|
|
578
546
|
inputs: ['buttonAriaLabel', 'buttonColor', 'buttonShape', 'buttonSize', 'buttonVariant', 'customClass', 'disabled', 'menuBordered', 'menuOffset', 'menuPlacement', 'menuSize', 'menuStrategy', 'menuVisible']
|
|
579
547
|
})
|
|
580
548
|
], ModusWcDropdownMenu);
|
|
581
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
549
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcDropdownMenu, decorators: [{
|
|
582
550
|
type: Component,
|
|
583
551
|
args: [{
|
|
584
552
|
selector: 'modus-wc-dropdown-menu',
|
|
@@ -593,16 +561,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
593
561
|
type: Output
|
|
594
562
|
}] } });
|
|
595
563
|
let ModusWcFileDropzone = class ModusWcFileDropzone {
|
|
596
|
-
z;
|
|
597
|
-
el;
|
|
598
|
-
fileSelect = new EventEmitter();
|
|
599
564
|
constructor(c, r, z) {
|
|
600
565
|
this.z = z;
|
|
566
|
+
this.fileSelect = new EventEmitter();
|
|
601
567
|
c.detach();
|
|
602
568
|
this.el = r.nativeElement;
|
|
603
569
|
}
|
|
604
|
-
static
|
|
605
|
-
static
|
|
570
|
+
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 }); }
|
|
571
|
+
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" }, outputs: { fileSelect: "fileSelect" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
606
572
|
};
|
|
607
573
|
ModusWcFileDropzone = __decorate([
|
|
608
574
|
ProxyCmp({
|
|
@@ -610,7 +576,7 @@ ModusWcFileDropzone = __decorate([
|
|
|
610
576
|
methods: ['reset']
|
|
611
577
|
})
|
|
612
578
|
], ModusWcFileDropzone);
|
|
613
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
579
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcFileDropzone, decorators: [{
|
|
614
580
|
type: Component,
|
|
615
581
|
args: [{
|
|
616
582
|
selector: 'modus-wc-file-dropzone',
|
|
@@ -625,22 +591,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
625
591
|
type: Output
|
|
626
592
|
}] } });
|
|
627
593
|
let ModusWcHandle = class ModusWcHandle {
|
|
628
|
-
z;
|
|
629
|
-
el;
|
|
630
594
|
constructor(c, r, z) {
|
|
631
595
|
this.z = z;
|
|
632
596
|
c.detach();
|
|
633
597
|
this.el = r.nativeElement;
|
|
634
598
|
}
|
|
635
|
-
static
|
|
636
|
-
static
|
|
599
|
+
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 }); }
|
|
600
|
+
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 }); }
|
|
637
601
|
};
|
|
638
602
|
ModusWcHandle = __decorate([
|
|
639
603
|
ProxyCmp({
|
|
640
604
|
inputs: ['buttonColor', 'buttonSize', 'buttonVariant', 'customClass', 'defaultSplit', 'density', 'leftTarget', 'orientation', 'rightTarget', 'size', 'type']
|
|
641
605
|
})
|
|
642
606
|
], ModusWcHandle);
|
|
643
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
607
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcHandle, decorators: [{
|
|
644
608
|
type: Component,
|
|
645
609
|
args: [{
|
|
646
610
|
selector: 'modus-wc-handle',
|
|
@@ -652,22 +616,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
652
616
|
}]
|
|
653
617
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
654
618
|
let ModusWcIcon = class ModusWcIcon {
|
|
655
|
-
z;
|
|
656
|
-
el;
|
|
657
619
|
constructor(c, r, z) {
|
|
658
620
|
this.z = z;
|
|
659
621
|
c.detach();
|
|
660
622
|
this.el = r.nativeElement;
|
|
661
623
|
}
|
|
662
|
-
static
|
|
663
|
-
static
|
|
624
|
+
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 }); }
|
|
625
|
+
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 }); }
|
|
664
626
|
};
|
|
665
627
|
ModusWcIcon = __decorate([
|
|
666
628
|
ProxyCmp({
|
|
667
629
|
inputs: ['customClass', 'decorative', 'name', 'size', 'variant']
|
|
668
630
|
})
|
|
669
631
|
], ModusWcIcon);
|
|
670
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
632
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcIcon, decorators: [{
|
|
671
633
|
type: Component,
|
|
672
634
|
args: [{
|
|
673
635
|
selector: 'modus-wc-icon',
|
|
@@ -679,22 +641,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
679
641
|
}]
|
|
680
642
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
681
643
|
let ModusWcInputFeedback = class ModusWcInputFeedback {
|
|
682
|
-
z;
|
|
683
|
-
el;
|
|
684
644
|
constructor(c, r, z) {
|
|
685
645
|
this.z = z;
|
|
686
646
|
c.detach();
|
|
687
647
|
this.el = r.nativeElement;
|
|
688
648
|
}
|
|
689
|
-
static
|
|
690
|
-
static
|
|
649
|
+
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 }); }
|
|
650
|
+
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 }); }
|
|
691
651
|
};
|
|
692
652
|
ModusWcInputFeedback = __decorate([
|
|
693
653
|
ProxyCmp({
|
|
694
654
|
inputs: ['customClass', 'icon', 'level', 'message', 'size']
|
|
695
655
|
})
|
|
696
656
|
], ModusWcInputFeedback);
|
|
697
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
657
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcInputFeedback, decorators: [{
|
|
698
658
|
type: Component,
|
|
699
659
|
args: [{
|
|
700
660
|
selector: 'modus-wc-input-feedback',
|
|
@@ -706,22 +666,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
706
666
|
}]
|
|
707
667
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
708
668
|
let ModusWcInputLabel = class ModusWcInputLabel {
|
|
709
|
-
z;
|
|
710
|
-
el;
|
|
711
669
|
constructor(c, r, z) {
|
|
712
670
|
this.z = z;
|
|
713
671
|
c.detach();
|
|
714
672
|
this.el = r.nativeElement;
|
|
715
673
|
}
|
|
716
|
-
static
|
|
717
|
-
static
|
|
674
|
+
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 }); }
|
|
675
|
+
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 }); }
|
|
718
676
|
};
|
|
719
677
|
ModusWcInputLabel = __decorate([
|
|
720
678
|
ProxyCmp({
|
|
721
679
|
inputs: ['customClass', 'forId', 'labelText', 'required', 'size', 'subLabelText']
|
|
722
680
|
})
|
|
723
681
|
], ModusWcInputLabel);
|
|
724
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
682
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcInputLabel, decorators: [{
|
|
725
683
|
type: Component,
|
|
726
684
|
args: [{
|
|
727
685
|
selector: 'modus-wc-input-label',
|
|
@@ -733,22 +691,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
733
691
|
}]
|
|
734
692
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
735
693
|
let ModusWcLink = class ModusWcLink {
|
|
736
|
-
z;
|
|
737
|
-
el;
|
|
738
694
|
constructor(c, r, z) {
|
|
739
695
|
this.z = z;
|
|
740
696
|
c.detach();
|
|
741
697
|
this.el = r.nativeElement;
|
|
742
698
|
}
|
|
743
|
-
static
|
|
744
|
-
static
|
|
699
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
700
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcLink, selector: "modus-wc-link", inputs: { color: "color", customClass: "customClass", href: "href", rel: "rel", target: "target", underline: "underline" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
745
701
|
};
|
|
746
702
|
ModusWcLink = __decorate([
|
|
747
703
|
ProxyCmp({
|
|
748
704
|
inputs: ['color', 'customClass', 'href', 'rel', 'target', 'underline']
|
|
749
705
|
})
|
|
750
706
|
], ModusWcLink);
|
|
751
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
707
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcLink, decorators: [{
|
|
752
708
|
type: Component,
|
|
753
709
|
args: [{
|
|
754
710
|
selector: 'modus-wc-link',
|
|
@@ -760,22 +716,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
760
716
|
}]
|
|
761
717
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
762
718
|
let ModusWcLoader = class ModusWcLoader {
|
|
763
|
-
z;
|
|
764
|
-
el;
|
|
765
719
|
constructor(c, r, z) {
|
|
766
720
|
this.z = z;
|
|
767
721
|
c.detach();
|
|
768
722
|
this.el = r.nativeElement;
|
|
769
723
|
}
|
|
770
|
-
static
|
|
771
|
-
static
|
|
724
|
+
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 }); }
|
|
725
|
+
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 }); }
|
|
772
726
|
};
|
|
773
727
|
ModusWcLoader = __decorate([
|
|
774
728
|
ProxyCmp({
|
|
775
729
|
inputs: ['color', 'customClass', 'size', 'variant']
|
|
776
730
|
})
|
|
777
731
|
], ModusWcLoader);
|
|
778
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
732
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcLoader, decorators: [{
|
|
779
733
|
type: Component,
|
|
780
734
|
args: [{
|
|
781
735
|
selector: 'modus-wc-loader',
|
|
@@ -787,22 +741,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
787
741
|
}]
|
|
788
742
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
789
743
|
let ModusWcLogo = class ModusWcLogo {
|
|
790
|
-
z;
|
|
791
|
-
el;
|
|
792
744
|
constructor(c, r, z) {
|
|
793
745
|
this.z = z;
|
|
794
746
|
c.detach();
|
|
795
747
|
this.el = r.nativeElement;
|
|
796
748
|
}
|
|
797
|
-
static
|
|
798
|
-
static
|
|
749
|
+
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 }); }
|
|
750
|
+
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 }); }
|
|
799
751
|
};
|
|
800
752
|
ModusWcLogo = __decorate([
|
|
801
753
|
ProxyCmp({
|
|
802
754
|
inputs: ['alt', 'customClass', 'emblem', 'name']
|
|
803
755
|
})
|
|
804
756
|
], ModusWcLogo);
|
|
805
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
757
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcLogo, decorators: [{
|
|
806
758
|
type: Component,
|
|
807
759
|
args: [{
|
|
808
760
|
selector: 'modus-wc-logo',
|
|
@@ -814,24 +766,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
814
766
|
}]
|
|
815
767
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
816
768
|
let ModusWcMenu = class ModusWcMenu {
|
|
817
|
-
z;
|
|
818
|
-
el;
|
|
819
|
-
menuFocusout = new EventEmitter();
|
|
820
|
-
menuSelectionChange = new EventEmitter();
|
|
821
769
|
constructor(c, r, z) {
|
|
822
770
|
this.z = z;
|
|
771
|
+
this.menuFocusout = new EventEmitter();
|
|
772
|
+
this.menuSelectionChange = new EventEmitter();
|
|
823
773
|
c.detach();
|
|
824
774
|
this.el = r.nativeElement;
|
|
825
775
|
}
|
|
826
|
-
static
|
|
827
|
-
static
|
|
776
|
+
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 }); }
|
|
777
|
+
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", selectionMode: "selectionMode", size: "size" }, outputs: { menuFocusout: "menuFocusout", menuSelectionChange: "menuSelectionChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
828
778
|
};
|
|
829
779
|
ModusWcMenu = __decorate([
|
|
830
780
|
ProxyCmp({
|
|
831
781
|
inputs: ['bordered', 'customClass', 'isSubMenu', 'orientation', 'selectionMode', 'size']
|
|
832
782
|
})
|
|
833
783
|
], ModusWcMenu);
|
|
834
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
784
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcMenu, decorators: [{
|
|
835
785
|
type: Component,
|
|
836
786
|
args: [{
|
|
837
787
|
selector: 'modus-wc-menu',
|
|
@@ -848,16 +798,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
848
798
|
type: Output
|
|
849
799
|
}] } });
|
|
850
800
|
let ModusWcMenuItem = class ModusWcMenuItem {
|
|
851
|
-
z;
|
|
852
|
-
el;
|
|
853
|
-
itemSelect = new EventEmitter();
|
|
854
801
|
constructor(c, r, z) {
|
|
855
802
|
this.z = z;
|
|
803
|
+
this.itemSelect = new EventEmitter();
|
|
856
804
|
c.detach();
|
|
857
805
|
this.el = r.nativeElement;
|
|
858
806
|
}
|
|
859
|
-
static
|
|
860
|
-
static
|
|
807
|
+
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 }); }
|
|
808
|
+
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", subLabel: "subLabel", tooltipContent: "tooltipContent", tooltipPosition: "tooltipPosition", value: "value" }, outputs: { itemSelect: "itemSelect" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
861
809
|
};
|
|
862
810
|
ModusWcMenuItem = __decorate([
|
|
863
811
|
ProxyCmp({
|
|
@@ -865,7 +813,7 @@ ModusWcMenuItem = __decorate([
|
|
|
865
813
|
methods: ['collapseSubmenu']
|
|
866
814
|
})
|
|
867
815
|
], ModusWcMenuItem);
|
|
868
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
816
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcMenuItem, decorators: [{
|
|
869
817
|
type: Component,
|
|
870
818
|
args: [{
|
|
871
819
|
selector: 'modus-wc-menu-item',
|
|
@@ -880,22 +828,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
880
828
|
type: Output
|
|
881
829
|
}] } });
|
|
882
830
|
let ModusWcModal = class ModusWcModal {
|
|
883
|
-
z;
|
|
884
|
-
el;
|
|
885
831
|
constructor(c, r, z) {
|
|
886
832
|
this.z = z;
|
|
887
833
|
c.detach();
|
|
888
834
|
this.el = r.nativeElement;
|
|
889
835
|
}
|
|
890
|
-
static
|
|
891
|
-
static
|
|
836
|
+
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 }); }
|
|
837
|
+
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 }); }
|
|
892
838
|
};
|
|
893
839
|
ModusWcModal = __decorate([
|
|
894
840
|
ProxyCmp({
|
|
895
841
|
inputs: ['backdrop', 'customClass', 'fullscreen', 'modalId', 'position', 'showClose', 'showFullscreenToggle']
|
|
896
842
|
})
|
|
897
843
|
], ModusWcModal);
|
|
898
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
844
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcModal, decorators: [{
|
|
899
845
|
type: Component,
|
|
900
846
|
args: [{
|
|
901
847
|
selector: 'modus-wc-modal',
|
|
@@ -907,37 +853,35 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
907
853
|
}]
|
|
908
854
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
909
855
|
let ModusWcNavbar = class ModusWcNavbar {
|
|
910
|
-
z;
|
|
911
|
-
el;
|
|
912
|
-
aiClick = new EventEmitter();
|
|
913
|
-
appsClick = new EventEmitter();
|
|
914
|
-
appsMenuOpenChange = new EventEmitter();
|
|
915
|
-
condensedMenuOpenChange = new EventEmitter();
|
|
916
|
-
helpClick = new EventEmitter();
|
|
917
|
-
mainMenuOpenChange = new EventEmitter();
|
|
918
|
-
myTrimbleClick = new EventEmitter();
|
|
919
|
-
notificationsClick = new EventEmitter();
|
|
920
|
-
notificationsMenuOpenChange = new EventEmitter();
|
|
921
|
-
searchChange = new EventEmitter();
|
|
922
|
-
searchClick = new EventEmitter();
|
|
923
|
-
searchInputOpenChange = new EventEmitter();
|
|
924
|
-
signOutClick = new EventEmitter();
|
|
925
|
-
trimbleLogoClick = new EventEmitter();
|
|
926
|
-
userMenuOpenChange = new EventEmitter();
|
|
927
856
|
constructor(c, r, z) {
|
|
928
857
|
this.z = z;
|
|
858
|
+
this.aiClick = new EventEmitter();
|
|
859
|
+
this.appsClick = new EventEmitter();
|
|
860
|
+
this.appsMenuOpenChange = new EventEmitter();
|
|
861
|
+
this.condensedMenuOpenChange = new EventEmitter();
|
|
862
|
+
this.helpClick = new EventEmitter();
|
|
863
|
+
this.mainMenuOpenChange = new EventEmitter();
|
|
864
|
+
this.myTrimbleClick = new EventEmitter();
|
|
865
|
+
this.notificationsClick = new EventEmitter();
|
|
866
|
+
this.notificationsMenuOpenChange = new EventEmitter();
|
|
867
|
+
this.searchChange = new EventEmitter();
|
|
868
|
+
this.searchClick = new EventEmitter();
|
|
869
|
+
this.searchInputOpenChange = new EventEmitter();
|
|
870
|
+
this.signOutClick = new EventEmitter();
|
|
871
|
+
this.trimbleLogoClick = new EventEmitter();
|
|
872
|
+
this.userMenuOpenChange = new EventEmitter();
|
|
929
873
|
c.detach();
|
|
930
874
|
this.el = r.nativeElement;
|
|
931
875
|
}
|
|
932
|
-
static
|
|
933
|
-
static
|
|
876
|
+
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 }); }
|
|
877
|
+
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", logoName: "logoName", mainMenuOpen: "mainMenuOpen", notificationsMenuOpen: "notificationsMenuOpen", searchDebounceMs: "searchDebounceMs", searchInputOpen: "searchInputOpen", textOverrides: "textOverrides", userCard: "userCard", userMenuOpen: "userMenuOpen", visibility: "visibility" }, outputs: { aiClick: "aiClick", appsClick: "appsClick", appsMenuOpenChange: "appsMenuOpenChange", condensedMenuOpenChange: "condensedMenuOpenChange", helpClick: "helpClick", mainMenuOpenChange: "mainMenuOpenChange", myTrimbleClick: "myTrimbleClick", notificationsClick: "notificationsClick", notificationsMenuOpenChange: "notificationsMenuOpenChange", searchChange: "searchChange", searchClick: "searchClick", searchInputOpenChange: "searchInputOpenChange", signOutClick: "signOutClick", trimbleLogoClick: "trimbleLogoClick", userMenuOpenChange: "userMenuOpenChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
934
878
|
};
|
|
935
879
|
ModusWcNavbar = __decorate([
|
|
936
880
|
ProxyCmp({
|
|
937
881
|
inputs: ['appsMenuOpen', 'condensed', 'condensedMenuOpen', 'customClass', 'logoName', 'mainMenuOpen', 'notificationsMenuOpen', 'searchDebounceMs', 'searchInputOpen', 'textOverrides', 'userCard', 'userMenuOpen', 'visibility']
|
|
938
882
|
})
|
|
939
883
|
], ModusWcNavbar);
|
|
940
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
884
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcNavbar, decorators: [{
|
|
941
885
|
type: Component,
|
|
942
886
|
args: [{
|
|
943
887
|
selector: 'modus-wc-navbar',
|
|
@@ -980,25 +924,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
980
924
|
type: Output
|
|
981
925
|
}] } });
|
|
982
926
|
let ModusWcNumberInput = class ModusWcNumberInput {
|
|
983
|
-
z;
|
|
984
|
-
el;
|
|
985
|
-
inputBlur = new EventEmitter();
|
|
986
|
-
inputChange = new EventEmitter();
|
|
987
|
-
inputFocus = new EventEmitter();
|
|
988
927
|
constructor(c, r, z) {
|
|
989
928
|
this.z = z;
|
|
929
|
+
this.inputBlur = new EventEmitter();
|
|
930
|
+
this.inputChange = new EventEmitter();
|
|
931
|
+
this.inputFocus = new EventEmitter();
|
|
990
932
|
c.detach();
|
|
991
933
|
this.el = r.nativeElement;
|
|
992
934
|
}
|
|
993
|
-
static
|
|
994
|
-
static
|
|
935
|
+
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 }); }
|
|
936
|
+
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" }, outputs: { inputBlur: "inputBlur", inputChange: "inputChange", inputFocus: "inputFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
995
937
|
};
|
|
996
938
|
ModusWcNumberInput = __decorate([
|
|
997
939
|
ProxyCmp({
|
|
998
940
|
inputs: ['autoComplete', 'bordered', 'currencySymbol', 'customClass', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'placeholder', 'readOnly', 'required', 'size', 'step', 'type', 'value']
|
|
999
941
|
})
|
|
1000
942
|
], ModusWcNumberInput);
|
|
1001
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
943
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcNumberInput, decorators: [{
|
|
1002
944
|
type: Component,
|
|
1003
945
|
args: [{
|
|
1004
946
|
selector: 'modus-wc-number-input',
|
|
@@ -1017,23 +959,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1017
959
|
type: Output
|
|
1018
960
|
}] } });
|
|
1019
961
|
let ModusWcPagination = class ModusWcPagination {
|
|
1020
|
-
z;
|
|
1021
|
-
el;
|
|
1022
|
-
pageChange = new EventEmitter();
|
|
1023
962
|
constructor(c, r, z) {
|
|
1024
963
|
this.z = z;
|
|
964
|
+
this.pageChange = new EventEmitter();
|
|
1025
965
|
c.detach();
|
|
1026
966
|
this.el = r.nativeElement;
|
|
1027
967
|
}
|
|
1028
|
-
static
|
|
1029
|
-
static
|
|
968
|
+
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 }); }
|
|
969
|
+
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" }, outputs: { pageChange: "pageChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1030
970
|
};
|
|
1031
971
|
ModusWcPagination = __decorate([
|
|
1032
972
|
ProxyCmp({
|
|
1033
973
|
inputs: ['ariaLabelValues', 'count', 'customClass', 'nextButtonText', 'page', 'prevButtonText', 'size']
|
|
1034
974
|
})
|
|
1035
975
|
], ModusWcPagination);
|
|
1036
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
976
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcPagination, decorators: [{
|
|
1037
977
|
type: Component,
|
|
1038
978
|
args: [{
|
|
1039
979
|
selector: 'modus-wc-pagination',
|
|
@@ -1048,22 +988,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1048
988
|
type: Output
|
|
1049
989
|
}] } });
|
|
1050
990
|
let ModusWcPanel = class ModusWcPanel {
|
|
1051
|
-
z;
|
|
1052
|
-
el;
|
|
1053
991
|
constructor(c, r, z) {
|
|
1054
992
|
this.z = z;
|
|
1055
993
|
c.detach();
|
|
1056
994
|
this.el = r.nativeElement;
|
|
1057
995
|
}
|
|
1058
|
-
static
|
|
1059
|
-
static
|
|
996
|
+
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 }); }
|
|
997
|
+
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 }); }
|
|
1060
998
|
};
|
|
1061
999
|
ModusWcPanel = __decorate([
|
|
1062
1000
|
ProxyCmp({
|
|
1063
1001
|
inputs: ['customClass', 'floating', 'height', 'width']
|
|
1064
1002
|
})
|
|
1065
1003
|
], ModusWcPanel);
|
|
1066
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1004
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcPanel, decorators: [{
|
|
1067
1005
|
type: Component,
|
|
1068
1006
|
args: [{
|
|
1069
1007
|
selector: 'modus-wc-panel',
|
|
@@ -1075,24 +1013,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1075
1013
|
}]
|
|
1076
1014
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1077
1015
|
let ModusWcProfileMenu = class ModusWcProfileMenu {
|
|
1078
|
-
z;
|
|
1079
|
-
el;
|
|
1080
|
-
signOutClick = new EventEmitter();
|
|
1081
|
-
menuItemClick = new EventEmitter();
|
|
1082
1016
|
constructor(c, r, z) {
|
|
1083
1017
|
this.z = z;
|
|
1018
|
+
this.signOutClick = new EventEmitter();
|
|
1019
|
+
this.menuItemClick = new EventEmitter();
|
|
1084
1020
|
c.detach();
|
|
1085
1021
|
this.el = r.nativeElement;
|
|
1086
1022
|
}
|
|
1087
|
-
static
|
|
1088
|
-
static
|
|
1023
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcProfileMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1024
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcProfileMenu, selector: "modus-wc-profile-menu", inputs: { menuOne: "menuOne", menuTwo: "menuTwo", profileProps: "profileProps" }, outputs: { signOutClick: "signOutClick", menuItemClick: "menuItemClick" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1089
1025
|
};
|
|
1090
1026
|
ModusWcProfileMenu = __decorate([
|
|
1091
1027
|
ProxyCmp({
|
|
1092
1028
|
inputs: ['menuOne', 'menuTwo', 'profileProps']
|
|
1093
1029
|
})
|
|
1094
1030
|
], ModusWcProfileMenu);
|
|
1095
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1031
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcProfileMenu, decorators: [{
|
|
1096
1032
|
type: Component,
|
|
1097
1033
|
args: [{
|
|
1098
1034
|
selector: 'modus-wc-profile-menu',
|
|
@@ -1109,22 +1045,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1109
1045
|
type: Output
|
|
1110
1046
|
}] } });
|
|
1111
1047
|
let ModusWcProgress = class ModusWcProgress {
|
|
1112
|
-
z;
|
|
1113
|
-
el;
|
|
1114
1048
|
constructor(c, r, z) {
|
|
1115
1049
|
this.z = z;
|
|
1116
1050
|
c.detach();
|
|
1117
1051
|
this.el = r.nativeElement;
|
|
1118
1052
|
}
|
|
1119
|
-
static
|
|
1120
|
-
static
|
|
1053
|
+
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 }); }
|
|
1054
|
+
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 }); }
|
|
1121
1055
|
};
|
|
1122
1056
|
ModusWcProgress = __decorate([
|
|
1123
1057
|
ProxyCmp({
|
|
1124
1058
|
inputs: ['customClass', 'indeterminate', 'label', 'max', 'value', 'variant']
|
|
1125
1059
|
})
|
|
1126
1060
|
], ModusWcProgress);
|
|
1127
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1061
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcProgress, decorators: [{
|
|
1128
1062
|
type: Component,
|
|
1129
1063
|
args: [{
|
|
1130
1064
|
selector: 'modus-wc-progress',
|
|
@@ -1136,25 +1070,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1136
1070
|
}]
|
|
1137
1071
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1138
1072
|
let ModusWcRadio = class ModusWcRadio {
|
|
1139
|
-
z;
|
|
1140
|
-
el;
|
|
1141
|
-
inputBlur = new EventEmitter();
|
|
1142
|
-
inputChange = new EventEmitter();
|
|
1143
|
-
inputFocus = new EventEmitter();
|
|
1144
1073
|
constructor(c, r, z) {
|
|
1145
1074
|
this.z = z;
|
|
1075
|
+
this.inputBlur = new EventEmitter();
|
|
1076
|
+
this.inputChange = new EventEmitter();
|
|
1077
|
+
this.inputFocus = new EventEmitter();
|
|
1146
1078
|
c.detach();
|
|
1147
1079
|
this.el = r.nativeElement;
|
|
1148
1080
|
}
|
|
1149
|
-
static
|
|
1150
|
-
static
|
|
1081
|
+
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 }); }
|
|
1082
|
+
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" }, outputs: { inputBlur: "inputBlur", inputChange: "inputChange", inputFocus: "inputFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1151
1083
|
};
|
|
1152
1084
|
ModusWcRadio = __decorate([
|
|
1153
1085
|
ProxyCmp({
|
|
1154
1086
|
inputs: ['customClass', 'disabled', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value']
|
|
1155
1087
|
})
|
|
1156
1088
|
], ModusWcRadio);
|
|
1157
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1089
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcRadio, decorators: [{
|
|
1158
1090
|
type: Component,
|
|
1159
1091
|
args: [{
|
|
1160
1092
|
selector: 'modus-wc-radio',
|
|
@@ -1173,23 +1105,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1173
1105
|
type: Output
|
|
1174
1106
|
}] } });
|
|
1175
1107
|
let ModusWcRating = class ModusWcRating {
|
|
1176
|
-
z;
|
|
1177
|
-
el;
|
|
1178
|
-
ratingChange = new EventEmitter();
|
|
1179
1108
|
constructor(c, r, z) {
|
|
1180
1109
|
this.z = z;
|
|
1110
|
+
this.ratingChange = new EventEmitter();
|
|
1181
1111
|
c.detach();
|
|
1182
1112
|
this.el = r.nativeElement;
|
|
1183
1113
|
}
|
|
1184
|
-
static
|
|
1185
|
-
static
|
|
1114
|
+
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 }); }
|
|
1115
|
+
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" }, outputs: { ratingChange: "ratingChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1186
1116
|
};
|
|
1187
1117
|
ModusWcRating = __decorate([
|
|
1188
1118
|
ProxyCmp({
|
|
1189
1119
|
inputs: ['allowHalf', 'count', 'customClass', 'disabled', 'getAriaLabelText', 'size', 'value', 'variant']
|
|
1190
1120
|
})
|
|
1191
1121
|
], ModusWcRating);
|
|
1192
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1122
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcRating, decorators: [{
|
|
1193
1123
|
type: Component,
|
|
1194
1124
|
args: [{
|
|
1195
1125
|
selector: 'modus-wc-rating',
|
|
@@ -1204,25 +1134,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1204
1134
|
type: Output
|
|
1205
1135
|
}] } });
|
|
1206
1136
|
let ModusWcSelect = class ModusWcSelect {
|
|
1207
|
-
z;
|
|
1208
|
-
el;
|
|
1209
|
-
inputBlur = new EventEmitter();
|
|
1210
|
-
inputChange = new EventEmitter();
|
|
1211
|
-
inputFocus = new EventEmitter();
|
|
1212
1137
|
constructor(c, r, z) {
|
|
1213
1138
|
this.z = z;
|
|
1139
|
+
this.inputBlur = new EventEmitter();
|
|
1140
|
+
this.inputChange = new EventEmitter();
|
|
1141
|
+
this.inputFocus = new EventEmitter();
|
|
1214
1142
|
c.detach();
|
|
1215
1143
|
this.el = r.nativeElement;
|
|
1216
1144
|
}
|
|
1217
|
-
static
|
|
1218
|
-
static
|
|
1145
|
+
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 }); }
|
|
1146
|
+
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" }, outputs: { inputBlur: "inputBlur", inputChange: "inputChange", inputFocus: "inputFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1219
1147
|
};
|
|
1220
1148
|
ModusWcSelect = __decorate([
|
|
1221
1149
|
ProxyCmp({
|
|
1222
1150
|
inputs: ['bordered', 'customClass', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'name', 'options', 'required', 'size', 'value']
|
|
1223
1151
|
})
|
|
1224
1152
|
], ModusWcSelect);
|
|
1225
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1153
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSelect, decorators: [{
|
|
1226
1154
|
type: Component,
|
|
1227
1155
|
args: [{
|
|
1228
1156
|
selector: 'modus-wc-select',
|
|
@@ -1241,23 +1169,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1241
1169
|
type: Output
|
|
1242
1170
|
}] } });
|
|
1243
1171
|
let ModusWcSideNavigation = class ModusWcSideNavigation {
|
|
1244
|
-
z;
|
|
1245
|
-
el;
|
|
1246
|
-
expandedChange = new EventEmitter();
|
|
1247
1172
|
constructor(c, r, z) {
|
|
1248
1173
|
this.z = z;
|
|
1174
|
+
this.expandedChange = new EventEmitter();
|
|
1249
1175
|
c.detach();
|
|
1250
1176
|
this.el = r.nativeElement;
|
|
1251
1177
|
}
|
|
1252
|
-
static
|
|
1253
|
-
static
|
|
1178
|
+
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 }); }
|
|
1179
|
+
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" }, outputs: { expandedChange: "expandedChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1254
1180
|
};
|
|
1255
1181
|
ModusWcSideNavigation = __decorate([
|
|
1256
1182
|
ProxyCmp({
|
|
1257
1183
|
inputs: ['collapseOnClickOutside', 'customClass', 'expanded', 'maxWidth', 'mode', 'targetContent']
|
|
1258
1184
|
})
|
|
1259
1185
|
], ModusWcSideNavigation);
|
|
1260
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1186
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSideNavigation, decorators: [{
|
|
1261
1187
|
type: Component,
|
|
1262
1188
|
args: [{
|
|
1263
1189
|
selector: 'modus-wc-side-navigation',
|
|
@@ -1272,22 +1198,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1272
1198
|
type: Output
|
|
1273
1199
|
}] } });
|
|
1274
1200
|
let ModusWcSkeleton = class ModusWcSkeleton {
|
|
1275
|
-
z;
|
|
1276
|
-
el;
|
|
1277
1201
|
constructor(c, r, z) {
|
|
1278
1202
|
this.z = z;
|
|
1279
1203
|
c.detach();
|
|
1280
1204
|
this.el = r.nativeElement;
|
|
1281
1205
|
}
|
|
1282
|
-
static
|
|
1283
|
-
static
|
|
1206
|
+
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 }); }
|
|
1207
|
+
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 }); }
|
|
1284
1208
|
};
|
|
1285
1209
|
ModusWcSkeleton = __decorate([
|
|
1286
1210
|
ProxyCmp({
|
|
1287
1211
|
inputs: ['customClass', 'height', 'shape', 'width']
|
|
1288
1212
|
})
|
|
1289
1213
|
], ModusWcSkeleton);
|
|
1290
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1214
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSkeleton, decorators: [{
|
|
1291
1215
|
type: Component,
|
|
1292
1216
|
args: [{
|
|
1293
1217
|
selector: 'modus-wc-skeleton',
|
|
@@ -1299,25 +1223,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1299
1223
|
}]
|
|
1300
1224
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1301
1225
|
let ModusWcSlider = class ModusWcSlider {
|
|
1302
|
-
z;
|
|
1303
|
-
el;
|
|
1304
|
-
inputBlur = new EventEmitter();
|
|
1305
|
-
inputChange = new EventEmitter();
|
|
1306
|
-
inputFocus = new EventEmitter();
|
|
1307
1226
|
constructor(c, r, z) {
|
|
1308
1227
|
this.z = z;
|
|
1228
|
+
this.inputBlur = new EventEmitter();
|
|
1229
|
+
this.inputChange = new EventEmitter();
|
|
1230
|
+
this.inputFocus = new EventEmitter();
|
|
1309
1231
|
c.detach();
|
|
1310
1232
|
this.el = r.nativeElement;
|
|
1311
1233
|
}
|
|
1312
|
-
static
|
|
1313
|
-
static
|
|
1234
|
+
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 }); }
|
|
1235
|
+
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" }, outputs: { inputBlur: "inputBlur", inputChange: "inputChange", inputFocus: "inputFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1314
1236
|
};
|
|
1315
1237
|
ModusWcSlider = __decorate([
|
|
1316
1238
|
ProxyCmp({
|
|
1317
1239
|
inputs: ['customClass', 'disabled', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'required', 'size', 'step', 'value']
|
|
1318
1240
|
})
|
|
1319
1241
|
], ModusWcSlider);
|
|
1320
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1242
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSlider, decorators: [{
|
|
1321
1243
|
type: Component,
|
|
1322
1244
|
args: [{
|
|
1323
1245
|
selector: 'modus-wc-slider',
|
|
@@ -1336,23 +1258,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1336
1258
|
type: Output
|
|
1337
1259
|
}] } });
|
|
1338
1260
|
let ModusWcStepper = class ModusWcStepper {
|
|
1339
|
-
z;
|
|
1340
|
-
el;
|
|
1341
|
-
stepClick = new EventEmitter();
|
|
1342
1261
|
constructor(c, r, z) {
|
|
1343
1262
|
this.z = z;
|
|
1263
|
+
this.stepClick = new EventEmitter();
|
|
1344
1264
|
c.detach();
|
|
1345
1265
|
this.el = r.nativeElement;
|
|
1346
1266
|
}
|
|
1347
|
-
static
|
|
1348
|
-
static
|
|
1267
|
+
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 }); }
|
|
1268
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcStepper, selector: "modus-wc-stepper", inputs: { customClass: "customClass", interactive: "interactive", orientation: "orientation", steps: "steps" }, outputs: { stepClick: "stepClick" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1349
1269
|
};
|
|
1350
1270
|
ModusWcStepper = __decorate([
|
|
1351
1271
|
ProxyCmp({
|
|
1352
1272
|
inputs: ['customClass', 'interactive', 'orientation', 'steps']
|
|
1353
1273
|
})
|
|
1354
1274
|
], ModusWcStepper);
|
|
1355
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1275
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcStepper, decorators: [{
|
|
1356
1276
|
type: Component,
|
|
1357
1277
|
args: [{
|
|
1358
1278
|
selector: 'modus-wc-stepper',
|
|
@@ -1367,25 +1287,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1367
1287
|
type: Output
|
|
1368
1288
|
}] } });
|
|
1369
1289
|
let ModusWcSwitch = class ModusWcSwitch {
|
|
1370
|
-
z;
|
|
1371
|
-
el;
|
|
1372
|
-
inputBlur = new EventEmitter();
|
|
1373
|
-
inputChange = new EventEmitter();
|
|
1374
|
-
inputFocus = new EventEmitter();
|
|
1375
1290
|
constructor(c, r, z) {
|
|
1376
1291
|
this.z = z;
|
|
1292
|
+
this.inputBlur = new EventEmitter();
|
|
1293
|
+
this.inputChange = new EventEmitter();
|
|
1294
|
+
this.inputFocus = new EventEmitter();
|
|
1377
1295
|
c.detach();
|
|
1378
1296
|
this.el = r.nativeElement;
|
|
1379
1297
|
}
|
|
1380
|
-
static
|
|
1381
|
-
static
|
|
1298
|
+
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 }); }
|
|
1299
|
+
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" }, outputs: { inputBlur: "inputBlur", inputChange: "inputChange", inputFocus: "inputFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1382
1300
|
};
|
|
1383
1301
|
ModusWcSwitch = __decorate([
|
|
1384
1302
|
ProxyCmp({
|
|
1385
1303
|
inputs: ['customClass', 'disabled', 'indeterminate', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value']
|
|
1386
1304
|
})
|
|
1387
1305
|
], ModusWcSwitch);
|
|
1388
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1306
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSwitch, decorators: [{
|
|
1389
1307
|
type: Component,
|
|
1390
1308
|
args: [{
|
|
1391
1309
|
selector: 'modus-wc-switch',
|
|
@@ -1404,28 +1322,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1404
1322
|
type: Output
|
|
1405
1323
|
}] } });
|
|
1406
1324
|
let ModusWcTable = class ModusWcTable {
|
|
1407
|
-
z;
|
|
1408
|
-
el;
|
|
1409
|
-
cellEditStart = new EventEmitter();
|
|
1410
|
-
cellEditCommit = new EventEmitter();
|
|
1411
|
-
rowClick = new EventEmitter();
|
|
1412
|
-
sortChange = new EventEmitter();
|
|
1413
|
-
paginationChange = new EventEmitter();
|
|
1414
|
-
rowSelectionChange = new EventEmitter();
|
|
1415
1325
|
constructor(c, r, z) {
|
|
1416
1326
|
this.z = z;
|
|
1327
|
+
this.cellEditStart = new EventEmitter();
|
|
1328
|
+
this.cellEditCommit = new EventEmitter();
|
|
1329
|
+
this.rowClick = new EventEmitter();
|
|
1330
|
+
this.sortChange = new EventEmitter();
|
|
1331
|
+
this.paginationChange = new EventEmitter();
|
|
1332
|
+
this.rowSelectionChange = new EventEmitter();
|
|
1417
1333
|
c.detach();
|
|
1418
1334
|
this.el = r.nativeElement;
|
|
1419
1335
|
}
|
|
1420
|
-
static
|
|
1421
|
-
static
|
|
1336
|
+
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 }); }
|
|
1337
|
+
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", isRowSelectable: "isRowSelectable", pageSizeOptions: "pageSizeOptions", paginated: "paginated", selectable: "selectable", selectedRowIds: "selectedRowIds", showPageSizeSelector: "showPageSizeSelector", sortable: "sortable", zebra: "zebra" }, outputs: { cellEditStart: "cellEditStart", cellEditCommit: "cellEditCommit", rowClick: "rowClick", sortChange: "sortChange", paginationChange: "paginationChange", rowSelectionChange: "rowSelectionChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1422
1338
|
};
|
|
1423
1339
|
ModusWcTable = __decorate([
|
|
1424
1340
|
ProxyCmp({
|
|
1425
1341
|
inputs: ['caption', 'columns', 'currentPage', 'customClass', 'data', 'density', 'editable', 'hover', 'isRowSelectable', 'pageSizeOptions', 'paginated', 'selectable', 'selectedRowIds', 'showPageSizeSelector', 'sortable', 'zebra']
|
|
1426
1342
|
})
|
|
1427
1343
|
], ModusWcTable);
|
|
1428
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1344
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTable, decorators: [{
|
|
1429
1345
|
type: Component,
|
|
1430
1346
|
args: [{
|
|
1431
1347
|
selector: 'modus-wc-table',
|
|
@@ -1450,23 +1366,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1450
1366
|
type: Output
|
|
1451
1367
|
}] } });
|
|
1452
1368
|
let ModusWcTabs = class ModusWcTabs {
|
|
1453
|
-
z;
|
|
1454
|
-
el;
|
|
1455
|
-
tabChange = new EventEmitter();
|
|
1456
1369
|
constructor(c, r, z) {
|
|
1457
1370
|
this.z = z;
|
|
1371
|
+
this.tabChange = new EventEmitter();
|
|
1458
1372
|
c.detach();
|
|
1459
1373
|
this.el = r.nativeElement;
|
|
1460
1374
|
}
|
|
1461
|
-
static
|
|
1462
|
-
static
|
|
1375
|
+
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 }); }
|
|
1376
|
+
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" }, outputs: { tabChange: "tabChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1463
1377
|
};
|
|
1464
1378
|
ModusWcTabs = __decorate([
|
|
1465
1379
|
ProxyCmp({
|
|
1466
1380
|
inputs: ['activeTabIndex', 'customClass', 'size', 'tabStyle', 'tabs']
|
|
1467
1381
|
})
|
|
1468
1382
|
], ModusWcTabs);
|
|
1469
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1383
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTabs, decorators: [{
|
|
1470
1384
|
type: Component,
|
|
1471
1385
|
args: [{
|
|
1472
1386
|
selector: 'modus-wc-tabs',
|
|
@@ -1481,26 +1395,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1481
1395
|
type: Output
|
|
1482
1396
|
}] } });
|
|
1483
1397
|
let ModusWcTextInput = class ModusWcTextInput {
|
|
1484
|
-
z;
|
|
1485
|
-
el;
|
|
1486
|
-
clearClick = new EventEmitter();
|
|
1487
|
-
inputBlur = new EventEmitter();
|
|
1488
|
-
inputChange = new EventEmitter();
|
|
1489
|
-
inputFocus = new EventEmitter();
|
|
1490
1398
|
constructor(c, r, z) {
|
|
1491
1399
|
this.z = z;
|
|
1400
|
+
this.clearClick = new EventEmitter();
|
|
1401
|
+
this.inputBlur = new EventEmitter();
|
|
1402
|
+
this.inputChange = new EventEmitter();
|
|
1403
|
+
this.inputFocus = new EventEmitter();
|
|
1492
1404
|
c.detach();
|
|
1493
1405
|
this.el = r.nativeElement;
|
|
1494
1406
|
}
|
|
1495
|
-
static
|
|
1496
|
-
static
|
|
1407
|
+
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 }); }
|
|
1408
|
+
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" }, outputs: { clearClick: "clearClick", inputBlur: "inputBlur", inputChange: "inputChange", inputFocus: "inputFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1497
1409
|
};
|
|
1498
1410
|
ModusWcTextInput = __decorate([
|
|
1499
1411
|
ProxyCmp({
|
|
1500
1412
|
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']
|
|
1501
1413
|
})
|
|
1502
1414
|
], ModusWcTextInput);
|
|
1503
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1415
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTextInput, decorators: [{
|
|
1504
1416
|
type: Component,
|
|
1505
1417
|
args: [{
|
|
1506
1418
|
selector: 'modus-wc-text-input',
|
|
@@ -1521,25 +1433,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1521
1433
|
type: Output
|
|
1522
1434
|
}] } });
|
|
1523
1435
|
let ModusWcTextarea = class ModusWcTextarea {
|
|
1524
|
-
z;
|
|
1525
|
-
el;
|
|
1526
|
-
inputBlur = new EventEmitter();
|
|
1527
|
-
inputChange = new EventEmitter();
|
|
1528
|
-
inputFocus = new EventEmitter();
|
|
1529
1436
|
constructor(c, r, z) {
|
|
1530
1437
|
this.z = z;
|
|
1438
|
+
this.inputBlur = new EventEmitter();
|
|
1439
|
+
this.inputChange = new EventEmitter();
|
|
1440
|
+
this.inputFocus = new EventEmitter();
|
|
1531
1441
|
c.detach();
|
|
1532
1442
|
this.el = r.nativeElement;
|
|
1533
1443
|
}
|
|
1534
|
-
static
|
|
1535
|
-
static
|
|
1444
|
+
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 }); }
|
|
1445
|
+
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" }, outputs: { inputBlur: "inputBlur", inputChange: "inputChange", inputFocus: "inputFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1536
1446
|
};
|
|
1537
1447
|
ModusWcTextarea = __decorate([
|
|
1538
1448
|
ProxyCmp({
|
|
1539
1449
|
inputs: ['autoCorrect', 'bordered', 'customClass', 'disabled', 'enterkeyhint', 'feedback', 'inputId', 'inputTabIndex', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'readonly', 'required', 'rows', 'size', 'value']
|
|
1540
1450
|
})
|
|
1541
1451
|
], ModusWcTextarea);
|
|
1542
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1452
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTextarea, decorators: [{
|
|
1543
1453
|
type: Component,
|
|
1544
1454
|
args: [{
|
|
1545
1455
|
selector: 'modus-wc-textarea',
|
|
@@ -1558,22 +1468,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1558
1468
|
type: Output
|
|
1559
1469
|
}] } });
|
|
1560
1470
|
let ModusWcThemeProvider = class ModusWcThemeProvider {
|
|
1561
|
-
z;
|
|
1562
|
-
el;
|
|
1563
1471
|
constructor(c, r, z) {
|
|
1564
1472
|
this.z = z;
|
|
1565
1473
|
c.detach();
|
|
1566
1474
|
this.el = r.nativeElement;
|
|
1567
1475
|
}
|
|
1568
|
-
static
|
|
1569
|
-
static
|
|
1476
|
+
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 }); }
|
|
1477
|
+
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 }); }
|
|
1570
1478
|
};
|
|
1571
1479
|
ModusWcThemeProvider = __decorate([
|
|
1572
1480
|
ProxyCmp({
|
|
1573
1481
|
inputs: ['initialTheme']
|
|
1574
1482
|
})
|
|
1575
1483
|
], ModusWcThemeProvider);
|
|
1576
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1484
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcThemeProvider, decorators: [{
|
|
1577
1485
|
type: Component,
|
|
1578
1486
|
args: [{
|
|
1579
1487
|
selector: 'modus-wc-theme-provider',
|
|
@@ -1585,23 +1493,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1585
1493
|
}]
|
|
1586
1494
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1587
1495
|
let ModusWcThemeSwitcher = class ModusWcThemeSwitcher {
|
|
1588
|
-
z;
|
|
1589
|
-
el;
|
|
1590
|
-
themeChange = new EventEmitter();
|
|
1591
1496
|
constructor(c, r, z) {
|
|
1592
1497
|
this.z = z;
|
|
1498
|
+
this.themeChange = new EventEmitter();
|
|
1593
1499
|
c.detach();
|
|
1594
1500
|
this.el = r.nativeElement;
|
|
1595
1501
|
}
|
|
1596
|
-
static
|
|
1597
|
-
static
|
|
1502
|
+
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 }); }
|
|
1503
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcThemeSwitcher, selector: "modus-wc-theme-switcher", inputs: { customClass: "customClass" }, outputs: { themeChange: "themeChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1598
1504
|
};
|
|
1599
1505
|
ModusWcThemeSwitcher = __decorate([
|
|
1600
1506
|
ProxyCmp({
|
|
1601
1507
|
inputs: ['customClass']
|
|
1602
1508
|
})
|
|
1603
1509
|
], ModusWcThemeSwitcher);
|
|
1604
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1510
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcThemeSwitcher, decorators: [{
|
|
1605
1511
|
type: Component,
|
|
1606
1512
|
args: [{
|
|
1607
1513
|
selector: 'modus-wc-theme-switcher',
|
|
@@ -1616,25 +1522,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1616
1522
|
type: Output
|
|
1617
1523
|
}] } });
|
|
1618
1524
|
let ModusWcTimeInput = class ModusWcTimeInput {
|
|
1619
|
-
z;
|
|
1620
|
-
el;
|
|
1621
|
-
inputBlur = new EventEmitter();
|
|
1622
|
-
inputChange = new EventEmitter();
|
|
1623
|
-
inputFocus = new EventEmitter();
|
|
1624
1525
|
constructor(c, r, z) {
|
|
1625
1526
|
this.z = z;
|
|
1527
|
+
this.inputBlur = new EventEmitter();
|
|
1528
|
+
this.inputChange = new EventEmitter();
|
|
1529
|
+
this.inputFocus = new EventEmitter();
|
|
1626
1530
|
c.detach();
|
|
1627
1531
|
this.el = r.nativeElement;
|
|
1628
1532
|
}
|
|
1629
|
-
static
|
|
1630
|
-
static
|
|
1533
|
+
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 }); }
|
|
1534
|
+
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" }, outputs: { inputBlur: "inputBlur", inputChange: "inputChange", inputFocus: "inputFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1631
1535
|
};
|
|
1632
1536
|
ModusWcTimeInput = __decorate([
|
|
1633
1537
|
ProxyCmp({
|
|
1634
1538
|
inputs: ['autoComplete', 'bordered', 'customClass', 'datalistId', 'datalistOptions', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'readOnly', 'required', 'showSeconds', 'size', 'step', 'value']
|
|
1635
1539
|
})
|
|
1636
1540
|
], ModusWcTimeInput);
|
|
1637
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1541
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTimeInput, decorators: [{
|
|
1638
1542
|
type: Component,
|
|
1639
1543
|
args: [{
|
|
1640
1544
|
selector: 'modus-wc-time-input',
|
|
@@ -1653,22 +1557,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1653
1557
|
type: Output
|
|
1654
1558
|
}] } });
|
|
1655
1559
|
let ModusWcToast = class ModusWcToast {
|
|
1656
|
-
z;
|
|
1657
|
-
el;
|
|
1658
1560
|
constructor(c, r, z) {
|
|
1659
1561
|
this.z = z;
|
|
1660
1562
|
c.detach();
|
|
1661
1563
|
this.el = r.nativeElement;
|
|
1662
1564
|
}
|
|
1663
|
-
static
|
|
1664
|
-
static
|
|
1565
|
+
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 }); }
|
|
1566
|
+
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 }); }
|
|
1665
1567
|
};
|
|
1666
1568
|
ModusWcToast = __decorate([
|
|
1667
1569
|
ProxyCmp({
|
|
1668
1570
|
inputs: ['customClass', 'delay', 'position']
|
|
1669
1571
|
})
|
|
1670
1572
|
], ModusWcToast);
|
|
1671
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1573
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcToast, decorators: [{
|
|
1672
1574
|
type: Component,
|
|
1673
1575
|
args: [{
|
|
1674
1576
|
selector: 'modus-wc-toast',
|
|
@@ -1680,22 +1582,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1680
1582
|
}]
|
|
1681
1583
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1682
1584
|
let ModusWcToolbar = class ModusWcToolbar {
|
|
1683
|
-
z;
|
|
1684
|
-
el;
|
|
1685
1585
|
constructor(c, r, z) {
|
|
1686
1586
|
this.z = z;
|
|
1687
1587
|
c.detach();
|
|
1688
1588
|
this.el = r.nativeElement;
|
|
1689
1589
|
}
|
|
1690
|
-
static
|
|
1691
|
-
static
|
|
1590
|
+
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 }); }
|
|
1591
|
+
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 }); }
|
|
1692
1592
|
};
|
|
1693
1593
|
ModusWcToolbar = __decorate([
|
|
1694
1594
|
ProxyCmp({
|
|
1695
1595
|
inputs: ['customClass']
|
|
1696
1596
|
})
|
|
1697
1597
|
], ModusWcToolbar);
|
|
1698
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1598
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcToolbar, decorators: [{
|
|
1699
1599
|
type: Component,
|
|
1700
1600
|
args: [{
|
|
1701
1601
|
selector: 'modus-wc-toolbar',
|
|
@@ -1707,30 +1607,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1707
1607
|
}]
|
|
1708
1608
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1709
1609
|
let ModusWcTooltip = class ModusWcTooltip {
|
|
1710
|
-
z;
|
|
1711
|
-
el;
|
|
1712
|
-
dismissEscape = new EventEmitter();
|
|
1713
1610
|
constructor(c, r, z) {
|
|
1714
1611
|
this.z = z;
|
|
1612
|
+
this.dismissEscape = new EventEmitter();
|
|
1715
1613
|
c.detach();
|
|
1716
1614
|
this.el = r.nativeElement;
|
|
1717
1615
|
}
|
|
1718
|
-
static
|
|
1719
|
-
static
|
|
1616
|
+
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 }); }
|
|
1617
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTooltip, selector: "modus-wc-tooltip", inputs: { content: "content", contentElement: "contentElement", customClass: "customClass", disabled: "disabled", forceOpen: "forceOpen", position: "position", tooltipId: "tooltipId" }, outputs: { dismissEscape: "dismissEscape" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1720
1618
|
};
|
|
1721
1619
|
ModusWcTooltip = __decorate([
|
|
1722
1620
|
ProxyCmp({
|
|
1723
|
-
inputs: ['content', 'customClass', 'disabled', 'forceOpen', 'position', 'tooltipId']
|
|
1621
|
+
inputs: ['content', 'contentElement', 'customClass', 'disabled', 'forceOpen', 'position', 'tooltipId']
|
|
1724
1622
|
})
|
|
1725
1623
|
], ModusWcTooltip);
|
|
1726
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1624
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTooltip, decorators: [{
|
|
1727
1625
|
type: Component,
|
|
1728
1626
|
args: [{
|
|
1729
1627
|
selector: 'modus-wc-tooltip',
|
|
1730
1628
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1731
1629
|
template: '<ng-content></ng-content>',
|
|
1732
1630
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1733
|
-
inputs: ['content', 'customClass', 'disabled', 'forceOpen', 'position', 'tooltipId'],
|
|
1631
|
+
inputs: ['content', 'contentElement', 'customClass', 'disabled', 'forceOpen', 'position', 'tooltipId'],
|
|
1734
1632
|
outputs: ['dismissEscape'],
|
|
1735
1633
|
standalone: false
|
|
1736
1634
|
}]
|
|
@@ -1738,16 +1636,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1738
1636
|
type: Output
|
|
1739
1637
|
}] } });
|
|
1740
1638
|
let ModusWcTreeItem = class ModusWcTreeItem {
|
|
1741
|
-
z;
|
|
1742
|
-
el;
|
|
1743
|
-
itemSelect = new EventEmitter();
|
|
1744
1639
|
constructor(c, r, z) {
|
|
1745
1640
|
this.z = z;
|
|
1641
|
+
this.itemSelect = new EventEmitter();
|
|
1746
1642
|
c.detach();
|
|
1747
1643
|
this.el = r.nativeElement;
|
|
1748
1644
|
}
|
|
1749
|
-
static
|
|
1750
|
-
static
|
|
1645
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTreeItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1646
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTreeItem, selector: "modus-wc-tree-item", inputs: { blockExpand: "blockExpand", bordered: "bordered", checkbox: "checkbox", customClass: "customClass", disabled: "disabled", focused: "focused", hasSubmenu: "hasSubmenu", label: "label", selected: "selected", size: "size", subLabel: "subLabel", tooltipContent: "tooltipContent", tooltipPosition: "tooltipPosition", value: "value" }, outputs: { itemSelect: "itemSelect" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1751
1647
|
};
|
|
1752
1648
|
ModusWcTreeItem = __decorate([
|
|
1753
1649
|
ProxyCmp({
|
|
@@ -1755,7 +1651,7 @@ ModusWcTreeItem = __decorate([
|
|
|
1755
1651
|
methods: ['collapseSubmenu']
|
|
1756
1652
|
})
|
|
1757
1653
|
], ModusWcTreeItem);
|
|
1758
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1654
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTreeItem, decorators: [{
|
|
1759
1655
|
type: Component,
|
|
1760
1656
|
args: [{
|
|
1761
1657
|
selector: 'modus-wc-tree-item',
|
|
@@ -1770,24 +1666,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1770
1666
|
type: Output
|
|
1771
1667
|
}] } });
|
|
1772
1668
|
let ModusWcTreeMenu = class ModusWcTreeMenu {
|
|
1773
|
-
z;
|
|
1774
|
-
el;
|
|
1775
|
-
menuFocusout = new EventEmitter();
|
|
1776
|
-
menuSelectionChange = new EventEmitter();
|
|
1777
1669
|
constructor(c, r, z) {
|
|
1778
1670
|
this.z = z;
|
|
1671
|
+
this.menuFocusout = new EventEmitter();
|
|
1672
|
+
this.menuSelectionChange = new EventEmitter();
|
|
1779
1673
|
c.detach();
|
|
1780
1674
|
this.el = r.nativeElement;
|
|
1781
1675
|
}
|
|
1782
|
-
static
|
|
1783
|
-
static
|
|
1676
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTreeMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1677
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTreeMenu, selector: "modus-wc-tree-menu", inputs: { bordered: "bordered", customClass: "customClass", isSubMenu: "isSubMenu", orientation: "orientation", selectionMode: "selectionMode", size: "size" }, outputs: { menuFocusout: "menuFocusout", menuSelectionChange: "menuSelectionChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1784
1678
|
};
|
|
1785
1679
|
ModusWcTreeMenu = __decorate([
|
|
1786
1680
|
ProxyCmp({
|
|
1787
1681
|
inputs: ['bordered', 'customClass', 'isSubMenu', 'orientation', 'selectionMode', 'size']
|
|
1788
1682
|
})
|
|
1789
1683
|
], ModusWcTreeMenu);
|
|
1790
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1684
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTreeMenu, decorators: [{
|
|
1791
1685
|
type: Component,
|
|
1792
1686
|
args: [{
|
|
1793
1687
|
selector: 'modus-wc-tree-menu',
|
|
@@ -1804,22 +1698,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1804
1698
|
type: Output
|
|
1805
1699
|
}] } });
|
|
1806
1700
|
let ModusWcTypography = class ModusWcTypography {
|
|
1807
|
-
z;
|
|
1808
|
-
el;
|
|
1809
1701
|
constructor(c, r, z) {
|
|
1810
1702
|
this.z = z;
|
|
1811
1703
|
c.detach();
|
|
1812
1704
|
this.el = r.nativeElement;
|
|
1813
1705
|
}
|
|
1814
|
-
static
|
|
1815
|
-
static
|
|
1706
|
+
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 }); }
|
|
1707
|
+
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 }); }
|
|
1816
1708
|
};
|
|
1817
1709
|
ModusWcTypography = __decorate([
|
|
1818
1710
|
ProxyCmp({
|
|
1819
1711
|
inputs: ['customClass', 'hierarchy', 'label', 'size', 'weight']
|
|
1820
1712
|
})
|
|
1821
1713
|
], ModusWcTypography);
|
|
1822
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1714
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTypography, decorators: [{
|
|
1823
1715
|
type: Component,
|
|
1824
1716
|
args: [{
|
|
1825
1717
|
selector: 'modus-wc-typography',
|
|
@@ -1831,24 +1723,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1831
1723
|
}]
|
|
1832
1724
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1833
1725
|
let ModusWcUtilityPanel = class ModusWcUtilityPanel {
|
|
1834
|
-
z;
|
|
1835
|
-
el;
|
|
1836
|
-
panelOpened = new EventEmitter();
|
|
1837
|
-
panelClosed = new EventEmitter();
|
|
1838
1726
|
constructor(c, r, z) {
|
|
1839
1727
|
this.z = z;
|
|
1728
|
+
this.panelOpened = new EventEmitter();
|
|
1729
|
+
this.panelClosed = new EventEmitter();
|
|
1840
1730
|
c.detach();
|
|
1841
1731
|
this.el = r.nativeElement;
|
|
1842
1732
|
}
|
|
1843
|
-
static
|
|
1844
|
-
static
|
|
1733
|
+
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 }); }
|
|
1734
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcUtilityPanel, selector: "modus-wc-utility-panel", inputs: { customClass: "customClass", expanded: "expanded", pushContent: "pushContent", targetElement: "targetElement" }, outputs: { panelOpened: "panelOpened", panelClosed: "panelClosed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1845
1735
|
};
|
|
1846
1736
|
ModusWcUtilityPanel = __decorate([
|
|
1847
1737
|
ProxyCmp({
|
|
1848
1738
|
inputs: ['customClass', 'expanded', 'pushContent', 'targetElement']
|
|
1849
1739
|
})
|
|
1850
1740
|
], ModusWcUtilityPanel);
|
|
1851
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1741
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcUtilityPanel, decorators: [{
|
|
1852
1742
|
type: Component,
|
|
1853
1743
|
args: [{
|
|
1854
1744
|
selector: 'modus-wc-utility-panel',
|
|
@@ -1924,26 +1814,38 @@ const DIRECTIVES = [
|
|
|
1924
1814
|
];
|
|
1925
1815
|
|
|
1926
1816
|
class ModusAngularComponentsModule {
|
|
1927
|
-
static
|
|
1928
|
-
static
|
|
1929
|
-
static
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
1817
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusAngularComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1818
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.12", ngImport: i0, type: ModusAngularComponentsModule, declarations: [ModusWcAccordion, ModusWcAlert, ModusWcAppMenu, ModusWcAutocomplete, ModusWcAvatar, ModusWcBadge, ModusWcBreadcrumbs, ModusWcButton, ModusWcButtonGroup, ModusWcCard, ModusWcCheckbox, ModusWcChip, ModusWcCollapse, ModusWcDate, ModusWcDivider, ModusWcDropdownMenu, ModusWcFileDropzone, ModusWcHandle, ModusWcIcon, ModusWcInputFeedback, ModusWcInputLabel, ModusWcLink, ModusWcLoader, ModusWcLogo, ModusWcMenu, ModusWcMenuItem, ModusWcModal, ModusWcNavbar, ModusWcNumberInput, ModusWcPagination, ModusWcPanel, ModusWcProfileMenu, ModusWcProgress, ModusWcRadio, ModusWcRating, ModusWcSelect, ModusWcSideNavigation, ModusWcSkeleton, ModusWcSlider, ModusWcStepper, ModusWcSwitch, ModusWcTable, ModusWcTabs, ModusWcTextInput, ModusWcTextarea, ModusWcThemeProvider, ModusWcThemeSwitcher, ModusWcTimeInput, ModusWcToast, ModusWcToolbar, ModusWcTooltip, ModusWcTreeItem, ModusWcTreeMenu, ModusWcTypography, ModusWcUtilityPanel], exports: [ModusWcAccordion, ModusWcAlert, ModusWcAppMenu, ModusWcAutocomplete, ModusWcAvatar, ModusWcBadge, ModusWcBreadcrumbs, ModusWcButton, ModusWcButtonGroup, ModusWcCard, ModusWcCheckbox, ModusWcChip, ModusWcCollapse, ModusWcDate, ModusWcDivider, ModusWcDropdownMenu, ModusWcFileDropzone, ModusWcHandle, ModusWcIcon, ModusWcInputFeedback, ModusWcInputLabel, ModusWcLink, ModusWcLoader, ModusWcLogo, ModusWcMenu, ModusWcMenuItem, ModusWcModal, ModusWcNavbar, ModusWcNumberInput, ModusWcPagination, ModusWcPanel, ModusWcProfileMenu, ModusWcProgress, ModusWcRadio, ModusWcRating, ModusWcSelect, ModusWcSideNavigation, ModusWcSkeleton, ModusWcSlider, ModusWcStepper, ModusWcSwitch, ModusWcTable, ModusWcTabs, ModusWcTextInput, ModusWcTextarea, ModusWcThemeProvider, ModusWcThemeSwitcher, ModusWcTimeInput, ModusWcToast, ModusWcToolbar, ModusWcTooltip, ModusWcTreeItem, ModusWcTreeMenu, ModusWcTypography, ModusWcUtilityPanel] }); }
|
|
1819
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusAngularComponentsModule, providers: [
|
|
1820
|
+
{
|
|
1821
|
+
provide: APP_INITIALIZER,
|
|
1822
|
+
useFactory: () => () => {
|
|
1823
|
+
// Configure asset path for Angular applications
|
|
1824
|
+
// Assets should be copied to /assets/ via angular.json configuration
|
|
1825
|
+
setAssetPath('/assets/');
|
|
1826
|
+
defineCustomElements(window);
|
|
1827
|
+
},
|
|
1828
|
+
multi: true,
|
|
1829
|
+
}
|
|
1830
|
+
] }); }
|
|
1935
1831
|
}
|
|
1936
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1832
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusAngularComponentsModule, decorators: [{
|
|
1937
1833
|
type: NgModule,
|
|
1938
1834
|
args: [{
|
|
1939
1835
|
declarations: [...DIRECTIVES],
|
|
1940
1836
|
exports: [...DIRECTIVES],
|
|
1941
1837
|
providers: [
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1838
|
+
{
|
|
1839
|
+
provide: APP_INITIALIZER,
|
|
1840
|
+
useFactory: () => () => {
|
|
1841
|
+
// Configure asset path for Angular applications
|
|
1842
|
+
// Assets should be copied to /assets/ via angular.json configuration
|
|
1843
|
+
setAssetPath('/assets/');
|
|
1844
|
+
defineCustomElements(window);
|
|
1845
|
+
},
|
|
1846
|
+
multi: true,
|
|
1847
|
+
}
|
|
1848
|
+
]
|
|
1947
1849
|
}]
|
|
1948
1850
|
}] });
|
|
1949
1851
|
|