@trimble-oss/moduswebcomponents-angular 1.0.2-ng17 → 1.0.2-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 -1189
- 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", isSubMenu: "isSubMenu", 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', 'isSubMenu', '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,14 +596,16 @@ 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", hasSubmenu: "hasSubmenu", 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({
|
|
@@ -571,7 +613,7 @@ ModusWcMenuItem = __decorate([
|
|
|
571
613
|
methods: ['collapseSubmenu']
|
|
572
614
|
})
|
|
573
615
|
], ModusWcMenuItem);
|
|
574
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
616
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcMenuItem, decorators: [{
|
|
575
617
|
type: Component,
|
|
576
618
|
args: [{
|
|
577
619
|
selector: 'modus-wc-menu-item',
|
|
@@ -582,20 +624,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
582
624
|
}]
|
|
583
625
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
584
626
|
let ModusWcModal = class ModusWcModal {
|
|
627
|
+
z;
|
|
628
|
+
el;
|
|
585
629
|
constructor(c, r, z) {
|
|
586
630
|
this.z = z;
|
|
587
631
|
c.detach();
|
|
588
632
|
this.el = r.nativeElement;
|
|
589
633
|
}
|
|
590
|
-
static
|
|
591
|
-
static
|
|
634
|
+
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 });
|
|
635
|
+
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 });
|
|
592
636
|
};
|
|
593
637
|
ModusWcModal = __decorate([
|
|
594
638
|
ProxyCmp({
|
|
595
639
|
inputs: ['backdrop', 'customClass', 'fullscreen', 'modalId', 'position', 'showClose', 'showFullscreenToggle']
|
|
596
640
|
})
|
|
597
641
|
], ModusWcModal);
|
|
598
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
642
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcModal, decorators: [{
|
|
599
643
|
type: Component,
|
|
600
644
|
args: [{
|
|
601
645
|
selector: 'modus-wc-modal',
|
|
@@ -606,21 +650,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
606
650
|
}]
|
|
607
651
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
608
652
|
let ModusWcNavbar = class ModusWcNavbar {
|
|
653
|
+
z;
|
|
654
|
+
el;
|
|
609
655
|
constructor(c, r, z) {
|
|
610
656
|
this.z = z;
|
|
611
657
|
c.detach();
|
|
612
658
|
this.el = r.nativeElement;
|
|
613
659
|
proxyOutputs(this, this.el, ['aiClick', 'appsClick', 'appsMenuOpenChange', 'condensedMenuOpenChange', 'helpClick', 'mainMenuOpenChange', 'myTrimbleClick', 'notificationsClick', 'notificationsMenuOpenChange', 'searchChange', 'searchClick', 'searchInputOpenChange', 'signOutClick', 'trimbleLogoClick', 'userMenuOpenChange']);
|
|
614
660
|
}
|
|
615
|
-
static
|
|
616
|
-
static
|
|
661
|
+
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 });
|
|
662
|
+
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 });
|
|
617
663
|
};
|
|
618
664
|
ModusWcNavbar = __decorate([
|
|
619
665
|
ProxyCmp({
|
|
620
666
|
inputs: ['appsMenuOpen', 'condensed', 'condensedMenuOpen', 'customClass', 'mainMenuOpen', 'notificationsMenuOpen', 'searchDebounceMs', 'searchInputOpen', 'textOverrides', 'userCard', 'userMenuOpen', 'visibility']
|
|
621
667
|
})
|
|
622
668
|
], ModusWcNavbar);
|
|
623
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
669
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcNavbar, decorators: [{
|
|
624
670
|
type: Component,
|
|
625
671
|
args: [{
|
|
626
672
|
selector: 'modus-wc-navbar',
|
|
@@ -631,21 +677,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
631
677
|
}]
|
|
632
678
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
633
679
|
let ModusWcNumberInput = class ModusWcNumberInput {
|
|
680
|
+
z;
|
|
681
|
+
el;
|
|
634
682
|
constructor(c, r, z) {
|
|
635
683
|
this.z = z;
|
|
636
684
|
c.detach();
|
|
637
685
|
this.el = r.nativeElement;
|
|
638
686
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
639
687
|
}
|
|
640
|
-
static
|
|
641
|
-
static
|
|
688
|
+
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 });
|
|
689
|
+
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 });
|
|
642
690
|
};
|
|
643
691
|
ModusWcNumberInput = __decorate([
|
|
644
692
|
ProxyCmp({
|
|
645
693
|
inputs: ['autoComplete', 'bordered', 'currencySymbol', 'customClass', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'placeholder', 'readOnly', 'required', 'size', 'step', 'type', 'value']
|
|
646
694
|
})
|
|
647
695
|
], ModusWcNumberInput);
|
|
648
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
696
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcNumberInput, decorators: [{
|
|
649
697
|
type: Component,
|
|
650
698
|
args: [{
|
|
651
699
|
selector: 'modus-wc-number-input',
|
|
@@ -656,21 +704,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
656
704
|
}]
|
|
657
705
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
658
706
|
let ModusWcPagination = class ModusWcPagination {
|
|
707
|
+
z;
|
|
708
|
+
el;
|
|
659
709
|
constructor(c, r, z) {
|
|
660
710
|
this.z = z;
|
|
661
711
|
c.detach();
|
|
662
712
|
this.el = r.nativeElement;
|
|
663
713
|
proxyOutputs(this, this.el, ['pageChange']);
|
|
664
714
|
}
|
|
665
|
-
static
|
|
666
|
-
static
|
|
715
|
+
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 });
|
|
716
|
+
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 });
|
|
667
717
|
};
|
|
668
718
|
ModusWcPagination = __decorate([
|
|
669
719
|
ProxyCmp({
|
|
670
720
|
inputs: ['ariaLabelValues', 'count', 'customClass', 'nextButtonText', 'page', 'prevButtonText', 'size']
|
|
671
721
|
})
|
|
672
722
|
], ModusWcPagination);
|
|
673
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
723
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcPagination, decorators: [{
|
|
674
724
|
type: Component,
|
|
675
725
|
args: [{
|
|
676
726
|
selector: 'modus-wc-pagination',
|
|
@@ -681,20 +731,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
681
731
|
}]
|
|
682
732
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
683
733
|
let ModusWcProgress = class ModusWcProgress {
|
|
734
|
+
z;
|
|
735
|
+
el;
|
|
684
736
|
constructor(c, r, z) {
|
|
685
737
|
this.z = z;
|
|
686
738
|
c.detach();
|
|
687
739
|
this.el = r.nativeElement;
|
|
688
740
|
}
|
|
689
|
-
static
|
|
690
|
-
static
|
|
741
|
+
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 });
|
|
742
|
+
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 });
|
|
691
743
|
};
|
|
692
744
|
ModusWcProgress = __decorate([
|
|
693
745
|
ProxyCmp({
|
|
694
746
|
inputs: ['customClass', 'indeterminate', 'label', 'max', 'value', 'variant']
|
|
695
747
|
})
|
|
696
748
|
], ModusWcProgress);
|
|
697
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
749
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcProgress, decorators: [{
|
|
698
750
|
type: Component,
|
|
699
751
|
args: [{
|
|
700
752
|
selector: 'modus-wc-progress',
|
|
@@ -705,21 +757,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
705
757
|
}]
|
|
706
758
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
707
759
|
let ModusWcRadio = class ModusWcRadio {
|
|
760
|
+
z;
|
|
761
|
+
el;
|
|
708
762
|
constructor(c, r, z) {
|
|
709
763
|
this.z = z;
|
|
710
764
|
c.detach();
|
|
711
765
|
this.el = r.nativeElement;
|
|
712
766
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
713
767
|
}
|
|
714
|
-
static
|
|
715
|
-
static
|
|
768
|
+
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 });
|
|
769
|
+
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 });
|
|
716
770
|
};
|
|
717
771
|
ModusWcRadio = __decorate([
|
|
718
772
|
ProxyCmp({
|
|
719
773
|
inputs: ['customClass', 'disabled', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value']
|
|
720
774
|
})
|
|
721
775
|
], ModusWcRadio);
|
|
722
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
776
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcRadio, decorators: [{
|
|
723
777
|
type: Component,
|
|
724
778
|
args: [{
|
|
725
779
|
selector: 'modus-wc-radio',
|
|
@@ -730,21 +784,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
730
784
|
}]
|
|
731
785
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
732
786
|
let ModusWcRating = class ModusWcRating {
|
|
787
|
+
z;
|
|
788
|
+
el;
|
|
733
789
|
constructor(c, r, z) {
|
|
734
790
|
this.z = z;
|
|
735
791
|
c.detach();
|
|
736
792
|
this.el = r.nativeElement;
|
|
737
793
|
proxyOutputs(this, this.el, ['ratingChange']);
|
|
738
794
|
}
|
|
739
|
-
static
|
|
740
|
-
static
|
|
795
|
+
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 });
|
|
796
|
+
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 });
|
|
741
797
|
};
|
|
742
798
|
ModusWcRating = __decorate([
|
|
743
799
|
ProxyCmp({
|
|
744
800
|
inputs: ['allowHalf', 'count', 'customClass', 'disabled', 'getAriaLabelText', 'size', 'value', 'variant']
|
|
745
801
|
})
|
|
746
802
|
], ModusWcRating);
|
|
747
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
803
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcRating, decorators: [{
|
|
748
804
|
type: Component,
|
|
749
805
|
args: [{
|
|
750
806
|
selector: 'modus-wc-rating',
|
|
@@ -755,21 +811,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
755
811
|
}]
|
|
756
812
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
757
813
|
let ModusWcSelect = class ModusWcSelect {
|
|
814
|
+
z;
|
|
815
|
+
el;
|
|
758
816
|
constructor(c, r, z) {
|
|
759
817
|
this.z = z;
|
|
760
818
|
c.detach();
|
|
761
819
|
this.el = r.nativeElement;
|
|
762
820
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
763
821
|
}
|
|
764
|
-
static
|
|
765
|
-
static
|
|
822
|
+
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 });
|
|
823
|
+
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 });
|
|
766
824
|
};
|
|
767
825
|
ModusWcSelect = __decorate([
|
|
768
826
|
ProxyCmp({
|
|
769
827
|
inputs: ['bordered', 'customClass', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'name', 'options', 'required', 'size', 'value']
|
|
770
828
|
})
|
|
771
829
|
], ModusWcSelect);
|
|
772
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
830
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcSelect, decorators: [{
|
|
773
831
|
type: Component,
|
|
774
832
|
args: [{
|
|
775
833
|
selector: 'modus-wc-select',
|
|
@@ -780,21 +838,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
780
838
|
}]
|
|
781
839
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
782
840
|
let ModusWcSideNavigation = class ModusWcSideNavigation {
|
|
841
|
+
z;
|
|
842
|
+
el;
|
|
783
843
|
constructor(c, r, z) {
|
|
784
844
|
this.z = z;
|
|
785
845
|
c.detach();
|
|
786
846
|
this.el = r.nativeElement;
|
|
787
847
|
proxyOutputs(this, this.el, ['expandedChange']);
|
|
788
848
|
}
|
|
789
|
-
static
|
|
790
|
-
static
|
|
849
|
+
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 });
|
|
850
|
+
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 });
|
|
791
851
|
};
|
|
792
852
|
ModusWcSideNavigation = __decorate([
|
|
793
853
|
ProxyCmp({
|
|
794
854
|
inputs: ['collapseOnClickOutside', 'customClass', 'expanded', 'maxWidth', 'mode', 'targetContent']
|
|
795
855
|
})
|
|
796
856
|
], ModusWcSideNavigation);
|
|
797
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
857
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcSideNavigation, decorators: [{
|
|
798
858
|
type: Component,
|
|
799
859
|
args: [{
|
|
800
860
|
selector: 'modus-wc-side-navigation',
|
|
@@ -805,20 +865,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
805
865
|
}]
|
|
806
866
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
807
867
|
let ModusWcSkeleton = class ModusWcSkeleton {
|
|
868
|
+
z;
|
|
869
|
+
el;
|
|
808
870
|
constructor(c, r, z) {
|
|
809
871
|
this.z = z;
|
|
810
872
|
c.detach();
|
|
811
873
|
this.el = r.nativeElement;
|
|
812
874
|
}
|
|
813
|
-
static
|
|
814
|
-
static
|
|
875
|
+
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 });
|
|
876
|
+
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 });
|
|
815
877
|
};
|
|
816
878
|
ModusWcSkeleton = __decorate([
|
|
817
879
|
ProxyCmp({
|
|
818
880
|
inputs: ['customClass', 'height', 'shape', 'width']
|
|
819
881
|
})
|
|
820
882
|
], ModusWcSkeleton);
|
|
821
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
883
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcSkeleton, decorators: [{
|
|
822
884
|
type: Component,
|
|
823
885
|
args: [{
|
|
824
886
|
selector: 'modus-wc-skeleton',
|
|
@@ -829,21 +891,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
829
891
|
}]
|
|
830
892
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
831
893
|
let ModusWcSlider = class ModusWcSlider {
|
|
894
|
+
z;
|
|
895
|
+
el;
|
|
832
896
|
constructor(c, r, z) {
|
|
833
897
|
this.z = z;
|
|
834
898
|
c.detach();
|
|
835
899
|
this.el = r.nativeElement;
|
|
836
900
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
837
901
|
}
|
|
838
|
-
static
|
|
839
|
-
static
|
|
902
|
+
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 });
|
|
903
|
+
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 });
|
|
840
904
|
};
|
|
841
905
|
ModusWcSlider = __decorate([
|
|
842
906
|
ProxyCmp({
|
|
843
907
|
inputs: ['customClass', 'disabled', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'required', 'size', 'step', 'value']
|
|
844
908
|
})
|
|
845
909
|
], ModusWcSlider);
|
|
846
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
910
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcSlider, decorators: [{
|
|
847
911
|
type: Component,
|
|
848
912
|
args: [{
|
|
849
913
|
selector: 'modus-wc-slider',
|
|
@@ -854,20 +918,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
854
918
|
}]
|
|
855
919
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
856
920
|
let ModusWcStepper = class ModusWcStepper {
|
|
921
|
+
z;
|
|
922
|
+
el;
|
|
857
923
|
constructor(c, r, z) {
|
|
858
924
|
this.z = z;
|
|
859
925
|
c.detach();
|
|
860
926
|
this.el = r.nativeElement;
|
|
861
927
|
}
|
|
862
|
-
static
|
|
863
|
-
static
|
|
928
|
+
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 });
|
|
929
|
+
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 });
|
|
864
930
|
};
|
|
865
931
|
ModusWcStepper = __decorate([
|
|
866
932
|
ProxyCmp({
|
|
867
933
|
inputs: ['customClass', 'orientation', 'steps']
|
|
868
934
|
})
|
|
869
935
|
], ModusWcStepper);
|
|
870
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
936
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcStepper, decorators: [{
|
|
871
937
|
type: Component,
|
|
872
938
|
args: [{
|
|
873
939
|
selector: 'modus-wc-stepper',
|
|
@@ -878,21 +944,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
878
944
|
}]
|
|
879
945
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
880
946
|
let ModusWcSwitch = class ModusWcSwitch {
|
|
947
|
+
z;
|
|
948
|
+
el;
|
|
881
949
|
constructor(c, r, z) {
|
|
882
950
|
this.z = z;
|
|
883
951
|
c.detach();
|
|
884
952
|
this.el = r.nativeElement;
|
|
885
953
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
886
954
|
}
|
|
887
|
-
static
|
|
888
|
-
static
|
|
955
|
+
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 });
|
|
956
|
+
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 });
|
|
889
957
|
};
|
|
890
958
|
ModusWcSwitch = __decorate([
|
|
891
959
|
ProxyCmp({
|
|
892
960
|
inputs: ['customClass', 'disabled', 'indeterminate', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value']
|
|
893
961
|
})
|
|
894
962
|
], ModusWcSwitch);
|
|
895
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
963
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcSwitch, decorators: [{
|
|
896
964
|
type: Component,
|
|
897
965
|
args: [{
|
|
898
966
|
selector: 'modus-wc-switch',
|
|
@@ -903,21 +971,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
903
971
|
}]
|
|
904
972
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
905
973
|
let ModusWcTable = class ModusWcTable {
|
|
974
|
+
z;
|
|
975
|
+
el;
|
|
906
976
|
constructor(c, r, z) {
|
|
907
977
|
this.z = z;
|
|
908
978
|
c.detach();
|
|
909
979
|
this.el = r.nativeElement;
|
|
910
980
|
proxyOutputs(this, this.el, ['cellEditStart', 'cellEditCommit', 'rowClick', 'sortChange', 'paginationChange', 'rowSelectionChange']);
|
|
911
981
|
}
|
|
912
|
-
static
|
|
913
|
-
static
|
|
982
|
+
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 });
|
|
983
|
+
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 });
|
|
914
984
|
};
|
|
915
985
|
ModusWcTable = __decorate([
|
|
916
986
|
ProxyCmp({
|
|
917
987
|
inputs: ['caption', 'columns', 'currentPage', 'customClass', 'data', 'density', 'editable', 'hover', 'pageSizeOptions', 'paginated', 'selectable', 'selectedRowIds', 'showPageSizeSelector', 'sortable', 'zebra']
|
|
918
988
|
})
|
|
919
989
|
], ModusWcTable);
|
|
920
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
990
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcTable, decorators: [{
|
|
921
991
|
type: Component,
|
|
922
992
|
args: [{
|
|
923
993
|
selector: 'modus-wc-table',
|
|
@@ -928,21 +998,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
928
998
|
}]
|
|
929
999
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
930
1000
|
let ModusWcTabs = class ModusWcTabs {
|
|
1001
|
+
z;
|
|
1002
|
+
el;
|
|
931
1003
|
constructor(c, r, z) {
|
|
932
1004
|
this.z = z;
|
|
933
1005
|
c.detach();
|
|
934
1006
|
this.el = r.nativeElement;
|
|
935
1007
|
proxyOutputs(this, this.el, ['tabChange']);
|
|
936
1008
|
}
|
|
937
|
-
static
|
|
938
|
-
static
|
|
1009
|
+
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 });
|
|
1010
|
+
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 });
|
|
939
1011
|
};
|
|
940
1012
|
ModusWcTabs = __decorate([
|
|
941
1013
|
ProxyCmp({
|
|
942
1014
|
inputs: ['activeTabIndex', 'customClass', 'size', 'tabStyle', 'tabs']
|
|
943
1015
|
})
|
|
944
1016
|
], ModusWcTabs);
|
|
945
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1017
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcTabs, decorators: [{
|
|
946
1018
|
type: Component,
|
|
947
1019
|
args: [{
|
|
948
1020
|
selector: 'modus-wc-tabs',
|
|
@@ -953,21 +1025,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
953
1025
|
}]
|
|
954
1026
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
955
1027
|
let ModusWcTextInput = class ModusWcTextInput {
|
|
1028
|
+
z;
|
|
1029
|
+
el;
|
|
956
1030
|
constructor(c, r, z) {
|
|
957
1031
|
this.z = z;
|
|
958
1032
|
c.detach();
|
|
959
1033
|
this.el = r.nativeElement;
|
|
960
1034
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
961
1035
|
}
|
|
962
|
-
static
|
|
963
|
-
static
|
|
1036
|
+
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 });
|
|
1037
|
+
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 });
|
|
964
1038
|
};
|
|
965
1039
|
ModusWcTextInput = __decorate([
|
|
966
1040
|
ProxyCmp({
|
|
967
1041
|
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']
|
|
968
1042
|
})
|
|
969
1043
|
], ModusWcTextInput);
|
|
970
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1044
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcTextInput, decorators: [{
|
|
971
1045
|
type: Component,
|
|
972
1046
|
args: [{
|
|
973
1047
|
selector: 'modus-wc-text-input',
|
|
@@ -978,21 +1052,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
978
1052
|
}]
|
|
979
1053
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
980
1054
|
let ModusWcTextarea = class ModusWcTextarea {
|
|
1055
|
+
z;
|
|
1056
|
+
el;
|
|
981
1057
|
constructor(c, r, z) {
|
|
982
1058
|
this.z = z;
|
|
983
1059
|
c.detach();
|
|
984
1060
|
this.el = r.nativeElement;
|
|
985
1061
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
986
1062
|
}
|
|
987
|
-
static
|
|
988
|
-
static
|
|
1063
|
+
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 });
|
|
1064
|
+
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 });
|
|
989
1065
|
};
|
|
990
1066
|
ModusWcTextarea = __decorate([
|
|
991
1067
|
ProxyCmp({
|
|
992
1068
|
inputs: ['autoCorrect', 'bordered', 'customClass', 'disabled', 'enterkeyhint', 'feedback', 'inputId', 'inputTabIndex', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'readonly', 'required', 'rows', 'size', 'value']
|
|
993
1069
|
})
|
|
994
1070
|
], ModusWcTextarea);
|
|
995
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1071
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcTextarea, decorators: [{
|
|
996
1072
|
type: Component,
|
|
997
1073
|
args: [{
|
|
998
1074
|
selector: 'modus-wc-textarea',
|
|
@@ -1003,20 +1079,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
1003
1079
|
}]
|
|
1004
1080
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1005
1081
|
let ModusWcThemeProvider = class ModusWcThemeProvider {
|
|
1082
|
+
z;
|
|
1083
|
+
el;
|
|
1006
1084
|
constructor(c, r, z) {
|
|
1007
1085
|
this.z = z;
|
|
1008
1086
|
c.detach();
|
|
1009
1087
|
this.el = r.nativeElement;
|
|
1010
1088
|
}
|
|
1011
|
-
static
|
|
1012
|
-
static
|
|
1089
|
+
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 });
|
|
1090
|
+
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 });
|
|
1013
1091
|
};
|
|
1014
1092
|
ModusWcThemeProvider = __decorate([
|
|
1015
1093
|
ProxyCmp({
|
|
1016
1094
|
inputs: ['initialTheme']
|
|
1017
1095
|
})
|
|
1018
1096
|
], ModusWcThemeProvider);
|
|
1019
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1097
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcThemeProvider, decorators: [{
|
|
1020
1098
|
type: Component,
|
|
1021
1099
|
args: [{
|
|
1022
1100
|
selector: 'modus-wc-theme-provider',
|
|
@@ -1027,21 +1105,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
1027
1105
|
}]
|
|
1028
1106
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1029
1107
|
let ModusWcThemeSwitcher = class ModusWcThemeSwitcher {
|
|
1108
|
+
z;
|
|
1109
|
+
el;
|
|
1030
1110
|
constructor(c, r, z) {
|
|
1031
1111
|
this.z = z;
|
|
1032
1112
|
c.detach();
|
|
1033
1113
|
this.el = r.nativeElement;
|
|
1034
1114
|
proxyOutputs(this, this.el, ['themeChange']);
|
|
1035
1115
|
}
|
|
1036
|
-
static
|
|
1037
|
-
static
|
|
1116
|
+
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 });
|
|
1117
|
+
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 });
|
|
1038
1118
|
};
|
|
1039
1119
|
ModusWcThemeSwitcher = __decorate([
|
|
1040
1120
|
ProxyCmp({
|
|
1041
1121
|
inputs: ['customClass']
|
|
1042
1122
|
})
|
|
1043
1123
|
], ModusWcThemeSwitcher);
|
|
1044
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1124
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcThemeSwitcher, decorators: [{
|
|
1045
1125
|
type: Component,
|
|
1046
1126
|
args: [{
|
|
1047
1127
|
selector: 'modus-wc-theme-switcher',
|
|
@@ -1052,21 +1132,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
1052
1132
|
}]
|
|
1053
1133
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1054
1134
|
let ModusWcTimeInput = class ModusWcTimeInput {
|
|
1135
|
+
z;
|
|
1136
|
+
el;
|
|
1055
1137
|
constructor(c, r, z) {
|
|
1056
1138
|
this.z = z;
|
|
1057
1139
|
c.detach();
|
|
1058
1140
|
this.el = r.nativeElement;
|
|
1059
1141
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
1060
1142
|
}
|
|
1061
|
-
static
|
|
1062
|
-
static
|
|
1143
|
+
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 });
|
|
1144
|
+
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 });
|
|
1063
1145
|
};
|
|
1064
1146
|
ModusWcTimeInput = __decorate([
|
|
1065
1147
|
ProxyCmp({
|
|
1066
1148
|
inputs: ['autoComplete', 'bordered', 'customClass', 'datalistId', 'datalistOptions', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'readOnly', 'required', 'showSeconds', 'size', 'step', 'value']
|
|
1067
1149
|
})
|
|
1068
1150
|
], ModusWcTimeInput);
|
|
1069
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1151
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcTimeInput, decorators: [{
|
|
1070
1152
|
type: Component,
|
|
1071
1153
|
args: [{
|
|
1072
1154
|
selector: 'modus-wc-time-input',
|
|
@@ -1077,20 +1159,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
1077
1159
|
}]
|
|
1078
1160
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1079
1161
|
let ModusWcToast = class ModusWcToast {
|
|
1162
|
+
z;
|
|
1163
|
+
el;
|
|
1080
1164
|
constructor(c, r, z) {
|
|
1081
1165
|
this.z = z;
|
|
1082
1166
|
c.detach();
|
|
1083
1167
|
this.el = r.nativeElement;
|
|
1084
1168
|
}
|
|
1085
|
-
static
|
|
1086
|
-
static
|
|
1169
|
+
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 });
|
|
1170
|
+
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 });
|
|
1087
1171
|
};
|
|
1088
1172
|
ModusWcToast = __decorate([
|
|
1089
1173
|
ProxyCmp({
|
|
1090
1174
|
inputs: ['customClass', 'delay', 'position']
|
|
1091
1175
|
})
|
|
1092
1176
|
], ModusWcToast);
|
|
1093
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1177
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcToast, decorators: [{
|
|
1094
1178
|
type: Component,
|
|
1095
1179
|
args: [{
|
|
1096
1180
|
selector: 'modus-wc-toast',
|
|
@@ -1101,20 +1185,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
1101
1185
|
}]
|
|
1102
1186
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1103
1187
|
let ModusWcToolbar = class ModusWcToolbar {
|
|
1188
|
+
z;
|
|
1189
|
+
el;
|
|
1104
1190
|
constructor(c, r, z) {
|
|
1105
1191
|
this.z = z;
|
|
1106
1192
|
c.detach();
|
|
1107
1193
|
this.el = r.nativeElement;
|
|
1108
1194
|
}
|
|
1109
|
-
static
|
|
1110
|
-
static
|
|
1195
|
+
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 });
|
|
1196
|
+
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 });
|
|
1111
1197
|
};
|
|
1112
1198
|
ModusWcToolbar = __decorate([
|
|
1113
1199
|
ProxyCmp({
|
|
1114
1200
|
inputs: ['customClass']
|
|
1115
1201
|
})
|
|
1116
1202
|
], ModusWcToolbar);
|
|
1117
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1203
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcToolbar, decorators: [{
|
|
1118
1204
|
type: Component,
|
|
1119
1205
|
args: [{
|
|
1120
1206
|
selector: 'modus-wc-toolbar',
|
|
@@ -1125,21 +1211,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
1125
1211
|
}]
|
|
1126
1212
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1127
1213
|
let ModusWcTooltip = class ModusWcTooltip {
|
|
1214
|
+
z;
|
|
1215
|
+
el;
|
|
1128
1216
|
constructor(c, r, z) {
|
|
1129
1217
|
this.z = z;
|
|
1130
1218
|
c.detach();
|
|
1131
1219
|
this.el = r.nativeElement;
|
|
1132
1220
|
proxyOutputs(this, this.el, ['dismissEscape']);
|
|
1133
1221
|
}
|
|
1134
|
-
static
|
|
1135
|
-
static
|
|
1222
|
+
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 });
|
|
1223
|
+
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 });
|
|
1136
1224
|
};
|
|
1137
1225
|
ModusWcTooltip = __decorate([
|
|
1138
1226
|
ProxyCmp({
|
|
1139
1227
|
inputs: ['content', 'customClass', 'disabled', 'forceOpen', 'position', 'tooltipId']
|
|
1140
1228
|
})
|
|
1141
1229
|
], ModusWcTooltip);
|
|
1142
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1230
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcTooltip, decorators: [{
|
|
1143
1231
|
type: Component,
|
|
1144
1232
|
args: [{
|
|
1145
1233
|
selector: 'modus-wc-tooltip',
|
|
@@ -1150,20 +1238,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
1150
1238
|
}]
|
|
1151
1239
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1152
1240
|
let ModusWcTypography = class ModusWcTypography {
|
|
1241
|
+
z;
|
|
1242
|
+
el;
|
|
1153
1243
|
constructor(c, r, z) {
|
|
1154
1244
|
this.z = z;
|
|
1155
1245
|
c.detach();
|
|
1156
1246
|
this.el = r.nativeElement;
|
|
1157
1247
|
}
|
|
1158
|
-
static
|
|
1159
|
-
static
|
|
1248
|
+
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 });
|
|
1249
|
+
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 });
|
|
1160
1250
|
};
|
|
1161
1251
|
ModusWcTypography = __decorate([
|
|
1162
1252
|
ProxyCmp({
|
|
1163
1253
|
inputs: ['customClass', 'hierarchy', 'size', 'weight']
|
|
1164
1254
|
})
|
|
1165
1255
|
], ModusWcTypography);
|
|
1166
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1256
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcTypography, decorators: [{
|
|
1167
1257
|
type: Component,
|
|
1168
1258
|
args: [{
|
|
1169
1259
|
selector: 'modus-wc-typography',
|
|
@@ -1174,21 +1264,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
1174
1264
|
}]
|
|
1175
1265
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1176
1266
|
let ModusWcUtilityPanel = class ModusWcUtilityPanel {
|
|
1267
|
+
z;
|
|
1268
|
+
el;
|
|
1177
1269
|
constructor(c, r, z) {
|
|
1178
1270
|
this.z = z;
|
|
1179
1271
|
c.detach();
|
|
1180
1272
|
this.el = r.nativeElement;
|
|
1181
1273
|
proxyOutputs(this, this.el, ['panelOpened', 'panelClosed']);
|
|
1182
1274
|
}
|
|
1183
|
-
static
|
|
1184
|
-
static
|
|
1275
|
+
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 });
|
|
1276
|
+
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 });
|
|
1185
1277
|
};
|
|
1186
1278
|
ModusWcUtilityPanel = __decorate([
|
|
1187
1279
|
ProxyCmp({
|
|
1188
1280
|
inputs: ['expanded', 'pushContent', 'targetElement']
|
|
1189
1281
|
})
|
|
1190
1282
|
], ModusWcUtilityPanel);
|
|
1191
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1283
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcUtilityPanel, decorators: [{
|
|
1192
1284
|
type: Component,
|
|
1193
1285
|
args: [{
|
|
1194
1286
|
selector: 'modus-wc-utility-panel',
|
|
@@ -1249,29 +1341,28 @@ const DIRECTIVES = [
|
|
|
1249
1341
|
];
|
|
1250
1342
|
|
|
1251
1343
|
class ModusAngularComponentsModule {
|
|
1252
|
-
static
|
|
1253
|
-
static
|
|
1254
|
-
static
|
|
1344
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusAngularComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1345
|
+
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] });
|
|
1346
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusAngularComponentsModule, providers: [
|
|
1255
1347
|
{
|
|
1256
1348
|
provide: APP_INITIALIZER,
|
|
1257
1349
|
useFactory: () => defineCustomElements,
|
|
1258
1350
|
multi: true,
|
|
1259
|
-
}
|
|
1260
|
-
] });
|
|
1351
|
+
}
|
|
1352
|
+
] });
|
|
1261
1353
|
}
|
|
1262
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1354
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusAngularComponentsModule, decorators: [{
|
|
1263
1355
|
type: NgModule,
|
|
1264
1356
|
args: [{
|
|
1265
|
-
|
|
1266
|
-
imports: [],
|
|
1357
|
+
imports: [...DIRECTIVES],
|
|
1267
1358
|
exports: [...DIRECTIVES],
|
|
1268
1359
|
providers: [
|
|
1269
1360
|
{
|
|
1270
1361
|
provide: APP_INITIALIZER,
|
|
1271
1362
|
useFactory: () => defineCustomElements,
|
|
1272
1363
|
multi: true,
|
|
1273
|
-
}
|
|
1274
|
-
]
|
|
1364
|
+
}
|
|
1365
|
+
]
|
|
1275
1366
|
}]
|
|
1276
1367
|
}] });
|
|
1277
1368
|
|