@scania/tegel-angular-17 1.8.2

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