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