@desynth/web-components-angular 24.7.9-alpha.8 → 24.7.9-alpha.9

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