@trimble-oss/moduswebcomponents-angular 1.5.0-ng19 → 1.6.0-ng17
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 +14 -8
- package/esm2022/lib/modus-wc-angular.module.mjs +42 -0
- package/esm2022/lib/stencil-generated/angular-component-lib/utils.mjs +59 -0
- package/esm2022/lib/stencil-generated/components.mjs +1369 -0
- package/esm2022/lib/stencil-generated/index.mjs +57 -0
- package/esm2022/public-api.mjs +7 -0
- package/esm2022/trimble-oss-moduswebcomponents-angular.mjs +5 -0
- package/fesm2022/trimble-oss-moduswebcomponents-angular.mjs +218 -288
- 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 +67 -52
- package/lib/stencil-generated/index.d.ts +1 -1
- package/package.json +6 -7
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { ChangeDetectionStrategy, Component,
|
|
2
|
+
import { ChangeDetectionStrategy, Component, APP_INITIALIZER, NgModule } from '@angular/core';
|
|
3
3
|
import { defineCustomElements } from '@trimble-oss/moduswebcomponents/loader';
|
|
4
4
|
import { setAssetPath } from '@trimble-oss/moduswebcomponents/components';
|
|
5
5
|
import { __decorate } from 'tslib';
|
|
@@ -64,23 +64,21 @@ function ProxyCmp(opts) {
|
|
|
64
64
|
}
|
|
65
65
|
|
|
66
66
|
let ModusWcAccordion = class ModusWcAccordion {
|
|
67
|
-
z;
|
|
68
|
-
el;
|
|
69
67
|
constructor(c, r, z) {
|
|
70
68
|
this.z = z;
|
|
71
69
|
c.detach();
|
|
72
70
|
this.el = r.nativeElement;
|
|
73
71
|
proxyOutputs(this, this.el, ['expandedChange']);
|
|
74
72
|
}
|
|
75
|
-
static
|
|
76
|
-
static
|
|
73
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
74
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcAccordion, selector: "modus-wc-accordion", inputs: { customClass: "customClass" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
77
75
|
};
|
|
78
76
|
ModusWcAccordion = __decorate([
|
|
79
77
|
ProxyCmp({
|
|
80
78
|
inputs: ['customClass']
|
|
81
79
|
})
|
|
82
80
|
], ModusWcAccordion);
|
|
83
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
81
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAccordion, decorators: [{
|
|
84
82
|
type: Component,
|
|
85
83
|
args: [{
|
|
86
84
|
selector: 'modus-wc-accordion',
|
|
@@ -91,50 +89,46 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
91
89
|
}]
|
|
92
90
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
93
91
|
let ModusWcAlert = class ModusWcAlert {
|
|
94
|
-
z;
|
|
95
|
-
el;
|
|
96
92
|
constructor(c, r, z) {
|
|
97
93
|
this.z = z;
|
|
98
94
|
c.detach();
|
|
99
95
|
this.el = r.nativeElement;
|
|
100
96
|
proxyOutputs(this, this.el, ['dismissClick']);
|
|
101
97
|
}
|
|
102
|
-
static
|
|
103
|
-
static
|
|
98
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
99
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcAlert, selector: "modus-wc-alert", inputs: { alertDescription: "alertDescription", alertTitle: "alertTitle", customClass: "customClass", delay: "delay", disableIcon: "disableIcon", dismissible: "dismissible", icon: "icon", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
104
100
|
};
|
|
105
101
|
ModusWcAlert = __decorate([
|
|
106
102
|
ProxyCmp({
|
|
107
|
-
inputs: ['alertDescription', 'alertTitle', 'customClass', 'delay', 'dismissible', 'icon', 'variant']
|
|
103
|
+
inputs: ['alertDescription', 'alertTitle', 'customClass', 'delay', 'disableIcon', 'dismissible', 'icon', 'variant']
|
|
108
104
|
})
|
|
109
105
|
], ModusWcAlert);
|
|
110
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
106
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAlert, decorators: [{
|
|
111
107
|
type: Component,
|
|
112
108
|
args: [{
|
|
113
109
|
selector: 'modus-wc-alert',
|
|
114
110
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
115
111
|
template: '<ng-content></ng-content>',
|
|
116
112
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
117
|
-
inputs: ['alertDescription', 'alertTitle', 'customClass', 'delay', 'dismissible', 'icon', 'variant'],
|
|
113
|
+
inputs: ['alertDescription', 'alertTitle', 'customClass', 'delay', 'disableIcon', 'dismissible', 'icon', 'variant'],
|
|
118
114
|
}]
|
|
119
115
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
120
116
|
let ModusWcAppMenu = class ModusWcAppMenu {
|
|
121
|
-
z;
|
|
122
|
-
el;
|
|
123
117
|
constructor(c, r, z) {
|
|
124
118
|
this.z = z;
|
|
125
119
|
c.detach();
|
|
126
120
|
this.el = r.nativeElement;
|
|
127
121
|
proxyOutputs(this, this.el, ['layoutChange', 'itemsOrderChange', 'itemClick']);
|
|
128
122
|
}
|
|
129
|
-
static
|
|
130
|
-
static
|
|
123
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAppMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
124
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcAppMenu, selector: "modus-wc-app-menu", inputs: { apps: "apps", customClass: "customClass", layout: "layout" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
131
125
|
};
|
|
132
126
|
ModusWcAppMenu = __decorate([
|
|
133
127
|
ProxyCmp({
|
|
134
128
|
inputs: ['apps', 'customClass', 'layout']
|
|
135
129
|
})
|
|
136
130
|
], ModusWcAppMenu);
|
|
137
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
131
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAppMenu, decorators: [{
|
|
138
132
|
type: Component,
|
|
139
133
|
args: [{
|
|
140
134
|
selector: 'modus-wc-app-menu',
|
|
@@ -145,16 +139,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
145
139
|
}]
|
|
146
140
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
147
141
|
let ModusWcAutocomplete = class ModusWcAutocomplete {
|
|
148
|
-
z;
|
|
149
|
-
el;
|
|
150
142
|
constructor(c, r, z) {
|
|
151
143
|
this.z = z;
|
|
152
144
|
c.detach();
|
|
153
145
|
this.el = r.nativeElement;
|
|
154
146
|
proxyOutputs(this, this.el, ['chipRemove', 'chipsExpansionChange', 'clearClick', 'inputBlur', 'inputChange', 'inputFocus', 'itemSelect']);
|
|
155
147
|
}
|
|
156
|
-
static
|
|
157
|
-
static
|
|
148
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAutocomplete, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
149
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcAutocomplete, selector: "modus-wc-autocomplete", inputs: { autoComplete: "autoComplete", bordered: "bordered", customBlur: "customBlur", customClass: "customClass", customInputChange: "customInputChange", customItemSelect: "customItemSelect", customKeyDown: "customKeyDown", debounceMs: "debounceMs", disabled: "disabled", feedback: "feedback", 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 }); }
|
|
158
150
|
};
|
|
159
151
|
ModusWcAutocomplete = __decorate([
|
|
160
152
|
ProxyCmp({
|
|
@@ -162,7 +154,7 @@ ModusWcAutocomplete = __decorate([
|
|
|
162
154
|
methods: ['selectItem', 'openMenu', 'closeMenu', 'toggleMenu', 'focusInput', 'clearInput']
|
|
163
155
|
})
|
|
164
156
|
], ModusWcAutocomplete);
|
|
165
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
157
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAutocomplete, decorators: [{
|
|
166
158
|
type: Component,
|
|
167
159
|
args: [{
|
|
168
160
|
selector: 'modus-wc-autocomplete',
|
|
@@ -173,22 +165,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
173
165
|
}]
|
|
174
166
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
175
167
|
let ModusWcAvatar = class ModusWcAvatar {
|
|
176
|
-
z;
|
|
177
|
-
el;
|
|
178
168
|
constructor(c, r, z) {
|
|
179
169
|
this.z = z;
|
|
180
170
|
c.detach();
|
|
181
171
|
this.el = r.nativeElement;
|
|
182
172
|
}
|
|
183
|
-
static
|
|
184
|
-
static
|
|
173
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
174
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcAvatar, selector: "modus-wc-avatar", inputs: { alt: "alt", customClass: "customClass", imgSrc: "imgSrc", initials: "initials", shape: "shape", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
185
175
|
};
|
|
186
176
|
ModusWcAvatar = __decorate([
|
|
187
177
|
ProxyCmp({
|
|
188
178
|
inputs: ['alt', 'customClass', 'imgSrc', 'initials', 'shape', 'size']
|
|
189
179
|
})
|
|
190
180
|
], ModusWcAvatar);
|
|
191
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
181
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAvatar, decorators: [{
|
|
192
182
|
type: Component,
|
|
193
183
|
args: [{
|
|
194
184
|
selector: 'modus-wc-avatar',
|
|
@@ -199,22 +189,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
199
189
|
}]
|
|
200
190
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
201
191
|
let ModusWcBadge = class ModusWcBadge {
|
|
202
|
-
z;
|
|
203
|
-
el;
|
|
204
192
|
constructor(c, r, z) {
|
|
205
193
|
this.z = z;
|
|
206
194
|
c.detach();
|
|
207
195
|
this.el = r.nativeElement;
|
|
208
196
|
}
|
|
209
|
-
static
|
|
210
|
-
static
|
|
197
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
198
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcBadge, 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 }); }
|
|
211
199
|
};
|
|
212
200
|
ModusWcBadge = __decorate([
|
|
213
201
|
ProxyCmp({
|
|
214
202
|
inputs: ['color', 'customClass', 'size', 'variant']
|
|
215
203
|
})
|
|
216
204
|
], ModusWcBadge);
|
|
217
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
205
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcBadge, decorators: [{
|
|
218
206
|
type: Component,
|
|
219
207
|
args: [{
|
|
220
208
|
selector: 'modus-wc-badge',
|
|
@@ -225,23 +213,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
225
213
|
}]
|
|
226
214
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
227
215
|
let ModusWcBreadcrumbs = class ModusWcBreadcrumbs {
|
|
228
|
-
z;
|
|
229
|
-
el;
|
|
230
216
|
constructor(c, r, z) {
|
|
231
217
|
this.z = z;
|
|
232
218
|
c.detach();
|
|
233
219
|
this.el = r.nativeElement;
|
|
234
220
|
proxyOutputs(this, this.el, ['breadcrumbClick']);
|
|
235
221
|
}
|
|
236
|
-
static
|
|
237
|
-
static
|
|
222
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcBreadcrumbs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
223
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcBreadcrumbs, selector: "modus-wc-breadcrumbs", inputs: { customClass: "customClass", items: "items", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
238
224
|
};
|
|
239
225
|
ModusWcBreadcrumbs = __decorate([
|
|
240
226
|
ProxyCmp({
|
|
241
227
|
inputs: ['customClass', 'items', 'size']
|
|
242
228
|
})
|
|
243
229
|
], ModusWcBreadcrumbs);
|
|
244
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
230
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcBreadcrumbs, decorators: [{
|
|
245
231
|
type: Component,
|
|
246
232
|
args: [{
|
|
247
233
|
selector: 'modus-wc-breadcrumbs',
|
|
@@ -252,23 +238,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
252
238
|
}]
|
|
253
239
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
254
240
|
let ModusWcButton = class ModusWcButton {
|
|
255
|
-
z;
|
|
256
|
-
el;
|
|
257
241
|
constructor(c, r, z) {
|
|
258
242
|
this.z = z;
|
|
259
243
|
c.detach();
|
|
260
244
|
this.el = r.nativeElement;
|
|
261
245
|
proxyOutputs(this, this.el, ['buttonClick']);
|
|
262
246
|
}
|
|
263
|
-
static
|
|
264
|
-
static
|
|
247
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
248
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcButton, 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 }); }
|
|
265
249
|
};
|
|
266
250
|
ModusWcButton = __decorate([
|
|
267
251
|
ProxyCmp({
|
|
268
252
|
inputs: ['color', 'customClass', 'disabled', 'fullWidth', 'pressed', 'shape', 'size', 'type', 'variant']
|
|
269
253
|
})
|
|
270
254
|
], ModusWcButton);
|
|
271
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
255
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcButton, decorators: [{
|
|
272
256
|
type: Component,
|
|
273
257
|
args: [{
|
|
274
258
|
selector: 'modus-wc-button',
|
|
@@ -279,23 +263,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
279
263
|
}]
|
|
280
264
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
281
265
|
let ModusWcButtonGroup = class ModusWcButtonGroup {
|
|
282
|
-
z;
|
|
283
|
-
el;
|
|
284
266
|
constructor(c, r, z) {
|
|
285
267
|
this.z = z;
|
|
286
268
|
c.detach();
|
|
287
269
|
this.el = r.nativeElement;
|
|
288
270
|
proxyOutputs(this, this.el, ['buttonGroupClick', 'buttonSelectionChange']);
|
|
289
271
|
}
|
|
290
|
-
static
|
|
291
|
-
static
|
|
272
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcButtonGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
273
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcButtonGroup, selector: "modus-wc-button-group", inputs: { color: "color", disabled: "disabled", orientation: "orientation", selectionType: "selectionType", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
292
274
|
};
|
|
293
275
|
ModusWcButtonGroup = __decorate([
|
|
294
276
|
ProxyCmp({
|
|
295
277
|
inputs: ['color', 'disabled', 'orientation', 'selectionType', 'variant']
|
|
296
278
|
})
|
|
297
279
|
], ModusWcButtonGroup);
|
|
298
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
280
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcButtonGroup, decorators: [{
|
|
299
281
|
type: Component,
|
|
300
282
|
args: [{
|
|
301
283
|
selector: 'modus-wc-button-group',
|
|
@@ -306,22 +288,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
306
288
|
}]
|
|
307
289
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
308
290
|
let ModusWcCard = class ModusWcCard {
|
|
309
|
-
z;
|
|
310
|
-
el;
|
|
311
291
|
constructor(c, r, z) {
|
|
312
292
|
this.z = z;
|
|
313
293
|
c.detach();
|
|
314
294
|
this.el = r.nativeElement;
|
|
315
295
|
}
|
|
316
|
-
static
|
|
317
|
-
static
|
|
296
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
297
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcCard, 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 }); }
|
|
318
298
|
};
|
|
319
299
|
ModusWcCard = __decorate([
|
|
320
300
|
ProxyCmp({
|
|
321
301
|
inputs: ['backgroundFigure', 'bordered', 'customClass', 'layout', 'padding']
|
|
322
302
|
})
|
|
323
303
|
], ModusWcCard);
|
|
324
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
304
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcCard, decorators: [{
|
|
325
305
|
type: Component,
|
|
326
306
|
args: [{
|
|
327
307
|
selector: 'modus-wc-card',
|
|
@@ -332,23 +312,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
332
312
|
}]
|
|
333
313
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
334
314
|
let ModusWcCheckbox = class ModusWcCheckbox {
|
|
335
|
-
z;
|
|
336
|
-
el;
|
|
337
315
|
constructor(c, r, z) {
|
|
338
316
|
this.z = z;
|
|
339
317
|
c.detach();
|
|
340
318
|
this.el = r.nativeElement;
|
|
341
319
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
342
320
|
}
|
|
343
|
-
static
|
|
344
|
-
static
|
|
321
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
322
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcCheckbox, 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 }); }
|
|
345
323
|
};
|
|
346
324
|
ModusWcCheckbox = __decorate([
|
|
347
325
|
ProxyCmp({
|
|
348
326
|
inputs: ['customClass', 'disabled', 'indeterminate', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value']
|
|
349
327
|
})
|
|
350
328
|
], ModusWcCheckbox);
|
|
351
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
329
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcCheckbox, decorators: [{
|
|
352
330
|
type: Component,
|
|
353
331
|
args: [{
|
|
354
332
|
selector: 'modus-wc-checkbox',
|
|
@@ -359,50 +337,46 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
359
337
|
}]
|
|
360
338
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
361
339
|
let ModusWcChip = class ModusWcChip {
|
|
362
|
-
z;
|
|
363
|
-
el;
|
|
364
340
|
constructor(c, r, z) {
|
|
365
341
|
this.z = z;
|
|
366
342
|
c.detach();
|
|
367
343
|
this.el = r.nativeElement;
|
|
368
344
|
proxyOutputs(this, this.el, ['chipClick', 'chipRemove']);
|
|
369
345
|
}
|
|
370
|
-
static
|
|
371
|
-
static
|
|
346
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
347
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcChip, selector: "modus-wc-chip", inputs: { active: "active", customClass: "customClass", disabled: "disabled", hasError: "hasError", label: "label", multiline: "multiline", shape: "shape", showRemove: "showRemove", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
372
348
|
};
|
|
373
349
|
ModusWcChip = __decorate([
|
|
374
350
|
ProxyCmp({
|
|
375
|
-
inputs: ['active', 'customClass', 'disabled', 'hasError', 'label', 'shape', 'showRemove', 'size', 'variant']
|
|
351
|
+
inputs: ['active', 'customClass', 'disabled', 'hasError', 'label', 'multiline', 'shape', 'showRemove', 'size', 'variant']
|
|
376
352
|
})
|
|
377
353
|
], ModusWcChip);
|
|
378
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
354
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcChip, decorators: [{
|
|
379
355
|
type: Component,
|
|
380
356
|
args: [{
|
|
381
357
|
selector: 'modus-wc-chip',
|
|
382
358
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
383
359
|
template: '<ng-content></ng-content>',
|
|
384
360
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
385
|
-
inputs: ['active', 'customClass', 'disabled', 'hasError', 'label', 'shape', 'showRemove', 'size', 'variant'],
|
|
361
|
+
inputs: ['active', 'customClass', 'disabled', 'hasError', 'label', 'multiline', 'shape', 'showRemove', 'size', 'variant'],
|
|
386
362
|
}]
|
|
387
363
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
388
364
|
let ModusWcCollapse = class ModusWcCollapse {
|
|
389
|
-
z;
|
|
390
|
-
el;
|
|
391
365
|
constructor(c, r, z) {
|
|
392
366
|
this.z = z;
|
|
393
367
|
c.detach();
|
|
394
368
|
this.el = r.nativeElement;
|
|
395
369
|
proxyOutputs(this, this.el, ['expandedChange']);
|
|
396
370
|
}
|
|
397
|
-
static
|
|
398
|
-
static
|
|
371
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcCollapse, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
372
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcCollapse, selector: "modus-wc-collapse", inputs: { bordered: "bordered", chevronPosition: "chevronPosition", collapseId: "collapseId", customClass: "customClass", expanded: "expanded", options: "options" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
399
373
|
};
|
|
400
374
|
ModusWcCollapse = __decorate([
|
|
401
375
|
ProxyCmp({
|
|
402
376
|
inputs: ['bordered', 'chevronPosition', 'collapseId', 'customClass', 'expanded', 'options']
|
|
403
377
|
})
|
|
404
378
|
], ModusWcCollapse);
|
|
405
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
379
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcCollapse, decorators: [{
|
|
406
380
|
type: Component,
|
|
407
381
|
args: [{
|
|
408
382
|
selector: 'modus-wc-collapse',
|
|
@@ -413,23 +387,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
413
387
|
}]
|
|
414
388
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
415
389
|
let ModusWcDate = class ModusWcDate {
|
|
416
|
-
z;
|
|
417
|
-
el;
|
|
418
390
|
constructor(c, r, z) {
|
|
419
391
|
this.z = z;
|
|
420
392
|
c.detach();
|
|
421
393
|
this.el = r.nativeElement;
|
|
422
394
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus', 'calendarMonthChange', 'calendarYearChange']);
|
|
423
395
|
}
|
|
424
|
-
static
|
|
425
|
-
static
|
|
396
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcDate, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
397
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcDate, selector: "modus-wc-date", inputs: { bordered: "bordered", customClass: "customClass", disabled: "disabled", feedback: "feedback", format: "format", inputId: "inputId", inputTabIndex: "inputTabIndex", label: "label", max: "max", min: "min", name: "name", readOnly: "readOnly", required: "required", showWeekNumbers: "showWeekNumbers", size: "size", value: "value", weekStartDay: "weekStartDay" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
426
398
|
};
|
|
427
399
|
ModusWcDate = __decorate([
|
|
428
400
|
ProxyCmp({
|
|
429
401
|
inputs: ['bordered', 'customClass', 'disabled', 'feedback', 'format', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'readOnly', 'required', 'showWeekNumbers', 'size', 'value', 'weekStartDay']
|
|
430
402
|
})
|
|
431
403
|
], ModusWcDate);
|
|
432
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
404
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcDate, decorators: [{
|
|
433
405
|
type: Component,
|
|
434
406
|
args: [{
|
|
435
407
|
selector: 'modus-wc-date',
|
|
@@ -440,22 +412,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
440
412
|
}]
|
|
441
413
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
442
414
|
let ModusWcDivider = class ModusWcDivider {
|
|
443
|
-
z;
|
|
444
|
-
el;
|
|
445
415
|
constructor(c, r, z) {
|
|
446
416
|
this.z = z;
|
|
447
417
|
c.detach();
|
|
448
418
|
this.el = r.nativeElement;
|
|
449
419
|
}
|
|
450
|
-
static
|
|
451
|
-
static
|
|
420
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
421
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcDivider, 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 }); }
|
|
452
422
|
};
|
|
453
423
|
ModusWcDivider = __decorate([
|
|
454
424
|
ProxyCmp({
|
|
455
425
|
inputs: ['color', 'content', 'customClass', 'orientation', 'position', 'responsive']
|
|
456
426
|
})
|
|
457
427
|
], ModusWcDivider);
|
|
458
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
428
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcDivider, decorators: [{
|
|
459
429
|
type: Component,
|
|
460
430
|
args: [{
|
|
461
431
|
selector: 'modus-wc-divider',
|
|
@@ -466,23 +436,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
466
436
|
}]
|
|
467
437
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
468
438
|
let ModusWcDropdownMenu = class ModusWcDropdownMenu {
|
|
469
|
-
z;
|
|
470
|
-
el;
|
|
471
439
|
constructor(c, r, z) {
|
|
472
440
|
this.z = z;
|
|
473
441
|
c.detach();
|
|
474
442
|
this.el = r.nativeElement;
|
|
475
443
|
proxyOutputs(this, this.el, ['menuVisibilityChange']);
|
|
476
444
|
}
|
|
477
|
-
static
|
|
478
|
-
static
|
|
445
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcDropdownMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
446
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcDropdownMenu, selector: "modus-wc-dropdown-menu", inputs: { buttonAriaLabel: "buttonAriaLabel", buttonColor: "buttonColor", buttonShape: "buttonShape", 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 }); }
|
|
479
447
|
};
|
|
480
448
|
ModusWcDropdownMenu = __decorate([
|
|
481
449
|
ProxyCmp({
|
|
482
450
|
inputs: ['buttonAriaLabel', 'buttonColor', 'buttonShape', 'buttonSize', 'buttonVariant', 'customClass', 'disabled', 'menuBordered', 'menuOffset', 'menuPlacement', 'menuSize', 'menuVisible']
|
|
483
451
|
})
|
|
484
452
|
], ModusWcDropdownMenu);
|
|
485
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
453
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcDropdownMenu, decorators: [{
|
|
486
454
|
type: Component,
|
|
487
455
|
args: [{
|
|
488
456
|
selector: 'modus-wc-dropdown-menu',
|
|
@@ -493,16 +461,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
493
461
|
}]
|
|
494
462
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
495
463
|
let ModusWcFileDropzone = class ModusWcFileDropzone {
|
|
496
|
-
z;
|
|
497
|
-
el;
|
|
498
464
|
constructor(c, r, z) {
|
|
499
465
|
this.z = z;
|
|
500
466
|
c.detach();
|
|
501
467
|
this.el = r.nativeElement;
|
|
502
468
|
proxyOutputs(this, this.el, ['fileSelect']);
|
|
503
469
|
}
|
|
504
|
-
static
|
|
505
|
-
static
|
|
470
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcFileDropzone, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
471
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcFileDropzone, selector: "modus-wc-file-dropzone", inputs: { acceptFileTypes: "acceptFileTypes", customClass: "customClass", disabled: "disabled", fileDraggedOverInstructions: "fileDraggedOverInstructions", includeStateIcon: "includeStateIcon", instructions: "instructions", invalidFileTypeMessage: "invalidFileTypeMessage", maxFileCount: "maxFileCount", maxFileNameLength: "maxFileNameLength", maxTotalFileSizeBytes: "maxTotalFileSizeBytes", multiple: "multiple", successMessage: "successMessage" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
506
472
|
};
|
|
507
473
|
ModusWcFileDropzone = __decorate([
|
|
508
474
|
ProxyCmp({
|
|
@@ -510,7 +476,7 @@ ModusWcFileDropzone = __decorate([
|
|
|
510
476
|
methods: ['reset']
|
|
511
477
|
})
|
|
512
478
|
], ModusWcFileDropzone);
|
|
513
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
479
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcFileDropzone, decorators: [{
|
|
514
480
|
type: Component,
|
|
515
481
|
args: [{
|
|
516
482
|
selector: 'modus-wc-file-dropzone',
|
|
@@ -521,22 +487,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
521
487
|
}]
|
|
522
488
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
523
489
|
let ModusWcHandle = class ModusWcHandle {
|
|
524
|
-
z;
|
|
525
|
-
el;
|
|
526
490
|
constructor(c, r, z) {
|
|
527
491
|
this.z = z;
|
|
528
492
|
c.detach();
|
|
529
493
|
this.el = r.nativeElement;
|
|
530
494
|
}
|
|
531
|
-
static
|
|
532
|
-
static
|
|
495
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcHandle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
496
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcHandle, selector: "modus-wc-handle", inputs: { buttonColor: "buttonColor", buttonSize: "buttonSize", buttonVariant: "buttonVariant", customClass: "customClass", defaultSplit: "defaultSplit", density: "density", leftTarget: "leftTarget", orientation: "orientation", rightTarget: "rightTarget", size: "size", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
533
497
|
};
|
|
534
498
|
ModusWcHandle = __decorate([
|
|
535
499
|
ProxyCmp({
|
|
536
500
|
inputs: ['buttonColor', 'buttonSize', 'buttonVariant', 'customClass', 'defaultSplit', 'density', 'leftTarget', 'orientation', 'rightTarget', 'size', 'type']
|
|
537
501
|
})
|
|
538
502
|
], ModusWcHandle);
|
|
539
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
503
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcHandle, decorators: [{
|
|
540
504
|
type: Component,
|
|
541
505
|
args: [{
|
|
542
506
|
selector: 'modus-wc-handle',
|
|
@@ -547,22 +511,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
547
511
|
}]
|
|
548
512
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
549
513
|
let ModusWcIcon = class ModusWcIcon {
|
|
550
|
-
z;
|
|
551
|
-
el;
|
|
552
514
|
constructor(c, r, z) {
|
|
553
515
|
this.z = z;
|
|
554
516
|
c.detach();
|
|
555
517
|
this.el = r.nativeElement;
|
|
556
518
|
}
|
|
557
|
-
static
|
|
558
|
-
static
|
|
519
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
520
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcIcon, 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 }); }
|
|
559
521
|
};
|
|
560
522
|
ModusWcIcon = __decorate([
|
|
561
523
|
ProxyCmp({
|
|
562
524
|
inputs: ['customClass', 'decorative', 'name', 'size', 'variant']
|
|
563
525
|
})
|
|
564
526
|
], ModusWcIcon);
|
|
565
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
527
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcIcon, decorators: [{
|
|
566
528
|
type: Component,
|
|
567
529
|
args: [{
|
|
568
530
|
selector: 'modus-wc-icon',
|
|
@@ -573,22 +535,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
573
535
|
}]
|
|
574
536
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
575
537
|
let ModusWcInputFeedback = class ModusWcInputFeedback {
|
|
576
|
-
z;
|
|
577
|
-
el;
|
|
578
538
|
constructor(c, r, z) {
|
|
579
539
|
this.z = z;
|
|
580
540
|
c.detach();
|
|
581
541
|
this.el = r.nativeElement;
|
|
582
542
|
}
|
|
583
|
-
static
|
|
584
|
-
static
|
|
543
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcInputFeedback, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
544
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcInputFeedback, 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 }); }
|
|
585
545
|
};
|
|
586
546
|
ModusWcInputFeedback = __decorate([
|
|
587
547
|
ProxyCmp({
|
|
588
548
|
inputs: ['customClass', 'icon', 'level', 'message', 'size']
|
|
589
549
|
})
|
|
590
550
|
], ModusWcInputFeedback);
|
|
591
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
551
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcInputFeedback, decorators: [{
|
|
592
552
|
type: Component,
|
|
593
553
|
args: [{
|
|
594
554
|
selector: 'modus-wc-input-feedback',
|
|
@@ -599,22 +559,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
599
559
|
}]
|
|
600
560
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
601
561
|
let ModusWcInputLabel = class ModusWcInputLabel {
|
|
602
|
-
z;
|
|
603
|
-
el;
|
|
604
562
|
constructor(c, r, z) {
|
|
605
563
|
this.z = z;
|
|
606
564
|
c.detach();
|
|
607
565
|
this.el = r.nativeElement;
|
|
608
566
|
}
|
|
609
|
-
static
|
|
610
|
-
static
|
|
567
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcInputLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
568
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcInputLabel, 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 }); }
|
|
611
569
|
};
|
|
612
570
|
ModusWcInputLabel = __decorate([
|
|
613
571
|
ProxyCmp({
|
|
614
572
|
inputs: ['customClass', 'forId', 'labelText', 'required', 'size', 'subLabelText']
|
|
615
573
|
})
|
|
616
574
|
], ModusWcInputLabel);
|
|
617
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
575
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcInputLabel, decorators: [{
|
|
618
576
|
type: Component,
|
|
619
577
|
args: [{
|
|
620
578
|
selector: 'modus-wc-input-label',
|
|
@@ -624,23 +582,45 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
624
582
|
inputs: ['customClass', 'forId', 'labelText', 'required', 'size', 'subLabelText'],
|
|
625
583
|
}]
|
|
626
584
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
585
|
+
let ModusWcLink = class ModusWcLink {
|
|
586
|
+
constructor(c, r, z) {
|
|
587
|
+
this.z = z;
|
|
588
|
+
c.detach();
|
|
589
|
+
this.el = r.nativeElement;
|
|
590
|
+
}
|
|
591
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
592
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcLink, selector: "modus-wc-link", inputs: { color: "color", customClass: "customClass", href: "href", rel: "rel", target: "target", underline: "underline" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
593
|
+
};
|
|
594
|
+
ModusWcLink = __decorate([
|
|
595
|
+
ProxyCmp({
|
|
596
|
+
inputs: ['color', 'customClass', 'href', 'rel', 'target', 'underline']
|
|
597
|
+
})
|
|
598
|
+
], ModusWcLink);
|
|
599
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcLink, decorators: [{
|
|
600
|
+
type: Component,
|
|
601
|
+
args: [{
|
|
602
|
+
selector: 'modus-wc-link',
|
|
603
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
604
|
+
template: '<ng-content></ng-content>',
|
|
605
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
606
|
+
inputs: ['color', 'customClass', 'href', 'rel', 'target', 'underline'],
|
|
607
|
+
}]
|
|
608
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
627
609
|
let ModusWcLoader = class ModusWcLoader {
|
|
628
|
-
z;
|
|
629
|
-
el;
|
|
630
610
|
constructor(c, r, z) {
|
|
631
611
|
this.z = z;
|
|
632
612
|
c.detach();
|
|
633
613
|
this.el = r.nativeElement;
|
|
634
614
|
}
|
|
635
|
-
static
|
|
636
|
-
static
|
|
615
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcLoader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
616
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcLoader, 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 }); }
|
|
637
617
|
};
|
|
638
618
|
ModusWcLoader = __decorate([
|
|
639
619
|
ProxyCmp({
|
|
640
620
|
inputs: ['color', 'customClass', 'size', 'variant']
|
|
641
621
|
})
|
|
642
622
|
], ModusWcLoader);
|
|
643
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
623
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcLoader, decorators: [{
|
|
644
624
|
type: Component,
|
|
645
625
|
args: [{
|
|
646
626
|
selector: 'modus-wc-loader',
|
|
@@ -651,22 +631,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
651
631
|
}]
|
|
652
632
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
653
633
|
let ModusWcLogo = class ModusWcLogo {
|
|
654
|
-
z;
|
|
655
|
-
el;
|
|
656
634
|
constructor(c, r, z) {
|
|
657
635
|
this.z = z;
|
|
658
636
|
c.detach();
|
|
659
637
|
this.el = r.nativeElement;
|
|
660
638
|
}
|
|
661
|
-
static
|
|
662
|
-
static
|
|
639
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcLogo, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
640
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcLogo, selector: "modus-wc-logo", inputs: { alt: "alt", customClass: "customClass", emblem: "emblem", name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
663
641
|
};
|
|
664
642
|
ModusWcLogo = __decorate([
|
|
665
643
|
ProxyCmp({
|
|
666
644
|
inputs: ['alt', 'customClass', 'emblem', 'name']
|
|
667
645
|
})
|
|
668
646
|
], ModusWcLogo);
|
|
669
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
647
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcLogo, decorators: [{
|
|
670
648
|
type: Component,
|
|
671
649
|
args: [{
|
|
672
650
|
selector: 'modus-wc-logo',
|
|
@@ -677,23 +655,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
677
655
|
}]
|
|
678
656
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
679
657
|
let ModusWcMenu = class ModusWcMenu {
|
|
680
|
-
z;
|
|
681
|
-
el;
|
|
682
658
|
constructor(c, r, z) {
|
|
683
659
|
this.z = z;
|
|
684
660
|
c.detach();
|
|
685
661
|
this.el = r.nativeElement;
|
|
686
662
|
proxyOutputs(this, this.el, ['menuFocusout', 'menuSelectionChange']);
|
|
687
663
|
}
|
|
688
|
-
static
|
|
689
|
-
static
|
|
664
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
665
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcMenu, selector: "modus-wc-menu", inputs: { bordered: "bordered", customClass: "customClass", isSubMenu: "isSubMenu", orientation: "orientation", selectionMode: "selectionMode", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
690
666
|
};
|
|
691
667
|
ModusWcMenu = __decorate([
|
|
692
668
|
ProxyCmp({
|
|
693
669
|
inputs: ['bordered', 'customClass', 'isSubMenu', 'orientation', 'selectionMode', 'size']
|
|
694
670
|
})
|
|
695
671
|
], ModusWcMenu);
|
|
696
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
672
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcMenu, decorators: [{
|
|
697
673
|
type: Component,
|
|
698
674
|
args: [{
|
|
699
675
|
selector: 'modus-wc-menu',
|
|
@@ -704,16 +680,14 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
704
680
|
}]
|
|
705
681
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
706
682
|
let ModusWcMenuItem = class ModusWcMenuItem {
|
|
707
|
-
z;
|
|
708
|
-
el;
|
|
709
683
|
constructor(c, r, z) {
|
|
710
684
|
this.z = z;
|
|
711
685
|
c.detach();
|
|
712
686
|
this.el = r.nativeElement;
|
|
713
687
|
proxyOutputs(this, this.el, ['itemSelect']);
|
|
714
688
|
}
|
|
715
|
-
static
|
|
716
|
-
static
|
|
689
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
690
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcMenuItem, selector: "modus-wc-menu-item", inputs: { bordered: "bordered", checkbox: "checkbox", customClass: "customClass", disabled: "disabled", focused: "focused", hasSubmenu: "hasSubmenu", label: "label", selected: "selected", size: "size", subLabel: "subLabel", tooltipContent: "tooltipContent", tooltipPosition: "tooltipPosition", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
717
691
|
};
|
|
718
692
|
ModusWcMenuItem = __decorate([
|
|
719
693
|
ProxyCmp({
|
|
@@ -721,7 +695,7 @@ ModusWcMenuItem = __decorate([
|
|
|
721
695
|
methods: ['collapseSubmenu']
|
|
722
696
|
})
|
|
723
697
|
], ModusWcMenuItem);
|
|
724
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
698
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcMenuItem, decorators: [{
|
|
725
699
|
type: Component,
|
|
726
700
|
args: [{
|
|
727
701
|
selector: 'modus-wc-menu-item',
|
|
@@ -732,22 +706,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
732
706
|
}]
|
|
733
707
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
734
708
|
let ModusWcModal = class ModusWcModal {
|
|
735
|
-
z;
|
|
736
|
-
el;
|
|
737
709
|
constructor(c, r, z) {
|
|
738
710
|
this.z = z;
|
|
739
711
|
c.detach();
|
|
740
712
|
this.el = r.nativeElement;
|
|
741
713
|
}
|
|
742
|
-
static
|
|
743
|
-
static
|
|
714
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
715
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcModal, 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 }); }
|
|
744
716
|
};
|
|
745
717
|
ModusWcModal = __decorate([
|
|
746
718
|
ProxyCmp({
|
|
747
719
|
inputs: ['backdrop', 'customClass', 'fullscreen', 'modalId', 'position', 'showClose', 'showFullscreenToggle']
|
|
748
720
|
})
|
|
749
721
|
], ModusWcModal);
|
|
750
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
722
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcModal, decorators: [{
|
|
751
723
|
type: Component,
|
|
752
724
|
args: [{
|
|
753
725
|
selector: 'modus-wc-modal',
|
|
@@ -758,23 +730,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
758
730
|
}]
|
|
759
731
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
760
732
|
let ModusWcNavbar = class ModusWcNavbar {
|
|
761
|
-
z;
|
|
762
|
-
el;
|
|
763
733
|
constructor(c, r, z) {
|
|
764
734
|
this.z = z;
|
|
765
735
|
c.detach();
|
|
766
736
|
this.el = r.nativeElement;
|
|
767
737
|
proxyOutputs(this, this.el, ['aiClick', 'appsClick', 'appsMenuOpenChange', 'condensedMenuOpenChange', 'helpClick', 'mainMenuOpenChange', 'myTrimbleClick', 'notificationsClick', 'notificationsMenuOpenChange', 'searchChange', 'searchClick', 'searchInputOpenChange', 'signOutClick', 'trimbleLogoClick', 'userMenuOpenChange']);
|
|
768
738
|
}
|
|
769
|
-
static
|
|
770
|
-
static
|
|
739
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcNavbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
740
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcNavbar, selector: "modus-wc-navbar", inputs: { appsMenuOpen: "appsMenuOpen", condensed: "condensed", condensedMenuOpen: "condensedMenuOpen", customClass: "customClass", logoName: "logoName", 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 }); }
|
|
771
741
|
};
|
|
772
742
|
ModusWcNavbar = __decorate([
|
|
773
743
|
ProxyCmp({
|
|
774
744
|
inputs: ['appsMenuOpen', 'condensed', 'condensedMenuOpen', 'customClass', 'logoName', 'mainMenuOpen', 'notificationsMenuOpen', 'searchDebounceMs', 'searchInputOpen', 'textOverrides', 'userCard', 'userMenuOpen', 'visibility']
|
|
775
745
|
})
|
|
776
746
|
], ModusWcNavbar);
|
|
777
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
747
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcNavbar, decorators: [{
|
|
778
748
|
type: Component,
|
|
779
749
|
args: [{
|
|
780
750
|
selector: 'modus-wc-navbar',
|
|
@@ -785,23 +755,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
785
755
|
}]
|
|
786
756
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
787
757
|
let ModusWcNumberInput = class ModusWcNumberInput {
|
|
788
|
-
z;
|
|
789
|
-
el;
|
|
790
758
|
constructor(c, r, z) {
|
|
791
759
|
this.z = z;
|
|
792
760
|
c.detach();
|
|
793
761
|
this.el = r.nativeElement;
|
|
794
762
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
795
763
|
}
|
|
796
|
-
static
|
|
797
|
-
static
|
|
764
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcNumberInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
765
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcNumberInput, 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 }); }
|
|
798
766
|
};
|
|
799
767
|
ModusWcNumberInput = __decorate([
|
|
800
768
|
ProxyCmp({
|
|
801
769
|
inputs: ['autoComplete', 'bordered', 'currencySymbol', 'customClass', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'placeholder', 'readOnly', 'required', 'size', 'step', 'type', 'value']
|
|
802
770
|
})
|
|
803
771
|
], ModusWcNumberInput);
|
|
804
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
772
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcNumberInput, decorators: [{
|
|
805
773
|
type: Component,
|
|
806
774
|
args: [{
|
|
807
775
|
selector: 'modus-wc-number-input',
|
|
@@ -812,23 +780,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
812
780
|
}]
|
|
813
781
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
814
782
|
let ModusWcPagination = class ModusWcPagination {
|
|
815
|
-
z;
|
|
816
|
-
el;
|
|
817
783
|
constructor(c, r, z) {
|
|
818
784
|
this.z = z;
|
|
819
785
|
c.detach();
|
|
820
786
|
this.el = r.nativeElement;
|
|
821
787
|
proxyOutputs(this, this.el, ['pageChange']);
|
|
822
788
|
}
|
|
823
|
-
static
|
|
824
|
-
static
|
|
789
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcPagination, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
790
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcPagination, 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 }); }
|
|
825
791
|
};
|
|
826
792
|
ModusWcPagination = __decorate([
|
|
827
793
|
ProxyCmp({
|
|
828
794
|
inputs: ['ariaLabelValues', 'count', 'customClass', 'nextButtonText', 'page', 'prevButtonText', 'size']
|
|
829
795
|
})
|
|
830
796
|
], ModusWcPagination);
|
|
831
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
797
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcPagination, decorators: [{
|
|
832
798
|
type: Component,
|
|
833
799
|
args: [{
|
|
834
800
|
selector: 'modus-wc-pagination',
|
|
@@ -839,22 +805,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
839
805
|
}]
|
|
840
806
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
841
807
|
let ModusWcPanel = class ModusWcPanel {
|
|
842
|
-
z;
|
|
843
|
-
el;
|
|
844
808
|
constructor(c, r, z) {
|
|
845
809
|
this.z = z;
|
|
846
810
|
c.detach();
|
|
847
811
|
this.el = r.nativeElement;
|
|
848
812
|
}
|
|
849
|
-
static
|
|
850
|
-
static
|
|
813
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
814
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcPanel, selector: "modus-wc-panel", inputs: { customClass: "customClass", floating: "floating", height: "height", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
851
815
|
};
|
|
852
816
|
ModusWcPanel = __decorate([
|
|
853
817
|
ProxyCmp({
|
|
854
818
|
inputs: ['customClass', 'floating', 'height', 'width']
|
|
855
819
|
})
|
|
856
820
|
], ModusWcPanel);
|
|
857
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
821
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcPanel, decorators: [{
|
|
858
822
|
type: Component,
|
|
859
823
|
args: [{
|
|
860
824
|
selector: 'modus-wc-panel',
|
|
@@ -865,23 +829,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
865
829
|
}]
|
|
866
830
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
867
831
|
let ModusWcProfileMenu = class ModusWcProfileMenu {
|
|
868
|
-
z;
|
|
869
|
-
el;
|
|
870
832
|
constructor(c, r, z) {
|
|
871
833
|
this.z = z;
|
|
872
834
|
c.detach();
|
|
873
835
|
this.el = r.nativeElement;
|
|
874
836
|
proxyOutputs(this, this.el, ['signOutClick', 'menuItemClick']);
|
|
875
837
|
}
|
|
876
|
-
static
|
|
877
|
-
static
|
|
838
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcProfileMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
839
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcProfileMenu, selector: "modus-wc-profile-menu", inputs: { menuOne: "menuOne", menuTwo: "menuTwo", profileProps: "profileProps" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
878
840
|
};
|
|
879
841
|
ModusWcProfileMenu = __decorate([
|
|
880
842
|
ProxyCmp({
|
|
881
843
|
inputs: ['menuOne', 'menuTwo', 'profileProps']
|
|
882
844
|
})
|
|
883
845
|
], ModusWcProfileMenu);
|
|
884
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
846
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcProfileMenu, decorators: [{
|
|
885
847
|
type: Component,
|
|
886
848
|
args: [{
|
|
887
849
|
selector: 'modus-wc-profile-menu',
|
|
@@ -892,22 +854,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
892
854
|
}]
|
|
893
855
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
894
856
|
let ModusWcProgress = class ModusWcProgress {
|
|
895
|
-
z;
|
|
896
|
-
el;
|
|
897
857
|
constructor(c, r, z) {
|
|
898
858
|
this.z = z;
|
|
899
859
|
c.detach();
|
|
900
860
|
this.el = r.nativeElement;
|
|
901
861
|
}
|
|
902
|
-
static
|
|
903
|
-
static
|
|
862
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcProgress, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
863
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcProgress, 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 }); }
|
|
904
864
|
};
|
|
905
865
|
ModusWcProgress = __decorate([
|
|
906
866
|
ProxyCmp({
|
|
907
867
|
inputs: ['customClass', 'indeterminate', 'label', 'max', 'value', 'variant']
|
|
908
868
|
})
|
|
909
869
|
], ModusWcProgress);
|
|
910
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
870
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcProgress, decorators: [{
|
|
911
871
|
type: Component,
|
|
912
872
|
args: [{
|
|
913
873
|
selector: 'modus-wc-progress',
|
|
@@ -918,23 +878,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
918
878
|
}]
|
|
919
879
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
920
880
|
let ModusWcRadio = class ModusWcRadio {
|
|
921
|
-
z;
|
|
922
|
-
el;
|
|
923
881
|
constructor(c, r, z) {
|
|
924
882
|
this.z = z;
|
|
925
883
|
c.detach();
|
|
926
884
|
this.el = r.nativeElement;
|
|
927
885
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
928
886
|
}
|
|
929
|
-
static
|
|
930
|
-
static
|
|
887
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
888
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcRadio, 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 }); }
|
|
931
889
|
};
|
|
932
890
|
ModusWcRadio = __decorate([
|
|
933
891
|
ProxyCmp({
|
|
934
892
|
inputs: ['customClass', 'disabled', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value']
|
|
935
893
|
})
|
|
936
894
|
], ModusWcRadio);
|
|
937
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
895
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcRadio, decorators: [{
|
|
938
896
|
type: Component,
|
|
939
897
|
args: [{
|
|
940
898
|
selector: 'modus-wc-radio',
|
|
@@ -945,23 +903,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
945
903
|
}]
|
|
946
904
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
947
905
|
let ModusWcRating = class ModusWcRating {
|
|
948
|
-
z;
|
|
949
|
-
el;
|
|
950
906
|
constructor(c, r, z) {
|
|
951
907
|
this.z = z;
|
|
952
908
|
c.detach();
|
|
953
909
|
this.el = r.nativeElement;
|
|
954
910
|
proxyOutputs(this, this.el, ['ratingChange']);
|
|
955
911
|
}
|
|
956
|
-
static
|
|
957
|
-
static
|
|
912
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcRating, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
913
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcRating, 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 }); }
|
|
958
914
|
};
|
|
959
915
|
ModusWcRating = __decorate([
|
|
960
916
|
ProxyCmp({
|
|
961
917
|
inputs: ['allowHalf', 'count', 'customClass', 'disabled', 'getAriaLabelText', 'size', 'value', 'variant']
|
|
962
918
|
})
|
|
963
919
|
], ModusWcRating);
|
|
964
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
920
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcRating, decorators: [{
|
|
965
921
|
type: Component,
|
|
966
922
|
args: [{
|
|
967
923
|
selector: 'modus-wc-rating',
|
|
@@ -972,23 +928,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
972
928
|
}]
|
|
973
929
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
974
930
|
let ModusWcSelect = class ModusWcSelect {
|
|
975
|
-
z;
|
|
976
|
-
el;
|
|
977
931
|
constructor(c, r, z) {
|
|
978
932
|
this.z = z;
|
|
979
933
|
c.detach();
|
|
980
934
|
this.el = r.nativeElement;
|
|
981
935
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
982
936
|
}
|
|
983
|
-
static
|
|
984
|
-
static
|
|
937
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
938
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcSelect, 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 }); }
|
|
985
939
|
};
|
|
986
940
|
ModusWcSelect = __decorate([
|
|
987
941
|
ProxyCmp({
|
|
988
942
|
inputs: ['bordered', 'customClass', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'name', 'options', 'required', 'size', 'value']
|
|
989
943
|
})
|
|
990
944
|
], ModusWcSelect);
|
|
991
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
945
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSelect, decorators: [{
|
|
992
946
|
type: Component,
|
|
993
947
|
args: [{
|
|
994
948
|
selector: 'modus-wc-select',
|
|
@@ -999,23 +953,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
999
953
|
}]
|
|
1000
954
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1001
955
|
let ModusWcSideNavigation = class ModusWcSideNavigation {
|
|
1002
|
-
z;
|
|
1003
|
-
el;
|
|
1004
956
|
constructor(c, r, z) {
|
|
1005
957
|
this.z = z;
|
|
1006
958
|
c.detach();
|
|
1007
959
|
this.el = r.nativeElement;
|
|
1008
960
|
proxyOutputs(this, this.el, ['expandedChange']);
|
|
1009
961
|
}
|
|
1010
|
-
static
|
|
1011
|
-
static
|
|
962
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSideNavigation, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
963
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcSideNavigation, 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 }); }
|
|
1012
964
|
};
|
|
1013
965
|
ModusWcSideNavigation = __decorate([
|
|
1014
966
|
ProxyCmp({
|
|
1015
967
|
inputs: ['collapseOnClickOutside', 'customClass', 'expanded', 'maxWidth', 'mode', 'targetContent']
|
|
1016
968
|
})
|
|
1017
969
|
], ModusWcSideNavigation);
|
|
1018
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
970
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSideNavigation, decorators: [{
|
|
1019
971
|
type: Component,
|
|
1020
972
|
args: [{
|
|
1021
973
|
selector: 'modus-wc-side-navigation',
|
|
@@ -1026,22 +978,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1026
978
|
}]
|
|
1027
979
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1028
980
|
let ModusWcSkeleton = class ModusWcSkeleton {
|
|
1029
|
-
z;
|
|
1030
|
-
el;
|
|
1031
981
|
constructor(c, r, z) {
|
|
1032
982
|
this.z = z;
|
|
1033
983
|
c.detach();
|
|
1034
984
|
this.el = r.nativeElement;
|
|
1035
985
|
}
|
|
1036
|
-
static
|
|
1037
|
-
static
|
|
986
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSkeleton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
987
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcSkeleton, 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 }); }
|
|
1038
988
|
};
|
|
1039
989
|
ModusWcSkeleton = __decorate([
|
|
1040
990
|
ProxyCmp({
|
|
1041
991
|
inputs: ['customClass', 'height', 'shape', 'width']
|
|
1042
992
|
})
|
|
1043
993
|
], ModusWcSkeleton);
|
|
1044
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
994
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSkeleton, decorators: [{
|
|
1045
995
|
type: Component,
|
|
1046
996
|
args: [{
|
|
1047
997
|
selector: 'modus-wc-skeleton',
|
|
@@ -1052,23 +1002,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1052
1002
|
}]
|
|
1053
1003
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1054
1004
|
let ModusWcSlider = class ModusWcSlider {
|
|
1055
|
-
z;
|
|
1056
|
-
el;
|
|
1057
1005
|
constructor(c, r, z) {
|
|
1058
1006
|
this.z = z;
|
|
1059
1007
|
c.detach();
|
|
1060
1008
|
this.el = r.nativeElement;
|
|
1061
1009
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
1062
1010
|
}
|
|
1063
|
-
static
|
|
1064
|
-
static
|
|
1011
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1012
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcSlider, 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 }); }
|
|
1065
1013
|
};
|
|
1066
1014
|
ModusWcSlider = __decorate([
|
|
1067
1015
|
ProxyCmp({
|
|
1068
1016
|
inputs: ['customClass', 'disabled', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'required', 'size', 'step', 'value']
|
|
1069
1017
|
})
|
|
1070
1018
|
], ModusWcSlider);
|
|
1071
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1019
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSlider, decorators: [{
|
|
1072
1020
|
type: Component,
|
|
1073
1021
|
args: [{
|
|
1074
1022
|
selector: 'modus-wc-slider',
|
|
@@ -1079,49 +1027,46 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1079
1027
|
}]
|
|
1080
1028
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1081
1029
|
let ModusWcStepper = class ModusWcStepper {
|
|
1082
|
-
z;
|
|
1083
|
-
el;
|
|
1084
1030
|
constructor(c, r, z) {
|
|
1085
1031
|
this.z = z;
|
|
1086
1032
|
c.detach();
|
|
1087
1033
|
this.el = r.nativeElement;
|
|
1034
|
+
proxyOutputs(this, this.el, ['stepClick']);
|
|
1088
1035
|
}
|
|
1089
|
-
static
|
|
1090
|
-
static
|
|
1036
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcStepper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1037
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcStepper, selector: "modus-wc-stepper", inputs: { customClass: "customClass", interactive: "interactive", orientation: "orientation", steps: "steps" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1091
1038
|
};
|
|
1092
1039
|
ModusWcStepper = __decorate([
|
|
1093
1040
|
ProxyCmp({
|
|
1094
|
-
inputs: ['customClass', 'orientation', 'steps']
|
|
1041
|
+
inputs: ['customClass', 'interactive', 'orientation', 'steps']
|
|
1095
1042
|
})
|
|
1096
1043
|
], ModusWcStepper);
|
|
1097
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1044
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcStepper, decorators: [{
|
|
1098
1045
|
type: Component,
|
|
1099
1046
|
args: [{
|
|
1100
1047
|
selector: 'modus-wc-stepper',
|
|
1101
1048
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1102
1049
|
template: '<ng-content></ng-content>',
|
|
1103
1050
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1104
|
-
inputs: ['customClass', 'orientation', 'steps'],
|
|
1051
|
+
inputs: ['customClass', 'interactive', 'orientation', 'steps'],
|
|
1105
1052
|
}]
|
|
1106
1053
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1107
1054
|
let ModusWcSwitch = class ModusWcSwitch {
|
|
1108
|
-
z;
|
|
1109
|
-
el;
|
|
1110
1055
|
constructor(c, r, z) {
|
|
1111
1056
|
this.z = z;
|
|
1112
1057
|
c.detach();
|
|
1113
1058
|
this.el = r.nativeElement;
|
|
1114
1059
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
1115
1060
|
}
|
|
1116
|
-
static
|
|
1117
|
-
static
|
|
1061
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1062
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcSwitch, 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 }); }
|
|
1118
1063
|
};
|
|
1119
1064
|
ModusWcSwitch = __decorate([
|
|
1120
1065
|
ProxyCmp({
|
|
1121
1066
|
inputs: ['customClass', 'disabled', 'indeterminate', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value']
|
|
1122
1067
|
})
|
|
1123
1068
|
], ModusWcSwitch);
|
|
1124
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1069
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSwitch, decorators: [{
|
|
1125
1070
|
type: Component,
|
|
1126
1071
|
args: [{
|
|
1127
1072
|
selector: 'modus-wc-switch',
|
|
@@ -1132,50 +1077,46 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1132
1077
|
}]
|
|
1133
1078
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1134
1079
|
let ModusWcTable = class ModusWcTable {
|
|
1135
|
-
z;
|
|
1136
|
-
el;
|
|
1137
1080
|
constructor(c, r, z) {
|
|
1138
1081
|
this.z = z;
|
|
1139
1082
|
c.detach();
|
|
1140
1083
|
this.el = r.nativeElement;
|
|
1141
1084
|
proxyOutputs(this, this.el, ['cellEditStart', 'cellEditCommit', 'rowClick', 'sortChange', 'paginationChange', 'rowSelectionChange']);
|
|
1142
1085
|
}
|
|
1143
|
-
static
|
|
1144
|
-
static
|
|
1086
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1087
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTable, selector: "modus-wc-table", inputs: { caption: "caption", columns: "columns", currentPage: "currentPage", customClass: "customClass", data: "data", density: "density", editable: "editable", hover: "hover", isRowSelectable: "isRowSelectable", 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 }); }
|
|
1145
1088
|
};
|
|
1146
1089
|
ModusWcTable = __decorate([
|
|
1147
1090
|
ProxyCmp({
|
|
1148
|
-
inputs: ['caption', 'columns', 'currentPage', 'customClass', 'data', 'density', 'editable', 'hover', 'pageSizeOptions', 'paginated', 'selectable', 'selectedRowIds', 'showPageSizeSelector', 'sortable', 'zebra']
|
|
1091
|
+
inputs: ['caption', 'columns', 'currentPage', 'customClass', 'data', 'density', 'editable', 'hover', 'isRowSelectable', 'pageSizeOptions', 'paginated', 'selectable', 'selectedRowIds', 'showPageSizeSelector', 'sortable', 'zebra']
|
|
1149
1092
|
})
|
|
1150
1093
|
], ModusWcTable);
|
|
1151
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1094
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTable, decorators: [{
|
|
1152
1095
|
type: Component,
|
|
1153
1096
|
args: [{
|
|
1154
1097
|
selector: 'modus-wc-table',
|
|
1155
1098
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
1156
1099
|
template: '<ng-content></ng-content>',
|
|
1157
1100
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1158
|
-
inputs: ['caption', 'columns', 'currentPage', 'customClass', 'data', 'density', 'editable', 'hover', 'pageSizeOptions', 'paginated', 'selectable', 'selectedRowIds', 'showPageSizeSelector', 'sortable', 'zebra'],
|
|
1101
|
+
inputs: ['caption', 'columns', 'currentPage', 'customClass', 'data', 'density', 'editable', 'hover', 'isRowSelectable', 'pageSizeOptions', 'paginated', 'selectable', 'selectedRowIds', 'showPageSizeSelector', 'sortable', 'zebra'],
|
|
1159
1102
|
}]
|
|
1160
1103
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1161
1104
|
let ModusWcTabs = class ModusWcTabs {
|
|
1162
|
-
z;
|
|
1163
|
-
el;
|
|
1164
1105
|
constructor(c, r, z) {
|
|
1165
1106
|
this.z = z;
|
|
1166
1107
|
c.detach();
|
|
1167
1108
|
this.el = r.nativeElement;
|
|
1168
1109
|
proxyOutputs(this, this.el, ['tabChange']);
|
|
1169
1110
|
}
|
|
1170
|
-
static
|
|
1171
|
-
static
|
|
1111
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTabs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1112
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTabs, 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 }); }
|
|
1172
1113
|
};
|
|
1173
1114
|
ModusWcTabs = __decorate([
|
|
1174
1115
|
ProxyCmp({
|
|
1175
1116
|
inputs: ['activeTabIndex', 'customClass', 'size', 'tabStyle', 'tabs']
|
|
1176
1117
|
})
|
|
1177
1118
|
], ModusWcTabs);
|
|
1178
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1119
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTabs, decorators: [{
|
|
1179
1120
|
type: Component,
|
|
1180
1121
|
args: [{
|
|
1181
1122
|
selector: 'modus-wc-tabs',
|
|
@@ -1186,23 +1127,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1186
1127
|
}]
|
|
1187
1128
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1188
1129
|
let ModusWcTextInput = class ModusWcTextInput {
|
|
1189
|
-
z;
|
|
1190
|
-
el;
|
|
1191
1130
|
constructor(c, r, z) {
|
|
1192
1131
|
this.z = z;
|
|
1193
1132
|
c.detach();
|
|
1194
1133
|
this.el = r.nativeElement;
|
|
1195
1134
|
proxyOutputs(this, this.el, ['clearClick', 'inputBlur', 'inputChange', 'inputFocus']);
|
|
1196
1135
|
}
|
|
1197
|
-
static
|
|
1198
|
-
static
|
|
1136
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTextInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1137
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTextInput, 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 }); }
|
|
1199
1138
|
};
|
|
1200
1139
|
ModusWcTextInput = __decorate([
|
|
1201
1140
|
ProxyCmp({
|
|
1202
1141
|
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']
|
|
1203
1142
|
})
|
|
1204
1143
|
], ModusWcTextInput);
|
|
1205
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1144
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTextInput, decorators: [{
|
|
1206
1145
|
type: Component,
|
|
1207
1146
|
args: [{
|
|
1208
1147
|
selector: 'modus-wc-text-input',
|
|
@@ -1213,23 +1152,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1213
1152
|
}]
|
|
1214
1153
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1215
1154
|
let ModusWcTextarea = class ModusWcTextarea {
|
|
1216
|
-
z;
|
|
1217
|
-
el;
|
|
1218
1155
|
constructor(c, r, z) {
|
|
1219
1156
|
this.z = z;
|
|
1220
1157
|
c.detach();
|
|
1221
1158
|
this.el = r.nativeElement;
|
|
1222
1159
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
1223
1160
|
}
|
|
1224
|
-
static
|
|
1225
|
-
static
|
|
1161
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1162
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTextarea, 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 }); }
|
|
1226
1163
|
};
|
|
1227
1164
|
ModusWcTextarea = __decorate([
|
|
1228
1165
|
ProxyCmp({
|
|
1229
1166
|
inputs: ['autoCorrect', 'bordered', 'customClass', 'disabled', 'enterkeyhint', 'feedback', 'inputId', 'inputTabIndex', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'readonly', 'required', 'rows', 'size', 'value']
|
|
1230
1167
|
})
|
|
1231
1168
|
], ModusWcTextarea);
|
|
1232
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1169
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTextarea, decorators: [{
|
|
1233
1170
|
type: Component,
|
|
1234
1171
|
args: [{
|
|
1235
1172
|
selector: 'modus-wc-textarea',
|
|
@@ -1240,22 +1177,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1240
1177
|
}]
|
|
1241
1178
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1242
1179
|
let ModusWcThemeProvider = class ModusWcThemeProvider {
|
|
1243
|
-
z;
|
|
1244
|
-
el;
|
|
1245
1180
|
constructor(c, r, z) {
|
|
1246
1181
|
this.z = z;
|
|
1247
1182
|
c.detach();
|
|
1248
1183
|
this.el = r.nativeElement;
|
|
1249
1184
|
}
|
|
1250
|
-
static
|
|
1251
|
-
static
|
|
1185
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcThemeProvider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1186
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcThemeProvider, selector: "modus-wc-theme-provider", inputs: { initialTheme: "initialTheme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1252
1187
|
};
|
|
1253
1188
|
ModusWcThemeProvider = __decorate([
|
|
1254
1189
|
ProxyCmp({
|
|
1255
1190
|
inputs: ['initialTheme']
|
|
1256
1191
|
})
|
|
1257
1192
|
], ModusWcThemeProvider);
|
|
1258
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1193
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcThemeProvider, decorators: [{
|
|
1259
1194
|
type: Component,
|
|
1260
1195
|
args: [{
|
|
1261
1196
|
selector: 'modus-wc-theme-provider',
|
|
@@ -1266,23 +1201,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1266
1201
|
}]
|
|
1267
1202
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1268
1203
|
let ModusWcThemeSwitcher = class ModusWcThemeSwitcher {
|
|
1269
|
-
z;
|
|
1270
|
-
el;
|
|
1271
1204
|
constructor(c, r, z) {
|
|
1272
1205
|
this.z = z;
|
|
1273
1206
|
c.detach();
|
|
1274
1207
|
this.el = r.nativeElement;
|
|
1275
1208
|
proxyOutputs(this, this.el, ['themeChange']);
|
|
1276
1209
|
}
|
|
1277
|
-
static
|
|
1278
|
-
static
|
|
1210
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcThemeSwitcher, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1211
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcThemeSwitcher, selector: "modus-wc-theme-switcher", inputs: { customClass: "customClass" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1279
1212
|
};
|
|
1280
1213
|
ModusWcThemeSwitcher = __decorate([
|
|
1281
1214
|
ProxyCmp({
|
|
1282
1215
|
inputs: ['customClass']
|
|
1283
1216
|
})
|
|
1284
1217
|
], ModusWcThemeSwitcher);
|
|
1285
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1218
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcThemeSwitcher, decorators: [{
|
|
1286
1219
|
type: Component,
|
|
1287
1220
|
args: [{
|
|
1288
1221
|
selector: 'modus-wc-theme-switcher',
|
|
@@ -1293,23 +1226,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1293
1226
|
}]
|
|
1294
1227
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1295
1228
|
let ModusWcTimeInput = class ModusWcTimeInput {
|
|
1296
|
-
z;
|
|
1297
|
-
el;
|
|
1298
1229
|
constructor(c, r, z) {
|
|
1299
1230
|
this.z = z;
|
|
1300
1231
|
c.detach();
|
|
1301
1232
|
this.el = r.nativeElement;
|
|
1302
1233
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
1303
1234
|
}
|
|
1304
|
-
static
|
|
1305
|
-
static
|
|
1235
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTimeInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1236
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTimeInput, 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 }); }
|
|
1306
1237
|
};
|
|
1307
1238
|
ModusWcTimeInput = __decorate([
|
|
1308
1239
|
ProxyCmp({
|
|
1309
1240
|
inputs: ['autoComplete', 'bordered', 'customClass', 'datalistId', 'datalistOptions', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'readOnly', 'required', 'showSeconds', 'size', 'step', 'value']
|
|
1310
1241
|
})
|
|
1311
1242
|
], ModusWcTimeInput);
|
|
1312
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1243
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTimeInput, decorators: [{
|
|
1313
1244
|
type: Component,
|
|
1314
1245
|
args: [{
|
|
1315
1246
|
selector: 'modus-wc-time-input',
|
|
@@ -1320,22 +1251,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1320
1251
|
}]
|
|
1321
1252
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1322
1253
|
let ModusWcToast = class ModusWcToast {
|
|
1323
|
-
z;
|
|
1324
|
-
el;
|
|
1325
1254
|
constructor(c, r, z) {
|
|
1326
1255
|
this.z = z;
|
|
1327
1256
|
c.detach();
|
|
1328
1257
|
this.el = r.nativeElement;
|
|
1329
1258
|
}
|
|
1330
|
-
static
|
|
1331
|
-
static
|
|
1259
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1260
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcToast, selector: "modus-wc-toast", inputs: { customClass: "customClass", delay: "delay", position: "position" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1332
1261
|
};
|
|
1333
1262
|
ModusWcToast = __decorate([
|
|
1334
1263
|
ProxyCmp({
|
|
1335
1264
|
inputs: ['customClass', 'delay', 'position']
|
|
1336
1265
|
})
|
|
1337
1266
|
], ModusWcToast);
|
|
1338
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1267
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcToast, decorators: [{
|
|
1339
1268
|
type: Component,
|
|
1340
1269
|
args: [{
|
|
1341
1270
|
selector: 'modus-wc-toast',
|
|
@@ -1346,22 +1275,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1346
1275
|
}]
|
|
1347
1276
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1348
1277
|
let ModusWcToolbar = class ModusWcToolbar {
|
|
1349
|
-
z;
|
|
1350
|
-
el;
|
|
1351
1278
|
constructor(c, r, z) {
|
|
1352
1279
|
this.z = z;
|
|
1353
1280
|
c.detach();
|
|
1354
1281
|
this.el = r.nativeElement;
|
|
1355
1282
|
}
|
|
1356
|
-
static
|
|
1357
|
-
static
|
|
1283
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcToolbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1284
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcToolbar, selector: "modus-wc-toolbar", inputs: { customClass: "customClass" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1358
1285
|
};
|
|
1359
1286
|
ModusWcToolbar = __decorate([
|
|
1360
1287
|
ProxyCmp({
|
|
1361
1288
|
inputs: ['customClass']
|
|
1362
1289
|
})
|
|
1363
1290
|
], ModusWcToolbar);
|
|
1364
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1291
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcToolbar, decorators: [{
|
|
1365
1292
|
type: Component,
|
|
1366
1293
|
args: [{
|
|
1367
1294
|
selector: 'modus-wc-toolbar',
|
|
@@ -1372,23 +1299,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1372
1299
|
}]
|
|
1373
1300
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1374
1301
|
let ModusWcTooltip = class ModusWcTooltip {
|
|
1375
|
-
z;
|
|
1376
|
-
el;
|
|
1377
1302
|
constructor(c, r, z) {
|
|
1378
1303
|
this.z = z;
|
|
1379
1304
|
c.detach();
|
|
1380
1305
|
this.el = r.nativeElement;
|
|
1381
1306
|
proxyOutputs(this, this.el, ['dismissEscape']);
|
|
1382
1307
|
}
|
|
1383
|
-
static
|
|
1384
|
-
static
|
|
1308
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1309
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTooltip, 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 }); }
|
|
1385
1310
|
};
|
|
1386
1311
|
ModusWcTooltip = __decorate([
|
|
1387
1312
|
ProxyCmp({
|
|
1388
1313
|
inputs: ['content', 'customClass', 'disabled', 'forceOpen', 'position', 'tooltipId']
|
|
1389
1314
|
})
|
|
1390
1315
|
], ModusWcTooltip);
|
|
1391
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1316
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTooltip, decorators: [{
|
|
1392
1317
|
type: Component,
|
|
1393
1318
|
args: [{
|
|
1394
1319
|
selector: 'modus-wc-tooltip',
|
|
@@ -1399,22 +1324,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1399
1324
|
}]
|
|
1400
1325
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1401
1326
|
let ModusWcTypography = class ModusWcTypography {
|
|
1402
|
-
z;
|
|
1403
|
-
el;
|
|
1404
1327
|
constructor(c, r, z) {
|
|
1405
1328
|
this.z = z;
|
|
1406
1329
|
c.detach();
|
|
1407
1330
|
this.el = r.nativeElement;
|
|
1408
1331
|
}
|
|
1409
|
-
static
|
|
1410
|
-
static
|
|
1332
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTypography, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1333
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTypography, selector: "modus-wc-typography", inputs: { customClass: "customClass", hierarchy: "hierarchy", label: "label", size: "size", weight: "weight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1411
1334
|
};
|
|
1412
1335
|
ModusWcTypography = __decorate([
|
|
1413
1336
|
ProxyCmp({
|
|
1414
1337
|
inputs: ['customClass', 'hierarchy', 'label', 'size', 'weight']
|
|
1415
1338
|
})
|
|
1416
1339
|
], ModusWcTypography);
|
|
1417
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1340
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTypography, decorators: [{
|
|
1418
1341
|
type: Component,
|
|
1419
1342
|
args: [{
|
|
1420
1343
|
selector: 'modus-wc-typography',
|
|
@@ -1425,23 +1348,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1425
1348
|
}]
|
|
1426
1349
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1427
1350
|
let ModusWcUtilityPanel = class ModusWcUtilityPanel {
|
|
1428
|
-
z;
|
|
1429
|
-
el;
|
|
1430
1351
|
constructor(c, r, z) {
|
|
1431
1352
|
this.z = z;
|
|
1432
1353
|
c.detach();
|
|
1433
1354
|
this.el = r.nativeElement;
|
|
1434
1355
|
proxyOutputs(this, this.el, ['panelOpened', 'panelClosed']);
|
|
1435
1356
|
}
|
|
1436
|
-
static
|
|
1437
|
-
static
|
|
1357
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcUtilityPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1358
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcUtilityPanel, selector: "modus-wc-utility-panel", inputs: { customClass: "customClass", expanded: "expanded", pushContent: "pushContent", targetElement: "targetElement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1438
1359
|
};
|
|
1439
1360
|
ModusWcUtilityPanel = __decorate([
|
|
1440
1361
|
ProxyCmp({
|
|
1441
1362
|
inputs: ['customClass', 'expanded', 'pushContent', 'targetElement']
|
|
1442
1363
|
})
|
|
1443
1364
|
], ModusWcUtilityPanel);
|
|
1444
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1365
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcUtilityPanel, decorators: [{
|
|
1445
1366
|
type: Component,
|
|
1446
1367
|
args: [{
|
|
1447
1368
|
selector: 'modus-wc-utility-panel',
|
|
@@ -1474,6 +1395,7 @@ const DIRECTIVES = [
|
|
|
1474
1395
|
ModusWcIcon,
|
|
1475
1396
|
ModusWcInputFeedback,
|
|
1476
1397
|
ModusWcInputLabel,
|
|
1398
|
+
ModusWcLink,
|
|
1477
1399
|
ModusWcLoader,
|
|
1478
1400
|
ModusWcLogo,
|
|
1479
1401
|
ModusWcMenu,
|
|
@@ -1508,29 +1430,37 @@ const DIRECTIVES = [
|
|
|
1508
1430
|
];
|
|
1509
1431
|
|
|
1510
1432
|
class ModusAngularComponentsModule {
|
|
1511
|
-
static
|
|
1512
|
-
static
|
|
1513
|
-
static
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1433
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusAngularComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1434
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.12", ngImport: i0, type: ModusAngularComponentsModule, declarations: [ModusWcAccordion, ModusWcAlert, ModusWcAppMenu, ModusWcAutocomplete, ModusWcAvatar, ModusWcBadge, ModusWcBreadcrumbs, ModusWcButton, ModusWcButtonGroup, ModusWcCard, ModusWcCheckbox, ModusWcChip, ModusWcCollapse, ModusWcDate, ModusWcDivider, ModusWcDropdownMenu, ModusWcFileDropzone, ModusWcHandle, ModusWcIcon, ModusWcInputFeedback, ModusWcInputLabel, ModusWcLink, ModusWcLoader, ModusWcLogo, ModusWcMenu, ModusWcMenuItem, ModusWcModal, ModusWcNavbar, ModusWcNumberInput, ModusWcPagination, ModusWcPanel, ModusWcProfileMenu, ModusWcProgress, ModusWcRadio, ModusWcRating, ModusWcSelect, ModusWcSideNavigation, ModusWcSkeleton, ModusWcSlider, ModusWcStepper, ModusWcSwitch, ModusWcTable, ModusWcTabs, ModusWcTextInput, ModusWcTextarea, ModusWcThemeProvider, ModusWcThemeSwitcher, ModusWcTimeInput, ModusWcToast, ModusWcToolbar, ModusWcTooltip, ModusWcTypography, ModusWcUtilityPanel], exports: [ModusWcAccordion, ModusWcAlert, ModusWcAppMenu, ModusWcAutocomplete, ModusWcAvatar, ModusWcBadge, ModusWcBreadcrumbs, ModusWcButton, ModusWcButtonGroup, ModusWcCard, ModusWcCheckbox, ModusWcChip, ModusWcCollapse, ModusWcDate, ModusWcDivider, ModusWcDropdownMenu, ModusWcFileDropzone, ModusWcHandle, ModusWcIcon, ModusWcInputFeedback, ModusWcInputLabel, ModusWcLink, ModusWcLoader, ModusWcLogo, ModusWcMenu, ModusWcMenuItem, ModusWcModal, ModusWcNavbar, ModusWcNumberInput, ModusWcPagination, ModusWcPanel, ModusWcProfileMenu, ModusWcProgress, ModusWcRadio, ModusWcRating, ModusWcSelect, ModusWcSideNavigation, ModusWcSkeleton, ModusWcSlider, ModusWcStepper, ModusWcSwitch, ModusWcTable, ModusWcTabs, ModusWcTextInput, ModusWcTextarea, ModusWcThemeProvider, ModusWcThemeSwitcher, ModusWcTimeInput, ModusWcToast, ModusWcToolbar, ModusWcTooltip, ModusWcTypography, ModusWcUtilityPanel] }); }
|
|
1435
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusAngularComponentsModule, providers: [
|
|
1436
|
+
{
|
|
1437
|
+
provide: APP_INITIALIZER,
|
|
1438
|
+
useFactory: () => () => {
|
|
1439
|
+
// Configure asset path for Angular applications
|
|
1440
|
+
// Assets should be copied to /assets/ via angular.json configuration
|
|
1441
|
+
setAssetPath('/assets/');
|
|
1442
|
+
defineCustomElements(window);
|
|
1443
|
+
},
|
|
1444
|
+
multi: true,
|
|
1445
|
+
}
|
|
1446
|
+
] }); }
|
|
1521
1447
|
}
|
|
1522
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1448
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusAngularComponentsModule, decorators: [{
|
|
1523
1449
|
type: NgModule,
|
|
1524
1450
|
args: [{
|
|
1525
|
-
|
|
1451
|
+
declarations: [...DIRECTIVES],
|
|
1526
1452
|
exports: [...DIRECTIVES],
|
|
1527
1453
|
providers: [
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1454
|
+
{
|
|
1455
|
+
provide: APP_INITIALIZER,
|
|
1456
|
+
useFactory: () => () => {
|
|
1457
|
+
// Configure asset path for Angular applications
|
|
1458
|
+
// Assets should be copied to /assets/ via angular.json configuration
|
|
1459
|
+
setAssetPath('/assets/');
|
|
1460
|
+
defineCustomElements(window);
|
|
1461
|
+
},
|
|
1462
|
+
multi: true,
|
|
1463
|
+
}
|
|
1534
1464
|
]
|
|
1535
1465
|
}]
|
|
1536
1466
|
}] });
|
|
@@ -1543,5 +1473,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.21", ngImpo
|
|
|
1543
1473
|
* Generated bundle index. Do not edit.
|
|
1544
1474
|
*/
|
|
1545
1475
|
|
|
1546
|
-
export { DIRECTIVES, ModusAngularComponentsModule, ModusWcAccordion, ModusWcAlert, ModusWcAppMenu, ModusWcAutocomplete, ModusWcAvatar, ModusWcBadge, ModusWcBreadcrumbs, ModusWcButton, ModusWcButtonGroup, ModusWcCard, ModusWcCheckbox, ModusWcChip, ModusWcCollapse, ModusWcDate, ModusWcDivider, ModusWcDropdownMenu, ModusWcFileDropzone, ModusWcHandle, ModusWcIcon, ModusWcInputFeedback, ModusWcInputLabel, ModusWcLoader, ModusWcLogo, ModusWcMenu, ModusWcMenuItem, ModusWcModal, ModusWcNavbar, ModusWcNumberInput, ModusWcPagination, ModusWcPanel, ModusWcProfileMenu, ModusWcProgress, ModusWcRadio, ModusWcRating, ModusWcSelect, ModusWcSideNavigation, ModusWcSkeleton, ModusWcSlider, ModusWcStepper, ModusWcSwitch, ModusWcTable, ModusWcTabs, ModusWcTextInput, ModusWcTextarea, ModusWcThemeProvider, ModusWcThemeSwitcher, ModusWcTimeInput, ModusWcToast, ModusWcToolbar, ModusWcTooltip, ModusWcTypography, ModusWcUtilityPanel };
|
|
1476
|
+
export { DIRECTIVES, ModusAngularComponentsModule, ModusWcAccordion, ModusWcAlert, ModusWcAppMenu, ModusWcAutocomplete, ModusWcAvatar, ModusWcBadge, ModusWcBreadcrumbs, ModusWcButton, ModusWcButtonGroup, ModusWcCard, ModusWcCheckbox, ModusWcChip, ModusWcCollapse, ModusWcDate, ModusWcDivider, ModusWcDropdownMenu, ModusWcFileDropzone, ModusWcHandle, ModusWcIcon, ModusWcInputFeedback, ModusWcInputLabel, ModusWcLink, ModusWcLoader, ModusWcLogo, ModusWcMenu, ModusWcMenuItem, ModusWcModal, ModusWcNavbar, ModusWcNumberInput, ModusWcPagination, ModusWcPanel, ModusWcProfileMenu, ModusWcProgress, ModusWcRadio, ModusWcRating, ModusWcSelect, ModusWcSideNavigation, ModusWcSkeleton, ModusWcSlider, ModusWcStepper, ModusWcSwitch, ModusWcTable, ModusWcTabs, ModusWcTextInput, ModusWcTextarea, ModusWcThemeProvider, ModusWcThemeSwitcher, ModusWcTimeInput, ModusWcToast, ModusWcToolbar, ModusWcTooltip, ModusWcTypography, ModusWcUtilityPanel };
|
|
1547
1477
|
//# sourceMappingURL=trimble-oss-moduswebcomponents-angular.mjs.map
|