@trimble-oss/moduswebcomponents-angular 1.0.6-ng17 → 1.0.6-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 +260 -161
- package/fesm2022/trimble-oss-moduswebcomponents-angular.mjs.map +1 -1
- package/lib/modus-wc-angular.module.d.ts +1 -1
- package/lib/stencil-generated/components.d.ts +50 -50
- 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 -1291
- package/esm2022/lib/stencil-generated/index.mjs +0 -54
- 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', 'clearClick', '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,21 +251,23 @@ 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 ModusWcButtonGroup = class ModusWcButtonGroup {
|
|
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
|
proxyOutputs(this, this.el, ['buttonGroupClick', 'buttonSelectionChange']);
|
|
245
261
|
}
|
|
246
|
-
static
|
|
247
|
-
static
|
|
262
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcButtonGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
263
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.7", type: ModusWcButtonGroup, isStandalone: true, selector: "modus-wc-button-group", inputs: { color: "color", disabled: "disabled", orientation: "orientation", selectionType: "selectionType", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
248
264
|
};
|
|
249
265
|
ModusWcButtonGroup = __decorate([
|
|
250
266
|
ProxyCmp({
|
|
251
267
|
inputs: ['color', 'disabled', 'orientation', 'selectionType', 'variant']
|
|
252
268
|
})
|
|
253
269
|
], ModusWcButtonGroup);
|
|
254
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
270
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcButtonGroup, decorators: [{
|
|
255
271
|
type: Component,
|
|
256
272
|
args: [{
|
|
257
273
|
selector: 'modus-wc-button-group',
|
|
@@ -262,20 +278,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
262
278
|
}]
|
|
263
279
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
264
280
|
let ModusWcCard = class ModusWcCard {
|
|
281
|
+
z;
|
|
282
|
+
el;
|
|
265
283
|
constructor(c, r, z) {
|
|
266
284
|
this.z = z;
|
|
267
285
|
c.detach();
|
|
268
286
|
this.el = r.nativeElement;
|
|
269
287
|
}
|
|
270
|
-
static
|
|
271
|
-
static
|
|
288
|
+
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 });
|
|
289
|
+
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 });
|
|
272
290
|
};
|
|
273
291
|
ModusWcCard = __decorate([
|
|
274
292
|
ProxyCmp({
|
|
275
293
|
inputs: ['backgroundFigure', 'bordered', 'customClass', 'layout', 'padding']
|
|
276
294
|
})
|
|
277
295
|
], ModusWcCard);
|
|
278
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
296
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcCard, decorators: [{
|
|
279
297
|
type: Component,
|
|
280
298
|
args: [{
|
|
281
299
|
selector: 'modus-wc-card',
|
|
@@ -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 ModusWcCheckbox = class ModusWcCheckbox {
|
|
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, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
294
314
|
}
|
|
295
|
-
static
|
|
296
|
-
static
|
|
315
|
+
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 });
|
|
316
|
+
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 });
|
|
297
317
|
};
|
|
298
318
|
ModusWcCheckbox = __decorate([
|
|
299
319
|
ProxyCmp({
|
|
300
320
|
inputs: ['customClass', 'disabled', 'indeterminate', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value']
|
|
301
321
|
})
|
|
302
322
|
], ModusWcCheckbox);
|
|
303
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
323
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcCheckbox, decorators: [{
|
|
304
324
|
type: Component,
|
|
305
325
|
args: [{
|
|
306
326
|
selector: 'modus-wc-checkbox',
|
|
@@ -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 ModusWcChip = class ModusWcChip {
|
|
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, ['chipClick', 'chipRemove']);
|
|
319
341
|
}
|
|
320
|
-
static
|
|
321
|
-
static
|
|
342
|
+
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 });
|
|
343
|
+
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 });
|
|
322
344
|
};
|
|
323
345
|
ModusWcChip = __decorate([
|
|
324
346
|
ProxyCmp({
|
|
325
347
|
inputs: ['active', 'customClass', 'disabled', 'hasError', 'label', 'shape', 'showRemove', 'size', 'variant']
|
|
326
348
|
})
|
|
327
349
|
], ModusWcChip);
|
|
328
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
350
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcChip, decorators: [{
|
|
329
351
|
type: Component,
|
|
330
352
|
args: [{
|
|
331
353
|
selector: 'modus-wc-chip',
|
|
@@ -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 ModusWcCollapse = class ModusWcCollapse {
|
|
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, ['expandedChange']);
|
|
344
368
|
}
|
|
345
|
-
static
|
|
346
|
-
static
|
|
369
|
+
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 });
|
|
370
|
+
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 });
|
|
347
371
|
};
|
|
348
372
|
ModusWcCollapse = __decorate([
|
|
349
373
|
ProxyCmp({
|
|
350
374
|
inputs: ['bordered', 'collapseId', 'customClass', 'expanded', 'options']
|
|
351
375
|
})
|
|
352
376
|
], ModusWcCollapse);
|
|
353
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
377
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcCollapse, decorators: [{
|
|
354
378
|
type: Component,
|
|
355
379
|
args: [{
|
|
356
380
|
selector: 'modus-wc-collapse',
|
|
@@ -361,21 +385,23 @@ 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 ModusWcDate = class ModusWcDate {
|
|
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
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus', 'calendarMonthChange', 'calendarYearChange']);
|
|
369
395
|
}
|
|
370
|
-
static
|
|
371
|
-
static
|
|
396
|
+
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 });
|
|
397
|
+
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", showWeekNumbers: "showWeekNumbers", size: "size", value: "value", weekStartDay: "weekStartDay" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
372
398
|
};
|
|
373
399
|
ModusWcDate = __decorate([
|
|
374
400
|
ProxyCmp({
|
|
375
401
|
inputs: ['bordered', 'customClass', 'disabled', 'feedback', 'format', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'readOnly', 'required', 'showWeekNumbers', 'size', 'value', 'weekStartDay']
|
|
376
402
|
})
|
|
377
403
|
], ModusWcDate);
|
|
378
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
404
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcDate, decorators: [{
|
|
379
405
|
type: Component,
|
|
380
406
|
args: [{
|
|
381
407
|
selector: 'modus-wc-date',
|
|
@@ -386,20 +412,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
386
412
|
}]
|
|
387
413
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
388
414
|
let ModusWcDivider = class ModusWcDivider {
|
|
415
|
+
z;
|
|
416
|
+
el;
|
|
389
417
|
constructor(c, r, z) {
|
|
390
418
|
this.z = z;
|
|
391
419
|
c.detach();
|
|
392
420
|
this.el = r.nativeElement;
|
|
393
421
|
}
|
|
394
|
-
static
|
|
395
|
-
static
|
|
422
|
+
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 });
|
|
423
|
+
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 });
|
|
396
424
|
};
|
|
397
425
|
ModusWcDivider = __decorate([
|
|
398
426
|
ProxyCmp({
|
|
399
427
|
inputs: ['color', 'content', 'customClass', 'orientation', 'position', 'responsive']
|
|
400
428
|
})
|
|
401
429
|
], ModusWcDivider);
|
|
402
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
430
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcDivider, decorators: [{
|
|
403
431
|
type: Component,
|
|
404
432
|
args: [{
|
|
405
433
|
selector: 'modus-wc-divider',
|
|
@@ -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 ModusWcDropdownMenu = class ModusWcDropdownMenu {
|
|
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, ['menuVisibilityChange']);
|
|
418
448
|
}
|
|
419
|
-
static
|
|
420
|
-
static
|
|
449
|
+
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 });
|
|
450
|
+
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 });
|
|
421
451
|
};
|
|
422
452
|
ModusWcDropdownMenu = __decorate([
|
|
423
453
|
ProxyCmp({
|
|
424
454
|
inputs: ['buttonAriaLabel', 'buttonColor', 'buttonSize', 'buttonVariant', 'customClass', 'disabled', 'menuBordered', 'menuOffset', 'menuPlacement', 'menuSize', 'menuVisible']
|
|
425
455
|
})
|
|
426
456
|
], ModusWcDropdownMenu);
|
|
427
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
457
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcDropdownMenu, decorators: [{
|
|
428
458
|
type: Component,
|
|
429
459
|
args: [{
|
|
430
460
|
selector: 'modus-wc-dropdown-menu',
|
|
@@ -435,14 +465,16 @@ 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 ModusWcFileDropzone = class ModusWcFileDropzone {
|
|
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
|
proxyOutputs(this, this.el, ['fileSelect']);
|
|
443
475
|
}
|
|
444
|
-
static
|
|
445
|
-
static
|
|
476
|
+
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 });
|
|
477
|
+
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 });
|
|
446
478
|
};
|
|
447
479
|
ModusWcFileDropzone = __decorate([
|
|
448
480
|
ProxyCmp({
|
|
@@ -450,7 +482,7 @@ ModusWcFileDropzone = __decorate([
|
|
|
450
482
|
methods: ['reset']
|
|
451
483
|
})
|
|
452
484
|
], ModusWcFileDropzone);
|
|
453
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
485
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcFileDropzone, decorators: [{
|
|
454
486
|
type: Component,
|
|
455
487
|
args: [{
|
|
456
488
|
selector: 'modus-wc-file-dropzone',
|
|
@@ -461,20 +493,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
461
493
|
}]
|
|
462
494
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
463
495
|
let ModusWcHandle = class ModusWcHandle {
|
|
496
|
+
z;
|
|
497
|
+
el;
|
|
464
498
|
constructor(c, r, z) {
|
|
465
499
|
this.z = z;
|
|
466
500
|
c.detach();
|
|
467
501
|
this.el = r.nativeElement;
|
|
468
502
|
}
|
|
469
|
-
static
|
|
470
|
-
static
|
|
503
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcHandle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
504
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.7", type: ModusWcHandle, isStandalone: true, selector: "modus-wc-handle", inputs: { buttonColor: "buttonColor", buttonSize: "buttonSize", buttonVariant: "buttonVariant", customClass: "customClass", defaultSplit: "defaultSplit", density: "density", leftTarget: "leftTarget", orientation: "orientation", rightTarget: "rightTarget", size: "size", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
471
505
|
};
|
|
472
506
|
ModusWcHandle = __decorate([
|
|
473
507
|
ProxyCmp({
|
|
474
508
|
inputs: ['buttonColor', 'buttonSize', 'buttonVariant', 'customClass', 'defaultSplit', 'density', 'leftTarget', 'orientation', 'rightTarget', 'size', 'type']
|
|
475
509
|
})
|
|
476
510
|
], ModusWcHandle);
|
|
477
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
511
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcHandle, decorators: [{
|
|
478
512
|
type: Component,
|
|
479
513
|
args: [{
|
|
480
514
|
selector: 'modus-wc-handle',
|
|
@@ -485,20 +519,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
485
519
|
}]
|
|
486
520
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
487
521
|
let ModusWcIcon = class ModusWcIcon {
|
|
522
|
+
z;
|
|
523
|
+
el;
|
|
488
524
|
constructor(c, r, z) {
|
|
489
525
|
this.z = z;
|
|
490
526
|
c.detach();
|
|
491
527
|
this.el = r.nativeElement;
|
|
492
528
|
}
|
|
493
|
-
static
|
|
494
|
-
static
|
|
529
|
+
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 });
|
|
530
|
+
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 });
|
|
495
531
|
};
|
|
496
532
|
ModusWcIcon = __decorate([
|
|
497
533
|
ProxyCmp({
|
|
498
534
|
inputs: ['customClass', 'decorative', 'name', 'size', 'variant']
|
|
499
535
|
})
|
|
500
536
|
], ModusWcIcon);
|
|
501
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
537
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcIcon, decorators: [{
|
|
502
538
|
type: Component,
|
|
503
539
|
args: [{
|
|
504
540
|
selector: 'modus-wc-icon',
|
|
@@ -509,20 +545,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
509
545
|
}]
|
|
510
546
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
511
547
|
let ModusWcInputFeedback = class ModusWcInputFeedback {
|
|
548
|
+
z;
|
|
549
|
+
el;
|
|
512
550
|
constructor(c, r, z) {
|
|
513
551
|
this.z = z;
|
|
514
552
|
c.detach();
|
|
515
553
|
this.el = r.nativeElement;
|
|
516
554
|
}
|
|
517
|
-
static
|
|
518
|
-
static
|
|
555
|
+
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 });
|
|
556
|
+
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 });
|
|
519
557
|
};
|
|
520
558
|
ModusWcInputFeedback = __decorate([
|
|
521
559
|
ProxyCmp({
|
|
522
560
|
inputs: ['customClass', 'icon', 'level', 'message', 'size']
|
|
523
561
|
})
|
|
524
562
|
], ModusWcInputFeedback);
|
|
525
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
563
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcInputFeedback, decorators: [{
|
|
526
564
|
type: Component,
|
|
527
565
|
args: [{
|
|
528
566
|
selector: 'modus-wc-input-feedback',
|
|
@@ -533,20 +571,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
533
571
|
}]
|
|
534
572
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
535
573
|
let ModusWcInputLabel = class ModusWcInputLabel {
|
|
574
|
+
z;
|
|
575
|
+
el;
|
|
536
576
|
constructor(c, r, z) {
|
|
537
577
|
this.z = z;
|
|
538
578
|
c.detach();
|
|
539
579
|
this.el = r.nativeElement;
|
|
540
580
|
}
|
|
541
|
-
static
|
|
542
|
-
static
|
|
581
|
+
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 });
|
|
582
|
+
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 });
|
|
543
583
|
};
|
|
544
584
|
ModusWcInputLabel = __decorate([
|
|
545
585
|
ProxyCmp({
|
|
546
586
|
inputs: ['customClass', 'forId', 'labelText', 'required', 'size', 'subLabelText']
|
|
547
587
|
})
|
|
548
588
|
], ModusWcInputLabel);
|
|
549
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
589
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcInputLabel, decorators: [{
|
|
550
590
|
type: Component,
|
|
551
591
|
args: [{
|
|
552
592
|
selector: 'modus-wc-input-label',
|
|
@@ -557,20 +597,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
557
597
|
}]
|
|
558
598
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
559
599
|
let ModusWcLoader = class ModusWcLoader {
|
|
600
|
+
z;
|
|
601
|
+
el;
|
|
560
602
|
constructor(c, r, z) {
|
|
561
603
|
this.z = z;
|
|
562
604
|
c.detach();
|
|
563
605
|
this.el = r.nativeElement;
|
|
564
606
|
}
|
|
565
|
-
static
|
|
566
|
-
static
|
|
607
|
+
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 });
|
|
608
|
+
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 });
|
|
567
609
|
};
|
|
568
610
|
ModusWcLoader = __decorate([
|
|
569
611
|
ProxyCmp({
|
|
570
612
|
inputs: ['color', 'customClass', 'size', 'variant']
|
|
571
613
|
})
|
|
572
614
|
], ModusWcLoader);
|
|
573
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
615
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcLoader, decorators: [{
|
|
574
616
|
type: Component,
|
|
575
617
|
args: [{
|
|
576
618
|
selector: 'modus-wc-loader',
|
|
@@ -581,20 +623,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
581
623
|
}]
|
|
582
624
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
583
625
|
let ModusWcLogo = class ModusWcLogo {
|
|
626
|
+
z;
|
|
627
|
+
el;
|
|
584
628
|
constructor(c, r, z) {
|
|
585
629
|
this.z = z;
|
|
586
630
|
c.detach();
|
|
587
631
|
this.el = r.nativeElement;
|
|
588
632
|
}
|
|
589
|
-
static
|
|
590
|
-
static
|
|
633
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcLogo, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
634
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.7", type: ModusWcLogo, isStandalone: true, selector: "modus-wc-logo", inputs: { alt: "alt", customClass: "customClass", emblem: "emblem", name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
591
635
|
};
|
|
592
636
|
ModusWcLogo = __decorate([
|
|
593
637
|
ProxyCmp({
|
|
594
638
|
inputs: ['alt', 'customClass', 'emblem', 'name']
|
|
595
639
|
})
|
|
596
640
|
], ModusWcLogo);
|
|
597
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
641
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcLogo, decorators: [{
|
|
598
642
|
type: Component,
|
|
599
643
|
args: [{
|
|
600
644
|
selector: 'modus-wc-logo',
|
|
@@ -605,21 +649,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
605
649
|
}]
|
|
606
650
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
607
651
|
let ModusWcMenu = class ModusWcMenu {
|
|
652
|
+
z;
|
|
653
|
+
el;
|
|
608
654
|
constructor(c, r, z) {
|
|
609
655
|
this.z = z;
|
|
610
656
|
c.detach();
|
|
611
657
|
this.el = r.nativeElement;
|
|
612
658
|
proxyOutputs(this, this.el, ['menuFocusout']);
|
|
613
659
|
}
|
|
614
|
-
static
|
|
615
|
-
static
|
|
660
|
+
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 });
|
|
661
|
+
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 });
|
|
616
662
|
};
|
|
617
663
|
ModusWcMenu = __decorate([
|
|
618
664
|
ProxyCmp({
|
|
619
665
|
inputs: ['bordered', 'customClass', 'isSubMenu', 'orientation', 'size']
|
|
620
666
|
})
|
|
621
667
|
], ModusWcMenu);
|
|
622
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
668
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcMenu, decorators: [{
|
|
623
669
|
type: Component,
|
|
624
670
|
args: [{
|
|
625
671
|
selector: 'modus-wc-menu',
|
|
@@ -630,14 +676,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
630
676
|
}]
|
|
631
677
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
632
678
|
let ModusWcMenuItem = class ModusWcMenuItem {
|
|
679
|
+
z;
|
|
680
|
+
el;
|
|
633
681
|
constructor(c, r, z) {
|
|
634
682
|
this.z = z;
|
|
635
683
|
c.detach();
|
|
636
684
|
this.el = r.nativeElement;
|
|
637
685
|
proxyOutputs(this, this.el, ['itemSelect']);
|
|
638
686
|
}
|
|
639
|
-
static
|
|
640
|
-
static
|
|
687
|
+
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 });
|
|
688
|
+
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 });
|
|
641
689
|
};
|
|
642
690
|
ModusWcMenuItem = __decorate([
|
|
643
691
|
ProxyCmp({
|
|
@@ -645,7 +693,7 @@ ModusWcMenuItem = __decorate([
|
|
|
645
693
|
methods: ['collapseSubmenu']
|
|
646
694
|
})
|
|
647
695
|
], ModusWcMenuItem);
|
|
648
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
696
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcMenuItem, decorators: [{
|
|
649
697
|
type: Component,
|
|
650
698
|
args: [{
|
|
651
699
|
selector: 'modus-wc-menu-item',
|
|
@@ -656,20 +704,22 @@ 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 ModusWcModal = class ModusWcModal {
|
|
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
|
}
|
|
664
|
-
static
|
|
665
|
-
static
|
|
714
|
+
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 });
|
|
715
|
+
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 });
|
|
666
716
|
};
|
|
667
717
|
ModusWcModal = __decorate([
|
|
668
718
|
ProxyCmp({
|
|
669
719
|
inputs: ['backdrop', 'customClass', 'fullscreen', 'modalId', 'position', 'showClose', 'showFullscreenToggle']
|
|
670
720
|
})
|
|
671
721
|
], ModusWcModal);
|
|
672
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
722
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcModal, decorators: [{
|
|
673
723
|
type: Component,
|
|
674
724
|
args: [{
|
|
675
725
|
selector: 'modus-wc-modal',
|
|
@@ -680,21 +730,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
680
730
|
}]
|
|
681
731
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
682
732
|
let ModusWcNavbar = class ModusWcNavbar {
|
|
733
|
+
z;
|
|
734
|
+
el;
|
|
683
735
|
constructor(c, r, z) {
|
|
684
736
|
this.z = z;
|
|
685
737
|
c.detach();
|
|
686
738
|
this.el = r.nativeElement;
|
|
687
739
|
proxyOutputs(this, this.el, ['aiClick', 'appsClick', 'appsMenuOpenChange', 'condensedMenuOpenChange', 'helpClick', 'mainMenuOpenChange', 'myTrimbleClick', 'notificationsClick', 'notificationsMenuOpenChange', 'searchChange', 'searchClick', 'searchInputOpenChange', 'signOutClick', 'trimbleLogoClick', 'userMenuOpenChange']);
|
|
688
740
|
}
|
|
689
|
-
static
|
|
690
|
-
static
|
|
741
|
+
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 });
|
|
742
|
+
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 });
|
|
691
743
|
};
|
|
692
744
|
ModusWcNavbar = __decorate([
|
|
693
745
|
ProxyCmp({
|
|
694
746
|
inputs: ['appsMenuOpen', 'condensed', 'condensedMenuOpen', 'customClass', 'mainMenuOpen', 'notificationsMenuOpen', 'searchDebounceMs', 'searchInputOpen', 'textOverrides', 'userCard', 'userMenuOpen', 'visibility']
|
|
695
747
|
})
|
|
696
748
|
], ModusWcNavbar);
|
|
697
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
749
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcNavbar, decorators: [{
|
|
698
750
|
type: Component,
|
|
699
751
|
args: [{
|
|
700
752
|
selector: 'modus-wc-navbar',
|
|
@@ -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 ModusWcNumberInput = class ModusWcNumberInput {
|
|
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: ModusWcNumberInput, 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: 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 });
|
|
716
770
|
};
|
|
717
771
|
ModusWcNumberInput = __decorate([
|
|
718
772
|
ProxyCmp({
|
|
719
773
|
inputs: ['autoComplete', 'bordered', 'currencySymbol', 'customClass', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'placeholder', 'readOnly', 'required', 'size', 'step', 'type', 'value']
|
|
720
774
|
})
|
|
721
775
|
], ModusWcNumberInput);
|
|
722
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
776
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcNumberInput, decorators: [{
|
|
723
777
|
type: Component,
|
|
724
778
|
args: [{
|
|
725
779
|
selector: 'modus-wc-number-input',
|
|
@@ -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 ModusWcPagination = class ModusWcPagination {
|
|
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, ['pageChange']);
|
|
738
794
|
}
|
|
739
|
-
static
|
|
740
|
-
static
|
|
795
|
+
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 });
|
|
796
|
+
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 });
|
|
741
797
|
};
|
|
742
798
|
ModusWcPagination = __decorate([
|
|
743
799
|
ProxyCmp({
|
|
744
800
|
inputs: ['ariaLabelValues', 'count', 'customClass', 'nextButtonText', 'page', 'prevButtonText', 'size']
|
|
745
801
|
})
|
|
746
802
|
], ModusWcPagination);
|
|
747
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
803
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcPagination, decorators: [{
|
|
748
804
|
type: Component,
|
|
749
805
|
args: [{
|
|
750
806
|
selector: 'modus-wc-pagination',
|
|
@@ -755,20 +811,22 @@ 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 ModusWcPanel = class ModusWcPanel {
|
|
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
|
}
|
|
763
|
-
static
|
|
764
|
-
static
|
|
821
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
822
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.7", type: ModusWcPanel, isStandalone: true, selector: "modus-wc-panel", inputs: { customClass: "customClass", floating: "floating", height: "height", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
765
823
|
};
|
|
766
824
|
ModusWcPanel = __decorate([
|
|
767
825
|
ProxyCmp({
|
|
768
826
|
inputs: ['customClass', 'floating', 'height', 'width']
|
|
769
827
|
})
|
|
770
828
|
], ModusWcPanel);
|
|
771
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
829
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcPanel, decorators: [{
|
|
772
830
|
type: Component,
|
|
773
831
|
args: [{
|
|
774
832
|
selector: 'modus-wc-panel',
|
|
@@ -779,20 +837,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
779
837
|
}]
|
|
780
838
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
781
839
|
let ModusWcProgress = class ModusWcProgress {
|
|
840
|
+
z;
|
|
841
|
+
el;
|
|
782
842
|
constructor(c, r, z) {
|
|
783
843
|
this.z = z;
|
|
784
844
|
c.detach();
|
|
785
845
|
this.el = r.nativeElement;
|
|
786
846
|
}
|
|
787
|
-
static
|
|
788
|
-
static
|
|
847
|
+
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 });
|
|
848
|
+
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 });
|
|
789
849
|
};
|
|
790
850
|
ModusWcProgress = __decorate([
|
|
791
851
|
ProxyCmp({
|
|
792
852
|
inputs: ['customClass', 'indeterminate', 'label', 'max', 'value', 'variant']
|
|
793
853
|
})
|
|
794
854
|
], ModusWcProgress);
|
|
795
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
855
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcProgress, decorators: [{
|
|
796
856
|
type: Component,
|
|
797
857
|
args: [{
|
|
798
858
|
selector: 'modus-wc-progress',
|
|
@@ -803,21 +863,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
803
863
|
}]
|
|
804
864
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
805
865
|
let ModusWcRadio = class ModusWcRadio {
|
|
866
|
+
z;
|
|
867
|
+
el;
|
|
806
868
|
constructor(c, r, z) {
|
|
807
869
|
this.z = z;
|
|
808
870
|
c.detach();
|
|
809
871
|
this.el = r.nativeElement;
|
|
810
872
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
811
873
|
}
|
|
812
|
-
static
|
|
813
|
-
static
|
|
874
|
+
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 });
|
|
875
|
+
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 });
|
|
814
876
|
};
|
|
815
877
|
ModusWcRadio = __decorate([
|
|
816
878
|
ProxyCmp({
|
|
817
879
|
inputs: ['customClass', 'disabled', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value']
|
|
818
880
|
})
|
|
819
881
|
], ModusWcRadio);
|
|
820
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
882
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcRadio, decorators: [{
|
|
821
883
|
type: Component,
|
|
822
884
|
args: [{
|
|
823
885
|
selector: 'modus-wc-radio',
|
|
@@ -828,21 +890,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
828
890
|
}]
|
|
829
891
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
830
892
|
let ModusWcRating = class ModusWcRating {
|
|
893
|
+
z;
|
|
894
|
+
el;
|
|
831
895
|
constructor(c, r, z) {
|
|
832
896
|
this.z = z;
|
|
833
897
|
c.detach();
|
|
834
898
|
this.el = r.nativeElement;
|
|
835
899
|
proxyOutputs(this, this.el, ['ratingChange']);
|
|
836
900
|
}
|
|
837
|
-
static
|
|
838
|
-
static
|
|
901
|
+
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 });
|
|
902
|
+
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 });
|
|
839
903
|
};
|
|
840
904
|
ModusWcRating = __decorate([
|
|
841
905
|
ProxyCmp({
|
|
842
906
|
inputs: ['allowHalf', 'count', 'customClass', 'disabled', 'getAriaLabelText', 'size', 'value', 'variant']
|
|
843
907
|
})
|
|
844
908
|
], ModusWcRating);
|
|
845
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
909
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcRating, decorators: [{
|
|
846
910
|
type: Component,
|
|
847
911
|
args: [{
|
|
848
912
|
selector: 'modus-wc-rating',
|
|
@@ -853,21 +917,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
853
917
|
}]
|
|
854
918
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
855
919
|
let ModusWcSelect = class ModusWcSelect {
|
|
920
|
+
z;
|
|
921
|
+
el;
|
|
856
922
|
constructor(c, r, z) {
|
|
857
923
|
this.z = z;
|
|
858
924
|
c.detach();
|
|
859
925
|
this.el = r.nativeElement;
|
|
860
926
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
861
927
|
}
|
|
862
|
-
static
|
|
863
|
-
static
|
|
928
|
+
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 });
|
|
929
|
+
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 });
|
|
864
930
|
};
|
|
865
931
|
ModusWcSelect = __decorate([
|
|
866
932
|
ProxyCmp({
|
|
867
933
|
inputs: ['bordered', 'customClass', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'name', 'options', 'required', 'size', 'value']
|
|
868
934
|
})
|
|
869
935
|
], ModusWcSelect);
|
|
870
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
936
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcSelect, decorators: [{
|
|
871
937
|
type: Component,
|
|
872
938
|
args: [{
|
|
873
939
|
selector: 'modus-wc-select',
|
|
@@ -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 ModusWcSideNavigation = class ModusWcSideNavigation {
|
|
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, ['expandedChange']);
|
|
886
954
|
}
|
|
887
|
-
static
|
|
888
|
-
static
|
|
955
|
+
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 });
|
|
956
|
+
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 });
|
|
889
957
|
};
|
|
890
958
|
ModusWcSideNavigation = __decorate([
|
|
891
959
|
ProxyCmp({
|
|
892
960
|
inputs: ['collapseOnClickOutside', 'customClass', 'expanded', 'maxWidth', 'mode', 'targetContent']
|
|
893
961
|
})
|
|
894
962
|
], ModusWcSideNavigation);
|
|
895
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
963
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcSideNavigation, decorators: [{
|
|
896
964
|
type: Component,
|
|
897
965
|
args: [{
|
|
898
966
|
selector: 'modus-wc-side-navigation',
|
|
@@ -903,20 +971,22 @@ 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 ModusWcSkeleton = class ModusWcSkeleton {
|
|
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
|
}
|
|
911
|
-
static
|
|
912
|
-
static
|
|
981
|
+
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 });
|
|
982
|
+
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 });
|
|
913
983
|
};
|
|
914
984
|
ModusWcSkeleton = __decorate([
|
|
915
985
|
ProxyCmp({
|
|
916
986
|
inputs: ['customClass', 'height', 'shape', 'width']
|
|
917
987
|
})
|
|
918
988
|
], ModusWcSkeleton);
|
|
919
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
989
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcSkeleton, decorators: [{
|
|
920
990
|
type: Component,
|
|
921
991
|
args: [{
|
|
922
992
|
selector: 'modus-wc-skeleton',
|
|
@@ -927,21 +997,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
927
997
|
}]
|
|
928
998
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
929
999
|
let ModusWcSlider = class ModusWcSlider {
|
|
1000
|
+
z;
|
|
1001
|
+
el;
|
|
930
1002
|
constructor(c, r, z) {
|
|
931
1003
|
this.z = z;
|
|
932
1004
|
c.detach();
|
|
933
1005
|
this.el = r.nativeElement;
|
|
934
1006
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
935
1007
|
}
|
|
936
|
-
static
|
|
937
|
-
static
|
|
1008
|
+
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 });
|
|
1009
|
+
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 });
|
|
938
1010
|
};
|
|
939
1011
|
ModusWcSlider = __decorate([
|
|
940
1012
|
ProxyCmp({
|
|
941
1013
|
inputs: ['customClass', 'disabled', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'required', 'size', 'step', 'value']
|
|
942
1014
|
})
|
|
943
1015
|
], ModusWcSlider);
|
|
944
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1016
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcSlider, decorators: [{
|
|
945
1017
|
type: Component,
|
|
946
1018
|
args: [{
|
|
947
1019
|
selector: 'modus-wc-slider',
|
|
@@ -952,20 +1024,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
952
1024
|
}]
|
|
953
1025
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
954
1026
|
let ModusWcStepper = class ModusWcStepper {
|
|
1027
|
+
z;
|
|
1028
|
+
el;
|
|
955
1029
|
constructor(c, r, z) {
|
|
956
1030
|
this.z = z;
|
|
957
1031
|
c.detach();
|
|
958
1032
|
this.el = r.nativeElement;
|
|
959
1033
|
}
|
|
960
|
-
static
|
|
961
|
-
static
|
|
1034
|
+
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 });
|
|
1035
|
+
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 });
|
|
962
1036
|
};
|
|
963
1037
|
ModusWcStepper = __decorate([
|
|
964
1038
|
ProxyCmp({
|
|
965
1039
|
inputs: ['customClass', 'orientation', 'steps']
|
|
966
1040
|
})
|
|
967
1041
|
], ModusWcStepper);
|
|
968
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1042
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcStepper, decorators: [{
|
|
969
1043
|
type: Component,
|
|
970
1044
|
args: [{
|
|
971
1045
|
selector: 'modus-wc-stepper',
|
|
@@ -976,21 +1050,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
976
1050
|
}]
|
|
977
1051
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
978
1052
|
let ModusWcSwitch = class ModusWcSwitch {
|
|
1053
|
+
z;
|
|
1054
|
+
el;
|
|
979
1055
|
constructor(c, r, z) {
|
|
980
1056
|
this.z = z;
|
|
981
1057
|
c.detach();
|
|
982
1058
|
this.el = r.nativeElement;
|
|
983
1059
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
984
1060
|
}
|
|
985
|
-
static
|
|
986
|
-
static
|
|
1061
|
+
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 });
|
|
1062
|
+
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 });
|
|
987
1063
|
};
|
|
988
1064
|
ModusWcSwitch = __decorate([
|
|
989
1065
|
ProxyCmp({
|
|
990
1066
|
inputs: ['customClass', 'disabled', 'indeterminate', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value']
|
|
991
1067
|
})
|
|
992
1068
|
], ModusWcSwitch);
|
|
993
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1069
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcSwitch, decorators: [{
|
|
994
1070
|
type: Component,
|
|
995
1071
|
args: [{
|
|
996
1072
|
selector: 'modus-wc-switch',
|
|
@@ -1001,21 +1077,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
1001
1077
|
}]
|
|
1002
1078
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1003
1079
|
let ModusWcTable = class ModusWcTable {
|
|
1080
|
+
z;
|
|
1081
|
+
el;
|
|
1004
1082
|
constructor(c, r, z) {
|
|
1005
1083
|
this.z = z;
|
|
1006
1084
|
c.detach();
|
|
1007
1085
|
this.el = r.nativeElement;
|
|
1008
1086
|
proxyOutputs(this, this.el, ['cellEditStart', 'cellEditCommit', 'rowClick', 'sortChange', 'paginationChange', 'rowSelectionChange']);
|
|
1009
1087
|
}
|
|
1010
|
-
static
|
|
1011
|
-
static
|
|
1088
|
+
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 });
|
|
1089
|
+
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 });
|
|
1012
1090
|
};
|
|
1013
1091
|
ModusWcTable = __decorate([
|
|
1014
1092
|
ProxyCmp({
|
|
1015
1093
|
inputs: ['caption', 'columns', 'currentPage', 'customClass', 'data', 'density', 'editable', 'hover', 'pageSizeOptions', 'paginated', 'selectable', 'selectedRowIds', 'showPageSizeSelector', 'sortable', 'zebra']
|
|
1016
1094
|
})
|
|
1017
1095
|
], ModusWcTable);
|
|
1018
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1096
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcTable, decorators: [{
|
|
1019
1097
|
type: Component,
|
|
1020
1098
|
args: [{
|
|
1021
1099
|
selector: 'modus-wc-table',
|
|
@@ -1026,21 +1104,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
1026
1104
|
}]
|
|
1027
1105
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1028
1106
|
let ModusWcTabs = class ModusWcTabs {
|
|
1107
|
+
z;
|
|
1108
|
+
el;
|
|
1029
1109
|
constructor(c, r, z) {
|
|
1030
1110
|
this.z = z;
|
|
1031
1111
|
c.detach();
|
|
1032
1112
|
this.el = r.nativeElement;
|
|
1033
1113
|
proxyOutputs(this, this.el, ['tabChange']);
|
|
1034
1114
|
}
|
|
1035
|
-
static
|
|
1036
|
-
static
|
|
1115
|
+
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 });
|
|
1116
|
+
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 });
|
|
1037
1117
|
};
|
|
1038
1118
|
ModusWcTabs = __decorate([
|
|
1039
1119
|
ProxyCmp({
|
|
1040
1120
|
inputs: ['activeTabIndex', 'customClass', 'size', 'tabStyle', 'tabs']
|
|
1041
1121
|
})
|
|
1042
1122
|
], ModusWcTabs);
|
|
1043
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1123
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcTabs, decorators: [{
|
|
1044
1124
|
type: Component,
|
|
1045
1125
|
args: [{
|
|
1046
1126
|
selector: 'modus-wc-tabs',
|
|
@@ -1051,21 +1131,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
1051
1131
|
}]
|
|
1052
1132
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1053
1133
|
let ModusWcTextInput = class ModusWcTextInput {
|
|
1134
|
+
z;
|
|
1135
|
+
el;
|
|
1054
1136
|
constructor(c, r, z) {
|
|
1055
1137
|
this.z = z;
|
|
1056
1138
|
c.detach();
|
|
1057
1139
|
this.el = r.nativeElement;
|
|
1058
1140
|
proxyOutputs(this, this.el, ['clearClick', 'inputBlur', 'inputChange', 'inputFocus']);
|
|
1059
1141
|
}
|
|
1060
|
-
static
|
|
1061
|
-
static
|
|
1142
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcTextInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1143
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.7", type: 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 });
|
|
1062
1144
|
};
|
|
1063
1145
|
ModusWcTextInput = __decorate([
|
|
1064
1146
|
ProxyCmp({
|
|
1065
1147
|
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']
|
|
1066
1148
|
})
|
|
1067
1149
|
], ModusWcTextInput);
|
|
1068
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1150
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcTextInput, decorators: [{
|
|
1069
1151
|
type: Component,
|
|
1070
1152
|
args: [{
|
|
1071
1153
|
selector: 'modus-wc-text-input',
|
|
@@ -1076,21 +1158,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
1076
1158
|
}]
|
|
1077
1159
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1078
1160
|
let ModusWcTextarea = class ModusWcTextarea {
|
|
1161
|
+
z;
|
|
1162
|
+
el;
|
|
1079
1163
|
constructor(c, r, z) {
|
|
1080
1164
|
this.z = z;
|
|
1081
1165
|
c.detach();
|
|
1082
1166
|
this.el = r.nativeElement;
|
|
1083
1167
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
1084
1168
|
}
|
|
1085
|
-
static
|
|
1086
|
-
static
|
|
1169
|
+
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 });
|
|
1170
|
+
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 });
|
|
1087
1171
|
};
|
|
1088
1172
|
ModusWcTextarea = __decorate([
|
|
1089
1173
|
ProxyCmp({
|
|
1090
1174
|
inputs: ['autoCorrect', 'bordered', 'customClass', 'disabled', 'enterkeyhint', 'feedback', 'inputId', 'inputTabIndex', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'readonly', 'required', 'rows', 'size', 'value']
|
|
1091
1175
|
})
|
|
1092
1176
|
], ModusWcTextarea);
|
|
1093
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1177
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcTextarea, decorators: [{
|
|
1094
1178
|
type: Component,
|
|
1095
1179
|
args: [{
|
|
1096
1180
|
selector: 'modus-wc-textarea',
|
|
@@ -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 ModusWcThemeProvider = class ModusWcThemeProvider {
|
|
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: ModusWcThemeProvider, 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: ModusWcThemeProvider, isStandalone: true, selector: "modus-wc-theme-provider", inputs: { initialTheme: "initialTheme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1111
1197
|
};
|
|
1112
1198
|
ModusWcThemeProvider = __decorate([
|
|
1113
1199
|
ProxyCmp({
|
|
1114
1200
|
inputs: ['initialTheme']
|
|
1115
1201
|
})
|
|
1116
1202
|
], ModusWcThemeProvider);
|
|
1117
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1203
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcThemeProvider, decorators: [{
|
|
1118
1204
|
type: Component,
|
|
1119
1205
|
args: [{
|
|
1120
1206
|
selector: 'modus-wc-theme-provider',
|
|
@@ -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 ModusWcThemeSwitcher = class ModusWcThemeSwitcher {
|
|
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, ['themeChange']);
|
|
1133
1221
|
}
|
|
1134
|
-
static
|
|
1135
|
-
static
|
|
1222
|
+
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 });
|
|
1223
|
+
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 });
|
|
1136
1224
|
};
|
|
1137
1225
|
ModusWcThemeSwitcher = __decorate([
|
|
1138
1226
|
ProxyCmp({
|
|
1139
1227
|
inputs: ['customClass']
|
|
1140
1228
|
})
|
|
1141
1229
|
], ModusWcThemeSwitcher);
|
|
1142
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1230
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcThemeSwitcher, decorators: [{
|
|
1143
1231
|
type: Component,
|
|
1144
1232
|
args: [{
|
|
1145
1233
|
selector: 'modus-wc-theme-switcher',
|
|
@@ -1150,21 +1238,23 @@ 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 ModusWcTimeInput = class ModusWcTimeInput {
|
|
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
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
1158
1248
|
}
|
|
1159
|
-
static
|
|
1160
|
-
static
|
|
1249
|
+
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 });
|
|
1250
|
+
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 });
|
|
1161
1251
|
};
|
|
1162
1252
|
ModusWcTimeInput = __decorate([
|
|
1163
1253
|
ProxyCmp({
|
|
1164
1254
|
inputs: ['autoComplete', 'bordered', 'customClass', 'datalistId', 'datalistOptions', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'readOnly', 'required', 'showSeconds', 'size', 'step', 'value']
|
|
1165
1255
|
})
|
|
1166
1256
|
], ModusWcTimeInput);
|
|
1167
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1257
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcTimeInput, decorators: [{
|
|
1168
1258
|
type: Component,
|
|
1169
1259
|
args: [{
|
|
1170
1260
|
selector: 'modus-wc-time-input',
|
|
@@ -1175,20 +1265,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
1175
1265
|
}]
|
|
1176
1266
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1177
1267
|
let ModusWcToast = class ModusWcToast {
|
|
1268
|
+
z;
|
|
1269
|
+
el;
|
|
1178
1270
|
constructor(c, r, z) {
|
|
1179
1271
|
this.z = z;
|
|
1180
1272
|
c.detach();
|
|
1181
1273
|
this.el = r.nativeElement;
|
|
1182
1274
|
}
|
|
1183
|
-
static
|
|
1184
|
-
static
|
|
1275
|
+
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 });
|
|
1276
|
+
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 });
|
|
1185
1277
|
};
|
|
1186
1278
|
ModusWcToast = __decorate([
|
|
1187
1279
|
ProxyCmp({
|
|
1188
1280
|
inputs: ['customClass', 'delay', 'position']
|
|
1189
1281
|
})
|
|
1190
1282
|
], ModusWcToast);
|
|
1191
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1283
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcToast, decorators: [{
|
|
1192
1284
|
type: Component,
|
|
1193
1285
|
args: [{
|
|
1194
1286
|
selector: 'modus-wc-toast',
|
|
@@ -1199,20 +1291,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
1199
1291
|
}]
|
|
1200
1292
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1201
1293
|
let ModusWcToolbar = class ModusWcToolbar {
|
|
1294
|
+
z;
|
|
1295
|
+
el;
|
|
1202
1296
|
constructor(c, r, z) {
|
|
1203
1297
|
this.z = z;
|
|
1204
1298
|
c.detach();
|
|
1205
1299
|
this.el = r.nativeElement;
|
|
1206
1300
|
}
|
|
1207
|
-
static
|
|
1208
|
-
static
|
|
1301
|
+
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 });
|
|
1302
|
+
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 });
|
|
1209
1303
|
};
|
|
1210
1304
|
ModusWcToolbar = __decorate([
|
|
1211
1305
|
ProxyCmp({
|
|
1212
1306
|
inputs: ['customClass']
|
|
1213
1307
|
})
|
|
1214
1308
|
], ModusWcToolbar);
|
|
1215
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1309
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcToolbar, decorators: [{
|
|
1216
1310
|
type: Component,
|
|
1217
1311
|
args: [{
|
|
1218
1312
|
selector: 'modus-wc-toolbar',
|
|
@@ -1223,21 +1317,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
1223
1317
|
}]
|
|
1224
1318
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1225
1319
|
let ModusWcTooltip = class ModusWcTooltip {
|
|
1320
|
+
z;
|
|
1321
|
+
el;
|
|
1226
1322
|
constructor(c, r, z) {
|
|
1227
1323
|
this.z = z;
|
|
1228
1324
|
c.detach();
|
|
1229
1325
|
this.el = r.nativeElement;
|
|
1230
1326
|
proxyOutputs(this, this.el, ['dismissEscape']);
|
|
1231
1327
|
}
|
|
1232
|
-
static
|
|
1233
|
-
static
|
|
1328
|
+
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 });
|
|
1329
|
+
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 });
|
|
1234
1330
|
};
|
|
1235
1331
|
ModusWcTooltip = __decorate([
|
|
1236
1332
|
ProxyCmp({
|
|
1237
1333
|
inputs: ['content', 'customClass', 'disabled', 'forceOpen', 'position', 'tooltipId']
|
|
1238
1334
|
})
|
|
1239
1335
|
], ModusWcTooltip);
|
|
1240
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1336
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcTooltip, decorators: [{
|
|
1241
1337
|
type: Component,
|
|
1242
1338
|
args: [{
|
|
1243
1339
|
selector: 'modus-wc-tooltip',
|
|
@@ -1248,20 +1344,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
1248
1344
|
}]
|
|
1249
1345
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1250
1346
|
let ModusWcTypography = class ModusWcTypography {
|
|
1347
|
+
z;
|
|
1348
|
+
el;
|
|
1251
1349
|
constructor(c, r, z) {
|
|
1252
1350
|
this.z = z;
|
|
1253
1351
|
c.detach();
|
|
1254
1352
|
this.el = r.nativeElement;
|
|
1255
1353
|
}
|
|
1256
|
-
static
|
|
1257
|
-
static
|
|
1354
|
+
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 });
|
|
1355
|
+
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", label: "label", size: "size", weight: "weight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1258
1356
|
};
|
|
1259
1357
|
ModusWcTypography = __decorate([
|
|
1260
1358
|
ProxyCmp({
|
|
1261
1359
|
inputs: ['customClass', 'hierarchy', 'label', 'size', 'weight']
|
|
1262
1360
|
})
|
|
1263
1361
|
], ModusWcTypography);
|
|
1264
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1362
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcTypography, decorators: [{
|
|
1265
1363
|
type: Component,
|
|
1266
1364
|
args: [{
|
|
1267
1365
|
selector: 'modus-wc-typography',
|
|
@@ -1272,21 +1370,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
|
|
|
1272
1370
|
}]
|
|
1273
1371
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1274
1372
|
let ModusWcUtilityPanel = class ModusWcUtilityPanel {
|
|
1373
|
+
z;
|
|
1374
|
+
el;
|
|
1275
1375
|
constructor(c, r, z) {
|
|
1276
1376
|
this.z = z;
|
|
1277
1377
|
c.detach();
|
|
1278
1378
|
this.el = r.nativeElement;
|
|
1279
1379
|
proxyOutputs(this, this.el, ['panelOpened', 'panelClosed']);
|
|
1280
1380
|
}
|
|
1281
|
-
static
|
|
1282
|
-
static
|
|
1381
|
+
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 });
|
|
1382
|
+
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 });
|
|
1283
1383
|
};
|
|
1284
1384
|
ModusWcUtilityPanel = __decorate([
|
|
1285
1385
|
ProxyCmp({
|
|
1286
1386
|
inputs: ['expanded', 'pushContent', 'targetElement']
|
|
1287
1387
|
})
|
|
1288
1388
|
], ModusWcUtilityPanel);
|
|
1289
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1389
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusWcUtilityPanel, decorators: [{
|
|
1290
1390
|
type: Component,
|
|
1291
1391
|
args: [{
|
|
1292
1392
|
selector: 'modus-wc-utility-panel',
|
|
@@ -1351,29 +1451,28 @@ const DIRECTIVES = [
|
|
|
1351
1451
|
];
|
|
1352
1452
|
|
|
1353
1453
|
class ModusAngularComponentsModule {
|
|
1354
|
-
static
|
|
1355
|
-
static
|
|
1356
|
-
static
|
|
1454
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusAngularComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1455
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.7", ngImport: i0, type: ModusAngularComponentsModule, imports: [ModusWcAccordion, ModusWcAlert, ModusWcAutocomplete, ModusWcAvatar, ModusWcBadge, ModusWcBreadcrumbs, ModusWcButton, ModusWcButtonGroup, ModusWcCard, ModusWcCheckbox, ModusWcChip, ModusWcCollapse, ModusWcDate, ModusWcDivider, ModusWcDropdownMenu, ModusWcFileDropzone, ModusWcHandle, ModusWcIcon, ModusWcInputFeedback, ModusWcInputLabel, ModusWcLoader, ModusWcLogo, ModusWcMenu, ModusWcMenuItem, ModusWcModal, ModusWcNavbar, ModusWcNumberInput, ModusWcPagination, ModusWcPanel, 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, ModusWcButtonGroup, ModusWcCard, ModusWcCheckbox, ModusWcChip, ModusWcCollapse, ModusWcDate, ModusWcDivider, ModusWcDropdownMenu, ModusWcFileDropzone, ModusWcHandle, ModusWcIcon, ModusWcInputFeedback, ModusWcInputLabel, ModusWcLoader, ModusWcLogo, ModusWcMenu, ModusWcMenuItem, ModusWcModal, ModusWcNavbar, ModusWcNumberInput, ModusWcPagination, ModusWcPanel, ModusWcProgress, ModusWcRadio, ModusWcRating, ModusWcSelect, ModusWcSideNavigation, ModusWcSkeleton, ModusWcSlider, ModusWcStepper, ModusWcSwitch, ModusWcTable, ModusWcTabs, ModusWcTextInput, ModusWcTextarea, ModusWcThemeProvider, ModusWcThemeSwitcher, ModusWcTimeInput, ModusWcToast, ModusWcToolbar, ModusWcTooltip, ModusWcTypography, ModusWcUtilityPanel] });
|
|
1456
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusAngularComponentsModule, providers: [
|
|
1357
1457
|
{
|
|
1358
1458
|
provide: APP_INITIALIZER,
|
|
1359
1459
|
useFactory: () => defineCustomElements,
|
|
1360
1460
|
multi: true,
|
|
1361
|
-
}
|
|
1362
|
-
] });
|
|
1461
|
+
}
|
|
1462
|
+
] });
|
|
1363
1463
|
}
|
|
1364
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1464
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImport: i0, type: ModusAngularComponentsModule, decorators: [{
|
|
1365
1465
|
type: NgModule,
|
|
1366
1466
|
args: [{
|
|
1367
|
-
|
|
1368
|
-
imports: [],
|
|
1467
|
+
imports: [...DIRECTIVES],
|
|
1369
1468
|
exports: [...DIRECTIVES],
|
|
1370
1469
|
providers: [
|
|
1371
1470
|
{
|
|
1372
1471
|
provide: APP_INITIALIZER,
|
|
1373
1472
|
useFactory: () => defineCustomElements,
|
|
1374
1473
|
multi: true,
|
|
1375
|
-
}
|
|
1376
|
-
]
|
|
1474
|
+
}
|
|
1475
|
+
]
|
|
1377
1476
|
}]
|
|
1378
1477
|
}] });
|
|
1379
1478
|
|