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