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