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