@trimble-oss/moduswebcomponents-angular 0.0.0-alpha.5-ng17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1179 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Component, ChangeDetectionStrategy, APP_INITIALIZER, NgModule } from '@angular/core';
3
+ import { defineCustomElements } from '@trimble-oss/moduswebcomponents/loader';
4
+ import { __decorate } from 'tslib';
5
+ import { fromEvent } from 'rxjs';
6
+
7
+ /* eslint-disable */
8
+ /* tslint:disable */
9
+ const proxyInputs = (Cmp, inputs) => {
10
+ const Prototype = Cmp.prototype;
11
+ inputs.forEach((item) => {
12
+ Object.defineProperty(Prototype, item, {
13
+ get() {
14
+ return this.el[item];
15
+ },
16
+ set(val) {
17
+ this.z.runOutsideAngular(() => (this.el[item] = val));
18
+ },
19
+ /**
20
+ * In the event that proxyInputs is called
21
+ * multiple times re-defining these inputs
22
+ * will cause an error to be thrown. As a result
23
+ * we set configurable: true to indicate these
24
+ * properties can be changed.
25
+ */
26
+ configurable: true,
27
+ });
28
+ });
29
+ };
30
+ const proxyMethods = (Cmp, methods) => {
31
+ const Prototype = Cmp.prototype;
32
+ methods.forEach((methodName) => {
33
+ Prototype[methodName] = function () {
34
+ const args = arguments;
35
+ return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
36
+ };
37
+ });
38
+ };
39
+ const proxyOutputs = (instance, el, events) => {
40
+ events.forEach((eventName) => (instance[eventName] = fromEvent(el, eventName)));
41
+ };
42
+ const defineCustomElement = (tagName, customElement) => {
43
+ if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {
44
+ customElements.define(tagName, customElement);
45
+ }
46
+ };
47
+ // tslint:disable-next-line: only-arrow-functions
48
+ function ProxyCmp(opts) {
49
+ const decorator = function (cls) {
50
+ const { defineCustomElementFn, inputs, methods } = opts;
51
+ if (defineCustomElementFn !== undefined) {
52
+ defineCustomElementFn();
53
+ }
54
+ if (inputs) {
55
+ proxyInputs(cls, inputs);
56
+ }
57
+ if (methods) {
58
+ proxyMethods(cls, methods);
59
+ }
60
+ return cls;
61
+ };
62
+ return decorator;
63
+ }
64
+
65
+ let ModusWcAccordion = class ModusWcAccordion {
66
+ constructor(c, r, z) {
67
+ this.z = z;
68
+ c.detach();
69
+ this.el = r.nativeElement;
70
+ proxyOutputs(this, this.el, ['expandedChange']);
71
+ }
72
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
73
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcAccordion, selector: "modus-wc-accordion", inputs: { customClass: "customClass" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
74
+ };
75
+ ModusWcAccordion = __decorate([
76
+ ProxyCmp({
77
+ inputs: ['customClass']
78
+ })
79
+ ], ModusWcAccordion);
80
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAccordion, decorators: [{
81
+ type: Component,
82
+ args: [{
83
+ selector: 'modus-wc-accordion',
84
+ changeDetection: ChangeDetectionStrategy.OnPush,
85
+ template: '<ng-content></ng-content>',
86
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
87
+ inputs: ['customClass'],
88
+ }]
89
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
90
+ let ModusWcAlert = class ModusWcAlert {
91
+ constructor(c, r, z) {
92
+ this.z = z;
93
+ c.detach();
94
+ this.el = r.nativeElement;
95
+ proxyOutputs(this, this.el, ['dismissClick']);
96
+ }
97
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
98
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcAlert, selector: "modus-wc-alert", inputs: { alertDescription: "alertDescription", alertTitle: "alertTitle", customClass: "customClass", delay: "delay", dismissible: "dismissible", icon: "icon", role: "role", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
99
+ };
100
+ ModusWcAlert = __decorate([
101
+ ProxyCmp({
102
+ inputs: ['alertDescription', 'alertTitle', 'customClass', 'delay', 'dismissible', 'icon', 'role', 'variant']
103
+ })
104
+ ], ModusWcAlert);
105
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAlert, decorators: [{
106
+ type: Component,
107
+ args: [{
108
+ selector: 'modus-wc-alert',
109
+ changeDetection: ChangeDetectionStrategy.OnPush,
110
+ template: '<ng-content></ng-content>',
111
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
112
+ inputs: ['alertDescription', 'alertTitle', 'customClass', 'delay', 'dismissible', 'icon', 'role', 'variant'],
113
+ }]
114
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
115
+ let ModusWcAutocomplete = class ModusWcAutocomplete {
116
+ constructor(c, r, z) {
117
+ this.z = z;
118
+ c.detach();
119
+ this.el = r.nativeElement;
120
+ proxyOutputs(this, this.el, ['chipRemove', 'inputBlur', 'inputChange', 'inputFocus', 'itemSelect']);
121
+ }
122
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAutocomplete, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
123
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcAutocomplete, selector: "modus-wc-autocomplete", inputs: { bordered: "bordered", customClass: "customClass", debounceMs: "debounceMs", disabled: "disabled", inputId: "inputId", inputTabIndex: "inputTabIndex", items: "items", label: "label", leaveMenuOpen: "leaveMenuOpen", minChars: "minChars", multiSelect: "multiSelect", name: "name", noResults: "noResults", placeholder: "placeholder", readOnly: "readOnly", required: "required", showSpinner: "showSpinner", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
124
+ };
125
+ ModusWcAutocomplete = __decorate([
126
+ ProxyCmp({
127
+ inputs: ['bordered', 'customClass', 'debounceMs', 'disabled', 'inputId', 'inputTabIndex', 'items', 'label', 'leaveMenuOpen', 'minChars', 'multiSelect', 'name', 'noResults', 'placeholder', 'readOnly', 'required', 'showSpinner', 'size', 'value']
128
+ })
129
+ ], ModusWcAutocomplete);
130
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAutocomplete, decorators: [{
131
+ type: Component,
132
+ args: [{
133
+ selector: 'modus-wc-autocomplete',
134
+ changeDetection: ChangeDetectionStrategy.OnPush,
135
+ template: '<ng-content></ng-content>',
136
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
137
+ inputs: ['bordered', 'customClass', 'debounceMs', 'disabled', 'inputId', 'inputTabIndex', 'items', 'label', 'leaveMenuOpen', 'minChars', 'multiSelect', 'name', 'noResults', 'placeholder', 'readOnly', 'required', 'showSpinner', 'size', 'value'],
138
+ }]
139
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
140
+ let ModusWcAvatar = class ModusWcAvatar {
141
+ constructor(c, r, z) {
142
+ this.z = z;
143
+ c.detach();
144
+ this.el = r.nativeElement;
145
+ }
146
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAvatar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
147
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcAvatar, selector: "modus-wc-avatar", inputs: { alt: "alt", customClass: "customClass", imgSrc: "imgSrc", shape: "shape", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
148
+ };
149
+ ModusWcAvatar = __decorate([
150
+ ProxyCmp({
151
+ inputs: ['alt', 'customClass', 'imgSrc', 'shape', 'size']
152
+ })
153
+ ], ModusWcAvatar);
154
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcAvatar, decorators: [{
155
+ type: Component,
156
+ args: [{
157
+ selector: 'modus-wc-avatar',
158
+ changeDetection: ChangeDetectionStrategy.OnPush,
159
+ template: '<ng-content></ng-content>',
160
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
161
+ inputs: ['alt', 'customClass', 'imgSrc', 'shape', 'size'],
162
+ }]
163
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
164
+ let ModusWcBadge = class ModusWcBadge {
165
+ constructor(c, r, z) {
166
+ this.z = z;
167
+ c.detach();
168
+ this.el = r.nativeElement;
169
+ }
170
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
171
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcBadge, selector: "modus-wc-badge", inputs: { color: "color", customClass: "customClass", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
172
+ };
173
+ ModusWcBadge = __decorate([
174
+ ProxyCmp({
175
+ inputs: ['color', 'customClass', 'size', 'variant']
176
+ })
177
+ ], ModusWcBadge);
178
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcBadge, decorators: [{
179
+ type: Component,
180
+ args: [{
181
+ selector: 'modus-wc-badge',
182
+ changeDetection: ChangeDetectionStrategy.OnPush,
183
+ template: '<ng-content></ng-content>',
184
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
185
+ inputs: ['color', 'customClass', 'size', 'variant'],
186
+ }]
187
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
188
+ let ModusWcBreadcrumbs = class ModusWcBreadcrumbs {
189
+ constructor(c, r, z) {
190
+ this.z = z;
191
+ c.detach();
192
+ this.el = r.nativeElement;
193
+ proxyOutputs(this, this.el, ['breadcrumbClick']);
194
+ }
195
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcBreadcrumbs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
196
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcBreadcrumbs, selector: "modus-wc-breadcrumbs", inputs: { customClass: "customClass", items: "items", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
197
+ };
198
+ ModusWcBreadcrumbs = __decorate([
199
+ ProxyCmp({
200
+ inputs: ['customClass', 'items', 'size']
201
+ })
202
+ ], ModusWcBreadcrumbs);
203
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcBreadcrumbs, decorators: [{
204
+ type: Component,
205
+ args: [{
206
+ selector: 'modus-wc-breadcrumbs',
207
+ changeDetection: ChangeDetectionStrategy.OnPush,
208
+ template: '<ng-content></ng-content>',
209
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
210
+ inputs: ['customClass', 'items', 'size'],
211
+ }]
212
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
213
+ let ModusWcButton = class ModusWcButton {
214
+ constructor(c, r, z) {
215
+ this.z = z;
216
+ c.detach();
217
+ this.el = r.nativeElement;
218
+ proxyOutputs(this, this.el, ['buttonClick']);
219
+ }
220
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
221
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcButton, selector: "modus-wc-button", inputs: { color: "color", customClass: "customClass", disabled: "disabled", fullWidth: "fullWidth", pressed: "pressed", shape: "shape", size: "size", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
222
+ };
223
+ ModusWcButton = __decorate([
224
+ ProxyCmp({
225
+ inputs: ['color', 'customClass', 'disabled', 'fullWidth', 'pressed', 'shape', 'size', 'type', 'variant']
226
+ })
227
+ ], ModusWcButton);
228
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcButton, decorators: [{
229
+ type: Component,
230
+ args: [{
231
+ selector: 'modus-wc-button',
232
+ changeDetection: ChangeDetectionStrategy.OnPush,
233
+ template: '<ng-content></ng-content>',
234
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
235
+ inputs: ['color', 'customClass', 'disabled', 'fullWidth', 'pressed', 'shape', 'size', 'type', 'variant'],
236
+ }]
237
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
238
+ let ModusWcCard = class ModusWcCard {
239
+ constructor(c, r, z) {
240
+ this.z = z;
241
+ c.detach();
242
+ this.el = r.nativeElement;
243
+ }
244
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
245
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcCard, selector: "modus-wc-card", inputs: { backgroundFigure: "backgroundFigure", bordered: "bordered", customClass: "customClass", layout: "layout", padding: "padding" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
246
+ };
247
+ ModusWcCard = __decorate([
248
+ ProxyCmp({
249
+ inputs: ['backgroundFigure', 'bordered', 'customClass', 'layout', 'padding']
250
+ })
251
+ ], ModusWcCard);
252
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcCard, decorators: [{
253
+ type: Component,
254
+ args: [{
255
+ selector: 'modus-wc-card',
256
+ changeDetection: ChangeDetectionStrategy.OnPush,
257
+ template: '<ng-content></ng-content>',
258
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
259
+ inputs: ['backgroundFigure', 'bordered', 'customClass', 'layout', 'padding'],
260
+ }]
261
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
262
+ let ModusWcCheckbox = class ModusWcCheckbox {
263
+ constructor(c, r, z) {
264
+ this.z = z;
265
+ c.detach();
266
+ this.el = r.nativeElement;
267
+ proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
268
+ }
269
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
270
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcCheckbox, selector: "modus-wc-checkbox", inputs: { customClass: "customClass", disabled: "disabled", indeterminate: "indeterminate", inputId: "inputId", inputTabIndex: "inputTabIndex", label: "label", name: "name", required: "required", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
271
+ };
272
+ ModusWcCheckbox = __decorate([
273
+ ProxyCmp({
274
+ inputs: ['customClass', 'disabled', 'indeterminate', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value']
275
+ })
276
+ ], ModusWcCheckbox);
277
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcCheckbox, decorators: [{
278
+ type: Component,
279
+ args: [{
280
+ selector: 'modus-wc-checkbox',
281
+ changeDetection: ChangeDetectionStrategy.OnPush,
282
+ template: '<ng-content></ng-content>',
283
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
284
+ inputs: ['customClass', 'disabled', 'indeterminate', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value'],
285
+ }]
286
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
287
+ let ModusWcChip = class ModusWcChip {
288
+ constructor(c, r, z) {
289
+ this.z = z;
290
+ c.detach();
291
+ this.el = r.nativeElement;
292
+ proxyOutputs(this, this.el, ['chipClick', 'chipRemove']);
293
+ }
294
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
295
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcChip, selector: "modus-wc-chip", inputs: { active: "active", customClass: "customClass", disabled: "disabled", hasError: "hasError", label: "label", showRemove: "showRemove", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
296
+ };
297
+ ModusWcChip = __decorate([
298
+ ProxyCmp({
299
+ inputs: ['active', 'customClass', 'disabled', 'hasError', 'label', 'showRemove', 'size', 'variant']
300
+ })
301
+ ], ModusWcChip);
302
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcChip, decorators: [{
303
+ type: Component,
304
+ args: [{
305
+ selector: 'modus-wc-chip',
306
+ changeDetection: ChangeDetectionStrategy.OnPush,
307
+ template: '<ng-content></ng-content>',
308
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
309
+ inputs: ['active', 'customClass', 'disabled', 'hasError', 'label', 'showRemove', 'size', 'variant'],
310
+ }]
311
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
312
+ let ModusWcCollapse = class ModusWcCollapse {
313
+ constructor(c, r, z) {
314
+ this.z = z;
315
+ c.detach();
316
+ this.el = r.nativeElement;
317
+ proxyOutputs(this, this.el, ['expandedChange']);
318
+ }
319
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcCollapse, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
320
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcCollapse, selector: "modus-wc-collapse", inputs: { bordered: "bordered", collapseId: "collapseId", customClass: "customClass", expanded: "expanded", options: "options" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
321
+ };
322
+ ModusWcCollapse = __decorate([
323
+ ProxyCmp({
324
+ inputs: ['bordered', 'collapseId', 'customClass', 'expanded', 'options']
325
+ })
326
+ ], ModusWcCollapse);
327
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcCollapse, decorators: [{
328
+ type: Component,
329
+ args: [{
330
+ selector: 'modus-wc-collapse',
331
+ changeDetection: ChangeDetectionStrategy.OnPush,
332
+ template: '<ng-content></ng-content>',
333
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
334
+ inputs: ['bordered', 'collapseId', 'customClass', 'expanded', 'options'],
335
+ }]
336
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
337
+ let ModusWcDate = class ModusWcDate {
338
+ constructor(c, r, z) {
339
+ this.z = z;
340
+ c.detach();
341
+ this.el = r.nativeElement;
342
+ proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
343
+ }
344
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcDate, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
345
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcDate, selector: "modus-wc-date", inputs: { bordered: "bordered", customClass: "customClass", disabled: "disabled", feedback: "feedback", inputId: "inputId", inputTabIndex: "inputTabIndex", label: "label", max: "max", min: "min", name: "name", readOnly: "readOnly", required: "required", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
346
+ };
347
+ ModusWcDate = __decorate([
348
+ ProxyCmp({
349
+ inputs: ['bordered', 'customClass', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'readOnly', 'required', 'size', 'value']
350
+ })
351
+ ], ModusWcDate);
352
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcDate, decorators: [{
353
+ type: Component,
354
+ args: [{
355
+ selector: 'modus-wc-date',
356
+ changeDetection: ChangeDetectionStrategy.OnPush,
357
+ template: '<ng-content></ng-content>',
358
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
359
+ inputs: ['bordered', 'customClass', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'readOnly', 'required', 'size', 'value'],
360
+ }]
361
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
362
+ let ModusWcDivider = class ModusWcDivider {
363
+ constructor(c, r, z) {
364
+ this.z = z;
365
+ c.detach();
366
+ this.el = r.nativeElement;
367
+ }
368
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
369
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcDivider, selector: "modus-wc-divider", inputs: { color: "color", content: "content", customClass: "customClass", orientation: "orientation", position: "position", responsive: "responsive" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
370
+ };
371
+ ModusWcDivider = __decorate([
372
+ ProxyCmp({
373
+ inputs: ['color', 'content', 'customClass', 'orientation', 'position', 'responsive']
374
+ })
375
+ ], ModusWcDivider);
376
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcDivider, decorators: [{
377
+ type: Component,
378
+ args: [{
379
+ selector: 'modus-wc-divider',
380
+ changeDetection: ChangeDetectionStrategy.OnPush,
381
+ template: '<ng-content></ng-content>',
382
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
383
+ inputs: ['color', 'content', 'customClass', 'orientation', 'position', 'responsive'],
384
+ }]
385
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
386
+ let ModusWcIcon = class ModusWcIcon {
387
+ constructor(c, r, z) {
388
+ this.z = z;
389
+ c.detach();
390
+ this.el = r.nativeElement;
391
+ }
392
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
393
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcIcon, selector: "modus-wc-icon", inputs: { customClass: "customClass", decorative: "decorative", name: "name", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
394
+ };
395
+ ModusWcIcon = __decorate([
396
+ ProxyCmp({
397
+ inputs: ['customClass', 'decorative', 'name', 'size']
398
+ })
399
+ ], ModusWcIcon);
400
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcIcon, decorators: [{
401
+ type: Component,
402
+ args: [{
403
+ selector: 'modus-wc-icon',
404
+ changeDetection: ChangeDetectionStrategy.OnPush,
405
+ template: '<ng-content></ng-content>',
406
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
407
+ inputs: ['customClass', 'decorative', 'name', 'size'],
408
+ }]
409
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
410
+ let ModusWcInputFeedback = class ModusWcInputFeedback {
411
+ constructor(c, r, z) {
412
+ this.z = z;
413
+ c.detach();
414
+ this.el = r.nativeElement;
415
+ }
416
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcInputFeedback, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
417
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcInputFeedback, selector: "modus-wc-input-feedback", inputs: { customClass: "customClass", icon: "icon", level: "level", message: "message", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
418
+ };
419
+ ModusWcInputFeedback = __decorate([
420
+ ProxyCmp({
421
+ inputs: ['customClass', 'icon', 'level', 'message', 'size']
422
+ })
423
+ ], ModusWcInputFeedback);
424
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcInputFeedback, decorators: [{
425
+ type: Component,
426
+ args: [{
427
+ selector: 'modus-wc-input-feedback',
428
+ changeDetection: ChangeDetectionStrategy.OnPush,
429
+ template: '<ng-content></ng-content>',
430
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
431
+ inputs: ['customClass', 'icon', 'level', 'message', 'size'],
432
+ }]
433
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
434
+ let ModusWcInputLabel = class ModusWcInputLabel {
435
+ constructor(c, r, z) {
436
+ this.z = z;
437
+ c.detach();
438
+ this.el = r.nativeElement;
439
+ }
440
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcInputLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
441
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcInputLabel, selector: "modus-wc-input-label", inputs: { customClass: "customClass", forId: "forId", labelText: "labelText", required: "required", size: "size", subLabelText: "subLabelText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
442
+ };
443
+ ModusWcInputLabel = __decorate([
444
+ ProxyCmp({
445
+ inputs: ['customClass', 'forId', 'labelText', 'required', 'size', 'subLabelText']
446
+ })
447
+ ], ModusWcInputLabel);
448
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcInputLabel, decorators: [{
449
+ type: Component,
450
+ args: [{
451
+ selector: 'modus-wc-input-label',
452
+ changeDetection: ChangeDetectionStrategy.OnPush,
453
+ template: '<ng-content></ng-content>',
454
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
455
+ inputs: ['customClass', 'forId', 'labelText', 'required', 'size', 'subLabelText'],
456
+ }]
457
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
458
+ let ModusWcLoader = class ModusWcLoader {
459
+ constructor(c, r, z) {
460
+ this.z = z;
461
+ c.detach();
462
+ this.el = r.nativeElement;
463
+ }
464
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcLoader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
465
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcLoader, selector: "modus-wc-loader", inputs: { color: "color", customClass: "customClass", size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
466
+ };
467
+ ModusWcLoader = __decorate([
468
+ ProxyCmp({
469
+ inputs: ['color', 'customClass', 'size', 'variant']
470
+ })
471
+ ], ModusWcLoader);
472
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcLoader, decorators: [{
473
+ type: Component,
474
+ args: [{
475
+ selector: 'modus-wc-loader',
476
+ changeDetection: ChangeDetectionStrategy.OnPush,
477
+ template: '<ng-content></ng-content>',
478
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
479
+ inputs: ['color', 'customClass', 'size', 'variant'],
480
+ }]
481
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
482
+ let ModusWcMenu = class ModusWcMenu {
483
+ constructor(c, r, z) {
484
+ this.z = z;
485
+ c.detach();
486
+ this.el = r.nativeElement;
487
+ }
488
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
489
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcMenu, selector: "modus-wc-menu", inputs: { bordered: "bordered", customClass: "customClass", orientation: "orientation", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
490
+ };
491
+ ModusWcMenu = __decorate([
492
+ ProxyCmp({
493
+ inputs: ['bordered', 'customClass', 'orientation', 'size']
494
+ })
495
+ ], ModusWcMenu);
496
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcMenu, decorators: [{
497
+ type: Component,
498
+ args: [{
499
+ selector: 'modus-wc-menu',
500
+ changeDetection: ChangeDetectionStrategy.OnPush,
501
+ template: '<ng-content></ng-content>',
502
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
503
+ inputs: ['bordered', 'customClass', 'orientation', 'size'],
504
+ }]
505
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
506
+ let ModusWcMenuItem = class ModusWcMenuItem {
507
+ constructor(c, r, z) {
508
+ this.z = z;
509
+ c.detach();
510
+ this.el = r.nativeElement;
511
+ proxyOutputs(this, this.el, ['itemSelect']);
512
+ }
513
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
514
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcMenuItem, selector: "modus-wc-menu-item", inputs: { bordered: "bordered", customClass: "customClass", disabled: "disabled", focused: "focused", label: "label", selected: "selected", size: "size", startIcon: "startIcon", subLabel: "subLabel", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
515
+ };
516
+ ModusWcMenuItem = __decorate([
517
+ ProxyCmp({
518
+ inputs: ['bordered', 'customClass', 'disabled', 'focused', 'label', 'selected', 'size', 'startIcon', 'subLabel', 'value']
519
+ })
520
+ ], ModusWcMenuItem);
521
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcMenuItem, decorators: [{
522
+ type: Component,
523
+ args: [{
524
+ selector: 'modus-wc-menu-item',
525
+ changeDetection: ChangeDetectionStrategy.OnPush,
526
+ template: '<ng-content></ng-content>',
527
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
528
+ inputs: ['bordered', 'customClass', 'disabled', 'focused', 'label', 'selected', 'size', 'startIcon', 'subLabel', 'value'],
529
+ }]
530
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
531
+ let ModusWcModal = class ModusWcModal {
532
+ constructor(c, r, z) {
533
+ this.z = z;
534
+ c.detach();
535
+ this.el = r.nativeElement;
536
+ }
537
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
538
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcModal, selector: "modus-wc-modal", inputs: { backdrop: "backdrop", customClass: "customClass", fullscreen: "fullscreen", modalId: "modalId", position: "position", showClose: "showClose", showFullscreenToggle: "showFullscreenToggle" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
539
+ };
540
+ ModusWcModal = __decorate([
541
+ ProxyCmp({
542
+ inputs: ['backdrop', 'customClass', 'fullscreen', 'modalId', 'position', 'showClose', 'showFullscreenToggle']
543
+ })
544
+ ], ModusWcModal);
545
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcModal, decorators: [{
546
+ type: Component,
547
+ args: [{
548
+ selector: 'modus-wc-modal',
549
+ changeDetection: ChangeDetectionStrategy.OnPush,
550
+ template: '<ng-content></ng-content>',
551
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
552
+ inputs: ['backdrop', 'customClass', 'fullscreen', 'modalId', 'position', 'showClose', 'showFullscreenToggle'],
553
+ }]
554
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
555
+ let ModusWcNavbar = class ModusWcNavbar {
556
+ constructor(c, r, z) {
557
+ this.z = z;
558
+ c.detach();
559
+ this.el = r.nativeElement;
560
+ proxyOutputs(this, this.el, ['appsClick', 'helpClick', 'myTrimbleClick', 'notificationsClick', 'searchChange', 'searchClick', 'signOutClick', 'trimbleLogoClick']);
561
+ }
562
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcNavbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
563
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcNavbar, selector: "modus-wc-navbar", inputs: { condensed: "condensed", customClass: "customClass", searchDebounceMs: "searchDebounceMs", user: "user", visibility: "visibility" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
564
+ };
565
+ ModusWcNavbar = __decorate([
566
+ ProxyCmp({
567
+ inputs: ['condensed', 'customClass', 'searchDebounceMs', 'user', 'visibility']
568
+ })
569
+ ], ModusWcNavbar);
570
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcNavbar, decorators: [{
571
+ type: Component,
572
+ args: [{
573
+ selector: 'modus-wc-navbar',
574
+ changeDetection: ChangeDetectionStrategy.OnPush,
575
+ template: '<ng-content></ng-content>',
576
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
577
+ inputs: ['condensed', 'customClass', 'searchDebounceMs', 'user', 'visibility'],
578
+ }]
579
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
580
+ let ModusWcNumberInput = class ModusWcNumberInput {
581
+ constructor(c, r, z) {
582
+ this.z = z;
583
+ c.detach();
584
+ this.el = r.nativeElement;
585
+ proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
586
+ }
587
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcNumberInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
588
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcNumberInput, selector: "modus-wc-number-input", inputs: { autoComplete: "autoComplete", bordered: "bordered", currencySymbol: "currencySymbol", customClass: "customClass", disabled: "disabled", feedback: "feedback", inputId: "inputId", inputMode: "inputMode", inputTabIndex: "inputTabIndex", label: "label", max: "max", min: "min", name: "name", placeholder: "placeholder", readOnly: "readOnly", required: "required", size: "size", step: "step", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
589
+ };
590
+ ModusWcNumberInput = __decorate([
591
+ ProxyCmp({
592
+ inputs: ['autoComplete', 'bordered', 'currencySymbol', 'customClass', 'disabled', 'feedback', 'inputId', 'inputMode', 'inputTabIndex', 'label', 'max', 'min', 'name', 'placeholder', 'readOnly', 'required', 'size', 'step', 'type', 'value']
593
+ })
594
+ ], ModusWcNumberInput);
595
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcNumberInput, decorators: [{
596
+ type: Component,
597
+ args: [{
598
+ selector: 'modus-wc-number-input',
599
+ changeDetection: ChangeDetectionStrategy.OnPush,
600
+ template: '<ng-content></ng-content>',
601
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
602
+ inputs: ['autoComplete', 'bordered', 'currencySymbol', 'customClass', 'disabled', 'feedback', 'inputId', 'inputMode', 'inputTabIndex', 'label', 'max', 'min', 'name', 'placeholder', 'readOnly', 'required', 'size', 'step', 'type', 'value'],
603
+ }]
604
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
605
+ let ModusWcPagination = class ModusWcPagination {
606
+ constructor(c, r, z) {
607
+ this.z = z;
608
+ c.detach();
609
+ this.el = r.nativeElement;
610
+ proxyOutputs(this, this.el, ['pageChange']);
611
+ }
612
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcPagination, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
613
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcPagination, selector: "modus-wc-pagination", inputs: { ariaLabelValues: "ariaLabelValues", count: "count", customClass: "customClass", page: "page", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
614
+ };
615
+ ModusWcPagination = __decorate([
616
+ ProxyCmp({
617
+ inputs: ['ariaLabelValues', 'count', 'customClass', 'page', 'size']
618
+ })
619
+ ], ModusWcPagination);
620
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcPagination, decorators: [{
621
+ type: Component,
622
+ args: [{
623
+ selector: 'modus-wc-pagination',
624
+ changeDetection: ChangeDetectionStrategy.OnPush,
625
+ template: '<ng-content></ng-content>',
626
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
627
+ inputs: ['ariaLabelValues', 'count', 'customClass', 'page', 'size'],
628
+ }]
629
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
630
+ let ModusWcProgress = class ModusWcProgress {
631
+ constructor(c, r, z) {
632
+ this.z = z;
633
+ c.detach();
634
+ this.el = r.nativeElement;
635
+ }
636
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcProgress, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
637
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcProgress, selector: "modus-wc-progress", inputs: { customClass: "customClass", indeterminate: "indeterminate", label: "label", max: "max", value: "value", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
638
+ };
639
+ ModusWcProgress = __decorate([
640
+ ProxyCmp({
641
+ inputs: ['customClass', 'indeterminate', 'label', 'max', 'value', 'variant']
642
+ })
643
+ ], ModusWcProgress);
644
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcProgress, decorators: [{
645
+ type: Component,
646
+ args: [{
647
+ selector: 'modus-wc-progress',
648
+ changeDetection: ChangeDetectionStrategy.OnPush,
649
+ template: '<ng-content></ng-content>',
650
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
651
+ inputs: ['customClass', 'indeterminate', 'label', 'max', 'value', 'variant'],
652
+ }]
653
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
654
+ let ModusWcRadio = class ModusWcRadio {
655
+ constructor(c, r, z) {
656
+ this.z = z;
657
+ c.detach();
658
+ this.el = r.nativeElement;
659
+ proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
660
+ }
661
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
662
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcRadio, selector: "modus-wc-radio", inputs: { customClass: "customClass", disabled: "disabled", inputId: "inputId", inputTabIndex: "inputTabIndex", label: "label", name: "name", required: "required", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
663
+ };
664
+ ModusWcRadio = __decorate([
665
+ ProxyCmp({
666
+ inputs: ['customClass', 'disabled', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value']
667
+ })
668
+ ], ModusWcRadio);
669
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcRadio, decorators: [{
670
+ type: Component,
671
+ args: [{
672
+ selector: 'modus-wc-radio',
673
+ changeDetection: ChangeDetectionStrategy.OnPush,
674
+ template: '<ng-content></ng-content>',
675
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
676
+ inputs: ['customClass', 'disabled', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value'],
677
+ }]
678
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
679
+ let ModusWcRating = class ModusWcRating {
680
+ constructor(c, r, z) {
681
+ this.z = z;
682
+ c.detach();
683
+ this.el = r.nativeElement;
684
+ proxyOutputs(this, this.el, ['ratingChange']);
685
+ }
686
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcRating, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
687
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcRating, selector: "modus-wc-rating", inputs: { allowHalf: "allowHalf", count: "count", customClass: "customClass", disabled: "disabled", getAriaLabelText: "getAriaLabelText", size: "size", value: "value", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
688
+ };
689
+ ModusWcRating = __decorate([
690
+ ProxyCmp({
691
+ inputs: ['allowHalf', 'count', 'customClass', 'disabled', 'getAriaLabelText', 'size', 'value', 'variant']
692
+ })
693
+ ], ModusWcRating);
694
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcRating, decorators: [{
695
+ type: Component,
696
+ args: [{
697
+ selector: 'modus-wc-rating',
698
+ changeDetection: ChangeDetectionStrategy.OnPush,
699
+ template: '<ng-content></ng-content>',
700
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
701
+ inputs: ['allowHalf', 'count', 'customClass', 'disabled', 'getAriaLabelText', 'size', 'value', 'variant'],
702
+ }]
703
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
704
+ let ModusWcSelect = class ModusWcSelect {
705
+ constructor(c, r, z) {
706
+ this.z = z;
707
+ c.detach();
708
+ this.el = r.nativeElement;
709
+ proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
710
+ }
711
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
712
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcSelect, selector: "modus-wc-select", inputs: { bordered: "bordered", customClass: "customClass", disabled: "disabled", feedback: "feedback", inputId: "inputId", inputTabIndex: "inputTabIndex", label: "label", name: "name", options: "options", required: "required", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
713
+ };
714
+ ModusWcSelect = __decorate([
715
+ ProxyCmp({
716
+ inputs: ['bordered', 'customClass', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'name', 'options', 'required', 'size', 'value']
717
+ })
718
+ ], ModusWcSelect);
719
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSelect, decorators: [{
720
+ type: Component,
721
+ args: [{
722
+ selector: 'modus-wc-select',
723
+ changeDetection: ChangeDetectionStrategy.OnPush,
724
+ template: '<ng-content></ng-content>',
725
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
726
+ inputs: ['bordered', 'customClass', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'name', 'options', 'required', 'size', 'value'],
727
+ }]
728
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
729
+ let ModusWcSkeleton = class ModusWcSkeleton {
730
+ constructor(c, r, z) {
731
+ this.z = z;
732
+ c.detach();
733
+ this.el = r.nativeElement;
734
+ }
735
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSkeleton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
736
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcSkeleton, selector: "modus-wc-skeleton", inputs: { customClass: "customClass", height: "height", shape: "shape", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
737
+ };
738
+ ModusWcSkeleton = __decorate([
739
+ ProxyCmp({
740
+ inputs: ['customClass', 'height', 'shape', 'width']
741
+ })
742
+ ], ModusWcSkeleton);
743
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSkeleton, decorators: [{
744
+ type: Component,
745
+ args: [{
746
+ selector: 'modus-wc-skeleton',
747
+ changeDetection: ChangeDetectionStrategy.OnPush,
748
+ template: '<ng-content></ng-content>',
749
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
750
+ inputs: ['customClass', 'height', 'shape', 'width'],
751
+ }]
752
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
753
+ let ModusWcSlider = class ModusWcSlider {
754
+ constructor(c, r, z) {
755
+ this.z = z;
756
+ c.detach();
757
+ this.el = r.nativeElement;
758
+ proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
759
+ }
760
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
761
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcSlider, selector: "modus-wc-slider", inputs: { customClass: "customClass", disabled: "disabled", inputId: "inputId", inputTabIndex: "inputTabIndex", label: "label", max: "max", min: "min", name: "name", required: "required", size: "size", step: "step", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
762
+ };
763
+ ModusWcSlider = __decorate([
764
+ ProxyCmp({
765
+ inputs: ['customClass', 'disabled', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'required', 'size', 'step', 'value']
766
+ })
767
+ ], ModusWcSlider);
768
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcSlider, decorators: [{
769
+ type: Component,
770
+ args: [{
771
+ selector: 'modus-wc-slider',
772
+ changeDetection: ChangeDetectionStrategy.OnPush,
773
+ template: '<ng-content></ng-content>',
774
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
775
+ inputs: ['customClass', 'disabled', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'required', 'size', 'step', 'value'],
776
+ }]
777
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
778
+ let ModusWcStepper = class ModusWcStepper {
779
+ constructor(c, r, z) {
780
+ this.z = z;
781
+ c.detach();
782
+ this.el = r.nativeElement;
783
+ }
784
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcStepper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
785
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcStepper, selector: "modus-wc-stepper", inputs: { customClass: "customClass", orientation: "orientation", steps: "steps" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
786
+ };
787
+ ModusWcStepper = __decorate([
788
+ ProxyCmp({
789
+ inputs: ['customClass', 'orientation', 'steps']
790
+ })
791
+ ], ModusWcStepper);
792
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcStepper, decorators: [{
793
+ type: Component,
794
+ args: [{
795
+ selector: 'modus-wc-stepper',
796
+ changeDetection: ChangeDetectionStrategy.OnPush,
797
+ template: '<ng-content></ng-content>',
798
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
799
+ inputs: ['customClass', 'orientation', 'steps'],
800
+ }]
801
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
802
+ let ModusWcTable = class ModusWcTable {
803
+ constructor(c, r, z) {
804
+ this.z = z;
805
+ c.detach();
806
+ this.el = r.nativeElement;
807
+ proxyOutputs(this, this.el, ['rowClick']);
808
+ }
809
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
810
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTable, selector: "modus-wc-table", inputs: { columns: "columns", customClass: "customClass", data: "data", density: "density", zebra: "zebra" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
811
+ };
812
+ ModusWcTable = __decorate([
813
+ ProxyCmp({
814
+ inputs: ['columns', 'customClass', 'data', 'density', 'zebra']
815
+ })
816
+ ], ModusWcTable);
817
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTable, decorators: [{
818
+ type: Component,
819
+ args: [{
820
+ selector: 'modus-wc-table',
821
+ changeDetection: ChangeDetectionStrategy.OnPush,
822
+ template: '<ng-content></ng-content>',
823
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
824
+ inputs: ['columns', 'customClass', 'data', 'density', 'zebra'],
825
+ }]
826
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
827
+ let ModusWcTabs = class ModusWcTabs {
828
+ constructor(c, r, z) {
829
+ this.z = z;
830
+ c.detach();
831
+ this.el = r.nativeElement;
832
+ proxyOutputs(this, this.el, ['tabChange']);
833
+ }
834
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTabs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
835
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTabs, selector: "modus-wc-tabs", inputs: { activeTabIndex: "activeTabIndex", customClass: "customClass", size: "size", tabStyle: "tabStyle", tabs: "tabs" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
836
+ };
837
+ ModusWcTabs = __decorate([
838
+ ProxyCmp({
839
+ inputs: ['activeTabIndex', 'customClass', 'size', 'tabStyle', 'tabs']
840
+ })
841
+ ], ModusWcTabs);
842
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTabs, decorators: [{
843
+ type: Component,
844
+ args: [{
845
+ selector: 'modus-wc-tabs',
846
+ changeDetection: ChangeDetectionStrategy.OnPush,
847
+ template: '<ng-content></ng-content>',
848
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
849
+ inputs: ['activeTabIndex', 'customClass', 'size', 'tabStyle', 'tabs'],
850
+ }]
851
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
852
+ let ModusWcTextInput = class ModusWcTextInput {
853
+ constructor(c, r, z) {
854
+ this.z = z;
855
+ c.detach();
856
+ this.el = r.nativeElement;
857
+ proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
858
+ }
859
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTextInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
860
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTextInput, selector: "modus-wc-text-input", inputs: { autoCapitalize: "autoCapitalize", autoComplete: "autoComplete", autoCorrect: "autoCorrect", bordered: "bordered", clearAriaLabel: "clearAriaLabel", customClass: "customClass", disabled: "disabled", enterkeyhint: "enterkeyhint", feedback: "feedback", includeClear: "includeClear", includeSearch: "includeSearch", inputId: "inputId", inputMode: "inputMode", inputTabIndex: "inputTabIndex", label: "label", maxLength: "maxLength", minLength: "minLength", name: "name", pattern: "pattern", placeholder: "placeholder", readOnly: "readOnly", required: "required", size: "size", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
861
+ };
862
+ ModusWcTextInput = __decorate([
863
+ ProxyCmp({
864
+ inputs: ['autoCapitalize', 'autoComplete', 'autoCorrect', 'bordered', 'clearAriaLabel', 'customClass', 'disabled', 'enterkeyhint', 'feedback', 'includeClear', 'includeSearch', 'inputId', 'inputMode', 'inputTabIndex', 'label', 'maxLength', 'minLength', 'name', 'pattern', 'placeholder', 'readOnly', 'required', 'size', 'type', 'value']
865
+ })
866
+ ], ModusWcTextInput);
867
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTextInput, decorators: [{
868
+ type: Component,
869
+ args: [{
870
+ selector: 'modus-wc-text-input',
871
+ changeDetection: ChangeDetectionStrategy.OnPush,
872
+ template: '<ng-content></ng-content>',
873
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
874
+ inputs: ['autoCapitalize', 'autoComplete', 'autoCorrect', 'bordered', 'clearAriaLabel', 'customClass', 'disabled', 'enterkeyhint', 'feedback', 'includeClear', 'includeSearch', 'inputId', 'inputMode', 'inputTabIndex', 'label', 'maxLength', 'minLength', 'name', 'pattern', 'placeholder', 'readOnly', 'required', 'size', 'type', 'value'],
875
+ }]
876
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
877
+ let ModusWcTextarea = class ModusWcTextarea {
878
+ constructor(c, r, z) {
879
+ this.z = z;
880
+ c.detach();
881
+ this.el = r.nativeElement;
882
+ proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
883
+ }
884
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
885
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTextarea, selector: "modus-wc-textarea", inputs: { autoCorrect: "autoCorrect", bordered: "bordered", customClass: "customClass", disabled: "disabled", enterkeyhint: "enterkeyhint", feedback: "feedback", inputId: "inputId", inputTabIndex: "inputTabIndex", label: "label", maxLength: "maxLength", name: "name", placeholder: "placeholder", readonly: "readonly", required: "required", rows: "rows", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
886
+ };
887
+ ModusWcTextarea = __decorate([
888
+ ProxyCmp({
889
+ inputs: ['autoCorrect', 'bordered', 'customClass', 'disabled', 'enterkeyhint', 'feedback', 'inputId', 'inputTabIndex', 'label', 'maxLength', 'name', 'placeholder', 'readonly', 'required', 'rows', 'size', 'value']
890
+ })
891
+ ], ModusWcTextarea);
892
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTextarea, decorators: [{
893
+ type: Component,
894
+ args: [{
895
+ selector: 'modus-wc-textarea',
896
+ changeDetection: ChangeDetectionStrategy.OnPush,
897
+ template: '<ng-content></ng-content>',
898
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
899
+ inputs: ['autoCorrect', 'bordered', 'customClass', 'disabled', 'enterkeyhint', 'feedback', 'inputId', 'inputTabIndex', 'label', 'maxLength', 'name', 'placeholder', 'readonly', 'required', 'rows', 'size', 'value'],
900
+ }]
901
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
902
+ let ModusWcThemeProvider = class ModusWcThemeProvider {
903
+ constructor(c, r, z) {
904
+ this.z = z;
905
+ c.detach();
906
+ this.el = r.nativeElement;
907
+ }
908
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcThemeProvider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
909
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcThemeProvider, selector: "modus-wc-theme-provider", inputs: { initialTheme: "initialTheme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
910
+ };
911
+ ModusWcThemeProvider = __decorate([
912
+ ProxyCmp({
913
+ inputs: ['initialTheme']
914
+ })
915
+ ], ModusWcThemeProvider);
916
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcThemeProvider, decorators: [{
917
+ type: Component,
918
+ args: [{
919
+ selector: 'modus-wc-theme-provider',
920
+ changeDetection: ChangeDetectionStrategy.OnPush,
921
+ template: '<ng-content></ng-content>',
922
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
923
+ inputs: ['initialTheme'],
924
+ }]
925
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
926
+ let ModusWcThemeSwitcher = class ModusWcThemeSwitcher {
927
+ constructor(c, r, z) {
928
+ this.z = z;
929
+ c.detach();
930
+ this.el = r.nativeElement;
931
+ proxyOutputs(this, this.el, ['themeChange']);
932
+ }
933
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcThemeSwitcher, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
934
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcThemeSwitcher, selector: "modus-wc-theme-switcher", inputs: { customClass: "customClass" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
935
+ };
936
+ ModusWcThemeSwitcher = __decorate([
937
+ ProxyCmp({
938
+ inputs: ['customClass']
939
+ })
940
+ ], ModusWcThemeSwitcher);
941
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcThemeSwitcher, decorators: [{
942
+ type: Component,
943
+ args: [{
944
+ selector: 'modus-wc-theme-switcher',
945
+ changeDetection: ChangeDetectionStrategy.OnPush,
946
+ template: '<ng-content></ng-content>',
947
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
948
+ inputs: ['customClass'],
949
+ }]
950
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
951
+ let ModusWcTimeInput = class ModusWcTimeInput {
952
+ constructor(c, r, z) {
953
+ this.z = z;
954
+ c.detach();
955
+ this.el = r.nativeElement;
956
+ proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
957
+ }
958
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTimeInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
959
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTimeInput, selector: "modus-wc-time-input", inputs: { autoComplete: "autoComplete", bordered: "bordered", customClass: "customClass", datalistId: "datalistId", datalistOptions: "datalistOptions", disabled: "disabled", feedback: "feedback", inputId: "inputId", inputTabIndex: "inputTabIndex", label: "label", max: "max", min: "min", name: "name", readOnly: "readOnly", required: "required", showSeconds: "showSeconds", size: "size", step: "step", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
960
+ };
961
+ ModusWcTimeInput = __decorate([
962
+ ProxyCmp({
963
+ inputs: ['autoComplete', 'bordered', 'customClass', 'datalistId', 'datalistOptions', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'readOnly', 'required', 'showSeconds', 'size', 'step', 'value']
964
+ })
965
+ ], ModusWcTimeInput);
966
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTimeInput, decorators: [{
967
+ type: Component,
968
+ args: [{
969
+ selector: 'modus-wc-time-input',
970
+ changeDetection: ChangeDetectionStrategy.OnPush,
971
+ template: '<ng-content></ng-content>',
972
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
973
+ inputs: ['autoComplete', 'bordered', 'customClass', 'datalistId', 'datalistOptions', 'disabled', 'feedback', 'inputId', 'inputTabIndex', 'label', 'max', 'min', 'name', 'readOnly', 'required', 'showSeconds', 'size', 'step', 'value'],
974
+ }]
975
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
976
+ let ModusWcToast = class ModusWcToast {
977
+ constructor(c, r, z) {
978
+ this.z = z;
979
+ c.detach();
980
+ this.el = r.nativeElement;
981
+ }
982
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
983
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcToast, selector: "modus-wc-toast", inputs: { customClass: "customClass", position: "position" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
984
+ };
985
+ ModusWcToast = __decorate([
986
+ ProxyCmp({
987
+ inputs: ['customClass', 'position']
988
+ })
989
+ ], ModusWcToast);
990
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcToast, decorators: [{
991
+ type: Component,
992
+ args: [{
993
+ selector: 'modus-wc-toast',
994
+ changeDetection: ChangeDetectionStrategy.OnPush,
995
+ template: '<ng-content></ng-content>',
996
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
997
+ inputs: ['customClass', 'position'],
998
+ }]
999
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1000
+ let ModusWcToggle = class ModusWcToggle {
1001
+ constructor(c, r, z) {
1002
+ this.z = z;
1003
+ c.detach();
1004
+ this.el = r.nativeElement;
1005
+ proxyOutputs(this, this.el, ['inputBlur', 'inputChange', 'inputFocus']);
1006
+ }
1007
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1008
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcToggle, selector: "modus-wc-toggle", inputs: { customClass: "customClass", disabled: "disabled", indeterminate: "indeterminate", inputId: "inputId", inputTabIndex: "inputTabIndex", label: "label", name: "name", required: "required", size: "size", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1009
+ };
1010
+ ModusWcToggle = __decorate([
1011
+ ProxyCmp({
1012
+ inputs: ['customClass', 'disabled', 'indeterminate', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value']
1013
+ })
1014
+ ], ModusWcToggle);
1015
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcToggle, decorators: [{
1016
+ type: Component,
1017
+ args: [{
1018
+ selector: 'modus-wc-toggle',
1019
+ changeDetection: ChangeDetectionStrategy.OnPush,
1020
+ template: '<ng-content></ng-content>',
1021
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1022
+ inputs: ['customClass', 'disabled', 'indeterminate', 'inputId', 'inputTabIndex', 'label', 'name', 'required', 'size', 'value'],
1023
+ }]
1024
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1025
+ let ModusWcToolbar = class ModusWcToolbar {
1026
+ constructor(c, r, z) {
1027
+ this.z = z;
1028
+ c.detach();
1029
+ this.el = r.nativeElement;
1030
+ }
1031
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcToolbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1032
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcToolbar, selector: "modus-wc-toolbar", inputs: { customClass: "customClass" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1033
+ };
1034
+ ModusWcToolbar = __decorate([
1035
+ ProxyCmp({
1036
+ inputs: ['customClass']
1037
+ })
1038
+ ], ModusWcToolbar);
1039
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcToolbar, decorators: [{
1040
+ type: Component,
1041
+ args: [{
1042
+ selector: 'modus-wc-toolbar',
1043
+ changeDetection: ChangeDetectionStrategy.OnPush,
1044
+ template: '<ng-content></ng-content>',
1045
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1046
+ inputs: ['customClass'],
1047
+ }]
1048
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1049
+ let ModusWcTooltip = class ModusWcTooltip {
1050
+ constructor(c, r, z) {
1051
+ this.z = z;
1052
+ c.detach();
1053
+ this.el = r.nativeElement;
1054
+ }
1055
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1056
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTooltip, selector: "modus-wc-tooltip", inputs: { content: "content", customClass: "customClass", disabled: "disabled", forceOpen: "forceOpen", position: "position", tooltipId: "tooltipId" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1057
+ };
1058
+ ModusWcTooltip = __decorate([
1059
+ ProxyCmp({
1060
+ inputs: ['content', 'customClass', 'disabled', 'forceOpen', 'position', 'tooltipId']
1061
+ })
1062
+ ], ModusWcTooltip);
1063
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTooltip, decorators: [{
1064
+ type: Component,
1065
+ args: [{
1066
+ selector: 'modus-wc-tooltip',
1067
+ changeDetection: ChangeDetectionStrategy.OnPush,
1068
+ template: '<ng-content></ng-content>',
1069
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1070
+ inputs: ['content', 'customClass', 'disabled', 'forceOpen', 'position', 'tooltipId'],
1071
+ }]
1072
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1073
+ let ModusWcTypography = class ModusWcTypography {
1074
+ constructor(c, r, z) {
1075
+ this.z = z;
1076
+ c.detach();
1077
+ this.el = r.nativeElement;
1078
+ }
1079
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTypography, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1080
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: ModusWcTypography, selector: "modus-wc-typography", inputs: { customClass: "customClass", size: "size", variant: "variant", weight: "weight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1081
+ };
1082
+ ModusWcTypography = __decorate([
1083
+ ProxyCmp({
1084
+ inputs: ['customClass', 'size', 'variant', 'weight']
1085
+ })
1086
+ ], ModusWcTypography);
1087
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusWcTypography, decorators: [{
1088
+ type: Component,
1089
+ args: [{
1090
+ selector: 'modus-wc-typography',
1091
+ changeDetection: ChangeDetectionStrategy.OnPush,
1092
+ template: '<ng-content></ng-content>',
1093
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1094
+ inputs: ['customClass', 'size', 'variant', 'weight'],
1095
+ }]
1096
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1097
+
1098
+ const DIRECTIVES = [
1099
+ ModusWcAccordion,
1100
+ ModusWcAlert,
1101
+ ModusWcAutocomplete,
1102
+ ModusWcAvatar,
1103
+ ModusWcBadge,
1104
+ ModusWcBreadcrumbs,
1105
+ ModusWcButton,
1106
+ ModusWcCard,
1107
+ ModusWcCheckbox,
1108
+ ModusWcChip,
1109
+ ModusWcCollapse,
1110
+ ModusWcDate,
1111
+ ModusWcDivider,
1112
+ ModusWcIcon,
1113
+ ModusWcInputFeedback,
1114
+ ModusWcInputLabel,
1115
+ ModusWcLoader,
1116
+ ModusWcMenu,
1117
+ ModusWcMenuItem,
1118
+ ModusWcModal,
1119
+ ModusWcNavbar,
1120
+ ModusWcNumberInput,
1121
+ ModusWcPagination,
1122
+ ModusWcProgress,
1123
+ ModusWcRadio,
1124
+ ModusWcRating,
1125
+ ModusWcSelect,
1126
+ ModusWcSkeleton,
1127
+ ModusWcSlider,
1128
+ ModusWcStepper,
1129
+ ModusWcTable,
1130
+ ModusWcTabs,
1131
+ ModusWcTextInput,
1132
+ ModusWcTextarea,
1133
+ ModusWcThemeProvider,
1134
+ ModusWcThemeSwitcher,
1135
+ ModusWcTimeInput,
1136
+ ModusWcToast,
1137
+ ModusWcToggle,
1138
+ ModusWcToolbar,
1139
+ ModusWcTooltip,
1140
+ ModusWcTypography
1141
+ ];
1142
+
1143
+ class ModusAngularComponentsModule {
1144
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusAngularComponentsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
1145
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.12", ngImport: i0, type: ModusAngularComponentsModule, declarations: [ModusWcAccordion, ModusWcAlert, ModusWcAutocomplete, ModusWcAvatar, ModusWcBadge, ModusWcBreadcrumbs, ModusWcButton, ModusWcCard, ModusWcCheckbox, ModusWcChip, ModusWcCollapse, ModusWcDate, ModusWcDivider, ModusWcIcon, ModusWcInputFeedback, ModusWcInputLabel, ModusWcLoader, ModusWcMenu, ModusWcMenuItem, ModusWcModal, ModusWcNavbar, ModusWcNumberInput, ModusWcPagination, ModusWcProgress, ModusWcRadio, ModusWcRating, ModusWcSelect, ModusWcSkeleton, ModusWcSlider, ModusWcStepper, ModusWcTable, ModusWcTabs, ModusWcTextInput, ModusWcTextarea, ModusWcThemeProvider, ModusWcThemeSwitcher, ModusWcTimeInput, ModusWcToast, ModusWcToggle, ModusWcToolbar, ModusWcTooltip, ModusWcTypography], exports: [ModusWcAccordion, ModusWcAlert, ModusWcAutocomplete, ModusWcAvatar, ModusWcBadge, ModusWcBreadcrumbs, ModusWcButton, ModusWcCard, ModusWcCheckbox, ModusWcChip, ModusWcCollapse, ModusWcDate, ModusWcDivider, ModusWcIcon, ModusWcInputFeedback, ModusWcInputLabel, ModusWcLoader, ModusWcMenu, ModusWcMenuItem, ModusWcModal, ModusWcNavbar, ModusWcNumberInput, ModusWcPagination, ModusWcProgress, ModusWcRadio, ModusWcRating, ModusWcSelect, ModusWcSkeleton, ModusWcSlider, ModusWcStepper, ModusWcTable, ModusWcTabs, ModusWcTextInput, ModusWcTextarea, ModusWcThemeProvider, ModusWcThemeSwitcher, ModusWcTimeInput, ModusWcToast, ModusWcToggle, ModusWcToolbar, ModusWcTooltip, ModusWcTypography] }); }
1146
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusAngularComponentsModule, providers: [
1147
+ {
1148
+ provide: APP_INITIALIZER,
1149
+ useFactory: () => defineCustomElements,
1150
+ multi: true,
1151
+ },
1152
+ ] }); }
1153
+ }
1154
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ModusAngularComponentsModule, decorators: [{
1155
+ type: NgModule,
1156
+ args: [{
1157
+ declarations: [...DIRECTIVES],
1158
+ imports: [],
1159
+ exports: [...DIRECTIVES],
1160
+ providers: [
1161
+ {
1162
+ provide: APP_INITIALIZER,
1163
+ useFactory: () => defineCustomElements,
1164
+ multi: true,
1165
+ },
1166
+ ],
1167
+ }]
1168
+ }] });
1169
+
1170
+ /*
1171
+ * Public API Surface of modus-wc-angular
1172
+ */
1173
+
1174
+ /**
1175
+ * Generated bundle index. Do not edit.
1176
+ */
1177
+
1178
+ export { DIRECTIVES, ModusAngularComponentsModule, ModusWcAccordion, ModusWcAlert, ModusWcAutocomplete, ModusWcAvatar, ModusWcBadge, ModusWcBreadcrumbs, ModusWcButton, ModusWcCard, ModusWcCheckbox, ModusWcChip, ModusWcCollapse, ModusWcDate, ModusWcDivider, ModusWcIcon, ModusWcInputFeedback, ModusWcInputLabel, ModusWcLoader, ModusWcMenu, ModusWcMenuItem, ModusWcModal, ModusWcNavbar, ModusWcNumberInput, ModusWcPagination, ModusWcProgress, ModusWcRadio, ModusWcRating, ModusWcSelect, ModusWcSkeleton, ModusWcSlider, ModusWcStepper, ModusWcTable, ModusWcTabs, ModusWcTextInput, ModusWcTextarea, ModusWcThemeProvider, ModusWcThemeSwitcher, ModusWcTimeInput, ModusWcToast, ModusWcToggle, ModusWcToolbar, ModusWcTooltip, ModusWcTypography };
1179
+ //# sourceMappingURL=trimble-oss-moduswebcomponents-angular.mjs.map