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