@scania/tegel-angular-17 1.28.1 → 1.29.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.
Files changed (40) hide show
  1. package/esm2022/lib/components.module.mjs +58 -0
  2. package/esm2022/lib/directives/tds-dropdown-value-accessor.mjs +36 -0
  3. package/esm2022/lib/directives/tds-radio-value-accessor.mjs +41 -0
  4. package/esm2022/lib/stencil-generated/angular-component-lib/utils.mjs +59 -0
  5. package/esm2022/lib/stencil-generated/boolean-value-accessor.mjs +39 -0
  6. package/esm2022/lib/stencil-generated/components.mjs +2070 -0
  7. package/esm2022/lib/stencil-generated/index.mjs +86 -0
  8. package/esm2022/lib/stencil-generated/number-value-accessor.mjs +40 -0
  9. package/esm2022/lib/stencil-generated/text-value-accessor.mjs +35 -0
  10. package/esm2022/lib/stencil-generated/value-accessor.mjs +40 -0
  11. package/esm2022/public-api.mjs +12 -0
  12. package/esm2022/scania-tegel-angular-17.mjs +5 -0
  13. package/fesm2022/scania-tegel-angular-17.mjs +2399 -0
  14. package/fesm2022/scania-tegel-angular-17.mjs.map +1 -0
  15. package/index.d.ts +5 -0
  16. package/lib/components.module.d.ts +12 -0
  17. package/{src/lib/directives/tds-dropdown-value-accessor.ts → lib/directives/tds-dropdown-value-accessor.d.ts} +5 -18
  18. package/lib/directives/tds-radio-value-accessor.d.ts +13 -0
  19. package/lib/stencil-generated/angular-component-lib/utils.d.ts +9 -0
  20. package/lib/stencil-generated/boolean-value-accessor.d.ts +9 -0
  21. package/lib/stencil-generated/components.d.ts +1002 -0
  22. package/lib/stencil-generated/index.d.ts +2 -0
  23. package/lib/stencil-generated/number-value-accessor.d.ts +9 -0
  24. package/lib/stencil-generated/text-value-accessor.d.ts +8 -0
  25. package/lib/stencil-generated/value-accessor.d.ts +18 -0
  26. package/package.json +17 -4
  27. package/{src/public-api.ts → public-api.d.ts} +0 -4
  28. package/ng-package.json +0 -7
  29. package/src/lib/components.module.ts +0 -35
  30. package/src/lib/directives/tds-radio-value-accessor.ts +0 -29
  31. package/src/lib/stencil-generated/angular-component-lib/utils.ts +0 -65
  32. package/src/lib/stencil-generated/boolean-value-accessor.ts +0 -28
  33. package/src/lib/stencil-generated/components.ts +0 -2063
  34. package/src/lib/stencil-generated/index.ts +0 -87
  35. package/src/lib/stencil-generated/number-value-accessor.ts +0 -29
  36. package/src/lib/stencil-generated/text-value-accessor.ts +0 -24
  37. package/src/lib/stencil-generated/value-accessor.ts +0 -39
  38. package/tsconfig.lib.json +0 -14
  39. package/tsconfig.lib.prod.json +0 -10
  40. package/tsconfig.spec.json +0 -14
@@ -0,0 +1,2399 @@
1
+ import * as i0 from '@angular/core';
2
+ import { Component, ChangeDetectionStrategy, Directive, HostListener, APP_INITIALIZER, NgModule } from '@angular/core';
3
+ import { defineCustomElements } from '@scania/tegel/loader';
4
+ import { __decorate } from 'tslib';
5
+ import { fromEvent } from 'rxjs';
6
+ import { NG_VALUE_ACCESSOR } from '@angular/forms';
7
+
8
+ /* eslint-disable */
9
+ /* tslint:disable */
10
+ const proxyInputs = (Cmp, inputs) => {
11
+ const Prototype = Cmp.prototype;
12
+ inputs.forEach((item) => {
13
+ Object.defineProperty(Prototype, item, {
14
+ get() {
15
+ return this.el[item];
16
+ },
17
+ set(val) {
18
+ this.z.runOutsideAngular(() => (this.el[item] = val));
19
+ },
20
+ /**
21
+ * In the event that proxyInputs is called
22
+ * multiple times re-defining these inputs
23
+ * will cause an error to be thrown. As a result
24
+ * we set configurable: true to indicate these
25
+ * properties can be changed.
26
+ */
27
+ configurable: true,
28
+ });
29
+ });
30
+ };
31
+ const proxyMethods = (Cmp, methods) => {
32
+ const Prototype = Cmp.prototype;
33
+ methods.forEach((methodName) => {
34
+ Prototype[methodName] = function () {
35
+ const args = arguments;
36
+ return this.z.runOutsideAngular(() => this.el[methodName].apply(this.el, args));
37
+ };
38
+ });
39
+ };
40
+ const proxyOutputs = (instance, el, events) => {
41
+ events.forEach((eventName) => (instance[eventName] = fromEvent(el, eventName)));
42
+ };
43
+ const defineCustomElement = (tagName, customElement) => {
44
+ if (customElement !== undefined && typeof customElements !== 'undefined' && !customElements.get(tagName)) {
45
+ customElements.define(tagName, customElement);
46
+ }
47
+ };
48
+ // tslint:disable-next-line: only-arrow-functions
49
+ function ProxyCmp(opts) {
50
+ const decorator = function (cls) {
51
+ const { defineCustomElementFn, inputs, methods } = opts;
52
+ if (defineCustomElementFn !== undefined) {
53
+ defineCustomElementFn();
54
+ }
55
+ if (inputs) {
56
+ proxyInputs(cls, inputs);
57
+ }
58
+ if (methods) {
59
+ proxyMethods(cls, methods);
60
+ }
61
+ return cls;
62
+ };
63
+ return decorator;
64
+ }
65
+
66
+ let TdsAccordion = class TdsAccordion {
67
+ constructor(c, r, z) {
68
+ this.z = z;
69
+ c.detach();
70
+ this.el = r.nativeElement;
71
+ }
72
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
73
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsAccordion, selector: "tds-accordion", inputs: { hideLastBorder: "hideLastBorder", modeVariant: "modeVariant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
74
+ };
75
+ TdsAccordion = __decorate([
76
+ ProxyCmp({
77
+ inputs: ['hideLastBorder', 'modeVariant']
78
+ })
79
+ ], TdsAccordion);
80
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsAccordion, decorators: [{
81
+ type: Component,
82
+ args: [{
83
+ selector: 'tds-accordion',
84
+ changeDetection: ChangeDetectionStrategy.OnPush,
85
+ template: '<ng-content></ng-content>',
86
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
87
+ inputs: ['hideLastBorder', 'modeVariant'],
88
+ }]
89
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
90
+ let TdsAccordionItem = class TdsAccordionItem {
91
+ constructor(c, r, z) {
92
+ this.z = z;
93
+ c.detach();
94
+ this.el = r.nativeElement;
95
+ proxyOutputs(this, this.el, ['tdsToggle']);
96
+ }
97
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsAccordionItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
98
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsAccordionItem, selector: "tds-accordion-item", inputs: { ariaLevelValue: "ariaLevelValue", disabled: "disabled", expandIconPosition: "expandIconPosition", expanded: "expanded", header: "header", paddingReset: "paddingReset" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
99
+ };
100
+ TdsAccordionItem = __decorate([
101
+ ProxyCmp({
102
+ inputs: ['ariaLevelValue', 'disabled', 'expandIconPosition', 'expanded', 'header', 'paddingReset'],
103
+ methods: ['toggleAccordionItem']
104
+ })
105
+ ], TdsAccordionItem);
106
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsAccordionItem, decorators: [{
107
+ type: Component,
108
+ args: [{
109
+ selector: 'tds-accordion-item',
110
+ changeDetection: ChangeDetectionStrategy.OnPush,
111
+ template: '<ng-content></ng-content>',
112
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
113
+ inputs: ['ariaLevelValue', 'disabled', 'expandIconPosition', 'expanded', 'header', 'paddingReset'],
114
+ }]
115
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
116
+ let TdsBadge = class TdsBadge {
117
+ constructor(c, r, z) {
118
+ this.z = z;
119
+ c.detach();
120
+ this.el = r.nativeElement;
121
+ }
122
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsBadge, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
123
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsBadge, selector: "tds-badge", inputs: { hidden: "hidden", size: "size", tdsAriaLive: "tdsAriaLive", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
124
+ };
125
+ TdsBadge = __decorate([
126
+ ProxyCmp({
127
+ inputs: ['hidden', 'size', 'tdsAriaLive', 'value']
128
+ })
129
+ ], TdsBadge);
130
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsBadge, decorators: [{
131
+ type: Component,
132
+ args: [{
133
+ selector: 'tds-badge',
134
+ changeDetection: ChangeDetectionStrategy.OnPush,
135
+ template: '<ng-content></ng-content>',
136
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
137
+ inputs: ['hidden', 'size', 'tdsAriaLive', 'value'],
138
+ }]
139
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
140
+ let TdsBanner = class TdsBanner {
141
+ constructor(c, r, z) {
142
+ this.z = z;
143
+ c.detach();
144
+ this.el = r.nativeElement;
145
+ proxyOutputs(this, this.el, ['tdsClose']);
146
+ }
147
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsBanner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
148
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsBanner, selector: "tds-banner", inputs: { bannerId: "bannerId", header: "header", hidden: "hidden", icon: "icon", roleType: "roleType", subheader: "subheader", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
149
+ };
150
+ TdsBanner = __decorate([
151
+ ProxyCmp({
152
+ inputs: ['bannerId', 'header', 'hidden', 'icon', 'roleType', 'subheader', 'variant'],
153
+ methods: ['hideBanner', 'showBanner']
154
+ })
155
+ ], TdsBanner);
156
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsBanner, decorators: [{
157
+ type: Component,
158
+ args: [{
159
+ selector: 'tds-banner',
160
+ changeDetection: ChangeDetectionStrategy.OnPush,
161
+ template: '<ng-content></ng-content>',
162
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
163
+ inputs: ['bannerId', 'header', 'hidden', 'icon', 'roleType', 'subheader', 'variant'],
164
+ }]
165
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
166
+ let TdsBlock = class TdsBlock {
167
+ constructor(c, r, z) {
168
+ this.z = z;
169
+ c.detach();
170
+ this.el = r.nativeElement;
171
+ }
172
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsBlock, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
173
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsBlock, selector: "tds-block", inputs: { componentTag: "componentTag", modeVariant: "modeVariant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
174
+ };
175
+ TdsBlock = __decorate([
176
+ ProxyCmp({
177
+ inputs: ['componentTag', 'modeVariant']
178
+ })
179
+ ], TdsBlock);
180
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsBlock, decorators: [{
181
+ type: Component,
182
+ args: [{
183
+ selector: 'tds-block',
184
+ changeDetection: ChangeDetectionStrategy.OnPush,
185
+ template: '<ng-content></ng-content>',
186
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
187
+ inputs: ['componentTag', 'modeVariant'],
188
+ }]
189
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
190
+ let TdsBodyCell = class TdsBodyCell {
191
+ constructor(c, r, z) {
192
+ this.z = z;
193
+ c.detach();
194
+ this.el = r.nativeElement;
195
+ }
196
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsBodyCell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
197
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsBodyCell, selector: "tds-body-cell", inputs: { cellKey: "cellKey", cellValue: "cellValue", disablePadding: "disablePadding", textAlign: "textAlign" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
198
+ };
199
+ TdsBodyCell = __decorate([
200
+ ProxyCmp({
201
+ inputs: ['cellKey', 'cellValue', 'disablePadding', 'textAlign']
202
+ })
203
+ ], TdsBodyCell);
204
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsBodyCell, decorators: [{
205
+ type: Component,
206
+ args: [{
207
+ selector: 'tds-body-cell',
208
+ changeDetection: ChangeDetectionStrategy.OnPush,
209
+ template: '<ng-content></ng-content>',
210
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
211
+ inputs: ['cellKey', 'cellValue', 'disablePadding', 'textAlign'],
212
+ }]
213
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
214
+ let TdsBreadcrumb = class TdsBreadcrumb {
215
+ constructor(c, r, z) {
216
+ this.z = z;
217
+ c.detach();
218
+ this.el = r.nativeElement;
219
+ }
220
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsBreadcrumb, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
221
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsBreadcrumb, selector: "tds-breadcrumb", inputs: { current: "current" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
222
+ };
223
+ TdsBreadcrumb = __decorate([
224
+ ProxyCmp({
225
+ inputs: ['current']
226
+ })
227
+ ], TdsBreadcrumb);
228
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsBreadcrumb, decorators: [{
229
+ type: Component,
230
+ args: [{
231
+ selector: 'tds-breadcrumb',
232
+ changeDetection: ChangeDetectionStrategy.OnPush,
233
+ template: '<ng-content></ng-content>',
234
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
235
+ inputs: ['current'],
236
+ }]
237
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
238
+ let TdsBreadcrumbs = class TdsBreadcrumbs {
239
+ constructor(c, r, z) {
240
+ this.z = z;
241
+ c.detach();
242
+ this.el = r.nativeElement;
243
+ }
244
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsBreadcrumbs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
245
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsBreadcrumbs, selector: "tds-breadcrumbs", inputs: { tdsAriaLabel: "tdsAriaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
246
+ };
247
+ TdsBreadcrumbs = __decorate([
248
+ ProxyCmp({
249
+ inputs: ['tdsAriaLabel']
250
+ })
251
+ ], TdsBreadcrumbs);
252
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsBreadcrumbs, decorators: [{
253
+ type: Component,
254
+ args: [{
255
+ selector: 'tds-breadcrumbs',
256
+ changeDetection: ChangeDetectionStrategy.OnPush,
257
+ template: '<ng-content></ng-content>',
258
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
259
+ inputs: ['tdsAriaLabel'],
260
+ }]
261
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
262
+ let TdsButton = class TdsButton {
263
+ constructor(c, r, z) {
264
+ this.z = z;
265
+ c.detach();
266
+ this.el = r.nativeElement;
267
+ }
268
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
269
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsButton, selector: "tds-button", inputs: { animation: "animation", disabled: "disabled", fullbleed: "fullbleed", modeVariant: "modeVariant", size: "size", tdsAriaLabel: "tdsAriaLabel", text: "text", type: "type", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
270
+ };
271
+ TdsButton = __decorate([
272
+ ProxyCmp({
273
+ inputs: ['animation', 'disabled', 'fullbleed', 'modeVariant', 'size', 'tdsAriaLabel', 'text', 'type', 'variant']
274
+ })
275
+ ], TdsButton);
276
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsButton, decorators: [{
277
+ type: Component,
278
+ args: [{
279
+ selector: 'tds-button',
280
+ changeDetection: ChangeDetectionStrategy.OnPush,
281
+ template: '<ng-content></ng-content>',
282
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
283
+ inputs: ['animation', 'disabled', 'fullbleed', 'modeVariant', 'size', 'tdsAriaLabel', 'text', 'type', 'variant'],
284
+ }]
285
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
286
+ let TdsCard = class TdsCard {
287
+ constructor(c, r, z) {
288
+ this.z = z;
289
+ c.detach();
290
+ this.el = r.nativeElement;
291
+ proxyOutputs(this, this.el, ['tdsClick']);
292
+ }
293
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
294
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsCard, selector: "tds-card", inputs: { bodyDivider: "bodyDivider", bodyImg: "bodyImg", bodyImgAlt: "bodyImgAlt", cardId: "cardId", clickable: "clickable", header: "header", imagePlacement: "imagePlacement", modeVariant: "modeVariant", stretch: "stretch", subheader: "subheader" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
295
+ };
296
+ TdsCard = __decorate([
297
+ ProxyCmp({
298
+ inputs: ['bodyDivider', 'bodyImg', 'bodyImgAlt', 'cardId', 'clickable', 'header', 'imagePlacement', 'modeVariant', 'stretch', 'subheader']
299
+ })
300
+ ], TdsCard);
301
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsCard, decorators: [{
302
+ type: Component,
303
+ args: [{
304
+ selector: 'tds-card',
305
+ changeDetection: ChangeDetectionStrategy.OnPush,
306
+ template: '<ng-content></ng-content>',
307
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
308
+ inputs: ['bodyDivider', 'bodyImg', 'bodyImgAlt', 'cardId', 'clickable', 'header', 'imagePlacement', 'modeVariant', 'stretch', 'subheader'],
309
+ }]
310
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
311
+ let TdsCheckbox = class TdsCheckbox {
312
+ constructor(c, r, z) {
313
+ this.z = z;
314
+ c.detach();
315
+ this.el = r.nativeElement;
316
+ proxyOutputs(this, this.el, ['tdsChange', 'tdsFocus', 'tdsBlur']);
317
+ }
318
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
319
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsCheckbox, selector: "tds-checkbox", inputs: { checkboxId: "checkboxId", checked: "checked", disabled: "disabled", indeterminate: "indeterminate", name: "name", required: "required", tdsAriaDescribedby: "tdsAriaDescribedby", tdsAriaLabel: "tdsAriaLabel", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
320
+ };
321
+ TdsCheckbox = __decorate([
322
+ ProxyCmp({
323
+ inputs: ['checkboxId', 'checked', 'disabled', 'indeterminate', 'name', 'required', 'tdsAriaDescribedby', 'tdsAriaLabel', 'value'],
324
+ methods: ['toggleCheckbox']
325
+ })
326
+ ], TdsCheckbox);
327
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsCheckbox, decorators: [{
328
+ type: Component,
329
+ args: [{
330
+ selector: 'tds-checkbox',
331
+ changeDetection: ChangeDetectionStrategy.OnPush,
332
+ template: '<ng-content></ng-content>',
333
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
334
+ inputs: ['checkboxId', 'checked', 'disabled', 'indeterminate', 'name', 'required', 'tdsAriaDescribedby', 'tdsAriaLabel', 'value'],
335
+ }]
336
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
337
+ let TdsChip = class TdsChip {
338
+ constructor(c, r, z) {
339
+ this.z = z;
340
+ c.detach();
341
+ this.el = r.nativeElement;
342
+ proxyOutputs(this, this.el, ['tdsChange', 'tdsClick']);
343
+ }
344
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsChip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
345
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsChip, selector: "tds-chip", inputs: { checked: "checked", chipId: "chipId", disabled: "disabled", name: "name", size: "size", tdsAriaLabel: "tdsAriaLabel", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
346
+ };
347
+ TdsChip = __decorate([
348
+ ProxyCmp({
349
+ inputs: ['checked', 'chipId', 'disabled', 'name', 'size', 'tdsAriaLabel', 'type', 'value']
350
+ })
351
+ ], TdsChip);
352
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsChip, decorators: [{
353
+ type: Component,
354
+ args: [{
355
+ selector: 'tds-chip',
356
+ changeDetection: ChangeDetectionStrategy.OnPush,
357
+ template: '<ng-content></ng-content>',
358
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
359
+ inputs: ['checked', 'chipId', 'disabled', 'name', 'size', 'tdsAriaLabel', 'type', 'value'],
360
+ }]
361
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
362
+ let TdsCoreHeaderItem = class TdsCoreHeaderItem {
363
+ constructor(c, r, z) {
364
+ this.z = z;
365
+ c.detach();
366
+ this.el = r.nativeElement;
367
+ }
368
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsCoreHeaderItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
369
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsCoreHeaderItem, selector: "tds-core-header-item", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
370
+ };
371
+ TdsCoreHeaderItem = __decorate([
372
+ ProxyCmp({})
373
+ ], TdsCoreHeaderItem);
374
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsCoreHeaderItem, decorators: [{
375
+ type: Component,
376
+ args: [{
377
+ selector: 'tds-core-header-item',
378
+ changeDetection: ChangeDetectionStrategy.OnPush,
379
+ template: '<ng-content></ng-content>',
380
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
381
+ inputs: [],
382
+ }]
383
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
384
+ let TdsDatetime = class TdsDatetime {
385
+ constructor(c, r, z) {
386
+ this.z = z;
387
+ c.detach();
388
+ this.el = r.nativeElement;
389
+ proxyOutputs(this, this.el, ['tdsChange', 'tdsBlur', 'tdsFocus', 'tdsInput']);
390
+ }
391
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsDatetime, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
392
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsDatetime, selector: "tds-datetime", inputs: { autofocus: "autofocus", defaultValue: "defaultValue", disabled: "disabled", helper: "helper", label: "label", max: "max", min: "min", modeVariant: "modeVariant", name: "name", noMinWidth: "noMinWidth", size: "size", state: "state", tdsAriaLabel: "tdsAriaLabel", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
393
+ };
394
+ TdsDatetime = __decorate([
395
+ ProxyCmp({
396
+ inputs: ['autofocus', 'defaultValue', 'disabled', 'helper', 'label', 'max', 'min', 'modeVariant', 'name', 'noMinWidth', 'size', 'state', 'tdsAriaLabel', 'type', 'value'],
397
+ methods: ['reset', 'setValue']
398
+ })
399
+ ], TdsDatetime);
400
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsDatetime, decorators: [{
401
+ type: Component,
402
+ args: [{
403
+ selector: 'tds-datetime',
404
+ changeDetection: ChangeDetectionStrategy.OnPush,
405
+ template: '<ng-content></ng-content>',
406
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
407
+ inputs: ['autofocus', 'defaultValue', 'disabled', 'helper', 'label', 'max', 'min', 'modeVariant', 'name', 'noMinWidth', 'size', 'state', 'tdsAriaLabel', 'type', 'value'],
408
+ }]
409
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
410
+ let TdsDivider = class TdsDivider {
411
+ constructor(c, r, z) {
412
+ this.z = z;
413
+ c.detach();
414
+ this.el = r.nativeElement;
415
+ }
416
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsDivider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
417
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsDivider, selector: "tds-divider", inputs: { orientation: "orientation" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
418
+ };
419
+ TdsDivider = __decorate([
420
+ ProxyCmp({
421
+ inputs: ['orientation']
422
+ })
423
+ ], TdsDivider);
424
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsDivider, decorators: [{
425
+ type: Component,
426
+ args: [{
427
+ selector: 'tds-divider',
428
+ changeDetection: ChangeDetectionStrategy.OnPush,
429
+ template: '<ng-content></ng-content>',
430
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
431
+ inputs: ['orientation'],
432
+ }]
433
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
434
+ let TdsDropdown = class TdsDropdown {
435
+ constructor(c, r, z) {
436
+ this.z = z;
437
+ c.detach();
438
+ this.el = r.nativeElement;
439
+ proxyOutputs(this, this.el, ['tdsChange', 'tdsFocus', 'tdsBlur', 'tdsInput']);
440
+ }
441
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
442
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsDropdown, selector: "tds-dropdown", inputs: { animation: "animation", defaultValue: "defaultValue", disabled: "disabled", error: "error", filter: "filter", helper: "helper", label: "label", labelPosition: "labelPosition", modeVariant: "modeVariant", multiselect: "multiselect", name: "name", noResultText: "noResultText", normalizeText: "normalizeText", openDirection: "openDirection", placeholder: "placeholder", size: "size", tdsAriaLabel: "tdsAriaLabel", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
443
+ };
444
+ TdsDropdown = __decorate([
445
+ ProxyCmp({
446
+ inputs: ['animation', 'defaultValue', 'disabled', 'error', 'filter', 'helper', 'label', 'labelPosition', 'modeVariant', 'multiselect', 'name', 'noResultText', 'normalizeText', 'openDirection', 'placeholder', 'size', 'tdsAriaLabel', 'value'],
447
+ methods: ['setValue', 'reset', 'removeValue', 'focusElement', 'close']
448
+ })
449
+ ], TdsDropdown);
450
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsDropdown, decorators: [{
451
+ type: Component,
452
+ args: [{
453
+ selector: 'tds-dropdown',
454
+ changeDetection: ChangeDetectionStrategy.OnPush,
455
+ template: '<ng-content></ng-content>',
456
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
457
+ inputs: ['animation', 'defaultValue', 'disabled', 'error', 'filter', 'helper', 'label', 'labelPosition', 'modeVariant', 'multiselect', 'name', 'noResultText', 'normalizeText', 'openDirection', 'placeholder', 'size', 'tdsAriaLabel', 'value'],
458
+ }]
459
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
460
+ let TdsDropdownOption = class TdsDropdownOption {
461
+ constructor(c, r, z) {
462
+ this.z = z;
463
+ c.detach();
464
+ this.el = r.nativeElement;
465
+ proxyOutputs(this, this.el, ['tdsSelect', 'tdsFocus', 'tdsBlur']);
466
+ }
467
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsDropdownOption, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
468
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsDropdownOption, selector: "tds-dropdown-option", inputs: { disabled: "disabled", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
469
+ };
470
+ TdsDropdownOption = __decorate([
471
+ ProxyCmp({
472
+ inputs: ['disabled', 'value'],
473
+ methods: ['setSelected']
474
+ })
475
+ ], TdsDropdownOption);
476
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsDropdownOption, decorators: [{
477
+ type: Component,
478
+ args: [{
479
+ selector: 'tds-dropdown-option',
480
+ changeDetection: ChangeDetectionStrategy.OnPush,
481
+ template: '<ng-content></ng-content>',
482
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
483
+ inputs: ['disabled', 'value'],
484
+ }]
485
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
486
+ let TdsFolderTab = class TdsFolderTab {
487
+ constructor(c, r, z) {
488
+ this.z = z;
489
+ c.detach();
490
+ this.el = r.nativeElement;
491
+ }
492
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsFolderTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
493
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsFolderTab, selector: "tds-folder-tab", inputs: { disabled: "disabled" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
494
+ };
495
+ TdsFolderTab = __decorate([
496
+ ProxyCmp({
497
+ inputs: ['disabled']
498
+ })
499
+ ], TdsFolderTab);
500
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsFolderTab, decorators: [{
501
+ type: Component,
502
+ args: [{
503
+ selector: 'tds-folder-tab',
504
+ changeDetection: ChangeDetectionStrategy.OnPush,
505
+ template: '<ng-content></ng-content>',
506
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
507
+ inputs: ['disabled'],
508
+ }]
509
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
510
+ let TdsFolderTabs = class TdsFolderTabs {
511
+ constructor(c, r, z) {
512
+ this.z = z;
513
+ c.detach();
514
+ this.el = r.nativeElement;
515
+ proxyOutputs(this, this.el, ['tdsChange']);
516
+ }
517
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsFolderTabs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
518
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsFolderTabs, selector: "tds-folder-tabs", inputs: { defaultSelectedIndex: "defaultSelectedIndex", modeVariant: "modeVariant", selectedIndex: "selectedIndex", tdsScrollLeftAriaLabel: "tdsScrollLeftAriaLabel", tdsScrollRightAriaLabel: "tdsScrollRightAriaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
519
+ };
520
+ TdsFolderTabs = __decorate([
521
+ ProxyCmp({
522
+ inputs: ['defaultSelectedIndex', 'modeVariant', 'selectedIndex', 'tdsScrollLeftAriaLabel', 'tdsScrollRightAriaLabel'],
523
+ methods: ['selectTab', 'reinitialize']
524
+ })
525
+ ], TdsFolderTabs);
526
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsFolderTabs, decorators: [{
527
+ type: Component,
528
+ args: [{
529
+ selector: 'tds-folder-tabs',
530
+ changeDetection: ChangeDetectionStrategy.OnPush,
531
+ template: '<ng-content></ng-content>',
532
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
533
+ inputs: ['defaultSelectedIndex', 'modeVariant', 'selectedIndex', 'tdsScrollLeftAriaLabel', 'tdsScrollRightAriaLabel'],
534
+ }]
535
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
536
+ let TdsFooter = class TdsFooter {
537
+ constructor(c, r, z) {
538
+ this.z = z;
539
+ c.detach();
540
+ this.el = r.nativeElement;
541
+ }
542
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
543
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsFooter, selector: "tds-footer", inputs: { modeVariant: "modeVariant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
544
+ };
545
+ TdsFooter = __decorate([
546
+ ProxyCmp({
547
+ inputs: ['modeVariant']
548
+ })
549
+ ], TdsFooter);
550
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsFooter, decorators: [{
551
+ type: Component,
552
+ args: [{
553
+ selector: 'tds-footer',
554
+ changeDetection: ChangeDetectionStrategy.OnPush,
555
+ template: '<ng-content></ng-content>',
556
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
557
+ inputs: ['modeVariant'],
558
+ }]
559
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
560
+ let TdsFooterGroup = class TdsFooterGroup {
561
+ constructor(c, r, z) {
562
+ this.z = z;
563
+ c.detach();
564
+ this.el = r.nativeElement;
565
+ }
566
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsFooterGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
567
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsFooterGroup, selector: "tds-footer-group", inputs: { tdsListAriaLabel: "tdsListAriaLabel", titleText: "titleText" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
568
+ };
569
+ TdsFooterGroup = __decorate([
570
+ ProxyCmp({
571
+ inputs: ['tdsListAriaLabel', 'titleText']
572
+ })
573
+ ], TdsFooterGroup);
574
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsFooterGroup, decorators: [{
575
+ type: Component,
576
+ args: [{
577
+ selector: 'tds-footer-group',
578
+ changeDetection: ChangeDetectionStrategy.OnPush,
579
+ template: '<ng-content></ng-content>',
580
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
581
+ inputs: ['tdsListAriaLabel', 'titleText'],
582
+ }]
583
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
584
+ let TdsFooterItem = class TdsFooterItem {
585
+ constructor(c, r, z) {
586
+ this.z = z;
587
+ c.detach();
588
+ this.el = r.nativeElement;
589
+ }
590
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsFooterItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
591
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsFooterItem, selector: "tds-footer-item", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
592
+ };
593
+ TdsFooterItem = __decorate([
594
+ ProxyCmp({})
595
+ ], TdsFooterItem);
596
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsFooterItem, decorators: [{
597
+ type: Component,
598
+ args: [{
599
+ selector: 'tds-footer-item',
600
+ changeDetection: ChangeDetectionStrategy.OnPush,
601
+ template: '<ng-content></ng-content>',
602
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
603
+ inputs: [],
604
+ }]
605
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
606
+ let TdsHeader = class TdsHeader {
607
+ constructor(c, r, z) {
608
+ this.z = z;
609
+ c.detach();
610
+ this.el = r.nativeElement;
611
+ }
612
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
613
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsHeader, selector: "tds-header", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
614
+ };
615
+ TdsHeader = __decorate([
616
+ ProxyCmp({})
617
+ ], TdsHeader);
618
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeader, decorators: [{
619
+ type: Component,
620
+ args: [{
621
+ selector: 'tds-header',
622
+ changeDetection: ChangeDetectionStrategy.OnPush,
623
+ template: '<ng-content></ng-content>',
624
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
625
+ inputs: [],
626
+ }]
627
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
628
+ let TdsHeaderBrandSymbol = class TdsHeaderBrandSymbol {
629
+ constructor(c, r, z) {
630
+ this.z = z;
631
+ c.detach();
632
+ this.el = r.nativeElement;
633
+ }
634
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderBrandSymbol, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
635
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsHeaderBrandSymbol, selector: "tds-header-brand-symbol", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
636
+ };
637
+ TdsHeaderBrandSymbol = __decorate([
638
+ ProxyCmp({})
639
+ ], TdsHeaderBrandSymbol);
640
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderBrandSymbol, decorators: [{
641
+ type: Component,
642
+ args: [{
643
+ selector: 'tds-header-brand-symbol',
644
+ changeDetection: ChangeDetectionStrategy.OnPush,
645
+ template: '<ng-content></ng-content>',
646
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
647
+ inputs: [],
648
+ }]
649
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
650
+ let TdsHeaderCell = class TdsHeaderCell {
651
+ constructor(c, r, z) {
652
+ this.z = z;
653
+ c.detach();
654
+ this.el = r.nativeElement;
655
+ proxyOutputs(this, this.el, ['tdsSort']);
656
+ }
657
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderCell, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
658
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsHeaderCell, selector: "tds-header-cell", inputs: { cellKey: "cellKey", cellValue: "cellValue", customWidth: "customWidth", disablePadding: "disablePadding", sortable: "sortable", textAlign: "textAlign" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
659
+ };
660
+ TdsHeaderCell = __decorate([
661
+ ProxyCmp({
662
+ inputs: ['cellKey', 'cellValue', 'customWidth', 'disablePadding', 'sortable', 'textAlign']
663
+ })
664
+ ], TdsHeaderCell);
665
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderCell, decorators: [{
666
+ type: Component,
667
+ args: [{
668
+ selector: 'tds-header-cell',
669
+ changeDetection: ChangeDetectionStrategy.OnPush,
670
+ template: '<ng-content></ng-content>',
671
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
672
+ inputs: ['cellKey', 'cellValue', 'customWidth', 'disablePadding', 'sortable', 'textAlign'],
673
+ }]
674
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
675
+ let TdsHeaderDropdown = class TdsHeaderDropdown {
676
+ constructor(c, r, z) {
677
+ this.z = z;
678
+ c.detach();
679
+ this.el = r.nativeElement;
680
+ }
681
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
682
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsHeaderDropdown, selector: "tds-header-dropdown", inputs: { label: "label", noDropdownIcon: "noDropdownIcon", selected: "selected", tdsAriaLabel: "tdsAriaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
683
+ };
684
+ TdsHeaderDropdown = __decorate([
685
+ ProxyCmp({
686
+ inputs: ['label', 'noDropdownIcon', 'selected', 'tdsAriaLabel']
687
+ })
688
+ ], TdsHeaderDropdown);
689
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderDropdown, decorators: [{
690
+ type: Component,
691
+ args: [{
692
+ selector: 'tds-header-dropdown',
693
+ changeDetection: ChangeDetectionStrategy.OnPush,
694
+ template: '<ng-content></ng-content>',
695
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
696
+ inputs: ['label', 'noDropdownIcon', 'selected', 'tdsAriaLabel'],
697
+ }]
698
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
699
+ let TdsHeaderDropdownList = class TdsHeaderDropdownList {
700
+ constructor(c, r, z) {
701
+ this.z = z;
702
+ c.detach();
703
+ this.el = r.nativeElement;
704
+ }
705
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderDropdownList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
706
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsHeaderDropdownList, selector: "tds-header-dropdown-list", inputs: { size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
707
+ };
708
+ TdsHeaderDropdownList = __decorate([
709
+ ProxyCmp({
710
+ inputs: ['size']
711
+ })
712
+ ], TdsHeaderDropdownList);
713
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderDropdownList, decorators: [{
714
+ type: Component,
715
+ args: [{
716
+ selector: 'tds-header-dropdown-list',
717
+ changeDetection: ChangeDetectionStrategy.OnPush,
718
+ template: '<ng-content></ng-content>',
719
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
720
+ inputs: ['size'],
721
+ }]
722
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
723
+ let TdsHeaderDropdownListItem = class TdsHeaderDropdownListItem {
724
+ constructor(c, r, z) {
725
+ this.z = z;
726
+ c.detach();
727
+ this.el = r.nativeElement;
728
+ }
729
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderDropdownListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
730
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsHeaderDropdownListItem, selector: "tds-header-dropdown-list-item", inputs: { selected: "selected", size: "size" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
731
+ };
732
+ TdsHeaderDropdownListItem = __decorate([
733
+ ProxyCmp({
734
+ inputs: ['selected', 'size']
735
+ })
736
+ ], TdsHeaderDropdownListItem);
737
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderDropdownListItem, decorators: [{
738
+ type: Component,
739
+ args: [{
740
+ selector: 'tds-header-dropdown-list-item',
741
+ changeDetection: ChangeDetectionStrategy.OnPush,
742
+ template: '<ng-content></ng-content>',
743
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
744
+ inputs: ['selected', 'size'],
745
+ }]
746
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
747
+ let TdsHeaderDropdownListUser = class TdsHeaderDropdownListUser {
748
+ constructor(c, r, z) {
749
+ this.z = z;
750
+ c.detach();
751
+ this.el = r.nativeElement;
752
+ }
753
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderDropdownListUser, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
754
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsHeaderDropdownListUser, selector: "tds-header-dropdown-list-user", inputs: { header: "header", imgAlt: "imgAlt", imgUrl: "imgUrl", subheader: "subheader" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
755
+ };
756
+ TdsHeaderDropdownListUser = __decorate([
757
+ ProxyCmp({
758
+ inputs: ['header', 'imgAlt', 'imgUrl', 'subheader']
759
+ })
760
+ ], TdsHeaderDropdownListUser);
761
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderDropdownListUser, decorators: [{
762
+ type: Component,
763
+ args: [{
764
+ selector: 'tds-header-dropdown-list-user',
765
+ changeDetection: ChangeDetectionStrategy.OnPush,
766
+ template: '<ng-content></ng-content>',
767
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
768
+ inputs: ['header', 'imgAlt', 'imgUrl', 'subheader'],
769
+ }]
770
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
771
+ let TdsHeaderHamburger = class TdsHeaderHamburger {
772
+ constructor(c, r, z) {
773
+ this.z = z;
774
+ c.detach();
775
+ this.el = r.nativeElement;
776
+ }
777
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderHamburger, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
778
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsHeaderHamburger, selector: "tds-header-hamburger", inputs: { tdsAriaLabel: "tdsAriaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
779
+ };
780
+ TdsHeaderHamburger = __decorate([
781
+ ProxyCmp({
782
+ inputs: ['tdsAriaLabel']
783
+ })
784
+ ], TdsHeaderHamburger);
785
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderHamburger, decorators: [{
786
+ type: Component,
787
+ args: [{
788
+ selector: 'tds-header-hamburger',
789
+ changeDetection: ChangeDetectionStrategy.OnPush,
790
+ template: '<ng-content></ng-content>',
791
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
792
+ inputs: ['tdsAriaLabel'],
793
+ }]
794
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
795
+ let TdsHeaderItem = class TdsHeaderItem {
796
+ constructor(c, r, z) {
797
+ this.z = z;
798
+ c.detach();
799
+ this.el = r.nativeElement;
800
+ }
801
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
802
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsHeaderItem, selector: "tds-header-item", inputs: { active: "active", selected: "selected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
803
+ };
804
+ TdsHeaderItem = __decorate([
805
+ ProxyCmp({
806
+ inputs: ['active', 'selected']
807
+ })
808
+ ], TdsHeaderItem);
809
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderItem, decorators: [{
810
+ type: Component,
811
+ args: [{
812
+ selector: 'tds-header-item',
813
+ changeDetection: ChangeDetectionStrategy.OnPush,
814
+ template: '<ng-content></ng-content>',
815
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
816
+ inputs: ['active', 'selected'],
817
+ }]
818
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
819
+ let TdsHeaderLauncher = class TdsHeaderLauncher {
820
+ constructor(c, r, z) {
821
+ this.z = z;
822
+ c.detach();
823
+ this.el = r.nativeElement;
824
+ }
825
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderLauncher, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
826
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsHeaderLauncher, selector: "tds-header-launcher", inputs: { tdsAriaLabel: "tdsAriaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
827
+ };
828
+ TdsHeaderLauncher = __decorate([
829
+ ProxyCmp({
830
+ inputs: ['tdsAriaLabel']
831
+ })
832
+ ], TdsHeaderLauncher);
833
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderLauncher, decorators: [{
834
+ type: Component,
835
+ args: [{
836
+ selector: 'tds-header-launcher',
837
+ changeDetection: ChangeDetectionStrategy.OnPush,
838
+ template: '<ng-content></ng-content>',
839
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
840
+ inputs: ['tdsAriaLabel'],
841
+ }]
842
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
843
+ let TdsHeaderLauncherButton = class TdsHeaderLauncherButton {
844
+ constructor(c, r, z) {
845
+ this.z = z;
846
+ c.detach();
847
+ this.el = r.nativeElement;
848
+ }
849
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderLauncherButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
850
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsHeaderLauncherButton, selector: "tds-header-launcher-button", inputs: { active: "active", tdsAriaLabel: "tdsAriaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
851
+ };
852
+ TdsHeaderLauncherButton = __decorate([
853
+ ProxyCmp({
854
+ inputs: ['active', 'tdsAriaLabel']
855
+ })
856
+ ], TdsHeaderLauncherButton);
857
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderLauncherButton, decorators: [{
858
+ type: Component,
859
+ args: [{
860
+ selector: 'tds-header-launcher-button',
861
+ changeDetection: ChangeDetectionStrategy.OnPush,
862
+ template: '<ng-content></ng-content>',
863
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
864
+ inputs: ['active', 'tdsAriaLabel'],
865
+ }]
866
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
867
+ let TdsHeaderLauncherGrid = class TdsHeaderLauncherGrid {
868
+ constructor(c, r, z) {
869
+ this.z = z;
870
+ c.detach();
871
+ this.el = r.nativeElement;
872
+ }
873
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderLauncherGrid, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
874
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsHeaderLauncherGrid, selector: "tds-header-launcher-grid", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
875
+ };
876
+ TdsHeaderLauncherGrid = __decorate([
877
+ ProxyCmp({})
878
+ ], TdsHeaderLauncherGrid);
879
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderLauncherGrid, decorators: [{
880
+ type: Component,
881
+ args: [{
882
+ selector: 'tds-header-launcher-grid',
883
+ changeDetection: ChangeDetectionStrategy.OnPush,
884
+ template: '<ng-content></ng-content>',
885
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
886
+ inputs: [],
887
+ }]
888
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
889
+ let TdsHeaderLauncherGridItem = class TdsHeaderLauncherGridItem {
890
+ constructor(c, r, z) {
891
+ this.z = z;
892
+ c.detach();
893
+ this.el = r.nativeElement;
894
+ }
895
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderLauncherGridItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
896
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsHeaderLauncherGridItem, selector: "tds-header-launcher-grid-item", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
897
+ };
898
+ TdsHeaderLauncherGridItem = __decorate([
899
+ ProxyCmp({})
900
+ ], TdsHeaderLauncherGridItem);
901
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderLauncherGridItem, decorators: [{
902
+ type: Component,
903
+ args: [{
904
+ selector: 'tds-header-launcher-grid-item',
905
+ changeDetection: ChangeDetectionStrategy.OnPush,
906
+ template: '<ng-content></ng-content>',
907
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
908
+ inputs: [],
909
+ }]
910
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
911
+ let TdsHeaderLauncherGridTitle = class TdsHeaderLauncherGridTitle {
912
+ constructor(c, r, z) {
913
+ this.z = z;
914
+ c.detach();
915
+ this.el = r.nativeElement;
916
+ }
917
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderLauncherGridTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
918
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsHeaderLauncherGridTitle, selector: "tds-header-launcher-grid-title", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
919
+ };
920
+ TdsHeaderLauncherGridTitle = __decorate([
921
+ ProxyCmp({})
922
+ ], TdsHeaderLauncherGridTitle);
923
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderLauncherGridTitle, decorators: [{
924
+ type: Component,
925
+ args: [{
926
+ selector: 'tds-header-launcher-grid-title',
927
+ changeDetection: ChangeDetectionStrategy.OnPush,
928
+ template: '<ng-content></ng-content>',
929
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
930
+ inputs: [],
931
+ }]
932
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
933
+ let TdsHeaderLauncherList = class TdsHeaderLauncherList {
934
+ constructor(c, r, z) {
935
+ this.z = z;
936
+ c.detach();
937
+ this.el = r.nativeElement;
938
+ }
939
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderLauncherList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
940
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsHeaderLauncherList, selector: "tds-header-launcher-list", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
941
+ };
942
+ TdsHeaderLauncherList = __decorate([
943
+ ProxyCmp({})
944
+ ], TdsHeaderLauncherList);
945
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderLauncherList, decorators: [{
946
+ type: Component,
947
+ args: [{
948
+ selector: 'tds-header-launcher-list',
949
+ changeDetection: ChangeDetectionStrategy.OnPush,
950
+ template: '<ng-content></ng-content>',
951
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
952
+ inputs: [],
953
+ }]
954
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
955
+ let TdsHeaderLauncherListItem = class TdsHeaderLauncherListItem {
956
+ constructor(c, r, z) {
957
+ this.z = z;
958
+ c.detach();
959
+ this.el = r.nativeElement;
960
+ }
961
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderLauncherListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
962
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsHeaderLauncherListItem, selector: "tds-header-launcher-list-item", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
963
+ };
964
+ TdsHeaderLauncherListItem = __decorate([
965
+ ProxyCmp({})
966
+ ], TdsHeaderLauncherListItem);
967
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderLauncherListItem, decorators: [{
968
+ type: Component,
969
+ args: [{
970
+ selector: 'tds-header-launcher-list-item',
971
+ changeDetection: ChangeDetectionStrategy.OnPush,
972
+ template: '<ng-content></ng-content>',
973
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
974
+ inputs: [],
975
+ }]
976
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
977
+ let TdsHeaderLauncherListTitle = class TdsHeaderLauncherListTitle {
978
+ constructor(c, r, z) {
979
+ this.z = z;
980
+ c.detach();
981
+ this.el = r.nativeElement;
982
+ }
983
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderLauncherListTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
984
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsHeaderLauncherListTitle, selector: "tds-header-launcher-list-title", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
985
+ };
986
+ TdsHeaderLauncherListTitle = __decorate([
987
+ ProxyCmp({})
988
+ ], TdsHeaderLauncherListTitle);
989
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderLauncherListTitle, decorators: [{
990
+ type: Component,
991
+ args: [{
992
+ selector: 'tds-header-launcher-list-title',
993
+ changeDetection: ChangeDetectionStrategy.OnPush,
994
+ template: '<ng-content></ng-content>',
995
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
996
+ inputs: [],
997
+ }]
998
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
999
+ let TdsHeaderTitle = class TdsHeaderTitle {
1000
+ constructor(c, r, z) {
1001
+ this.z = z;
1002
+ c.detach();
1003
+ this.el = r.nativeElement;
1004
+ }
1005
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderTitle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1006
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsHeaderTitle, selector: "tds-header-title", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1007
+ };
1008
+ TdsHeaderTitle = __decorate([
1009
+ ProxyCmp({})
1010
+ ], TdsHeaderTitle);
1011
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsHeaderTitle, decorators: [{
1012
+ type: Component,
1013
+ args: [{
1014
+ selector: 'tds-header-title',
1015
+ changeDetection: ChangeDetectionStrategy.OnPush,
1016
+ template: '<ng-content></ng-content>',
1017
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1018
+ inputs: [],
1019
+ }]
1020
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1021
+ let TdsIcon = class TdsIcon {
1022
+ constructor(c, r, z) {
1023
+ this.z = z;
1024
+ c.detach();
1025
+ this.el = r.nativeElement;
1026
+ }
1027
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1028
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsIcon, selector: "tds-icon", inputs: { name: "name", size: "size", svgDescription: "svgDescription", svgTitle: "svgTitle", tdsAriaHidden: "tdsAriaHidden" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1029
+ };
1030
+ TdsIcon = __decorate([
1031
+ ProxyCmp({
1032
+ inputs: ['name', 'size', 'svgDescription', 'svgTitle', 'tdsAriaHidden']
1033
+ })
1034
+ ], TdsIcon);
1035
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsIcon, decorators: [{
1036
+ type: Component,
1037
+ args: [{
1038
+ selector: 'tds-icon',
1039
+ changeDetection: ChangeDetectionStrategy.OnPush,
1040
+ template: '<ng-content></ng-content>',
1041
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1042
+ inputs: ['name', 'size', 'svgDescription', 'svgTitle', 'tdsAriaHidden'],
1043
+ }]
1044
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1045
+ let TdsInlineTab = class TdsInlineTab {
1046
+ constructor(c, r, z) {
1047
+ this.z = z;
1048
+ c.detach();
1049
+ this.el = r.nativeElement;
1050
+ }
1051
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsInlineTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1052
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsInlineTab, selector: "tds-inline-tab", inputs: { disabled: "disabled" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1053
+ };
1054
+ TdsInlineTab = __decorate([
1055
+ ProxyCmp({
1056
+ inputs: ['disabled']
1057
+ })
1058
+ ], TdsInlineTab);
1059
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsInlineTab, decorators: [{
1060
+ type: Component,
1061
+ args: [{
1062
+ selector: 'tds-inline-tab',
1063
+ changeDetection: ChangeDetectionStrategy.OnPush,
1064
+ template: '<ng-content></ng-content>',
1065
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1066
+ inputs: ['disabled'],
1067
+ }]
1068
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1069
+ let TdsInlineTabs = class TdsInlineTabs {
1070
+ constructor(c, r, z) {
1071
+ this.z = z;
1072
+ c.detach();
1073
+ this.el = r.nativeElement;
1074
+ proxyOutputs(this, this.el, ['tdsChange']);
1075
+ }
1076
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsInlineTabs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1077
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsInlineTabs, selector: "tds-inline-tabs", inputs: { defaultSelectedIndex: "defaultSelectedIndex", leftPadding: "leftPadding", modeVariant: "modeVariant", selectedIndex: "selectedIndex", tdsScrollLeftAriaLabel: "tdsScrollLeftAriaLabel", tdsScrollRightAriaLabel: "tdsScrollRightAriaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1078
+ };
1079
+ TdsInlineTabs = __decorate([
1080
+ ProxyCmp({
1081
+ inputs: ['defaultSelectedIndex', 'leftPadding', 'modeVariant', 'selectedIndex', 'tdsScrollLeftAriaLabel', 'tdsScrollRightAriaLabel'],
1082
+ methods: ['selectTab', 'reinitialize']
1083
+ })
1084
+ ], TdsInlineTabs);
1085
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsInlineTabs, decorators: [{
1086
+ type: Component,
1087
+ args: [{
1088
+ selector: 'tds-inline-tabs',
1089
+ changeDetection: ChangeDetectionStrategy.OnPush,
1090
+ template: '<ng-content></ng-content>',
1091
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1092
+ inputs: ['defaultSelectedIndex', 'leftPadding', 'modeVariant', 'selectedIndex', 'tdsScrollLeftAriaLabel', 'tdsScrollRightAriaLabel'],
1093
+ }]
1094
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1095
+ let TdsLink = class TdsLink {
1096
+ constructor(c, r, z) {
1097
+ this.z = z;
1098
+ c.detach();
1099
+ this.el = r.nativeElement;
1100
+ }
1101
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsLink, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1102
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsLink, selector: "tds-link", inputs: { disabled: "disabled", standalone: "standalone", underline: "underline" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1103
+ };
1104
+ TdsLink = __decorate([
1105
+ ProxyCmp({
1106
+ inputs: ['disabled', 'standalone', 'underline']
1107
+ })
1108
+ ], TdsLink);
1109
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsLink, decorators: [{
1110
+ type: Component,
1111
+ args: [{
1112
+ selector: 'tds-link',
1113
+ changeDetection: ChangeDetectionStrategy.OnPush,
1114
+ template: '<ng-content></ng-content>',
1115
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1116
+ inputs: ['disabled', 'standalone', 'underline'],
1117
+ }]
1118
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1119
+ let TdsMessage = class TdsMessage {
1120
+ constructor(c, r, z) {
1121
+ this.z = z;
1122
+ c.detach();
1123
+ this.el = r.nativeElement;
1124
+ }
1125
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsMessage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1126
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsMessage, selector: "tds-message", inputs: { header: "header", minimal: "minimal", modeVariant: "modeVariant", noIcon: "noIcon", tdsAlertDialog: "tdsAlertDialog", tdsAriaLabel: "tdsAriaLabel", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1127
+ };
1128
+ TdsMessage = __decorate([
1129
+ ProxyCmp({
1130
+ inputs: ['header', 'minimal', 'modeVariant', 'noIcon', 'tdsAlertDialog', 'tdsAriaLabel', 'variant']
1131
+ })
1132
+ ], TdsMessage);
1133
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsMessage, decorators: [{
1134
+ type: Component,
1135
+ args: [{
1136
+ selector: 'tds-message',
1137
+ changeDetection: ChangeDetectionStrategy.OnPush,
1138
+ template: '<ng-content></ng-content>',
1139
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1140
+ inputs: ['header', 'minimal', 'modeVariant', 'noIcon', 'tdsAlertDialog', 'tdsAriaLabel', 'variant'],
1141
+ }]
1142
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1143
+ let TdsModal = class TdsModal {
1144
+ constructor(c, r, z) {
1145
+ this.z = z;
1146
+ c.detach();
1147
+ this.el = r.nativeElement;
1148
+ proxyOutputs(this, this.el, ['tdsClose']);
1149
+ }
1150
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsModal, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1151
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsModal, selector: "tds-modal", inputs: { actionsPosition: "actionsPosition", closable: "closable", header: "header", prevent: "prevent", referenceEl: "referenceEl", selector: "selector", show: "show", size: "size", tdsAlertDialog: "tdsAlertDialog" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1152
+ };
1153
+ TdsModal = __decorate([
1154
+ ProxyCmp({
1155
+ inputs: ['actionsPosition', 'closable', 'header', 'prevent', 'referenceEl', 'selector', 'show', 'size', 'tdsAlertDialog'],
1156
+ methods: ['showModal', 'closeModal', 'initializeModal', 'cleanupModal']
1157
+ })
1158
+ ], TdsModal);
1159
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsModal, decorators: [{
1160
+ type: Component,
1161
+ args: [{
1162
+ selector: 'tds-modal',
1163
+ changeDetection: ChangeDetectionStrategy.OnPush,
1164
+ template: '<ng-content></ng-content>',
1165
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1166
+ inputs: ['actionsPosition', 'closable', 'header', 'prevent', 'referenceEl', 'selector', 'show', 'size', 'tdsAlertDialog'],
1167
+ }]
1168
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1169
+ let TdsNavigationTab = class TdsNavigationTab {
1170
+ constructor(c, r, z) {
1171
+ this.z = z;
1172
+ c.detach();
1173
+ this.el = r.nativeElement;
1174
+ }
1175
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsNavigationTab, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1176
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsNavigationTab, selector: "tds-navigation-tab", inputs: { disabled: "disabled" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1177
+ };
1178
+ TdsNavigationTab = __decorate([
1179
+ ProxyCmp({
1180
+ inputs: ['disabled']
1181
+ })
1182
+ ], TdsNavigationTab);
1183
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsNavigationTab, decorators: [{
1184
+ type: Component,
1185
+ args: [{
1186
+ selector: 'tds-navigation-tab',
1187
+ changeDetection: ChangeDetectionStrategy.OnPush,
1188
+ template: '<ng-content></ng-content>',
1189
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1190
+ inputs: ['disabled'],
1191
+ }]
1192
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1193
+ let TdsNavigationTabs = class TdsNavigationTabs {
1194
+ constructor(c, r, z) {
1195
+ this.z = z;
1196
+ c.detach();
1197
+ this.el = r.nativeElement;
1198
+ proxyOutputs(this, this.el, ['tdsChange']);
1199
+ }
1200
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsNavigationTabs, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1201
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsNavigationTabs, selector: "tds-navigation-tabs", inputs: { defaultSelectedIndex: "defaultSelectedIndex", leftPadding: "leftPadding", modeVariant: "modeVariant", selectedIndex: "selectedIndex", tdsScrollLeftAriaLabel: "tdsScrollLeftAriaLabel", tdsScrollRightAriaLabel: "tdsScrollRightAriaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1202
+ };
1203
+ TdsNavigationTabs = __decorate([
1204
+ ProxyCmp({
1205
+ inputs: ['defaultSelectedIndex', 'leftPadding', 'modeVariant', 'selectedIndex', 'tdsScrollLeftAriaLabel', 'tdsScrollRightAriaLabel'],
1206
+ methods: ['selectTab', 'reinitialize']
1207
+ })
1208
+ ], TdsNavigationTabs);
1209
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsNavigationTabs, decorators: [{
1210
+ type: Component,
1211
+ args: [{
1212
+ selector: 'tds-navigation-tabs',
1213
+ changeDetection: ChangeDetectionStrategy.OnPush,
1214
+ template: '<ng-content></ng-content>',
1215
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1216
+ inputs: ['defaultSelectedIndex', 'leftPadding', 'modeVariant', 'selectedIndex', 'tdsScrollLeftAriaLabel', 'tdsScrollRightAriaLabel'],
1217
+ }]
1218
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1219
+ let TdsPopoverCanvas = class TdsPopoverCanvas {
1220
+ constructor(c, r, z) {
1221
+ this.z = z;
1222
+ c.detach();
1223
+ this.el = r.nativeElement;
1224
+ }
1225
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsPopoverCanvas, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1226
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsPopoverCanvas, selector: "tds-popover-canvas", inputs: { animation: "animation", defaultShow: "defaultShow", modifiers: "modifiers", offsetDistance: "offsetDistance", offsetSkidding: "offsetSkidding", placement: "placement", referenceEl: "referenceEl", selector: "selector", show: "show", tdsAlertDialog: "tdsAlertDialog" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1227
+ };
1228
+ TdsPopoverCanvas = __decorate([
1229
+ ProxyCmp({
1230
+ inputs: ['animation', 'defaultShow', 'modifiers', 'offsetDistance', 'offsetSkidding', 'placement', 'referenceEl', 'selector', 'show', 'tdsAlertDialog'],
1231
+ methods: ['close']
1232
+ })
1233
+ ], TdsPopoverCanvas);
1234
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsPopoverCanvas, decorators: [{
1235
+ type: Component,
1236
+ args: [{
1237
+ selector: 'tds-popover-canvas',
1238
+ changeDetection: ChangeDetectionStrategy.OnPush,
1239
+ template: '<ng-content></ng-content>',
1240
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1241
+ inputs: ['animation', 'defaultShow', 'modifiers', 'offsetDistance', 'offsetSkidding', 'placement', 'referenceEl', 'selector', 'show', 'tdsAlertDialog'],
1242
+ }]
1243
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1244
+ let TdsPopoverCore = class TdsPopoverCore {
1245
+ constructor(c, r, z) {
1246
+ this.z = z;
1247
+ c.detach();
1248
+ this.el = r.nativeElement;
1249
+ }
1250
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsPopoverCore, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1251
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsPopoverCore, selector: "tds-popover-core", inputs: { animation: "animation", autoHide: "autoHide", defaultShow: "defaultShow", modifiers: "modifiers", offsetDistance: "offsetDistance", offsetSkidding: "offsetSkidding", placement: "placement", referenceEl: "referenceEl", selector: "selector", show: "show", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1252
+ };
1253
+ TdsPopoverCore = __decorate([
1254
+ ProxyCmp({
1255
+ inputs: ['animation', 'autoHide', 'defaultShow', 'modifiers', 'offsetDistance', 'offsetSkidding', 'placement', 'referenceEl', 'selector', 'show', 'trigger'],
1256
+ methods: ['close']
1257
+ })
1258
+ ], TdsPopoverCore);
1259
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsPopoverCore, decorators: [{
1260
+ type: Component,
1261
+ args: [{
1262
+ selector: 'tds-popover-core',
1263
+ changeDetection: ChangeDetectionStrategy.OnPush,
1264
+ template: '<ng-content></ng-content>',
1265
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1266
+ inputs: ['animation', 'autoHide', 'defaultShow', 'modifiers', 'offsetDistance', 'offsetSkidding', 'placement', 'referenceEl', 'selector', 'show', 'trigger'],
1267
+ }]
1268
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1269
+ let TdsPopoverMenu = class TdsPopoverMenu {
1270
+ constructor(c, r, z) {
1271
+ this.z = z;
1272
+ c.detach();
1273
+ this.el = r.nativeElement;
1274
+ }
1275
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsPopoverMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1276
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsPopoverMenu, selector: "tds-popover-menu", inputs: { animation: "animation", defaultShow: "defaultShow", fluidWidth: "fluidWidth", offsetDistance: "offsetDistance", offsetSkidding: "offsetSkidding", placement: "placement", referenceEl: "referenceEl", selector: "selector", show: "show" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1277
+ };
1278
+ TdsPopoverMenu = __decorate([
1279
+ ProxyCmp({
1280
+ inputs: ['animation', 'defaultShow', 'fluidWidth', 'offsetDistance', 'offsetSkidding', 'placement', 'referenceEl', 'selector', 'show'],
1281
+ methods: ['close']
1282
+ })
1283
+ ], TdsPopoverMenu);
1284
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsPopoverMenu, decorators: [{
1285
+ type: Component,
1286
+ args: [{
1287
+ selector: 'tds-popover-menu',
1288
+ changeDetection: ChangeDetectionStrategy.OnPush,
1289
+ template: '<ng-content></ng-content>',
1290
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1291
+ inputs: ['animation', 'defaultShow', 'fluidWidth', 'offsetDistance', 'offsetSkidding', 'placement', 'referenceEl', 'selector', 'show'],
1292
+ }]
1293
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1294
+ let TdsPopoverMenuItem = class TdsPopoverMenuItem {
1295
+ constructor(c, r, z) {
1296
+ this.z = z;
1297
+ c.detach();
1298
+ this.el = r.nativeElement;
1299
+ }
1300
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsPopoverMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1301
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsPopoverMenuItem, selector: "tds-popover-menu-item", inputs: { disabled: "disabled" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1302
+ };
1303
+ TdsPopoverMenuItem = __decorate([
1304
+ ProxyCmp({
1305
+ inputs: ['disabled']
1306
+ })
1307
+ ], TdsPopoverMenuItem);
1308
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsPopoverMenuItem, decorators: [{
1309
+ type: Component,
1310
+ args: [{
1311
+ selector: 'tds-popover-menu-item',
1312
+ changeDetection: ChangeDetectionStrategy.OnPush,
1313
+ template: '<ng-content></ng-content>',
1314
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1315
+ inputs: ['disabled'],
1316
+ }]
1317
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1318
+ let TdsRadioButton = class TdsRadioButton {
1319
+ constructor(c, r, z) {
1320
+ this.z = z;
1321
+ c.detach();
1322
+ this.el = r.nativeElement;
1323
+ proxyOutputs(this, this.el, ['tdsChange']);
1324
+ }
1325
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsRadioButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1326
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsRadioButton, selector: "tds-radio-button", inputs: { checked: "checked", disabled: "disabled", name: "name", radioId: "radioId", required: "required", tdsAriaLabel: "tdsAriaLabel", tdsTabIndex: "tdsTabIndex", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1327
+ };
1328
+ TdsRadioButton = __decorate([
1329
+ ProxyCmp({
1330
+ inputs: ['checked', 'disabled', 'name', 'radioId', 'required', 'tdsAriaLabel', 'tdsTabIndex', 'value']
1331
+ })
1332
+ ], TdsRadioButton);
1333
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsRadioButton, decorators: [{
1334
+ type: Component,
1335
+ args: [{
1336
+ selector: 'tds-radio-button',
1337
+ changeDetection: ChangeDetectionStrategy.OnPush,
1338
+ template: '<ng-content></ng-content>',
1339
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1340
+ inputs: ['checked', 'disabled', 'name', 'radioId', 'required', 'tdsAriaLabel', 'tdsTabIndex', 'value'],
1341
+ }]
1342
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1343
+ let TdsSideMenu = class TdsSideMenu {
1344
+ constructor(c, r, z) {
1345
+ this.z = z;
1346
+ c.detach();
1347
+ this.el = r.nativeElement;
1348
+ proxyOutputs(this, this.el, ['tdsCollapse']);
1349
+ }
1350
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsSideMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1351
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsSideMenu, selector: "tds-side-menu", inputs: { collapsed: "collapsed", open: "open", persistent: "persistent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1352
+ };
1353
+ TdsSideMenu = __decorate([
1354
+ ProxyCmp({
1355
+ inputs: ['collapsed', 'open', 'persistent']
1356
+ })
1357
+ ], TdsSideMenu);
1358
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsSideMenu, decorators: [{
1359
+ type: Component,
1360
+ args: [{
1361
+ selector: 'tds-side-menu',
1362
+ changeDetection: ChangeDetectionStrategy.OnPush,
1363
+ template: '<ng-content></ng-content>',
1364
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1365
+ inputs: ['collapsed', 'open', 'persistent'],
1366
+ }]
1367
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1368
+ let TdsSideMenuCloseButton = class TdsSideMenuCloseButton {
1369
+ constructor(c, r, z) {
1370
+ this.z = z;
1371
+ c.detach();
1372
+ this.el = r.nativeElement;
1373
+ }
1374
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsSideMenuCloseButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1375
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsSideMenuCloseButton, selector: "tds-side-menu-close-button", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1376
+ };
1377
+ TdsSideMenuCloseButton = __decorate([
1378
+ ProxyCmp({})
1379
+ ], TdsSideMenuCloseButton);
1380
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsSideMenuCloseButton, decorators: [{
1381
+ type: Component,
1382
+ args: [{
1383
+ selector: 'tds-side-menu-close-button',
1384
+ changeDetection: ChangeDetectionStrategy.OnPush,
1385
+ template: '<ng-content></ng-content>',
1386
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1387
+ inputs: [],
1388
+ }]
1389
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1390
+ let TdsSideMenuCollapseButton = class TdsSideMenuCollapseButton {
1391
+ constructor(c, r, z) {
1392
+ this.z = z;
1393
+ c.detach();
1394
+ this.el = r.nativeElement;
1395
+ proxyOutputs(this, this.el, ['tdsCollapse']);
1396
+ }
1397
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsSideMenuCollapseButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1398
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsSideMenuCollapseButton, selector: "tds-side-menu-collapse-button", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1399
+ };
1400
+ TdsSideMenuCollapseButton = __decorate([
1401
+ ProxyCmp({})
1402
+ ], TdsSideMenuCollapseButton);
1403
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsSideMenuCollapseButton, decorators: [{
1404
+ type: Component,
1405
+ args: [{
1406
+ selector: 'tds-side-menu-collapse-button',
1407
+ changeDetection: ChangeDetectionStrategy.OnPush,
1408
+ template: '<ng-content></ng-content>',
1409
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1410
+ inputs: [],
1411
+ }]
1412
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1413
+ let TdsSideMenuDropdown = class TdsSideMenuDropdown {
1414
+ constructor(c, r, z) {
1415
+ this.z = z;
1416
+ c.detach();
1417
+ this.el = r.nativeElement;
1418
+ }
1419
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsSideMenuDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1420
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsSideMenuDropdown, selector: "tds-side-menu-dropdown", inputs: { buttonLabel: "buttonLabel", defaultOpen: "defaultOpen", open: "open", selected: "selected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1421
+ };
1422
+ TdsSideMenuDropdown = __decorate([
1423
+ ProxyCmp({
1424
+ inputs: ['buttonLabel', 'defaultOpen', 'open', 'selected']
1425
+ })
1426
+ ], TdsSideMenuDropdown);
1427
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsSideMenuDropdown, decorators: [{
1428
+ type: Component,
1429
+ args: [{
1430
+ selector: 'tds-side-menu-dropdown',
1431
+ changeDetection: ChangeDetectionStrategy.OnPush,
1432
+ template: '<ng-content></ng-content>',
1433
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1434
+ inputs: ['buttonLabel', 'defaultOpen', 'open', 'selected'],
1435
+ }]
1436
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1437
+ let TdsSideMenuDropdownList = class TdsSideMenuDropdownList {
1438
+ constructor(c, r, z) {
1439
+ this.z = z;
1440
+ c.detach();
1441
+ this.el = r.nativeElement;
1442
+ }
1443
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsSideMenuDropdownList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1444
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsSideMenuDropdownList, selector: "tds-side-menu-dropdown-list", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1445
+ };
1446
+ TdsSideMenuDropdownList = __decorate([
1447
+ ProxyCmp({})
1448
+ ], TdsSideMenuDropdownList);
1449
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsSideMenuDropdownList, decorators: [{
1450
+ type: Component,
1451
+ args: [{
1452
+ selector: 'tds-side-menu-dropdown-list',
1453
+ changeDetection: ChangeDetectionStrategy.OnPush,
1454
+ template: '<ng-content></ng-content>',
1455
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1456
+ inputs: [],
1457
+ }]
1458
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1459
+ let TdsSideMenuDropdownListItem = class TdsSideMenuDropdownListItem {
1460
+ constructor(c, r, z) {
1461
+ this.z = z;
1462
+ c.detach();
1463
+ this.el = r.nativeElement;
1464
+ }
1465
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsSideMenuDropdownListItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1466
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsSideMenuDropdownListItem, selector: "tds-side-menu-dropdown-list-item", inputs: { selected: "selected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1467
+ };
1468
+ TdsSideMenuDropdownListItem = __decorate([
1469
+ ProxyCmp({
1470
+ inputs: ['selected']
1471
+ })
1472
+ ], TdsSideMenuDropdownListItem);
1473
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsSideMenuDropdownListItem, decorators: [{
1474
+ type: Component,
1475
+ args: [{
1476
+ selector: 'tds-side-menu-dropdown-list-item',
1477
+ changeDetection: ChangeDetectionStrategy.OnPush,
1478
+ template: '<ng-content></ng-content>',
1479
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1480
+ inputs: ['selected'],
1481
+ }]
1482
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1483
+ let TdsSideMenuItem = class TdsSideMenuItem {
1484
+ constructor(c, r, z) {
1485
+ this.z = z;
1486
+ c.detach();
1487
+ this.el = r.nativeElement;
1488
+ }
1489
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsSideMenuItem, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1490
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsSideMenuItem, selector: "tds-side-menu-item", inputs: { active: "active", selected: "selected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1491
+ };
1492
+ TdsSideMenuItem = __decorate([
1493
+ ProxyCmp({
1494
+ inputs: ['active', 'selected']
1495
+ })
1496
+ ], TdsSideMenuItem);
1497
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsSideMenuItem, decorators: [{
1498
+ type: Component,
1499
+ args: [{
1500
+ selector: 'tds-side-menu-item',
1501
+ changeDetection: ChangeDetectionStrategy.OnPush,
1502
+ template: '<ng-content></ng-content>',
1503
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1504
+ inputs: ['active', 'selected'],
1505
+ }]
1506
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1507
+ let TdsSideMenuOverlay = class TdsSideMenuOverlay {
1508
+ constructor(c, r, z) {
1509
+ this.z = z;
1510
+ c.detach();
1511
+ this.el = r.nativeElement;
1512
+ }
1513
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsSideMenuOverlay, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1514
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsSideMenuOverlay, selector: "tds-side-menu-overlay", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1515
+ };
1516
+ TdsSideMenuOverlay = __decorate([
1517
+ ProxyCmp({})
1518
+ ], TdsSideMenuOverlay);
1519
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsSideMenuOverlay, decorators: [{
1520
+ type: Component,
1521
+ args: [{
1522
+ selector: 'tds-side-menu-overlay',
1523
+ changeDetection: ChangeDetectionStrategy.OnPush,
1524
+ template: '<ng-content></ng-content>',
1525
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1526
+ inputs: [],
1527
+ }]
1528
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1529
+ let TdsSideMenuUser = class TdsSideMenuUser {
1530
+ constructor(c, r, z) {
1531
+ this.z = z;
1532
+ c.detach();
1533
+ this.el = r.nativeElement;
1534
+ }
1535
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsSideMenuUser, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1536
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsSideMenuUser, selector: "tds-side-menu-user", inputs: { heading: "heading", imgAlt: "imgAlt", imgSrc: "imgSrc", subheading: "subheading" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1537
+ };
1538
+ TdsSideMenuUser = __decorate([
1539
+ ProxyCmp({
1540
+ inputs: ['heading', 'imgAlt', 'imgSrc', 'subheading']
1541
+ })
1542
+ ], TdsSideMenuUser);
1543
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsSideMenuUser, decorators: [{
1544
+ type: Component,
1545
+ args: [{
1546
+ selector: 'tds-side-menu-user',
1547
+ changeDetection: ChangeDetectionStrategy.OnPush,
1548
+ template: '<ng-content></ng-content>',
1549
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1550
+ inputs: ['heading', 'imgAlt', 'imgSrc', 'subheading'],
1551
+ }]
1552
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1553
+ let TdsSideMenuUserImage = class TdsSideMenuUserImage {
1554
+ constructor(c, r, z) {
1555
+ this.z = z;
1556
+ c.detach();
1557
+ this.el = r.nativeElement;
1558
+ }
1559
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsSideMenuUserImage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1560
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsSideMenuUserImage, selector: "tds-side-menu-user-image", inputs: { alt: "alt", src: "src" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1561
+ };
1562
+ TdsSideMenuUserImage = __decorate([
1563
+ ProxyCmp({
1564
+ inputs: ['alt', 'src']
1565
+ })
1566
+ ], TdsSideMenuUserImage);
1567
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsSideMenuUserImage, decorators: [{
1568
+ type: Component,
1569
+ args: [{
1570
+ selector: 'tds-side-menu-user-image',
1571
+ changeDetection: ChangeDetectionStrategy.OnPush,
1572
+ template: '<ng-content></ng-content>',
1573
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1574
+ inputs: ['alt', 'src'],
1575
+ }]
1576
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1577
+ let TdsSideMenuUserLabel = class TdsSideMenuUserLabel {
1578
+ constructor(c, r, z) {
1579
+ this.z = z;
1580
+ c.detach();
1581
+ this.el = r.nativeElement;
1582
+ }
1583
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsSideMenuUserLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1584
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsSideMenuUserLabel, selector: "tds-side-menu-user-label", inputs: { heading: "heading", subheading: "subheading" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1585
+ };
1586
+ TdsSideMenuUserLabel = __decorate([
1587
+ ProxyCmp({
1588
+ inputs: ['heading', 'subheading']
1589
+ })
1590
+ ], TdsSideMenuUserLabel);
1591
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsSideMenuUserLabel, decorators: [{
1592
+ type: Component,
1593
+ args: [{
1594
+ selector: 'tds-side-menu-user-label',
1595
+ changeDetection: ChangeDetectionStrategy.OnPush,
1596
+ template: '<ng-content></ng-content>',
1597
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1598
+ inputs: ['heading', 'subheading'],
1599
+ }]
1600
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1601
+ let TdsSlider = class TdsSlider {
1602
+ constructor(c, r, z) {
1603
+ this.z = z;
1604
+ c.detach();
1605
+ this.el = r.nativeElement;
1606
+ proxyOutputs(this, this.el, ['tdsChange', 'tdsInput']);
1607
+ }
1608
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1609
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsSlider, selector: "tds-slider", inputs: { controls: "controls", disabled: "disabled", input: "input", label: "label", max: "max", min: "min", name: "name", readOnly: "readOnly", showTickNumbers: "showTickNumbers", sliderId: "sliderId", snap: "snap", step: "step", tdsAriaLabel: "tdsAriaLabel", tdsReadOnlyAriaLabel: "tdsReadOnlyAriaLabel", thumbSize: "thumbSize", ticks: "ticks", tooltip: "tooltip", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1610
+ };
1611
+ TdsSlider = __decorate([
1612
+ ProxyCmp({
1613
+ inputs: ['controls', 'disabled', 'input', 'label', 'max', 'min', 'name', 'readOnly', 'showTickNumbers', 'sliderId', 'snap', 'step', 'tdsAriaLabel', 'tdsReadOnlyAriaLabel', 'thumbSize', 'ticks', 'tooltip', 'value'],
1614
+ methods: ['reset']
1615
+ })
1616
+ ], TdsSlider);
1617
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsSlider, decorators: [{
1618
+ type: Component,
1619
+ args: [{
1620
+ selector: 'tds-slider',
1621
+ changeDetection: ChangeDetectionStrategy.OnPush,
1622
+ template: '<ng-content></ng-content>',
1623
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1624
+ inputs: ['controls', 'disabled', 'input', 'label', 'max', 'min', 'name', 'readOnly', 'showTickNumbers', 'sliderId', 'snap', 'step', 'tdsAriaLabel', 'tdsReadOnlyAriaLabel', 'thumbSize', 'ticks', 'tooltip', 'value'],
1625
+ }]
1626
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1627
+ let TdsSpinner = class TdsSpinner {
1628
+ constructor(c, r, z) {
1629
+ this.z = z;
1630
+ c.detach();
1631
+ this.el = r.nativeElement;
1632
+ }
1633
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1634
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsSpinner, selector: "tds-spinner", inputs: { size: "size", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1635
+ };
1636
+ TdsSpinner = __decorate([
1637
+ ProxyCmp({
1638
+ inputs: ['size', 'variant']
1639
+ })
1640
+ ], TdsSpinner);
1641
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsSpinner, decorators: [{
1642
+ type: Component,
1643
+ args: [{
1644
+ selector: 'tds-spinner',
1645
+ changeDetection: ChangeDetectionStrategy.OnPush,
1646
+ template: '<ng-content></ng-content>',
1647
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1648
+ inputs: ['size', 'variant'],
1649
+ }]
1650
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1651
+ let TdsStep = class TdsStep {
1652
+ constructor(c, r, z) {
1653
+ this.z = z;
1654
+ c.detach();
1655
+ this.el = r.nativeElement;
1656
+ }
1657
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsStep, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1658
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsStep, selector: "tds-step", inputs: { index: "index", state: "state", tdsAriaCurrent: "tdsAriaCurrent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1659
+ };
1660
+ TdsStep = __decorate([
1661
+ ProxyCmp({
1662
+ inputs: ['index', 'state', 'tdsAriaCurrent']
1663
+ })
1664
+ ], TdsStep);
1665
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsStep, decorators: [{
1666
+ type: Component,
1667
+ args: [{
1668
+ selector: 'tds-step',
1669
+ changeDetection: ChangeDetectionStrategy.OnPush,
1670
+ template: '<ng-content></ng-content>',
1671
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1672
+ inputs: ['index', 'state', 'tdsAriaCurrent'],
1673
+ }]
1674
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1675
+ let TdsStepper = class TdsStepper {
1676
+ constructor(c, r, z) {
1677
+ this.z = z;
1678
+ c.detach();
1679
+ this.el = r.nativeElement;
1680
+ }
1681
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsStepper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1682
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsStepper, selector: "tds-stepper", inputs: { hideLabels: "hideLabels", labelPosition: "labelPosition", orientation: "orientation", size: "size", stepperId: "stepperId", tdsAriaLabel: "tdsAriaLabel" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1683
+ };
1684
+ TdsStepper = __decorate([
1685
+ ProxyCmp({
1686
+ inputs: ['hideLabels', 'labelPosition', 'orientation', 'size', 'stepperId', 'tdsAriaLabel']
1687
+ })
1688
+ ], TdsStepper);
1689
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsStepper, decorators: [{
1690
+ type: Component,
1691
+ args: [{
1692
+ selector: 'tds-stepper',
1693
+ changeDetection: ChangeDetectionStrategy.OnPush,
1694
+ template: '<ng-content></ng-content>',
1695
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1696
+ inputs: ['hideLabels', 'labelPosition', 'orientation', 'size', 'stepperId', 'tdsAriaLabel'],
1697
+ }]
1698
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1699
+ let TdsTable = class TdsTable {
1700
+ constructor(c, r, z) {
1701
+ this.z = z;
1702
+ c.detach();
1703
+ this.el = r.nativeElement;
1704
+ }
1705
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1706
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsTable, selector: "tds-table", inputs: { compactDesign: "compactDesign", expandableRows: "expandableRows", horizontalScrollWidth: "horizontalScrollWidth", modeVariant: "modeVariant", multiselect: "multiselect", noMinWidth: "noMinWidth", responsive: "responsive", tableId: "tableId", verticalDividers: "verticalDividers", zebraMode: "zebraMode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1707
+ };
1708
+ TdsTable = __decorate([
1709
+ ProxyCmp({
1710
+ inputs: ['compactDesign', 'expandableRows', 'horizontalScrollWidth', 'modeVariant', 'multiselect', 'noMinWidth', 'responsive', 'tableId', 'verticalDividers', 'zebraMode'],
1711
+ methods: ['getSelectedRows']
1712
+ })
1713
+ ], TdsTable);
1714
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsTable, decorators: [{
1715
+ type: Component,
1716
+ args: [{
1717
+ selector: 'tds-table',
1718
+ changeDetection: ChangeDetectionStrategy.OnPush,
1719
+ template: '<ng-content></ng-content>',
1720
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1721
+ inputs: ['compactDesign', 'expandableRows', 'horizontalScrollWidth', 'modeVariant', 'multiselect', 'noMinWidth', 'responsive', 'tableId', 'verticalDividers', 'zebraMode'],
1722
+ }]
1723
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1724
+ let TdsTableBody = class TdsTableBody {
1725
+ constructor(c, r, z) {
1726
+ this.z = z;
1727
+ c.detach();
1728
+ this.el = r.nativeElement;
1729
+ }
1730
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsTableBody, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1731
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsTableBody, selector: "tds-table-body", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1732
+ };
1733
+ TdsTableBody = __decorate([
1734
+ ProxyCmp({})
1735
+ ], TdsTableBody);
1736
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsTableBody, decorators: [{
1737
+ type: Component,
1738
+ args: [{
1739
+ selector: 'tds-table-body',
1740
+ changeDetection: ChangeDetectionStrategy.OnPush,
1741
+ template: '<ng-content></ng-content>',
1742
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1743
+ inputs: [],
1744
+ }]
1745
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1746
+ let TdsTableBodyInputWrapper = class TdsTableBodyInputWrapper {
1747
+ constructor(c, r, z) {
1748
+ this.z = z;
1749
+ c.detach();
1750
+ this.el = r.nativeElement;
1751
+ }
1752
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsTableBodyInputWrapper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1753
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsTableBodyInputWrapper, selector: "tds-table-body-input-wrapper", inputs: { showIcon: "showIcon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1754
+ };
1755
+ TdsTableBodyInputWrapper = __decorate([
1756
+ ProxyCmp({
1757
+ inputs: ['showIcon']
1758
+ })
1759
+ ], TdsTableBodyInputWrapper);
1760
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsTableBodyInputWrapper, decorators: [{
1761
+ type: Component,
1762
+ args: [{
1763
+ selector: 'tds-table-body-input-wrapper',
1764
+ changeDetection: ChangeDetectionStrategy.OnPush,
1765
+ template: '<ng-content></ng-content>',
1766
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1767
+ inputs: ['showIcon'],
1768
+ }]
1769
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1770
+ let TdsTableBodyRow = class TdsTableBodyRow {
1771
+ constructor(c, r, z) {
1772
+ this.z = z;
1773
+ c.detach();
1774
+ this.el = r.nativeElement;
1775
+ proxyOutputs(this, this.el, ['tdsSelect', 'tdsClick']);
1776
+ }
1777
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsTableBodyRow, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1778
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsTableBodyRow, selector: "tds-table-body-row", inputs: { clickable: "clickable", disabled: "disabled", selected: "selected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1779
+ };
1780
+ TdsTableBodyRow = __decorate([
1781
+ ProxyCmp({
1782
+ inputs: ['clickable', 'disabled', 'selected']
1783
+ })
1784
+ ], TdsTableBodyRow);
1785
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsTableBodyRow, decorators: [{
1786
+ type: Component,
1787
+ args: [{
1788
+ selector: 'tds-table-body-row',
1789
+ changeDetection: ChangeDetectionStrategy.OnPush,
1790
+ template: '<ng-content></ng-content>',
1791
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1792
+ inputs: ['clickable', 'disabled', 'selected'],
1793
+ }]
1794
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1795
+ let TdsTableBodyRowExpandable = class TdsTableBodyRowExpandable {
1796
+ constructor(c, r, z) {
1797
+ this.z = z;
1798
+ c.detach();
1799
+ this.el = r.nativeElement;
1800
+ proxyOutputs(this, this.el, ['tdsChange']);
1801
+ }
1802
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsTableBodyRowExpandable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1803
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsTableBodyRowExpandable, selector: "tds-table-body-row-expandable", inputs: { autoCollapse: "autoCollapse", colSpan: "colSpan", expanded: "expanded", overflow: "overflow", rowId: "rowId" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1804
+ };
1805
+ TdsTableBodyRowExpandable = __decorate([
1806
+ ProxyCmp({
1807
+ inputs: ['autoCollapse', 'colSpan', 'expanded', 'overflow', 'rowId'],
1808
+ methods: ['expand', 'collapse']
1809
+ })
1810
+ ], TdsTableBodyRowExpandable);
1811
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsTableBodyRowExpandable, decorators: [{
1812
+ type: Component,
1813
+ args: [{
1814
+ selector: 'tds-table-body-row-expandable',
1815
+ changeDetection: ChangeDetectionStrategy.OnPush,
1816
+ template: '<ng-content></ng-content>',
1817
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1818
+ inputs: ['autoCollapse', 'colSpan', 'expanded', 'overflow', 'rowId'],
1819
+ }]
1820
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1821
+ let TdsTableFooter = class TdsTableFooter {
1822
+ constructor(c, r, z) {
1823
+ this.z = z;
1824
+ c.detach();
1825
+ this.el = r.nativeElement;
1826
+ proxyOutputs(this, this.el, ['tdsPagination']);
1827
+ }
1828
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsTableFooter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1829
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsTableFooter, selector: "tds-table-footer", inputs: { cols: "cols", pages: "pages", pagination: "pagination", paginationValue: "paginationValue", rowsPerPageValues: "rowsPerPageValues", rowsperpage: "rowsperpage" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1830
+ };
1831
+ TdsTableFooter = __decorate([
1832
+ ProxyCmp({
1833
+ inputs: ['cols', 'pages', 'pagination', 'paginationValue', 'rowsPerPageValues', 'rowsperpage']
1834
+ })
1835
+ ], TdsTableFooter);
1836
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsTableFooter, decorators: [{
1837
+ type: Component,
1838
+ args: [{
1839
+ selector: 'tds-table-footer',
1840
+ changeDetection: ChangeDetectionStrategy.OnPush,
1841
+ template: '<ng-content></ng-content>',
1842
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1843
+ inputs: ['cols', 'pages', 'pagination', 'paginationValue', 'rowsPerPageValues', 'rowsperpage'],
1844
+ }]
1845
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1846
+ let TdsTableHeader = class TdsTableHeader {
1847
+ constructor(c, r, z) {
1848
+ this.z = z;
1849
+ c.detach();
1850
+ this.el = r.nativeElement;
1851
+ proxyOutputs(this, this.el, ['tdsSelectAll']);
1852
+ }
1853
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsTableHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1854
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsTableHeader, selector: "tds-table-header", inputs: { allSelected: "allSelected", disabled: "disabled", indeterminate: "indeterminate", selected: "selected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1855
+ };
1856
+ TdsTableHeader = __decorate([
1857
+ ProxyCmp({
1858
+ inputs: ['allSelected', 'disabled', 'indeterminate', 'selected']
1859
+ })
1860
+ ], TdsTableHeader);
1861
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsTableHeader, decorators: [{
1862
+ type: Component,
1863
+ args: [{
1864
+ selector: 'tds-table-header',
1865
+ changeDetection: ChangeDetectionStrategy.OnPush,
1866
+ template: '<ng-content></ng-content>',
1867
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1868
+ inputs: ['allSelected', 'disabled', 'indeterminate', 'selected'],
1869
+ }]
1870
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1871
+ let TdsTableHeaderInputWrapper = class TdsTableHeaderInputWrapper {
1872
+ constructor(c, r, z) {
1873
+ this.z = z;
1874
+ c.detach();
1875
+ this.el = r.nativeElement;
1876
+ }
1877
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsTableHeaderInputWrapper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1878
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsTableHeaderInputWrapper, selector: "tds-table-header-input-wrapper", inputs: { compactDesign: "compactDesign", showIcon: "showIcon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1879
+ };
1880
+ TdsTableHeaderInputWrapper = __decorate([
1881
+ ProxyCmp({
1882
+ inputs: ['compactDesign', 'showIcon']
1883
+ })
1884
+ ], TdsTableHeaderInputWrapper);
1885
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsTableHeaderInputWrapper, decorators: [{
1886
+ type: Component,
1887
+ args: [{
1888
+ selector: 'tds-table-header-input-wrapper',
1889
+ changeDetection: ChangeDetectionStrategy.OnPush,
1890
+ template: '<ng-content></ng-content>',
1891
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1892
+ inputs: ['compactDesign', 'showIcon'],
1893
+ }]
1894
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1895
+ let TdsTableToolbar = class TdsTableToolbar {
1896
+ constructor(c, r, z) {
1897
+ this.z = z;
1898
+ c.detach();
1899
+ this.el = r.nativeElement;
1900
+ proxyOutputs(this, this.el, ['tdsFilter']);
1901
+ }
1902
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsTableToolbar, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1903
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsTableToolbar, selector: "tds-table-toolbar", inputs: { filter: "filter", tableTitle: "tableTitle" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1904
+ };
1905
+ TdsTableToolbar = __decorate([
1906
+ ProxyCmp({
1907
+ inputs: ['filter', 'tableTitle']
1908
+ })
1909
+ ], TdsTableToolbar);
1910
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsTableToolbar, decorators: [{
1911
+ type: Component,
1912
+ args: [{
1913
+ selector: 'tds-table-toolbar',
1914
+ changeDetection: ChangeDetectionStrategy.OnPush,
1915
+ template: '<ng-content></ng-content>',
1916
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1917
+ inputs: ['filter', 'tableTitle'],
1918
+ }]
1919
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1920
+ let TdsTextField = class TdsTextField {
1921
+ constructor(c, r, z) {
1922
+ this.z = z;
1923
+ c.detach();
1924
+ this.el = r.nativeElement;
1925
+ proxyOutputs(this, this.el, ['tdsChange', 'tdsInput', 'tdsFocus', 'tdsBlur']);
1926
+ }
1927
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsTextField, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1928
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsTextField, selector: "tds-text-field", inputs: { autofocus: "autofocus", disabled: "disabled", helper: "helper", hideReadOnlyIcon: "hideReadOnlyIcon", label: "label", labelPosition: "labelPosition", max: "max", maxLength: "maxLength", min: "min", modeVariant: "modeVariant", name: "name", noMinWidth: "noMinWidth", placeholder: "placeholder", readOnly: "readOnly", size: "size", state: "state", tdsAriaLabel: "tdsAriaLabel", type: "type", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1929
+ };
1930
+ TdsTextField = __decorate([
1931
+ ProxyCmp({
1932
+ inputs: ['autofocus', 'disabled', 'helper', 'hideReadOnlyIcon', 'label', 'labelPosition', 'max', 'maxLength', 'min', 'modeVariant', 'name', 'noMinWidth', 'placeholder', 'readOnly', 'size', 'state', 'tdsAriaLabel', 'type', 'value'],
1933
+ methods: ['focusElement']
1934
+ })
1935
+ ], TdsTextField);
1936
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsTextField, decorators: [{
1937
+ type: Component,
1938
+ args: [{
1939
+ selector: 'tds-text-field',
1940
+ changeDetection: ChangeDetectionStrategy.OnPush,
1941
+ template: '<ng-content></ng-content>',
1942
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1943
+ inputs: ['autofocus', 'disabled', 'helper', 'hideReadOnlyIcon', 'label', 'labelPosition', 'max', 'maxLength', 'min', 'modeVariant', 'name', 'noMinWidth', 'placeholder', 'readOnly', 'size', 'state', 'tdsAriaLabel', 'type', 'value'],
1944
+ }]
1945
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1946
+ let TdsTextarea = class TdsTextarea {
1947
+ constructor(c, r, z) {
1948
+ this.z = z;
1949
+ c.detach();
1950
+ this.el = r.nativeElement;
1951
+ proxyOutputs(this, this.el, ['tdsChange', 'tdsBlur', 'tdsInput', 'tdsFocus']);
1952
+ }
1953
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1954
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsTextarea, selector: "tds-textarea", inputs: { autofocus: "autofocus", cols: "cols", disabled: "disabled", helper: "helper", hideReadOnlyIcon: "hideReadOnlyIcon", label: "label", labelPosition: "labelPosition", maxLength: "maxLength", modeVariant: "modeVariant", name: "name", noMinWidth: "noMinWidth", placeholder: "placeholder", readOnly: "readOnly", rows: "rows", state: "state", tdsAriaLabel: "tdsAriaLabel", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1955
+ };
1956
+ TdsTextarea = __decorate([
1957
+ ProxyCmp({
1958
+ inputs: ['autofocus', 'cols', 'disabled', 'helper', 'hideReadOnlyIcon', 'label', 'labelPosition', 'maxLength', 'modeVariant', 'name', 'noMinWidth', 'placeholder', 'readOnly', 'rows', 'state', 'tdsAriaLabel', 'value']
1959
+ })
1960
+ ], TdsTextarea);
1961
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsTextarea, decorators: [{
1962
+ type: Component,
1963
+ args: [{
1964
+ selector: 'tds-textarea',
1965
+ changeDetection: ChangeDetectionStrategy.OnPush,
1966
+ template: '<ng-content></ng-content>',
1967
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1968
+ inputs: ['autofocus', 'cols', 'disabled', 'helper', 'hideReadOnlyIcon', 'label', 'labelPosition', 'maxLength', 'modeVariant', 'name', 'noMinWidth', 'placeholder', 'readOnly', 'rows', 'state', 'tdsAriaLabel', 'value'],
1969
+ }]
1970
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1971
+ let TdsToast = class TdsToast {
1972
+ constructor(c, r, z) {
1973
+ this.z = z;
1974
+ c.detach();
1975
+ this.el = r.nativeElement;
1976
+ proxyOutputs(this, this.el, ['tdsClose']);
1977
+ }
1978
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsToast, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1979
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsToast, selector: "tds-toast", inputs: { closable: "closable", header: "header", hidden: "hidden", subheader: "subheader", tdsAriaLive: "tdsAriaLive", tdsCloseAriaLabel: "tdsCloseAriaLabel", toastId: "toastId", toastRole: "toastRole", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1980
+ };
1981
+ TdsToast = __decorate([
1982
+ ProxyCmp({
1983
+ inputs: ['closable', 'header', 'hidden', 'subheader', 'tdsAriaLive', 'tdsCloseAriaLabel', 'toastId', 'toastRole', 'variant'],
1984
+ methods: ['hideToast', 'showToast']
1985
+ })
1986
+ ], TdsToast);
1987
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsToast, decorators: [{
1988
+ type: Component,
1989
+ args: [{
1990
+ selector: 'tds-toast',
1991
+ changeDetection: ChangeDetectionStrategy.OnPush,
1992
+ template: '<ng-content></ng-content>',
1993
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1994
+ inputs: ['closable', 'header', 'hidden', 'subheader', 'tdsAriaLive', 'tdsCloseAriaLabel', 'toastId', 'toastRole', 'variant'],
1995
+ }]
1996
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1997
+ let TdsToggle = class TdsToggle {
1998
+ constructor(c, r, z) {
1999
+ this.z = z;
2000
+ c.detach();
2001
+ this.el = r.nativeElement;
2002
+ proxyOutputs(this, this.el, ['tdsToggle']);
2003
+ }
2004
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsToggle, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
2005
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsToggle, selector: "tds-toggle", inputs: { checked: "checked", disabled: "disabled", headline: "headline", name: "name", required: "required", size: "size", tdsAriaLabel: "tdsAriaLabel", toggleId: "toggleId" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2006
+ };
2007
+ TdsToggle = __decorate([
2008
+ ProxyCmp({
2009
+ inputs: ['checked', 'disabled', 'headline', 'name', 'required', 'size', 'tdsAriaLabel', 'toggleId'],
2010
+ methods: ['toggle']
2011
+ })
2012
+ ], TdsToggle);
2013
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsToggle, decorators: [{
2014
+ type: Component,
2015
+ args: [{
2016
+ selector: 'tds-toggle',
2017
+ changeDetection: ChangeDetectionStrategy.OnPush,
2018
+ template: '<ng-content></ng-content>',
2019
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2020
+ inputs: ['checked', 'disabled', 'headline', 'name', 'required', 'size', 'tdsAriaLabel', 'toggleId'],
2021
+ }]
2022
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2023
+ let TdsTooltip = class TdsTooltip {
2024
+ constructor(c, r, z) {
2025
+ this.z = z;
2026
+ c.detach();
2027
+ this.el = r.nativeElement;
2028
+ }
2029
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
2030
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.3.12", type: TdsTooltip, selector: "tds-tooltip", inputs: { defaultShow: "defaultShow", mouseOverTooltip: "mouseOverTooltip", offsetDistance: "offsetDistance", offsetSkidding: "offsetSkidding", placement: "placement", referenceEl: "referenceEl", selector: "selector", show: "show", tdsAriaDescribedby: "tdsAriaDescribedby", text: "text", trigger: "trigger" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2031
+ };
2032
+ TdsTooltip = __decorate([
2033
+ ProxyCmp({
2034
+ inputs: ['defaultShow', 'mouseOverTooltip', 'offsetDistance', 'offsetSkidding', 'placement', 'referenceEl', 'selector', 'show', 'tdsAriaDescribedby', 'text', 'trigger']
2035
+ })
2036
+ ], TdsTooltip);
2037
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsTooltip, decorators: [{
2038
+ type: Component,
2039
+ args: [{
2040
+ selector: 'tds-tooltip',
2041
+ changeDetection: ChangeDetectionStrategy.OnPush,
2042
+ template: '<ng-content></ng-content>',
2043
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
2044
+ inputs: ['defaultShow', 'mouseOverTooltip', 'offsetDistance', 'offsetSkidding', 'placement', 'referenceEl', 'selector', 'show', 'tdsAriaDescribedby', 'text', 'trigger'],
2045
+ }]
2046
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
2047
+
2048
+ const DIRECTIVES = [
2049
+ TdsAccordion,
2050
+ TdsAccordionItem,
2051
+ TdsBadge,
2052
+ TdsBanner,
2053
+ TdsBlock,
2054
+ TdsBodyCell,
2055
+ TdsBreadcrumb,
2056
+ TdsBreadcrumbs,
2057
+ TdsButton,
2058
+ TdsCard,
2059
+ TdsCheckbox,
2060
+ TdsChip,
2061
+ TdsCoreHeaderItem,
2062
+ TdsDatetime,
2063
+ TdsDivider,
2064
+ TdsDropdown,
2065
+ TdsDropdownOption,
2066
+ TdsFolderTab,
2067
+ TdsFolderTabs,
2068
+ TdsFooter,
2069
+ TdsFooterGroup,
2070
+ TdsFooterItem,
2071
+ TdsHeader,
2072
+ TdsHeaderBrandSymbol,
2073
+ TdsHeaderCell,
2074
+ TdsHeaderDropdown,
2075
+ TdsHeaderDropdownList,
2076
+ TdsHeaderDropdownListItem,
2077
+ TdsHeaderDropdownListUser,
2078
+ TdsHeaderHamburger,
2079
+ TdsHeaderItem,
2080
+ TdsHeaderLauncher,
2081
+ TdsHeaderLauncherButton,
2082
+ TdsHeaderLauncherGrid,
2083
+ TdsHeaderLauncherGridItem,
2084
+ TdsHeaderLauncherGridTitle,
2085
+ TdsHeaderLauncherList,
2086
+ TdsHeaderLauncherListItem,
2087
+ TdsHeaderLauncherListTitle,
2088
+ TdsHeaderTitle,
2089
+ TdsIcon,
2090
+ TdsInlineTab,
2091
+ TdsInlineTabs,
2092
+ TdsLink,
2093
+ TdsMessage,
2094
+ TdsModal,
2095
+ TdsNavigationTab,
2096
+ TdsNavigationTabs,
2097
+ TdsPopoverCanvas,
2098
+ TdsPopoverCore,
2099
+ TdsPopoverMenu,
2100
+ TdsPopoverMenuItem,
2101
+ TdsRadioButton,
2102
+ TdsSideMenu,
2103
+ TdsSideMenuCloseButton,
2104
+ TdsSideMenuCollapseButton,
2105
+ TdsSideMenuDropdown,
2106
+ TdsSideMenuDropdownList,
2107
+ TdsSideMenuDropdownListItem,
2108
+ TdsSideMenuItem,
2109
+ TdsSideMenuOverlay,
2110
+ TdsSideMenuUser,
2111
+ TdsSideMenuUserImage,
2112
+ TdsSideMenuUserLabel,
2113
+ TdsSlider,
2114
+ TdsSpinner,
2115
+ TdsStep,
2116
+ TdsStepper,
2117
+ TdsTable,
2118
+ TdsTableBody,
2119
+ TdsTableBodyInputWrapper,
2120
+ TdsTableBodyRow,
2121
+ TdsTableBodyRowExpandable,
2122
+ TdsTableFooter,
2123
+ TdsTableHeader,
2124
+ TdsTableHeaderInputWrapper,
2125
+ TdsTableToolbar,
2126
+ TdsTextField,
2127
+ TdsTextarea,
2128
+ TdsToast,
2129
+ TdsToggle,
2130
+ TdsTooltip
2131
+ ];
2132
+
2133
+ class ValueAccessor {
2134
+ constructor(el) {
2135
+ this.el = el;
2136
+ this.onChange = () => { };
2137
+ this.onTouched = () => { };
2138
+ }
2139
+ writeValue(value) {
2140
+ this.el.nativeElement.value = this.lastValue = value == null ? '' : value;
2141
+ }
2142
+ handleChangeEvent(value) {
2143
+ if (value !== this.lastValue) {
2144
+ this.lastValue = value;
2145
+ this.onChange(value);
2146
+ }
2147
+ }
2148
+ _handleBlurEvent() {
2149
+ this.onTouched();
2150
+ }
2151
+ registerOnChange(fn) {
2152
+ this.onChange = fn;
2153
+ }
2154
+ registerOnTouched(fn) {
2155
+ this.onTouched = fn;
2156
+ }
2157
+ setDisabledState(isDisabled) {
2158
+ this.el.nativeElement.disabled = isDisabled;
2159
+ }
2160
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
2161
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.12", type: ValueAccessor, host: { listeners: { "focusout": "_handleBlurEvent()" } }, ngImport: i0 }); }
2162
+ }
2163
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: ValueAccessor, decorators: [{
2164
+ type: Directive,
2165
+ args: [{}]
2166
+ }], ctorParameters: () => [{ type: i0.ElementRef }], propDecorators: { _handleBlurEvent: [{
2167
+ type: HostListener,
2168
+ args: ['focusout']
2169
+ }] } });
2170
+
2171
+ class TextValueAccessor extends ValueAccessor {
2172
+ constructor(el) {
2173
+ super(el);
2174
+ }
2175
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TextValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
2176
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.12", type: TextValueAccessor, selector: "tds-text-field, tds-textarea, tds-datetime", host: { listeners: { "tdsInput": "handleChangeEvent($event.target.value)" } }, providers: [
2177
+ {
2178
+ provide: NG_VALUE_ACCESSOR,
2179
+ useExisting: TextValueAccessor,
2180
+ multi: true
2181
+ }
2182
+ ], usesInheritance: true, ngImport: i0 }); }
2183
+ }
2184
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TextValueAccessor, decorators: [{
2185
+ type: Directive,
2186
+ args: [{
2187
+ /* tslint:disable-next-line:directive-selector */
2188
+ selector: 'tds-text-field, tds-textarea, tds-datetime',
2189
+ host: {
2190
+ '(tdsInput)': 'handleChangeEvent($event.target.value)'
2191
+ },
2192
+ providers: [
2193
+ {
2194
+ provide: NG_VALUE_ACCESSOR,
2195
+ useExisting: TextValueAccessor,
2196
+ multi: true
2197
+ }
2198
+ ]
2199
+ }]
2200
+ }], ctorParameters: () => [{ type: i0.ElementRef }] });
2201
+
2202
+ class BooleanValueAccessor extends ValueAccessor {
2203
+ constructor(el) {
2204
+ super(el);
2205
+ }
2206
+ writeValue(value) {
2207
+ this.el.nativeElement.checked = this.lastValue = value == null ? false : value;
2208
+ }
2209
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BooleanValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
2210
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.12", type: BooleanValueAccessor, selector: "tds-checkbox, tds-chip[type=\"checkbox\"], tds-toggle", host: { listeners: { "tdsChange": "handleChangeEvent($event.target.checked)", "tdsToggle": "handleChangeEvent($event.target.checked)" } }, providers: [
2211
+ {
2212
+ provide: NG_VALUE_ACCESSOR,
2213
+ useExisting: BooleanValueAccessor,
2214
+ multi: true
2215
+ }
2216
+ ], usesInheritance: true, ngImport: i0 }); }
2217
+ }
2218
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: BooleanValueAccessor, decorators: [{
2219
+ type: Directive,
2220
+ args: [{
2221
+ /* tslint:disable-next-line:directive-selector */
2222
+ selector: 'tds-checkbox, tds-chip[type="checkbox"], tds-toggle',
2223
+ host: {
2224
+ '(tdsChange)': 'handleChangeEvent($event.target.checked)',
2225
+ '(tdsToggle)': 'handleChangeEvent($event.target.checked)'
2226
+ },
2227
+ providers: [
2228
+ {
2229
+ provide: NG_VALUE_ACCESSOR,
2230
+ useExisting: BooleanValueAccessor,
2231
+ multi: true
2232
+ }
2233
+ ]
2234
+ }]
2235
+ }], ctorParameters: () => [{ type: i0.ElementRef }] });
2236
+
2237
+ class NumericValueAccessor extends ValueAccessor {
2238
+ constructor(el) {
2239
+ super(el);
2240
+ }
2241
+ registerOnChange(fn) {
2242
+ super.registerOnChange(value => {
2243
+ fn(value === '' ? null : parseFloat(value));
2244
+ });
2245
+ }
2246
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: NumericValueAccessor, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
2247
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.12", type: NumericValueAccessor, selector: "tds-slider", host: { listeners: { "tdsChange": "handleChangeEvent($event.target.value)" } }, providers: [
2248
+ {
2249
+ provide: NG_VALUE_ACCESSOR,
2250
+ useExisting: NumericValueAccessor,
2251
+ multi: true
2252
+ }
2253
+ ], usesInheritance: true, ngImport: i0 }); }
2254
+ }
2255
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: NumericValueAccessor, decorators: [{
2256
+ type: Directive,
2257
+ args: [{
2258
+ /* tslint:disable-next-line:directive-selector */
2259
+ selector: 'tds-slider',
2260
+ host: {
2261
+ '(tdsChange)': 'handleChangeEvent($event.target.value)'
2262
+ },
2263
+ providers: [
2264
+ {
2265
+ provide: NG_VALUE_ACCESSOR,
2266
+ useExisting: NumericValueAccessor,
2267
+ multi: true
2268
+ }
2269
+ ]
2270
+ }]
2271
+ }], ctorParameters: () => [{ type: i0.ElementRef }] });
2272
+
2273
+ /**
2274
+ * A custom value accessor for the tds-radio-button and tds-chip of type radio. It extends the default ValueAccessor that is auto-generated by Stencil
2275
+ * Stencil offers an autogenerated radio value accessor but does not currently work as expected.
2276
+ * An issue was submitted to their repository: https://github.com/ionic-team/stencil-ds-output-targets/issues/434
2277
+ * If the issue is ever fixed this value accessor can be replaced with the one auto-generated by Stencil.
2278
+ */
2279
+ class TdsRadioValueAccessor extends ValueAccessor {
2280
+ writeValue(value) {
2281
+ this.el.nativeElement.checked = value === this.el.nativeElement.value;
2282
+ }
2283
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsRadioValueAccessor, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
2284
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.12", type: TdsRadioValueAccessor, selector: "tds-radio-button, tds-chip[type=\"radio\"]", host: { listeners: { "tdsChange": "handleChangeEvent($event.target.value)" } }, providers: [
2285
+ {
2286
+ provide: NG_VALUE_ACCESSOR,
2287
+ useExisting: TdsRadioValueAccessor,
2288
+ multi: true,
2289
+ },
2290
+ ], usesInheritance: true, ngImport: i0 }); }
2291
+ }
2292
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsRadioValueAccessor, decorators: [{
2293
+ type: Directive,
2294
+ args: [{
2295
+ /* tslint:disable-next-line:directive-selector */
2296
+ selector: 'tds-radio-button, tds-chip[type="radio"]',
2297
+ host: {
2298
+ '(tdsChange)': 'handleChangeEvent($event.target.value)',
2299
+ },
2300
+ providers: [
2301
+ {
2302
+ provide: NG_VALUE_ACCESSOR,
2303
+ useExisting: TdsRadioValueAccessor,
2304
+ multi: true,
2305
+ },
2306
+ ],
2307
+ }]
2308
+ }] });
2309
+
2310
+ /**
2311
+ * A custom value accessor for the tds-dropdown. It extends the default ValueAccessor that is auto-generated by Stencil
2312
+ * The tds-dropdown requires slightly different event handling since it doesn't act like any of the native inputs.
2313
+ * The main difference between this value accessor and the other value accessors that are auto-generated by Stencil, is that this one handles `$event.detail.value` instead of `$event.target.value`.
2314
+ */
2315
+ class TdsDropdownValueAccessor extends ValueAccessor {
2316
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsDropdownValueAccessor, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
2317
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "17.3.12", type: TdsDropdownValueAccessor, selector: "tds-dropdown", host: { listeners: { "tdsChange": "handleChangeEvent($event.detail.value)" } }, providers: [
2318
+ {
2319
+ provide: NG_VALUE_ACCESSOR,
2320
+ useExisting: TdsDropdownValueAccessor,
2321
+ multi: true,
2322
+ },
2323
+ ], usesInheritance: true, ngImport: i0 }); }
2324
+ }
2325
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TdsDropdownValueAccessor, decorators: [{
2326
+ type: Directive,
2327
+ args: [{
2328
+ selector: 'tds-dropdown',
2329
+ host: {
2330
+ '(tdsChange)': 'handleChangeEvent($event.detail.value)',
2331
+ },
2332
+ providers: [
2333
+ {
2334
+ provide: NG_VALUE_ACCESSOR,
2335
+ useExisting: TdsDropdownValueAccessor,
2336
+ multi: true,
2337
+ },
2338
+ ],
2339
+ }]
2340
+ }] });
2341
+
2342
+ class TegelModule {
2343
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TegelModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2344
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "17.3.12", ngImport: i0, type: TegelModule, declarations: [TdsAccordion, TdsAccordionItem, TdsBadge, TdsBanner, TdsBlock, TdsBodyCell, TdsBreadcrumb, TdsBreadcrumbs, TdsButton, TdsCard, TdsCheckbox, TdsChip, TdsCoreHeaderItem, TdsDatetime, TdsDivider, TdsDropdown, TdsDropdownOption, TdsFolderTab, TdsFolderTabs, TdsFooter, TdsFooterGroup, TdsFooterItem, TdsHeader, TdsHeaderBrandSymbol, TdsHeaderCell, TdsHeaderDropdown, TdsHeaderDropdownList, TdsHeaderDropdownListItem, TdsHeaderDropdownListUser, TdsHeaderHamburger, TdsHeaderItem, TdsHeaderLauncher, TdsHeaderLauncherButton, TdsHeaderLauncherGrid, TdsHeaderLauncherGridItem, TdsHeaderLauncherGridTitle, TdsHeaderLauncherList, TdsHeaderLauncherListItem, TdsHeaderLauncherListTitle, TdsHeaderTitle, TdsIcon, TdsInlineTab, TdsInlineTabs, TdsLink, TdsMessage, TdsModal, TdsNavigationTab, TdsNavigationTabs, TdsPopoverCanvas, TdsPopoverCore, TdsPopoverMenu, TdsPopoverMenuItem, TdsRadioButton, TdsSideMenu, TdsSideMenuCloseButton, TdsSideMenuCollapseButton, TdsSideMenuDropdown, TdsSideMenuDropdownList, TdsSideMenuDropdownListItem, TdsSideMenuItem, TdsSideMenuOverlay, TdsSideMenuUser, TdsSideMenuUserImage, TdsSideMenuUserLabel, TdsSlider, TdsSpinner, TdsStep, TdsStepper, TdsTable, TdsTableBody, TdsTableBodyInputWrapper, TdsTableBodyRow, TdsTableBodyRowExpandable, TdsTableFooter, TdsTableHeader, TdsTableHeaderInputWrapper, TdsTableToolbar, TdsTextField, TdsTextarea, TdsToast, TdsToggle, TdsTooltip, BooleanValueAccessor,
2345
+ NumericValueAccessor,
2346
+ TextValueAccessor,
2347
+ TdsRadioValueAccessor,
2348
+ TdsDropdownValueAccessor], exports: [TdsAccordion, TdsAccordionItem, TdsBadge, TdsBanner, TdsBlock, TdsBodyCell, TdsBreadcrumb, TdsBreadcrumbs, TdsButton, TdsCard, TdsCheckbox, TdsChip, TdsCoreHeaderItem, TdsDatetime, TdsDivider, TdsDropdown, TdsDropdownOption, TdsFolderTab, TdsFolderTabs, TdsFooter, TdsFooterGroup, TdsFooterItem, TdsHeader, TdsHeaderBrandSymbol, TdsHeaderCell, TdsHeaderDropdown, TdsHeaderDropdownList, TdsHeaderDropdownListItem, TdsHeaderDropdownListUser, TdsHeaderHamburger, TdsHeaderItem, TdsHeaderLauncher, TdsHeaderLauncherButton, TdsHeaderLauncherGrid, TdsHeaderLauncherGridItem, TdsHeaderLauncherGridTitle, TdsHeaderLauncherList, TdsHeaderLauncherListItem, TdsHeaderLauncherListTitle, TdsHeaderTitle, TdsIcon, TdsInlineTab, TdsInlineTabs, TdsLink, TdsMessage, TdsModal, TdsNavigationTab, TdsNavigationTabs, TdsPopoverCanvas, TdsPopoverCore, TdsPopoverMenu, TdsPopoverMenuItem, TdsRadioButton, TdsSideMenu, TdsSideMenuCloseButton, TdsSideMenuCollapseButton, TdsSideMenuDropdown, TdsSideMenuDropdownList, TdsSideMenuDropdownListItem, TdsSideMenuItem, TdsSideMenuOverlay, TdsSideMenuUser, TdsSideMenuUserImage, TdsSideMenuUserLabel, TdsSlider, TdsSpinner, TdsStep, TdsStepper, TdsTable, TdsTableBody, TdsTableBodyInputWrapper, TdsTableBodyRow, TdsTableBodyRowExpandable, TdsTableFooter, TdsTableHeader, TdsTableHeaderInputWrapper, TdsTableToolbar, TdsTextField, TdsTextarea, TdsToast, TdsToggle, TdsTooltip, BooleanValueAccessor,
2349
+ NumericValueAccessor,
2350
+ TextValueAccessor,
2351
+ TdsRadioValueAccessor,
2352
+ TdsDropdownValueAccessor] }); }
2353
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TegelModule, providers: [
2354
+ {
2355
+ provide: APP_INITIALIZER,
2356
+ useFactory: () => defineCustomElements,
2357
+ multi: true,
2358
+ },
2359
+ ] }); }
2360
+ }
2361
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: TegelModule, decorators: [{
2362
+ type: NgModule,
2363
+ args: [{
2364
+ declarations: [
2365
+ ...DIRECTIVES,
2366
+ BooleanValueAccessor,
2367
+ NumericValueAccessor,
2368
+ TextValueAccessor,
2369
+ TdsRadioValueAccessor,
2370
+ TdsDropdownValueAccessor,
2371
+ ],
2372
+ exports: [
2373
+ ...DIRECTIVES,
2374
+ BooleanValueAccessor,
2375
+ NumericValueAccessor,
2376
+ TextValueAccessor,
2377
+ TdsRadioValueAccessor,
2378
+ TdsDropdownValueAccessor,
2379
+ ],
2380
+ providers: [
2381
+ {
2382
+ provide: APP_INITIALIZER,
2383
+ useFactory: () => defineCustomElements,
2384
+ multi: true,
2385
+ },
2386
+ ],
2387
+ }]
2388
+ }] });
2389
+
2390
+ /*
2391
+ * Public API Surface of components
2392
+ */
2393
+
2394
+ /**
2395
+ * Generated bundle index. Do not edit.
2396
+ */
2397
+
2398
+ export { BooleanValueAccessor, DIRECTIVES, NumericValueAccessor, TdsAccordion, TdsAccordionItem, TdsBadge, TdsBanner, TdsBlock, TdsBodyCell, TdsBreadcrumb, TdsBreadcrumbs, TdsButton, TdsCard, TdsCheckbox, TdsChip, TdsCoreHeaderItem, TdsDatetime, TdsDivider, TdsDropdown, TdsDropdownOption, TdsDropdownValueAccessor, TdsFolderTab, TdsFolderTabs, TdsFooter, TdsFooterGroup, TdsFooterItem, TdsHeader, TdsHeaderBrandSymbol, TdsHeaderCell, TdsHeaderDropdown, TdsHeaderDropdownList, TdsHeaderDropdownListItem, TdsHeaderDropdownListUser, TdsHeaderHamburger, TdsHeaderItem, TdsHeaderLauncher, TdsHeaderLauncherButton, TdsHeaderLauncherGrid, TdsHeaderLauncherGridItem, TdsHeaderLauncherGridTitle, TdsHeaderLauncherList, TdsHeaderLauncherListItem, TdsHeaderLauncherListTitle, TdsHeaderTitle, TdsIcon, TdsInlineTab, TdsInlineTabs, TdsLink, TdsMessage, TdsModal, TdsNavigationTab, TdsNavigationTabs, TdsPopoverCanvas, TdsPopoverCore, TdsPopoverMenu, TdsPopoverMenuItem, TdsRadioButton, TdsRadioValueAccessor, TdsSideMenu, TdsSideMenuCloseButton, TdsSideMenuCollapseButton, TdsSideMenuDropdown, TdsSideMenuDropdownList, TdsSideMenuDropdownListItem, TdsSideMenuItem, TdsSideMenuOverlay, TdsSideMenuUser, TdsSideMenuUserImage, TdsSideMenuUserLabel, TdsSlider, TdsSpinner, TdsStep, TdsStepper, TdsTable, TdsTableBody, TdsTableBodyInputWrapper, TdsTableBodyRow, TdsTableBodyRowExpandable, TdsTableFooter, TdsTableHeader, TdsTableHeaderInputWrapper, TdsTableToolbar, TdsTextField, TdsTextarea, TdsToast, TdsToggle, TdsTooltip, TegelModule, TextValueAccessor };
2399
+ //# sourceMappingURL=scania-tegel-angular-17.mjs.map