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