@trimble-oss/moduswebcomponents-angular 1.8.0-ng20 → 1.9.0-ng17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +50 -40
- 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 +1792 -0
- package/esm2022/lib/stencil-generated/index.mjs +60 -0
- package/esm2022/public-api.mjs +7 -0
- package/esm2022/trimble-oss-moduswebcomponents-angular.mjs +5 -0
- package/fesm2022/trimble-oss-moduswebcomponents-angular.mjs +448 -487
- package/fesm2022/trimble-oss-moduswebcomponents-angular.mjs.map +1 -1
- package/index.d.ts +5 -1063
- package/lib/modus-wc-angular.module.d.ts +7 -0
- package/lib/stencil-generated/angular-component-lib/utils.d.ts +9 -0
- package/lib/stencil-generated/components.d.ts +1144 -0
- package/lib/stencil-generated/index.d.ts +2 -0
- package/package.json +6 -7
- package/public-api.d.ts +4 -0
|
@@ -1,71 +1,9 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { EventEmitter, Output, ChangeDetectionStrategy, Component, APP_INITIALIZER, NgModule } from '@angular/core';
|
|
3
|
+
import { defineCustomElements } from '@trimble-oss/moduswebcomponents/loader';
|
|
3
4
|
import { setAssetPath } from '@trimble-oss/moduswebcomponents/components';
|
|
4
5
|
import { __decorate } from 'tslib';
|
|
5
6
|
import { fromEvent } from 'rxjs';
|
|
6
|
-
import { defineCustomElement as defineCustomElement$1 } from '@trimble-oss/moduswebcomponents/components/modus-wc-accordion.js';
|
|
7
|
-
import { defineCustomElement as defineCustomElement$2 } from '@trimble-oss/moduswebcomponents/components/modus-wc-alert.js';
|
|
8
|
-
import { defineCustomElement as defineCustomElement$3 } from '@trimble-oss/moduswebcomponents/components/modus-wc-app-menu.js';
|
|
9
|
-
import { defineCustomElement as defineCustomElement$4 } from '@trimble-oss/moduswebcomponents/components/modus-wc-autocomplete.js';
|
|
10
|
-
import { defineCustomElement as defineCustomElement$5 } from '@trimble-oss/moduswebcomponents/components/modus-wc-avatar.js';
|
|
11
|
-
import { defineCustomElement as defineCustomElement$6 } from '@trimble-oss/moduswebcomponents/components/modus-wc-badge.js';
|
|
12
|
-
import { defineCustomElement as defineCustomElement$7 } from '@trimble-oss/moduswebcomponents/components/modus-wc-breadcrumbs.js';
|
|
13
|
-
import { defineCustomElement as defineCustomElement$8 } from '@trimble-oss/moduswebcomponents/components/modus-wc-button.js';
|
|
14
|
-
import { defineCustomElement as defineCustomElement$9 } from '@trimble-oss/moduswebcomponents/components/modus-wc-button-group.js';
|
|
15
|
-
import { defineCustomElement as defineCustomElement$a } from '@trimble-oss/moduswebcomponents/components/modus-wc-card.js';
|
|
16
|
-
import { defineCustomElement as defineCustomElement$b } from '@trimble-oss/moduswebcomponents/components/modus-wc-checkbox.js';
|
|
17
|
-
import { defineCustomElement as defineCustomElement$c } from '@trimble-oss/moduswebcomponents/components/modus-wc-chip.js';
|
|
18
|
-
import { defineCustomElement as defineCustomElement$d } from '@trimble-oss/moduswebcomponents/components/modus-wc-collapse.js';
|
|
19
|
-
import { defineCustomElement as defineCustomElement$e } from '@trimble-oss/moduswebcomponents/components/modus-wc-date.js';
|
|
20
|
-
import { defineCustomElement as defineCustomElement$f } from '@trimble-oss/moduswebcomponents/components/modus-wc-divider.js';
|
|
21
|
-
import { defineCustomElement as defineCustomElement$g } from '@trimble-oss/moduswebcomponents/components/modus-wc-dropdown-menu.js';
|
|
22
|
-
import { defineCustomElement as defineCustomElement$h } from '@trimble-oss/moduswebcomponents/components/modus-wc-file-dropzone.js';
|
|
23
|
-
import { defineCustomElement as defineCustomElement$i } from '@trimble-oss/moduswebcomponents/components/modus-wc-handle.js';
|
|
24
|
-
import { defineCustomElement as defineCustomElement$j } from '@trimble-oss/moduswebcomponents/components/modus-wc-icon.js';
|
|
25
|
-
import { defineCustomElement as defineCustomElement$k } from '@trimble-oss/moduswebcomponents/components/modus-wc-input-feedback.js';
|
|
26
|
-
import { defineCustomElement as defineCustomElement$l } from '@trimble-oss/moduswebcomponents/components/modus-wc-input-label.js';
|
|
27
|
-
import { defineCustomElement as defineCustomElement$m } from '@trimble-oss/moduswebcomponents/components/modus-wc-link.js';
|
|
28
|
-
import { defineCustomElement as defineCustomElement$n } from '@trimble-oss/moduswebcomponents/components/modus-wc-loader.js';
|
|
29
|
-
import { defineCustomElement as defineCustomElement$o } from '@trimble-oss/moduswebcomponents/components/modus-wc-logo.js';
|
|
30
|
-
import { defineCustomElement as defineCustomElement$p } from '@trimble-oss/moduswebcomponents/components/modus-wc-menu.js';
|
|
31
|
-
import { defineCustomElement as defineCustomElement$q } from '@trimble-oss/moduswebcomponents/components/modus-wc-menu-item.js';
|
|
32
|
-
import { defineCustomElement as defineCustomElement$r } from '@trimble-oss/moduswebcomponents/components/modus-wc-modal.js';
|
|
33
|
-
import { defineCustomElement as defineCustomElement$s } from '@trimble-oss/moduswebcomponents/components/modus-wc-navbar.js';
|
|
34
|
-
import { defineCustomElement as defineCustomElement$t } from '@trimble-oss/moduswebcomponents/components/modus-wc-number-input.js';
|
|
35
|
-
import { defineCustomElement as defineCustomElement$u } from '@trimble-oss/moduswebcomponents/components/modus-wc-pagination.js';
|
|
36
|
-
import { defineCustomElement as defineCustomElement$v } from '@trimble-oss/moduswebcomponents/components/modus-wc-panel.js';
|
|
37
|
-
import { defineCustomElement as defineCustomElement$w } from '@trimble-oss/moduswebcomponents/components/modus-wc-profile-menu.js';
|
|
38
|
-
import { defineCustomElement as defineCustomElement$x } from '@trimble-oss/moduswebcomponents/components/modus-wc-progress.js';
|
|
39
|
-
import { defineCustomElement as defineCustomElement$y } from '@trimble-oss/moduswebcomponents/components/modus-wc-radio.js';
|
|
40
|
-
import { defineCustomElement as defineCustomElement$z } from '@trimble-oss/moduswebcomponents/components/modus-wc-rating.js';
|
|
41
|
-
import { defineCustomElement as defineCustomElement$A } from '@trimble-oss/moduswebcomponents/components/modus-wc-select.js';
|
|
42
|
-
import { defineCustomElement as defineCustomElement$B } from '@trimble-oss/moduswebcomponents/components/modus-wc-side-navigation.js';
|
|
43
|
-
import { defineCustomElement as defineCustomElement$C } from '@trimble-oss/moduswebcomponents/components/modus-wc-skeleton.js';
|
|
44
|
-
import { defineCustomElement as defineCustomElement$D } from '@trimble-oss/moduswebcomponents/components/modus-wc-slider.js';
|
|
45
|
-
import { defineCustomElement as defineCustomElement$E } from '@trimble-oss/moduswebcomponents/components/modus-wc-stepper.js';
|
|
46
|
-
import { defineCustomElement as defineCustomElement$F } from '@trimble-oss/moduswebcomponents/components/modus-wc-switch.js';
|
|
47
|
-
import { defineCustomElement as defineCustomElement$G } from '@trimble-oss/moduswebcomponents/components/modus-wc-table.js';
|
|
48
|
-
import { defineCustomElement as defineCustomElement$H } from '@trimble-oss/moduswebcomponents/components/modus-wc-tabs.js';
|
|
49
|
-
import { defineCustomElement as defineCustomElement$I } from '@trimble-oss/moduswebcomponents/components/modus-wc-text-input.js';
|
|
50
|
-
import { defineCustomElement as defineCustomElement$J } from '@trimble-oss/moduswebcomponents/components/modus-wc-textarea.js';
|
|
51
|
-
import { defineCustomElement as defineCustomElement$K } from '@trimble-oss/moduswebcomponents/components/modus-wc-theme-provider.js';
|
|
52
|
-
import { defineCustomElement as defineCustomElement$L } from '@trimble-oss/moduswebcomponents/components/modus-wc-theme-switcher.js';
|
|
53
|
-
import { defineCustomElement as defineCustomElement$M } from '@trimble-oss/moduswebcomponents/components/modus-wc-time-input.js';
|
|
54
|
-
import { defineCustomElement as defineCustomElement$N } from '@trimble-oss/moduswebcomponents/components/modus-wc-toast.js';
|
|
55
|
-
import { defineCustomElement as defineCustomElement$O } from '@trimble-oss/moduswebcomponents/components/modus-wc-toolbar.js';
|
|
56
|
-
import { defineCustomElement as defineCustomElement$P } from '@trimble-oss/moduswebcomponents/components/modus-wc-tooltip.js';
|
|
57
|
-
import { defineCustomElement as defineCustomElement$Q } from '@trimble-oss/moduswebcomponents/components/modus-wc-tree-item.js';
|
|
58
|
-
import { defineCustomElement as defineCustomElement$R } from '@trimble-oss/moduswebcomponents/components/modus-wc-tree-menu.js';
|
|
59
|
-
import { defineCustomElement as defineCustomElement$S } from '@trimble-oss/moduswebcomponents/components/modus-wc-typography.js';
|
|
60
|
-
import { defineCustomElement as defineCustomElement$T } from '@trimble-oss/moduswebcomponents/components/modus-wc-utility-panel.js';
|
|
61
|
-
|
|
62
|
-
function provideModusWebComponents() {
|
|
63
|
-
return makeEnvironmentProviders([
|
|
64
|
-
provideAppInitializer(() => {
|
|
65
|
-
setAssetPath('/assets/');
|
|
66
|
-
}),
|
|
67
|
-
]);
|
|
68
|
-
}
|
|
69
7
|
|
|
70
8
|
/* eslint-disable */
|
|
71
9
|
/* tslint:disable */
|
|
@@ -126,24 +64,21 @@ function ProxyCmp(opts) {
|
|
|
126
64
|
}
|
|
127
65
|
|
|
128
66
|
let ModusWcAccordion = class ModusWcAccordion {
|
|
129
|
-
z;
|
|
130
|
-
el;
|
|
131
|
-
expandedChange = new EventEmitter();
|
|
132
67
|
constructor(c, r, z) {
|
|
133
68
|
this.z = z;
|
|
69
|
+
this.expandedChange = new EventEmitter();
|
|
134
70
|
c.detach();
|
|
135
71
|
this.el = r.nativeElement;
|
|
136
72
|
}
|
|
137
|
-
static
|
|
138
|
-
static
|
|
73
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
74
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcAccordion, selector: "modus-wc-accordion", inputs: { customClass: "customClass" }, outputs: { expandedChange: "expandedChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
139
75
|
};
|
|
140
76
|
ModusWcAccordion = __decorate([
|
|
141
77
|
ProxyCmp({
|
|
142
|
-
defineCustomElementFn: defineCustomElement$1,
|
|
143
78
|
inputs: ['customClass']
|
|
144
79
|
})
|
|
145
80
|
], ModusWcAccordion);
|
|
146
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
81
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAccordion, decorators: [{
|
|
147
82
|
type: Component,
|
|
148
83
|
args: [{
|
|
149
84
|
selector: 'modus-wc-accordion',
|
|
@@ -152,29 +87,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
152
87
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
153
88
|
inputs: ['customClass'],
|
|
154
89
|
outputs: ['expandedChange'],
|
|
90
|
+
standalone: false
|
|
155
91
|
}]
|
|
156
92
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { expandedChange: [{
|
|
157
93
|
type: Output
|
|
158
94
|
}] } });
|
|
159
95
|
let ModusWcAlert = class ModusWcAlert {
|
|
160
|
-
z;
|
|
161
|
-
el;
|
|
162
|
-
dismissClick = new EventEmitter();
|
|
163
96
|
constructor(c, r, z) {
|
|
164
97
|
this.z = z;
|
|
98
|
+
this.dismissClick = new EventEmitter();
|
|
165
99
|
c.detach();
|
|
166
100
|
this.el = r.nativeElement;
|
|
167
101
|
}
|
|
168
|
-
static
|
|
169
|
-
static
|
|
102
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
103
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcAlert, selector: "modus-wc-alert", inputs: { alertDescription: "alertDescription", alertTitle: "alertTitle", customClass: "customClass", delay: "delay", disableIcon: "disableIcon", dismissible: "dismissible", icon: "icon", variant: "variant" }, outputs: { dismissClick: "dismissClick" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
170
104
|
};
|
|
171
105
|
ModusWcAlert = __decorate([
|
|
172
106
|
ProxyCmp({
|
|
173
|
-
defineCustomElementFn: defineCustomElement$2,
|
|
174
107
|
inputs: ['alertDescription', 'alertTitle', 'customClass', 'delay', 'disableIcon', 'dismissible', 'icon', 'variant']
|
|
175
108
|
})
|
|
176
109
|
], ModusWcAlert);
|
|
177
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
110
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAlert, decorators: [{
|
|
178
111
|
type: Component,
|
|
179
112
|
args: [{
|
|
180
113
|
selector: 'modus-wc-alert',
|
|
@@ -183,31 +116,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
183
116
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
184
117
|
inputs: ['alertDescription', { name: 'alertTitle', required: true }, 'customClass', 'delay', 'disableIcon', 'dismissible', 'icon', 'variant'],
|
|
185
118
|
outputs: ['dismissClick'],
|
|
119
|
+
standalone: false
|
|
186
120
|
}]
|
|
187
121
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { dismissClick: [{
|
|
188
122
|
type: Output
|
|
189
123
|
}] } });
|
|
190
124
|
let ModusWcAppMenu = class ModusWcAppMenu {
|
|
191
|
-
z;
|
|
192
|
-
el;
|
|
193
|
-
layoutChange = new EventEmitter();
|
|
194
|
-
itemsOrderChange = new EventEmitter();
|
|
195
|
-
itemClick = new EventEmitter();
|
|
196
125
|
constructor(c, r, z) {
|
|
197
126
|
this.z = z;
|
|
127
|
+
this.layoutChange = new EventEmitter();
|
|
128
|
+
this.itemsOrderChange = new EventEmitter();
|
|
129
|
+
this.itemClick = new EventEmitter();
|
|
198
130
|
c.detach();
|
|
199
131
|
this.el = r.nativeElement;
|
|
200
132
|
}
|
|
201
|
-
static
|
|
202
|
-
static
|
|
133
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAppMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
134
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcAppMenu, selector: "modus-wc-app-menu", inputs: { apps: "apps", customClass: "customClass", layout: "layout" }, outputs: { layoutChange: "layoutChange", itemsOrderChange: "itemsOrderChange", itemClick: "itemClick" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
203
135
|
};
|
|
204
136
|
ModusWcAppMenu = __decorate([
|
|
205
137
|
ProxyCmp({
|
|
206
|
-
defineCustomElementFn: defineCustomElement$3,
|
|
207
138
|
inputs: ['apps', 'customClass', 'layout']
|
|
208
139
|
})
|
|
209
140
|
], ModusWcAppMenu);
|
|
210
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
141
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAppMenu, decorators: [{
|
|
211
142
|
type: Component,
|
|
212
143
|
args: [{
|
|
213
144
|
selector: 'modus-wc-app-menu',
|
|
@@ -216,6 +147,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
216
147
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
217
148
|
inputs: ['apps', 'customClass', 'layout'],
|
|
218
149
|
outputs: ['layoutChange', 'itemsOrderChange', 'itemClick'],
|
|
150
|
+
standalone: false
|
|
219
151
|
}]
|
|
220
152
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { layoutChange: [{
|
|
221
153
|
type: Output
|
|
@@ -225,31 +157,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
225
157
|
type: Output
|
|
226
158
|
}] } });
|
|
227
159
|
let ModusWcAutocomplete = class ModusWcAutocomplete {
|
|
228
|
-
z;
|
|
229
|
-
el;
|
|
230
|
-
chipRemove = new EventEmitter();
|
|
231
|
-
chipsExpansionChange = new EventEmitter();
|
|
232
|
-
clearClick = new EventEmitter();
|
|
233
|
-
inputBlur = new EventEmitter();
|
|
234
|
-
inputChange = new EventEmitter();
|
|
235
|
-
inputFocus = new EventEmitter();
|
|
236
|
-
itemSelect = new EventEmitter();
|
|
237
160
|
constructor(c, r, z) {
|
|
238
161
|
this.z = z;
|
|
162
|
+
this.chipRemove = new EventEmitter();
|
|
163
|
+
this.chipsExpansionChange = new EventEmitter();
|
|
164
|
+
this.clearClick = new EventEmitter();
|
|
165
|
+
this.inputBlur = new EventEmitter();
|
|
166
|
+
this.inputChange = new EventEmitter();
|
|
167
|
+
this.inputFocus = new EventEmitter();
|
|
168
|
+
this.itemSelect = new EventEmitter();
|
|
239
169
|
c.detach();
|
|
240
170
|
this.el = r.nativeElement;
|
|
241
171
|
}
|
|
242
|
-
static
|
|
243
|
-
static
|
|
172
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAutocomplete, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
173
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcAutocomplete, selector: "modus-wc-autocomplete", inputs: { autoComplete: "autoComplete", bordered: "bordered", customBlur: "customBlur", customClass: "customClass", customInputChange: "customInputChange", customItemSelect: "customItemSelect", customKeyDown: "customKeyDown", debounceMs: "debounceMs", disabled: "disabled", feedback: "feedback", includeClear: "includeClear", includeSearch: "includeSearch", inputId: "inputId", inputTabIndex: "inputTabIndex", items: "items", label: "label", leaveMenuOpen: "leaveMenuOpen", maxChips: "maxChips", minChars: "minChars", minInputWidth: "minInputWidth", multiSelect: "multiSelect", name: "name", noResults: "noResults", placeholder: "placeholder", readOnly: "readOnly", required: "required", showMenuOnFocus: "showMenuOnFocus", showSpinner: "showSpinner", size: "size", value: "value" }, outputs: { chipRemove: "chipRemove", chipsExpansionChange: "chipsExpansionChange", clearClick: "clearClick", inputBlur: "inputBlur", inputChange: "inputChange", inputFocus: "inputFocus", itemSelect: "itemSelect" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
244
174
|
};
|
|
245
175
|
ModusWcAutocomplete = __decorate([
|
|
246
176
|
ProxyCmp({
|
|
247
|
-
defineCustomElementFn: defineCustomElement$4,
|
|
248
177
|
inputs: ['autoComplete', 'bordered', 'customBlur', 'customClass', 'customInputChange', 'customItemSelect', 'customKeyDown', 'debounceMs', 'disabled', 'feedback', 'includeClear', 'includeSearch', 'inputId', 'inputTabIndex', 'items', 'label', 'leaveMenuOpen', 'maxChips', 'minChars', 'minInputWidth', 'multiSelect', 'name', 'noResults', 'placeholder', 'readOnly', 'required', 'showMenuOnFocus', 'showSpinner', 'size', 'value'],
|
|
249
178
|
methods: ['selectItem', 'openMenu', 'closeMenu', 'toggleMenu', 'focusInput', 'clearInput']
|
|
250
179
|
})
|
|
251
180
|
], ModusWcAutocomplete);
|
|
252
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
181
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAutocomplete, decorators: [{
|
|
253
182
|
type: Component,
|
|
254
183
|
args: [{
|
|
255
184
|
selector: 'modus-wc-autocomplete',
|
|
@@ -258,6 +187,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
258
187
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
259
188
|
inputs: ['autoComplete', 'bordered', 'customBlur', 'customClass', 'customInputChange', 'customItemSelect', 'customKeyDown', 'debounceMs', 'disabled', 'feedback', 'includeClear', 'includeSearch', 'inputId', 'inputTabIndex', 'items', 'label', 'leaveMenuOpen', 'maxChips', 'minChars', 'minInputWidth', 'multiSelect', 'name', 'noResults', 'placeholder', 'readOnly', 'required', 'showMenuOnFocus', 'showSpinner', 'size', 'value'],
|
|
260
189
|
outputs: ['chipRemove', 'chipsExpansionChange', 'clearClick', 'inputBlur', 'inputChange', 'inputFocus', 'itemSelect'],
|
|
190
|
+
standalone: false
|
|
261
191
|
}]
|
|
262
192
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { chipRemove: [{
|
|
263
193
|
type: Output
|
|
@@ -275,23 +205,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
275
205
|
type: Output
|
|
276
206
|
}] } });
|
|
277
207
|
let ModusWcAvatar = class ModusWcAvatar {
|
|
278
|
-
z;
|
|
279
|
-
el;
|
|
280
208
|
constructor(c, r, z) {
|
|
281
209
|
this.z = z;
|
|
282
210
|
c.detach();
|
|
283
211
|
this.el = r.nativeElement;
|
|
284
212
|
}
|
|
285
|
-
static
|
|
286
|
-
static
|
|
213
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
214
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcAvatar, selector: "modus-wc-avatar", inputs: { alt: "alt", customClass: "customClass", imgSrc: "imgSrc", initials: "initials", shape: "shape", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
287
215
|
};
|
|
288
216
|
ModusWcAvatar = __decorate([
|
|
289
217
|
ProxyCmp({
|
|
290
|
-
defineCustomElementFn: defineCustomElement$5,
|
|
291
218
|
inputs: ['alt', 'customClass', 'imgSrc', 'initials', 'shape', 'size']
|
|
292
219
|
})
|
|
293
220
|
], ModusWcAvatar);
|
|
294
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
221
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAvatar, decorators: [{
|
|
295
222
|
type: Component,
|
|
296
223
|
args: [{
|
|
297
224
|
selector: 'modus-wc-avatar',
|
|
@@ -299,26 +226,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
299
226
|
template: '<ng-content></ng-content>',
|
|
300
227
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
301
228
|
inputs: [{ name: 'alt', required: true }, 'customClass', 'imgSrc', 'initials', 'shape', 'size'],
|
|
229
|
+
standalone: false
|
|
302
230
|
}]
|
|
303
231
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
304
232
|
let ModusWcBadge = class ModusWcBadge {
|
|
305
|
-
z;
|
|
306
|
-
el;
|
|
307
233
|
constructor(c, r, z) {
|
|
308
234
|
this.z = z;
|
|
309
235
|
c.detach();
|
|
310
236
|
this.el = r.nativeElement;
|
|
311
237
|
}
|
|
312
|
-
static
|
|
313
|
-
static
|
|
238
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
239
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcBadge, selector: "modus-wc-badge", inputs: { color: "color", customClass: "customClass", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
314
240
|
};
|
|
315
241
|
ModusWcBadge = __decorate([
|
|
316
242
|
ProxyCmp({
|
|
317
|
-
defineCustomElementFn: defineCustomElement$6,
|
|
318
243
|
inputs: ['color', 'customClass', 'size', 'variant']
|
|
319
244
|
})
|
|
320
245
|
], ModusWcBadge);
|
|
321
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
246
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcBadge, decorators: [{
|
|
322
247
|
type: Component,
|
|
323
248
|
args: [{
|
|
324
249
|
selector: 'modus-wc-badge',
|
|
@@ -326,27 +251,63 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
326
251
|
template: '<ng-content></ng-content>',
|
|
327
252
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
328
253
|
inputs: ['color', 'customClass', 'size', 'variant'],
|
|
254
|
+
standalone: false
|
|
329
255
|
}]
|
|
330
256
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
257
|
+
let ModusWcBottomSheet = class ModusWcBottomSheet {
|
|
258
|
+
constructor(c, r, z) {
|
|
259
|
+
this.z = z;
|
|
260
|
+
this.sheetVisibilityChange = new EventEmitter();
|
|
261
|
+
this.displayModeChange = new EventEmitter();
|
|
262
|
+
this.headerBackClick = new EventEmitter();
|
|
263
|
+
this.headerCloseClick = new EventEmitter();
|
|
264
|
+
c.detach();
|
|
265
|
+
this.el = r.nativeElement;
|
|
266
|
+
}
|
|
267
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcBottomSheet, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
268
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcBottomSheet, selector: "modus-wc-bottom-sheet", inputs: { customClass: "customClass", displayMode: "displayMode", dragStepThreshold: "dragStepThreshold", header: "header", visible: "visible" }, outputs: { sheetVisibilityChange: "sheetVisibilityChange", displayModeChange: "displayModeChange", headerBackClick: "headerBackClick", headerCloseClick: "headerCloseClick" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
269
|
+
};
|
|
270
|
+
ModusWcBottomSheet = __decorate([
|
|
271
|
+
ProxyCmp({
|
|
272
|
+
inputs: ['customClass', 'displayMode', 'dragStepThreshold', 'header', 'visible']
|
|
273
|
+
})
|
|
274
|
+
], ModusWcBottomSheet);
|
|
275
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcBottomSheet, decorators: [{
|
|
276
|
+
type: Component,
|
|
277
|
+
args: [{
|
|
278
|
+
selector: 'modus-wc-bottom-sheet',
|
|
279
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
280
|
+
template: '<ng-content></ng-content>',
|
|
281
|
+
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
282
|
+
inputs: ['customClass', 'displayMode', 'dragStepThreshold', 'header', 'visible'],
|
|
283
|
+
outputs: ['sheetVisibilityChange', 'displayModeChange', 'headerBackClick', 'headerCloseClick'],
|
|
284
|
+
standalone: false
|
|
285
|
+
}]
|
|
286
|
+
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sheetVisibilityChange: [{
|
|
287
|
+
type: Output
|
|
288
|
+
}], displayModeChange: [{
|
|
289
|
+
type: Output
|
|
290
|
+
}], headerBackClick: [{
|
|
291
|
+
type: Output
|
|
292
|
+
}], headerCloseClick: [{
|
|
293
|
+
type: Output
|
|
294
|
+
}] } });
|
|
331
295
|
let ModusWcBreadcrumbs = class ModusWcBreadcrumbs {
|
|
332
|
-
z;
|
|
333
|
-
el;
|
|
334
|
-
breadcrumbClick = new EventEmitter();
|
|
335
296
|
constructor(c, r, z) {
|
|
336
297
|
this.z = z;
|
|
298
|
+
this.breadcrumbClick = new EventEmitter();
|
|
337
299
|
c.detach();
|
|
338
300
|
this.el = r.nativeElement;
|
|
339
301
|
}
|
|
340
|
-
static
|
|
341
|
-
static
|
|
302
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcBreadcrumbs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
303
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcBreadcrumbs, selector: "modus-wc-breadcrumbs", inputs: { customClass: "customClass", items: "items", size: "size" }, outputs: { breadcrumbClick: "breadcrumbClick" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
342
304
|
};
|
|
343
305
|
ModusWcBreadcrumbs = __decorate([
|
|
344
306
|
ProxyCmp({
|
|
345
|
-
defineCustomElementFn: defineCustomElement$7,
|
|
346
307
|
inputs: ['customClass', 'items', 'size']
|
|
347
308
|
})
|
|
348
309
|
], ModusWcBreadcrumbs);
|
|
349
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
310
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcBreadcrumbs, decorators: [{
|
|
350
311
|
type: Component,
|
|
351
312
|
args: [{
|
|
352
313
|
selector: 'modus-wc-breadcrumbs',
|
|
@@ -355,29 +316,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
355
316
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
356
317
|
inputs: ['customClass', 'items', 'size'],
|
|
357
318
|
outputs: ['breadcrumbClick'],
|
|
319
|
+
standalone: false
|
|
358
320
|
}]
|
|
359
321
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { breadcrumbClick: [{
|
|
360
322
|
type: Output
|
|
361
323
|
}] } });
|
|
362
324
|
let ModusWcButton = class ModusWcButton {
|
|
363
|
-
z;
|
|
364
|
-
el;
|
|
365
|
-
buttonClick = new EventEmitter();
|
|
366
325
|
constructor(c, r, z) {
|
|
367
326
|
this.z = z;
|
|
327
|
+
this.buttonClick = new EventEmitter();
|
|
368
328
|
c.detach();
|
|
369
329
|
this.el = r.nativeElement;
|
|
370
330
|
}
|
|
371
|
-
static
|
|
372
|
-
static
|
|
331
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
332
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcButton, selector: "modus-wc-button", inputs: { color: "color", customClass: "customClass", disabled: "disabled", fullWidth: "fullWidth", pressed: "pressed", shape: "shape", size: "size", type: "type", variant: "variant" }, outputs: { buttonClick: "buttonClick" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
373
333
|
};
|
|
374
334
|
ModusWcButton = __decorate([
|
|
375
335
|
ProxyCmp({
|
|
376
|
-
defineCustomElementFn: defineCustomElement$8,
|
|
377
336
|
inputs: ['color', 'customClass', 'disabled', 'fullWidth', 'pressed', 'shape', 'size', 'type', 'variant']
|
|
378
337
|
})
|
|
379
338
|
], ModusWcButton);
|
|
380
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
339
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcButton, decorators: [{
|
|
381
340
|
type: Component,
|
|
382
341
|
args: [{
|
|
383
342
|
selector: 'modus-wc-button',
|
|
@@ -386,30 +345,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
386
345
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
387
346
|
inputs: ['color', 'customClass', 'disabled', 'fullWidth', 'pressed', 'shape', 'size', 'type', 'variant'],
|
|
388
347
|
outputs: ['buttonClick'],
|
|
348
|
+
standalone: false
|
|
389
349
|
}]
|
|
390
350
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { buttonClick: [{
|
|
391
351
|
type: Output
|
|
392
352
|
}] } });
|
|
393
353
|
let ModusWcButtonGroup = class ModusWcButtonGroup {
|
|
394
|
-
z;
|
|
395
|
-
el;
|
|
396
|
-
buttonGroupClick = new EventEmitter();
|
|
397
|
-
buttonSelectionChange = new EventEmitter();
|
|
398
354
|
constructor(c, r, z) {
|
|
399
355
|
this.z = z;
|
|
356
|
+
this.buttonGroupClick = new EventEmitter();
|
|
357
|
+
this.buttonSelectionChange = new EventEmitter();
|
|
400
358
|
c.detach();
|
|
401
359
|
this.el = r.nativeElement;
|
|
402
360
|
}
|
|
403
|
-
static
|
|
404
|
-
static
|
|
361
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcButtonGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
362
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcButtonGroup, selector: "modus-wc-button-group", inputs: { color: "color", disabled: "disabled", orientation: "orientation", selectionType: "selectionType", variant: "variant" }, outputs: { buttonGroupClick: "buttonGroupClick", buttonSelectionChange: "buttonSelectionChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
405
363
|
};
|
|
406
364
|
ModusWcButtonGroup = __decorate([
|
|
407
365
|
ProxyCmp({
|
|
408
|
-
defineCustomElementFn: defineCustomElement$9,
|
|
409
366
|
inputs: ['color', 'disabled', 'orientation', 'selectionType', 'variant']
|
|
410
367
|
})
|
|
411
368
|
], ModusWcButtonGroup);
|
|
412
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
369
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcButtonGroup, decorators: [{
|
|
413
370
|
type: Component,
|
|
414
371
|
args: [{
|
|
415
372
|
selector: 'modus-wc-button-group',
|
|
@@ -418,6 +375,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
418
375
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
419
376
|
inputs: ['color', 'disabled', 'orientation', 'selectionType', 'variant'],
|
|
420
377
|
outputs: ['buttonGroupClick', 'buttonSelectionChange'],
|
|
378
|
+
standalone: false
|
|
421
379
|
}]
|
|
422
380
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { buttonGroupClick: [{
|
|
423
381
|
type: Output
|
|
@@ -425,23 +383,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
425
383
|
type: Output
|
|
426
384
|
}] } });
|
|
427
385
|
let ModusWcCard = class ModusWcCard {
|
|
428
|
-
z;
|
|
429
|
-
el;
|
|
430
386
|
constructor(c, r, z) {
|
|
431
387
|
this.z = z;
|
|
432
388
|
c.detach();
|
|
433
389
|
this.el = r.nativeElement;
|
|
434
390
|
}
|
|
435
|
-
static
|
|
436
|
-
static
|
|
391
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
392
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcCard, selector: "modus-wc-card", inputs: { backgroundFigure: "backgroundFigure", bordered: "bordered", customClass: "customClass", layout: "layout", padding: "padding" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
437
393
|
};
|
|
438
394
|
ModusWcCard = __decorate([
|
|
439
395
|
ProxyCmp({
|
|
440
|
-
defineCustomElementFn: defineCustomElement$a,
|
|
441
396
|
inputs: ['backgroundFigure', 'bordered', 'customClass', 'layout', 'padding']
|
|
442
397
|
})
|
|
443
398
|
], ModusWcCard);
|
|
444
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
399
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcCard, decorators: [{
|
|
445
400
|
type: Component,
|
|
446
401
|
args: [{
|
|
447
402
|
selector: 'modus-wc-card',
|
|
@@ -449,29 +404,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
449
404
|
template: '<ng-content></ng-content>',
|
|
450
405
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
451
406
|
inputs: ['backgroundFigure', 'bordered', 'customClass', 'layout', 'padding'],
|
|
407
|
+
standalone: false
|
|
452
408
|
}]
|
|
453
409
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
454
410
|
let ModusWcCheckbox = class ModusWcCheckbox {
|
|
455
|
-
z;
|
|
456
|
-
el;
|
|
457
|
-
inputBlur = new EventEmitter();
|
|
458
|
-
inputChange = new EventEmitter();
|
|
459
|
-
inputFocus = new EventEmitter();
|
|
460
411
|
constructor(c, r, z) {
|
|
461
412
|
this.z = z;
|
|
413
|
+
this.inputBlur = new EventEmitter();
|
|
414
|
+
this.inputChange = new EventEmitter();
|
|
415
|
+
this.inputFocus = new EventEmitter();
|
|
462
416
|
c.detach();
|
|
463
417
|
this.el = r.nativeElement;
|
|
464
418
|
}
|
|
465
|
-
static
|
|
466
|
-
static
|
|
419
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
420
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcCheckbox, selector: "modus-wc-checkbox", inputs: { customClass: "customClass", disabled: "disabled", indeterminate: "indeterminate", inputId: "inputId", inputTabIndex: "inputTabIndex", label: "label", name: "name", required: "required", size: "size", value: "value" }, outputs: { inputBlur: "inputBlur", inputChange: "inputChange", inputFocus: "inputFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
467
421
|
};
|
|
468
422
|
ModusWcCheckbox = __decorate([
|
|
469
423
|
ProxyCmp({
|
|
470
|
-
defineCustomElementFn: defineCustomElement$b,
|
|
471
424
|
inputs: ['customClass', 'disabled', 'indeterminate', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value']
|
|
472
425
|
})
|
|
473
426
|
], ModusWcCheckbox);
|
|
474
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
427
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcCheckbox, decorators: [{
|
|
475
428
|
type: Component,
|
|
476
429
|
args: [{
|
|
477
430
|
selector: 'modus-wc-checkbox',
|
|
@@ -480,6 +433,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
480
433
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
481
434
|
inputs: ['customClass', 'disabled', 'indeterminate', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value'],
|
|
482
435
|
outputs: ['inputBlur', 'inputChange', 'inputFocus'],
|
|
436
|
+
standalone: false
|
|
483
437
|
}]
|
|
484
438
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { inputBlur: [{
|
|
485
439
|
type: Output
|
|
@@ -489,25 +443,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
489
443
|
type: Output
|
|
490
444
|
}] } });
|
|
491
445
|
let ModusWcChip = class ModusWcChip {
|
|
492
|
-
z;
|
|
493
|
-
el;
|
|
494
|
-
chipClick = new EventEmitter();
|
|
495
|
-
chipRemove = new EventEmitter();
|
|
496
446
|
constructor(c, r, z) {
|
|
497
447
|
this.z = z;
|
|
448
|
+
this.chipClick = new EventEmitter();
|
|
449
|
+
this.chipRemove = new EventEmitter();
|
|
498
450
|
c.detach();
|
|
499
451
|
this.el = r.nativeElement;
|
|
500
452
|
}
|
|
501
|
-
static
|
|
502
|
-
static
|
|
453
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
454
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcChip, selector: "modus-wc-chip", inputs: { active: "active", customClass: "customClass", disabled: "disabled", hasError: "hasError", label: "label", multiline: "multiline", shape: "shape", showRemove: "showRemove", size: "size", variant: "variant" }, outputs: { chipClick: "chipClick", chipRemove: "chipRemove" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
503
455
|
};
|
|
504
456
|
ModusWcChip = __decorate([
|
|
505
457
|
ProxyCmp({
|
|
506
|
-
defineCustomElementFn: defineCustomElement$c,
|
|
507
458
|
inputs: ['active', 'customClass', 'disabled', 'hasError', 'label', 'multiline', 'shape', 'showRemove', 'size', 'variant']
|
|
508
459
|
})
|
|
509
460
|
], ModusWcChip);
|
|
510
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
461
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcChip, decorators: [{
|
|
511
462
|
type: Component,
|
|
512
463
|
args: [{
|
|
513
464
|
selector: 'modus-wc-chip',
|
|
@@ -516,6 +467,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
516
467
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
517
468
|
inputs: ['active', 'customClass', 'disabled', 'hasError', 'label', 'multiline', 'shape', 'showRemove', 'size', 'variant'],
|
|
518
469
|
outputs: ['chipClick', 'chipRemove'],
|
|
470
|
+
standalone: false
|
|
519
471
|
}]
|
|
520
472
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { chipClick: [{
|
|
521
473
|
type: Output
|
|
@@ -523,24 +475,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
523
475
|
type: Output
|
|
524
476
|
}] } });
|
|
525
477
|
let ModusWcCollapse = class ModusWcCollapse {
|
|
526
|
-
z;
|
|
527
|
-
el;
|
|
528
|
-
expandedChange = new EventEmitter();
|
|
529
478
|
constructor(c, r, z) {
|
|
530
479
|
this.z = z;
|
|
480
|
+
this.expandedChange = new EventEmitter();
|
|
531
481
|
c.detach();
|
|
532
482
|
this.el = r.nativeElement;
|
|
533
483
|
}
|
|
534
|
-
static
|
|
535
|
-
static
|
|
484
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcCollapse, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
485
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcCollapse, selector: "modus-wc-collapse", inputs: { bordered: "bordered", chevronPosition: "chevronPosition", collapseId: "collapseId", customClass: "customClass", expanded: "expanded", options: "options" }, outputs: { expandedChange: "expandedChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
536
486
|
};
|
|
537
487
|
ModusWcCollapse = __decorate([
|
|
538
488
|
ProxyCmp({
|
|
539
|
-
defineCustomElementFn: defineCustomElement$d,
|
|
540
489
|
inputs: ['bordered', 'chevronPosition', 'collapseId', 'customClass', 'expanded', 'options']
|
|
541
490
|
})
|
|
542
491
|
], ModusWcCollapse);
|
|
543
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
492
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcCollapse, decorators: [{
|
|
544
493
|
type: Component,
|
|
545
494
|
args: [{
|
|
546
495
|
selector: 'modus-wc-collapse',
|
|
@@ -549,33 +498,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
549
498
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
550
499
|
inputs: ['bordered', 'chevronPosition', 'collapseId', 'customClass', 'expanded', 'options'],
|
|
551
500
|
outputs: ['expandedChange'],
|
|
501
|
+
standalone: false
|
|
552
502
|
}]
|
|
553
503
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { expandedChange: [{
|
|
554
504
|
type: Output
|
|
555
505
|
}] } });
|
|
556
506
|
let ModusWcDate = class ModusWcDate {
|
|
557
|
-
z;
|
|
558
|
-
el;
|
|
559
|
-
inputBlur = new EventEmitter();
|
|
560
|
-
inputChange = new EventEmitter();
|
|
561
|
-
inputFocus = new EventEmitter();
|
|
562
|
-
calendarMonthChange = new EventEmitter();
|
|
563
|
-
calendarYearChange = new EventEmitter();
|
|
564
507
|
constructor(c, r, z) {
|
|
565
508
|
this.z = z;
|
|
509
|
+
this.inputBlur = new EventEmitter();
|
|
510
|
+
this.inputChange = new EventEmitter();
|
|
511
|
+
this.inputFocus = new EventEmitter();
|
|
512
|
+
this.calendarMonthChange = new EventEmitter();
|
|
513
|
+
this.calendarYearChange = new EventEmitter();
|
|
566
514
|
c.detach();
|
|
567
515
|
this.el = r.nativeElement;
|
|
568
516
|
}
|
|
569
|
-
static
|
|
570
|
-
static
|
|
517
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcDate, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
518
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcDate, selector: "modus-wc-date", inputs: { bordered: "bordered", customClass: "customClass", disabled: "disabled", feedback: "feedback", format: "format", inputId: "inputId", inputTabIndex: "inputTabIndex", label: "label", max: "max", min: "min", name: "name", readOnly: "readOnly", required: "required", showWeekNumbers: "showWeekNumbers", size: "size", value: "value", weekStartDay: "weekStartDay" }, outputs: { inputBlur: "inputBlur", inputChange: "inputChange", inputFocus: "inputFocus", calendarMonthChange: "calendarMonthChange", calendarYearChange: "calendarYearChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
571
519
|
};
|
|
572
520
|
ModusWcDate = __decorate([
|
|
573
521
|
ProxyCmp({
|
|
574
|
-
defineCustomElementFn: defineCustomElement$e,
|
|
575
522
|
inputs: ['bordered', 'customClass', 'disabled', 'feedback', 'format', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'readOnly', 'required', 'showWeekNumbers', 'size', 'value', 'weekStartDay']
|
|
576
523
|
})
|
|
577
524
|
], ModusWcDate);
|
|
578
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
525
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcDate, decorators: [{
|
|
579
526
|
type: Component,
|
|
580
527
|
args: [{
|
|
581
528
|
selector: 'modus-wc-date',
|
|
@@ -584,6 +531,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
584
531
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
585
532
|
inputs: ['bordered', 'customClass', 'disabled', 'feedback', 'format', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'readOnly', 'required', 'showWeekNumbers', 'size', 'value', 'weekStartDay'],
|
|
586
533
|
outputs: ['inputBlur', 'inputChange', 'inputFocus', 'calendarMonthChange', 'calendarYearChange'],
|
|
534
|
+
standalone: false
|
|
587
535
|
}]
|
|
588
536
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { inputBlur: [{
|
|
589
537
|
type: Output
|
|
@@ -597,23 +545,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
597
545
|
type: Output
|
|
598
546
|
}] } });
|
|
599
547
|
let ModusWcDivider = class ModusWcDivider {
|
|
600
|
-
z;
|
|
601
|
-
el;
|
|
602
548
|
constructor(c, r, z) {
|
|
603
549
|
this.z = z;
|
|
604
550
|
c.detach();
|
|
605
551
|
this.el = r.nativeElement;
|
|
606
552
|
}
|
|
607
|
-
static
|
|
608
|
-
static
|
|
553
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
554
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcDivider, selector: "modus-wc-divider", inputs: { color: "color", content: "content", customClass: "customClass", orientation: "orientation", position: "position", responsive: "responsive" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
609
555
|
};
|
|
610
556
|
ModusWcDivider = __decorate([
|
|
611
557
|
ProxyCmp({
|
|
612
|
-
defineCustomElementFn: defineCustomElement$f,
|
|
613
558
|
inputs: ['color', 'content', 'customClass', 'orientation', 'position', 'responsive']
|
|
614
559
|
})
|
|
615
560
|
], ModusWcDivider);
|
|
616
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
561
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcDivider, decorators: [{
|
|
617
562
|
type: Component,
|
|
618
563
|
args: [{
|
|
619
564
|
selector: 'modus-wc-divider',
|
|
@@ -621,27 +566,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
621
566
|
template: '<ng-content></ng-content>',
|
|
622
567
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
623
568
|
inputs: ['color', 'content', 'customClass', 'orientation', 'position', 'responsive'],
|
|
569
|
+
standalone: false
|
|
624
570
|
}]
|
|
625
571
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
626
572
|
let ModusWcDropdownMenu = class ModusWcDropdownMenu {
|
|
627
|
-
z;
|
|
628
|
-
el;
|
|
629
|
-
menuVisibilityChange = new EventEmitter();
|
|
630
573
|
constructor(c, r, z) {
|
|
631
574
|
this.z = z;
|
|
575
|
+
this.menuVisibilityChange = new EventEmitter();
|
|
632
576
|
c.detach();
|
|
633
577
|
this.el = r.nativeElement;
|
|
634
578
|
}
|
|
635
|
-
static
|
|
636
|
-
static
|
|
579
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcDropdownMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
580
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcDropdownMenu, selector: "modus-wc-dropdown-menu", inputs: { buttonAriaLabel: "buttonAriaLabel", buttonColor: "buttonColor", buttonShape: "buttonShape", buttonSize: "buttonSize", buttonVariant: "buttonVariant", customClass: "customClass", disabled: "disabled", menuBordered: "menuBordered", menuOffset: "menuOffset", menuPlacement: "menuPlacement", menuSize: "menuSize", menuStrategy: "menuStrategy", menuVisible: "menuVisible" }, outputs: { menuVisibilityChange: "menuVisibilityChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
637
581
|
};
|
|
638
582
|
ModusWcDropdownMenu = __decorate([
|
|
639
583
|
ProxyCmp({
|
|
640
|
-
defineCustomElementFn: defineCustomElement$g,
|
|
641
584
|
inputs: ['buttonAriaLabel', 'buttonColor', 'buttonShape', 'buttonSize', 'buttonVariant', 'customClass', 'disabled', 'menuBordered', 'menuOffset', 'menuPlacement', 'menuSize', 'menuStrategy', 'menuVisible']
|
|
642
585
|
})
|
|
643
586
|
], ModusWcDropdownMenu);
|
|
644
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
587
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcDropdownMenu, decorators: [{
|
|
645
588
|
type: Component,
|
|
646
589
|
args: [{
|
|
647
590
|
selector: 'modus-wc-dropdown-menu',
|
|
@@ -650,30 +593,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
650
593
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
651
594
|
inputs: ['buttonAriaLabel', 'buttonColor', 'buttonShape', 'buttonSize', 'buttonVariant', 'customClass', 'disabled', 'menuBordered', 'menuOffset', 'menuPlacement', 'menuSize', 'menuStrategy', 'menuVisible'],
|
|
652
595
|
outputs: ['menuVisibilityChange'],
|
|
596
|
+
standalone: false
|
|
653
597
|
}]
|
|
654
598
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { menuVisibilityChange: [{
|
|
655
599
|
type: Output
|
|
656
600
|
}] } });
|
|
657
601
|
let ModusWcFileDropzone = class ModusWcFileDropzone {
|
|
658
|
-
z;
|
|
659
|
-
el;
|
|
660
|
-
fileSelect = new EventEmitter();
|
|
661
602
|
constructor(c, r, z) {
|
|
662
603
|
this.z = z;
|
|
604
|
+
this.fileSelect = new EventEmitter();
|
|
663
605
|
c.detach();
|
|
664
606
|
this.el = r.nativeElement;
|
|
665
607
|
}
|
|
666
|
-
static
|
|
667
|
-
static
|
|
608
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcFileDropzone, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
609
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcFileDropzone, selector: "modus-wc-file-dropzone", inputs: { acceptFileTypes: "acceptFileTypes", customClass: "customClass", disabled: "disabled", fileDraggedOverInstructions: "fileDraggedOverInstructions", includeStateIcon: "includeStateIcon", instructions: "instructions", invalidFileTypeMessage: "invalidFileTypeMessage", maxFileCount: "maxFileCount", maxFileNameLength: "maxFileNameLength", maxTotalFileSizeBytes: "maxTotalFileSizeBytes", multiple: "multiple", successMessage: "successMessage" }, outputs: { fileSelect: "fileSelect" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
668
610
|
};
|
|
669
611
|
ModusWcFileDropzone = __decorate([
|
|
670
612
|
ProxyCmp({
|
|
671
|
-
defineCustomElementFn: defineCustomElement$h,
|
|
672
613
|
inputs: ['acceptFileTypes', 'customClass', 'disabled', 'fileDraggedOverInstructions', 'includeStateIcon', 'instructions', 'invalidFileTypeMessage', 'maxFileCount', 'maxFileNameLength', 'maxTotalFileSizeBytes', 'multiple', 'successMessage'],
|
|
673
614
|
methods: ['reset']
|
|
674
615
|
})
|
|
675
616
|
], ModusWcFileDropzone);
|
|
676
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
617
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcFileDropzone, decorators: [{
|
|
677
618
|
type: Component,
|
|
678
619
|
args: [{
|
|
679
620
|
selector: 'modus-wc-file-dropzone',
|
|
@@ -682,28 +623,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
682
623
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
683
624
|
inputs: ['acceptFileTypes', 'customClass', 'disabled', 'fileDraggedOverInstructions', 'includeStateIcon', 'instructions', 'invalidFileTypeMessage', 'maxFileCount', 'maxFileNameLength', 'maxTotalFileSizeBytes', 'multiple', 'successMessage'],
|
|
684
625
|
outputs: ['fileSelect'],
|
|
626
|
+
standalone: false
|
|
685
627
|
}]
|
|
686
628
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { fileSelect: [{
|
|
687
629
|
type: Output
|
|
688
630
|
}] } });
|
|
689
631
|
let ModusWcHandle = class ModusWcHandle {
|
|
690
|
-
z;
|
|
691
|
-
el;
|
|
692
632
|
constructor(c, r, z) {
|
|
693
633
|
this.z = z;
|
|
694
634
|
c.detach();
|
|
695
635
|
this.el = r.nativeElement;
|
|
696
636
|
}
|
|
697
|
-
static
|
|
698
|
-
static
|
|
637
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcHandle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
638
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcHandle, selector: "modus-wc-handle", inputs: { buttonColor: "buttonColor", buttonSize: "buttonSize", buttonVariant: "buttonVariant", customClass: "customClass", defaultSplit: "defaultSplit", density: "density", leftTarget: "leftTarget", orientation: "orientation", rightTarget: "rightTarget", size: "size", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
699
639
|
};
|
|
700
640
|
ModusWcHandle = __decorate([
|
|
701
641
|
ProxyCmp({
|
|
702
|
-
defineCustomElementFn: defineCustomElement$i,
|
|
703
642
|
inputs: ['buttonColor', 'buttonSize', 'buttonVariant', 'customClass', 'defaultSplit', 'density', 'leftTarget', 'orientation', 'rightTarget', 'size', 'type']
|
|
704
643
|
})
|
|
705
644
|
], ModusWcHandle);
|
|
706
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
645
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcHandle, decorators: [{
|
|
707
646
|
type: Component,
|
|
708
647
|
args: [{
|
|
709
648
|
selector: 'modus-wc-handle',
|
|
@@ -711,26 +650,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
711
650
|
template: '<ng-content></ng-content>',
|
|
712
651
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
713
652
|
inputs: ['buttonColor', 'buttonSize', 'buttonVariant', 'customClass', 'defaultSplit', 'density', 'leftTarget', 'orientation', 'rightTarget', 'size', 'type'],
|
|
653
|
+
standalone: false
|
|
714
654
|
}]
|
|
715
655
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
716
656
|
let ModusWcIcon = class ModusWcIcon {
|
|
717
|
-
z;
|
|
718
|
-
el;
|
|
719
657
|
constructor(c, r, z) {
|
|
720
658
|
this.z = z;
|
|
721
659
|
c.detach();
|
|
722
660
|
this.el = r.nativeElement;
|
|
723
661
|
}
|
|
724
|
-
static
|
|
725
|
-
static
|
|
662
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
663
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcIcon, selector: "modus-wc-icon", inputs: { customClass: "customClass", decorative: "decorative", name: "name", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
726
664
|
};
|
|
727
665
|
ModusWcIcon = __decorate([
|
|
728
666
|
ProxyCmp({
|
|
729
|
-
defineCustomElementFn: defineCustomElement$j,
|
|
730
667
|
inputs: ['customClass', 'decorative', 'name', 'size', 'variant']
|
|
731
668
|
})
|
|
732
669
|
], ModusWcIcon);
|
|
733
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
670
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcIcon, decorators: [{
|
|
734
671
|
type: Component,
|
|
735
672
|
args: [{
|
|
736
673
|
selector: 'modus-wc-icon',
|
|
@@ -738,26 +675,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
738
675
|
template: '<ng-content></ng-content>',
|
|
739
676
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
740
677
|
inputs: ['customClass', 'decorative', { name: 'name', required: true }, 'size', 'variant'],
|
|
678
|
+
standalone: false
|
|
741
679
|
}]
|
|
742
680
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
743
681
|
let ModusWcInputFeedback = class ModusWcInputFeedback {
|
|
744
|
-
z;
|
|
745
|
-
el;
|
|
746
682
|
constructor(c, r, z) {
|
|
747
683
|
this.z = z;
|
|
748
684
|
c.detach();
|
|
749
685
|
this.el = r.nativeElement;
|
|
750
686
|
}
|
|
751
|
-
static
|
|
752
|
-
static
|
|
687
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcInputFeedback, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
688
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcInputFeedback, selector: "modus-wc-input-feedback", inputs: { customClass: "customClass", icon: "icon", level: "level", message: "message", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
753
689
|
};
|
|
754
690
|
ModusWcInputFeedback = __decorate([
|
|
755
691
|
ProxyCmp({
|
|
756
|
-
defineCustomElementFn: defineCustomElement$k,
|
|
757
692
|
inputs: ['customClass', 'icon', 'level', 'message', 'size']
|
|
758
693
|
})
|
|
759
694
|
], ModusWcInputFeedback);
|
|
760
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
695
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcInputFeedback, decorators: [{
|
|
761
696
|
type: Component,
|
|
762
697
|
args: [{
|
|
763
698
|
selector: 'modus-wc-input-feedback',
|
|
@@ -765,26 +700,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
765
700
|
template: '<ng-content></ng-content>',
|
|
766
701
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
767
702
|
inputs: ['customClass', 'icon', { name: 'level', required: true }, 'message', 'size'],
|
|
703
|
+
standalone: false
|
|
768
704
|
}]
|
|
769
705
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
770
706
|
let ModusWcInputLabel = class ModusWcInputLabel {
|
|
771
|
-
z;
|
|
772
|
-
el;
|
|
773
707
|
constructor(c, r, z) {
|
|
774
708
|
this.z = z;
|
|
775
709
|
c.detach();
|
|
776
710
|
this.el = r.nativeElement;
|
|
777
711
|
}
|
|
778
|
-
static
|
|
779
|
-
static
|
|
712
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcInputLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
713
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcInputLabel, selector: "modus-wc-input-label", inputs: { customClass: "customClass", forId: "forId", labelText: "labelText", required: "required", size: "size", subLabelText: "subLabelText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
780
714
|
};
|
|
781
715
|
ModusWcInputLabel = __decorate([
|
|
782
716
|
ProxyCmp({
|
|
783
|
-
defineCustomElementFn: defineCustomElement$l,
|
|
784
717
|
inputs: ['customClass', 'forId', 'labelText', 'required', 'size', 'subLabelText']
|
|
785
718
|
})
|
|
786
719
|
], ModusWcInputLabel);
|
|
787
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
720
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcInputLabel, decorators: [{
|
|
788
721
|
type: Component,
|
|
789
722
|
args: [{
|
|
790
723
|
selector: 'modus-wc-input-label',
|
|
@@ -792,26 +725,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
792
725
|
template: '<ng-content></ng-content>',
|
|
793
726
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
794
727
|
inputs: ['customClass', 'forId', 'labelText', 'required', 'size', 'subLabelText'],
|
|
728
|
+
standalone: false
|
|
795
729
|
}]
|
|
796
730
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
797
731
|
let ModusWcLink = class ModusWcLink {
|
|
798
|
-
z;
|
|
799
|
-
el;
|
|
800
732
|
constructor(c, r, z) {
|
|
801
733
|
this.z = z;
|
|
802
734
|
c.detach();
|
|
803
735
|
this.el = r.nativeElement;
|
|
804
736
|
}
|
|
805
|
-
static
|
|
806
|
-
static
|
|
737
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
738
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcLink, selector: "modus-wc-link", inputs: { color: "color", customClass: "customClass", href: "href", rel: "rel", target: "target", underline: "underline" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
807
739
|
};
|
|
808
740
|
ModusWcLink = __decorate([
|
|
809
741
|
ProxyCmp({
|
|
810
|
-
defineCustomElementFn: defineCustomElement$m,
|
|
811
742
|
inputs: ['color', 'customClass', 'href', 'rel', 'target', 'underline']
|
|
812
743
|
})
|
|
813
744
|
], ModusWcLink);
|
|
814
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
745
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcLink, decorators: [{
|
|
815
746
|
type: Component,
|
|
816
747
|
args: [{
|
|
817
748
|
selector: 'modus-wc-link',
|
|
@@ -819,26 +750,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
819
750
|
template: '<ng-content></ng-content>',
|
|
820
751
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
821
752
|
inputs: ['color', 'customClass', 'href', 'rel', 'target', 'underline'],
|
|
753
|
+
standalone: false
|
|
822
754
|
}]
|
|
823
755
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
824
756
|
let ModusWcLoader = class ModusWcLoader {
|
|
825
|
-
z;
|
|
826
|
-
el;
|
|
827
757
|
constructor(c, r, z) {
|
|
828
758
|
this.z = z;
|
|
829
759
|
c.detach();
|
|
830
760
|
this.el = r.nativeElement;
|
|
831
761
|
}
|
|
832
|
-
static
|
|
833
|
-
static
|
|
762
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcLoader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
763
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcLoader, selector: "modus-wc-loader", inputs: { color: "color", customClass: "customClass", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
834
764
|
};
|
|
835
765
|
ModusWcLoader = __decorate([
|
|
836
766
|
ProxyCmp({
|
|
837
|
-
defineCustomElementFn: defineCustomElement$n,
|
|
838
767
|
inputs: ['color', 'customClass', 'size', 'variant']
|
|
839
768
|
})
|
|
840
769
|
], ModusWcLoader);
|
|
841
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
770
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcLoader, decorators: [{
|
|
842
771
|
type: Component,
|
|
843
772
|
args: [{
|
|
844
773
|
selector: 'modus-wc-loader',
|
|
@@ -846,26 +775,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
846
775
|
template: '<ng-content></ng-content>',
|
|
847
776
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
848
777
|
inputs: ['color', 'customClass', 'size', 'variant'],
|
|
778
|
+
standalone: false
|
|
849
779
|
}]
|
|
850
780
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
851
781
|
let ModusWcLogo = class ModusWcLogo {
|
|
852
|
-
z;
|
|
853
|
-
el;
|
|
854
782
|
constructor(c, r, z) {
|
|
855
783
|
this.z = z;
|
|
856
784
|
c.detach();
|
|
857
785
|
this.el = r.nativeElement;
|
|
858
786
|
}
|
|
859
|
-
static
|
|
860
|
-
static
|
|
787
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcLogo, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
788
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcLogo, selector: "modus-wc-logo", inputs: { alt: "alt", customClass: "customClass", emblem: "emblem", name: "name" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
861
789
|
};
|
|
862
790
|
ModusWcLogo = __decorate([
|
|
863
791
|
ProxyCmp({
|
|
864
|
-
defineCustomElementFn: defineCustomElement$o,
|
|
865
792
|
inputs: ['alt', 'customClass', 'emblem', 'name']
|
|
866
793
|
})
|
|
867
794
|
], ModusWcLogo);
|
|
868
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
795
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcLogo, decorators: [{
|
|
869
796
|
type: Component,
|
|
870
797
|
args: [{
|
|
871
798
|
selector: 'modus-wc-logo',
|
|
@@ -873,28 +800,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
873
800
|
template: '<ng-content></ng-content>',
|
|
874
801
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
875
802
|
inputs: ['alt', 'customClass', 'emblem', { name: 'name', required: true }],
|
|
803
|
+
standalone: false
|
|
876
804
|
}]
|
|
877
805
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
878
806
|
let ModusWcMenu = class ModusWcMenu {
|
|
879
|
-
z;
|
|
880
|
-
el;
|
|
881
|
-
menuFocusout = new EventEmitter();
|
|
882
|
-
menuSelectionChange = new EventEmitter();
|
|
883
807
|
constructor(c, r, z) {
|
|
884
808
|
this.z = z;
|
|
809
|
+
this.menuFocusout = new EventEmitter();
|
|
810
|
+
this.menuSelectionChange = new EventEmitter();
|
|
885
811
|
c.detach();
|
|
886
812
|
this.el = r.nativeElement;
|
|
887
813
|
}
|
|
888
|
-
static
|
|
889
|
-
static
|
|
814
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
815
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcMenu, selector: "modus-wc-menu", inputs: { bordered: "bordered", customClass: "customClass", isSubMenu: "isSubMenu", orientation: "orientation", selectionMode: "selectionMode", size: "size" }, outputs: { menuFocusout: "menuFocusout", menuSelectionChange: "menuSelectionChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
890
816
|
};
|
|
891
817
|
ModusWcMenu = __decorate([
|
|
892
818
|
ProxyCmp({
|
|
893
|
-
defineCustomElementFn: defineCustomElement$p,
|
|
894
819
|
inputs: ['bordered', 'customClass', 'isSubMenu', 'orientation', 'selectionMode', 'size']
|
|
895
820
|
})
|
|
896
821
|
], ModusWcMenu);
|
|
897
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
822
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcMenu, decorators: [{
|
|
898
823
|
type: Component,
|
|
899
824
|
args: [{
|
|
900
825
|
selector: 'modus-wc-menu',
|
|
@@ -903,6 +828,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
903
828
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
904
829
|
inputs: ['bordered', 'customClass', 'isSubMenu', 'orientation', 'selectionMode', 'size'],
|
|
905
830
|
outputs: ['menuFocusout', 'menuSelectionChange'],
|
|
831
|
+
standalone: false
|
|
906
832
|
}]
|
|
907
833
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { menuFocusout: [{
|
|
908
834
|
type: Output
|
|
@@ -910,25 +836,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
910
836
|
type: Output
|
|
911
837
|
}] } });
|
|
912
838
|
let ModusWcMenuItem = class ModusWcMenuItem {
|
|
913
|
-
z;
|
|
914
|
-
el;
|
|
915
|
-
itemSelect = new EventEmitter();
|
|
916
839
|
constructor(c, r, z) {
|
|
917
840
|
this.z = z;
|
|
841
|
+
this.itemSelect = new EventEmitter();
|
|
918
842
|
c.detach();
|
|
919
843
|
this.el = r.nativeElement;
|
|
920
844
|
}
|
|
921
|
-
static
|
|
922
|
-
static
|
|
845
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
846
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcMenuItem, selector: "modus-wc-menu-item", inputs: { bordered: "bordered", checkbox: "checkbox", customClass: "customClass", disabled: "disabled", focused: "focused", hasSubmenu: "hasSubmenu", label: "label", selected: "selected", size: "size", subLabel: "subLabel", tooltipContent: "tooltipContent", tooltipPosition: "tooltipPosition", value: "value" }, outputs: { itemSelect: "itemSelect" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
923
847
|
};
|
|
924
848
|
ModusWcMenuItem = __decorate([
|
|
925
849
|
ProxyCmp({
|
|
926
|
-
defineCustomElementFn: defineCustomElement$q,
|
|
927
850
|
inputs: ['bordered', 'checkbox', 'customClass', 'disabled', 'focused', 'hasSubmenu', 'label', 'selected', 'size', 'subLabel', 'tooltipContent', 'tooltipPosition', 'value'],
|
|
928
851
|
methods: ['collapseSubmenu']
|
|
929
852
|
})
|
|
930
853
|
], ModusWcMenuItem);
|
|
931
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
854
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcMenuItem, decorators: [{
|
|
932
855
|
type: Component,
|
|
933
856
|
args: [{
|
|
934
857
|
selector: 'modus-wc-menu-item',
|
|
@@ -937,28 +860,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
937
860
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
938
861
|
inputs: ['bordered', 'checkbox', 'customClass', 'disabled', 'focused', 'hasSubmenu', 'label', 'selected', 'size', 'subLabel', 'tooltipContent', 'tooltipPosition', 'value'],
|
|
939
862
|
outputs: ['itemSelect'],
|
|
863
|
+
standalone: false
|
|
940
864
|
}]
|
|
941
865
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { itemSelect: [{
|
|
942
866
|
type: Output
|
|
943
867
|
}] } });
|
|
944
868
|
let ModusWcModal = class ModusWcModal {
|
|
945
|
-
z;
|
|
946
|
-
el;
|
|
947
869
|
constructor(c, r, z) {
|
|
948
870
|
this.z = z;
|
|
949
871
|
c.detach();
|
|
950
872
|
this.el = r.nativeElement;
|
|
951
873
|
}
|
|
952
|
-
static
|
|
953
|
-
static
|
|
874
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
875
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcModal, selector: "modus-wc-modal", inputs: { backdrop: "backdrop", customClass: "customClass", fullscreen: "fullscreen", modalId: "modalId", position: "position", showClose: "showClose", showFullscreenToggle: "showFullscreenToggle" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
954
876
|
};
|
|
955
877
|
ModusWcModal = __decorate([
|
|
956
878
|
ProxyCmp({
|
|
957
|
-
defineCustomElementFn: defineCustomElement$r,
|
|
958
879
|
inputs: ['backdrop', 'customClass', 'fullscreen', 'modalId', 'position', 'showClose', 'showFullscreenToggle']
|
|
959
880
|
})
|
|
960
881
|
], ModusWcModal);
|
|
961
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
882
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcModal, decorators: [{
|
|
962
883
|
type: Component,
|
|
963
884
|
args: [{
|
|
964
885
|
selector: 'modus-wc-modal',
|
|
@@ -966,41 +887,39 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
966
887
|
template: '<ng-content></ng-content>',
|
|
967
888
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
968
889
|
inputs: ['backdrop', 'customClass', 'fullscreen', { name: 'modalId', required: true }, 'position', 'showClose', 'showFullscreenToggle'],
|
|
890
|
+
standalone: false
|
|
969
891
|
}]
|
|
970
892
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
971
893
|
let ModusWcNavbar = class ModusWcNavbar {
|
|
972
|
-
z;
|
|
973
|
-
el;
|
|
974
|
-
aiClick = new EventEmitter();
|
|
975
|
-
appsClick = new EventEmitter();
|
|
976
|
-
appsMenuOpenChange = new EventEmitter();
|
|
977
|
-
condensedMenuOpenChange = new EventEmitter();
|
|
978
|
-
helpClick = new EventEmitter();
|
|
979
|
-
mainMenuOpenChange = new EventEmitter();
|
|
980
|
-
myTrimbleClick = new EventEmitter();
|
|
981
|
-
notificationsClick = new EventEmitter();
|
|
982
|
-
notificationsMenuOpenChange = new EventEmitter();
|
|
983
|
-
searchChange = new EventEmitter();
|
|
984
|
-
searchClick = new EventEmitter();
|
|
985
|
-
searchInputOpenChange = new EventEmitter();
|
|
986
|
-
signOutClick = new EventEmitter();
|
|
987
|
-
trimbleLogoClick = new EventEmitter();
|
|
988
|
-
userMenuOpenChange = new EventEmitter();
|
|
989
894
|
constructor(c, r, z) {
|
|
990
895
|
this.z = z;
|
|
896
|
+
this.aiClick = new EventEmitter();
|
|
897
|
+
this.appsClick = new EventEmitter();
|
|
898
|
+
this.appsMenuOpenChange = new EventEmitter();
|
|
899
|
+
this.condensedMenuOpenChange = new EventEmitter();
|
|
900
|
+
this.helpClick = new EventEmitter();
|
|
901
|
+
this.mainMenuOpenChange = new EventEmitter();
|
|
902
|
+
this.myTrimbleClick = new EventEmitter();
|
|
903
|
+
this.notificationsClick = new EventEmitter();
|
|
904
|
+
this.notificationsMenuOpenChange = new EventEmitter();
|
|
905
|
+
this.searchChange = new EventEmitter();
|
|
906
|
+
this.searchClick = new EventEmitter();
|
|
907
|
+
this.searchInputOpenChange = new EventEmitter();
|
|
908
|
+
this.signOutClick = new EventEmitter();
|
|
909
|
+
this.trimbleLogoClick = new EventEmitter();
|
|
910
|
+
this.userMenuOpenChange = new EventEmitter();
|
|
991
911
|
c.detach();
|
|
992
912
|
this.el = r.nativeElement;
|
|
993
913
|
}
|
|
994
|
-
static
|
|
995
|
-
static
|
|
914
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcNavbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
915
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcNavbar, selector: "modus-wc-navbar", inputs: { appsMenuOpen: "appsMenuOpen", condensed: "condensed", condensedMenuOpen: "condensedMenuOpen", customClass: "customClass", logoName: "logoName", mainMenuOpen: "mainMenuOpen", notificationsMenuOpen: "notificationsMenuOpen", searchDebounceMs: "searchDebounceMs", searchInputOpen: "searchInputOpen", textOverrides: "textOverrides", userCard: "userCard", userMenuOpen: "userMenuOpen", visibility: "visibility" }, outputs: { aiClick: "aiClick", appsClick: "appsClick", appsMenuOpenChange: "appsMenuOpenChange", condensedMenuOpenChange: "condensedMenuOpenChange", helpClick: "helpClick", mainMenuOpenChange: "mainMenuOpenChange", myTrimbleClick: "myTrimbleClick", notificationsClick: "notificationsClick", notificationsMenuOpenChange: "notificationsMenuOpenChange", searchChange: "searchChange", searchClick: "searchClick", searchInputOpenChange: "searchInputOpenChange", signOutClick: "signOutClick", trimbleLogoClick: "trimbleLogoClick", userMenuOpenChange: "userMenuOpenChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
996
916
|
};
|
|
997
917
|
ModusWcNavbar = __decorate([
|
|
998
918
|
ProxyCmp({
|
|
999
|
-
defineCustomElementFn: defineCustomElement$s,
|
|
1000
919
|
inputs: ['appsMenuOpen', 'condensed', 'condensedMenuOpen', 'customClass', 'logoName', 'mainMenuOpen', 'notificationsMenuOpen', 'searchDebounceMs', 'searchInputOpen', 'textOverrides', 'userCard', 'userMenuOpen', 'visibility']
|
|
1001
920
|
})
|
|
1002
921
|
], ModusWcNavbar);
|
|
1003
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
922
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcNavbar, decorators: [{
|
|
1004
923
|
type: Component,
|
|
1005
924
|
args: [{
|
|
1006
925
|
selector: 'modus-wc-navbar',
|
|
@@ -1009,6 +928,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1009
928
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1010
929
|
inputs: ['appsMenuOpen', 'condensed', 'condensedMenuOpen', 'customClass', 'logoName', 'mainMenuOpen', 'notificationsMenuOpen', 'searchDebounceMs', 'searchInputOpen', 'textOverrides', { name: 'userCard', required: true }, 'userMenuOpen', 'visibility'],
|
|
1011
930
|
outputs: ['aiClick', 'appsClick', 'appsMenuOpenChange', 'condensedMenuOpenChange', 'helpClick', 'mainMenuOpenChange', 'myTrimbleClick', 'notificationsClick', 'notificationsMenuOpenChange', 'searchChange', 'searchClick', 'searchInputOpenChange', 'signOutClick', 'trimbleLogoClick', 'userMenuOpenChange'],
|
|
931
|
+
standalone: false
|
|
1012
932
|
}]
|
|
1013
933
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { aiClick: [{
|
|
1014
934
|
type: Output
|
|
@@ -1042,26 +962,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1042
962
|
type: Output
|
|
1043
963
|
}] } });
|
|
1044
964
|
let ModusWcNumberInput = class ModusWcNumberInput {
|
|
1045
|
-
z;
|
|
1046
|
-
el;
|
|
1047
|
-
inputBlur = new EventEmitter();
|
|
1048
|
-
inputChange = new EventEmitter();
|
|
1049
|
-
inputFocus = new EventEmitter();
|
|
1050
965
|
constructor(c, r, z) {
|
|
1051
966
|
this.z = z;
|
|
967
|
+
this.inputBlur = new EventEmitter();
|
|
968
|
+
this.inputChange = new EventEmitter();
|
|
969
|
+
this.inputFocus = new EventEmitter();
|
|
1052
970
|
c.detach();
|
|
1053
971
|
this.el = r.nativeElement;
|
|
1054
972
|
}
|
|
1055
|
-
static
|
|
1056
|
-
static
|
|
973
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcNumberInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
974
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcNumberInput, selector: "modus-wc-number-input", inputs: { autoComplete: "autoComplete", bordered: "bordered", currencySymbol: "currencySymbol", customClass: "customClass", disabled: "disabled", feedback: "feedback", inputId: "inputId", inputTabIndex: "inputTabIndex", label: "label", max: "max", min: "min", name: "name", placeholder: "placeholder", readOnly: "readOnly", required: "required", size: "size", step: "step", type: "type", value: "value" }, outputs: { inputBlur: "inputBlur", inputChange: "inputChange", inputFocus: "inputFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1057
975
|
};
|
|
1058
976
|
ModusWcNumberInput = __decorate([
|
|
1059
977
|
ProxyCmp({
|
|
1060
|
-
defineCustomElementFn: defineCustomElement$t,
|
|
1061
978
|
inputs: ['autoComplete', 'bordered', 'currencySymbol', 'customClass', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'placeholder', 'readOnly', 'required', 'size', 'step', 'type', 'value']
|
|
1062
979
|
})
|
|
1063
980
|
], ModusWcNumberInput);
|
|
1064
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
981
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcNumberInput, decorators: [{
|
|
1065
982
|
type: Component,
|
|
1066
983
|
args: [{
|
|
1067
984
|
selector: 'modus-wc-number-input',
|
|
@@ -1070,6 +987,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1070
987
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1071
988
|
inputs: ['autoComplete', 'bordered', 'currencySymbol', 'customClass', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'placeholder', 'readOnly', 'required', 'size', 'step', 'type', 'value'],
|
|
1072
989
|
outputs: ['inputBlur', 'inputChange', 'inputFocus'],
|
|
990
|
+
standalone: false
|
|
1073
991
|
}]
|
|
1074
992
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { inputBlur: [{
|
|
1075
993
|
type: Output
|
|
@@ -1079,24 +997,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1079
997
|
type: Output
|
|
1080
998
|
}] } });
|
|
1081
999
|
let ModusWcPagination = class ModusWcPagination {
|
|
1082
|
-
z;
|
|
1083
|
-
el;
|
|
1084
|
-
pageChange = new EventEmitter();
|
|
1085
1000
|
constructor(c, r, z) {
|
|
1086
1001
|
this.z = z;
|
|
1002
|
+
this.pageChange = new EventEmitter();
|
|
1087
1003
|
c.detach();
|
|
1088
1004
|
this.el = r.nativeElement;
|
|
1089
1005
|
}
|
|
1090
|
-
static
|
|
1091
|
-
static
|
|
1006
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcPagination, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1007
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcPagination, selector: "modus-wc-pagination", inputs: { ariaLabelValues: "ariaLabelValues", count: "count", customClass: "customClass", nextButtonText: "nextButtonText", page: "page", prevButtonText: "prevButtonText", size: "size" }, outputs: { pageChange: "pageChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1092
1008
|
};
|
|
1093
1009
|
ModusWcPagination = __decorate([
|
|
1094
1010
|
ProxyCmp({
|
|
1095
|
-
defineCustomElementFn: defineCustomElement$u,
|
|
1096
1011
|
inputs: ['ariaLabelValues', 'count', 'customClass', 'nextButtonText', 'page', 'prevButtonText', 'size']
|
|
1097
1012
|
})
|
|
1098
1013
|
], ModusWcPagination);
|
|
1099
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1014
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcPagination, decorators: [{
|
|
1100
1015
|
type: Component,
|
|
1101
1016
|
args: [{
|
|
1102
1017
|
selector: 'modus-wc-pagination',
|
|
@@ -1105,28 +1020,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1105
1020
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1106
1021
|
inputs: ['ariaLabelValues', 'count', 'customClass', 'nextButtonText', 'page', 'prevButtonText', 'size'],
|
|
1107
1022
|
outputs: ['pageChange'],
|
|
1023
|
+
standalone: false
|
|
1108
1024
|
}]
|
|
1109
1025
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { pageChange: [{
|
|
1110
1026
|
type: Output
|
|
1111
1027
|
}] } });
|
|
1112
1028
|
let ModusWcPanel = class ModusWcPanel {
|
|
1113
|
-
z;
|
|
1114
|
-
el;
|
|
1115
1029
|
constructor(c, r, z) {
|
|
1116
1030
|
this.z = z;
|
|
1117
1031
|
c.detach();
|
|
1118
1032
|
this.el = r.nativeElement;
|
|
1119
1033
|
}
|
|
1120
|
-
static
|
|
1121
|
-
static
|
|
1034
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1035
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcPanel, selector: "modus-wc-panel", inputs: { customClass: "customClass", floating: "floating", height: "height", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1122
1036
|
};
|
|
1123
1037
|
ModusWcPanel = __decorate([
|
|
1124
1038
|
ProxyCmp({
|
|
1125
|
-
defineCustomElementFn: defineCustomElement$v,
|
|
1126
1039
|
inputs: ['customClass', 'floating', 'height', 'width']
|
|
1127
1040
|
})
|
|
1128
1041
|
], ModusWcPanel);
|
|
1129
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1042
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcPanel, decorators: [{
|
|
1130
1043
|
type: Component,
|
|
1131
1044
|
args: [{
|
|
1132
1045
|
selector: 'modus-wc-panel',
|
|
@@ -1134,28 +1047,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1134
1047
|
template: '<ng-content></ng-content>',
|
|
1135
1048
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1136
1049
|
inputs: ['customClass', 'floating', 'height', 'width'],
|
|
1050
|
+
standalone: false
|
|
1137
1051
|
}]
|
|
1138
1052
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1139
1053
|
let ModusWcProfileMenu = class ModusWcProfileMenu {
|
|
1140
|
-
z;
|
|
1141
|
-
el;
|
|
1142
|
-
signOutClick = new EventEmitter();
|
|
1143
|
-
menuItemClick = new EventEmitter();
|
|
1144
1054
|
constructor(c, r, z) {
|
|
1145
1055
|
this.z = z;
|
|
1056
|
+
this.signOutClick = new EventEmitter();
|
|
1057
|
+
this.menuItemClick = new EventEmitter();
|
|
1146
1058
|
c.detach();
|
|
1147
1059
|
this.el = r.nativeElement;
|
|
1148
1060
|
}
|
|
1149
|
-
static
|
|
1150
|
-
static
|
|
1061
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcProfileMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1062
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcProfileMenu, selector: "modus-wc-profile-menu", inputs: { menuOne: "menuOne", menuTwo: "menuTwo", profileProps: "profileProps" }, outputs: { signOutClick: "signOutClick", menuItemClick: "menuItemClick" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1151
1063
|
};
|
|
1152
1064
|
ModusWcProfileMenu = __decorate([
|
|
1153
1065
|
ProxyCmp({
|
|
1154
|
-
defineCustomElementFn: defineCustomElement$w,
|
|
1155
1066
|
inputs: ['menuOne', 'menuTwo', 'profileProps']
|
|
1156
1067
|
})
|
|
1157
1068
|
], ModusWcProfileMenu);
|
|
1158
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1069
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcProfileMenu, decorators: [{
|
|
1159
1070
|
type: Component,
|
|
1160
1071
|
args: [{
|
|
1161
1072
|
selector: 'modus-wc-profile-menu',
|
|
@@ -1164,6 +1075,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1164
1075
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1165
1076
|
inputs: ['menuOne', 'menuTwo', { name: 'profileProps', required: true }],
|
|
1166
1077
|
outputs: ['signOutClick', 'menuItemClick'],
|
|
1078
|
+
standalone: false
|
|
1167
1079
|
}]
|
|
1168
1080
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { signOutClick: [{
|
|
1169
1081
|
type: Output
|
|
@@ -1171,23 +1083,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1171
1083
|
type: Output
|
|
1172
1084
|
}] } });
|
|
1173
1085
|
let ModusWcProgress = class ModusWcProgress {
|
|
1174
|
-
z;
|
|
1175
|
-
el;
|
|
1176
1086
|
constructor(c, r, z) {
|
|
1177
1087
|
this.z = z;
|
|
1178
1088
|
c.detach();
|
|
1179
1089
|
this.el = r.nativeElement;
|
|
1180
1090
|
}
|
|
1181
|
-
static
|
|
1182
|
-
static
|
|
1091
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcProgress, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1092
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcProgress, selector: "modus-wc-progress", inputs: { customClass: "customClass", indeterminate: "indeterminate", label: "label", max: "max", value: "value", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1183
1093
|
};
|
|
1184
1094
|
ModusWcProgress = __decorate([
|
|
1185
1095
|
ProxyCmp({
|
|
1186
|
-
defineCustomElementFn: defineCustomElement$x,
|
|
1187
1096
|
inputs: ['customClass', 'indeterminate', 'label', 'max', 'value', 'variant']
|
|
1188
1097
|
})
|
|
1189
1098
|
], ModusWcProgress);
|
|
1190
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1099
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcProgress, decorators: [{
|
|
1191
1100
|
type: Component,
|
|
1192
1101
|
args: [{
|
|
1193
1102
|
selector: 'modus-wc-progress',
|
|
@@ -1195,29 +1104,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1195
1104
|
template: '<ng-content></ng-content>',
|
|
1196
1105
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1197
1106
|
inputs: ['customClass', 'indeterminate', 'label', 'max', 'value', 'variant'],
|
|
1107
|
+
standalone: false
|
|
1198
1108
|
}]
|
|
1199
1109
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1200
1110
|
let ModusWcRadio = class ModusWcRadio {
|
|
1201
|
-
z;
|
|
1202
|
-
el;
|
|
1203
|
-
inputBlur = new EventEmitter();
|
|
1204
|
-
inputChange = new EventEmitter();
|
|
1205
|
-
inputFocus = new EventEmitter();
|
|
1206
1111
|
constructor(c, r, z) {
|
|
1207
1112
|
this.z = z;
|
|
1113
|
+
this.inputBlur = new EventEmitter();
|
|
1114
|
+
this.inputChange = new EventEmitter();
|
|
1115
|
+
this.inputFocus = new EventEmitter();
|
|
1208
1116
|
c.detach();
|
|
1209
1117
|
this.el = r.nativeElement;
|
|
1210
1118
|
}
|
|
1211
|
-
static
|
|
1212
|
-
static
|
|
1119
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1120
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcRadio, selector: "modus-wc-radio", inputs: { customClass: "customClass", disabled: "disabled", inputId: "inputId", inputTabIndex: "inputTabIndex", label: "label", name: "name", required: "required", size: "size", value: "value" }, outputs: { inputBlur: "inputBlur", inputChange: "inputChange", inputFocus: "inputFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1213
1121
|
};
|
|
1214
1122
|
ModusWcRadio = __decorate([
|
|
1215
1123
|
ProxyCmp({
|
|
1216
|
-
defineCustomElementFn: defineCustomElement$y,
|
|
1217
1124
|
inputs: ['customClass', 'disabled', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value']
|
|
1218
1125
|
})
|
|
1219
1126
|
], ModusWcRadio);
|
|
1220
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1127
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcRadio, decorators: [{
|
|
1221
1128
|
type: Component,
|
|
1222
1129
|
args: [{
|
|
1223
1130
|
selector: 'modus-wc-radio',
|
|
@@ -1226,6 +1133,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1226
1133
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1227
1134
|
inputs: ['customClass', 'disabled', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value'],
|
|
1228
1135
|
outputs: ['inputBlur', 'inputChange', 'inputFocus'],
|
|
1136
|
+
standalone: false
|
|
1229
1137
|
}]
|
|
1230
1138
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { inputBlur: [{
|
|
1231
1139
|
type: Output
|
|
@@ -1235,24 +1143,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1235
1143
|
type: Output
|
|
1236
1144
|
}] } });
|
|
1237
1145
|
let ModusWcRating = class ModusWcRating {
|
|
1238
|
-
z;
|
|
1239
|
-
el;
|
|
1240
|
-
ratingChange = new EventEmitter();
|
|
1241
1146
|
constructor(c, r, z) {
|
|
1242
1147
|
this.z = z;
|
|
1148
|
+
this.ratingChange = new EventEmitter();
|
|
1243
1149
|
c.detach();
|
|
1244
1150
|
this.el = r.nativeElement;
|
|
1245
1151
|
}
|
|
1246
|
-
static
|
|
1247
|
-
static
|
|
1152
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcRating, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1153
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcRating, selector: "modus-wc-rating", inputs: { allowHalf: "allowHalf", count: "count", customClass: "customClass", disabled: "disabled", getAriaLabelText: "getAriaLabelText", size: "size", value: "value", variant: "variant" }, outputs: { ratingChange: "ratingChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1248
1154
|
};
|
|
1249
1155
|
ModusWcRating = __decorate([
|
|
1250
1156
|
ProxyCmp({
|
|
1251
|
-
defineCustomElementFn: defineCustomElement$z,
|
|
1252
1157
|
inputs: ['allowHalf', 'count', 'customClass', 'disabled', 'getAriaLabelText', 'size', 'value', 'variant']
|
|
1253
1158
|
})
|
|
1254
1159
|
], ModusWcRating);
|
|
1255
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1160
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcRating, decorators: [{
|
|
1256
1161
|
type: Component,
|
|
1257
1162
|
args: [{
|
|
1258
1163
|
selector: 'modus-wc-rating',
|
|
@@ -1261,31 +1166,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1261
1166
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1262
1167
|
inputs: ['allowHalf', 'count', 'customClass', 'disabled', 'getAriaLabelText', 'size', 'value', 'variant'],
|
|
1263
1168
|
outputs: ['ratingChange'],
|
|
1169
|
+
standalone: false
|
|
1264
1170
|
}]
|
|
1265
1171
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ratingChange: [{
|
|
1266
1172
|
type: Output
|
|
1267
1173
|
}] } });
|
|
1268
1174
|
let ModusWcSelect = class ModusWcSelect {
|
|
1269
|
-
z;
|
|
1270
|
-
el;
|
|
1271
|
-
inputBlur = new EventEmitter();
|
|
1272
|
-
inputChange = new EventEmitter();
|
|
1273
|
-
inputFocus = new EventEmitter();
|
|
1274
1175
|
constructor(c, r, z) {
|
|
1275
1176
|
this.z = z;
|
|
1177
|
+
this.inputBlur = new EventEmitter();
|
|
1178
|
+
this.inputChange = new EventEmitter();
|
|
1179
|
+
this.inputFocus = new EventEmitter();
|
|
1276
1180
|
c.detach();
|
|
1277
1181
|
this.el = r.nativeElement;
|
|
1278
1182
|
}
|
|
1279
|
-
static
|
|
1280
|
-
static
|
|
1183
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1184
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcSelect, selector: "modus-wc-select", inputs: { bordered: "bordered", customClass: "customClass", disabled: "disabled", feedback: "feedback", inputId: "inputId", inputTabIndex: "inputTabIndex", label: "label", name: "name", options: "options", required: "required", size: "size", value: "value" }, outputs: { inputBlur: "inputBlur", inputChange: "inputChange", inputFocus: "inputFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1281
1185
|
};
|
|
1282
1186
|
ModusWcSelect = __decorate([
|
|
1283
1187
|
ProxyCmp({
|
|
1284
|
-
defineCustomElementFn: defineCustomElement$A,
|
|
1285
1188
|
inputs: ['bordered', 'customClass', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'name', 'options', 'required', 'size', 'value']
|
|
1286
1189
|
})
|
|
1287
1190
|
], ModusWcSelect);
|
|
1288
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1191
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSelect, decorators: [{
|
|
1289
1192
|
type: Component,
|
|
1290
1193
|
args: [{
|
|
1291
1194
|
selector: 'modus-wc-select',
|
|
@@ -1294,6 +1197,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1294
1197
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1295
1198
|
inputs: ['bordered', 'customClass', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'name', 'options', 'required', 'size', 'value'],
|
|
1296
1199
|
outputs: ['inputBlur', 'inputChange', 'inputFocus'],
|
|
1200
|
+
standalone: false
|
|
1297
1201
|
}]
|
|
1298
1202
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { inputBlur: [{
|
|
1299
1203
|
type: Output
|
|
@@ -1303,24 +1207,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1303
1207
|
type: Output
|
|
1304
1208
|
}] } });
|
|
1305
1209
|
let ModusWcSideNavigation = class ModusWcSideNavigation {
|
|
1306
|
-
z;
|
|
1307
|
-
el;
|
|
1308
|
-
expandedChange = new EventEmitter();
|
|
1309
1210
|
constructor(c, r, z) {
|
|
1310
1211
|
this.z = z;
|
|
1212
|
+
this.expandedChange = new EventEmitter();
|
|
1311
1213
|
c.detach();
|
|
1312
1214
|
this.el = r.nativeElement;
|
|
1313
1215
|
}
|
|
1314
|
-
static
|
|
1315
|
-
static
|
|
1216
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSideNavigation, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1217
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcSideNavigation, selector: "modus-wc-side-navigation", inputs: { collapseOnClickOutside: "collapseOnClickOutside", customClass: "customClass", expanded: "expanded", maxWidth: "maxWidth", mode: "mode", targetContent: "targetContent" }, outputs: { expandedChange: "expandedChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1316
1218
|
};
|
|
1317
1219
|
ModusWcSideNavigation = __decorate([
|
|
1318
1220
|
ProxyCmp({
|
|
1319
|
-
defineCustomElementFn: defineCustomElement$B,
|
|
1320
1221
|
inputs: ['collapseOnClickOutside', 'customClass', 'expanded', 'maxWidth', 'mode', 'targetContent']
|
|
1321
1222
|
})
|
|
1322
1223
|
], ModusWcSideNavigation);
|
|
1323
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1224
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSideNavigation, decorators: [{
|
|
1324
1225
|
type: Component,
|
|
1325
1226
|
args: [{
|
|
1326
1227
|
selector: 'modus-wc-side-navigation',
|
|
@@ -1329,28 +1230,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1329
1230
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1330
1231
|
inputs: ['collapseOnClickOutside', 'customClass', 'expanded', 'maxWidth', 'mode', 'targetContent'],
|
|
1331
1232
|
outputs: ['expandedChange'],
|
|
1233
|
+
standalone: false
|
|
1332
1234
|
}]
|
|
1333
1235
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { expandedChange: [{
|
|
1334
1236
|
type: Output
|
|
1335
1237
|
}] } });
|
|
1336
1238
|
let ModusWcSkeleton = class ModusWcSkeleton {
|
|
1337
|
-
z;
|
|
1338
|
-
el;
|
|
1339
1239
|
constructor(c, r, z) {
|
|
1340
1240
|
this.z = z;
|
|
1341
1241
|
c.detach();
|
|
1342
1242
|
this.el = r.nativeElement;
|
|
1343
1243
|
}
|
|
1344
|
-
static
|
|
1345
|
-
static
|
|
1244
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSkeleton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1245
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcSkeleton, selector: "modus-wc-skeleton", inputs: { customClass: "customClass", height: "height", shape: "shape", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1346
1246
|
};
|
|
1347
1247
|
ModusWcSkeleton = __decorate([
|
|
1348
1248
|
ProxyCmp({
|
|
1349
|
-
defineCustomElementFn: defineCustomElement$C,
|
|
1350
1249
|
inputs: ['customClass', 'height', 'shape', 'width']
|
|
1351
1250
|
})
|
|
1352
1251
|
], ModusWcSkeleton);
|
|
1353
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1252
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSkeleton, decorators: [{
|
|
1354
1253
|
type: Component,
|
|
1355
1254
|
args: [{
|
|
1356
1255
|
selector: 'modus-wc-skeleton',
|
|
@@ -1358,29 +1257,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1358
1257
|
template: '<ng-content></ng-content>',
|
|
1359
1258
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1360
1259
|
inputs: ['customClass', 'height', 'shape', 'width'],
|
|
1260
|
+
standalone: false
|
|
1361
1261
|
}]
|
|
1362
1262
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1363
1263
|
let ModusWcSlider = class ModusWcSlider {
|
|
1364
|
-
z;
|
|
1365
|
-
el;
|
|
1366
|
-
inputBlur = new EventEmitter();
|
|
1367
|
-
inputChange = new EventEmitter();
|
|
1368
|
-
inputFocus = new EventEmitter();
|
|
1369
1264
|
constructor(c, r, z) {
|
|
1370
1265
|
this.z = z;
|
|
1266
|
+
this.inputBlur = new EventEmitter();
|
|
1267
|
+
this.inputChange = new EventEmitter();
|
|
1268
|
+
this.inputFocus = new EventEmitter();
|
|
1371
1269
|
c.detach();
|
|
1372
1270
|
this.el = r.nativeElement;
|
|
1373
1271
|
}
|
|
1374
|
-
static
|
|
1375
|
-
static
|
|
1272
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1273
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcSlider, selector: "modus-wc-slider", inputs: { customClass: "customClass", disabled: "disabled", inputId: "inputId", inputTabIndex: "inputTabIndex", label: "label", max: "max", min: "min", name: "name", required: "required", size: "size", step: "step", value: "value" }, outputs: { inputBlur: "inputBlur", inputChange: "inputChange", inputFocus: "inputFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1376
1274
|
};
|
|
1377
1275
|
ModusWcSlider = __decorate([
|
|
1378
1276
|
ProxyCmp({
|
|
1379
|
-
defineCustomElementFn: defineCustomElement$D,
|
|
1380
1277
|
inputs: ['customClass', 'disabled', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'required', 'size', 'step', 'value']
|
|
1381
1278
|
})
|
|
1382
1279
|
], ModusWcSlider);
|
|
1383
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1280
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSlider, decorators: [{
|
|
1384
1281
|
type: Component,
|
|
1385
1282
|
args: [{
|
|
1386
1283
|
selector: 'modus-wc-slider',
|
|
@@ -1389,6 +1286,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1389
1286
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1390
1287
|
inputs: ['customClass', 'disabled', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'required', 'size', 'step', 'value'],
|
|
1391
1288
|
outputs: ['inputBlur', 'inputChange', 'inputFocus'],
|
|
1289
|
+
standalone: false
|
|
1392
1290
|
}]
|
|
1393
1291
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { inputBlur: [{
|
|
1394
1292
|
type: Output
|
|
@@ -1398,24 +1296,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1398
1296
|
type: Output
|
|
1399
1297
|
}] } });
|
|
1400
1298
|
let ModusWcStepper = class ModusWcStepper {
|
|
1401
|
-
z;
|
|
1402
|
-
el;
|
|
1403
|
-
stepClick = new EventEmitter();
|
|
1404
1299
|
constructor(c, r, z) {
|
|
1405
1300
|
this.z = z;
|
|
1301
|
+
this.stepClick = new EventEmitter();
|
|
1406
1302
|
c.detach();
|
|
1407
1303
|
this.el = r.nativeElement;
|
|
1408
1304
|
}
|
|
1409
|
-
static
|
|
1410
|
-
static
|
|
1305
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcStepper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1306
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcStepper, selector: "modus-wc-stepper", inputs: { customClass: "customClass", interactive: "interactive", orientation: "orientation", steps: "steps" }, outputs: { stepClick: "stepClick" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1411
1307
|
};
|
|
1412
1308
|
ModusWcStepper = __decorate([
|
|
1413
1309
|
ProxyCmp({
|
|
1414
|
-
defineCustomElementFn: defineCustomElement$E,
|
|
1415
1310
|
inputs: ['customClass', 'interactive', 'orientation', 'steps']
|
|
1416
1311
|
})
|
|
1417
1312
|
], ModusWcStepper);
|
|
1418
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1313
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcStepper, decorators: [{
|
|
1419
1314
|
type: Component,
|
|
1420
1315
|
args: [{
|
|
1421
1316
|
selector: 'modus-wc-stepper',
|
|
@@ -1424,31 +1319,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1424
1319
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1425
1320
|
inputs: ['customClass', 'interactive', 'orientation', 'steps'],
|
|
1426
1321
|
outputs: ['stepClick'],
|
|
1322
|
+
standalone: false
|
|
1427
1323
|
}]
|
|
1428
1324
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { stepClick: [{
|
|
1429
1325
|
type: Output
|
|
1430
1326
|
}] } });
|
|
1431
1327
|
let ModusWcSwitch = class ModusWcSwitch {
|
|
1432
|
-
z;
|
|
1433
|
-
el;
|
|
1434
|
-
inputBlur = new EventEmitter();
|
|
1435
|
-
inputChange = new EventEmitter();
|
|
1436
|
-
inputFocus = new EventEmitter();
|
|
1437
1328
|
constructor(c, r, z) {
|
|
1438
1329
|
this.z = z;
|
|
1330
|
+
this.inputBlur = new EventEmitter();
|
|
1331
|
+
this.inputChange = new EventEmitter();
|
|
1332
|
+
this.inputFocus = new EventEmitter();
|
|
1439
1333
|
c.detach();
|
|
1440
1334
|
this.el = r.nativeElement;
|
|
1441
1335
|
}
|
|
1442
|
-
static
|
|
1443
|
-
static
|
|
1336
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1337
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcSwitch, selector: "modus-wc-switch", inputs: { customClass: "customClass", disabled: "disabled", indeterminate: "indeterminate", inputId: "inputId", inputTabIndex: "inputTabIndex", label: "label", name: "name", required: "required", size: "size", value: "value" }, outputs: { inputBlur: "inputBlur", inputChange: "inputChange", inputFocus: "inputFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1444
1338
|
};
|
|
1445
1339
|
ModusWcSwitch = __decorate([
|
|
1446
1340
|
ProxyCmp({
|
|
1447
|
-
defineCustomElementFn: defineCustomElement$F,
|
|
1448
1341
|
inputs: ['customClass', 'disabled', 'indeterminate', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value']
|
|
1449
1342
|
})
|
|
1450
1343
|
], ModusWcSwitch);
|
|
1451
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1344
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSwitch, decorators: [{
|
|
1452
1345
|
type: Component,
|
|
1453
1346
|
args: [{
|
|
1454
1347
|
selector: 'modus-wc-switch',
|
|
@@ -1457,6 +1350,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1457
1350
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1458
1351
|
inputs: ['customClass', 'disabled', 'indeterminate', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value'],
|
|
1459
1352
|
outputs: ['inputBlur', 'inputChange', 'inputFocus'],
|
|
1353
|
+
standalone: false
|
|
1460
1354
|
}]
|
|
1461
1355
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { inputBlur: [{
|
|
1462
1356
|
type: Output
|
|
@@ -1466,29 +1360,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1466
1360
|
type: Output
|
|
1467
1361
|
}] } });
|
|
1468
1362
|
let ModusWcTable = class ModusWcTable {
|
|
1469
|
-
z;
|
|
1470
|
-
el;
|
|
1471
|
-
cellEditStart = new EventEmitter();
|
|
1472
|
-
cellEditCommit = new EventEmitter();
|
|
1473
|
-
rowClick = new EventEmitter();
|
|
1474
|
-
sortChange = new EventEmitter();
|
|
1475
|
-
paginationChange = new EventEmitter();
|
|
1476
|
-
rowSelectionChange = new EventEmitter();
|
|
1477
1363
|
constructor(c, r, z) {
|
|
1478
1364
|
this.z = z;
|
|
1365
|
+
this.cellEditStart = new EventEmitter();
|
|
1366
|
+
this.cellEditCommit = new EventEmitter();
|
|
1367
|
+
this.rowClick = new EventEmitter();
|
|
1368
|
+
this.sortChange = new EventEmitter();
|
|
1369
|
+
this.paginationChange = new EventEmitter();
|
|
1370
|
+
this.rowSelectionChange = new EventEmitter();
|
|
1479
1371
|
c.detach();
|
|
1480
1372
|
this.el = r.nativeElement;
|
|
1481
1373
|
}
|
|
1482
|
-
static
|
|
1483
|
-
static
|
|
1374
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1375
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTable, selector: "modus-wc-table", inputs: { caption: "caption", columns: "columns", currentPage: "currentPage", customClass: "customClass", data: "data", density: "density", editable: "editable", hover: "hover", isRowSelectable: "isRowSelectable", pageSizeOptions: "pageSizeOptions", paginated: "paginated", selectable: "selectable", selectedRowIds: "selectedRowIds", showPageSizeSelector: "showPageSizeSelector", sortable: "sortable", zebra: "zebra" }, outputs: { cellEditStart: "cellEditStart", cellEditCommit: "cellEditCommit", rowClick: "rowClick", sortChange: "sortChange", paginationChange: "paginationChange", rowSelectionChange: "rowSelectionChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1484
1376
|
};
|
|
1485
1377
|
ModusWcTable = __decorate([
|
|
1486
1378
|
ProxyCmp({
|
|
1487
|
-
defineCustomElementFn: defineCustomElement$G,
|
|
1488
1379
|
inputs: ['caption', 'columns', 'currentPage', 'customClass', 'data', 'density', 'editable', 'hover', 'isRowSelectable', 'pageSizeOptions', 'paginated', 'selectable', 'selectedRowIds', 'showPageSizeSelector', 'sortable', 'zebra']
|
|
1489
1380
|
})
|
|
1490
1381
|
], ModusWcTable);
|
|
1491
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1382
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTable, decorators: [{
|
|
1492
1383
|
type: Component,
|
|
1493
1384
|
args: [{
|
|
1494
1385
|
selector: 'modus-wc-table',
|
|
@@ -1497,6 +1388,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1497
1388
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1498
1389
|
inputs: ['caption', { name: 'columns', required: true }, 'currentPage', 'customClass', { name: 'data', required: true }, 'density', 'editable', 'hover', 'isRowSelectable', 'pageSizeOptions', 'paginated', 'selectable', 'selectedRowIds', 'showPageSizeSelector', 'sortable', 'zebra'],
|
|
1499
1390
|
outputs: ['cellEditStart', 'cellEditCommit', 'rowClick', 'sortChange', 'paginationChange', 'rowSelectionChange'],
|
|
1391
|
+
standalone: false
|
|
1500
1392
|
}]
|
|
1501
1393
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { cellEditStart: [{
|
|
1502
1394
|
type: Output
|
|
@@ -1512,24 +1404,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1512
1404
|
type: Output
|
|
1513
1405
|
}] } });
|
|
1514
1406
|
let ModusWcTabs = class ModusWcTabs {
|
|
1515
|
-
z;
|
|
1516
|
-
el;
|
|
1517
|
-
tabChange = new EventEmitter();
|
|
1518
1407
|
constructor(c, r, z) {
|
|
1519
1408
|
this.z = z;
|
|
1409
|
+
this.tabChange = new EventEmitter();
|
|
1520
1410
|
c.detach();
|
|
1521
1411
|
this.el = r.nativeElement;
|
|
1522
1412
|
}
|
|
1523
|
-
static
|
|
1524
|
-
static
|
|
1413
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTabs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1414
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTabs, selector: "modus-wc-tabs", inputs: { activeTabIndex: "activeTabIndex", customClass: "customClass", size: "size", tabStyle: "tabStyle", tabs: "tabs" }, outputs: { tabChange: "tabChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1525
1415
|
};
|
|
1526
1416
|
ModusWcTabs = __decorate([
|
|
1527
1417
|
ProxyCmp({
|
|
1528
|
-
defineCustomElementFn: defineCustomElement$H,
|
|
1529
1418
|
inputs: ['activeTabIndex', 'customClass', 'size', 'tabStyle', 'tabs']
|
|
1530
1419
|
})
|
|
1531
1420
|
], ModusWcTabs);
|
|
1532
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1421
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTabs, decorators: [{
|
|
1533
1422
|
type: Component,
|
|
1534
1423
|
args: [{
|
|
1535
1424
|
selector: 'modus-wc-tabs',
|
|
@@ -1538,32 +1427,30 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1538
1427
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1539
1428
|
inputs: ['activeTabIndex', 'customClass', 'size', 'tabStyle', 'tabs'],
|
|
1540
1429
|
outputs: ['tabChange'],
|
|
1430
|
+
standalone: false
|
|
1541
1431
|
}]
|
|
1542
1432
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { tabChange: [{
|
|
1543
1433
|
type: Output
|
|
1544
1434
|
}] } });
|
|
1545
1435
|
let ModusWcTextInput = class ModusWcTextInput {
|
|
1546
|
-
z;
|
|
1547
|
-
el;
|
|
1548
|
-
clearClick = new EventEmitter();
|
|
1549
|
-
inputBlur = new EventEmitter();
|
|
1550
|
-
inputChange = new EventEmitter();
|
|
1551
|
-
inputFocus = new EventEmitter();
|
|
1552
1436
|
constructor(c, r, z) {
|
|
1553
1437
|
this.z = z;
|
|
1438
|
+
this.clearClick = new EventEmitter();
|
|
1439
|
+
this.inputBlur = new EventEmitter();
|
|
1440
|
+
this.inputChange = new EventEmitter();
|
|
1441
|
+
this.inputFocus = new EventEmitter();
|
|
1554
1442
|
c.detach();
|
|
1555
1443
|
this.el = r.nativeElement;
|
|
1556
1444
|
}
|
|
1557
|
-
static
|
|
1558
|
-
static
|
|
1445
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTextInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1446
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTextInput, selector: "modus-wc-text-input", inputs: { autoCapitalize: "autoCapitalize", autoComplete: "autoComplete", autoCorrect: "autoCorrect", bordered: "bordered", clearAriaLabel: "clearAriaLabel", customClass: "customClass", disabled: "disabled", enterkeyhint: "enterkeyhint", feedback: "feedback", includeClear: "includeClear", includeSearch: "includeSearch", inputId: "inputId", inputTabIndex: "inputTabIndex", label: "label", maxLength: "maxLength", minLength: "minLength", name: "name", pattern: "pattern", placeholder: "placeholder", readOnly: "readOnly", required: "required", size: "size", type: "type", value: "value" }, outputs: { clearClick: "clearClick", inputBlur: "inputBlur", inputChange: "inputChange", inputFocus: "inputFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1559
1447
|
};
|
|
1560
1448
|
ModusWcTextInput = __decorate([
|
|
1561
1449
|
ProxyCmp({
|
|
1562
|
-
defineCustomElementFn: defineCustomElement$I,
|
|
1563
1450
|
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']
|
|
1564
1451
|
})
|
|
1565
1452
|
], ModusWcTextInput);
|
|
1566
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1453
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTextInput, decorators: [{
|
|
1567
1454
|
type: Component,
|
|
1568
1455
|
args: [{
|
|
1569
1456
|
selector: 'modus-wc-text-input',
|
|
@@ -1572,6 +1459,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1572
1459
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1573
1460
|
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'],
|
|
1574
1461
|
outputs: ['clearClick', 'inputBlur', 'inputChange', 'inputFocus'],
|
|
1462
|
+
standalone: false
|
|
1575
1463
|
}]
|
|
1576
1464
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { clearClick: [{
|
|
1577
1465
|
type: Output
|
|
@@ -1583,26 +1471,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1583
1471
|
type: Output
|
|
1584
1472
|
}] } });
|
|
1585
1473
|
let ModusWcTextarea = class ModusWcTextarea {
|
|
1586
|
-
z;
|
|
1587
|
-
el;
|
|
1588
|
-
inputBlur = new EventEmitter();
|
|
1589
|
-
inputChange = new EventEmitter();
|
|
1590
|
-
inputFocus = new EventEmitter();
|
|
1591
1474
|
constructor(c, r, z) {
|
|
1592
1475
|
this.z = z;
|
|
1476
|
+
this.inputBlur = new EventEmitter();
|
|
1477
|
+
this.inputChange = new EventEmitter();
|
|
1478
|
+
this.inputFocus = new EventEmitter();
|
|
1593
1479
|
c.detach();
|
|
1594
1480
|
this.el = r.nativeElement;
|
|
1595
1481
|
}
|
|
1596
|
-
static
|
|
1597
|
-
static
|
|
1482
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1483
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTextarea, selector: "modus-wc-textarea", inputs: { autoCorrect: "autoCorrect", bordered: "bordered", customClass: "customClass", disabled: "disabled", enterkeyhint: "enterkeyhint", feedback: "feedback", inputId: "inputId", inputTabIndex: "inputTabIndex", label: "label", maxLength: "maxLength", minLength: "minLength", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", rows: "rows", size: "size", value: "value" }, outputs: { inputBlur: "inputBlur", inputChange: "inputChange", inputFocus: "inputFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1598
1484
|
};
|
|
1599
1485
|
ModusWcTextarea = __decorate([
|
|
1600
1486
|
ProxyCmp({
|
|
1601
|
-
defineCustomElementFn: defineCustomElement$J,
|
|
1602
1487
|
inputs: ['autoCorrect', 'bordered', 'customClass', 'disabled', 'enterkeyhint', 'feedback', 'inputId', 'inputTabIndex', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'readonly', 'required', 'rows', 'size', 'value']
|
|
1603
1488
|
})
|
|
1604
1489
|
], ModusWcTextarea);
|
|
1605
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1490
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTextarea, decorators: [{
|
|
1606
1491
|
type: Component,
|
|
1607
1492
|
args: [{
|
|
1608
1493
|
selector: 'modus-wc-textarea',
|
|
@@ -1611,6 +1496,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1611
1496
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1612
1497
|
inputs: ['autoCorrect', 'bordered', 'customClass', 'disabled', 'enterkeyhint', 'feedback', 'inputId', 'inputTabIndex', 'label', 'maxLength', 'minLength', 'name', 'placeholder', 'readonly', 'required', 'rows', 'size', 'value'],
|
|
1613
1498
|
outputs: ['inputBlur', 'inputChange', 'inputFocus'],
|
|
1499
|
+
standalone: false
|
|
1614
1500
|
}]
|
|
1615
1501
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { inputBlur: [{
|
|
1616
1502
|
type: Output
|
|
@@ -1620,23 +1506,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1620
1506
|
type: Output
|
|
1621
1507
|
}] } });
|
|
1622
1508
|
let ModusWcThemeProvider = class ModusWcThemeProvider {
|
|
1623
|
-
z;
|
|
1624
|
-
el;
|
|
1625
1509
|
constructor(c, r, z) {
|
|
1626
1510
|
this.z = z;
|
|
1627
1511
|
c.detach();
|
|
1628
1512
|
this.el = r.nativeElement;
|
|
1629
1513
|
}
|
|
1630
|
-
static
|
|
1631
|
-
static
|
|
1514
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcThemeProvider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1515
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcThemeProvider, selector: "modus-wc-theme-provider", inputs: { initialTheme: "initialTheme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1632
1516
|
};
|
|
1633
1517
|
ModusWcThemeProvider = __decorate([
|
|
1634
1518
|
ProxyCmp({
|
|
1635
|
-
defineCustomElementFn: defineCustomElement$K,
|
|
1636
1519
|
inputs: ['initialTheme']
|
|
1637
1520
|
})
|
|
1638
1521
|
], ModusWcThemeProvider);
|
|
1639
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1522
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcThemeProvider, decorators: [{
|
|
1640
1523
|
type: Component,
|
|
1641
1524
|
args: [{
|
|
1642
1525
|
selector: 'modus-wc-theme-provider',
|
|
@@ -1644,27 +1527,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1644
1527
|
template: '<ng-content></ng-content>',
|
|
1645
1528
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1646
1529
|
inputs: ['initialTheme'],
|
|
1530
|
+
standalone: false
|
|
1647
1531
|
}]
|
|
1648
1532
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1649
1533
|
let ModusWcThemeSwitcher = class ModusWcThemeSwitcher {
|
|
1650
|
-
z;
|
|
1651
|
-
el;
|
|
1652
|
-
themeChange = new EventEmitter();
|
|
1653
1534
|
constructor(c, r, z) {
|
|
1654
1535
|
this.z = z;
|
|
1536
|
+
this.themeChange = new EventEmitter();
|
|
1655
1537
|
c.detach();
|
|
1656
1538
|
this.el = r.nativeElement;
|
|
1657
1539
|
}
|
|
1658
|
-
static
|
|
1659
|
-
static
|
|
1540
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcThemeSwitcher, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1541
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcThemeSwitcher, selector: "modus-wc-theme-switcher", inputs: { customClass: "customClass" }, outputs: { themeChange: "themeChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1660
1542
|
};
|
|
1661
1543
|
ModusWcThemeSwitcher = __decorate([
|
|
1662
1544
|
ProxyCmp({
|
|
1663
|
-
defineCustomElementFn: defineCustomElement$L,
|
|
1664
1545
|
inputs: ['customClass']
|
|
1665
1546
|
})
|
|
1666
1547
|
], ModusWcThemeSwitcher);
|
|
1667
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1548
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcThemeSwitcher, decorators: [{
|
|
1668
1549
|
type: Component,
|
|
1669
1550
|
args: [{
|
|
1670
1551
|
selector: 'modus-wc-theme-switcher',
|
|
@@ -1673,31 +1554,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1673
1554
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1674
1555
|
inputs: ['customClass'],
|
|
1675
1556
|
outputs: ['themeChange'],
|
|
1557
|
+
standalone: false
|
|
1676
1558
|
}]
|
|
1677
1559
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { themeChange: [{
|
|
1678
1560
|
type: Output
|
|
1679
1561
|
}] } });
|
|
1680
1562
|
let ModusWcTimeInput = class ModusWcTimeInput {
|
|
1681
|
-
z;
|
|
1682
|
-
el;
|
|
1683
|
-
inputBlur = new EventEmitter();
|
|
1684
|
-
inputChange = new EventEmitter();
|
|
1685
|
-
inputFocus = new EventEmitter();
|
|
1686
1563
|
constructor(c, r, z) {
|
|
1687
1564
|
this.z = z;
|
|
1565
|
+
this.inputBlur = new EventEmitter();
|
|
1566
|
+
this.inputChange = new EventEmitter();
|
|
1567
|
+
this.inputFocus = new EventEmitter();
|
|
1688
1568
|
c.detach();
|
|
1689
1569
|
this.el = r.nativeElement;
|
|
1690
1570
|
}
|
|
1691
|
-
static
|
|
1692
|
-
static
|
|
1571
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTimeInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1572
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTimeInput, selector: "modus-wc-time-input", inputs: { autoComplete: "autoComplete", bordered: "bordered", customClass: "customClass", datalistId: "datalistId", datalistOptions: "datalistOptions", disabled: "disabled", feedback: "feedback", inputId: "inputId", inputTabIndex: "inputTabIndex", label: "label", max: "max", min: "min", name: "name", readOnly: "readOnly", required: "required", showSeconds: "showSeconds", size: "size", step: "step", value: "value" }, outputs: { inputBlur: "inputBlur", inputChange: "inputChange", inputFocus: "inputFocus" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1693
1573
|
};
|
|
1694
1574
|
ModusWcTimeInput = __decorate([
|
|
1695
1575
|
ProxyCmp({
|
|
1696
|
-
defineCustomElementFn: defineCustomElement$M,
|
|
1697
1576
|
inputs: ['autoComplete', 'bordered', 'customClass', 'datalistId', 'datalistOptions', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'readOnly', 'required', 'showSeconds', 'size', 'step', 'value']
|
|
1698
1577
|
})
|
|
1699
1578
|
], ModusWcTimeInput);
|
|
1700
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1579
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTimeInput, decorators: [{
|
|
1701
1580
|
type: Component,
|
|
1702
1581
|
args: [{
|
|
1703
1582
|
selector: 'modus-wc-time-input',
|
|
@@ -1706,6 +1585,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1706
1585
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1707
1586
|
inputs: ['autoComplete', 'bordered', 'customClass', 'datalistId', 'datalistOptions', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'readOnly', 'required', 'showSeconds', 'size', 'step', 'value'],
|
|
1708
1587
|
outputs: ['inputBlur', 'inputChange', 'inputFocus'],
|
|
1588
|
+
standalone: false
|
|
1709
1589
|
}]
|
|
1710
1590
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { inputBlur: [{
|
|
1711
1591
|
type: Output
|
|
@@ -1715,23 +1595,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1715
1595
|
type: Output
|
|
1716
1596
|
}] } });
|
|
1717
1597
|
let ModusWcToast = class ModusWcToast {
|
|
1718
|
-
z;
|
|
1719
|
-
el;
|
|
1720
1598
|
constructor(c, r, z) {
|
|
1721
1599
|
this.z = z;
|
|
1722
1600
|
c.detach();
|
|
1723
1601
|
this.el = r.nativeElement;
|
|
1724
1602
|
}
|
|
1725
|
-
static
|
|
1726
|
-
static
|
|
1603
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1604
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcToast, selector: "modus-wc-toast", inputs: { customClass: "customClass", delay: "delay", position: "position" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1727
1605
|
};
|
|
1728
1606
|
ModusWcToast = __decorate([
|
|
1729
1607
|
ProxyCmp({
|
|
1730
|
-
defineCustomElementFn: defineCustomElement$N,
|
|
1731
1608
|
inputs: ['customClass', 'delay', 'position']
|
|
1732
1609
|
})
|
|
1733
1610
|
], ModusWcToast);
|
|
1734
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1611
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcToast, decorators: [{
|
|
1735
1612
|
type: Component,
|
|
1736
1613
|
args: [{
|
|
1737
1614
|
selector: 'modus-wc-toast',
|
|
@@ -1739,26 +1616,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1739
1616
|
template: '<ng-content></ng-content>',
|
|
1740
1617
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1741
1618
|
inputs: ['customClass', 'delay', 'position'],
|
|
1619
|
+
standalone: false
|
|
1742
1620
|
}]
|
|
1743
1621
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1744
1622
|
let ModusWcToolbar = class ModusWcToolbar {
|
|
1745
|
-
z;
|
|
1746
|
-
el;
|
|
1747
1623
|
constructor(c, r, z) {
|
|
1748
1624
|
this.z = z;
|
|
1749
1625
|
c.detach();
|
|
1750
1626
|
this.el = r.nativeElement;
|
|
1751
1627
|
}
|
|
1752
|
-
static
|
|
1753
|
-
static
|
|
1628
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcToolbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1629
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcToolbar, selector: "modus-wc-toolbar", inputs: { customClass: "customClass" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1754
1630
|
};
|
|
1755
1631
|
ModusWcToolbar = __decorate([
|
|
1756
1632
|
ProxyCmp({
|
|
1757
|
-
defineCustomElementFn: defineCustomElement$O,
|
|
1758
1633
|
inputs: ['customClass']
|
|
1759
1634
|
})
|
|
1760
1635
|
], ModusWcToolbar);
|
|
1761
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1636
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcToolbar, decorators: [{
|
|
1762
1637
|
type: Component,
|
|
1763
1638
|
args: [{
|
|
1764
1639
|
selector: 'modus-wc-toolbar',
|
|
@@ -1766,27 +1641,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1766
1641
|
template: '<ng-content></ng-content>',
|
|
1767
1642
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1768
1643
|
inputs: ['customClass'],
|
|
1644
|
+
standalone: false
|
|
1769
1645
|
}]
|
|
1770
1646
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1771
1647
|
let ModusWcTooltip = class ModusWcTooltip {
|
|
1772
|
-
z;
|
|
1773
|
-
el;
|
|
1774
|
-
dismissEscape = new EventEmitter();
|
|
1775
1648
|
constructor(c, r, z) {
|
|
1776
1649
|
this.z = z;
|
|
1650
|
+
this.dismissEscape = new EventEmitter();
|
|
1777
1651
|
c.detach();
|
|
1778
1652
|
this.el = r.nativeElement;
|
|
1779
1653
|
}
|
|
1780
|
-
static
|
|
1781
|
-
static
|
|
1654
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1655
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTooltip, selector: "modus-wc-tooltip", inputs: { content: "content", contentElement: "contentElement", customClass: "customClass", disabled: "disabled", forceOpen: "forceOpen", position: "position", tooltipId: "tooltipId" }, outputs: { dismissEscape: "dismissEscape" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1782
1656
|
};
|
|
1783
1657
|
ModusWcTooltip = __decorate([
|
|
1784
1658
|
ProxyCmp({
|
|
1785
|
-
defineCustomElementFn: defineCustomElement$P,
|
|
1786
1659
|
inputs: ['content', 'contentElement', 'customClass', 'disabled', 'forceOpen', 'position', 'tooltipId']
|
|
1787
1660
|
})
|
|
1788
1661
|
], ModusWcTooltip);
|
|
1789
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1662
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTooltip, decorators: [{
|
|
1790
1663
|
type: Component,
|
|
1791
1664
|
args: [{
|
|
1792
1665
|
selector: 'modus-wc-tooltip',
|
|
@@ -1795,30 +1668,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1795
1668
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1796
1669
|
inputs: ['content', 'contentElement', 'customClass', 'disabled', 'forceOpen', 'position', 'tooltipId'],
|
|
1797
1670
|
outputs: ['dismissEscape'],
|
|
1671
|
+
standalone: false
|
|
1798
1672
|
}]
|
|
1799
1673
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { dismissEscape: [{
|
|
1800
1674
|
type: Output
|
|
1801
1675
|
}] } });
|
|
1802
1676
|
let ModusWcTreeItem = class ModusWcTreeItem {
|
|
1803
|
-
z;
|
|
1804
|
-
el;
|
|
1805
|
-
itemSelect = new EventEmitter();
|
|
1806
1677
|
constructor(c, r, z) {
|
|
1807
1678
|
this.z = z;
|
|
1679
|
+
this.itemSelect = new EventEmitter();
|
|
1808
1680
|
c.detach();
|
|
1809
1681
|
this.el = r.nativeElement;
|
|
1810
1682
|
}
|
|
1811
|
-
static
|
|
1812
|
-
static
|
|
1683
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTreeItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1684
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTreeItem, selector: "modus-wc-tree-item", inputs: { blockExpand: "blockExpand", bordered: "bordered", checkbox: "checkbox", customClass: "customClass", disabled: "disabled", focused: "focused", hasSubmenu: "hasSubmenu", label: "label", selected: "selected", size: "size", subLabel: "subLabel", tooltipContent: "tooltipContent", tooltipPosition: "tooltipPosition", value: "value" }, outputs: { itemSelect: "itemSelect" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1813
1685
|
};
|
|
1814
1686
|
ModusWcTreeItem = __decorate([
|
|
1815
1687
|
ProxyCmp({
|
|
1816
|
-
defineCustomElementFn: defineCustomElement$Q,
|
|
1817
1688
|
inputs: ['blockExpand', 'bordered', 'checkbox', 'customClass', 'disabled', 'focused', 'hasSubmenu', 'label', 'selected', 'size', 'subLabel', 'tooltipContent', 'tooltipPosition', 'value'],
|
|
1818
1689
|
methods: ['collapseSubmenu']
|
|
1819
1690
|
})
|
|
1820
1691
|
], ModusWcTreeItem);
|
|
1821
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1692
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTreeItem, decorators: [{
|
|
1822
1693
|
type: Component,
|
|
1823
1694
|
args: [{
|
|
1824
1695
|
selector: 'modus-wc-tree-item',
|
|
@@ -1827,30 +1698,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1827
1698
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1828
1699
|
inputs: ['blockExpand', 'bordered', 'checkbox', 'customClass', 'disabled', 'focused', 'hasSubmenu', 'label', 'selected', 'size', 'subLabel', 'tooltipContent', 'tooltipPosition', 'value'],
|
|
1829
1700
|
outputs: ['itemSelect'],
|
|
1701
|
+
standalone: false
|
|
1830
1702
|
}]
|
|
1831
1703
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { itemSelect: [{
|
|
1832
1704
|
type: Output
|
|
1833
1705
|
}] } });
|
|
1834
1706
|
let ModusWcTreeMenu = class ModusWcTreeMenu {
|
|
1835
|
-
z;
|
|
1836
|
-
el;
|
|
1837
|
-
menuFocusout = new EventEmitter();
|
|
1838
|
-
menuSelectionChange = new EventEmitter();
|
|
1839
1707
|
constructor(c, r, z) {
|
|
1840
1708
|
this.z = z;
|
|
1709
|
+
this.menuFocusout = new EventEmitter();
|
|
1710
|
+
this.menuSelectionChange = new EventEmitter();
|
|
1841
1711
|
c.detach();
|
|
1842
1712
|
this.el = r.nativeElement;
|
|
1843
1713
|
}
|
|
1844
|
-
static
|
|
1845
|
-
static
|
|
1714
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTreeMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1715
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTreeMenu, selector: "modus-wc-tree-menu", inputs: { bordered: "bordered", customClass: "customClass", isSubMenu: "isSubMenu", orientation: "orientation", selectionMode: "selectionMode", size: "size" }, outputs: { menuFocusout: "menuFocusout", menuSelectionChange: "menuSelectionChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1846
1716
|
};
|
|
1847
1717
|
ModusWcTreeMenu = __decorate([
|
|
1848
1718
|
ProxyCmp({
|
|
1849
|
-
defineCustomElementFn: defineCustomElement$R,
|
|
1850
1719
|
inputs: ['bordered', 'customClass', 'isSubMenu', 'orientation', 'selectionMode', 'size']
|
|
1851
1720
|
})
|
|
1852
1721
|
], ModusWcTreeMenu);
|
|
1853
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1722
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTreeMenu, decorators: [{
|
|
1854
1723
|
type: Component,
|
|
1855
1724
|
args: [{
|
|
1856
1725
|
selector: 'modus-wc-tree-menu',
|
|
@@ -1859,6 +1728,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1859
1728
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1860
1729
|
inputs: ['bordered', 'customClass', 'isSubMenu', 'orientation', 'selectionMode', 'size'],
|
|
1861
1730
|
outputs: ['menuFocusout', 'menuSelectionChange'],
|
|
1731
|
+
standalone: false
|
|
1862
1732
|
}]
|
|
1863
1733
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { menuFocusout: [{
|
|
1864
1734
|
type: Output
|
|
@@ -1866,23 +1736,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1866
1736
|
type: Output
|
|
1867
1737
|
}] } });
|
|
1868
1738
|
let ModusWcTypography = class ModusWcTypography {
|
|
1869
|
-
z;
|
|
1870
|
-
el;
|
|
1871
1739
|
constructor(c, r, z) {
|
|
1872
1740
|
this.z = z;
|
|
1873
1741
|
c.detach();
|
|
1874
1742
|
this.el = r.nativeElement;
|
|
1875
1743
|
}
|
|
1876
|
-
static
|
|
1877
|
-
static
|
|
1744
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTypography, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1745
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTypography, selector: "modus-wc-typography", inputs: { customClass: "customClass", hierarchy: "hierarchy", label: "label", size: "size", weight: "weight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1878
1746
|
};
|
|
1879
1747
|
ModusWcTypography = __decorate([
|
|
1880
1748
|
ProxyCmp({
|
|
1881
|
-
defineCustomElementFn: defineCustomElement$S,
|
|
1882
1749
|
inputs: ['customClass', 'hierarchy', 'label', 'size', 'weight']
|
|
1883
1750
|
})
|
|
1884
1751
|
], ModusWcTypography);
|
|
1885
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1752
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTypography, decorators: [{
|
|
1886
1753
|
type: Component,
|
|
1887
1754
|
args: [{
|
|
1888
1755
|
selector: 'modus-wc-typography',
|
|
@@ -1890,28 +1757,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1890
1757
|
template: '<ng-content></ng-content>',
|
|
1891
1758
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1892
1759
|
inputs: ['customClass', 'hierarchy', { name: 'label', required: true }, 'size', 'weight'],
|
|
1760
|
+
standalone: false
|
|
1893
1761
|
}]
|
|
1894
1762
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
|
|
1895
1763
|
let ModusWcUtilityPanel = class ModusWcUtilityPanel {
|
|
1896
|
-
z;
|
|
1897
|
-
el;
|
|
1898
|
-
panelOpened = new EventEmitter();
|
|
1899
|
-
panelClosed = new EventEmitter();
|
|
1900
1764
|
constructor(c, r, z) {
|
|
1901
1765
|
this.z = z;
|
|
1766
|
+
this.panelOpened = new EventEmitter();
|
|
1767
|
+
this.panelClosed = new EventEmitter();
|
|
1902
1768
|
c.detach();
|
|
1903
1769
|
this.el = r.nativeElement;
|
|
1904
1770
|
}
|
|
1905
|
-
static
|
|
1906
|
-
static
|
|
1771
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcUtilityPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1772
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcUtilityPanel, selector: "modus-wc-utility-panel", inputs: { customClass: "customClass", expanded: "expanded", pushContent: "pushContent", targetElement: "targetElement" }, outputs: { panelOpened: "panelOpened", panelClosed: "panelClosed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
1907
1773
|
};
|
|
1908
1774
|
ModusWcUtilityPanel = __decorate([
|
|
1909
1775
|
ProxyCmp({
|
|
1910
|
-
defineCustomElementFn: defineCustomElement$T,
|
|
1911
1776
|
inputs: ['customClass', 'expanded', 'pushContent', 'targetElement']
|
|
1912
1777
|
})
|
|
1913
1778
|
], ModusWcUtilityPanel);
|
|
1914
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
1779
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcUtilityPanel, decorators: [{
|
|
1915
1780
|
type: Component,
|
|
1916
1781
|
args: [{
|
|
1917
1782
|
selector: 'modus-wc-utility-panel',
|
|
@@ -1920,6 +1785,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1920
1785
|
// eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
|
|
1921
1786
|
inputs: ['customClass', 'expanded', 'pushContent', 'targetElement'],
|
|
1922
1787
|
outputs: ['panelOpened', 'panelClosed'],
|
|
1788
|
+
standalone: false
|
|
1923
1789
|
}]
|
|
1924
1790
|
}], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { panelOpened: [{
|
|
1925
1791
|
type: Output
|
|
@@ -1927,6 +1793,101 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1927
1793
|
type: Output
|
|
1928
1794
|
}] } });
|
|
1929
1795
|
|
|
1796
|
+
const DIRECTIVES = [
|
|
1797
|
+
ModusWcAccordion,
|
|
1798
|
+
ModusWcAlert,
|
|
1799
|
+
ModusWcAppMenu,
|
|
1800
|
+
ModusWcAutocomplete,
|
|
1801
|
+
ModusWcAvatar,
|
|
1802
|
+
ModusWcBadge,
|
|
1803
|
+
ModusWcBottomSheet,
|
|
1804
|
+
ModusWcBreadcrumbs,
|
|
1805
|
+
ModusWcButton,
|
|
1806
|
+
ModusWcButtonGroup,
|
|
1807
|
+
ModusWcCard,
|
|
1808
|
+
ModusWcCheckbox,
|
|
1809
|
+
ModusWcChip,
|
|
1810
|
+
ModusWcCollapse,
|
|
1811
|
+
ModusWcDate,
|
|
1812
|
+
ModusWcDivider,
|
|
1813
|
+
ModusWcDropdownMenu,
|
|
1814
|
+
ModusWcFileDropzone,
|
|
1815
|
+
ModusWcHandle,
|
|
1816
|
+
ModusWcIcon,
|
|
1817
|
+
ModusWcInputFeedback,
|
|
1818
|
+
ModusWcInputLabel,
|
|
1819
|
+
ModusWcLink,
|
|
1820
|
+
ModusWcLoader,
|
|
1821
|
+
ModusWcLogo,
|
|
1822
|
+
ModusWcMenu,
|
|
1823
|
+
ModusWcMenuItem,
|
|
1824
|
+
ModusWcModal,
|
|
1825
|
+
ModusWcNavbar,
|
|
1826
|
+
ModusWcNumberInput,
|
|
1827
|
+
ModusWcPagination,
|
|
1828
|
+
ModusWcPanel,
|
|
1829
|
+
ModusWcProfileMenu,
|
|
1830
|
+
ModusWcProgress,
|
|
1831
|
+
ModusWcRadio,
|
|
1832
|
+
ModusWcRating,
|
|
1833
|
+
ModusWcSelect,
|
|
1834
|
+
ModusWcSideNavigation,
|
|
1835
|
+
ModusWcSkeleton,
|
|
1836
|
+
ModusWcSlider,
|
|
1837
|
+
ModusWcStepper,
|
|
1838
|
+
ModusWcSwitch,
|
|
1839
|
+
ModusWcTable,
|
|
1840
|
+
ModusWcTabs,
|
|
1841
|
+
ModusWcTextInput,
|
|
1842
|
+
ModusWcTextarea,
|
|
1843
|
+
ModusWcThemeProvider,
|
|
1844
|
+
ModusWcThemeSwitcher,
|
|
1845
|
+
ModusWcTimeInput,
|
|
1846
|
+
ModusWcToast,
|
|
1847
|
+
ModusWcToolbar,
|
|
1848
|
+
ModusWcTooltip,
|
|
1849
|
+
ModusWcTreeItem,
|
|
1850
|
+
ModusWcTreeMenu,
|
|
1851
|
+
ModusWcTypography,
|
|
1852
|
+
ModusWcUtilityPanel
|
|
1853
|
+
];
|
|
1854
|
+
|
|
1855
|
+
class ModusAngularComponentsModule {
|
|
1856
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusAngularComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1857
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.12", ngImport: i0, type: ModusAngularComponentsModule, declarations: [ModusWcAccordion, ModusWcAlert, ModusWcAppMenu, ModusWcAutocomplete, ModusWcAvatar, ModusWcBadge, ModusWcBottomSheet, ModusWcBreadcrumbs, ModusWcButton, ModusWcButtonGroup, ModusWcCard, ModusWcCheckbox, ModusWcChip, ModusWcCollapse, ModusWcDate, ModusWcDivider, ModusWcDropdownMenu, ModusWcFileDropzone, ModusWcHandle, ModusWcIcon, ModusWcInputFeedback, ModusWcInputLabel, ModusWcLink, ModusWcLoader, ModusWcLogo, ModusWcMenu, ModusWcMenuItem, ModusWcModal, ModusWcNavbar, ModusWcNumberInput, ModusWcPagination, ModusWcPanel, ModusWcProfileMenu, ModusWcProgress, ModusWcRadio, ModusWcRating, ModusWcSelect, ModusWcSideNavigation, ModusWcSkeleton, ModusWcSlider, ModusWcStepper, ModusWcSwitch, ModusWcTable, ModusWcTabs, ModusWcTextInput, ModusWcTextarea, ModusWcThemeProvider, ModusWcThemeSwitcher, ModusWcTimeInput, ModusWcToast, ModusWcToolbar, ModusWcTooltip, ModusWcTreeItem, ModusWcTreeMenu, ModusWcTypography, ModusWcUtilityPanel], exports: [ModusWcAccordion, ModusWcAlert, ModusWcAppMenu, ModusWcAutocomplete, ModusWcAvatar, ModusWcBadge, ModusWcBottomSheet, ModusWcBreadcrumbs, ModusWcButton, ModusWcButtonGroup, ModusWcCard, ModusWcCheckbox, ModusWcChip, ModusWcCollapse, ModusWcDate, ModusWcDivider, ModusWcDropdownMenu, ModusWcFileDropzone, ModusWcHandle, ModusWcIcon, ModusWcInputFeedback, ModusWcInputLabel, ModusWcLink, ModusWcLoader, ModusWcLogo, ModusWcMenu, ModusWcMenuItem, ModusWcModal, ModusWcNavbar, ModusWcNumberInput, ModusWcPagination, ModusWcPanel, ModusWcProfileMenu, ModusWcProgress, ModusWcRadio, ModusWcRating, ModusWcSelect, ModusWcSideNavigation, ModusWcSkeleton, ModusWcSlider, ModusWcStepper, ModusWcSwitch, ModusWcTable, ModusWcTabs, ModusWcTextInput, ModusWcTextarea, ModusWcThemeProvider, ModusWcThemeSwitcher, ModusWcTimeInput, ModusWcToast, ModusWcToolbar, ModusWcTooltip, ModusWcTreeItem, ModusWcTreeMenu, ModusWcTypography, ModusWcUtilityPanel] }); }
|
|
1858
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusAngularComponentsModule, providers: [
|
|
1859
|
+
{
|
|
1860
|
+
provide: APP_INITIALIZER,
|
|
1861
|
+
useFactory: () => () => {
|
|
1862
|
+
// Configure asset path for Angular applications
|
|
1863
|
+
// Assets should be copied to /assets/ via angular.json configuration
|
|
1864
|
+
setAssetPath('/assets/');
|
|
1865
|
+
defineCustomElements(window);
|
|
1866
|
+
},
|
|
1867
|
+
multi: true,
|
|
1868
|
+
}
|
|
1869
|
+
] }); }
|
|
1870
|
+
}
|
|
1871
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusAngularComponentsModule, decorators: [{
|
|
1872
|
+
type: NgModule,
|
|
1873
|
+
args: [{
|
|
1874
|
+
declarations: [...DIRECTIVES],
|
|
1875
|
+
exports: [...DIRECTIVES],
|
|
1876
|
+
providers: [
|
|
1877
|
+
{
|
|
1878
|
+
provide: APP_INITIALIZER,
|
|
1879
|
+
useFactory: () => () => {
|
|
1880
|
+
// Configure asset path for Angular applications
|
|
1881
|
+
// Assets should be copied to /assets/ via angular.json configuration
|
|
1882
|
+
setAssetPath('/assets/');
|
|
1883
|
+
defineCustomElements(window);
|
|
1884
|
+
},
|
|
1885
|
+
multi: true,
|
|
1886
|
+
}
|
|
1887
|
+
]
|
|
1888
|
+
}]
|
|
1889
|
+
}] });
|
|
1890
|
+
|
|
1930
1891
|
/*
|
|
1931
1892
|
* Public API Surface of moduswebcomponents-angular
|
|
1932
1893
|
*/
|
|
@@ -1935,5 +1896,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.21", ngImpo
|
|
|
1935
1896
|
* Generated bundle index. Do not edit.
|
|
1936
1897
|
*/
|
|
1937
1898
|
|
|
1938
|
-
export { ModusWcAccordion, ModusWcAlert, ModusWcAppMenu, ModusWcAutocomplete, ModusWcAvatar, ModusWcBadge, ModusWcBreadcrumbs, ModusWcButton, ModusWcButtonGroup, ModusWcCard, ModusWcCheckbox, ModusWcChip, ModusWcCollapse, ModusWcDate, ModusWcDivider, ModusWcDropdownMenu, ModusWcFileDropzone, ModusWcHandle, ModusWcIcon, ModusWcInputFeedback, ModusWcInputLabel, ModusWcLink, ModusWcLoader, ModusWcLogo, ModusWcMenu, ModusWcMenuItem, ModusWcModal, ModusWcNavbar, ModusWcNumberInput, ModusWcPagination, ModusWcPanel, ModusWcProfileMenu, ModusWcProgress, ModusWcRadio, ModusWcRating, ModusWcSelect, ModusWcSideNavigation, ModusWcSkeleton, ModusWcSlider, ModusWcStepper, ModusWcSwitch, ModusWcTable, ModusWcTabs, ModusWcTextInput, ModusWcTextarea, ModusWcThemeProvider, ModusWcThemeSwitcher, ModusWcTimeInput, ModusWcToast, ModusWcToolbar, ModusWcTooltip, ModusWcTreeItem, ModusWcTreeMenu, ModusWcTypography, ModusWcUtilityPanel
|
|
1899
|
+
export { DIRECTIVES, ModusAngularComponentsModule, ModusWcAccordion, ModusWcAlert, ModusWcAppMenu, ModusWcAutocomplete, ModusWcAvatar, ModusWcBadge, ModusWcBottomSheet, ModusWcBreadcrumbs, ModusWcButton, ModusWcButtonGroup, ModusWcCard, ModusWcCheckbox, ModusWcChip, ModusWcCollapse, ModusWcDate, ModusWcDivider, ModusWcDropdownMenu, ModusWcFileDropzone, ModusWcHandle, ModusWcIcon, ModusWcInputFeedback, ModusWcInputLabel, ModusWcLink, ModusWcLoader, ModusWcLogo, ModusWcMenu, ModusWcMenuItem, ModusWcModal, ModusWcNavbar, ModusWcNumberInput, ModusWcPagination, ModusWcPanel, ModusWcProfileMenu, ModusWcProgress, ModusWcRadio, ModusWcRating, ModusWcSelect, ModusWcSideNavigation, ModusWcSkeleton, ModusWcSlider, ModusWcStepper, ModusWcSwitch, ModusWcTable, ModusWcTabs, ModusWcTextInput, ModusWcTextarea, ModusWcThemeProvider, ModusWcThemeSwitcher, ModusWcTimeInput, ModusWcToast, ModusWcToolbar, ModusWcTooltip, ModusWcTreeItem, ModusWcTreeMenu, ModusWcTypography, ModusWcUtilityPanel };
|
|
1939
1900
|
//# sourceMappingURL=trimble-oss-moduswebcomponents-angular.mjs.map
|