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