@tessera-ui/angular 0.4.0

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,1418 @@
1
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
2
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
3
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
4
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
5
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
6
+ };
7
+ /* tslint:disable */
8
+ /* auto-generated angular directive proxies */
9
+ import { ChangeDetectionStrategy, Component, EventEmitter, Output } from '@angular/core';
10
+ import { ProxyCmp } from './angular-component-lib/utils';
11
+ let TsAccordion = class TsAccordion {
12
+ z;
13
+ el;
14
+ constructor(c, r, z) {
15
+ this.z = z;
16
+ c.detach();
17
+ this.el = r.nativeElement;
18
+ }
19
+ };
20
+ TsAccordion = __decorate([
21
+ ProxyCmp({
22
+ inputs: ['multiple']
23
+ }),
24
+ Component({
25
+ selector: 'ts-accordion',
26
+ changeDetection: ChangeDetectionStrategy.OnPush,
27
+ template: '<ng-content></ng-content>',
28
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
29
+ inputs: ['multiple'],
30
+ standalone: false
31
+ })
32
+ ], TsAccordion);
33
+ export { TsAccordion };
34
+ let TsAccordionItem = class TsAccordionItem {
35
+ z;
36
+ el;
37
+ tsToggle = new EventEmitter();
38
+ constructor(c, r, z) {
39
+ this.z = z;
40
+ c.detach();
41
+ this.el = r.nativeElement;
42
+ }
43
+ };
44
+ __decorate([
45
+ Output()
46
+ ], TsAccordionItem.prototype, "tsToggle", void 0);
47
+ TsAccordionItem = __decorate([
48
+ ProxyCmp({
49
+ inputs: ['disabled', 'heading', 'open']
50
+ }),
51
+ Component({
52
+ selector: 'ts-accordion-item',
53
+ changeDetection: ChangeDetectionStrategy.OnPush,
54
+ template: '<ng-content></ng-content>',
55
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
56
+ inputs: ['disabled', 'heading', 'open'],
57
+ outputs: ['tsToggle'],
58
+ standalone: false
59
+ })
60
+ ], TsAccordionItem);
61
+ export { TsAccordionItem };
62
+ let TsAlert = class TsAlert {
63
+ z;
64
+ el;
65
+ tsClose = new EventEmitter();
66
+ constructor(c, r, z) {
67
+ this.z = z;
68
+ c.detach();
69
+ this.el = r.nativeElement;
70
+ }
71
+ };
72
+ __decorate([
73
+ Output()
74
+ ], TsAlert.prototype, "tsClose", void 0);
75
+ TsAlert = __decorate([
76
+ ProxyCmp({
77
+ inputs: ['closable', 'variant'],
78
+ methods: ['close', 'show']
79
+ }),
80
+ Component({
81
+ selector: 'ts-alert',
82
+ changeDetection: ChangeDetectionStrategy.OnPush,
83
+ template: '<ng-content></ng-content>',
84
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
85
+ inputs: ['closable', 'variant'],
86
+ outputs: ['tsClose'],
87
+ standalone: false
88
+ })
89
+ ], TsAlert);
90
+ export { TsAlert };
91
+ let TsAvatar = class TsAvatar {
92
+ z;
93
+ el;
94
+ constructor(c, r, z) {
95
+ this.z = z;
96
+ c.detach();
97
+ this.el = r.nativeElement;
98
+ }
99
+ };
100
+ TsAvatar = __decorate([
101
+ ProxyCmp({
102
+ inputs: ['alt', 'color', 'name', 'size', 'src', 'variant']
103
+ }),
104
+ Component({
105
+ selector: 'ts-avatar',
106
+ changeDetection: ChangeDetectionStrategy.OnPush,
107
+ template: '<ng-content></ng-content>',
108
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
109
+ inputs: ['alt', 'color', 'name', 'size', 'src', 'variant'],
110
+ standalone: false
111
+ })
112
+ ], TsAvatar);
113
+ export { TsAvatar };
114
+ let TsBadge = class TsBadge {
115
+ z;
116
+ el;
117
+ constructor(c, r, z) {
118
+ this.z = z;
119
+ c.detach();
120
+ this.el = r.nativeElement;
121
+ }
122
+ };
123
+ TsBadge = __decorate([
124
+ ProxyCmp({
125
+ inputs: ['dot', 'outline', 'pill', 'size', 'variant']
126
+ }),
127
+ Component({
128
+ selector: 'ts-badge',
129
+ changeDetection: ChangeDetectionStrategy.OnPush,
130
+ template: '<ng-content></ng-content>',
131
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
132
+ inputs: ['dot', 'outline', 'pill', 'size', 'variant'],
133
+ standalone: false
134
+ })
135
+ ], TsBadge);
136
+ export { TsBadge };
137
+ let TsBanner = class TsBanner {
138
+ z;
139
+ el;
140
+ tsClose = new EventEmitter();
141
+ constructor(c, r, z) {
142
+ this.z = z;
143
+ c.detach();
144
+ this.el = r.nativeElement;
145
+ }
146
+ };
147
+ __decorate([
148
+ Output()
149
+ ], TsBanner.prototype, "tsClose", void 0);
150
+ TsBanner = __decorate([
151
+ ProxyCmp({
152
+ inputs: ['dismissible', 'icon', 'sticky', 'variant'],
153
+ methods: ['close', 'show']
154
+ }),
155
+ Component({
156
+ selector: 'ts-banner',
157
+ changeDetection: ChangeDetectionStrategy.OnPush,
158
+ template: '<ng-content></ng-content>',
159
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
160
+ inputs: ['dismissible', 'icon', 'sticky', 'variant'],
161
+ outputs: ['tsClose'],
162
+ standalone: false
163
+ })
164
+ ], TsBanner);
165
+ export { TsBanner };
166
+ let TsBreadcrumb = class TsBreadcrumb {
167
+ z;
168
+ el;
169
+ constructor(c, r, z) {
170
+ this.z = z;
171
+ c.detach();
172
+ this.el = r.nativeElement;
173
+ }
174
+ };
175
+ TsBreadcrumb = __decorate([
176
+ ProxyCmp({
177
+ inputs: ['separator']
178
+ }),
179
+ Component({
180
+ selector: 'ts-breadcrumb',
181
+ changeDetection: ChangeDetectionStrategy.OnPush,
182
+ template: '<ng-content></ng-content>',
183
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
184
+ inputs: ['separator'],
185
+ standalone: false
186
+ })
187
+ ], TsBreadcrumb);
188
+ export { TsBreadcrumb };
189
+ let TsBreadcrumbItem = class TsBreadcrumbItem {
190
+ z;
191
+ el;
192
+ constructor(c, r, z) {
193
+ this.z = z;
194
+ c.detach();
195
+ this.el = r.nativeElement;
196
+ }
197
+ };
198
+ TsBreadcrumbItem = __decorate([
199
+ ProxyCmp({
200
+ inputs: ['current', 'href', 'separator']
201
+ }),
202
+ Component({
203
+ selector: 'ts-breadcrumb-item',
204
+ changeDetection: ChangeDetectionStrategy.OnPush,
205
+ template: '<ng-content></ng-content>',
206
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
207
+ inputs: ['current', 'href', 'separator'],
208
+ standalone: false
209
+ })
210
+ ], TsBreadcrumbItem);
211
+ export { TsBreadcrumbItem };
212
+ let TsButton = class TsButton {
213
+ z;
214
+ el;
215
+ tsClick = new EventEmitter();
216
+ tsFocus = new EventEmitter();
217
+ tsBlur = new EventEmitter();
218
+ constructor(c, r, z) {
219
+ this.z = z;
220
+ c.detach();
221
+ this.el = r.nativeElement;
222
+ }
223
+ };
224
+ __decorate([
225
+ Output()
226
+ ], TsButton.prototype, "tsClick", void 0);
227
+ __decorate([
228
+ Output()
229
+ ], TsButton.prototype, "tsFocus", void 0);
230
+ __decorate([
231
+ Output()
232
+ ], TsButton.prototype, "tsBlur", void 0);
233
+ TsButton = __decorate([
234
+ ProxyCmp({
235
+ inputs: ['appearance', 'block', 'disabled', 'href', 'loading', 'size', 'target', 'type', 'variant']
236
+ }),
237
+ Component({
238
+ selector: 'ts-button',
239
+ changeDetection: ChangeDetectionStrategy.OnPush,
240
+ template: '<ng-content></ng-content>',
241
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
242
+ inputs: ['appearance', 'block', 'disabled', 'href', 'loading', 'size', 'target', 'type', 'variant'],
243
+ outputs: ['tsClick', 'tsFocus', 'tsBlur'],
244
+ standalone: false
245
+ })
246
+ ], TsButton);
247
+ export { TsButton };
248
+ let TsCard = class TsCard {
249
+ z;
250
+ el;
251
+ constructor(c, r, z) {
252
+ this.z = z;
253
+ c.detach();
254
+ this.el = r.nativeElement;
255
+ }
256
+ };
257
+ TsCard = __decorate([
258
+ ProxyCmp({
259
+ inputs: ['bordered', 'elevation', 'interactive', 'padding']
260
+ }),
261
+ Component({
262
+ selector: 'ts-card',
263
+ changeDetection: ChangeDetectionStrategy.OnPush,
264
+ template: '<ng-content></ng-content>',
265
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
266
+ inputs: ['bordered', 'elevation', 'interactive', 'padding'],
267
+ standalone: false
268
+ })
269
+ ], TsCard);
270
+ export { TsCard };
271
+ let TsCheckbox = class TsCheckbox {
272
+ z;
273
+ el;
274
+ tsChange = new EventEmitter();
275
+ constructor(c, r, z) {
276
+ this.z = z;
277
+ c.detach();
278
+ this.el = r.nativeElement;
279
+ }
280
+ };
281
+ __decorate([
282
+ Output()
283
+ ], TsCheckbox.prototype, "tsChange", void 0);
284
+ TsCheckbox = __decorate([
285
+ ProxyCmp({
286
+ inputs: ['checked', 'disabled', 'error', 'indeterminate', 'label', 'name', 'size', 'value'],
287
+ methods: ['toggle']
288
+ }),
289
+ Component({
290
+ selector: 'ts-checkbox',
291
+ changeDetection: ChangeDetectionStrategy.OnPush,
292
+ template: '<ng-content></ng-content>',
293
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
294
+ inputs: ['checked', 'disabled', 'error', 'indeterminate', 'label', 'name', 'size', 'value'],
295
+ outputs: ['tsChange'],
296
+ standalone: false
297
+ })
298
+ ], TsCheckbox);
299
+ export { TsCheckbox };
300
+ let TsChip = class TsChip {
301
+ z;
302
+ el;
303
+ tsRemove = new EventEmitter();
304
+ tsClick = new EventEmitter();
305
+ constructor(c, r, z) {
306
+ this.z = z;
307
+ c.detach();
308
+ this.el = r.nativeElement;
309
+ }
310
+ };
311
+ __decorate([
312
+ Output()
313
+ ], TsChip.prototype, "tsRemove", void 0);
314
+ __decorate([
315
+ Output()
316
+ ], TsChip.prototype, "tsClick", void 0);
317
+ TsChip = __decorate([
318
+ ProxyCmp({
319
+ inputs: ['disabled', 'outline', 'removable', 'selected', 'size', 'variant']
320
+ }),
321
+ Component({
322
+ selector: 'ts-chip',
323
+ changeDetection: ChangeDetectionStrategy.OnPush,
324
+ template: '<ng-content></ng-content>',
325
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
326
+ inputs: ['disabled', 'outline', 'removable', 'selected', 'size', 'variant'],
327
+ outputs: ['tsRemove', 'tsClick'],
328
+ standalone: false
329
+ })
330
+ ], TsChip);
331
+ export { TsChip };
332
+ let TsContainer = class TsContainer {
333
+ z;
334
+ el;
335
+ constructor(c, r, z) {
336
+ this.z = z;
337
+ c.detach();
338
+ this.el = r.nativeElement;
339
+ }
340
+ };
341
+ TsContainer = __decorate([
342
+ ProxyCmp({
343
+ inputs: ['padding', 'size']
344
+ }),
345
+ Component({
346
+ selector: 'ts-container',
347
+ changeDetection: ChangeDetectionStrategy.OnPush,
348
+ template: '<ng-content></ng-content>',
349
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
350
+ inputs: ['padding', 'size'],
351
+ standalone: false
352
+ })
353
+ ], TsContainer);
354
+ export { TsContainer };
355
+ let TsDatePicker = class TsDatePicker {
356
+ z;
357
+ el;
358
+ tsChange = new EventEmitter();
359
+ constructor(c, r, z) {
360
+ this.z = z;
361
+ c.detach();
362
+ this.el = r.nativeElement;
363
+ }
364
+ };
365
+ __decorate([
366
+ Output()
367
+ ], TsDatePicker.prototype, "tsChange", void 0);
368
+ TsDatePicker = __decorate([
369
+ ProxyCmp({
370
+ inputs: ['disabled', 'error', 'errorMessage', 'label', 'max', 'min', 'name', 'placeholder', 'size', 'value']
371
+ }),
372
+ Component({
373
+ selector: 'ts-date-picker',
374
+ changeDetection: ChangeDetectionStrategy.OnPush,
375
+ template: '<ng-content></ng-content>',
376
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
377
+ inputs: ['disabled', 'error', 'errorMessage', 'label', 'max', 'min', 'name', 'placeholder', 'size', 'value'],
378
+ outputs: ['tsChange'],
379
+ standalone: false
380
+ })
381
+ ], TsDatePicker);
382
+ export { TsDatePicker };
383
+ let TsDialog = class TsDialog {
384
+ z;
385
+ el;
386
+ tsClose = new EventEmitter();
387
+ constructor(c, r, z) {
388
+ this.z = z;
389
+ c.detach();
390
+ this.el = r.nativeElement;
391
+ }
392
+ };
393
+ __decorate([
394
+ Output()
395
+ ], TsDialog.prototype, "tsClose", void 0);
396
+ TsDialog = __decorate([
397
+ ProxyCmp({
398
+ inputs: ['dismissible', 'heading', 'open', 'size'],
399
+ methods: ['show', 'close']
400
+ }),
401
+ Component({
402
+ selector: 'ts-dialog',
403
+ changeDetection: ChangeDetectionStrategy.OnPush,
404
+ template: '<ng-content></ng-content>',
405
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
406
+ inputs: ['dismissible', 'heading', 'open', 'size'],
407
+ outputs: ['tsClose'],
408
+ standalone: false
409
+ })
410
+ ], TsDialog);
411
+ export { TsDialog };
412
+ let TsDivider = class TsDivider {
413
+ z;
414
+ el;
415
+ constructor(c, r, z) {
416
+ this.z = z;
417
+ c.detach();
418
+ this.el = r.nativeElement;
419
+ }
420
+ };
421
+ TsDivider = __decorate([
422
+ ProxyCmp({
423
+ inputs: ['label', 'orientation', 'variant']
424
+ }),
425
+ Component({
426
+ selector: 'ts-divider',
427
+ changeDetection: ChangeDetectionStrategy.OnPush,
428
+ template: '<ng-content></ng-content>',
429
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
430
+ inputs: ['label', 'orientation', 'variant'],
431
+ standalone: false
432
+ })
433
+ ], TsDivider);
434
+ export { TsDivider };
435
+ let TsDrawer = class TsDrawer {
436
+ z;
437
+ el;
438
+ tsClose = new EventEmitter();
439
+ constructor(c, r, z) {
440
+ this.z = z;
441
+ c.detach();
442
+ this.el = r.nativeElement;
443
+ }
444
+ };
445
+ __decorate([
446
+ Output()
447
+ ], TsDrawer.prototype, "tsClose", void 0);
448
+ TsDrawer = __decorate([
449
+ ProxyCmp({
450
+ inputs: ['dismissible', 'heading', 'open', 'placement', 'size'],
451
+ methods: ['show', 'close']
452
+ }),
453
+ Component({
454
+ selector: 'ts-drawer',
455
+ changeDetection: ChangeDetectionStrategy.OnPush,
456
+ template: '<ng-content></ng-content>',
457
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
458
+ inputs: ['dismissible', 'heading', 'open', 'placement', 'size'],
459
+ outputs: ['tsClose'],
460
+ standalone: false
461
+ })
462
+ ], TsDrawer);
463
+ export { TsDrawer };
464
+ let TsEmptyState = class TsEmptyState {
465
+ z;
466
+ el;
467
+ constructor(c, r, z) {
468
+ this.z = z;
469
+ c.detach();
470
+ this.el = r.nativeElement;
471
+ }
472
+ };
473
+ TsEmptyState = __decorate([
474
+ ProxyCmp({
475
+ inputs: ['description', 'heading', 'icon', 'size']
476
+ }),
477
+ Component({
478
+ selector: 'ts-empty-state',
479
+ changeDetection: ChangeDetectionStrategy.OnPush,
480
+ template: '<ng-content></ng-content>',
481
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
482
+ inputs: ['description', 'heading', 'icon', 'size'],
483
+ standalone: false
484
+ })
485
+ ], TsEmptyState);
486
+ export { TsEmptyState };
487
+ let TsFileUpload = class TsFileUpload {
488
+ z;
489
+ el;
490
+ tsChange = new EventEmitter();
491
+ constructor(c, r, z) {
492
+ this.z = z;
493
+ c.detach();
494
+ this.el = r.nativeElement;
495
+ }
496
+ };
497
+ __decorate([
498
+ Output()
499
+ ], TsFileUpload.prototype, "tsChange", void 0);
500
+ TsFileUpload = __decorate([
501
+ ProxyCmp({
502
+ inputs: ['accept', 'disabled', 'label', 'maxSize', 'multiple', 'name']
503
+ }),
504
+ Component({
505
+ selector: 'ts-file-upload',
506
+ changeDetection: ChangeDetectionStrategy.OnPush,
507
+ template: '<ng-content></ng-content>',
508
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
509
+ inputs: ['accept', 'disabled', 'label', 'maxSize', 'multiple', 'name'],
510
+ outputs: ['tsChange'],
511
+ standalone: false
512
+ })
513
+ ], TsFileUpload);
514
+ export { TsFileUpload };
515
+ let TsGrid = class TsGrid {
516
+ z;
517
+ el;
518
+ constructor(c, r, z) {
519
+ this.z = z;
520
+ c.detach();
521
+ this.el = r.nativeElement;
522
+ }
523
+ };
524
+ TsGrid = __decorate([
525
+ ProxyCmp({
526
+ inputs: ['align', 'columns', 'gap', 'minColumnWidth']
527
+ }),
528
+ Component({
529
+ selector: 'ts-grid',
530
+ changeDetection: ChangeDetectionStrategy.OnPush,
531
+ template: '<ng-content></ng-content>',
532
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
533
+ inputs: ['align', 'columns', 'gap', 'minColumnWidth'],
534
+ standalone: false
535
+ })
536
+ ], TsGrid);
537
+ export { TsGrid };
538
+ let TsIcon = class TsIcon {
539
+ z;
540
+ el;
541
+ constructor(c, r, z) {
542
+ this.z = z;
543
+ c.detach();
544
+ this.el = r.nativeElement;
545
+ }
546
+ };
547
+ TsIcon = __decorate([
548
+ ProxyCmp({
549
+ inputs: ['color', 'label', 'name', 'size', 'src']
550
+ }),
551
+ Component({
552
+ selector: 'ts-icon',
553
+ changeDetection: ChangeDetectionStrategy.OnPush,
554
+ template: '<ng-content></ng-content>',
555
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
556
+ inputs: ['color', 'label', 'name', 'size', 'src'],
557
+ standalone: false
558
+ })
559
+ ], TsIcon);
560
+ export { TsIcon };
561
+ let TsInput = class TsInput {
562
+ z;
563
+ el;
564
+ tsInput = new EventEmitter();
565
+ tsChange = new EventEmitter();
566
+ tsFocus = new EventEmitter();
567
+ tsBlur = new EventEmitter();
568
+ tsValidate = new EventEmitter();
569
+ constructor(c, r, z) {
570
+ this.z = z;
571
+ c.detach();
572
+ this.el = r.nativeElement;
573
+ }
574
+ };
575
+ __decorate([
576
+ Output()
577
+ ], TsInput.prototype, "tsInput", void 0);
578
+ __decorate([
579
+ Output()
580
+ ], TsInput.prototype, "tsChange", void 0);
581
+ __decorate([
582
+ Output()
583
+ ], TsInput.prototype, "tsFocus", void 0);
584
+ __decorate([
585
+ Output()
586
+ ], TsInput.prototype, "tsBlur", void 0);
587
+ __decorate([
588
+ Output()
589
+ ], TsInput.prototype, "tsValidate", void 0);
590
+ TsInput = __decorate([
591
+ ProxyCmp({
592
+ inputs: ['autocomplete', 'disabled', 'error', 'helpText', 'label', 'maxlength', 'minlength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'size', 'type', 'value'],
593
+ methods: ['setFocus', 'selectText']
594
+ }),
595
+ Component({
596
+ selector: 'ts-input',
597
+ changeDetection: ChangeDetectionStrategy.OnPush,
598
+ template: '<ng-content></ng-content>',
599
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
600
+ inputs: ['autocomplete', 'disabled', 'error', 'helpText', 'label', 'maxlength', 'minlength', 'name', 'pattern', 'placeholder', 'readonly', 'required', 'size', 'type', 'value'],
601
+ outputs: ['tsInput', 'tsChange', 'tsFocus', 'tsBlur', 'tsValidate'],
602
+ standalone: false
603
+ })
604
+ ], TsInput);
605
+ export { TsInput };
606
+ let TsMenu = class TsMenu {
607
+ z;
608
+ el;
609
+ tsOpen = new EventEmitter();
610
+ tsClose = new EventEmitter();
611
+ constructor(c, r, z) {
612
+ this.z = z;
613
+ c.detach();
614
+ this.el = r.nativeElement;
615
+ }
616
+ };
617
+ __decorate([
618
+ Output()
619
+ ], TsMenu.prototype, "tsOpen", void 0);
620
+ __decorate([
621
+ Output()
622
+ ], TsMenu.prototype, "tsClose", void 0);
623
+ TsMenu = __decorate([
624
+ ProxyCmp({
625
+ inputs: ['open', 'placement', 'trigger']
626
+ }),
627
+ Component({
628
+ selector: 'ts-menu',
629
+ changeDetection: ChangeDetectionStrategy.OnPush,
630
+ template: '<ng-content></ng-content>',
631
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
632
+ inputs: ['open', 'placement', 'trigger'],
633
+ outputs: ['tsOpen', 'tsClose'],
634
+ standalone: false
635
+ })
636
+ ], TsMenu);
637
+ export { TsMenu };
638
+ let TsMenuItem = class TsMenuItem {
639
+ z;
640
+ el;
641
+ tsSelect = new EventEmitter();
642
+ constructor(c, r, z) {
643
+ this.z = z;
644
+ c.detach();
645
+ this.el = r.nativeElement;
646
+ }
647
+ };
648
+ __decorate([
649
+ Output()
650
+ ], TsMenuItem.prototype, "tsSelect", void 0);
651
+ TsMenuItem = __decorate([
652
+ ProxyCmp({
653
+ inputs: ['disabled', 'href', 'value'],
654
+ methods: ['setFocus']
655
+ }),
656
+ Component({
657
+ selector: 'ts-menu-item',
658
+ changeDetection: ChangeDetectionStrategy.OnPush,
659
+ template: '<ng-content></ng-content>',
660
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
661
+ inputs: ['disabled', 'href', 'value'],
662
+ outputs: ['tsSelect'],
663
+ standalone: false
664
+ })
665
+ ], TsMenuItem);
666
+ export { TsMenuItem };
667
+ let TsModal = class TsModal {
668
+ z;
669
+ el;
670
+ tsOpen = new EventEmitter();
671
+ tsClose = new EventEmitter();
672
+ constructor(c, r, z) {
673
+ this.z = z;
674
+ c.detach();
675
+ this.el = r.nativeElement;
676
+ }
677
+ };
678
+ __decorate([
679
+ Output()
680
+ ], TsModal.prototype, "tsOpen", void 0);
681
+ __decorate([
682
+ Output()
683
+ ], TsModal.prototype, "tsClose", void 0);
684
+ TsModal = __decorate([
685
+ ProxyCmp({
686
+ inputs: ['closeOnEscape', 'closeOnOverlay', 'label', 'open', 'showClose', 'size'],
687
+ methods: ['show', 'close']
688
+ }),
689
+ Component({
690
+ selector: 'ts-modal',
691
+ changeDetection: ChangeDetectionStrategy.OnPush,
692
+ template: '<ng-content></ng-content>',
693
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
694
+ inputs: ['closeOnEscape', 'closeOnOverlay', 'label', 'open', 'showClose', 'size'],
695
+ outputs: ['tsOpen', 'tsClose'],
696
+ standalone: false
697
+ })
698
+ ], TsModal);
699
+ export { TsModal };
700
+ let TsNav = class TsNav {
701
+ z;
702
+ el;
703
+ constructor(c, r, z) {
704
+ this.z = z;
705
+ c.detach();
706
+ this.el = r.nativeElement;
707
+ }
708
+ };
709
+ TsNav = __decorate([
710
+ ProxyCmp({
711
+ inputs: ['collapsed', 'variant']
712
+ }),
713
+ Component({
714
+ selector: 'ts-nav',
715
+ changeDetection: ChangeDetectionStrategy.OnPush,
716
+ template: '<ng-content></ng-content>',
717
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
718
+ inputs: ['collapsed', 'variant'],
719
+ standalone: false
720
+ })
721
+ ], TsNav);
722
+ export { TsNav };
723
+ let TsNavItem = class TsNavItem {
724
+ z;
725
+ el;
726
+ tsSelect = new EventEmitter();
727
+ constructor(c, r, z) {
728
+ this.z = z;
729
+ c.detach();
730
+ this.el = r.nativeElement;
731
+ }
732
+ };
733
+ __decorate([
734
+ Output()
735
+ ], TsNavItem.prototype, "tsSelect", void 0);
736
+ TsNavItem = __decorate([
737
+ ProxyCmp({
738
+ inputs: ['active', 'disabled', 'href', 'icon']
739
+ }),
740
+ Component({
741
+ selector: 'ts-nav-item',
742
+ changeDetection: ChangeDetectionStrategy.OnPush,
743
+ template: '<ng-content></ng-content>',
744
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
745
+ inputs: ['active', 'disabled', 'href', 'icon'],
746
+ outputs: ['tsSelect'],
747
+ standalone: false
748
+ })
749
+ ], TsNavItem);
750
+ export { TsNavItem };
751
+ let TsPagination = class TsPagination {
752
+ z;
753
+ el;
754
+ tsChange = new EventEmitter();
755
+ constructor(c, r, z) {
756
+ this.z = z;
757
+ c.detach();
758
+ this.el = r.nativeElement;
759
+ }
760
+ };
761
+ __decorate([
762
+ Output()
763
+ ], TsPagination.prototype, "tsChange", void 0);
764
+ TsPagination = __decorate([
765
+ ProxyCmp({
766
+ inputs: ['currentPage', 'pageSize', 'siblingCount', 'size', 'total']
767
+ }),
768
+ Component({
769
+ selector: 'ts-pagination',
770
+ changeDetection: ChangeDetectionStrategy.OnPush,
771
+ template: '<ng-content></ng-content>',
772
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
773
+ inputs: ['currentPage', 'pageSize', 'siblingCount', 'size', { name: 'total', required: true }],
774
+ outputs: ['tsChange'],
775
+ standalone: false
776
+ })
777
+ ], TsPagination);
778
+ export { TsPagination };
779
+ let TsPopover = class TsPopover {
780
+ z;
781
+ el;
782
+ tsOpen = new EventEmitter();
783
+ tsClose = new EventEmitter();
784
+ constructor(c, r, z) {
785
+ this.z = z;
786
+ c.detach();
787
+ this.el = r.nativeElement;
788
+ }
789
+ };
790
+ __decorate([
791
+ Output()
792
+ ], TsPopover.prototype, "tsOpen", void 0);
793
+ __decorate([
794
+ Output()
795
+ ], TsPopover.prototype, "tsClose", void 0);
796
+ TsPopover = __decorate([
797
+ ProxyCmp({
798
+ inputs: ['dismissible', 'open', 'placement', 'trigger'],
799
+ methods: ['show', 'hide']
800
+ }),
801
+ Component({
802
+ selector: 'ts-popover',
803
+ changeDetection: ChangeDetectionStrategy.OnPush,
804
+ template: '<ng-content></ng-content>',
805
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
806
+ inputs: ['dismissible', 'open', 'placement', 'trigger'],
807
+ outputs: ['tsOpen', 'tsClose'],
808
+ standalone: false
809
+ })
810
+ ], TsPopover);
811
+ export { TsPopover };
812
+ let TsProgress = class TsProgress {
813
+ z;
814
+ el;
815
+ constructor(c, r, z) {
816
+ this.z = z;
817
+ c.detach();
818
+ this.el = r.nativeElement;
819
+ }
820
+ };
821
+ TsProgress = __decorate([
822
+ ProxyCmp({
823
+ inputs: ['indeterminate', 'label', 'max', 'showValue', 'size', 'value', 'variant']
824
+ }),
825
+ Component({
826
+ selector: 'ts-progress',
827
+ changeDetection: ChangeDetectionStrategy.OnPush,
828
+ template: '<ng-content></ng-content>',
829
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
830
+ inputs: ['indeterminate', 'label', 'max', 'showValue', 'size', 'value', 'variant'],
831
+ standalone: false
832
+ })
833
+ ], TsProgress);
834
+ export { TsProgress };
835
+ let TsRadio = class TsRadio {
836
+ z;
837
+ el;
838
+ tsChange = new EventEmitter();
839
+ constructor(c, r, z) {
840
+ this.z = z;
841
+ c.detach();
842
+ this.el = r.nativeElement;
843
+ }
844
+ };
845
+ __decorate([
846
+ Output()
847
+ ], TsRadio.prototype, "tsChange", void 0);
848
+ TsRadio = __decorate([
849
+ ProxyCmp({
850
+ inputs: ['checked', 'disabled', 'label', 'name', 'size', 'value'],
851
+ methods: ['select']
852
+ }),
853
+ Component({
854
+ selector: 'ts-radio',
855
+ changeDetection: ChangeDetectionStrategy.OnPush,
856
+ template: '<ng-content></ng-content>',
857
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
858
+ inputs: ['checked', 'disabled', 'label', 'name', 'size', 'value'],
859
+ outputs: ['tsChange'],
860
+ standalone: false
861
+ })
862
+ ], TsRadio);
863
+ export { TsRadio };
864
+ let TsRow = class TsRow {
865
+ z;
866
+ el;
867
+ constructor(c, r, z) {
868
+ this.z = z;
869
+ c.detach();
870
+ this.el = r.nativeElement;
871
+ }
872
+ };
873
+ TsRow = __decorate([
874
+ ProxyCmp({
875
+ inputs: ['align', 'gap', 'justify', 'reverse', 'stackAt', 'wrap']
876
+ }),
877
+ Component({
878
+ selector: 'ts-row',
879
+ changeDetection: ChangeDetectionStrategy.OnPush,
880
+ template: '<ng-content></ng-content>',
881
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
882
+ inputs: ['align', 'gap', 'justify', 'reverse', 'stackAt', 'wrap'],
883
+ standalone: false
884
+ })
885
+ ], TsRow);
886
+ export { TsRow };
887
+ let TsSelect = class TsSelect {
888
+ z;
889
+ el;
890
+ tsChange = new EventEmitter();
891
+ tsFocus = new EventEmitter();
892
+ tsBlur = new EventEmitter();
893
+ constructor(c, r, z) {
894
+ this.z = z;
895
+ c.detach();
896
+ this.el = r.nativeElement;
897
+ }
898
+ };
899
+ __decorate([
900
+ Output()
901
+ ], TsSelect.prototype, "tsChange", void 0);
902
+ __decorate([
903
+ Output()
904
+ ], TsSelect.prototype, "tsFocus", void 0);
905
+ __decorate([
906
+ Output()
907
+ ], TsSelect.prototype, "tsBlur", void 0);
908
+ TsSelect = __decorate([
909
+ ProxyCmp({
910
+ inputs: ['disabled', 'error', 'errorMessage', 'helpText', 'label', 'multiple', 'name', 'placeholder', 'required', 'size', 'value']
911
+ }),
912
+ Component({
913
+ selector: 'ts-select',
914
+ changeDetection: ChangeDetectionStrategy.OnPush,
915
+ template: '<ng-content></ng-content>',
916
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
917
+ inputs: ['disabled', 'error', 'errorMessage', 'helpText', 'label', 'multiple', 'name', 'placeholder', 'required', 'size', 'value'],
918
+ outputs: ['tsChange', 'tsFocus', 'tsBlur'],
919
+ standalone: false
920
+ })
921
+ ], TsSelect);
922
+ export { TsSelect };
923
+ let TsSkeleton = class TsSkeleton {
924
+ z;
925
+ el;
926
+ constructor(c, r, z) {
927
+ this.z = z;
928
+ c.detach();
929
+ this.el = r.nativeElement;
930
+ }
931
+ };
932
+ TsSkeleton = __decorate([
933
+ ProxyCmp({
934
+ inputs: ['animation', 'height', 'lines', 'variant', 'width']
935
+ }),
936
+ Component({
937
+ selector: 'ts-skeleton',
938
+ changeDetection: ChangeDetectionStrategy.OnPush,
939
+ template: '<ng-content></ng-content>',
940
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
941
+ inputs: ['animation', 'height', 'lines', 'variant', 'width'],
942
+ standalone: false
943
+ })
944
+ ], TsSkeleton);
945
+ export { TsSkeleton };
946
+ let TsSlider = class TsSlider {
947
+ z;
948
+ el;
949
+ tsInput = new EventEmitter();
950
+ tsChange = new EventEmitter();
951
+ constructor(c, r, z) {
952
+ this.z = z;
953
+ c.detach();
954
+ this.el = r.nativeElement;
955
+ }
956
+ };
957
+ __decorate([
958
+ Output()
959
+ ], TsSlider.prototype, "tsInput", void 0);
960
+ __decorate([
961
+ Output()
962
+ ], TsSlider.prototype, "tsChange", void 0);
963
+ TsSlider = __decorate([
964
+ ProxyCmp({
965
+ inputs: ['disabled', 'label', 'max', 'min', 'showValue', 'size', 'step', 'value']
966
+ }),
967
+ Component({
968
+ selector: 'ts-slider',
969
+ changeDetection: ChangeDetectionStrategy.OnPush,
970
+ template: '<ng-content></ng-content>',
971
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
972
+ inputs: ['disabled', 'label', 'max', 'min', 'showValue', 'size', 'step', 'value'],
973
+ outputs: ['tsInput', 'tsChange'],
974
+ standalone: false
975
+ })
976
+ ], TsSlider);
977
+ export { TsSlider };
978
+ let TsSpacer = class TsSpacer {
979
+ z;
980
+ el;
981
+ constructor(c, r, z) {
982
+ this.z = z;
983
+ c.detach();
984
+ this.el = r.nativeElement;
985
+ }
986
+ };
987
+ TsSpacer = __decorate([
988
+ ProxyCmp({
989
+ inputs: ['axis', 'size']
990
+ }),
991
+ Component({
992
+ selector: 'ts-spacer',
993
+ changeDetection: ChangeDetectionStrategy.OnPush,
994
+ template: '<ng-content></ng-content>',
995
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
996
+ inputs: ['axis', 'size'],
997
+ standalone: false
998
+ })
999
+ ], TsSpacer);
1000
+ export { TsSpacer };
1001
+ let TsSpinner = class TsSpinner {
1002
+ z;
1003
+ el;
1004
+ constructor(c, r, z) {
1005
+ this.z = z;
1006
+ c.detach();
1007
+ this.el = r.nativeElement;
1008
+ }
1009
+ };
1010
+ TsSpinner = __decorate([
1011
+ ProxyCmp({
1012
+ inputs: ['color', 'label', 'size']
1013
+ }),
1014
+ Component({
1015
+ selector: 'ts-spinner',
1016
+ changeDetection: ChangeDetectionStrategy.OnPush,
1017
+ template: '<ng-content></ng-content>',
1018
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1019
+ inputs: ['color', 'label', 'size'],
1020
+ standalone: false
1021
+ })
1022
+ ], TsSpinner);
1023
+ export { TsSpinner };
1024
+ let TsStack = class TsStack {
1025
+ z;
1026
+ el;
1027
+ constructor(c, r, z) {
1028
+ this.z = z;
1029
+ c.detach();
1030
+ this.el = r.nativeElement;
1031
+ }
1032
+ };
1033
+ TsStack = __decorate([
1034
+ ProxyCmp({
1035
+ inputs: ['align', 'gap']
1036
+ }),
1037
+ Component({
1038
+ selector: 'ts-stack',
1039
+ changeDetection: ChangeDetectionStrategy.OnPush,
1040
+ template: '<ng-content></ng-content>',
1041
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1042
+ inputs: ['align', 'gap'],
1043
+ standalone: false
1044
+ })
1045
+ ], TsStack);
1046
+ export { TsStack };
1047
+ let TsStep = class TsStep {
1048
+ z;
1049
+ el;
1050
+ constructor(c, r, z) {
1051
+ this.z = z;
1052
+ c.detach();
1053
+ this.el = r.nativeElement;
1054
+ }
1055
+ };
1056
+ TsStep = __decorate([
1057
+ ProxyCmp({
1058
+ inputs: ['completed', 'description', 'disabled', 'error', 'icon', 'label']
1059
+ }),
1060
+ Component({
1061
+ selector: 'ts-step',
1062
+ changeDetection: ChangeDetectionStrategy.OnPush,
1063
+ template: '<ng-content></ng-content>',
1064
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1065
+ inputs: ['completed', 'description', 'disabled', 'error', 'icon', 'label'],
1066
+ standalone: false
1067
+ })
1068
+ ], TsStep);
1069
+ export { TsStep };
1070
+ let TsStepper = class TsStepper {
1071
+ z;
1072
+ el;
1073
+ constructor(c, r, z) {
1074
+ this.z = z;
1075
+ c.detach();
1076
+ this.el = r.nativeElement;
1077
+ }
1078
+ };
1079
+ TsStepper = __decorate([
1080
+ ProxyCmp({
1081
+ inputs: ['activeStep', 'linear', 'orientation']
1082
+ }),
1083
+ Component({
1084
+ selector: 'ts-stepper',
1085
+ changeDetection: ChangeDetectionStrategy.OnPush,
1086
+ template: '<ng-content></ng-content>',
1087
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1088
+ inputs: ['activeStep', 'linear', 'orientation'],
1089
+ standalone: false
1090
+ })
1091
+ ], TsStepper);
1092
+ export { TsStepper };
1093
+ let TsSwitchGroup = class TsSwitchGroup {
1094
+ z;
1095
+ el;
1096
+ tsChange = new EventEmitter();
1097
+ constructor(c, r, z) {
1098
+ this.z = z;
1099
+ c.detach();
1100
+ this.el = r.nativeElement;
1101
+ }
1102
+ };
1103
+ __decorate([
1104
+ Output()
1105
+ ], TsSwitchGroup.prototype, "tsChange", void 0);
1106
+ TsSwitchGroup = __decorate([
1107
+ ProxyCmp({
1108
+ inputs: ['disabled', 'fullWidth', 'size', 'value']
1109
+ }),
1110
+ Component({
1111
+ selector: 'ts-switch-group',
1112
+ changeDetection: ChangeDetectionStrategy.OnPush,
1113
+ template: '<ng-content></ng-content>',
1114
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1115
+ inputs: ['disabled', 'fullWidth', 'size', 'value'],
1116
+ outputs: ['tsChange'],
1117
+ standalone: false
1118
+ })
1119
+ ], TsSwitchGroup);
1120
+ export { TsSwitchGroup };
1121
+ let TsSwitchOption = class TsSwitchOption {
1122
+ z;
1123
+ el;
1124
+ constructor(c, r, z) {
1125
+ this.z = z;
1126
+ c.detach();
1127
+ this.el = r.nativeElement;
1128
+ }
1129
+ };
1130
+ TsSwitchOption = __decorate([
1131
+ ProxyCmp({
1132
+ inputs: ['active', 'disabled', 'icon', 'value']
1133
+ }),
1134
+ Component({
1135
+ selector: 'ts-switch-option',
1136
+ changeDetection: ChangeDetectionStrategy.OnPush,
1137
+ template: '<ng-content></ng-content>',
1138
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1139
+ inputs: ['active', 'disabled', 'icon', 'value'],
1140
+ standalone: false
1141
+ })
1142
+ ], TsSwitchOption);
1143
+ export { TsSwitchOption };
1144
+ let TsTabPanel = class TsTabPanel {
1145
+ z;
1146
+ el;
1147
+ constructor(c, r, z) {
1148
+ this.z = z;
1149
+ c.detach();
1150
+ this.el = r.nativeElement;
1151
+ }
1152
+ };
1153
+ TsTabPanel = __decorate([
1154
+ ProxyCmp({
1155
+ inputs: ['disabled', 'icon', 'tab', 'value']
1156
+ }),
1157
+ Component({
1158
+ selector: 'ts-tab-panel',
1159
+ changeDetection: ChangeDetectionStrategy.OnPush,
1160
+ template: '<ng-content></ng-content>',
1161
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1162
+ inputs: ['disabled', 'icon', { name: 'tab', required: true }, { name: 'value', required: true }],
1163
+ standalone: false
1164
+ })
1165
+ ], TsTabPanel);
1166
+ export { TsTabPanel };
1167
+ let TsTable = class TsTable {
1168
+ z;
1169
+ el;
1170
+ constructor(c, r, z) {
1171
+ this.z = z;
1172
+ c.detach();
1173
+ this.el = r.nativeElement;
1174
+ }
1175
+ };
1176
+ TsTable = __decorate([
1177
+ ProxyCmp({
1178
+ inputs: ['bordered', 'compact', 'hoverable', 'stickyHeader', 'striped']
1179
+ }),
1180
+ Component({
1181
+ selector: 'ts-table',
1182
+ changeDetection: ChangeDetectionStrategy.OnPush,
1183
+ template: '<ng-content></ng-content>',
1184
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1185
+ inputs: ['bordered', 'compact', 'hoverable', 'stickyHeader', 'striped'],
1186
+ standalone: false
1187
+ })
1188
+ ], TsTable);
1189
+ export { TsTable };
1190
+ let TsTabs = class TsTabs {
1191
+ z;
1192
+ el;
1193
+ tsChange = new EventEmitter();
1194
+ constructor(c, r, z) {
1195
+ this.z = z;
1196
+ c.detach();
1197
+ this.el = r.nativeElement;
1198
+ }
1199
+ };
1200
+ __decorate([
1201
+ Output()
1202
+ ], TsTabs.prototype, "tsChange", void 0);
1203
+ TsTabs = __decorate([
1204
+ ProxyCmp({
1205
+ inputs: ['size', 'value', 'variant']
1206
+ }),
1207
+ Component({
1208
+ selector: 'ts-tabs',
1209
+ changeDetection: ChangeDetectionStrategy.OnPush,
1210
+ template: '<ng-content></ng-content>',
1211
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1212
+ inputs: ['size', 'value', 'variant'],
1213
+ outputs: ['tsChange'],
1214
+ standalone: false
1215
+ })
1216
+ ], TsTabs);
1217
+ export { TsTabs };
1218
+ let TsTextarea = class TsTextarea {
1219
+ z;
1220
+ el;
1221
+ tsInput = new EventEmitter();
1222
+ tsChange = new EventEmitter();
1223
+ tsFocus = new EventEmitter();
1224
+ tsBlur = new EventEmitter();
1225
+ constructor(c, r, z) {
1226
+ this.z = z;
1227
+ c.detach();
1228
+ this.el = r.nativeElement;
1229
+ }
1230
+ };
1231
+ __decorate([
1232
+ Output()
1233
+ ], TsTextarea.prototype, "tsInput", void 0);
1234
+ __decorate([
1235
+ Output()
1236
+ ], TsTextarea.prototype, "tsChange", void 0);
1237
+ __decorate([
1238
+ Output()
1239
+ ], TsTextarea.prototype, "tsFocus", void 0);
1240
+ __decorate([
1241
+ Output()
1242
+ ], TsTextarea.prototype, "tsBlur", void 0);
1243
+ TsTextarea = __decorate([
1244
+ ProxyCmp({
1245
+ inputs: ['disabled', 'error', 'errorMessage', 'helpText', 'label', 'maxlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'size', 'value'],
1246
+ methods: ['setFocus', 'selectText']
1247
+ }),
1248
+ Component({
1249
+ selector: 'ts-textarea',
1250
+ changeDetection: ChangeDetectionStrategy.OnPush,
1251
+ template: '<ng-content></ng-content>',
1252
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1253
+ inputs: ['disabled', 'error', 'errorMessage', 'helpText', 'label', 'maxlength', 'name', 'placeholder', 'readonly', 'required', 'resize', 'rows', 'size', 'value'],
1254
+ outputs: ['tsInput', 'tsChange', 'tsFocus', 'tsBlur'],
1255
+ standalone: false
1256
+ })
1257
+ ], TsTextarea);
1258
+ export { TsTextarea };
1259
+ let TsToast = class TsToast {
1260
+ z;
1261
+ el;
1262
+ tsClose = new EventEmitter();
1263
+ constructor(c, r, z) {
1264
+ this.z = z;
1265
+ c.detach();
1266
+ this.el = r.nativeElement;
1267
+ }
1268
+ };
1269
+ __decorate([
1270
+ Output()
1271
+ ], TsToast.prototype, "tsClose", void 0);
1272
+ TsToast = __decorate([
1273
+ ProxyCmp({
1274
+ inputs: ['dismissible', 'duration', 'open', 'position', 'variant'],
1275
+ methods: ['close', 'show']
1276
+ }),
1277
+ Component({
1278
+ selector: 'ts-toast',
1279
+ changeDetection: ChangeDetectionStrategy.OnPush,
1280
+ template: '<ng-content></ng-content>',
1281
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1282
+ inputs: ['dismissible', 'duration', 'open', 'position', 'variant'],
1283
+ outputs: ['tsClose'],
1284
+ standalone: false
1285
+ })
1286
+ ], TsToast);
1287
+ export { TsToast };
1288
+ let TsToggle = class TsToggle {
1289
+ z;
1290
+ el;
1291
+ tsChange = new EventEmitter();
1292
+ constructor(c, r, z) {
1293
+ this.z = z;
1294
+ c.detach();
1295
+ this.el = r.nativeElement;
1296
+ }
1297
+ };
1298
+ __decorate([
1299
+ Output()
1300
+ ], TsToggle.prototype, "tsChange", void 0);
1301
+ TsToggle = __decorate([
1302
+ ProxyCmp({
1303
+ inputs: ['checked', 'disabled', 'name', 'size', 'value'],
1304
+ methods: ['toggle']
1305
+ }),
1306
+ Component({
1307
+ selector: 'ts-toggle',
1308
+ changeDetection: ChangeDetectionStrategy.OnPush,
1309
+ template: '<ng-content></ng-content>',
1310
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1311
+ inputs: ['checked', 'disabled', 'name', 'size', 'value'],
1312
+ outputs: ['tsChange'],
1313
+ standalone: false
1314
+ })
1315
+ ], TsToggle);
1316
+ export { TsToggle };
1317
+ let TsToolbar = class TsToolbar {
1318
+ z;
1319
+ el;
1320
+ constructor(c, r, z) {
1321
+ this.z = z;
1322
+ c.detach();
1323
+ this.el = r.nativeElement;
1324
+ }
1325
+ };
1326
+ TsToolbar = __decorate([
1327
+ ProxyCmp({
1328
+ inputs: ['size', 'variant']
1329
+ }),
1330
+ Component({
1331
+ selector: 'ts-toolbar',
1332
+ changeDetection: ChangeDetectionStrategy.OnPush,
1333
+ template: '<ng-content></ng-content>',
1334
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1335
+ inputs: ['size', 'variant'],
1336
+ standalone: false
1337
+ })
1338
+ ], TsToolbar);
1339
+ export { TsToolbar };
1340
+ let TsTooltip = class TsTooltip {
1341
+ z;
1342
+ el;
1343
+ constructor(c, r, z) {
1344
+ this.z = z;
1345
+ c.detach();
1346
+ this.el = r.nativeElement;
1347
+ }
1348
+ };
1349
+ TsTooltip = __decorate([
1350
+ ProxyCmp({
1351
+ inputs: ['content', 'disabled', 'hideDelay', 'placement', 'showDelay'],
1352
+ methods: ['show', 'hide']
1353
+ }),
1354
+ Component({
1355
+ selector: 'ts-tooltip',
1356
+ changeDetection: ChangeDetectionStrategy.OnPush,
1357
+ template: '<ng-content></ng-content>',
1358
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1359
+ inputs: ['content', 'disabled', 'hideDelay', 'placement', 'showDelay'],
1360
+ standalone: false
1361
+ })
1362
+ ], TsTooltip);
1363
+ export { TsTooltip };
1364
+ let TsTree = class TsTree {
1365
+ z;
1366
+ el;
1367
+ constructor(c, r, z) {
1368
+ this.z = z;
1369
+ c.detach();
1370
+ this.el = r.nativeElement;
1371
+ }
1372
+ };
1373
+ TsTree = __decorate([
1374
+ ProxyCmp({
1375
+ inputs: ['selectable']
1376
+ }),
1377
+ Component({
1378
+ selector: 'ts-tree',
1379
+ changeDetection: ChangeDetectionStrategy.OnPush,
1380
+ template: '<ng-content></ng-content>',
1381
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1382
+ inputs: ['selectable'],
1383
+ standalone: false
1384
+ })
1385
+ ], TsTree);
1386
+ export { TsTree };
1387
+ let TsTreeItem = class TsTreeItem {
1388
+ z;
1389
+ el;
1390
+ tsToggle = new EventEmitter();
1391
+ tsSelect = new EventEmitter();
1392
+ constructor(c, r, z) {
1393
+ this.z = z;
1394
+ c.detach();
1395
+ this.el = r.nativeElement;
1396
+ }
1397
+ };
1398
+ __decorate([
1399
+ Output()
1400
+ ], TsTreeItem.prototype, "tsToggle", void 0);
1401
+ __decorate([
1402
+ Output()
1403
+ ], TsTreeItem.prototype, "tsSelect", void 0);
1404
+ TsTreeItem = __decorate([
1405
+ ProxyCmp({
1406
+ inputs: ['disabled', 'expanded', 'icon', 'label', 'selected']
1407
+ }),
1408
+ Component({
1409
+ selector: 'ts-tree-item',
1410
+ changeDetection: ChangeDetectionStrategy.OnPush,
1411
+ template: '<ng-content></ng-content>',
1412
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1413
+ inputs: ['disabled', 'expanded', 'icon', 'label', 'selected'],
1414
+ outputs: ['tsToggle', 'tsSelect'],
1415
+ standalone: false
1416
+ })
1417
+ ], TsTreeItem);
1418
+ export { TsTreeItem };