@scania/tegel-angular-17 1.28.0 → 1.28.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.
Files changed (40) hide show
  1. package/ng-package.json +7 -0
  2. package/package.json +4 -17
  3. package/src/lib/components.module.ts +35 -0
  4. package/{lib/directives/tds-dropdown-value-accessor.d.ts → src/lib/directives/tds-dropdown-value-accessor.ts} +18 -5
  5. package/src/lib/directives/tds-radio-value-accessor.ts +29 -0
  6. package/src/lib/stencil-generated/angular-component-lib/utils.ts +65 -0
  7. package/src/lib/stencil-generated/boolean-value-accessor.ts +28 -0
  8. package/src/lib/stencil-generated/components.ts +2063 -0
  9. package/src/lib/stencil-generated/index.ts +87 -0
  10. package/src/lib/stencil-generated/number-value-accessor.ts +29 -0
  11. package/src/lib/stencil-generated/text-value-accessor.ts +24 -0
  12. package/src/lib/stencil-generated/value-accessor.ts +39 -0
  13. package/{public-api.d.ts → src/public-api.ts} +4 -0
  14. package/tsconfig.lib.json +14 -0
  15. package/tsconfig.lib.prod.json +10 -0
  16. package/tsconfig.spec.json +14 -0
  17. package/esm2022/lib/components.module.mjs +0 -58
  18. package/esm2022/lib/directives/tds-dropdown-value-accessor.mjs +0 -36
  19. package/esm2022/lib/directives/tds-radio-value-accessor.mjs +0 -41
  20. package/esm2022/lib/stencil-generated/angular-component-lib/utils.mjs +0 -59
  21. package/esm2022/lib/stencil-generated/boolean-value-accessor.mjs +0 -39
  22. package/esm2022/lib/stencil-generated/components.mjs +0 -2070
  23. package/esm2022/lib/stencil-generated/index.mjs +0 -86
  24. package/esm2022/lib/stencil-generated/number-value-accessor.mjs +0 -40
  25. package/esm2022/lib/stencil-generated/text-value-accessor.mjs +0 -35
  26. package/esm2022/lib/stencil-generated/value-accessor.mjs +0 -40
  27. package/esm2022/public-api.mjs +0 -12
  28. package/esm2022/scania-tegel-angular-17.mjs +0 -5
  29. package/fesm2022/scania-tegel-angular-17.mjs +0 -2399
  30. package/fesm2022/scania-tegel-angular-17.mjs.map +0 -1
  31. package/index.d.ts +0 -5
  32. package/lib/components.module.d.ts +0 -12
  33. package/lib/directives/tds-radio-value-accessor.d.ts +0 -13
  34. package/lib/stencil-generated/angular-component-lib/utils.d.ts +0 -9
  35. package/lib/stencil-generated/boolean-value-accessor.d.ts +0 -9
  36. package/lib/stencil-generated/components.d.ts +0 -1002
  37. package/lib/stencil-generated/index.d.ts +0 -2
  38. package/lib/stencil-generated/number-value-accessor.d.ts +0 -9
  39. package/lib/stencil-generated/text-value-accessor.d.ts +0 -8
  40. package/lib/stencil-generated/value-accessor.d.ts +0 -18
@@ -0,0 +1,2063 @@
1
+ /* tslint:disable */
2
+ /* auto-generated angular directive proxies */
3
+ import { ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, EventEmitter, NgZone } from '@angular/core';
4
+
5
+ import { ProxyCmp, proxyOutputs } from './angular-component-lib/utils';
6
+
7
+ import { Components } from '@scania/tegel';
8
+
9
+
10
+ @ProxyCmp({
11
+ inputs: ['hideLastBorder', 'modeVariant']
12
+ })
13
+ @Component({
14
+ selector: 'tds-accordion',
15
+ changeDetection: ChangeDetectionStrategy.OnPush,
16
+ template: '<ng-content></ng-content>',
17
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
18
+ inputs: ['hideLastBorder', 'modeVariant'],
19
+ })
20
+ export class TdsAccordion {
21
+ protected el: HTMLElement;
22
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
23
+ c.detach();
24
+ this.el = r.nativeElement;
25
+ }
26
+ }
27
+
28
+
29
+ export declare interface TdsAccordion extends Components.TdsAccordion {}
30
+
31
+
32
+ @ProxyCmp({
33
+ inputs: ['ariaLevelValue', 'disabled', 'expandIconPosition', 'expanded', 'header', 'paddingReset'],
34
+ methods: ['toggleAccordionItem']
35
+ })
36
+ @Component({
37
+ selector: 'tds-accordion-item',
38
+ changeDetection: ChangeDetectionStrategy.OnPush,
39
+ template: '<ng-content></ng-content>',
40
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
41
+ inputs: ['ariaLevelValue', 'disabled', 'expandIconPosition', 'expanded', 'header', 'paddingReset'],
42
+ })
43
+ export class TdsAccordionItem {
44
+ protected el: HTMLElement;
45
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
46
+ c.detach();
47
+ this.el = r.nativeElement;
48
+ proxyOutputs(this, this.el, ['tdsToggle']);
49
+ }
50
+ }
51
+
52
+
53
+ export declare interface TdsAccordionItem extends Components.TdsAccordionItem {
54
+ /**
55
+ * Fires when the Accordion Item is clicked, but before it is closed or opened.
56
+ */
57
+ tdsToggle: EventEmitter<CustomEvent<{ expanded: boolean; }>>;
58
+ }
59
+
60
+
61
+ @ProxyCmp({
62
+ inputs: ['hidden', 'size', 'tdsAriaLive', 'value']
63
+ })
64
+ @Component({
65
+ selector: 'tds-badge',
66
+ changeDetection: ChangeDetectionStrategy.OnPush,
67
+ template: '<ng-content></ng-content>',
68
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
69
+ inputs: ['hidden', 'size', 'tdsAriaLive', 'value'],
70
+ })
71
+ export class TdsBadge {
72
+ protected el: HTMLElement;
73
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
74
+ c.detach();
75
+ this.el = r.nativeElement;
76
+ }
77
+ }
78
+
79
+
80
+ export declare interface TdsBadge extends Components.TdsBadge {}
81
+
82
+
83
+ @ProxyCmp({
84
+ inputs: ['bannerId', 'header', 'hidden', 'icon', 'roleType', 'subheader', 'variant'],
85
+ methods: ['hideBanner', 'showBanner']
86
+ })
87
+ @Component({
88
+ selector: 'tds-banner',
89
+ changeDetection: ChangeDetectionStrategy.OnPush,
90
+ template: '<ng-content></ng-content>',
91
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
92
+ inputs: ['bannerId', 'header', 'hidden', 'icon', 'roleType', 'subheader', 'variant'],
93
+ })
94
+ export class TdsBanner {
95
+ protected el: HTMLElement;
96
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
97
+ c.detach();
98
+ this.el = r.nativeElement;
99
+ proxyOutputs(this, this.el, ['tdsClose']);
100
+ }
101
+ }
102
+
103
+
104
+ export declare interface TdsBanner extends Components.TdsBanner {
105
+ /**
106
+ * Sends a unique Banner identifier when the close button is pressed.
107
+ */
108
+ tdsClose: EventEmitter<CustomEvent<{ bannerId: string; }>>;
109
+ }
110
+
111
+
112
+ @ProxyCmp({
113
+ inputs: ['componentTag', 'modeVariant']
114
+ })
115
+ @Component({
116
+ selector: 'tds-block',
117
+ changeDetection: ChangeDetectionStrategy.OnPush,
118
+ template: '<ng-content></ng-content>',
119
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
120
+ inputs: ['componentTag', 'modeVariant'],
121
+ })
122
+ export class TdsBlock {
123
+ protected el: HTMLElement;
124
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
125
+ c.detach();
126
+ this.el = r.nativeElement;
127
+ }
128
+ }
129
+
130
+
131
+ export declare interface TdsBlock extends Components.TdsBlock {}
132
+
133
+
134
+ @ProxyCmp({
135
+ inputs: ['cellKey', 'cellValue', 'disablePadding', 'textAlign']
136
+ })
137
+ @Component({
138
+ selector: 'tds-body-cell',
139
+ changeDetection: ChangeDetectionStrategy.OnPush,
140
+ template: '<ng-content></ng-content>',
141
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
142
+ inputs: ['cellKey', 'cellValue', 'disablePadding', 'textAlign'],
143
+ })
144
+ export class TdsBodyCell {
145
+ protected el: HTMLElement;
146
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
147
+ c.detach();
148
+ this.el = r.nativeElement;
149
+ }
150
+ }
151
+
152
+
153
+ export declare interface TdsBodyCell extends Components.TdsBodyCell {}
154
+
155
+
156
+ @ProxyCmp({
157
+ inputs: ['current']
158
+ })
159
+ @Component({
160
+ selector: 'tds-breadcrumb',
161
+ changeDetection: ChangeDetectionStrategy.OnPush,
162
+ template: '<ng-content></ng-content>',
163
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
164
+ inputs: ['current'],
165
+ })
166
+ export class TdsBreadcrumb {
167
+ protected el: HTMLElement;
168
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
169
+ c.detach();
170
+ this.el = r.nativeElement;
171
+ }
172
+ }
173
+
174
+
175
+ export declare interface TdsBreadcrumb extends Components.TdsBreadcrumb {}
176
+
177
+
178
+ @ProxyCmp({
179
+ inputs: ['tdsAriaLabel']
180
+ })
181
+ @Component({
182
+ selector: 'tds-breadcrumbs',
183
+ changeDetection: ChangeDetectionStrategy.OnPush,
184
+ template: '<ng-content></ng-content>',
185
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
186
+ inputs: ['tdsAriaLabel'],
187
+ })
188
+ export class TdsBreadcrumbs {
189
+ protected el: HTMLElement;
190
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
191
+ c.detach();
192
+ this.el = r.nativeElement;
193
+ }
194
+ }
195
+
196
+
197
+ export declare interface TdsBreadcrumbs extends Components.TdsBreadcrumbs {}
198
+
199
+
200
+ @ProxyCmp({
201
+ inputs: ['animation', 'disabled', 'fullbleed', 'modeVariant', 'size', 'tdsAriaLabel', 'text', 'type', 'variant']
202
+ })
203
+ @Component({
204
+ selector: 'tds-button',
205
+ changeDetection: ChangeDetectionStrategy.OnPush,
206
+ template: '<ng-content></ng-content>',
207
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
208
+ inputs: ['animation', 'disabled', 'fullbleed', 'modeVariant', 'size', 'tdsAriaLabel', 'text', 'type', 'variant'],
209
+ })
210
+ export class TdsButton {
211
+ protected el: HTMLElement;
212
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
213
+ c.detach();
214
+ this.el = r.nativeElement;
215
+ }
216
+ }
217
+
218
+
219
+ export declare interface TdsButton extends Components.TdsButton {}
220
+
221
+
222
+ @ProxyCmp({
223
+ inputs: ['bodyDivider', 'bodyImg', 'bodyImgAlt', 'cardId', 'clickable', 'header', 'imagePlacement', 'modeVariant', 'stretch', 'subheader']
224
+ })
225
+ @Component({
226
+ selector: 'tds-card',
227
+ changeDetection: ChangeDetectionStrategy.OnPush,
228
+ template: '<ng-content></ng-content>',
229
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
230
+ inputs: ['bodyDivider', 'bodyImg', 'bodyImgAlt', 'cardId', 'clickable', 'header', 'imagePlacement', 'modeVariant', 'stretch', 'subheader'],
231
+ })
232
+ export class TdsCard {
233
+ protected el: HTMLElement;
234
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
235
+ c.detach();
236
+ this.el = r.nativeElement;
237
+ proxyOutputs(this, this.el, ['tdsClick']);
238
+ }
239
+ }
240
+
241
+
242
+ export declare interface TdsCard extends Components.TdsCard {
243
+ /**
244
+ * Sends unique Card identifier when the Card is clicked, if clickable=true
245
+ */
246
+ tdsClick: EventEmitter<CustomEvent<{ cardId: string; }>>;
247
+ }
248
+
249
+
250
+ @ProxyCmp({
251
+ inputs: ['checkboxId', 'checked', 'disabled', 'indeterminate', 'name', 'required', 'tdsAriaDescribedby', 'tdsAriaLabel', 'value'],
252
+ methods: ['toggleCheckbox']
253
+ })
254
+ @Component({
255
+ selector: 'tds-checkbox',
256
+ changeDetection: ChangeDetectionStrategy.OnPush,
257
+ template: '<ng-content></ng-content>',
258
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
259
+ inputs: ['checkboxId', 'checked', 'disabled', 'indeterminate', 'name', 'required', 'tdsAriaDescribedby', 'tdsAriaLabel', 'value'],
260
+ })
261
+ export class TdsCheckbox {
262
+ protected el: HTMLElement;
263
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
264
+ c.detach();
265
+ this.el = r.nativeElement;
266
+ proxyOutputs(this, this.el, ['tdsChange', 'tdsFocus', 'tdsBlur']);
267
+ }
268
+ }
269
+
270
+
271
+ export declare interface TdsCheckbox extends Components.TdsCheckbox {
272
+ /**
273
+ * Sends unique Checkbox identifier and checked status when it is checked/unchecked.
274
+ */
275
+ tdsChange: EventEmitter<CustomEvent<{ checkboxId: string; checked: boolean; indeterminate: boolean; value?: string; }>>;
276
+ /**
277
+ * Focus event for the Checkbox
278
+ */
279
+ tdsFocus: EventEmitter<CustomEvent<FocusEvent>>;
280
+ /**
281
+ * Blur event for the Checkbox
282
+ */
283
+ tdsBlur: EventEmitter<CustomEvent<FocusEvent>>;
284
+ }
285
+
286
+
287
+ @ProxyCmp({
288
+ inputs: ['checked', 'chipId', 'disabled', 'name', 'size', 'tdsAriaLabel', 'type', 'value']
289
+ })
290
+ @Component({
291
+ selector: 'tds-chip',
292
+ changeDetection: ChangeDetectionStrategy.OnPush,
293
+ template: '<ng-content></ng-content>',
294
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
295
+ inputs: ['checked', 'chipId', 'disabled', 'name', 'size', 'tdsAriaLabel', 'type', 'value'],
296
+ })
297
+ export class TdsChip {
298
+ protected el: HTMLElement;
299
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
300
+ c.detach();
301
+ this.el = r.nativeElement;
302
+ proxyOutputs(this, this.el, ['tdsChange', 'tdsClick']);
303
+ }
304
+ }
305
+
306
+
307
+ export declare interface TdsChip extends Components.TdsChip {
308
+ /**
309
+ * Sends unique Chip identifier and value when it is changed (checked/unchecked).
310
+ Valid only for type checkbox and radio.
311
+ If no ID is specified, a random one will be generated.
312
+ To use this listener, don't use the randomized ID, use a specific one of your choosing.
313
+ */
314
+ tdsChange: EventEmitter<CustomEvent<{ chipId: string; value: string; checked?: boolean; }>>;
315
+ /**
316
+ * Sends unique Chip identifier when Chip is clicked.
317
+ Valid only for type button.
318
+ If no ID is specified, a random one will be generated.
319
+ To use this listener, don't use the randomized ID, use a specific one of your choosing.
320
+ */
321
+ tdsClick: EventEmitter<CustomEvent<{ chipId: string; }>>;
322
+ }
323
+
324
+
325
+ @ProxyCmp({
326
+ })
327
+ @Component({
328
+ selector: 'tds-core-header-item',
329
+ changeDetection: ChangeDetectionStrategy.OnPush,
330
+ template: '<ng-content></ng-content>',
331
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
332
+ inputs: [],
333
+ })
334
+ export class TdsCoreHeaderItem {
335
+ protected el: HTMLElement;
336
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
337
+ c.detach();
338
+ this.el = r.nativeElement;
339
+ }
340
+ }
341
+
342
+
343
+ export declare interface TdsCoreHeaderItem extends Components.TdsCoreHeaderItem {}
344
+
345
+
346
+ @ProxyCmp({
347
+ inputs: ['autofocus', 'defaultValue', 'disabled', 'helper', 'label', 'max', 'min', 'modeVariant', 'name', 'noMinWidth', 'size', 'state', 'type', 'value'],
348
+ methods: ['reset', 'setValue']
349
+ })
350
+ @Component({
351
+ selector: 'tds-datetime',
352
+ changeDetection: ChangeDetectionStrategy.OnPush,
353
+ template: '<ng-content></ng-content>',
354
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
355
+ inputs: ['autofocus', 'defaultValue', 'disabled', 'helper', 'label', 'max', 'min', 'modeVariant', 'name', 'noMinWidth', 'size', 'state', 'type', 'value'],
356
+ })
357
+ export class TdsDatetime {
358
+ protected el: HTMLElement;
359
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
360
+ c.detach();
361
+ this.el = r.nativeElement;
362
+ proxyOutputs(this, this.el, ['tdsChange', 'tdsBlur', 'tdsFocus', 'tdsInput']);
363
+ }
364
+ }
365
+
366
+
367
+ export declare interface TdsDatetime extends Components.TdsDatetime {
368
+ /**
369
+ * Change event for the Datetime
370
+ */
371
+ tdsChange: EventEmitter<CustomEvent<any>>;
372
+ /**
373
+ * Blur event for the Datetime
374
+ */
375
+ tdsBlur: EventEmitter<CustomEvent<FocusEvent>>;
376
+ /**
377
+ * Focus event for the Datetime
378
+ */
379
+ tdsFocus: EventEmitter<CustomEvent<FocusEvent>>;
380
+ /**
381
+ * Input event for the Datetime
382
+ */
383
+ tdsInput: EventEmitter<CustomEvent<InputEvent>>;
384
+ }
385
+
386
+
387
+ @ProxyCmp({
388
+ inputs: ['orientation']
389
+ })
390
+ @Component({
391
+ selector: 'tds-divider',
392
+ changeDetection: ChangeDetectionStrategy.OnPush,
393
+ template: '<ng-content></ng-content>',
394
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
395
+ inputs: ['orientation'],
396
+ })
397
+ export class TdsDivider {
398
+ protected el: HTMLElement;
399
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
400
+ c.detach();
401
+ this.el = r.nativeElement;
402
+ }
403
+ }
404
+
405
+
406
+ export declare interface TdsDivider extends Components.TdsDivider {}
407
+
408
+
409
+ @ProxyCmp({
410
+ inputs: ['animation', 'defaultValue', 'disabled', 'error', 'filter', 'helper', 'label', 'labelPosition', 'modeVariant', 'multiselect', 'name', 'noResultText', 'normalizeText', 'openDirection', 'placeholder', 'size', 'tdsAriaLabel', 'value'],
411
+ methods: ['setValue', 'reset', 'removeValue', 'focusElement', 'close']
412
+ })
413
+ @Component({
414
+ selector: 'tds-dropdown',
415
+ changeDetection: ChangeDetectionStrategy.OnPush,
416
+ template: '<ng-content></ng-content>',
417
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
418
+ inputs: ['animation', 'defaultValue', 'disabled', 'error', 'filter', 'helper', 'label', 'labelPosition', 'modeVariant', 'multiselect', 'name', 'noResultText', 'normalizeText', 'openDirection', 'placeholder', 'size', 'tdsAriaLabel', 'value'],
419
+ })
420
+ export class TdsDropdown {
421
+ protected el: HTMLElement;
422
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
423
+ c.detach();
424
+ this.el = r.nativeElement;
425
+ proxyOutputs(this, this.el, ['tdsChange', 'tdsFocus', 'tdsBlur', 'tdsInput']);
426
+ }
427
+ }
428
+
429
+
430
+ export declare interface TdsDropdown extends Components.TdsDropdown {
431
+ /**
432
+ * Change event for the Dropdown.
433
+ */
434
+ tdsChange: EventEmitter<CustomEvent<{ name: string; value: string; }>>;
435
+ /**
436
+ * Focus event for the Dropdown.
437
+ */
438
+ tdsFocus: EventEmitter<CustomEvent<FocusEvent>>;
439
+ /**
440
+ * Blur event for the Dropdown.
441
+ */
442
+ tdsBlur: EventEmitter<CustomEvent<FocusEvent>>;
443
+ /**
444
+ * Input event for the Dropdown.
445
+ */
446
+ tdsInput: EventEmitter<CustomEvent<InputEvent>>;
447
+ }
448
+
449
+
450
+ @ProxyCmp({
451
+ inputs: ['disabled', 'value'],
452
+ methods: ['setSelected']
453
+ })
454
+ @Component({
455
+ selector: 'tds-dropdown-option',
456
+ changeDetection: ChangeDetectionStrategy.OnPush,
457
+ template: '<ng-content></ng-content>',
458
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
459
+ inputs: ['disabled', 'value'],
460
+ })
461
+ export class TdsDropdownOption {
462
+ protected el: HTMLElement;
463
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
464
+ c.detach();
465
+ this.el = r.nativeElement;
466
+ proxyOutputs(this, this.el, ['tdsSelect', 'tdsFocus', 'tdsBlur']);
467
+ }
468
+ }
469
+
470
+
471
+ export declare interface TdsDropdownOption extends Components.TdsDropdownOption {
472
+ /**
473
+ * Click event for the Dropdown option.
474
+ */
475
+ tdsSelect: EventEmitter<CustomEvent<{ selected: boolean; value: string; }>>;
476
+ /**
477
+ * Focus event for the Dropdown option.
478
+ */
479
+ tdsFocus: EventEmitter<CustomEvent<FocusEvent>>;
480
+ /**
481
+ * Blur event for the Dropdown option.
482
+ */
483
+ tdsBlur: EventEmitter<CustomEvent<FocusEvent>>;
484
+ }
485
+
486
+
487
+ @ProxyCmp({
488
+ inputs: ['disabled']
489
+ })
490
+ @Component({
491
+ selector: 'tds-folder-tab',
492
+ changeDetection: ChangeDetectionStrategy.OnPush,
493
+ template: '<ng-content></ng-content>',
494
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
495
+ inputs: ['disabled'],
496
+ })
497
+ export class TdsFolderTab {
498
+ protected el: HTMLElement;
499
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
500
+ c.detach();
501
+ this.el = r.nativeElement;
502
+ }
503
+ }
504
+
505
+
506
+ export declare interface TdsFolderTab extends Components.TdsFolderTab {}
507
+
508
+
509
+ @ProxyCmp({
510
+ inputs: ['defaultSelectedIndex', 'modeVariant', 'selectedIndex', 'tdsScrollLeftAriaLabel', 'tdsScrollRightAriaLabel'],
511
+ methods: ['selectTab', 'reinitialize']
512
+ })
513
+ @Component({
514
+ selector: 'tds-folder-tabs',
515
+ changeDetection: ChangeDetectionStrategy.OnPush,
516
+ template: '<ng-content></ng-content>',
517
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
518
+ inputs: ['defaultSelectedIndex', 'modeVariant', 'selectedIndex', 'tdsScrollLeftAriaLabel', 'tdsScrollRightAriaLabel'],
519
+ })
520
+ export class TdsFolderTabs {
521
+ protected el: HTMLElement;
522
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
523
+ c.detach();
524
+ this.el = r.nativeElement;
525
+ proxyOutputs(this, this.el, ['tdsChange']);
526
+ }
527
+ }
528
+
529
+
530
+ export declare interface TdsFolderTabs extends Components.TdsFolderTabs {
531
+ /**
532
+ * Event emitted when the selected Tab is changed.
533
+ */
534
+ tdsChange: EventEmitter<CustomEvent<{ selectedTabIndex: number; }>>;
535
+ }
536
+
537
+
538
+ @ProxyCmp({
539
+ inputs: ['modeVariant']
540
+ })
541
+ @Component({
542
+ selector: 'tds-footer',
543
+ changeDetection: ChangeDetectionStrategy.OnPush,
544
+ template: '<ng-content></ng-content>',
545
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
546
+ inputs: ['modeVariant'],
547
+ })
548
+ export class TdsFooter {
549
+ protected el: HTMLElement;
550
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
551
+ c.detach();
552
+ this.el = r.nativeElement;
553
+ }
554
+ }
555
+
556
+
557
+ export declare interface TdsFooter extends Components.TdsFooter {}
558
+
559
+
560
+ @ProxyCmp({
561
+ inputs: ['tdsListAriaLabel', 'titleText']
562
+ })
563
+ @Component({
564
+ selector: 'tds-footer-group',
565
+ changeDetection: ChangeDetectionStrategy.OnPush,
566
+ template: '<ng-content></ng-content>',
567
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
568
+ inputs: ['tdsListAriaLabel', 'titleText'],
569
+ })
570
+ export class TdsFooterGroup {
571
+ protected el: HTMLElement;
572
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
573
+ c.detach();
574
+ this.el = r.nativeElement;
575
+ }
576
+ }
577
+
578
+
579
+ export declare interface TdsFooterGroup extends Components.TdsFooterGroup {}
580
+
581
+
582
+ @ProxyCmp({
583
+ })
584
+ @Component({
585
+ selector: 'tds-footer-item',
586
+ changeDetection: ChangeDetectionStrategy.OnPush,
587
+ template: '<ng-content></ng-content>',
588
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
589
+ inputs: [],
590
+ })
591
+ export class TdsFooterItem {
592
+ protected el: HTMLElement;
593
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
594
+ c.detach();
595
+ this.el = r.nativeElement;
596
+ }
597
+ }
598
+
599
+
600
+ export declare interface TdsFooterItem extends Components.TdsFooterItem {}
601
+
602
+
603
+ @ProxyCmp({
604
+ })
605
+ @Component({
606
+ selector: 'tds-header',
607
+ changeDetection: ChangeDetectionStrategy.OnPush,
608
+ template: '<ng-content></ng-content>',
609
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
610
+ inputs: [],
611
+ })
612
+ export class TdsHeader {
613
+ protected el: HTMLElement;
614
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
615
+ c.detach();
616
+ this.el = r.nativeElement;
617
+ }
618
+ }
619
+
620
+
621
+ export declare interface TdsHeader extends Components.TdsHeader {}
622
+
623
+
624
+ @ProxyCmp({
625
+ })
626
+ @Component({
627
+ selector: 'tds-header-brand-symbol',
628
+ changeDetection: ChangeDetectionStrategy.OnPush,
629
+ template: '<ng-content></ng-content>',
630
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
631
+ inputs: [],
632
+ })
633
+ export class TdsHeaderBrandSymbol {
634
+ protected el: HTMLElement;
635
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
636
+ c.detach();
637
+ this.el = r.nativeElement;
638
+ }
639
+ }
640
+
641
+
642
+ export declare interface TdsHeaderBrandSymbol extends Components.TdsHeaderBrandSymbol {}
643
+
644
+
645
+ @ProxyCmp({
646
+ inputs: ['cellKey', 'cellValue', 'customWidth', 'disablePadding', 'sortable', 'textAlign']
647
+ })
648
+ @Component({
649
+ selector: 'tds-header-cell',
650
+ changeDetection: ChangeDetectionStrategy.OnPush,
651
+ template: '<ng-content></ng-content>',
652
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
653
+ inputs: ['cellKey', 'cellValue', 'customWidth', 'disablePadding', 'sortable', 'textAlign'],
654
+ })
655
+ export class TdsHeaderCell {
656
+ protected el: HTMLElement;
657
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
658
+ c.detach();
659
+ this.el = r.nativeElement;
660
+ proxyOutputs(this, this.el, ['tdsSort']);
661
+ }
662
+ }
663
+
664
+
665
+ export declare interface TdsHeaderCell extends Components.TdsHeaderCell {
666
+ /**
667
+ * Sends unique Table identifier, column key and sorting direction to the tds-table-body component,
668
+ can also be listened to implement custom-sorting logic.
669
+ */
670
+ tdsSort: EventEmitter<CustomEvent<{ tableId: string; columnKey: string; sortingDirection: 'asc' | 'desc'; }>>;
671
+ }
672
+
673
+
674
+ @ProxyCmp({
675
+ inputs: ['label', 'noDropdownIcon', 'selected', 'tdsAriaLabel']
676
+ })
677
+ @Component({
678
+ selector: 'tds-header-dropdown',
679
+ changeDetection: ChangeDetectionStrategy.OnPush,
680
+ template: '<ng-content></ng-content>',
681
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
682
+ inputs: ['label', 'noDropdownIcon', 'selected', 'tdsAriaLabel'],
683
+ })
684
+ export class TdsHeaderDropdown {
685
+ protected el: HTMLElement;
686
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
687
+ c.detach();
688
+ this.el = r.nativeElement;
689
+ }
690
+ }
691
+
692
+
693
+ export declare interface TdsHeaderDropdown extends Components.TdsHeaderDropdown {}
694
+
695
+
696
+ @ProxyCmp({
697
+ inputs: ['size']
698
+ })
699
+ @Component({
700
+ selector: 'tds-header-dropdown-list',
701
+ changeDetection: ChangeDetectionStrategy.OnPush,
702
+ template: '<ng-content></ng-content>',
703
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
704
+ inputs: ['size'],
705
+ })
706
+ export class TdsHeaderDropdownList {
707
+ protected el: HTMLElement;
708
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
709
+ c.detach();
710
+ this.el = r.nativeElement;
711
+ }
712
+ }
713
+
714
+
715
+ export declare interface TdsHeaderDropdownList extends Components.TdsHeaderDropdownList {}
716
+
717
+
718
+ @ProxyCmp({
719
+ inputs: ['selected', 'size']
720
+ })
721
+ @Component({
722
+ selector: 'tds-header-dropdown-list-item',
723
+ changeDetection: ChangeDetectionStrategy.OnPush,
724
+ template: '<ng-content></ng-content>',
725
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
726
+ inputs: ['selected', 'size'],
727
+ })
728
+ export class TdsHeaderDropdownListItem {
729
+ protected el: HTMLElement;
730
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
731
+ c.detach();
732
+ this.el = r.nativeElement;
733
+ }
734
+ }
735
+
736
+
737
+ export declare interface TdsHeaderDropdownListItem extends Components.TdsHeaderDropdownListItem {}
738
+
739
+
740
+ @ProxyCmp({
741
+ inputs: ['header', 'imgAlt', 'imgUrl', 'subheader']
742
+ })
743
+ @Component({
744
+ selector: 'tds-header-dropdown-list-user',
745
+ changeDetection: ChangeDetectionStrategy.OnPush,
746
+ template: '<ng-content></ng-content>',
747
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
748
+ inputs: ['header', 'imgAlt', 'imgUrl', 'subheader'],
749
+ })
750
+ export class TdsHeaderDropdownListUser {
751
+ protected el: HTMLElement;
752
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
753
+ c.detach();
754
+ this.el = r.nativeElement;
755
+ }
756
+ }
757
+
758
+
759
+ export declare interface TdsHeaderDropdownListUser extends Components.TdsHeaderDropdownListUser {}
760
+
761
+
762
+ @ProxyCmp({
763
+ inputs: ['tdsAriaLabel']
764
+ })
765
+ @Component({
766
+ selector: 'tds-header-hamburger',
767
+ changeDetection: ChangeDetectionStrategy.OnPush,
768
+ template: '<ng-content></ng-content>',
769
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
770
+ inputs: ['tdsAriaLabel'],
771
+ })
772
+ export class TdsHeaderHamburger {
773
+ protected el: HTMLElement;
774
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
775
+ c.detach();
776
+ this.el = r.nativeElement;
777
+ }
778
+ }
779
+
780
+
781
+ export declare interface TdsHeaderHamburger extends Components.TdsHeaderHamburger {}
782
+
783
+
784
+ @ProxyCmp({
785
+ inputs: ['active', 'selected']
786
+ })
787
+ @Component({
788
+ selector: 'tds-header-item',
789
+ changeDetection: ChangeDetectionStrategy.OnPush,
790
+ template: '<ng-content></ng-content>',
791
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
792
+ inputs: ['active', 'selected'],
793
+ })
794
+ export class TdsHeaderItem {
795
+ protected el: HTMLElement;
796
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
797
+ c.detach();
798
+ this.el = r.nativeElement;
799
+ }
800
+ }
801
+
802
+
803
+ export declare interface TdsHeaderItem extends Components.TdsHeaderItem {}
804
+
805
+
806
+ @ProxyCmp({
807
+ inputs: ['tdsAriaLabel']
808
+ })
809
+ @Component({
810
+ selector: 'tds-header-launcher',
811
+ changeDetection: ChangeDetectionStrategy.OnPush,
812
+ template: '<ng-content></ng-content>',
813
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
814
+ inputs: ['tdsAriaLabel'],
815
+ })
816
+ export class TdsHeaderLauncher {
817
+ protected el: HTMLElement;
818
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
819
+ c.detach();
820
+ this.el = r.nativeElement;
821
+ }
822
+ }
823
+
824
+
825
+ export declare interface TdsHeaderLauncher extends Components.TdsHeaderLauncher {}
826
+
827
+
828
+ @ProxyCmp({
829
+ inputs: ['active', 'tdsAriaLabel']
830
+ })
831
+ @Component({
832
+ selector: 'tds-header-launcher-button',
833
+ changeDetection: ChangeDetectionStrategy.OnPush,
834
+ template: '<ng-content></ng-content>',
835
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
836
+ inputs: ['active', 'tdsAriaLabel'],
837
+ })
838
+ export class TdsHeaderLauncherButton {
839
+ protected el: HTMLElement;
840
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
841
+ c.detach();
842
+ this.el = r.nativeElement;
843
+ }
844
+ }
845
+
846
+
847
+ export declare interface TdsHeaderLauncherButton extends Components.TdsHeaderLauncherButton {}
848
+
849
+
850
+ @ProxyCmp({
851
+ })
852
+ @Component({
853
+ selector: 'tds-header-launcher-grid',
854
+ changeDetection: ChangeDetectionStrategy.OnPush,
855
+ template: '<ng-content></ng-content>',
856
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
857
+ inputs: [],
858
+ })
859
+ export class TdsHeaderLauncherGrid {
860
+ protected el: HTMLElement;
861
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
862
+ c.detach();
863
+ this.el = r.nativeElement;
864
+ }
865
+ }
866
+
867
+
868
+ export declare interface TdsHeaderLauncherGrid extends Components.TdsHeaderLauncherGrid {}
869
+
870
+
871
+ @ProxyCmp({
872
+ })
873
+ @Component({
874
+ selector: 'tds-header-launcher-grid-item',
875
+ changeDetection: ChangeDetectionStrategy.OnPush,
876
+ template: '<ng-content></ng-content>',
877
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
878
+ inputs: [],
879
+ })
880
+ export class TdsHeaderLauncherGridItem {
881
+ protected el: HTMLElement;
882
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
883
+ c.detach();
884
+ this.el = r.nativeElement;
885
+ }
886
+ }
887
+
888
+
889
+ export declare interface TdsHeaderLauncherGridItem extends Components.TdsHeaderLauncherGridItem {}
890
+
891
+
892
+ @ProxyCmp({
893
+ })
894
+ @Component({
895
+ selector: 'tds-header-launcher-grid-title',
896
+ changeDetection: ChangeDetectionStrategy.OnPush,
897
+ template: '<ng-content></ng-content>',
898
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
899
+ inputs: [],
900
+ })
901
+ export class TdsHeaderLauncherGridTitle {
902
+ protected el: HTMLElement;
903
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
904
+ c.detach();
905
+ this.el = r.nativeElement;
906
+ }
907
+ }
908
+
909
+
910
+ export declare interface TdsHeaderLauncherGridTitle extends Components.TdsHeaderLauncherGridTitle {}
911
+
912
+
913
+ @ProxyCmp({
914
+ })
915
+ @Component({
916
+ selector: 'tds-header-launcher-list',
917
+ changeDetection: ChangeDetectionStrategy.OnPush,
918
+ template: '<ng-content></ng-content>',
919
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
920
+ inputs: [],
921
+ })
922
+ export class TdsHeaderLauncherList {
923
+ protected el: HTMLElement;
924
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
925
+ c.detach();
926
+ this.el = r.nativeElement;
927
+ }
928
+ }
929
+
930
+
931
+ export declare interface TdsHeaderLauncherList extends Components.TdsHeaderLauncherList {}
932
+
933
+
934
+ @ProxyCmp({
935
+ })
936
+ @Component({
937
+ selector: 'tds-header-launcher-list-item',
938
+ changeDetection: ChangeDetectionStrategy.OnPush,
939
+ template: '<ng-content></ng-content>',
940
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
941
+ inputs: [],
942
+ })
943
+ export class TdsHeaderLauncherListItem {
944
+ protected el: HTMLElement;
945
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
946
+ c.detach();
947
+ this.el = r.nativeElement;
948
+ }
949
+ }
950
+
951
+
952
+ export declare interface TdsHeaderLauncherListItem extends Components.TdsHeaderLauncherListItem {}
953
+
954
+
955
+ @ProxyCmp({
956
+ })
957
+ @Component({
958
+ selector: 'tds-header-launcher-list-title',
959
+ changeDetection: ChangeDetectionStrategy.OnPush,
960
+ template: '<ng-content></ng-content>',
961
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
962
+ inputs: [],
963
+ })
964
+ export class TdsHeaderLauncherListTitle {
965
+ protected el: HTMLElement;
966
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
967
+ c.detach();
968
+ this.el = r.nativeElement;
969
+ }
970
+ }
971
+
972
+
973
+ export declare interface TdsHeaderLauncherListTitle extends Components.TdsHeaderLauncherListTitle {}
974
+
975
+
976
+ @ProxyCmp({
977
+ })
978
+ @Component({
979
+ selector: 'tds-header-title',
980
+ changeDetection: ChangeDetectionStrategy.OnPush,
981
+ template: '<ng-content></ng-content>',
982
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
983
+ inputs: [],
984
+ })
985
+ export class TdsHeaderTitle {
986
+ protected el: HTMLElement;
987
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
988
+ c.detach();
989
+ this.el = r.nativeElement;
990
+ }
991
+ }
992
+
993
+
994
+ export declare interface TdsHeaderTitle extends Components.TdsHeaderTitle {}
995
+
996
+
997
+ @ProxyCmp({
998
+ inputs: ['name', 'size', 'svgDescription', 'svgTitle', 'tdsAriaHidden']
999
+ })
1000
+ @Component({
1001
+ selector: 'tds-icon',
1002
+ changeDetection: ChangeDetectionStrategy.OnPush,
1003
+ template: '<ng-content></ng-content>',
1004
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1005
+ inputs: ['name', 'size', 'svgDescription', 'svgTitle', 'tdsAriaHidden'],
1006
+ })
1007
+ export class TdsIcon {
1008
+ protected el: HTMLElement;
1009
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1010
+ c.detach();
1011
+ this.el = r.nativeElement;
1012
+ }
1013
+ }
1014
+
1015
+
1016
+ export declare interface TdsIcon extends Components.TdsIcon {}
1017
+
1018
+
1019
+ @ProxyCmp({
1020
+ inputs: ['disabled']
1021
+ })
1022
+ @Component({
1023
+ selector: 'tds-inline-tab',
1024
+ changeDetection: ChangeDetectionStrategy.OnPush,
1025
+ template: '<ng-content></ng-content>',
1026
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1027
+ inputs: ['disabled'],
1028
+ })
1029
+ export class TdsInlineTab {
1030
+ protected el: HTMLElement;
1031
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1032
+ c.detach();
1033
+ this.el = r.nativeElement;
1034
+ }
1035
+ }
1036
+
1037
+
1038
+ export declare interface TdsInlineTab extends Components.TdsInlineTab {}
1039
+
1040
+
1041
+ @ProxyCmp({
1042
+ inputs: ['defaultSelectedIndex', 'leftPadding', 'modeVariant', 'selectedIndex', 'tdsScrollLeftAriaLabel', 'tdsScrollRightAriaLabel'],
1043
+ methods: ['selectTab', 'reinitialize']
1044
+ })
1045
+ @Component({
1046
+ selector: 'tds-inline-tabs',
1047
+ changeDetection: ChangeDetectionStrategy.OnPush,
1048
+ template: '<ng-content></ng-content>',
1049
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1050
+ inputs: ['defaultSelectedIndex', 'leftPadding', 'modeVariant', 'selectedIndex', 'tdsScrollLeftAriaLabel', 'tdsScrollRightAriaLabel'],
1051
+ })
1052
+ export class TdsInlineTabs {
1053
+ protected el: HTMLElement;
1054
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1055
+ c.detach();
1056
+ this.el = r.nativeElement;
1057
+ proxyOutputs(this, this.el, ['tdsChange']);
1058
+ }
1059
+ }
1060
+
1061
+
1062
+ export declare interface TdsInlineTabs extends Components.TdsInlineTabs {
1063
+ /**
1064
+ * Event emitted when the selected Tab is changed.
1065
+ */
1066
+ tdsChange: EventEmitter<CustomEvent<{ selectedTabIndex: number; }>>;
1067
+ }
1068
+
1069
+
1070
+ @ProxyCmp({
1071
+ inputs: ['disabled', 'standalone', 'underline']
1072
+ })
1073
+ @Component({
1074
+ selector: 'tds-link',
1075
+ changeDetection: ChangeDetectionStrategy.OnPush,
1076
+ template: '<ng-content></ng-content>',
1077
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1078
+ inputs: ['disabled', 'standalone', 'underline'],
1079
+ })
1080
+ export class TdsLink {
1081
+ protected el: HTMLElement;
1082
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1083
+ c.detach();
1084
+ this.el = r.nativeElement;
1085
+ }
1086
+ }
1087
+
1088
+
1089
+ export declare interface TdsLink extends Components.TdsLink {}
1090
+
1091
+
1092
+ @ProxyCmp({
1093
+ inputs: ['header', 'minimal', 'modeVariant', 'noIcon', 'tdsAlertDialog', 'tdsAriaLabel', 'variant']
1094
+ })
1095
+ @Component({
1096
+ selector: 'tds-message',
1097
+ changeDetection: ChangeDetectionStrategy.OnPush,
1098
+ template: '<ng-content></ng-content>',
1099
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1100
+ inputs: ['header', 'minimal', 'modeVariant', 'noIcon', 'tdsAlertDialog', 'tdsAriaLabel', 'variant'],
1101
+ })
1102
+ export class TdsMessage {
1103
+ protected el: HTMLElement;
1104
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1105
+ c.detach();
1106
+ this.el = r.nativeElement;
1107
+ }
1108
+ }
1109
+
1110
+
1111
+ export declare interface TdsMessage extends Components.TdsMessage {}
1112
+
1113
+
1114
+ @ProxyCmp({
1115
+ inputs: ['actionsPosition', 'closable', 'header', 'prevent', 'referenceEl', 'selector', 'show', 'size', 'tdsAlertDialog'],
1116
+ methods: ['showModal', 'closeModal', 'initializeModal', 'cleanupModal']
1117
+ })
1118
+ @Component({
1119
+ selector: 'tds-modal',
1120
+ changeDetection: ChangeDetectionStrategy.OnPush,
1121
+ template: '<ng-content></ng-content>',
1122
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1123
+ inputs: ['actionsPosition', 'closable', 'header', 'prevent', 'referenceEl', 'selector', 'show', 'size', 'tdsAlertDialog'],
1124
+ })
1125
+ export class TdsModal {
1126
+ protected el: HTMLElement;
1127
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1128
+ c.detach();
1129
+ this.el = r.nativeElement;
1130
+ proxyOutputs(this, this.el, ['tdsClose']);
1131
+ }
1132
+ }
1133
+
1134
+
1135
+ export declare interface TdsModal extends Components.TdsModal {
1136
+ /**
1137
+ * Emits when the Modal is closed.
1138
+ */
1139
+ tdsClose: EventEmitter<CustomEvent<any>>;
1140
+ }
1141
+
1142
+
1143
+ @ProxyCmp({
1144
+ inputs: ['disabled']
1145
+ })
1146
+ @Component({
1147
+ selector: 'tds-navigation-tab',
1148
+ changeDetection: ChangeDetectionStrategy.OnPush,
1149
+ template: '<ng-content></ng-content>',
1150
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1151
+ inputs: ['disabled'],
1152
+ })
1153
+ export class TdsNavigationTab {
1154
+ protected el: HTMLElement;
1155
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1156
+ c.detach();
1157
+ this.el = r.nativeElement;
1158
+ }
1159
+ }
1160
+
1161
+
1162
+ export declare interface TdsNavigationTab extends Components.TdsNavigationTab {}
1163
+
1164
+
1165
+ @ProxyCmp({
1166
+ inputs: ['defaultSelectedIndex', 'leftPadding', 'modeVariant', 'selectedIndex', 'tdsScrollLeftAriaLabel', 'tdsScrollRightAriaLabel'],
1167
+ methods: ['selectTab', 'reinitialize']
1168
+ })
1169
+ @Component({
1170
+ selector: 'tds-navigation-tabs',
1171
+ changeDetection: ChangeDetectionStrategy.OnPush,
1172
+ template: '<ng-content></ng-content>',
1173
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1174
+ inputs: ['defaultSelectedIndex', 'leftPadding', 'modeVariant', 'selectedIndex', 'tdsScrollLeftAriaLabel', 'tdsScrollRightAriaLabel'],
1175
+ })
1176
+ export class TdsNavigationTabs {
1177
+ protected el: HTMLElement;
1178
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1179
+ c.detach();
1180
+ this.el = r.nativeElement;
1181
+ proxyOutputs(this, this.el, ['tdsChange']);
1182
+ }
1183
+ }
1184
+
1185
+
1186
+ export declare interface TdsNavigationTabs extends Components.TdsNavigationTabs {
1187
+ /**
1188
+ * Event emitted when the selected Tab is changed.
1189
+ */
1190
+ tdsChange: EventEmitter<CustomEvent<{ selectedTabIndex: number; }>>;
1191
+ }
1192
+
1193
+
1194
+ @ProxyCmp({
1195
+ inputs: ['animation', 'defaultShow', 'modifiers', 'offsetDistance', 'offsetSkidding', 'placement', 'referenceEl', 'selector', 'show', 'tdsAlertDialog'],
1196
+ methods: ['close']
1197
+ })
1198
+ @Component({
1199
+ selector: 'tds-popover-canvas',
1200
+ changeDetection: ChangeDetectionStrategy.OnPush,
1201
+ template: '<ng-content></ng-content>',
1202
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1203
+ inputs: ['animation', 'defaultShow', 'modifiers', 'offsetDistance', 'offsetSkidding', 'placement', 'referenceEl', 'selector', 'show', 'tdsAlertDialog'],
1204
+ })
1205
+ export class TdsPopoverCanvas {
1206
+ protected el: HTMLElement;
1207
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1208
+ c.detach();
1209
+ this.el = r.nativeElement;
1210
+ }
1211
+ }
1212
+
1213
+
1214
+ export declare interface TdsPopoverCanvas extends Components.TdsPopoverCanvas {}
1215
+
1216
+
1217
+ @ProxyCmp({
1218
+ inputs: ['animation', 'autoHide', 'defaultShow', 'modifiers', 'offsetDistance', 'offsetSkidding', 'placement', 'referenceEl', 'selector', 'show', 'trigger'],
1219
+ methods: ['close']
1220
+ })
1221
+ @Component({
1222
+ selector: 'tds-popover-core',
1223
+ changeDetection: ChangeDetectionStrategy.OnPush,
1224
+ template: '<ng-content></ng-content>',
1225
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1226
+ inputs: ['animation', 'autoHide', 'defaultShow', 'modifiers', 'offsetDistance', 'offsetSkidding', 'placement', 'referenceEl', 'selector', 'show', 'trigger'],
1227
+ })
1228
+ export class TdsPopoverCore {
1229
+ protected el: HTMLElement;
1230
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1231
+ c.detach();
1232
+ this.el = r.nativeElement;
1233
+ }
1234
+ }
1235
+
1236
+
1237
+ export declare interface TdsPopoverCore extends Components.TdsPopoverCore {}
1238
+
1239
+
1240
+ @ProxyCmp({
1241
+ inputs: ['animation', 'defaultShow', 'fluidWidth', 'offsetDistance', 'offsetSkidding', 'placement', 'referenceEl', 'selector', 'show'],
1242
+ methods: ['close']
1243
+ })
1244
+ @Component({
1245
+ selector: 'tds-popover-menu',
1246
+ changeDetection: ChangeDetectionStrategy.OnPush,
1247
+ template: '<ng-content></ng-content>',
1248
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1249
+ inputs: ['animation', 'defaultShow', 'fluidWidth', 'offsetDistance', 'offsetSkidding', 'placement', 'referenceEl', 'selector', 'show'],
1250
+ })
1251
+ export class TdsPopoverMenu {
1252
+ protected el: HTMLElement;
1253
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1254
+ c.detach();
1255
+ this.el = r.nativeElement;
1256
+ }
1257
+ }
1258
+
1259
+
1260
+ export declare interface TdsPopoverMenu extends Components.TdsPopoverMenu {}
1261
+
1262
+
1263
+ @ProxyCmp({
1264
+ inputs: ['disabled']
1265
+ })
1266
+ @Component({
1267
+ selector: 'tds-popover-menu-item',
1268
+ changeDetection: ChangeDetectionStrategy.OnPush,
1269
+ template: '<ng-content></ng-content>',
1270
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1271
+ inputs: ['disabled'],
1272
+ })
1273
+ export class TdsPopoverMenuItem {
1274
+ protected el: HTMLElement;
1275
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1276
+ c.detach();
1277
+ this.el = r.nativeElement;
1278
+ }
1279
+ }
1280
+
1281
+
1282
+ export declare interface TdsPopoverMenuItem extends Components.TdsPopoverMenuItem {}
1283
+
1284
+
1285
+ @ProxyCmp({
1286
+ inputs: ['checked', 'disabled', 'name', 'radioId', 'required', 'tdsAriaLabel', 'tdsTabIndex', 'value']
1287
+ })
1288
+ @Component({
1289
+ selector: 'tds-radio-button',
1290
+ changeDetection: ChangeDetectionStrategy.OnPush,
1291
+ template: '<ng-content></ng-content>',
1292
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1293
+ inputs: ['checked', 'disabled', 'name', 'radioId', 'required', 'tdsAriaLabel', 'tdsTabIndex', 'value'],
1294
+ })
1295
+ export class TdsRadioButton {
1296
+ protected el: HTMLElement;
1297
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1298
+ c.detach();
1299
+ this.el = r.nativeElement;
1300
+ proxyOutputs(this, this.el, ['tdsChange']);
1301
+ }
1302
+ }
1303
+
1304
+
1305
+ export declare interface TdsRadioButton extends Components.TdsRadioButton {
1306
+ /**
1307
+ * Sends unique Radio Button identifier and status when it is checked.
1308
+ If no ID is specified, a random one will be generated.
1309
+ To use this listener, don't use the randomized ID, use a specific one of your choosing.
1310
+ */
1311
+ tdsChange: EventEmitter<CustomEvent<{ radioId: string; value: string; }>>;
1312
+ }
1313
+
1314
+
1315
+ @ProxyCmp({
1316
+ inputs: ['collapsed', 'open', 'persistent']
1317
+ })
1318
+ @Component({
1319
+ selector: 'tds-side-menu',
1320
+ changeDetection: ChangeDetectionStrategy.OnPush,
1321
+ template: '<ng-content></ng-content>',
1322
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1323
+ inputs: ['collapsed', 'open', 'persistent'],
1324
+ })
1325
+ export class TdsSideMenu {
1326
+ protected el: HTMLElement;
1327
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1328
+ c.detach();
1329
+ this.el = r.nativeElement;
1330
+ proxyOutputs(this, this.el, ['tdsCollapse']);
1331
+ }
1332
+ }
1333
+
1334
+
1335
+ import type { CollapseEvent as ITdsSideMenuCollapseEvent } from '@scania/tegel';
1336
+
1337
+ export declare interface TdsSideMenu extends Components.TdsSideMenu {
1338
+ /**
1339
+ * Event that is emitted when the Side Menu is collapsed.
1340
+ */
1341
+ tdsCollapse: EventEmitter<CustomEvent<ITdsSideMenuCollapseEvent>>;
1342
+ }
1343
+
1344
+
1345
+ @ProxyCmp({
1346
+ })
1347
+ @Component({
1348
+ selector: 'tds-side-menu-close-button',
1349
+ changeDetection: ChangeDetectionStrategy.OnPush,
1350
+ template: '<ng-content></ng-content>',
1351
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1352
+ inputs: [],
1353
+ })
1354
+ export class TdsSideMenuCloseButton {
1355
+ protected el: HTMLElement;
1356
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1357
+ c.detach();
1358
+ this.el = r.nativeElement;
1359
+ }
1360
+ }
1361
+
1362
+
1363
+ export declare interface TdsSideMenuCloseButton extends Components.TdsSideMenuCloseButton {}
1364
+
1365
+
1366
+ @ProxyCmp({
1367
+ })
1368
+ @Component({
1369
+ selector: 'tds-side-menu-collapse-button',
1370
+ changeDetection: ChangeDetectionStrategy.OnPush,
1371
+ template: '<ng-content></ng-content>',
1372
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1373
+ inputs: [],
1374
+ })
1375
+ export class TdsSideMenuCollapseButton {
1376
+ protected el: HTMLElement;
1377
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1378
+ c.detach();
1379
+ this.el = r.nativeElement;
1380
+ proxyOutputs(this, this.el, ['tdsCollapse']);
1381
+ }
1382
+ }
1383
+
1384
+
1385
+ import type { CollapseEvent as ITdsSideMenuCollapseButtonCollapseEvent } from '@scania/tegel';
1386
+
1387
+ export declare interface TdsSideMenuCollapseButton extends Components.TdsSideMenuCollapseButton {
1388
+ /**
1389
+ * Event that is broadcast when the collapse button is clicked.
1390
+ Prevent it from disabling automatic collapsing, and set the collapsed prop on the Side Menu yourself.
1391
+ */
1392
+ tdsCollapse: EventEmitter<CustomEvent<ITdsSideMenuCollapseButtonCollapseEvent>>;
1393
+ }
1394
+
1395
+
1396
+ @ProxyCmp({
1397
+ inputs: ['buttonLabel', 'defaultOpen', 'open', 'selected']
1398
+ })
1399
+ @Component({
1400
+ selector: 'tds-side-menu-dropdown',
1401
+ changeDetection: ChangeDetectionStrategy.OnPush,
1402
+ template: '<ng-content></ng-content>',
1403
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1404
+ inputs: ['buttonLabel', 'defaultOpen', 'open', 'selected'],
1405
+ })
1406
+ export class TdsSideMenuDropdown {
1407
+ protected el: HTMLElement;
1408
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1409
+ c.detach();
1410
+ this.el = r.nativeElement;
1411
+ }
1412
+ }
1413
+
1414
+
1415
+ export declare interface TdsSideMenuDropdown extends Components.TdsSideMenuDropdown {}
1416
+
1417
+
1418
+ @ProxyCmp({
1419
+ })
1420
+ @Component({
1421
+ selector: 'tds-side-menu-dropdown-list',
1422
+ changeDetection: ChangeDetectionStrategy.OnPush,
1423
+ template: '<ng-content></ng-content>',
1424
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1425
+ inputs: [],
1426
+ })
1427
+ export class TdsSideMenuDropdownList {
1428
+ protected el: HTMLElement;
1429
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1430
+ c.detach();
1431
+ this.el = r.nativeElement;
1432
+ }
1433
+ }
1434
+
1435
+
1436
+ export declare interface TdsSideMenuDropdownList extends Components.TdsSideMenuDropdownList {}
1437
+
1438
+
1439
+ @ProxyCmp({
1440
+ inputs: ['selected']
1441
+ })
1442
+ @Component({
1443
+ selector: 'tds-side-menu-dropdown-list-item',
1444
+ changeDetection: ChangeDetectionStrategy.OnPush,
1445
+ template: '<ng-content></ng-content>',
1446
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1447
+ inputs: ['selected'],
1448
+ })
1449
+ export class TdsSideMenuDropdownListItem {
1450
+ protected el: HTMLElement;
1451
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1452
+ c.detach();
1453
+ this.el = r.nativeElement;
1454
+ }
1455
+ }
1456
+
1457
+
1458
+ export declare interface TdsSideMenuDropdownListItem extends Components.TdsSideMenuDropdownListItem {}
1459
+
1460
+
1461
+ @ProxyCmp({
1462
+ inputs: ['active', 'selected']
1463
+ })
1464
+ @Component({
1465
+ selector: 'tds-side-menu-item',
1466
+ changeDetection: ChangeDetectionStrategy.OnPush,
1467
+ template: '<ng-content></ng-content>',
1468
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1469
+ inputs: ['active', 'selected'],
1470
+ })
1471
+ export class TdsSideMenuItem {
1472
+ protected el: HTMLElement;
1473
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1474
+ c.detach();
1475
+ this.el = r.nativeElement;
1476
+ }
1477
+ }
1478
+
1479
+
1480
+ export declare interface TdsSideMenuItem extends Components.TdsSideMenuItem {}
1481
+
1482
+
1483
+ @ProxyCmp({
1484
+ })
1485
+ @Component({
1486
+ selector: 'tds-side-menu-overlay',
1487
+ changeDetection: ChangeDetectionStrategy.OnPush,
1488
+ template: '<ng-content></ng-content>',
1489
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1490
+ inputs: [],
1491
+ })
1492
+ export class TdsSideMenuOverlay {
1493
+ protected el: HTMLElement;
1494
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1495
+ c.detach();
1496
+ this.el = r.nativeElement;
1497
+ }
1498
+ }
1499
+
1500
+
1501
+ export declare interface TdsSideMenuOverlay extends Components.TdsSideMenuOverlay {}
1502
+
1503
+
1504
+ @ProxyCmp({
1505
+ inputs: ['heading', 'imgAlt', 'imgSrc', 'subheading']
1506
+ })
1507
+ @Component({
1508
+ selector: 'tds-side-menu-user',
1509
+ changeDetection: ChangeDetectionStrategy.OnPush,
1510
+ template: '<ng-content></ng-content>',
1511
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1512
+ inputs: ['heading', 'imgAlt', 'imgSrc', 'subheading'],
1513
+ })
1514
+ export class TdsSideMenuUser {
1515
+ protected el: HTMLElement;
1516
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1517
+ c.detach();
1518
+ this.el = r.nativeElement;
1519
+ }
1520
+ }
1521
+
1522
+
1523
+ export declare interface TdsSideMenuUser extends Components.TdsSideMenuUser {}
1524
+
1525
+
1526
+ @ProxyCmp({
1527
+ inputs: ['alt', 'src']
1528
+ })
1529
+ @Component({
1530
+ selector: 'tds-side-menu-user-image',
1531
+ changeDetection: ChangeDetectionStrategy.OnPush,
1532
+ template: '<ng-content></ng-content>',
1533
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1534
+ inputs: ['alt', 'src'],
1535
+ })
1536
+ export class TdsSideMenuUserImage {
1537
+ protected el: HTMLElement;
1538
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1539
+ c.detach();
1540
+ this.el = r.nativeElement;
1541
+ }
1542
+ }
1543
+
1544
+
1545
+ export declare interface TdsSideMenuUserImage extends Components.TdsSideMenuUserImage {}
1546
+
1547
+
1548
+ @ProxyCmp({
1549
+ inputs: ['heading', 'subheading']
1550
+ })
1551
+ @Component({
1552
+ selector: 'tds-side-menu-user-label',
1553
+ changeDetection: ChangeDetectionStrategy.OnPush,
1554
+ template: '<ng-content></ng-content>',
1555
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1556
+ inputs: ['heading', 'subheading'],
1557
+ })
1558
+ export class TdsSideMenuUserLabel {
1559
+ protected el: HTMLElement;
1560
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1561
+ c.detach();
1562
+ this.el = r.nativeElement;
1563
+ }
1564
+ }
1565
+
1566
+
1567
+ export declare interface TdsSideMenuUserLabel extends Components.TdsSideMenuUserLabel {}
1568
+
1569
+
1570
+ @ProxyCmp({
1571
+ inputs: ['controls', 'disabled', 'input', 'label', 'max', 'min', 'name', 'readOnly', 'showTickNumbers', 'sliderId', 'snap', 'step', 'thumbSize', 'ticks', 'tooltip', 'value'],
1572
+ methods: ['reset']
1573
+ })
1574
+ @Component({
1575
+ selector: 'tds-slider',
1576
+ changeDetection: ChangeDetectionStrategy.OnPush,
1577
+ template: '<ng-content></ng-content>',
1578
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1579
+ inputs: ['controls', 'disabled', 'input', 'label', 'max', 'min', 'name', 'readOnly', 'showTickNumbers', 'sliderId', 'snap', 'step', 'thumbSize', 'ticks', 'tooltip', 'value'],
1580
+ })
1581
+ export class TdsSlider {
1582
+ protected el: HTMLElement;
1583
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1584
+ c.detach();
1585
+ this.el = r.nativeElement;
1586
+ proxyOutputs(this, this.el, ['tdsChange', 'tdsInput']);
1587
+ }
1588
+ }
1589
+
1590
+
1591
+ export declare interface TdsSlider extends Components.TdsSlider {
1592
+ /**
1593
+ * Sends the value of the slider when changed. Fires after mouse up and touch end events.
1594
+ */
1595
+ tdsChange: EventEmitter<CustomEvent<{ value: string; }>>;
1596
+ /**
1597
+ * Sends the value of the slider while moving the thumb. Fires on mouse move and touch move events.
1598
+ */
1599
+ tdsInput: EventEmitter<CustomEvent<{ value: string; }>>;
1600
+ }
1601
+
1602
+
1603
+ @ProxyCmp({
1604
+ inputs: ['size', 'variant']
1605
+ })
1606
+ @Component({
1607
+ selector: 'tds-spinner',
1608
+ changeDetection: ChangeDetectionStrategy.OnPush,
1609
+ template: '<ng-content></ng-content>',
1610
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1611
+ inputs: ['size', 'variant'],
1612
+ })
1613
+ export class TdsSpinner {
1614
+ protected el: HTMLElement;
1615
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1616
+ c.detach();
1617
+ this.el = r.nativeElement;
1618
+ }
1619
+ }
1620
+
1621
+
1622
+ export declare interface TdsSpinner extends Components.TdsSpinner {}
1623
+
1624
+
1625
+ @ProxyCmp({
1626
+ inputs: ['index', 'state', 'tdsAriaCurrent']
1627
+ })
1628
+ @Component({
1629
+ selector: 'tds-step',
1630
+ changeDetection: ChangeDetectionStrategy.OnPush,
1631
+ template: '<ng-content></ng-content>',
1632
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1633
+ inputs: ['index', 'state', 'tdsAriaCurrent'],
1634
+ })
1635
+ export class TdsStep {
1636
+ protected el: HTMLElement;
1637
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1638
+ c.detach();
1639
+ this.el = r.nativeElement;
1640
+ }
1641
+ }
1642
+
1643
+
1644
+ export declare interface TdsStep extends Components.TdsStep {}
1645
+
1646
+
1647
+ @ProxyCmp({
1648
+ inputs: ['hideLabels', 'labelPosition', 'orientation', 'size', 'stepperId', 'tdsAriaLabel']
1649
+ })
1650
+ @Component({
1651
+ selector: 'tds-stepper',
1652
+ changeDetection: ChangeDetectionStrategy.OnPush,
1653
+ template: '<ng-content></ng-content>',
1654
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1655
+ inputs: ['hideLabels', 'labelPosition', 'orientation', 'size', 'stepperId', 'tdsAriaLabel'],
1656
+ })
1657
+ export class TdsStepper {
1658
+ protected el: HTMLElement;
1659
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1660
+ c.detach();
1661
+ this.el = r.nativeElement;
1662
+ }
1663
+ }
1664
+
1665
+
1666
+ export declare interface TdsStepper extends Components.TdsStepper {}
1667
+
1668
+
1669
+ @ProxyCmp({
1670
+ inputs: ['compactDesign', 'expandableRows', 'horizontalScrollWidth', 'modeVariant', 'multiselect', 'noMinWidth', 'responsive', 'tableId', 'verticalDividers', 'zebraMode'],
1671
+ methods: ['getSelectedRows']
1672
+ })
1673
+ @Component({
1674
+ selector: 'tds-table',
1675
+ changeDetection: ChangeDetectionStrategy.OnPush,
1676
+ template: '<ng-content></ng-content>',
1677
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1678
+ inputs: ['compactDesign', 'expandableRows', 'horizontalScrollWidth', 'modeVariant', 'multiselect', 'noMinWidth', 'responsive', 'tableId', 'verticalDividers', 'zebraMode'],
1679
+ })
1680
+ export class TdsTable {
1681
+ protected el: HTMLElement;
1682
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1683
+ c.detach();
1684
+ this.el = r.nativeElement;
1685
+ }
1686
+ }
1687
+
1688
+
1689
+ export declare interface TdsTable extends Components.TdsTable {}
1690
+
1691
+
1692
+ @ProxyCmp({
1693
+ })
1694
+ @Component({
1695
+ selector: 'tds-table-body',
1696
+ changeDetection: ChangeDetectionStrategy.OnPush,
1697
+ template: '<ng-content></ng-content>',
1698
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1699
+ inputs: [],
1700
+ })
1701
+ export class TdsTableBody {
1702
+ protected el: HTMLElement;
1703
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1704
+ c.detach();
1705
+ this.el = r.nativeElement;
1706
+ }
1707
+ }
1708
+
1709
+
1710
+ export declare interface TdsTableBody extends Components.TdsTableBody {}
1711
+
1712
+
1713
+ @ProxyCmp({
1714
+ inputs: ['showIcon']
1715
+ })
1716
+ @Component({
1717
+ selector: 'tds-table-body-input-wrapper',
1718
+ changeDetection: ChangeDetectionStrategy.OnPush,
1719
+ template: '<ng-content></ng-content>',
1720
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1721
+ inputs: ['showIcon'],
1722
+ })
1723
+ export class TdsTableBodyInputWrapper {
1724
+ protected el: HTMLElement;
1725
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1726
+ c.detach();
1727
+ this.el = r.nativeElement;
1728
+ }
1729
+ }
1730
+
1731
+
1732
+ export declare interface TdsTableBodyInputWrapper extends Components.TdsTableBodyInputWrapper {}
1733
+
1734
+
1735
+ @ProxyCmp({
1736
+ inputs: ['clickable', 'disabled', 'selected']
1737
+ })
1738
+ @Component({
1739
+ selector: 'tds-table-body-row',
1740
+ changeDetection: ChangeDetectionStrategy.OnPush,
1741
+ template: '<ng-content></ng-content>',
1742
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1743
+ inputs: ['clickable', 'disabled', 'selected'],
1744
+ })
1745
+ export class TdsTableBodyRow {
1746
+ protected el: HTMLElement;
1747
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1748
+ c.detach();
1749
+ this.el = r.nativeElement;
1750
+ proxyOutputs(this, this.el, ['tdsSelect', 'tdsClick']);
1751
+ }
1752
+ }
1753
+
1754
+
1755
+ export declare interface TdsTableBodyRow extends Components.TdsTableBodyRow {
1756
+ /**
1757
+ * Event emitted when a row is selected/deselected.
1758
+ */
1759
+ tdsSelect: EventEmitter<CustomEvent<{ tableId: string; checked: boolean; selectedRows: any[]; }>>;
1760
+ /**
1761
+ * Event emitted when a row is clicked.
1762
+ */
1763
+ tdsClick: EventEmitter<CustomEvent<{ event: MouseEvent; tableId: string; rowIndex: number; }>>;
1764
+ }
1765
+
1766
+
1767
+ @ProxyCmp({
1768
+ inputs: ['autoCollapse', 'colSpan', 'expanded', 'overflow', 'rowId'],
1769
+ methods: ['expand', 'collapse']
1770
+ })
1771
+ @Component({
1772
+ selector: 'tds-table-body-row-expandable',
1773
+ changeDetection: ChangeDetectionStrategy.OnPush,
1774
+ template: '<ng-content></ng-content>',
1775
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1776
+ inputs: ['autoCollapse', 'colSpan', 'expanded', 'overflow', 'rowId'],
1777
+ })
1778
+ export class TdsTableBodyRowExpandable {
1779
+ protected el: HTMLElement;
1780
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1781
+ c.detach();
1782
+ this.el = r.nativeElement;
1783
+ proxyOutputs(this, this.el, ['tdsChange']);
1784
+ }
1785
+ }
1786
+
1787
+
1788
+ export declare interface TdsTableBodyRowExpandable extends Components.TdsTableBodyRowExpandable {
1789
+ /**
1790
+ * Sends unique table row identifier and isExpanded status when it is expanded/collapsed.
1791
+ */
1792
+ tdsChange: EventEmitter<CustomEvent<{ rowId: string; isExpanded: boolean; tableId: string; }>>;
1793
+ }
1794
+
1795
+
1796
+ @ProxyCmp({
1797
+ inputs: ['cols', 'pages', 'pagination', 'paginationValue', 'rowsPerPageValues', 'rowsperpage']
1798
+ })
1799
+ @Component({
1800
+ selector: 'tds-table-footer',
1801
+ changeDetection: ChangeDetectionStrategy.OnPush,
1802
+ template: '<ng-content></ng-content>',
1803
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1804
+ inputs: ['cols', 'pages', 'pagination', 'paginationValue', 'rowsPerPageValues', 'rowsperpage'],
1805
+ })
1806
+ export class TdsTableFooter {
1807
+ protected el: HTMLElement;
1808
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1809
+ c.detach();
1810
+ this.el = r.nativeElement;
1811
+ proxyOutputs(this, this.el, ['tdsPagination']);
1812
+ }
1813
+ }
1814
+
1815
+
1816
+ export declare interface TdsTableFooter extends Components.TdsTableFooter {
1817
+ /**
1818
+ * Event to send current page value to tds-table-body component, can also be listened to in order to implement custom pagination logic.
1819
+ */
1820
+ tdsPagination: EventEmitter<CustomEvent<{ tableId: string; paginationValue: number; rowsPerPage?: number; }>>;
1821
+ }
1822
+
1823
+
1824
+ @ProxyCmp({
1825
+ inputs: ['allSelected', 'disabled', 'indeterminate', 'selected']
1826
+ })
1827
+ @Component({
1828
+ selector: 'tds-table-header',
1829
+ changeDetection: ChangeDetectionStrategy.OnPush,
1830
+ template: '<ng-content></ng-content>',
1831
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1832
+ inputs: ['allSelected', 'disabled', 'indeterminate', 'selected'],
1833
+ })
1834
+ export class TdsTableHeader {
1835
+ protected el: HTMLElement;
1836
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1837
+ c.detach();
1838
+ this.el = r.nativeElement;
1839
+ proxyOutputs(this, this.el, ['tdsSelectAll']);
1840
+ }
1841
+ }
1842
+
1843
+
1844
+ export declare interface TdsTableHeader extends Components.TdsTableHeader {
1845
+ /**
1846
+ * Event emitted when the status of the select all checkbox changes.
1847
+ */
1848
+ tdsSelectAll: EventEmitter<CustomEvent<{ tableId: string; checked: boolean; selectedRows: any[]; }>>;
1849
+ }
1850
+
1851
+
1852
+ @ProxyCmp({
1853
+ inputs: ['compactDesign', 'showIcon']
1854
+ })
1855
+ @Component({
1856
+ selector: 'tds-table-header-input-wrapper',
1857
+ changeDetection: ChangeDetectionStrategy.OnPush,
1858
+ template: '<ng-content></ng-content>',
1859
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1860
+ inputs: ['compactDesign', 'showIcon'],
1861
+ })
1862
+ export class TdsTableHeaderInputWrapper {
1863
+ protected el: HTMLElement;
1864
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1865
+ c.detach();
1866
+ this.el = r.nativeElement;
1867
+ }
1868
+ }
1869
+
1870
+
1871
+ export declare interface TdsTableHeaderInputWrapper extends Components.TdsTableHeaderInputWrapper {}
1872
+
1873
+
1874
+ @ProxyCmp({
1875
+ inputs: ['filter', 'tableTitle']
1876
+ })
1877
+ @Component({
1878
+ selector: 'tds-table-toolbar',
1879
+ changeDetection: ChangeDetectionStrategy.OnPush,
1880
+ template: '<ng-content></ng-content>',
1881
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1882
+ inputs: ['filter', 'tableTitle'],
1883
+ })
1884
+ export class TdsTableToolbar {
1885
+ protected el: HTMLElement;
1886
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1887
+ c.detach();
1888
+ this.el = r.nativeElement;
1889
+ proxyOutputs(this, this.el, ['tdsFilter']);
1890
+ }
1891
+ }
1892
+
1893
+
1894
+ export declare interface TdsTableToolbar extends Components.TdsTableToolbar {
1895
+ /**
1896
+ * Used for sending users' input to the main parent tds-table the component,
1897
+ can also be listened to in order to implement custom sorting logic.
1898
+ */
1899
+ tdsFilter: EventEmitter<CustomEvent<{ tableId: string; query: string; }>>;
1900
+ }
1901
+
1902
+
1903
+ @ProxyCmp({
1904
+ inputs: ['autofocus', 'disabled', 'helper', 'hideReadOnlyIcon', 'label', 'labelPosition', 'max', 'maxLength', 'min', 'modeVariant', 'name', 'noMinWidth', 'placeholder', 'readOnly', 'size', 'state', 'tdsAriaLabel', 'type', 'value'],
1905
+ methods: ['focusElement']
1906
+ })
1907
+ @Component({
1908
+ selector: 'tds-text-field',
1909
+ changeDetection: ChangeDetectionStrategy.OnPush,
1910
+ template: '<ng-content></ng-content>',
1911
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1912
+ inputs: ['autofocus', 'disabled', 'helper', 'hideReadOnlyIcon', 'label', 'labelPosition', 'max', 'maxLength', 'min', 'modeVariant', 'name', 'noMinWidth', 'placeholder', 'readOnly', 'size', 'state', 'tdsAriaLabel', 'type', 'value'],
1913
+ })
1914
+ export class TdsTextField {
1915
+ protected el: HTMLElement;
1916
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1917
+ c.detach();
1918
+ this.el = r.nativeElement;
1919
+ proxyOutputs(this, this.el, ['tdsChange', 'tdsInput', 'tdsFocus', 'tdsBlur']);
1920
+ }
1921
+ }
1922
+
1923
+
1924
+ export declare interface TdsTextField extends Components.TdsTextField {
1925
+ /**
1926
+ * Change event for the Text Field
1927
+ */
1928
+ tdsChange: EventEmitter<CustomEvent<any>>;
1929
+ /**
1930
+ * Input event for the Text Field
1931
+ */
1932
+ tdsInput: EventEmitter<CustomEvent<InputEvent>>;
1933
+ /**
1934
+ * Focus event for the Text Field
1935
+ */
1936
+ tdsFocus: EventEmitter<CustomEvent<FocusEvent>>;
1937
+ /**
1938
+ * Blur event for the Text Field
1939
+ */
1940
+ tdsBlur: EventEmitter<CustomEvent<FocusEvent>>;
1941
+ }
1942
+
1943
+
1944
+ @ProxyCmp({
1945
+ inputs: ['autofocus', 'cols', 'disabled', 'helper', 'hideReadOnlyIcon', 'label', 'labelPosition', 'maxLength', 'modeVariant', 'name', 'noMinWidth', 'placeholder', 'readOnly', 'rows', 'state', 'tdsAriaLabel', 'value']
1946
+ })
1947
+ @Component({
1948
+ selector: 'tds-textarea',
1949
+ changeDetection: ChangeDetectionStrategy.OnPush,
1950
+ template: '<ng-content></ng-content>',
1951
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1952
+ inputs: ['autofocus', 'cols', 'disabled', 'helper', 'hideReadOnlyIcon', 'label', 'labelPosition', 'maxLength', 'modeVariant', 'name', 'noMinWidth', 'placeholder', 'readOnly', 'rows', 'state', 'tdsAriaLabel', 'value'],
1953
+ })
1954
+ export class TdsTextarea {
1955
+ protected el: HTMLElement;
1956
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1957
+ c.detach();
1958
+ this.el = r.nativeElement;
1959
+ proxyOutputs(this, this.el, ['tdsChange', 'tdsBlur', 'tdsInput', 'tdsFocus']);
1960
+ }
1961
+ }
1962
+
1963
+
1964
+ export declare interface TdsTextarea extends Components.TdsTextarea {
1965
+ /**
1966
+ * Change event for the Textarea
1967
+ */
1968
+ tdsChange: EventEmitter<CustomEvent<any>>;
1969
+ /**
1970
+ * Blur event for the Textarea
1971
+ */
1972
+ tdsBlur: EventEmitter<CustomEvent<FocusEvent>>;
1973
+ /**
1974
+ * Input event for the Textarea
1975
+ */
1976
+ tdsInput: EventEmitter<CustomEvent<InputEvent>>;
1977
+ /**
1978
+ * Focus event for the Textarea
1979
+ */
1980
+ tdsFocus: EventEmitter<CustomEvent<FocusEvent>>;
1981
+ }
1982
+
1983
+
1984
+ @ProxyCmp({
1985
+ inputs: ['closable', 'header', 'hidden', 'subheader', 'tdsAriaLive', 'tdsCloseAriaLabel', 'toastId', 'toastRole', 'variant'],
1986
+ methods: ['hideToast', 'showToast']
1987
+ })
1988
+ @Component({
1989
+ selector: 'tds-toast',
1990
+ changeDetection: ChangeDetectionStrategy.OnPush,
1991
+ template: '<ng-content></ng-content>',
1992
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1993
+ inputs: ['closable', 'header', 'hidden', 'subheader', 'tdsAriaLive', 'tdsCloseAriaLabel', 'toastId', 'toastRole', 'variant'],
1994
+ })
1995
+ export class TdsToast {
1996
+ protected el: HTMLElement;
1997
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
1998
+ c.detach();
1999
+ this.el = r.nativeElement;
2000
+ proxyOutputs(this, this.el, ['tdsClose']);
2001
+ }
2002
+ }
2003
+
2004
+
2005
+ export declare interface TdsToast extends Components.TdsToast {
2006
+ /**
2007
+ * Sends unique Toast identifier when component is closed.
2008
+ */
2009
+ tdsClose: EventEmitter<CustomEvent<{ toastId: string; }>>;
2010
+ }
2011
+
2012
+
2013
+ @ProxyCmp({
2014
+ inputs: ['checked', 'disabled', 'headline', 'name', 'required', 'size', 'tdsAriaLabel', 'toggleId'],
2015
+ methods: ['toggle']
2016
+ })
2017
+ @Component({
2018
+ selector: 'tds-toggle',
2019
+ changeDetection: ChangeDetectionStrategy.OnPush,
2020
+ template: '<ng-content></ng-content>',
2021
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2022
+ inputs: ['checked', 'disabled', 'headline', 'name', 'required', 'size', 'tdsAriaLabel', 'toggleId'],
2023
+ })
2024
+ export class TdsToggle {
2025
+ protected el: HTMLElement;
2026
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2027
+ c.detach();
2028
+ this.el = r.nativeElement;
2029
+ proxyOutputs(this, this.el, ['tdsToggle']);
2030
+ }
2031
+ }
2032
+
2033
+
2034
+ export declare interface TdsToggle extends Components.TdsToggle {
2035
+ /**
2036
+ * Sends unique Toggle identifier and status when it is toggled.
2037
+ */
2038
+ tdsToggle: EventEmitter<CustomEvent<{ toggleId: string; checked: boolean; }>>;
2039
+ }
2040
+
2041
+
2042
+ @ProxyCmp({
2043
+ inputs: ['defaultShow', 'mouseOverTooltip', 'offsetDistance', 'offsetSkidding', 'placement', 'referenceEl', 'selector', 'show', 'tdsAriaDescribedby', 'text', 'trigger']
2044
+ })
2045
+ @Component({
2046
+ selector: 'tds-tooltip',
2047
+ changeDetection: ChangeDetectionStrategy.OnPush,
2048
+ template: '<ng-content></ng-content>',
2049
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2050
+ inputs: ['defaultShow', 'mouseOverTooltip', 'offsetDistance', 'offsetSkidding', 'placement', 'referenceEl', 'selector', 'show', 'tdsAriaDescribedby', 'text', 'trigger'],
2051
+ })
2052
+ export class TdsTooltip {
2053
+ protected el: HTMLElement;
2054
+ constructor(c: ChangeDetectorRef, r: ElementRef, protected z: NgZone) {
2055
+ c.detach();
2056
+ this.el = r.nativeElement;
2057
+ }
2058
+ }
2059
+
2060
+
2061
+ export declare interface TdsTooltip extends Components.TdsTooltip {}
2062
+
2063
+