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