@desynth/web-components-angular 1.28.26-alpha.1

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,999 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Component, ChangeDetectionStrategy, NgModule } from '@angular/core';
3
+ import { __decorate } from 'tslib';
4
+ import { fromEvent } from 'rxjs';
5
+ import { defineCustomElement as defineCustomElement$1 } from '@desynth/web-components/dist/desynth-accordion.js';
6
+ import { defineCustomElement as defineCustomElement$2 } from '@desynth/web-components/dist/desynth-alert.js';
7
+ import { defineCustomElement as defineCustomElement$3 } from '@desynth/web-components/dist/desynth-breadcrumb.js';
8
+ import { defineCustomElement as defineCustomElement$4 } from '@desynth/web-components/dist/desynth-button.js';
9
+ import { defineCustomElement as defineCustomElement$5 } from '@desynth/web-components/dist/desynth-button-slider.js';
10
+ import { defineCustomElement as defineCustomElement$6 } from '@desynth/web-components/dist/desynth-card.js';
11
+ import { defineCustomElement as defineCustomElement$7 } from '@desynth/web-components/dist/desynth-checkbox.js';
12
+ import { defineCustomElement as defineCustomElement$8 } from '@desynth/web-components/dist/desynth-date-picker.js';
13
+ import { defineCustomElement as defineCustomElement$9 } from '@desynth/web-components/dist/desynth-divider.js';
14
+ import { defineCustomElement as defineCustomElement$a } from '@desynth/web-components/dist/desynth-drawer.js';
15
+ import { defineCustomElement as defineCustomElement$b } from '@desynth/web-components/dist/desynth-drop-file.js';
16
+ import { defineCustomElement as defineCustomElement$c } from '@desynth/web-components/dist/desynth-dropdown.js';
17
+ import { defineCustomElement as defineCustomElement$d } from '@desynth/web-components/dist/desynth-form.js';
18
+ import { defineCustomElement as defineCustomElement$e } from '@desynth/web-components/dist/desynth-grid.js';
19
+ import { defineCustomElement as defineCustomElement$f } from '@desynth/web-components/dist/desynth-header.js';
20
+ import { defineCustomElement as defineCustomElement$g } from '@desynth/web-components/dist/desynth-list.js';
21
+ import { defineCustomElement as defineCustomElement$h } from '@desynth/web-components/dist/desynth-loader.js';
22
+ import { defineCustomElement as defineCustomElement$i } from '@desynth/web-components/dist/desynth-modal.js';
23
+ import { defineCustomElement as defineCustomElement$j } from '@desynth/web-components/dist/desynth-multi-stepper.js';
24
+ import { defineCustomElement as defineCustomElement$k } from '@desynth/web-components/dist/desynth-paper.js';
25
+ import { defineCustomElement as defineCustomElement$l } from '@desynth/web-components/dist/desynth-rating.js';
26
+ import { defineCustomElement as defineCustomElement$m } from '@desynth/web-components/dist/desynth-renderer.js';
27
+ import { defineCustomElement as defineCustomElement$n } from '@desynth/web-components/dist/desynth-select.js';
28
+ import { defineCustomElement as defineCustomElement$o } from '@desynth/web-components/dist/desynth-step-stepper.js';
29
+ import { defineCustomElement as defineCustomElement$p } from '@desynth/web-components/dist/desynth-switch.js';
30
+ import { defineCustomElement as defineCustomElement$q } from '@desynth/web-components/dist/desynth-table.js';
31
+ import { defineCustomElement as defineCustomElement$r } from '@desynth/web-components/dist/desynth-text.js';
32
+ import { defineCustomElement as defineCustomElement$s } from '@desynth/web-components/dist/desynth-text-area.js';
33
+ import { defineCustomElement as defineCustomElement$t } from '@desynth/web-components/dist/desynth-text-input.js';
34
+ import { defineCustomElement as defineCustomElement$u } from '@desynth/web-components/dist/desynth-tooltip.js';
35
+ import { defineCustomElement as defineCustomElement$v } from '@desynth/web-components/dist/horizontal-cards.js';
36
+ import { defineCustomElement as defineCustomElement$w } from '@desynth/web-components/dist/html-editor.js';
37
+
38
+ /* eslint-disable */
39
+ /* tslint:disable */
40
+ const proxyInputs = (Cmp, inputs) => {
41
+ const Prototype = Cmp.prototype;
42
+ inputs.forEach((item) => {
43
+ Object.defineProperty(Prototype, item, {
44
+ get() {
45
+ return this.el[item];
46
+ },
47
+ set(val) {
48
+ this.z.runOutsideAngular(() => (this.el[item] = val));
49
+ },
50
+ /**
51
+ * In the event that proxyInputs is called
52
+ * multiple times re-defining these inputs
53
+ * will cause an error to be thrown. As a result
54
+ * we set configurable: true to indicate these
55
+ * properties can be changed.
56
+ */
57
+ configurable: true,
58
+ });
59
+ });
60
+ };
61
+ const proxyMethods = (Cmp, methods) => {
62
+ const Prototype = Cmp.prototype;
63
+ methods.forEach((methodName) => {
64
+ Prototype[methodName] = function () {
65
+ const args = arguments;
66
+ return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
67
+ };
68
+ });
69
+ };
70
+ const proxyOutputs = (instance, el, events) => {
71
+ events.forEach((eventName) => (instance[eventName] = fromEvent(el, eventName)));
72
+ };
73
+ const defineCustomElement = (tagName, customElement) => {
74
+ if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {
75
+ customElements.define(tagName, customElement);
76
+ }
77
+ };
78
+ // tslint:disable-next-line: only-arrow-functions
79
+ function ProxyCmp(opts) {
80
+ const decorator = function (cls) {
81
+ const { defineCustomElementFn, inputs, methods } = opts;
82
+ if (defineCustomElementFn !== undefined) {
83
+ defineCustomElementFn();
84
+ }
85
+ if (inputs) {
86
+ proxyInputs(cls, inputs);
87
+ }
88
+ if (methods) {
89
+ proxyMethods(cls, methods);
90
+ }
91
+ return cls;
92
+ };
93
+ return decorator;
94
+ }
95
+
96
+ let DesynthAccordion = class DesynthAccordion {
97
+ constructor(c, r, z) {
98
+ this.z = z;
99
+ c.detach();
100
+ this.el = r.nativeElement;
101
+ }
102
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
103
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: DesynthAccordion, isStandalone: true, selector: "desynth-accordion", inputs: { summaryText: "summaryText", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
104
+ };
105
+ DesynthAccordion = __decorate([
106
+ ProxyCmp({
107
+ defineCustomElementFn: defineCustomElement$1,
108
+ inputs: ['summaryText', 'type']
109
+ })
110
+ ], DesynthAccordion);
111
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthAccordion, decorators: [{
112
+ type: Component,
113
+ args: [{
114
+ selector: 'desynth-accordion',
115
+ changeDetection: ChangeDetectionStrategy.OnPush,
116
+ template: '<ng-content></ng-content>',
117
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
118
+ inputs: ['summaryText', 'type'],
119
+ standalone: true
120
+ }]
121
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
122
+ let DesynthAlert = class DesynthAlert {
123
+ constructor(c, r, z) {
124
+ this.z = z;
125
+ c.detach();
126
+ this.el = r.nativeElement;
127
+ proxyOutputs(this, this.el, ['handleOpen', 'handleClose', 'handleBeforeClose']);
128
+ }
129
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthAlert, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
130
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: DesynthAlert, isStandalone: true, selector: "desynth-alert", inputs: { alertId: "alertId", alertText: "alertText", alertType: "alertType", duration: "duration", opened: "opened" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
131
+ };
132
+ DesynthAlert = __decorate([
133
+ ProxyCmp({
134
+ defineCustomElementFn: defineCustomElement$2,
135
+ inputs: ['alertId', 'alertText', 'alertType', 'duration', 'opened']
136
+ })
137
+ ], DesynthAlert);
138
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthAlert, decorators: [{
139
+ type: Component,
140
+ args: [{
141
+ selector: 'desynth-alert',
142
+ changeDetection: ChangeDetectionStrategy.OnPush,
143
+ template: '<ng-content></ng-content>',
144
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
145
+ inputs: ['alertId', 'alertText', 'alertType', 'duration', 'opened'],
146
+ standalone: true
147
+ }]
148
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
149
+ let DesynthBreadcrumb = class DesynthBreadcrumb {
150
+ constructor(c, r, z) {
151
+ this.z = z;
152
+ c.detach();
153
+ this.el = r.nativeElement;
154
+ proxyOutputs(this, this.el, ['handleInput', 'handleFocus', 'handleBlur']);
155
+ }
156
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
157
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: DesynthBreadcrumb, isStandalone: true, selector: "desynth-breadcrumb", inputs: { breadcrumbs: "breadcrumbs", route: "route" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
158
+ };
159
+ DesynthBreadcrumb = __decorate([
160
+ ProxyCmp({
161
+ defineCustomElementFn: defineCustomElement$3,
162
+ inputs: ['breadcrumbs', 'route']
163
+ })
164
+ ], DesynthBreadcrumb);
165
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthBreadcrumb, decorators: [{
166
+ type: Component,
167
+ args: [{
168
+ selector: 'desynth-breadcrumb',
169
+ changeDetection: ChangeDetectionStrategy.OnPush,
170
+ template: '<ng-content></ng-content>',
171
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
172
+ inputs: ['breadcrumbs', 'route'],
173
+ standalone: true
174
+ }]
175
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
176
+ let DesynthButton = class DesynthButton {
177
+ constructor(c, r, z) {
178
+ this.z = z;
179
+ c.detach();
180
+ this.el = r.nativeElement;
181
+ proxyOutputs(this, this.el, ['handleClick', 'handleFocus', 'handleBlur']);
182
+ }
183
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
184
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: DesynthButton, isStandalone: true, selector: "desynth-button", inputs: { buttonId: "buttonId", buttonText: "buttonText", circular: "circular", disabled: "disabled", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
185
+ };
186
+ DesynthButton = __decorate([
187
+ ProxyCmp({
188
+ defineCustomElementFn: defineCustomElement$4,
189
+ inputs: ['buttonId', 'buttonText', 'circular', 'disabled', 'type', 'variant']
190
+ })
191
+ ], DesynthButton);
192
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthButton, decorators: [{
193
+ type: Component,
194
+ args: [{
195
+ selector: 'desynth-button',
196
+ changeDetection: ChangeDetectionStrategy.OnPush,
197
+ template: '<ng-content></ng-content>',
198
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
199
+ inputs: ['buttonId', 'buttonText', 'circular', 'disabled', 'type', 'variant'],
200
+ standalone: true
201
+ }]
202
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
203
+ let DesynthButtonSlider = class DesynthButtonSlider {
204
+ constructor(c, r, z) {
205
+ this.z = z;
206
+ c.detach();
207
+ this.el = r.nativeElement;
208
+ }
209
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthButtonSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
210
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: DesynthButtonSlider, isStandalone: true, selector: "desynth-button-slider", inputs: { buttons: "buttons" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
211
+ };
212
+ DesynthButtonSlider = __decorate([
213
+ ProxyCmp({
214
+ defineCustomElementFn: defineCustomElement$5,
215
+ inputs: ['buttons']
216
+ })
217
+ ], DesynthButtonSlider);
218
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthButtonSlider, decorators: [{
219
+ type: Component,
220
+ args: [{
221
+ selector: 'desynth-button-slider',
222
+ changeDetection: ChangeDetectionStrategy.OnPush,
223
+ template: '<ng-content></ng-content>',
224
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
225
+ inputs: ['buttons'],
226
+ standalone: true
227
+ }]
228
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
229
+ let DesynthCard = class DesynthCard {
230
+ constructor(c, r, z) {
231
+ this.z = z;
232
+ c.detach();
233
+ this.el = r.nativeElement;
234
+ }
235
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
236
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: DesynthCard, isStandalone: true, selector: "desynth-card", inputs: { cardSize: "cardSize" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
237
+ };
238
+ DesynthCard = __decorate([
239
+ ProxyCmp({
240
+ defineCustomElementFn: defineCustomElement$6,
241
+ inputs: ['cardSize']
242
+ })
243
+ ], DesynthCard);
244
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthCard, decorators: [{
245
+ type: Component,
246
+ args: [{
247
+ selector: 'desynth-card',
248
+ changeDetection: ChangeDetectionStrategy.OnPush,
249
+ template: '<ng-content></ng-content>',
250
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
251
+ inputs: ['cardSize'],
252
+ standalone: true
253
+ }]
254
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
255
+ let DesynthCheckbox = class DesynthCheckbox {
256
+ constructor(c, r, z) {
257
+ this.z = z;
258
+ c.detach();
259
+ this.el = r.nativeElement;
260
+ proxyOutputs(this, this.el, ['handleClick']);
261
+ }
262
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
263
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: DesynthCheckbox, isStandalone: true, selector: "desynth-checkbox", inputs: { checkboxId: "checkboxId", checkboxLabel: "checkboxLabel", errorMessage: "errorMessage", isChecked: "isChecked" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
264
+ };
265
+ DesynthCheckbox = __decorate([
266
+ ProxyCmp({
267
+ defineCustomElementFn: defineCustomElement$7,
268
+ inputs: ['checkboxId', 'checkboxLabel', 'errorMessage', 'isChecked']
269
+ })
270
+ ], DesynthCheckbox);
271
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthCheckbox, decorators: [{
272
+ type: Component,
273
+ args: [{
274
+ selector: 'desynth-checkbox',
275
+ changeDetection: ChangeDetectionStrategy.OnPush,
276
+ template: '<ng-content></ng-content>',
277
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
278
+ inputs: ['checkboxId', 'checkboxLabel', 'errorMessage', 'isChecked'],
279
+ standalone: true
280
+ }]
281
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
282
+ let DesynthDatePicker = class DesynthDatePicker {
283
+ constructor(c, r, z) {
284
+ this.z = z;
285
+ c.detach();
286
+ this.el = r.nativeElement;
287
+ proxyOutputs(this, this.el, ['dateChanged']);
288
+ }
289
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthDatePicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
290
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: DesynthDatePicker, isStandalone: true, selector: "desynth-date-picker", inputs: { dateSelected: "dateSelected", firstDayOfWeek: "firstDayOfWeek", inputName: "inputName" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
291
+ };
292
+ DesynthDatePicker = __decorate([
293
+ ProxyCmp({
294
+ defineCustomElementFn: defineCustomElement$8,
295
+ inputs: ['dateSelected', 'firstDayOfWeek', 'inputName']
296
+ })
297
+ ], DesynthDatePicker);
298
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthDatePicker, decorators: [{
299
+ type: Component,
300
+ args: [{
301
+ selector: 'desynth-date-picker',
302
+ changeDetection: ChangeDetectionStrategy.OnPush,
303
+ template: '<ng-content></ng-content>',
304
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
305
+ inputs: ['dateSelected', 'firstDayOfWeek', 'inputName'],
306
+ standalone: true
307
+ }]
308
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
309
+ let DesynthDivider = class DesynthDivider {
310
+ constructor(c, r, z) {
311
+ this.z = z;
312
+ c.detach();
313
+ this.el = r.nativeElement;
314
+ }
315
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
316
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: DesynthDivider, isStandalone: true, selector: "desynth-divider", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
317
+ };
318
+ DesynthDivider = __decorate([
319
+ ProxyCmp({
320
+ defineCustomElementFn: defineCustomElement$9
321
+ })
322
+ ], DesynthDivider);
323
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthDivider, decorators: [{
324
+ type: Component,
325
+ args: [{
326
+ selector: 'desynth-divider',
327
+ changeDetection: ChangeDetectionStrategy.OnPush,
328
+ template: '<ng-content></ng-content>',
329
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
330
+ inputs: [],
331
+ standalone: true
332
+ }]
333
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
334
+ let DesynthDrawer = class DesynthDrawer {
335
+ constructor(c, r, z) {
336
+ this.z = z;
337
+ c.detach();
338
+ this.el = r.nativeElement;
339
+ proxyOutputs(this, this.el, ['handleClick', 'handleFocus', 'handleClose']);
340
+ }
341
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthDrawer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
342
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: DesynthDrawer, isStandalone: true, selector: "desynth-drawer", inputs: { items: "items", open: "open", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
343
+ };
344
+ DesynthDrawer = __decorate([
345
+ ProxyCmp({
346
+ defineCustomElementFn: defineCustomElement$a,
347
+ inputs: ['items', 'open', 'type']
348
+ })
349
+ ], DesynthDrawer);
350
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthDrawer, decorators: [{
351
+ type: Component,
352
+ args: [{
353
+ selector: 'desynth-drawer',
354
+ changeDetection: ChangeDetectionStrategy.OnPush,
355
+ template: '<ng-content></ng-content>',
356
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
357
+ inputs: ['items', 'open', 'type'],
358
+ standalone: true
359
+ }]
360
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
361
+ let DesynthDropFile = class DesynthDropFile {
362
+ constructor(c, r, z) {
363
+ this.z = z;
364
+ c.detach();
365
+ this.el = r.nativeElement;
366
+ proxyOutputs(this, this.el, ['filesDropped']);
367
+ }
368
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthDropFile, 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: "19.0.5", type: DesynthDropFile, isStandalone: true, selector: "desynth-drop-file", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
370
+ };
371
+ DesynthDropFile = __decorate([
372
+ ProxyCmp({
373
+ defineCustomElementFn: defineCustomElement$b
374
+ })
375
+ ], DesynthDropFile);
376
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthDropFile, decorators: [{
377
+ type: Component,
378
+ args: [{
379
+ selector: 'desynth-drop-file',
380
+ changeDetection: ChangeDetectionStrategy.OnPush,
381
+ template: '<ng-content></ng-content>',
382
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
383
+ inputs: [],
384
+ standalone: true
385
+ }]
386
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
387
+ let DesynthDropdown = class DesynthDropdown {
388
+ constructor(c, r, z) {
389
+ this.z = z;
390
+ c.detach();
391
+ this.el = r.nativeElement;
392
+ }
393
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
394
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: DesynthDropdown, isStandalone: true, selector: "desynth-dropdown", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
395
+ };
396
+ DesynthDropdown = __decorate([
397
+ ProxyCmp({
398
+ defineCustomElementFn: defineCustomElement$c
399
+ })
400
+ ], DesynthDropdown);
401
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthDropdown, decorators: [{
402
+ type: Component,
403
+ args: [{
404
+ selector: 'desynth-dropdown',
405
+ changeDetection: ChangeDetectionStrategy.OnPush,
406
+ template: '<ng-content></ng-content>',
407
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
408
+ inputs: [],
409
+ standalone: true
410
+ }]
411
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
412
+ let DesynthForm = class DesynthForm {
413
+ constructor(c, r, z) {
414
+ this.z = z;
415
+ c.detach();
416
+ this.el = r.nativeElement;
417
+ proxyOutputs(this, this.el, ['clickSubmit', 'clickClear', 'handleChange']);
418
+ }
419
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthForm, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
420
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: DesynthForm, isStandalone: true, selector: "desynth-form", inputs: { hasSubmitButton: "hasSubmitButton", inputs: "inputs" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
421
+ };
422
+ DesynthForm = __decorate([
423
+ ProxyCmp({
424
+ defineCustomElementFn: defineCustomElement$d,
425
+ inputs: ['hasSubmitButton', 'inputs']
426
+ })
427
+ ], DesynthForm);
428
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthForm, decorators: [{
429
+ type: Component,
430
+ args: [{
431
+ selector: 'desynth-form',
432
+ changeDetection: ChangeDetectionStrategy.OnPush,
433
+ template: '<ng-content></ng-content>',
434
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
435
+ inputs: ['hasSubmitButton', 'inputs'],
436
+ standalone: true
437
+ }]
438
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
439
+ let DesynthGrid = class DesynthGrid {
440
+ constructor(c, r, z) {
441
+ this.z = z;
442
+ c.detach();
443
+ this.el = r.nativeElement;
444
+ }
445
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
446
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: DesynthGrid, isStandalone: true, selector: "desynth-grid", inputs: { columnSpacing: "columnSpacing", columns: "columns", container: "container", direction: "direction", item: "item", lg: "lg", md: "md", rowSpacing: "rowSpacing", sm: "sm", spacing: "spacing", wrap: "wrap", xl: "xl", xs: "xs", zeroMinWidth: "zeroMinWidth" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
447
+ };
448
+ DesynthGrid = __decorate([
449
+ ProxyCmp({
450
+ defineCustomElementFn: defineCustomElement$e,
451
+ inputs: ['columnSpacing', 'columns', 'container', 'direction', 'item', 'lg', 'md', 'rowSpacing', 'sm', 'spacing', 'wrap', 'xl', 'xs', 'zeroMinWidth']
452
+ })
453
+ ], DesynthGrid);
454
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthGrid, decorators: [{
455
+ type: Component,
456
+ args: [{
457
+ selector: 'desynth-grid',
458
+ changeDetection: ChangeDetectionStrategy.OnPush,
459
+ template: '<ng-content></ng-content>',
460
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
461
+ inputs: ['columnSpacing', 'columns', 'container', 'direction', 'item', 'lg', 'md', 'rowSpacing', 'sm', 'spacing', 'wrap', 'xl', 'xs', 'zeroMinWidth'],
462
+ standalone: true
463
+ }]
464
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
465
+ let DesynthHeader = class DesynthHeader {
466
+ constructor(c, r, z) {
467
+ this.z = z;
468
+ c.detach();
469
+ this.el = r.nativeElement;
470
+ }
471
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
472
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: DesynthHeader, isStandalone: true, selector: "desynth-header", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
473
+ };
474
+ DesynthHeader = __decorate([
475
+ ProxyCmp({
476
+ defineCustomElementFn: defineCustomElement$f
477
+ })
478
+ ], DesynthHeader);
479
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthHeader, decorators: [{
480
+ type: Component,
481
+ args: [{
482
+ selector: 'desynth-header',
483
+ changeDetection: ChangeDetectionStrategy.OnPush,
484
+ template: '<ng-content></ng-content>',
485
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
486
+ inputs: [],
487
+ standalone: true
488
+ }]
489
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
490
+ let DesynthList = class DesynthList {
491
+ constructor(c, r, z) {
492
+ this.z = z;
493
+ c.detach();
494
+ this.el = r.nativeElement;
495
+ proxyOutputs(this, this.el, ['itemClicked']);
496
+ }
497
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
498
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: DesynthList, isStandalone: true, selector: "desynth-list", inputs: { items: "items" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
499
+ };
500
+ DesynthList = __decorate([
501
+ ProxyCmp({
502
+ defineCustomElementFn: defineCustomElement$g,
503
+ inputs: ['items']
504
+ })
505
+ ], DesynthList);
506
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthList, decorators: [{
507
+ type: Component,
508
+ args: [{
509
+ selector: 'desynth-list',
510
+ changeDetection: ChangeDetectionStrategy.OnPush,
511
+ template: '<ng-content></ng-content>',
512
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
513
+ inputs: ['items'],
514
+ standalone: true
515
+ }]
516
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
517
+ let DesynthLoader = class DesynthLoader {
518
+ constructor(c, r, z) {
519
+ this.z = z;
520
+ c.detach();
521
+ this.el = r.nativeElement;
522
+ }
523
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthLoader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
524
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: DesynthLoader, isStandalone: true, selector: "desynth-loader", inputs: { message: "message" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
525
+ };
526
+ DesynthLoader = __decorate([
527
+ ProxyCmp({
528
+ defineCustomElementFn: defineCustomElement$h,
529
+ inputs: ['message']
530
+ })
531
+ ], DesynthLoader);
532
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthLoader, decorators: [{
533
+ type: Component,
534
+ args: [{
535
+ selector: 'desynth-loader',
536
+ changeDetection: ChangeDetectionStrategy.OnPush,
537
+ template: '<ng-content></ng-content>',
538
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
539
+ inputs: ['message'],
540
+ standalone: true
541
+ }]
542
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
543
+ let DesynthModal = class DesynthModal {
544
+ constructor(c, r, z) {
545
+ this.z = z;
546
+ c.detach();
547
+ this.el = r.nativeElement;
548
+ proxyOutputs(this, this.el, ['handleOpen', 'handleClose', 'handleBeforeClose']);
549
+ }
550
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
551
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: DesynthModal, isStandalone: true, selector: "desynth-modal", inputs: { duration: "duration", headTitle: "headTitle", opened: "opened", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
552
+ };
553
+ DesynthModal = __decorate([
554
+ ProxyCmp({
555
+ defineCustomElementFn: defineCustomElement$i,
556
+ inputs: ['duration', 'headTitle', 'opened', 'size']
557
+ })
558
+ ], DesynthModal);
559
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthModal, decorators: [{
560
+ type: Component,
561
+ args: [{
562
+ selector: 'desynth-modal',
563
+ changeDetection: ChangeDetectionStrategy.OnPush,
564
+ template: '<ng-content></ng-content>',
565
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
566
+ inputs: ['duration', 'headTitle', 'opened', 'size'],
567
+ standalone: true
568
+ }]
569
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
570
+ let DesynthMultiStepper = class DesynthMultiStepper {
571
+ constructor(c, r, z) {
572
+ this.z = z;
573
+ c.detach();
574
+ this.el = r.nativeElement;
575
+ proxyOutputs(this, this.el, ['handleSubmit']);
576
+ }
577
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthMultiStepper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
578
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: DesynthMultiStepper, isStandalone: true, selector: "desynth-multi-stepper", inputs: { validators: "validators" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
579
+ };
580
+ DesynthMultiStepper = __decorate([
581
+ ProxyCmp({
582
+ defineCustomElementFn: defineCustomElement$j,
583
+ inputs: ['validators']
584
+ })
585
+ ], DesynthMultiStepper);
586
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthMultiStepper, decorators: [{
587
+ type: Component,
588
+ args: [{
589
+ selector: 'desynth-multi-stepper',
590
+ changeDetection: ChangeDetectionStrategy.OnPush,
591
+ template: '<ng-content></ng-content>',
592
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
593
+ inputs: ['validators'],
594
+ standalone: true
595
+ }]
596
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
597
+ let DesynthPaper = class DesynthPaper {
598
+ constructor(c, r, z) {
599
+ this.z = z;
600
+ c.detach();
601
+ this.el = r.nativeElement;
602
+ }
603
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthPaper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
604
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: DesynthPaper, isStandalone: true, selector: "desynth-paper", inputs: { paperSize: "paperSize" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
605
+ };
606
+ DesynthPaper = __decorate([
607
+ ProxyCmp({
608
+ defineCustomElementFn: defineCustomElement$k,
609
+ inputs: ['paperSize']
610
+ })
611
+ ], DesynthPaper);
612
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthPaper, decorators: [{
613
+ type: Component,
614
+ args: [{
615
+ selector: 'desynth-paper',
616
+ changeDetection: ChangeDetectionStrategy.OnPush,
617
+ template: '<ng-content></ng-content>',
618
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
619
+ inputs: ['paperSize'],
620
+ standalone: true
621
+ }]
622
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
623
+ let DesynthRating = class DesynthRating {
624
+ constructor(c, r, z) {
625
+ this.z = z;
626
+ c.detach();
627
+ this.el = r.nativeElement;
628
+ proxyOutputs(this, this.el, ['handleChange']);
629
+ }
630
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthRating, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
631
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: DesynthRating, isStandalone: true, selector: "desynth-rating", inputs: { inputName: "inputName", rating: "rating" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
632
+ };
633
+ DesynthRating = __decorate([
634
+ ProxyCmp({
635
+ defineCustomElementFn: defineCustomElement$l,
636
+ inputs: ['inputName', 'rating']
637
+ })
638
+ ], DesynthRating);
639
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthRating, decorators: [{
640
+ type: Component,
641
+ args: [{
642
+ selector: 'desynth-rating',
643
+ changeDetection: ChangeDetectionStrategy.OnPush,
644
+ template: '<ng-content></ng-content>',
645
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
646
+ inputs: ['inputName', 'rating'],
647
+ standalone: true
648
+ }]
649
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
650
+ let DesynthRenderer = class DesynthRenderer {
651
+ constructor(c, r, z) {
652
+ this.z = z;
653
+ c.detach();
654
+ this.el = r.nativeElement;
655
+ }
656
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthRenderer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
657
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: DesynthRenderer, isStandalone: true, selector: "desynth-renderer", inputs: { content: "content" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
658
+ };
659
+ DesynthRenderer = __decorate([
660
+ ProxyCmp({
661
+ defineCustomElementFn: defineCustomElement$m,
662
+ inputs: ['content']
663
+ })
664
+ ], DesynthRenderer);
665
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthRenderer, decorators: [{
666
+ type: Component,
667
+ args: [{
668
+ selector: 'desynth-renderer',
669
+ changeDetection: ChangeDetectionStrategy.OnPush,
670
+ template: '<ng-content></ng-content>',
671
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
672
+ inputs: ['content'],
673
+ standalone: true
674
+ }]
675
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
676
+ let DesynthSelect = class DesynthSelect {
677
+ constructor(c, r, z) {
678
+ this.z = z;
679
+ c.detach();
680
+ this.el = r.nativeElement;
681
+ proxyOutputs(this, this.el, ['handleChange', 'handleInput', 'handleFocus']);
682
+ }
683
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthSelect, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
684
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: DesynthSelect, isStandalone: true, selector: "desynth-select", inputs: { errorMessage: "errorMessage", inputId: "inputId", inputName: "inputName", inputValue: "inputValue", options: "options", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
685
+ };
686
+ DesynthSelect = __decorate([
687
+ ProxyCmp({
688
+ defineCustomElementFn: defineCustomElement$n,
689
+ inputs: ['errorMessage', 'inputId', 'inputName', 'inputValue', 'options', 'size']
690
+ })
691
+ ], DesynthSelect);
692
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthSelect, decorators: [{
693
+ type: Component,
694
+ args: [{
695
+ selector: 'desynth-select',
696
+ changeDetection: ChangeDetectionStrategy.OnPush,
697
+ template: '<ng-content></ng-content>',
698
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
699
+ inputs: ['errorMessage', 'inputId', 'inputName', 'inputValue', 'options', 'size'],
700
+ standalone: true
701
+ }]
702
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
703
+ let DesynthStepStepper = class DesynthStepStepper {
704
+ constructor(c, r, z) {
705
+ this.z = z;
706
+ c.detach();
707
+ this.el = r.nativeElement;
708
+ }
709
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthStepStepper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
710
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: DesynthStepStepper, isStandalone: true, selector: "desynth-step-stepper", inputs: { active: "active" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
711
+ };
712
+ DesynthStepStepper = __decorate([
713
+ ProxyCmp({
714
+ defineCustomElementFn: defineCustomElement$o,
715
+ inputs: ['active']
716
+ })
717
+ ], DesynthStepStepper);
718
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthStepStepper, decorators: [{
719
+ type: Component,
720
+ args: [{
721
+ selector: 'desynth-step-stepper',
722
+ changeDetection: ChangeDetectionStrategy.OnPush,
723
+ template: '<ng-content></ng-content>',
724
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
725
+ inputs: ['active'],
726
+ standalone: true
727
+ }]
728
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
729
+ let DesynthSwitch = class DesynthSwitch {
730
+ constructor(c, r, z) {
731
+ this.z = z;
732
+ c.detach();
733
+ this.el = r.nativeElement;
734
+ proxyOutputs(this, this.el, ['handleClick', 'handleInput', 'handleFocus', 'handleBlur']);
735
+ }
736
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
737
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: DesynthSwitch, isStandalone: true, selector: "desynth-switch", inputs: { errorMessage: "errorMessage", inputId: "inputId", inputLabel: "inputLabel", isChecked: "isChecked" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
738
+ };
739
+ DesynthSwitch = __decorate([
740
+ ProxyCmp({
741
+ defineCustomElementFn: defineCustomElement$p,
742
+ inputs: ['errorMessage', 'inputId', 'inputLabel', 'isChecked']
743
+ })
744
+ ], DesynthSwitch);
745
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthSwitch, decorators: [{
746
+ type: Component,
747
+ args: [{
748
+ selector: 'desynth-switch',
749
+ changeDetection: ChangeDetectionStrategy.OnPush,
750
+ template: '<ng-content></ng-content>',
751
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
752
+ inputs: ['errorMessage', 'inputId', 'inputLabel', 'isChecked'],
753
+ standalone: true
754
+ }]
755
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
756
+ let DesynthTable = class DesynthTable {
757
+ constructor(c, r, z) {
758
+ this.z = z;
759
+ c.detach();
760
+ this.el = r.nativeElement;
761
+ proxyOutputs(this, this.el, ['changeRowsPerPage', 'getDataNextPage', 'rowEvent', 'dropEvent']);
762
+ }
763
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
764
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: DesynthTable, isStandalone: true, selector: "desynth-table", inputs: { _actions: "_actions", _column_keys: "_column_keys", _columns: "_columns", _hasPagination: "_hasPagination", _isDraggable: "_isDraggable", _source: "_source", count: "count" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
765
+ };
766
+ DesynthTable = __decorate([
767
+ ProxyCmp({
768
+ defineCustomElementFn: defineCustomElement$q,
769
+ inputs: ['_actions', '_column_keys', '_columns', '_hasPagination', '_isDraggable', '_source', 'count']
770
+ })
771
+ ], DesynthTable);
772
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthTable, decorators: [{
773
+ type: Component,
774
+ args: [{
775
+ selector: 'desynth-table',
776
+ changeDetection: ChangeDetectionStrategy.OnPush,
777
+ template: '<ng-content></ng-content>',
778
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
779
+ inputs: ['_actions', '_column_keys', '_columns', '_hasPagination', '_isDraggable', '_source', 'count'],
780
+ standalone: true
781
+ }]
782
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
783
+ let DesynthText = class DesynthText {
784
+ constructor(c, r, z) {
785
+ this.z = z;
786
+ c.detach();
787
+ this.el = r.nativeElement;
788
+ }
789
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthText, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
790
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: DesynthText, isStandalone: true, selector: "desynth-text", inputs: { align: "align", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
791
+ };
792
+ DesynthText = __decorate([
793
+ ProxyCmp({
794
+ defineCustomElementFn: defineCustomElement$r,
795
+ inputs: ['align', 'variant']
796
+ })
797
+ ], DesynthText);
798
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthText, decorators: [{
799
+ type: Component,
800
+ args: [{
801
+ selector: 'desynth-text',
802
+ changeDetection: ChangeDetectionStrategy.OnPush,
803
+ template: '<ng-content></ng-content>',
804
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
805
+ inputs: ['align', 'variant'],
806
+ standalone: true
807
+ }]
808
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
809
+ let DesynthTextArea = class DesynthTextArea {
810
+ constructor(c, r, z) {
811
+ this.z = z;
812
+ c.detach();
813
+ this.el = r.nativeElement;
814
+ proxyOutputs(this, this.el, ['handleChange', 'handleInput', 'handleFocus', 'handleBlur']);
815
+ }
816
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthTextArea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
817
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: DesynthTextArea, isStandalone: true, selector: "desynth-text-area", inputs: { errorMessage: "errorMessage", inputId: "inputId", inputName: "inputName", inputValue: "inputValue" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
818
+ };
819
+ DesynthTextArea = __decorate([
820
+ ProxyCmp({
821
+ defineCustomElementFn: defineCustomElement$s,
822
+ inputs: ['errorMessage', 'inputId', 'inputName', 'inputValue']
823
+ })
824
+ ], DesynthTextArea);
825
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthTextArea, decorators: [{
826
+ type: Component,
827
+ args: [{
828
+ selector: 'desynth-text-area',
829
+ changeDetection: ChangeDetectionStrategy.OnPush,
830
+ template: '<ng-content></ng-content>',
831
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
832
+ inputs: ['errorMessage', 'inputId', 'inputName', 'inputValue'],
833
+ standalone: true
834
+ }]
835
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
836
+ let DesynthTextInput = class DesynthTextInput {
837
+ constructor(c, r, z) {
838
+ this.z = z;
839
+ c.detach();
840
+ this.el = r.nativeElement;
841
+ proxyOutputs(this, this.el, ['handleChange', 'handleInput', 'handleFocus', 'handleBlur']);
842
+ }
843
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthTextInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
844
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: DesynthTextInput, isStandalone: true, selector: "desynth-text-input", inputs: { errorMessage: "errorMessage", inputId: "inputId", inputName: "inputName", inputType: "inputType", inputValue: "inputValue" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
845
+ };
846
+ DesynthTextInput = __decorate([
847
+ ProxyCmp({
848
+ defineCustomElementFn: defineCustomElement$t,
849
+ inputs: ['errorMessage', 'inputId', 'inputName', 'inputType', 'inputValue']
850
+ })
851
+ ], DesynthTextInput);
852
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthTextInput, decorators: [{
853
+ type: Component,
854
+ args: [{
855
+ selector: 'desynth-text-input',
856
+ changeDetection: ChangeDetectionStrategy.OnPush,
857
+ template: '<ng-content></ng-content>',
858
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
859
+ inputs: ['errorMessage', 'inputId', 'inputName', 'inputType', 'inputValue'],
860
+ standalone: true
861
+ }]
862
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
863
+ let DesynthTooltip = class DesynthTooltip {
864
+ constructor(c, r, z) {
865
+ this.z = z;
866
+ c.detach();
867
+ this.el = r.nativeElement;
868
+ }
869
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
870
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: DesynthTooltip, isStandalone: true, selector: "desynth-tooltip", inputs: { direction: "direction", message: "message" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
871
+ };
872
+ DesynthTooltip = __decorate([
873
+ ProxyCmp({
874
+ defineCustomElementFn: defineCustomElement$u,
875
+ inputs: ['direction', 'message']
876
+ })
877
+ ], DesynthTooltip);
878
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: DesynthTooltip, decorators: [{
879
+ type: Component,
880
+ args: [{
881
+ selector: 'desynth-tooltip',
882
+ changeDetection: ChangeDetectionStrategy.OnPush,
883
+ template: '<ng-content></ng-content>',
884
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
885
+ inputs: ['direction', 'message'],
886
+ standalone: true
887
+ }]
888
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
889
+ let HorizontalCards = class HorizontalCards {
890
+ constructor(c, r, z) {
891
+ this.z = z;
892
+ c.detach();
893
+ this.el = r.nativeElement;
894
+ }
895
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: HorizontalCards, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
896
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: HorizontalCards, isStandalone: true, selector: "horizontal-cards", inputs: { fullScreen: "fullScreen", jobs: "jobs" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
897
+ };
898
+ HorizontalCards = __decorate([
899
+ ProxyCmp({
900
+ defineCustomElementFn: defineCustomElement$v,
901
+ inputs: ['fullScreen', 'jobs']
902
+ })
903
+ ], HorizontalCards);
904
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: HorizontalCards, decorators: [{
905
+ type: Component,
906
+ args: [{
907
+ selector: 'horizontal-cards',
908
+ changeDetection: ChangeDetectionStrategy.OnPush,
909
+ template: '<ng-content></ng-content>',
910
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
911
+ inputs: ['fullScreen', 'jobs'],
912
+ standalone: true
913
+ }]
914
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
915
+ let HtmlEditor = class HtmlEditor {
916
+ constructor(c, r, z) {
917
+ this.z = z;
918
+ c.detach();
919
+ this.el = r.nativeElement;
920
+ proxyOutputs(this, this.el, ['htmlChanged']);
921
+ }
922
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: HtmlEditor, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
923
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.0.5", type: HtmlEditor, isStandalone: true, selector: "html-editor", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
924
+ };
925
+ HtmlEditor = __decorate([
926
+ ProxyCmp({
927
+ defineCustomElementFn: defineCustomElement$w
928
+ })
929
+ ], HtmlEditor);
930
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: HtmlEditor, decorators: [{
931
+ type: Component,
932
+ args: [{
933
+ selector: 'html-editor',
934
+ changeDetection: ChangeDetectionStrategy.OnPush,
935
+ template: '<ng-content></ng-content>',
936
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
937
+ inputs: [],
938
+ standalone: true
939
+ }]
940
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
941
+
942
+ const DIRECTIVES = [
943
+ DesynthAccordion,
944
+ DesynthAlert,
945
+ DesynthBreadcrumb,
946
+ DesynthButton,
947
+ DesynthButtonSlider,
948
+ DesynthCard,
949
+ DesynthCheckbox,
950
+ DesynthDatePicker,
951
+ DesynthDivider,
952
+ DesynthDrawer,
953
+ DesynthDropFile,
954
+ DesynthForm,
955
+ DesynthGrid,
956
+ DesynthHeader,
957
+ DesynthList,
958
+ DesynthLoader,
959
+ DesynthModal,
960
+ DesynthMultiStepper,
961
+ DesynthPaper,
962
+ DesynthRating,
963
+ DesynthRenderer,
964
+ DesynthSelect,
965
+ DesynthStepStepper,
966
+ DesynthSwitch,
967
+ DesynthTable,
968
+ DesynthTextArea,
969
+ DesynthTextInput,
970
+ DesynthTooltip
971
+ ];
972
+ class StencilWrapperModule {
973
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: StencilWrapperModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
974
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.0.5", ngImport: i0, type: StencilWrapperModule, imports: [DesynthAccordion, DesynthAlert, DesynthBreadcrumb, DesynthButton, DesynthButtonSlider, DesynthCard, DesynthCheckbox, DesynthDatePicker, DesynthDivider, DesynthDrawer, DesynthDropFile, DesynthForm, DesynthGrid, DesynthHeader, DesynthList, DesynthLoader, DesynthModal, DesynthMultiStepper, DesynthPaper, DesynthRating, DesynthRenderer, DesynthSelect, DesynthStepStepper, DesynthSwitch, DesynthTable, DesynthTextArea, DesynthTextInput, DesynthTooltip], exports: [DesynthAccordion, DesynthAlert, DesynthBreadcrumb, DesynthButton, DesynthButtonSlider, DesynthCard, DesynthCheckbox, DesynthDatePicker, DesynthDivider, DesynthDrawer, DesynthDropFile, DesynthForm, DesynthGrid, DesynthHeader, DesynthList, DesynthLoader, DesynthModal, DesynthMultiStepper, DesynthPaper, DesynthRating, DesynthRenderer, DesynthSelect, DesynthStepStepper, DesynthSwitch, DesynthTable, DesynthTextArea, DesynthTextInput, DesynthTooltip] }); }
975
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: StencilWrapperModule }); }
976
+ }
977
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.0.5", ngImport: i0, type: StencilWrapperModule, decorators: [{
978
+ type: NgModule,
979
+ args: [{
980
+ declarations: [],
981
+ exports: [
982
+ ...DIRECTIVES
983
+ ],
984
+ imports: [
985
+ ...DIRECTIVES
986
+ ],
987
+ }]
988
+ }] });
989
+
990
+ /*
991
+ * Public API Surface of stencil-wrapper
992
+ */
993
+
994
+ /**
995
+ * Generated bundle index. Do not edit.
996
+ */
997
+
998
+ export { DesynthAccordion, DesynthAlert, DesynthBreadcrumb, DesynthButton, DesynthButtonSlider, DesynthCard, DesynthCheckbox, DesynthDatePicker, DesynthDivider, DesynthDrawer, DesynthDropFile, DesynthDropdown, DesynthForm, DesynthGrid, DesynthHeader, DesynthList, DesynthLoader, DesynthModal, DesynthMultiStepper, DesynthPaper, DesynthRating, DesynthRenderer, DesynthSelect, DesynthStepStepper, DesynthSwitch, DesynthTable, DesynthText, DesynthTextArea, DesynthTextInput, DesynthTooltip, HorizontalCards, HtmlEditor, StencilWrapperModule };
999
+ //# sourceMappingURL=stencil-wrapper.mjs.map