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