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