@trimble-oss/moduswebcomponents-angular 1.0.7-ng19 → 1.1.0-ng18
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 +1419 -0
- package/esm2022/lib/stencil-generated/index.mjs +55 -0
- package/esm2022/public-api.mjs +7 -0
- package/esm2022/trimble-oss-moduswebcomponents-angular.mjs +5 -0
- package/fesm2022/trimble-oss-moduswebcomponents-angular.mjs +207 -171
- 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 +68 -51
- package/lib/stencil-generated/index.d.ts +1 -1
- package/package.json +6 -4
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { Component, ChangeDetectionStrategy, 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';
|
|
@@ -72,15 +72,15 @@ let ModusWcAccordion = class ModusWcAccordion {
|
|
|
72
72
|
this.el = r.nativeElement;
|
|
73
73
|
proxyOutputs(this, this.el, ['expandedChange']);
|
|
74
74
|
}
|
|
75
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
76
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
75
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
76
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: ModusWcAccordion, selector: "modus-wc-accordion", inputs: { customClass: "customClass" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
77
77
|
};
|
|
78
78
|
ModusWcAccordion = __decorate([
|
|
79
79
|
ProxyCmp({
|
|
80
80
|
inputs: ['customClass']
|
|
81
81
|
})
|
|
82
82
|
], ModusWcAccordion);
|
|
83
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
83
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcAccordion, decorators: [{
|
|
84
84
|
type: Component,
|
|
85
85
|
args: [{
|
|
86
86
|
selector: 'modus-wc-accordion',
|
|
@@ -99,15 +99,15 @@ let ModusWcAlert = class ModusWcAlert {
|
|
|
99
99
|
this.el = r.nativeElement;
|
|
100
100
|
proxyOutputs(this, this.el, ['dismissClick']);
|
|
101
101
|
}
|
|
102
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
103
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
102
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
103
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: ModusWcAlert, selector: "modus-wc-alert", inputs: { alertDescription: "alertDescription", alertTitle: "alertTitle", customClass: "customClass", delay: "delay", dismissible: "dismissible", icon: "icon", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
104
104
|
};
|
|
105
105
|
ModusWcAlert = __decorate([
|
|
106
106
|
ProxyCmp({
|
|
107
107
|
inputs: ['alertDescription', 'alertTitle', 'customClass', 'delay', 'dismissible', 'icon', 'variant']
|
|
108
108
|
})
|
|
109
109
|
], ModusWcAlert);
|
|
110
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
110
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcAlert, decorators: [{
|
|
111
111
|
type: Component,
|
|
112
112
|
args: [{
|
|
113
113
|
selector: 'modus-wc-alert',
|
|
@@ -126,8 +126,8 @@ let ModusWcAutocomplete = class ModusWcAutocomplete {
|
|
|
126
126
|
this.el = r.nativeElement;
|
|
127
127
|
proxyOutputs(this, this.el, ['chipRemove', 'chipsExpansionChange', 'clearClick', 'inputBlur', 'inputChange', 'inputFocus', 'itemSelect']);
|
|
128
128
|
}
|
|
129
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
130
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
129
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcAutocomplete, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
130
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: ModusWcAutocomplete, selector: "modus-wc-autocomplete", inputs: { 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 });
|
|
131
131
|
};
|
|
132
132
|
ModusWcAutocomplete = __decorate([
|
|
133
133
|
ProxyCmp({
|
|
@@ -135,7 +135,7 @@ ModusWcAutocomplete = __decorate([
|
|
|
135
135
|
methods: ['selectItem', 'openMenu', 'closeMenu', 'toggleMenu', 'focusInput', 'clearInput']
|
|
136
136
|
})
|
|
137
137
|
], ModusWcAutocomplete);
|
|
138
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
138
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcAutocomplete, decorators: [{
|
|
139
139
|
type: Component,
|
|
140
140
|
args: [{
|
|
141
141
|
selector: 'modus-wc-autocomplete',
|
|
@@ -153,15 +153,15 @@ let ModusWcAvatar = class ModusWcAvatar {
|
|
|
153
153
|
c.detach();
|
|
154
154
|
this.el = r.nativeElement;
|
|
155
155
|
}
|
|
156
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
157
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
156
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
157
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
158
158
|
};
|
|
159
159
|
ModusWcAvatar = __decorate([
|
|
160
160
|
ProxyCmp({
|
|
161
161
|
inputs: ['alt', 'customClass', 'imgSrc', 'initials', 'shape', 'size']
|
|
162
162
|
})
|
|
163
163
|
], ModusWcAvatar);
|
|
164
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
164
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcAvatar, decorators: [{
|
|
165
165
|
type: Component,
|
|
166
166
|
args: [{
|
|
167
167
|
selector: 'modus-wc-avatar',
|
|
@@ -179,15 +179,15 @@ let ModusWcBadge = class ModusWcBadge {
|
|
|
179
179
|
c.detach();
|
|
180
180
|
this.el = r.nativeElement;
|
|
181
181
|
}
|
|
182
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
183
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
182
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
183
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
184
184
|
};
|
|
185
185
|
ModusWcBadge = __decorate([
|
|
186
186
|
ProxyCmp({
|
|
187
187
|
inputs: ['color', 'customClass', 'size', 'variant']
|
|
188
188
|
})
|
|
189
189
|
], ModusWcBadge);
|
|
190
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
190
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcBadge, decorators: [{
|
|
191
191
|
type: Component,
|
|
192
192
|
args: [{
|
|
193
193
|
selector: 'modus-wc-badge',
|
|
@@ -206,15 +206,15 @@ let ModusWcBreadcrumbs = class ModusWcBreadcrumbs {
|
|
|
206
206
|
this.el = r.nativeElement;
|
|
207
207
|
proxyOutputs(this, this.el, ['breadcrumbClick']);
|
|
208
208
|
}
|
|
209
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
210
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
209
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcBreadcrumbs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
210
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
211
211
|
};
|
|
212
212
|
ModusWcBreadcrumbs = __decorate([
|
|
213
213
|
ProxyCmp({
|
|
214
214
|
inputs: ['customClass', 'items', 'size']
|
|
215
215
|
})
|
|
216
216
|
], ModusWcBreadcrumbs);
|
|
217
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
217
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcBreadcrumbs, decorators: [{
|
|
218
218
|
type: Component,
|
|
219
219
|
args: [{
|
|
220
220
|
selector: 'modus-wc-breadcrumbs',
|
|
@@ -233,15 +233,15 @@ let ModusWcButton = class ModusWcButton {
|
|
|
233
233
|
this.el = r.nativeElement;
|
|
234
234
|
proxyOutputs(this, this.el, ['buttonClick']);
|
|
235
235
|
}
|
|
236
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
237
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
236
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
237
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
238
238
|
};
|
|
239
239
|
ModusWcButton = __decorate([
|
|
240
240
|
ProxyCmp({
|
|
241
241
|
inputs: ['color', 'customClass', 'disabled', 'fullWidth', 'pressed', 'shape', 'size', 'type', 'variant']
|
|
242
242
|
})
|
|
243
243
|
], ModusWcButton);
|
|
244
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
244
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcButton, decorators: [{
|
|
245
245
|
type: Component,
|
|
246
246
|
args: [{
|
|
247
247
|
selector: 'modus-wc-button',
|
|
@@ -260,15 +260,15 @@ let ModusWcButtonGroup = class ModusWcButtonGroup {
|
|
|
260
260
|
this.el = r.nativeElement;
|
|
261
261
|
proxyOutputs(this, this.el, ['buttonGroupClick', 'buttonSelectionChange']);
|
|
262
262
|
}
|
|
263
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
264
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
263
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcButtonGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
264
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
265
265
|
};
|
|
266
266
|
ModusWcButtonGroup = __decorate([
|
|
267
267
|
ProxyCmp({
|
|
268
268
|
inputs: ['color', 'disabled', 'orientation', 'selectionType', 'variant']
|
|
269
269
|
})
|
|
270
270
|
], ModusWcButtonGroup);
|
|
271
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
271
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcButtonGroup, decorators: [{
|
|
272
272
|
type: Component,
|
|
273
273
|
args: [{
|
|
274
274
|
selector: 'modus-wc-button-group',
|
|
@@ -286,15 +286,15 @@ let ModusWcCard = class ModusWcCard {
|
|
|
286
286
|
c.detach();
|
|
287
287
|
this.el = r.nativeElement;
|
|
288
288
|
}
|
|
289
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
290
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
289
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
290
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
291
291
|
};
|
|
292
292
|
ModusWcCard = __decorate([
|
|
293
293
|
ProxyCmp({
|
|
294
294
|
inputs: ['backgroundFigure', 'bordered', 'customClass', 'layout', 'padding']
|
|
295
295
|
})
|
|
296
296
|
], ModusWcCard);
|
|
297
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
297
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcCard, decorators: [{
|
|
298
298
|
type: Component,
|
|
299
299
|
args: [{
|
|
300
300
|
selector: 'modus-wc-card',
|
|
@@ -313,15 +313,15 @@ let ModusWcCheckbox = class ModusWcCheckbox {
|
|
|
313
313
|
this.el = r.nativeElement;
|
|
314
314
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
315
315
|
}
|
|
316
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
317
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
316
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
317
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
318
318
|
};
|
|
319
319
|
ModusWcCheckbox = __decorate([
|
|
320
320
|
ProxyCmp({
|
|
321
321
|
inputs: ['customClass', 'disabled', 'indeterminate', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value']
|
|
322
322
|
})
|
|
323
323
|
], ModusWcCheckbox);
|
|
324
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
324
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcCheckbox, decorators: [{
|
|
325
325
|
type: Component,
|
|
326
326
|
args: [{
|
|
327
327
|
selector: 'modus-wc-checkbox',
|
|
@@ -340,15 +340,15 @@ let ModusWcChip = class ModusWcChip {
|
|
|
340
340
|
this.el = r.nativeElement;
|
|
341
341
|
proxyOutputs(this, this.el, ['chipClick', 'chipRemove']);
|
|
342
342
|
}
|
|
343
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
344
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
343
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
344
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: ModusWcChip, selector: "modus-wc-chip", inputs: { active: "active", customClass: "customClass", disabled: "disabled", hasError: "hasError", label: "label", shape: "shape", showRemove: "showRemove", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
345
345
|
};
|
|
346
346
|
ModusWcChip = __decorate([
|
|
347
347
|
ProxyCmp({
|
|
348
348
|
inputs: ['active', 'customClass', 'disabled', 'hasError', 'label', 'shape', 'showRemove', 'size', 'variant']
|
|
349
349
|
})
|
|
350
350
|
], ModusWcChip);
|
|
351
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
351
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcChip, decorators: [{
|
|
352
352
|
type: Component,
|
|
353
353
|
args: [{
|
|
354
354
|
selector: 'modus-wc-chip',
|
|
@@ -367,15 +367,15 @@ let ModusWcCollapse = class ModusWcCollapse {
|
|
|
367
367
|
this.el = r.nativeElement;
|
|
368
368
|
proxyOutputs(this, this.el, ['expandedChange']);
|
|
369
369
|
}
|
|
370
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
371
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
370
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcCollapse, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
371
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: ModusWcCollapse, selector: "modus-wc-collapse", inputs: { bordered: "bordered", collapseId: "collapseId", customClass: "customClass", expanded: "expanded", options: "options" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
372
372
|
};
|
|
373
373
|
ModusWcCollapse = __decorate([
|
|
374
374
|
ProxyCmp({
|
|
375
375
|
inputs: ['bordered', 'collapseId', 'customClass', 'expanded', 'options']
|
|
376
376
|
})
|
|
377
377
|
], ModusWcCollapse);
|
|
378
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
378
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcCollapse, decorators: [{
|
|
379
379
|
type: Component,
|
|
380
380
|
args: [{
|
|
381
381
|
selector: 'modus-wc-collapse',
|
|
@@ -394,15 +394,15 @@ let ModusWcDate = class ModusWcDate {
|
|
|
394
394
|
this.el = r.nativeElement;
|
|
395
395
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus', 'calendarMonthChange', 'calendarYearChange']);
|
|
396
396
|
}
|
|
397
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
398
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
397
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcDate, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
398
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
399
399
|
};
|
|
400
400
|
ModusWcDate = __decorate([
|
|
401
401
|
ProxyCmp({
|
|
402
402
|
inputs: ['bordered', 'customClass', 'disabled', 'feedback', 'format', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'readOnly', 'required', 'showWeekNumbers', 'size', 'value', 'weekStartDay']
|
|
403
403
|
})
|
|
404
404
|
], ModusWcDate);
|
|
405
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
405
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcDate, decorators: [{
|
|
406
406
|
type: Component,
|
|
407
407
|
args: [{
|
|
408
408
|
selector: 'modus-wc-date',
|
|
@@ -420,15 +420,15 @@ let ModusWcDivider = class ModusWcDivider {
|
|
|
420
420
|
c.detach();
|
|
421
421
|
this.el = r.nativeElement;
|
|
422
422
|
}
|
|
423
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
424
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
423
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
424
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
425
425
|
};
|
|
426
426
|
ModusWcDivider = __decorate([
|
|
427
427
|
ProxyCmp({
|
|
428
428
|
inputs: ['color', 'content', 'customClass', 'orientation', 'position', 'responsive']
|
|
429
429
|
})
|
|
430
430
|
], ModusWcDivider);
|
|
431
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
431
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcDivider, decorators: [{
|
|
432
432
|
type: Component,
|
|
433
433
|
args: [{
|
|
434
434
|
selector: 'modus-wc-divider',
|
|
@@ -447,15 +447,15 @@ let ModusWcDropdownMenu = class ModusWcDropdownMenu {
|
|
|
447
447
|
this.el = r.nativeElement;
|
|
448
448
|
proxyOutputs(this, this.el, ['menuVisibilityChange']);
|
|
449
449
|
}
|
|
450
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
451
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
450
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcDropdownMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
451
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: ModusWcDropdownMenu, selector: "modus-wc-dropdown-menu", inputs: { buttonAriaLabel: "buttonAriaLabel", buttonColor: "buttonColor", buttonSize: "buttonSize", buttonVariant: "buttonVariant", customClass: "customClass", disabled: "disabled", menuBordered: "menuBordered", menuOffset: "menuOffset", menuPlacement: "menuPlacement", menuSize: "menuSize", menuVisible: "menuVisible" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
452
452
|
};
|
|
453
453
|
ModusWcDropdownMenu = __decorate([
|
|
454
454
|
ProxyCmp({
|
|
455
455
|
inputs: ['buttonAriaLabel', 'buttonColor', 'buttonSize', 'buttonVariant', 'customClass', 'disabled', 'menuBordered', 'menuOffset', 'menuPlacement', 'menuSize', 'menuVisible']
|
|
456
456
|
})
|
|
457
457
|
], ModusWcDropdownMenu);
|
|
458
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
458
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcDropdownMenu, decorators: [{
|
|
459
459
|
type: Component,
|
|
460
460
|
args: [{
|
|
461
461
|
selector: 'modus-wc-dropdown-menu',
|
|
@@ -474,8 +474,8 @@ let ModusWcFileDropzone = class ModusWcFileDropzone {
|
|
|
474
474
|
this.el = r.nativeElement;
|
|
475
475
|
proxyOutputs(this, this.el, ['fileSelect']);
|
|
476
476
|
}
|
|
477
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
478
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
477
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcFileDropzone, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
478
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
479
479
|
};
|
|
480
480
|
ModusWcFileDropzone = __decorate([
|
|
481
481
|
ProxyCmp({
|
|
@@ -483,7 +483,7 @@ ModusWcFileDropzone = __decorate([
|
|
|
483
483
|
methods: ['reset']
|
|
484
484
|
})
|
|
485
485
|
], ModusWcFileDropzone);
|
|
486
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
486
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcFileDropzone, decorators: [{
|
|
487
487
|
type: Component,
|
|
488
488
|
args: [{
|
|
489
489
|
selector: 'modus-wc-file-dropzone',
|
|
@@ -501,15 +501,15 @@ let ModusWcHandle = class ModusWcHandle {
|
|
|
501
501
|
c.detach();
|
|
502
502
|
this.el = r.nativeElement;
|
|
503
503
|
}
|
|
504
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
505
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
504
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcHandle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
505
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
506
506
|
};
|
|
507
507
|
ModusWcHandle = __decorate([
|
|
508
508
|
ProxyCmp({
|
|
509
509
|
inputs: ['buttonColor', 'buttonSize', 'buttonVariant', 'customClass', 'defaultSplit', 'density', 'leftTarget', 'orientation', 'rightTarget', 'size', 'type']
|
|
510
510
|
})
|
|
511
511
|
], ModusWcHandle);
|
|
512
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
512
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcHandle, decorators: [{
|
|
513
513
|
type: Component,
|
|
514
514
|
args: [{
|
|
515
515
|
selector: 'modus-wc-handle',
|
|
@@ -527,15 +527,15 @@ let ModusWcIcon = class ModusWcIcon {
|
|
|
527
527
|
c.detach();
|
|
528
528
|
this.el = r.nativeElement;
|
|
529
529
|
}
|
|
530
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
531
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
530
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
531
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
532
532
|
};
|
|
533
533
|
ModusWcIcon = __decorate([
|
|
534
534
|
ProxyCmp({
|
|
535
535
|
inputs: ['customClass', 'decorative', 'name', 'size', 'variant']
|
|
536
536
|
})
|
|
537
537
|
], ModusWcIcon);
|
|
538
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
538
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcIcon, decorators: [{
|
|
539
539
|
type: Component,
|
|
540
540
|
args: [{
|
|
541
541
|
selector: 'modus-wc-icon',
|
|
@@ -553,15 +553,15 @@ let ModusWcInputFeedback = class ModusWcInputFeedback {
|
|
|
553
553
|
c.detach();
|
|
554
554
|
this.el = r.nativeElement;
|
|
555
555
|
}
|
|
556
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
557
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
556
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcInputFeedback, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
557
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
558
558
|
};
|
|
559
559
|
ModusWcInputFeedback = __decorate([
|
|
560
560
|
ProxyCmp({
|
|
561
561
|
inputs: ['customClass', 'icon', 'level', 'message', 'size']
|
|
562
562
|
})
|
|
563
563
|
], ModusWcInputFeedback);
|
|
564
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
564
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcInputFeedback, decorators: [{
|
|
565
565
|
type: Component,
|
|
566
566
|
args: [{
|
|
567
567
|
selector: 'modus-wc-input-feedback',
|
|
@@ -579,15 +579,15 @@ let ModusWcInputLabel = class ModusWcInputLabel {
|
|
|
579
579
|
c.detach();
|
|
580
580
|
this.el = r.nativeElement;
|
|
581
581
|
}
|
|
582
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
583
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
582
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcInputLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
583
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
584
584
|
};
|
|
585
585
|
ModusWcInputLabel = __decorate([
|
|
586
586
|
ProxyCmp({
|
|
587
587
|
inputs: ['customClass', 'forId', 'labelText', 'required', 'size', 'subLabelText']
|
|
588
588
|
})
|
|
589
589
|
], ModusWcInputLabel);
|
|
590
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
590
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcInputLabel, decorators: [{
|
|
591
591
|
type: Component,
|
|
592
592
|
args: [{
|
|
593
593
|
selector: 'modus-wc-input-label',
|
|
@@ -605,15 +605,15 @@ let ModusWcLoader = class ModusWcLoader {
|
|
|
605
605
|
c.detach();
|
|
606
606
|
this.el = r.nativeElement;
|
|
607
607
|
}
|
|
608
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
609
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
608
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcLoader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
609
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
610
610
|
};
|
|
611
611
|
ModusWcLoader = __decorate([
|
|
612
612
|
ProxyCmp({
|
|
613
613
|
inputs: ['color', 'customClass', 'size', 'variant']
|
|
614
614
|
})
|
|
615
615
|
], ModusWcLoader);
|
|
616
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
616
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcLoader, decorators: [{
|
|
617
617
|
type: Component,
|
|
618
618
|
args: [{
|
|
619
619
|
selector: 'modus-wc-loader',
|
|
@@ -631,15 +631,15 @@ let ModusWcLogo = class ModusWcLogo {
|
|
|
631
631
|
c.detach();
|
|
632
632
|
this.el = r.nativeElement;
|
|
633
633
|
}
|
|
634
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
635
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
634
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcLogo, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
635
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
636
636
|
};
|
|
637
637
|
ModusWcLogo = __decorate([
|
|
638
638
|
ProxyCmp({
|
|
639
639
|
inputs: ['alt', 'customClass', 'emblem', 'name']
|
|
640
640
|
})
|
|
641
641
|
], ModusWcLogo);
|
|
642
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
642
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcLogo, decorators: [{
|
|
643
643
|
type: Component,
|
|
644
644
|
args: [{
|
|
645
645
|
selector: 'modus-wc-logo',
|
|
@@ -658,15 +658,15 @@ let ModusWcMenu = class ModusWcMenu {
|
|
|
658
658
|
this.el = r.nativeElement;
|
|
659
659
|
proxyOutputs(this, this.el, ['menuFocusout']);
|
|
660
660
|
}
|
|
661
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
662
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
661
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
662
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: ModusWcMenu, selector: "modus-wc-menu", inputs: { bordered: "bordered", customClass: "customClass", isSubMenu: "isSubMenu", orientation: "orientation", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
663
663
|
};
|
|
664
664
|
ModusWcMenu = __decorate([
|
|
665
665
|
ProxyCmp({
|
|
666
666
|
inputs: ['bordered', 'customClass', 'isSubMenu', 'orientation', 'size']
|
|
667
667
|
})
|
|
668
668
|
], ModusWcMenu);
|
|
669
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
669
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcMenu, decorators: [{
|
|
670
670
|
type: Component,
|
|
671
671
|
args: [{
|
|
672
672
|
selector: 'modus-wc-menu',
|
|
@@ -685,8 +685,8 @@ let ModusWcMenuItem = class ModusWcMenuItem {
|
|
|
685
685
|
this.el = r.nativeElement;
|
|
686
686
|
proxyOutputs(this, this.el, ['itemSelect']);
|
|
687
687
|
}
|
|
688
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
689
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
688
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
689
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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", startIcon: "startIcon", subLabel: "subLabel", tooltipContent: "tooltipContent", tooltipPosition: "tooltipPosition", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
690
690
|
};
|
|
691
691
|
ModusWcMenuItem = __decorate([
|
|
692
692
|
ProxyCmp({
|
|
@@ -694,7 +694,7 @@ ModusWcMenuItem = __decorate([
|
|
|
694
694
|
methods: ['collapseSubmenu']
|
|
695
695
|
})
|
|
696
696
|
], ModusWcMenuItem);
|
|
697
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
697
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcMenuItem, decorators: [{
|
|
698
698
|
type: Component,
|
|
699
699
|
args: [{
|
|
700
700
|
selector: 'modus-wc-menu-item',
|
|
@@ -712,15 +712,15 @@ let ModusWcModal = class ModusWcModal {
|
|
|
712
712
|
c.detach();
|
|
713
713
|
this.el = r.nativeElement;
|
|
714
714
|
}
|
|
715
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
716
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
715
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
716
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
717
717
|
};
|
|
718
718
|
ModusWcModal = __decorate([
|
|
719
719
|
ProxyCmp({
|
|
720
720
|
inputs: ['backdrop', 'customClass', 'fullscreen', 'modalId', 'position', 'showClose', 'showFullscreenToggle']
|
|
721
721
|
})
|
|
722
722
|
], ModusWcModal);
|
|
723
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
723
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcModal, decorators: [{
|
|
724
724
|
type: Component,
|
|
725
725
|
args: [{
|
|
726
726
|
selector: 'modus-wc-modal',
|
|
@@ -739,22 +739,22 @@ let ModusWcNavbar = class ModusWcNavbar {
|
|
|
739
739
|
this.el = r.nativeElement;
|
|
740
740
|
proxyOutputs(this, this.el, ['aiClick', 'appsClick', 'appsMenuOpenChange', 'condensedMenuOpenChange', 'helpClick', 'mainMenuOpenChange', 'myTrimbleClick', 'notificationsClick', 'notificationsMenuOpenChange', 'searchChange', 'searchClick', 'searchInputOpenChange', 'signOutClick', 'trimbleLogoClick', 'userMenuOpenChange']);
|
|
741
741
|
}
|
|
742
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
743
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
742
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcNavbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
743
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
744
744
|
};
|
|
745
745
|
ModusWcNavbar = __decorate([
|
|
746
746
|
ProxyCmp({
|
|
747
|
-
inputs: ['appsMenuOpen', 'condensed', 'condensedMenuOpen', 'customClass', 'mainMenuOpen', 'notificationsMenuOpen', 'searchDebounceMs', 'searchInputOpen', 'textOverrides', 'userCard', 'userMenuOpen', 'visibility']
|
|
747
|
+
inputs: ['appsMenuOpen', 'condensed', 'condensedMenuOpen', 'customClass', 'logoName', 'mainMenuOpen', 'notificationsMenuOpen', 'searchDebounceMs', 'searchInputOpen', 'textOverrides', 'userCard', 'userMenuOpen', 'visibility']
|
|
748
748
|
})
|
|
749
749
|
], ModusWcNavbar);
|
|
750
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
750
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcNavbar, decorators: [{
|
|
751
751
|
type: Component,
|
|
752
752
|
args: [{
|
|
753
753
|
selector: 'modus-wc-navbar',
|
|
754
754
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
755
755
|
template: '<ng-content></ng-content>',
|
|
756
756
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
757
|
-
inputs: ['appsMenuOpen', 'condensed', 'condensedMenuOpen', 'customClass', 'mainMenuOpen', 'notificationsMenuOpen', 'searchDebounceMs', 'searchInputOpen', 'textOverrides', 'userCard', 'userMenuOpen', 'visibility'],
|
|
757
|
+
inputs: ['appsMenuOpen', 'condensed', 'condensedMenuOpen', 'customClass', 'logoName', 'mainMenuOpen', 'notificationsMenuOpen', 'searchDebounceMs', 'searchInputOpen', 'textOverrides', 'userCard', 'userMenuOpen', 'visibility'],
|
|
758
758
|
}]
|
|
759
759
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
760
760
|
let ModusWcNumberInput = class ModusWcNumberInput {
|
|
@@ -766,15 +766,15 @@ let ModusWcNumberInput = class ModusWcNumberInput {
|
|
|
766
766
|
this.el = r.nativeElement;
|
|
767
767
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
768
768
|
}
|
|
769
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
770
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
769
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcNumberInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
770
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
771
771
|
};
|
|
772
772
|
ModusWcNumberInput = __decorate([
|
|
773
773
|
ProxyCmp({
|
|
774
774
|
inputs: ['autoComplete', 'bordered', 'currencySymbol', 'customClass', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'placeholder', 'readOnly', 'required', 'size', 'step', 'type', 'value']
|
|
775
775
|
})
|
|
776
776
|
], ModusWcNumberInput);
|
|
777
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
777
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcNumberInput, decorators: [{
|
|
778
778
|
type: Component,
|
|
779
779
|
args: [{
|
|
780
780
|
selector: 'modus-wc-number-input',
|
|
@@ -793,15 +793,15 @@ let ModusWcPagination = class ModusWcPagination {
|
|
|
793
793
|
this.el = r.nativeElement;
|
|
794
794
|
proxyOutputs(this, this.el, ['pageChange']);
|
|
795
795
|
}
|
|
796
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
797
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
796
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcPagination, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
797
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
798
798
|
};
|
|
799
799
|
ModusWcPagination = __decorate([
|
|
800
800
|
ProxyCmp({
|
|
801
801
|
inputs: ['ariaLabelValues', 'count', 'customClass', 'nextButtonText', 'page', 'prevButtonText', 'size']
|
|
802
802
|
})
|
|
803
803
|
], ModusWcPagination);
|
|
804
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
804
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcPagination, decorators: [{
|
|
805
805
|
type: Component,
|
|
806
806
|
args: [{
|
|
807
807
|
selector: 'modus-wc-pagination',
|
|
@@ -819,15 +819,15 @@ let ModusWcPanel = class ModusWcPanel {
|
|
|
819
819
|
c.detach();
|
|
820
820
|
this.el = r.nativeElement;
|
|
821
821
|
}
|
|
822
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
823
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
822
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
823
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
824
824
|
};
|
|
825
825
|
ModusWcPanel = __decorate([
|
|
826
826
|
ProxyCmp({
|
|
827
827
|
inputs: ['customClass', 'floating', 'height', 'width']
|
|
828
828
|
})
|
|
829
829
|
], ModusWcPanel);
|
|
830
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
830
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcPanel, decorators: [{
|
|
831
831
|
type: Component,
|
|
832
832
|
args: [{
|
|
833
833
|
selector: 'modus-wc-panel',
|
|
@@ -837,6 +837,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
837
837
|
inputs: ['customClass', 'floating', 'height', 'width'],
|
|
838
838
|
}]
|
|
839
839
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
840
|
+
let ModusWcProfileMenu = class ModusWcProfileMenu {
|
|
841
|
+
z;
|
|
842
|
+
el;
|
|
843
|
+
constructor(c, r, z) {
|
|
844
|
+
this.z = z;
|
|
845
|
+
c.detach();
|
|
846
|
+
this.el = r.nativeElement;
|
|
847
|
+
proxyOutputs(this, this.el, ['signOutClick', 'menuItemClick']);
|
|
848
|
+
}
|
|
849
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcProfileMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
850
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
851
|
+
};
|
|
852
|
+
ModusWcProfileMenu = __decorate([
|
|
853
|
+
ProxyCmp({
|
|
854
|
+
inputs: ['menuOne', 'menuTwo', 'profileProps']
|
|
855
|
+
})
|
|
856
|
+
], ModusWcProfileMenu);
|
|
857
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcProfileMenu, decorators: [{
|
|
858
|
+
type: Component,
|
|
859
|
+
args: [{
|
|
860
|
+
selector: 'modus-wc-profile-menu',
|
|
861
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
862
|
+
template: '<ng-content></ng-content>',
|
|
863
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
864
|
+
inputs: ['menuOne', 'menuTwo', 'profileProps'],
|
|
865
|
+
}]
|
|
866
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
840
867
|
let ModusWcProgress = class ModusWcProgress {
|
|
841
868
|
z;
|
|
842
869
|
el;
|
|
@@ -845,15 +872,15 @@ let ModusWcProgress = class ModusWcProgress {
|
|
|
845
872
|
c.detach();
|
|
846
873
|
this.el = r.nativeElement;
|
|
847
874
|
}
|
|
848
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
849
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
875
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcProgress, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
876
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
850
877
|
};
|
|
851
878
|
ModusWcProgress = __decorate([
|
|
852
879
|
ProxyCmp({
|
|
853
880
|
inputs: ['customClass', 'indeterminate', 'label', 'max', 'value', 'variant']
|
|
854
881
|
})
|
|
855
882
|
], ModusWcProgress);
|
|
856
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
883
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcProgress, decorators: [{
|
|
857
884
|
type: Component,
|
|
858
885
|
args: [{
|
|
859
886
|
selector: 'modus-wc-progress',
|
|
@@ -872,15 +899,15 @@ let ModusWcRadio = class ModusWcRadio {
|
|
|
872
899
|
this.el = r.nativeElement;
|
|
873
900
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
874
901
|
}
|
|
875
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
876
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
902
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
903
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
877
904
|
};
|
|
878
905
|
ModusWcRadio = __decorate([
|
|
879
906
|
ProxyCmp({
|
|
880
907
|
inputs: ['customClass', 'disabled', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value']
|
|
881
908
|
})
|
|
882
909
|
], ModusWcRadio);
|
|
883
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
910
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcRadio, decorators: [{
|
|
884
911
|
type: Component,
|
|
885
912
|
args: [{
|
|
886
913
|
selector: 'modus-wc-radio',
|
|
@@ -899,15 +926,15 @@ let ModusWcRating = class ModusWcRating {
|
|
|
899
926
|
this.el = r.nativeElement;
|
|
900
927
|
proxyOutputs(this, this.el, ['ratingChange']);
|
|
901
928
|
}
|
|
902
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
903
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
929
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcRating, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
930
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
904
931
|
};
|
|
905
932
|
ModusWcRating = __decorate([
|
|
906
933
|
ProxyCmp({
|
|
907
934
|
inputs: ['allowHalf', 'count', 'customClass', 'disabled', 'getAriaLabelText', 'size', 'value', 'variant']
|
|
908
935
|
})
|
|
909
936
|
], ModusWcRating);
|
|
910
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
937
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcRating, decorators: [{
|
|
911
938
|
type: Component,
|
|
912
939
|
args: [{
|
|
913
940
|
selector: 'modus-wc-rating',
|
|
@@ -926,15 +953,15 @@ let ModusWcSelect = class ModusWcSelect {
|
|
|
926
953
|
this.el = r.nativeElement;
|
|
927
954
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
928
955
|
}
|
|
929
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
930
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
956
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
957
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
931
958
|
};
|
|
932
959
|
ModusWcSelect = __decorate([
|
|
933
960
|
ProxyCmp({
|
|
934
961
|
inputs: ['bordered', 'customClass', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'name', 'options', 'required', 'size', 'value']
|
|
935
962
|
})
|
|
936
963
|
], ModusWcSelect);
|
|
937
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
964
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcSelect, decorators: [{
|
|
938
965
|
type: Component,
|
|
939
966
|
args: [{
|
|
940
967
|
selector: 'modus-wc-select',
|
|
@@ -953,15 +980,15 @@ let ModusWcSideNavigation = class ModusWcSideNavigation {
|
|
|
953
980
|
this.el = r.nativeElement;
|
|
954
981
|
proxyOutputs(this, this.el, ['expandedChange']);
|
|
955
982
|
}
|
|
956
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
957
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
983
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcSideNavigation, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
984
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
958
985
|
};
|
|
959
986
|
ModusWcSideNavigation = __decorate([
|
|
960
987
|
ProxyCmp({
|
|
961
988
|
inputs: ['collapseOnClickOutside', 'customClass', 'expanded', 'maxWidth', 'mode', 'targetContent']
|
|
962
989
|
})
|
|
963
990
|
], ModusWcSideNavigation);
|
|
964
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
991
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcSideNavigation, decorators: [{
|
|
965
992
|
type: Component,
|
|
966
993
|
args: [{
|
|
967
994
|
selector: 'modus-wc-side-navigation',
|
|
@@ -979,15 +1006,15 @@ let ModusWcSkeleton = class ModusWcSkeleton {
|
|
|
979
1006
|
c.detach();
|
|
980
1007
|
this.el = r.nativeElement;
|
|
981
1008
|
}
|
|
982
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
983
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1009
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcSkeleton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1010
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
984
1011
|
};
|
|
985
1012
|
ModusWcSkeleton = __decorate([
|
|
986
1013
|
ProxyCmp({
|
|
987
1014
|
inputs: ['customClass', 'height', 'shape', 'width']
|
|
988
1015
|
})
|
|
989
1016
|
], ModusWcSkeleton);
|
|
990
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1017
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcSkeleton, decorators: [{
|
|
991
1018
|
type: Component,
|
|
992
1019
|
args: [{
|
|
993
1020
|
selector: 'modus-wc-skeleton',
|
|
@@ -1006,15 +1033,15 @@ let ModusWcSlider = class ModusWcSlider {
|
|
|
1006
1033
|
this.el = r.nativeElement;
|
|
1007
1034
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
1008
1035
|
}
|
|
1009
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1010
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1036
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1037
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
1011
1038
|
};
|
|
1012
1039
|
ModusWcSlider = __decorate([
|
|
1013
1040
|
ProxyCmp({
|
|
1014
1041
|
inputs: ['customClass', 'disabled', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'required', 'size', 'step', 'value']
|
|
1015
1042
|
})
|
|
1016
1043
|
], ModusWcSlider);
|
|
1017
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1044
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcSlider, decorators: [{
|
|
1018
1045
|
type: Component,
|
|
1019
1046
|
args: [{
|
|
1020
1047
|
selector: 'modus-wc-slider',
|
|
@@ -1032,15 +1059,15 @@ let ModusWcStepper = class ModusWcStepper {
|
|
|
1032
1059
|
c.detach();
|
|
1033
1060
|
this.el = r.nativeElement;
|
|
1034
1061
|
}
|
|
1035
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1036
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1062
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcStepper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1063
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: ModusWcStepper, selector: "modus-wc-stepper", inputs: { customClass: "customClass", orientation: "orientation", steps: "steps" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1037
1064
|
};
|
|
1038
1065
|
ModusWcStepper = __decorate([
|
|
1039
1066
|
ProxyCmp({
|
|
1040
1067
|
inputs: ['customClass', 'orientation', 'steps']
|
|
1041
1068
|
})
|
|
1042
1069
|
], ModusWcStepper);
|
|
1043
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1070
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcStepper, decorators: [{
|
|
1044
1071
|
type: Component,
|
|
1045
1072
|
args: [{
|
|
1046
1073
|
selector: 'modus-wc-stepper',
|
|
@@ -1059,15 +1086,15 @@ let ModusWcSwitch = class ModusWcSwitch {
|
|
|
1059
1086
|
this.el = r.nativeElement;
|
|
1060
1087
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
1061
1088
|
}
|
|
1062
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1063
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1089
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1090
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
1064
1091
|
};
|
|
1065
1092
|
ModusWcSwitch = __decorate([
|
|
1066
1093
|
ProxyCmp({
|
|
1067
1094
|
inputs: ['customClass', 'disabled', 'indeterminate', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value']
|
|
1068
1095
|
})
|
|
1069
1096
|
], ModusWcSwitch);
|
|
1070
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1097
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcSwitch, decorators: [{
|
|
1071
1098
|
type: Component,
|
|
1072
1099
|
args: [{
|
|
1073
1100
|
selector: 'modus-wc-switch',
|
|
@@ -1086,15 +1113,15 @@ let ModusWcTable = class ModusWcTable {
|
|
|
1086
1113
|
this.el = r.nativeElement;
|
|
1087
1114
|
proxyOutputs(this, this.el, ['cellEditStart', 'cellEditCommit', 'rowClick', 'sortChange', 'paginationChange', 'rowSelectionChange']);
|
|
1088
1115
|
}
|
|
1089
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1090
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1116
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1117
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: ModusWcTable, selector: "modus-wc-table", inputs: { caption: "caption", columns: "columns", currentPage: "currentPage", customClass: "customClass", data: "data", density: "density", editable: "editable", hover: "hover", pageSizeOptions: "pageSizeOptions", paginated: "paginated", selectable: "selectable", selectedRowIds: "selectedRowIds", showPageSizeSelector: "showPageSizeSelector", sortable: "sortable", zebra: "zebra" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1091
1118
|
};
|
|
1092
1119
|
ModusWcTable = __decorate([
|
|
1093
1120
|
ProxyCmp({
|
|
1094
1121
|
inputs: ['caption', 'columns', 'currentPage', 'customClass', 'data', 'density', 'editable', 'hover', 'pageSizeOptions', 'paginated', 'selectable', 'selectedRowIds', 'showPageSizeSelector', 'sortable', 'zebra']
|
|
1095
1122
|
})
|
|
1096
1123
|
], ModusWcTable);
|
|
1097
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1124
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcTable, decorators: [{
|
|
1098
1125
|
type: Component,
|
|
1099
1126
|
args: [{
|
|
1100
1127
|
selector: 'modus-wc-table',
|
|
@@ -1113,15 +1140,15 @@ let ModusWcTabs = class ModusWcTabs {
|
|
|
1113
1140
|
this.el = r.nativeElement;
|
|
1114
1141
|
proxyOutputs(this, this.el, ['tabChange']);
|
|
1115
1142
|
}
|
|
1116
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1117
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1143
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcTabs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1144
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
1118
1145
|
};
|
|
1119
1146
|
ModusWcTabs = __decorate([
|
|
1120
1147
|
ProxyCmp({
|
|
1121
1148
|
inputs: ['activeTabIndex', 'customClass', 'size', 'tabStyle', 'tabs']
|
|
1122
1149
|
})
|
|
1123
1150
|
], ModusWcTabs);
|
|
1124
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1151
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcTabs, decorators: [{
|
|
1125
1152
|
type: Component,
|
|
1126
1153
|
args: [{
|
|
1127
1154
|
selector: 'modus-wc-tabs',
|
|
@@ -1140,15 +1167,15 @@ let ModusWcTextInput = class ModusWcTextInput {
|
|
|
1140
1167
|
this.el = r.nativeElement;
|
|
1141
1168
|
proxyOutputs(this, this.el, ['clearClick', 'inputBlur', 'inputChange', 'inputFocus']);
|
|
1142
1169
|
}
|
|
1143
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1144
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1170
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcTextInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1171
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
1145
1172
|
};
|
|
1146
1173
|
ModusWcTextInput = __decorate([
|
|
1147
1174
|
ProxyCmp({
|
|
1148
1175
|
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']
|
|
1149
1176
|
})
|
|
1150
1177
|
], ModusWcTextInput);
|
|
1151
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1178
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcTextInput, decorators: [{
|
|
1152
1179
|
type: Component,
|
|
1153
1180
|
args: [{
|
|
1154
1181
|
selector: 'modus-wc-text-input',
|
|
@@ -1167,15 +1194,15 @@ let ModusWcTextarea = class ModusWcTextarea {
|
|
|
1167
1194
|
this.el = r.nativeElement;
|
|
1168
1195
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
1169
1196
|
}
|
|
1170
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1171
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1197
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1198
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
1172
1199
|
};
|
|
1173
1200
|
ModusWcTextarea = __decorate([
|
|
1174
1201
|
ProxyCmp({
|
|
1175
1202
|
inputs: ['autoCorrect', 'bordered', 'customClass', 'disabled', 'enterkeyhint', 'feedback', 'inputId', 'inputTabIndex', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'readonly', 'required', 'rows', 'size', 'value']
|
|
1176
1203
|
})
|
|
1177
1204
|
], ModusWcTextarea);
|
|
1178
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1205
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcTextarea, decorators: [{
|
|
1179
1206
|
type: Component,
|
|
1180
1207
|
args: [{
|
|
1181
1208
|
selector: 'modus-wc-textarea',
|
|
@@ -1193,15 +1220,15 @@ let ModusWcThemeProvider = class ModusWcThemeProvider {
|
|
|
1193
1220
|
c.detach();
|
|
1194
1221
|
this.el = r.nativeElement;
|
|
1195
1222
|
}
|
|
1196
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1197
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1223
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcThemeProvider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1224
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: ModusWcThemeProvider, selector: "modus-wc-theme-provider", inputs: { initialTheme: "initialTheme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1198
1225
|
};
|
|
1199
1226
|
ModusWcThemeProvider = __decorate([
|
|
1200
1227
|
ProxyCmp({
|
|
1201
1228
|
inputs: ['initialTheme']
|
|
1202
1229
|
})
|
|
1203
1230
|
], ModusWcThemeProvider);
|
|
1204
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1231
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcThemeProvider, decorators: [{
|
|
1205
1232
|
type: Component,
|
|
1206
1233
|
args: [{
|
|
1207
1234
|
selector: 'modus-wc-theme-provider',
|
|
@@ -1220,15 +1247,15 @@ let ModusWcThemeSwitcher = class ModusWcThemeSwitcher {
|
|
|
1220
1247
|
this.el = r.nativeElement;
|
|
1221
1248
|
proxyOutputs(this, this.el, ['themeChange']);
|
|
1222
1249
|
}
|
|
1223
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1224
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1250
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcThemeSwitcher, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1251
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: ModusWcThemeSwitcher, selector: "modus-wc-theme-switcher", inputs: { customClass: "customClass" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1225
1252
|
};
|
|
1226
1253
|
ModusWcThemeSwitcher = __decorate([
|
|
1227
1254
|
ProxyCmp({
|
|
1228
1255
|
inputs: ['customClass']
|
|
1229
1256
|
})
|
|
1230
1257
|
], ModusWcThemeSwitcher);
|
|
1231
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1258
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcThemeSwitcher, decorators: [{
|
|
1232
1259
|
type: Component,
|
|
1233
1260
|
args: [{
|
|
1234
1261
|
selector: 'modus-wc-theme-switcher',
|
|
@@ -1247,15 +1274,15 @@ let ModusWcTimeInput = class ModusWcTimeInput {
|
|
|
1247
1274
|
this.el = r.nativeElement;
|
|
1248
1275
|
proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
|
|
1249
1276
|
}
|
|
1250
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1251
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1277
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcTimeInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1278
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
1252
1279
|
};
|
|
1253
1280
|
ModusWcTimeInput = __decorate([
|
|
1254
1281
|
ProxyCmp({
|
|
1255
1282
|
inputs: ['autoComplete', 'bordered', 'customClass', 'datalistId', 'datalistOptions', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'readOnly', 'required', 'showSeconds', 'size', 'step', 'value']
|
|
1256
1283
|
})
|
|
1257
1284
|
], ModusWcTimeInput);
|
|
1258
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1285
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcTimeInput, decorators: [{
|
|
1259
1286
|
type: Component,
|
|
1260
1287
|
args: [{
|
|
1261
1288
|
selector: 'modus-wc-time-input',
|
|
@@ -1273,15 +1300,15 @@ let ModusWcToast = class ModusWcToast {
|
|
|
1273
1300
|
c.detach();
|
|
1274
1301
|
this.el = r.nativeElement;
|
|
1275
1302
|
}
|
|
1276
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1277
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1303
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1304
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
1278
1305
|
};
|
|
1279
1306
|
ModusWcToast = __decorate([
|
|
1280
1307
|
ProxyCmp({
|
|
1281
1308
|
inputs: ['customClass', 'delay', 'position']
|
|
1282
1309
|
})
|
|
1283
1310
|
], ModusWcToast);
|
|
1284
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1311
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcToast, decorators: [{
|
|
1285
1312
|
type: Component,
|
|
1286
1313
|
args: [{
|
|
1287
1314
|
selector: 'modus-wc-toast',
|
|
@@ -1299,15 +1326,15 @@ let ModusWcToolbar = class ModusWcToolbar {
|
|
|
1299
1326
|
c.detach();
|
|
1300
1327
|
this.el = r.nativeElement;
|
|
1301
1328
|
}
|
|
1302
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1303
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1329
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcToolbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1330
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: ModusWcToolbar, selector: "modus-wc-toolbar", inputs: { customClass: "customClass" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1304
1331
|
};
|
|
1305
1332
|
ModusWcToolbar = __decorate([
|
|
1306
1333
|
ProxyCmp({
|
|
1307
1334
|
inputs: ['customClass']
|
|
1308
1335
|
})
|
|
1309
1336
|
], ModusWcToolbar);
|
|
1310
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1337
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcToolbar, decorators: [{
|
|
1311
1338
|
type: Component,
|
|
1312
1339
|
args: [{
|
|
1313
1340
|
selector: 'modus-wc-toolbar',
|
|
@@ -1326,15 +1353,15 @@ let ModusWcTooltip = class ModusWcTooltip {
|
|
|
1326
1353
|
this.el = r.nativeElement;
|
|
1327
1354
|
proxyOutputs(this, this.el, ['dismissEscape']);
|
|
1328
1355
|
}
|
|
1329
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1330
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1356
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1357
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
1331
1358
|
};
|
|
1332
1359
|
ModusWcTooltip = __decorate([
|
|
1333
1360
|
ProxyCmp({
|
|
1334
1361
|
inputs: ['content', 'customClass', 'disabled', 'forceOpen', 'position', 'tooltipId']
|
|
1335
1362
|
})
|
|
1336
1363
|
], ModusWcTooltip);
|
|
1337
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1364
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcTooltip, decorators: [{
|
|
1338
1365
|
type: Component,
|
|
1339
1366
|
args: [{
|
|
1340
1367
|
selector: 'modus-wc-tooltip',
|
|
@@ -1352,15 +1379,15 @@ let ModusWcTypography = class ModusWcTypography {
|
|
|
1352
1379
|
c.detach();
|
|
1353
1380
|
this.el = r.nativeElement;
|
|
1354
1381
|
}
|
|
1355
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1356
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1382
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcTypography, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1383
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", 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 });
|
|
1357
1384
|
};
|
|
1358
1385
|
ModusWcTypography = __decorate([
|
|
1359
1386
|
ProxyCmp({
|
|
1360
1387
|
inputs: ['customClass', 'hierarchy', 'label', 'size', 'weight']
|
|
1361
1388
|
})
|
|
1362
1389
|
], ModusWcTypography);
|
|
1363
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1390
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcTypography, decorators: [{
|
|
1364
1391
|
type: Component,
|
|
1365
1392
|
args: [{
|
|
1366
1393
|
selector: 'modus-wc-typography',
|
|
@@ -1379,15 +1406,15 @@ let ModusWcUtilityPanel = class ModusWcUtilityPanel {
|
|
|
1379
1406
|
this.el = r.nativeElement;
|
|
1380
1407
|
proxyOutputs(this, this.el, ['panelOpened', 'panelClosed']);
|
|
1381
1408
|
}
|
|
1382
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1383
|
-
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
1409
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcUtilityPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
|
|
1410
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.9", type: ModusWcUtilityPanel, selector: "modus-wc-utility-panel", inputs: { expanded: "expanded", pushContent: "pushContent", targetElement: "targetElement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
1384
1411
|
};
|
|
1385
1412
|
ModusWcUtilityPanel = __decorate([
|
|
1386
1413
|
ProxyCmp({
|
|
1387
1414
|
inputs: ['expanded', 'pushContent', 'targetElement']
|
|
1388
1415
|
})
|
|
1389
1416
|
], ModusWcUtilityPanel);
|
|
1390
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1417
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusWcUtilityPanel, decorators: [{
|
|
1391
1418
|
type: Component,
|
|
1392
1419
|
args: [{
|
|
1393
1420
|
selector: 'modus-wc-utility-panel',
|
|
@@ -1428,6 +1455,7 @@ const DIRECTIVES = [
|
|
|
1428
1455
|
ModusWcNumberInput,
|
|
1429
1456
|
ModusWcPagination,
|
|
1430
1457
|
ModusWcPanel,
|
|
1458
|
+
ModusWcProfileMenu,
|
|
1431
1459
|
ModusWcProgress,
|
|
1432
1460
|
ModusWcRadio,
|
|
1433
1461
|
ModusWcRating,
|
|
@@ -1452,29 +1480,37 @@ const DIRECTIVES = [
|
|
|
1452
1480
|
];
|
|
1453
1481
|
|
|
1454
1482
|
class ModusAngularComponentsModule {
|
|
1455
|
-
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
1456
|
-
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
1457
|
-
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1483
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusAngularComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
1484
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.9", ngImport: i0, type: ModusAngularComponentsModule, declarations: [ModusWcAccordion, ModusWcAlert, ModusWcAutocomplete, ModusWcAvatar, ModusWcBadge, ModusWcBreadcrumbs, ModusWcButton, ModusWcButtonGroup, ModusWcCard, ModusWcCheckbox, ModusWcChip, ModusWcCollapse, ModusWcDate, ModusWcDivider, ModusWcDropdownMenu, ModusWcFileDropzone, ModusWcHandle, ModusWcIcon, ModusWcInputFeedback, ModusWcInputLabel, ModusWcLoader, ModusWcLogo, ModusWcMenu, ModusWcMenuItem, ModusWcModal, ModusWcNavbar, ModusWcNumberInput, ModusWcPagination, ModusWcPanel, 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, 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] });
|
|
1485
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusAngularComponentsModule, providers: [
|
|
1486
|
+
{
|
|
1487
|
+
provide: APP_INITIALIZER,
|
|
1488
|
+
useFactory: () => () => {
|
|
1489
|
+
// Configure asset path for Angular applications
|
|
1490
|
+
// Assets should be copied to /assets/ via angular.json configuration
|
|
1491
|
+
setAssetPath('/assets/');
|
|
1492
|
+
defineCustomElements(window);
|
|
1493
|
+
},
|
|
1494
|
+
multi: true,
|
|
1495
|
+
}
|
|
1464
1496
|
] });
|
|
1465
1497
|
}
|
|
1466
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1498
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.9", ngImport: i0, type: ModusAngularComponentsModule, decorators: [{
|
|
1467
1499
|
type: NgModule,
|
|
1468
1500
|
args: [{
|
|
1469
|
-
|
|
1501
|
+
declarations: [...DIRECTIVES],
|
|
1470
1502
|
exports: [...DIRECTIVES],
|
|
1471
1503
|
providers: [
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1504
|
+
{
|
|
1505
|
+
provide: APP_INITIALIZER,
|
|
1506
|
+
useFactory: () => () => {
|
|
1507
|
+
// Configure asset path for Angular applications
|
|
1508
|
+
// Assets should be copied to /assets/ via angular.json configuration
|
|
1509
|
+
setAssetPath('/assets/');
|
|
1510
|
+
defineCustomElements(window);
|
|
1511
|
+
},
|
|
1512
|
+
multi: true,
|
|
1513
|
+
}
|
|
1478
1514
|
]
|
|
1479
1515
|
}]
|
|
1480
1516
|
}] });
|
|
@@ -1487,5 +1523,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.7", ngImpor
|
|
|
1487
1523
|
* Generated bundle index. Do not edit.
|
|
1488
1524
|
*/
|
|
1489
1525
|
|
|
1490
|
-
export { DIRECTIVES, ModusAngularComponentsModule, ModusWcAccordion, ModusWcAlert, ModusWcAutocomplete, ModusWcAvatar, ModusWcBadge, ModusWcBreadcrumbs, ModusWcButton, ModusWcButtonGroup, ModusWcCard, ModusWcCheckbox, ModusWcChip, ModusWcCollapse, ModusWcDate, ModusWcDivider, ModusWcDropdownMenu, ModusWcFileDropzone, ModusWcHandle, ModusWcIcon, ModusWcInputFeedback, ModusWcInputLabel, ModusWcLoader, ModusWcLogo, ModusWcMenu, ModusWcMenuItem, ModusWcModal, ModusWcNavbar, ModusWcNumberInput, ModusWcPagination, ModusWcPanel, ModusWcProgress, ModusWcRadio, ModusWcRating, ModusWcSelect, ModusWcSideNavigation, ModusWcSkeleton, ModusWcSlider, ModusWcStepper, ModusWcSwitch, ModusWcTable, ModusWcTabs, ModusWcTextInput, ModusWcTextarea, ModusWcThemeProvider, ModusWcThemeSwitcher, ModusWcTimeInput, ModusWcToast, ModusWcToolbar, ModusWcTooltip, ModusWcTypography, ModusWcUtilityPanel };
|
|
1526
|
+
export { DIRECTIVES, ModusAngularComponentsModule, ModusWcAccordion, ModusWcAlert, ModusWcAutocomplete, ModusWcAvatar, ModusWcBadge, ModusWcBreadcrumbs, ModusWcButton, ModusWcButtonGroup, ModusWcCard, ModusWcCheckbox, ModusWcChip, ModusWcCollapse, ModusWcDate, ModusWcDivider, ModusWcDropdownMenu, ModusWcFileDropzone, ModusWcHandle, ModusWcIcon, ModusWcInputFeedback, ModusWcInputLabel, ModusWcLoader, ModusWcLogo, ModusWcMenu, ModusWcMenuItem, ModusWcModal, ModusWcNavbar, ModusWcNumberInput, ModusWcPagination, ModusWcPanel, ModusWcProfileMenu, ModusWcProgress, ModusWcRadio, ModusWcRating, ModusWcSelect, ModusWcSideNavigation, ModusWcSkeleton, ModusWcSlider, ModusWcStepper, ModusWcSwitch, ModusWcTable, ModusWcTabs, ModusWcTextInput, ModusWcTextarea, ModusWcThemeProvider, ModusWcThemeSwitcher, ModusWcTimeInput, ModusWcToast, ModusWcToolbar, ModusWcTooltip, ModusWcTypography, ModusWcUtilityPanel };
|
|
1491
1527
|
//# sourceMappingURL=trimble-oss-moduswebcomponents-angular.mjs.map
|