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