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