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