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