@tet/tet-components-angular 1.4.6-testing → 1.4.7-production

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.
@@ -1,5 +1,5 @@
1
1
  import * as i0 from '@angular/core';
2
- import { Component, ChangeDetectionStrategy, APP_INITIALIZER, NgModule } from '@angular/core';
2
+ import { EventEmitter, Output, ChangeDetectionStrategy, Component, provideAppInitializer, NgModule } from '@angular/core';
3
3
  import { __decorate } from 'tslib';
4
4
  import { fromEvent } from 'rxjs';
5
5
  import { defineCustomElements } from '@tet/tet-components/loader';
@@ -65,12 +65,12 @@ function ProxyCmp(opts) {
65
65
  let TetAccordion = class TetAccordion {
66
66
  constructor(c, r, z) {
67
67
  this.z = z;
68
+ this.openChanged = new EventEmitter();
68
69
  c.detach();
69
70
  this.el = r.nativeElement;
70
- proxyOutputs(this, this.el, ['openChanged']);
71
71
  }
72
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
73
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetAccordion, selector: "tet-accordion", inputs: { breakpoint: "breakpoint", header: "header", headerImageAlt: "headerImageAlt", headerImageSrc: "headerImageSrc", headingTag: "headingTag", indicatorDirection: "indicatorDirection", isOpen: "isOpen", theme: "theme", transparentBackground: "transparentBackground", withAutoScroll: "withAutoScroll", withBorder: "withBorder" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
72
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetAccordion, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
73
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetAccordion, isStandalone: false, selector: "tet-accordion", inputs: { breakpoint: "breakpoint", header: "header", headerImageAlt: "headerImageAlt", headerImageSrc: "headerImageSrc", headingTag: "headingTag", indicatorDirection: "indicatorDirection", isOpen: "isOpen", theme: "theme", transparentBackground: "transparentBackground", withAutoScroll: "withAutoScroll", withBorder: "withBorder" }, outputs: { openChanged: "openChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
74
74
  };
75
75
  TetAccordion = __decorate([
76
76
  ProxyCmp({
@@ -78,7 +78,7 @@ TetAccordion = __decorate([
78
78
  methods: ['open', 'close', 'toggle', 'getState', 'setState']
79
79
  })
80
80
  ], TetAccordion);
81
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetAccordion, decorators: [{
81
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetAccordion, decorators: [{
82
82
  type: Component,
83
83
  args: [{
84
84
  selector: 'tet-accordion',
@@ -86,24 +86,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
86
86
  template: '<ng-content></ng-content>',
87
87
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
88
88
  inputs: ['breakpoint', 'header', 'headerImageAlt', 'headerImageSrc', 'headingTag', 'indicatorDirection', 'isOpen', 'theme', 'transparentBackground', 'withAutoScroll', 'withBorder'],
89
+ outputs: ['openChanged'],
90
+ standalone: false
89
91
  }]
90
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
92
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { openChanged: [{
93
+ type: Output
94
+ }] } });
91
95
  let TetAddressOffersFiltersProducts = class TetAddressOffersFiltersProducts {
92
96
  constructor(c, r, z) {
93
97
  this.z = z;
98
+ this.activeFiltersChanged = new EventEmitter();
99
+ this.filteredProductsChanged = new EventEmitter();
94
100
  c.detach();
95
101
  this.el = r.nativeElement;
96
- proxyOutputs(this, this.el, ['activeFiltersChanged', 'filteredProductsChanged']);
97
102
  }
98
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetAddressOffersFiltersProducts, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
99
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetAddressOffersFiltersProducts, selector: "tet-address-offers-filters-products", inputs: { catalog: "catalog", category: "category", clearFilterButton: "clearFilterButton", language: "language", productCodes: "productCodes", subcategoryId: "subcategoryId", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
103
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetAddressOffersFiltersProducts, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
104
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetAddressOffersFiltersProducts, isStandalone: false, selector: "tet-address-offers-filters-products", inputs: { catalog: "catalog", category: "category", clearFilterButton: "clearFilterButton", language: "language", productCodes: "productCodes", subcategoryId: "subcategoryId", theme: "theme" }, outputs: { activeFiltersChanged: "activeFiltersChanged", filteredProductsChanged: "filteredProductsChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
100
105
  };
101
106
  TetAddressOffersFiltersProducts = __decorate([
102
107
  ProxyCmp({
103
108
  inputs: ['catalog', 'category', 'clearFilterButton', 'language', 'productCodes', 'subcategoryId', 'theme']
104
109
  })
105
110
  ], TetAddressOffersFiltersProducts);
106
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetAddressOffersFiltersProducts, decorators: [{
111
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetAddressOffersFiltersProducts, decorators: [{
107
112
  type: Component,
108
113
  args: [{
109
114
  selector: 'tet-address-offers-filters-products',
@@ -111,17 +116,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
111
116
  template: '<ng-content></ng-content>',
112
117
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
113
118
  inputs: ['catalog', 'category', 'clearFilterButton', 'language', 'productCodes', 'subcategoryId', 'theme'],
114
- }]
115
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
119
+ outputs: ['activeFiltersChanged', 'filteredProductsChanged'],
120
+ standalone: false
121
+ }]
122
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { activeFiltersChanged: [{
123
+ type: Output
124
+ }], filteredProductsChanged: [{
125
+ type: Output
126
+ }] } });
116
127
  let TetAddressSearch = class TetAddressSearch {
117
128
  constructor(c, r, z) {
118
129
  this.z = z;
130
+ this.addressSelected = new EventEmitter();
131
+ this.clearInputField = new EventEmitter();
132
+ this.manualAddressInput = new EventEmitter();
133
+ this.searchSubmitted = new EventEmitter();
119
134
  c.detach();
120
135
  this.el = r.nativeElement;
121
- proxyOutputs(this, this.el, ['addressSelected', 'clearInputField', 'manualAddressInput', 'searchSubmitted']);
122
136
  }
123
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetAddressSearch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
124
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetAddressSearch, selector: "tet-address-search", inputs: { accessibilityLabel: "accessibilityLabel", addressKey: "addressKey", closeButtonText: "closeButtonText", inputDisabled: "inputDisabled", isInputInvalid: "isInputInvalid", label: "label", language: "language", manualAddressTriggers: "manualAddressTriggers", minSearchKeywordLength: "minSearchKeywordLength", newFormsStyle: "newFormsStyle", newStyle: "newStyle", placeholder: "placeholder", redesignedStyle: "redesignedStyle", searchButtonText: "searchButtonText", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
137
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetAddressSearch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
138
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetAddressSearch, isStandalone: false, selector: "tet-address-search", inputs: { accessibilityLabel: "accessibilityLabel", addressKey: "addressKey", closeButtonText: "closeButtonText", inputDisabled: "inputDisabled", isInputInvalid: "isInputInvalid", label: "label", language: "language", manualAddressTriggers: "manualAddressTriggers", minSearchKeywordLength: "minSearchKeywordLength", newFormsStyle: "newFormsStyle", newStyle: "newStyle", placeholder: "placeholder", redesignedStyle: "redesignedStyle", searchButtonText: "searchButtonText", theme: "theme" }, outputs: { addressSelected: "addressSelected", clearInputField: "clearInputField", manualAddressInput: "manualAddressInput", searchSubmitted: "searchSubmitted" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
125
139
  };
126
140
  TetAddressSearch = __decorate([
127
141
  ProxyCmp({
@@ -129,7 +143,7 @@ TetAddressSearch = __decorate([
129
143
  methods: ['resetInputState']
130
144
  })
131
145
  ], TetAddressSearch);
132
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetAddressSearch, decorators: [{
146
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetAddressSearch, decorators: [{
133
147
  type: Component,
134
148
  args: [{
135
149
  selector: 'tet-address-search',
@@ -137,24 +151,36 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
137
151
  template: '<ng-content></ng-content>',
138
152
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
139
153
  inputs: ['accessibilityLabel', 'addressKey', 'closeButtonText', 'inputDisabled', 'isInputInvalid', 'label', 'language', 'manualAddressTriggers', 'minSearchKeywordLength', 'newFormsStyle', 'newStyle', 'placeholder', 'redesignedStyle', 'searchButtonText', 'theme'],
140
- }]
141
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
154
+ outputs: ['addressSelected', 'clearInputField', 'manualAddressInput', 'searchSubmitted'],
155
+ standalone: false
156
+ }]
157
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { addressSelected: [{
158
+ type: Output
159
+ }], clearInputField: [{
160
+ type: Output
161
+ }], manualAddressInput: [{
162
+ type: Output
163
+ }], searchSubmitted: [{
164
+ type: Output
165
+ }] } });
142
166
  let TetAssetAddresses = class TetAssetAddresses {
143
167
  constructor(c, r, z) {
144
168
  this.z = z;
169
+ this.assetAddressSelected = new EventEmitter();
170
+ this.addressesUpdated = new EventEmitter();
171
+ this.customerNotFound = new EventEmitter();
145
172
  c.detach();
146
173
  this.el = r.nativeElement;
147
- proxyOutputs(this, this.el, ['assetAddressSelected', 'addressesUpdated', 'customerNotFound']);
148
174
  }
149
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetAssetAddresses, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
150
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetAssetAddresses, selector: "tet-asset-addresses", inputs: { accessToken: "accessToken", addressSearchLabel: "addressSearchLabel", addressSearchPlaceholder: "addressSearchPlaceholder", pid: "pid", salesforceAccountId: "salesforceAccountId", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
175
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetAssetAddresses, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
176
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetAssetAddresses, isStandalone: false, selector: "tet-asset-addresses", inputs: { accessToken: "accessToken", addressSearchLabel: "addressSearchLabel", addressSearchPlaceholder: "addressSearchPlaceholder", pid: "pid", salesforceAccountId: "salesforceAccountId", theme: "theme" }, outputs: { assetAddressSelected: "assetAddressSelected", addressesUpdated: "addressesUpdated", customerNotFound: "customerNotFound" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
151
177
  };
152
178
  TetAssetAddresses = __decorate([
153
179
  ProxyCmp({
154
180
  inputs: ['accessToken', 'addressSearchLabel', 'addressSearchPlaceholder', 'pid', 'salesforceAccountId', 'theme']
155
181
  })
156
182
  ], TetAssetAddresses);
157
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetAssetAddresses, decorators: [{
183
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetAssetAddresses, decorators: [{
158
184
  type: Component,
159
185
  args: [{
160
186
  selector: 'tet-asset-addresses',
@@ -162,17 +188,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
162
188
  template: '<ng-content></ng-content>',
163
189
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
164
190
  inputs: ['accessToken', 'addressSearchLabel', 'addressSearchPlaceholder', 'pid', 'salesforceAccountId', 'theme'],
165
- }]
166
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
191
+ outputs: ['assetAddressSelected', 'addressesUpdated', 'customerNotFound'],
192
+ standalone: false
193
+ }]
194
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { assetAddressSelected: [{
195
+ type: Output
196
+ }], addressesUpdated: [{
197
+ type: Output
198
+ }], customerNotFound: [{
199
+ type: Output
200
+ }] } });
167
201
  let TetAssetAvailabilityAddresses = class TetAssetAvailabilityAddresses {
168
202
  constructor(c, r, z) {
169
203
  this.z = z;
204
+ this.assetAddressSelected = new EventEmitter();
205
+ this.addressesUpdated = new EventEmitter();
206
+ this.customerNotFound = new EventEmitter();
170
207
  c.detach();
171
208
  this.el = r.nativeElement;
172
- proxyOutputs(this, this.el, ['assetAddressSelected', 'addressesUpdated', 'customerNotFound']);
173
209
  }
174
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetAssetAvailabilityAddresses, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
175
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetAssetAvailabilityAddresses, selector: "tet-asset-availability-addresses", inputs: { accessToken: "accessToken", addressSearchLabel: "addressSearchLabel", addressSearchPlaceholder: "addressSearchPlaceholder", pid: "pid", salesforceAccountId: "salesforceAccountId", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
210
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetAssetAvailabilityAddresses, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
211
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetAssetAvailabilityAddresses, isStandalone: false, selector: "tet-asset-availability-addresses", inputs: { accessToken: "accessToken", addressSearchLabel: "addressSearchLabel", addressSearchPlaceholder: "addressSearchPlaceholder", pid: "pid", salesforceAccountId: "salesforceAccountId", theme: "theme" }, outputs: { assetAddressSelected: "assetAddressSelected", addressesUpdated: "addressesUpdated", customerNotFound: "customerNotFound" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
176
212
  };
177
213
  TetAssetAvailabilityAddresses = __decorate([
178
214
  ProxyCmp({
@@ -180,7 +216,7 @@ TetAssetAvailabilityAddresses = __decorate([
180
216
  methods: ['unselectAssetAddresses']
181
217
  })
182
218
  ], TetAssetAvailabilityAddresses);
183
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetAssetAvailabilityAddresses, decorators: [{
219
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetAssetAvailabilityAddresses, decorators: [{
184
220
  type: Component,
185
221
  args: [{
186
222
  selector: 'tet-asset-availability-addresses',
@@ -188,17 +224,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
188
224
  template: '<ng-content></ng-content>',
189
225
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
190
226
  inputs: ['accessToken', 'addressSearchLabel', 'addressSearchPlaceholder', 'pid', 'salesforceAccountId', 'theme'],
191
- }]
192
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
227
+ outputs: ['assetAddressSelected', 'addressesUpdated', 'customerNotFound'],
228
+ standalone: false
229
+ }]
230
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { assetAddressSelected: [{
231
+ type: Output
232
+ }], addressesUpdated: [{
233
+ type: Output
234
+ }], customerNotFound: [{
235
+ type: Output
236
+ }] } });
193
237
  let TetAutocomplete = class TetAutocomplete {
194
238
  constructor(c, r, z) {
195
239
  this.z = z;
240
+ this.optionSelected = new EventEmitter();
241
+ this.activeComponentStateChanged = new EventEmitter();
196
242
  c.detach();
197
243
  this.el = r.nativeElement;
198
- proxyOutputs(this, this.el, ['optionSelected', 'activeComponentStateChanged']);
199
244
  }
200
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetAutocomplete, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
201
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetAutocomplete, selector: "tet-autocomplete", inputs: { clearCallback: "clearCallback", darkTheme: "darkTheme", defaultOptions: "defaultOptions", finishedLoading: "finishedLoading", highlightOptionsKeyword: "highlightOptionsKeyword", newStyle: "newStyle", noOptionsMessage: "noOptionsMessage", noOptionsRenderFunction: "noOptionsRenderFunction", optionsFilterAction: "optionsFilterAction", optionsIcon: "optionsIcon", redesignedStyle: "redesignedStyle", showOptionsOnEscapeClear: "showOptionsOnEscapeClear" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
245
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetAutocomplete, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
246
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetAutocomplete, isStandalone: false, selector: "tet-autocomplete", inputs: { clearCallback: "clearCallback", darkTheme: "darkTheme", defaultOptions: "defaultOptions", finishedLoading: "finishedLoading", highlightOptionsKeyword: "highlightOptionsKeyword", newStyle: "newStyle", noOptionsMessage: "noOptionsMessage", noOptionsRenderFunction: "noOptionsRenderFunction", optionsFilterAction: "optionsFilterAction", optionsIcon: "optionsIcon", redesignedStyle: "redesignedStyle", showOptionsOnEscapeClear: "showOptionsOnEscapeClear" }, outputs: { optionSelected: "optionSelected", activeComponentStateChanged: "activeComponentStateChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
202
247
  };
203
248
  TetAutocomplete = __decorate([
204
249
  ProxyCmp({
@@ -206,7 +251,7 @@ TetAutocomplete = __decorate([
206
251
  methods: ['clear', 'focusOnNativeInput', 'selectOption']
207
252
  })
208
253
  ], TetAutocomplete);
209
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetAutocomplete, decorators: [{
254
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetAutocomplete, decorators: [{
210
255
  type: Component,
211
256
  args: [{
212
257
  selector: 'tet-autocomplete',
@@ -214,17 +259,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
214
259
  template: '<ng-content></ng-content>',
215
260
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
216
261
  inputs: ['clearCallback', 'darkTheme', 'defaultOptions', 'finishedLoading', 'highlightOptionsKeyword', 'newStyle', 'noOptionsMessage', 'noOptionsRenderFunction', 'optionsFilterAction', 'optionsIcon', 'redesignedStyle', 'showOptionsOnEscapeClear'],
217
- }]
218
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
262
+ outputs: ['optionSelected', 'activeComponentStateChanged'],
263
+ standalone: false
264
+ }]
265
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { optionSelected: [{
266
+ type: Output
267
+ }], activeComponentStateChanged: [{
268
+ type: Output
269
+ }] } });
219
270
  let TetAutocompleteDropdown = class TetAutocompleteDropdown {
220
271
  constructor(c, r, z) {
221
272
  this.z = z;
273
+ this.optionSelected = new EventEmitter();
274
+ this.inputValueCleared = new EventEmitter();
275
+ this.inputValueChanged = new EventEmitter();
222
276
  c.detach();
223
277
  this.el = r.nativeElement;
224
- proxyOutputs(this, this.el, ['optionSelected', 'inputValueCleared', 'inputValueChanged']);
225
278
  }
226
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetAutocompleteDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
227
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetAutocompleteDropdown, selector: "tet-autocomplete-dropdown", inputs: { defaultOption: "defaultOption", errorMessage: "errorMessage", hasError: "hasError", label: "label", noOptionsMessage: "noOptionsMessage", options: "options", placeholder: "placeholder", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
279
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetAutocompleteDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
280
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetAutocompleteDropdown, isStandalone: false, selector: "tet-autocomplete-dropdown", inputs: { defaultOption: "defaultOption", errorMessage: "errorMessage", hasError: "hasError", label: "label", noOptionsMessage: "noOptionsMessage", options: "options", placeholder: "placeholder", theme: "theme" }, outputs: { optionSelected: "optionSelected", inputValueCleared: "inputValueCleared", inputValueChanged: "inputValueChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
228
281
  };
229
282
  TetAutocompleteDropdown = __decorate([
230
283
  ProxyCmp({
@@ -232,7 +285,7 @@ TetAutocompleteDropdown = __decorate([
232
285
  methods: ['clearInput', 'focusOnNativeInput']
233
286
  })
234
287
  ], TetAutocompleteDropdown);
235
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetAutocompleteDropdown, decorators: [{
288
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetAutocompleteDropdown, decorators: [{
236
289
  type: Component,
237
290
  args: [{
238
291
  selector: 'tet-autocomplete-dropdown',
@@ -240,24 +293,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
240
293
  template: '<ng-content></ng-content>',
241
294
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
242
295
  inputs: ['defaultOption', 'errorMessage', 'hasError', 'label', 'noOptionsMessage', 'options', 'placeholder', 'theme'],
243
- }]
244
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
296
+ outputs: ['optionSelected', 'inputValueCleared', 'inputValueChanged'],
297
+ standalone: false
298
+ }]
299
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { optionSelected: [{
300
+ type: Output
301
+ }], inputValueCleared: [{
302
+ type: Output
303
+ }], inputValueChanged: [{
304
+ type: Output
305
+ }] } });
245
306
  let TetAvailabilityContactForm = class TetAvailabilityContactForm {
246
307
  constructor(c, r, z) {
247
308
  this.z = z;
309
+ this.taskCreationSuccess = new EventEmitter();
310
+ this.taskCreationFailed = new EventEmitter();
248
311
  c.detach();
249
312
  this.el = r.nativeElement;
250
- proxyOutputs(this, this.el, ['taskCreationSuccess', 'taskCreationFailed']);
251
313
  }
252
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetAvailabilityContactForm, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
253
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetAvailabilityContactForm, selector: "tet-availability-contact-form", inputs: { darkTheme: "darkTheme", language: "language", showAvailabilityContactForm: "showAvailabilityContactForm", showInputLabel: "showInputLabel", showTitle: "showTitle", submitButtonProps: "submitButtonProps", subtitle: "subtitle", success: "success", taskOptions: "taskOptions", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
314
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetAvailabilityContactForm, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
315
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetAvailabilityContactForm, isStandalone: false, selector: "tet-availability-contact-form", inputs: { darkTheme: "darkTheme", language: "language", showAvailabilityContactForm: "showAvailabilityContactForm", showInputLabel: "showInputLabel", showTitle: "showTitle", submitButtonProps: "submitButtonProps", subtitle: "subtitle", success: "success", taskOptions: "taskOptions", theme: "theme" }, outputs: { taskCreationSuccess: "taskCreationSuccess", taskCreationFailed: "taskCreationFailed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
254
316
  };
255
317
  TetAvailabilityContactForm = __decorate([
256
318
  ProxyCmp({
257
319
  inputs: ['darkTheme', 'language', 'showAvailabilityContactForm', 'showInputLabel', 'showTitle', 'submitButtonProps', 'subtitle', 'success', 'taskOptions', 'theme']
258
320
  })
259
321
  ], TetAvailabilityContactForm);
260
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetAvailabilityContactForm, decorators: [{
322
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetAvailabilityContactForm, decorators: [{
261
323
  type: Component,
262
324
  args: [{
263
325
  selector: 'tet-availability-contact-form',
@@ -265,17 +327,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
265
327
  template: '<ng-content></ng-content>',
266
328
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
267
329
  inputs: ['darkTheme', 'language', 'showAvailabilityContactForm', 'showInputLabel', 'showTitle', 'submitButtonProps', 'subtitle', 'success', 'taskOptions', 'theme'],
268
- }]
269
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
330
+ outputs: ['taskCreationSuccess', 'taskCreationFailed'],
331
+ standalone: false
332
+ }]
333
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { taskCreationSuccess: [{
334
+ type: Output
335
+ }], taskCreationFailed: [{
336
+ type: Output
337
+ }] } });
270
338
  let TetB2bCheckOutForm = class TetB2bCheckOutForm {
271
339
  constructor(c, r, z) {
272
340
  this.z = z;
341
+ this.submitCheckOutForm = new EventEmitter();
273
342
  c.detach();
274
343
  this.el = r.nativeElement;
275
- proxyOutputs(this, this.el, ['submit-check-out-form']);
276
344
  }
277
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetB2bCheckOutForm, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
278
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetB2bCheckOutForm, selector: "tet-b2b-check-out-form", inputs: { language: "language", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
345
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetB2bCheckOutForm, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
346
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetB2bCheckOutForm, isStandalone: false, selector: "tet-b2b-check-out-form", inputs: { language: "language", theme: "theme" }, outputs: { "submit-check-out-form": "submit-check-out-form", submitCheckOutForm: "submitCheckOutForm" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
279
347
  };
280
348
  TetB2bCheckOutForm = __decorate([
281
349
  ProxyCmp({
@@ -283,7 +351,7 @@ TetB2bCheckOutForm = __decorate([
283
351
  methods: ['open', 'close']
284
352
  })
285
353
  ], TetB2bCheckOutForm);
286
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetB2bCheckOutForm, decorators: [{
354
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetB2bCheckOutForm, decorators: [{
287
355
  type: Component,
288
356
  args: [{
289
357
  selector: 'tet-b2b-check-out-form',
@@ -291,24 +359,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
291
359
  template: '<ng-content></ng-content>',
292
360
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
293
361
  inputs: ['language', 'theme'],
362
+ outputs: ['submit-check-out-form'],
363
+ standalone: false
294
364
  }]
295
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
365
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { submitCheckOutForm: [{
366
+ type: Output
367
+ }] } });
296
368
  let TetB2bCompareCard = class TetB2bCompareCard {
297
369
  constructor(c, r, z) {
298
370
  this.z = z;
371
+ this.countChange = new EventEmitter();
372
+ this.selectedChange = new EventEmitter();
299
373
  c.detach();
300
374
  this.el = r.nativeElement;
301
- proxyOutputs(this, this.el, ['countChange', 'selectedChange']);
302
375
  }
303
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetB2bCompareCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
304
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetB2bCompareCard, selector: "tet-b2b-compare-card", inputs: { count: "count", isSelected: "isSelected", options: "options", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
376
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetB2bCompareCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
377
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetB2bCompareCard, isStandalone: false, selector: "tet-b2b-compare-card", inputs: { count: "count", isSelected: "isSelected", options: "options", theme: "theme" }, outputs: { countChange: "countChange", selectedChange: "selectedChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
305
378
  };
306
379
  TetB2bCompareCard = __decorate([
307
380
  ProxyCmp({
308
381
  inputs: ['count', 'isSelected', 'options', 'theme']
309
382
  })
310
383
  ], TetB2bCompareCard);
311
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetB2bCompareCard, decorators: [{
384
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetB2bCompareCard, decorators: [{
312
385
  type: Component,
313
386
  args: [{
314
387
  selector: 'tet-b2b-compare-card',
@@ -316,17 +389,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
316
389
  template: '<ng-content></ng-content>',
317
390
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
318
391
  inputs: ['count', 'isSelected', 'options', 'theme'],
319
- }]
320
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
392
+ outputs: ['countChange', 'selectedChange'],
393
+ standalone: false
394
+ }]
395
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { countChange: [{
396
+ type: Output
397
+ }], selectedChange: [{
398
+ type: Output
399
+ }] } });
321
400
  let TetB2bConfigurator = class TetB2bConfigurator {
322
401
  constructor(c, r, z) {
323
402
  this.z = z;
403
+ this.compareLinkClick = new EventEmitter();
404
+ this.b2bConfiguratorSubmit = new EventEmitter();
405
+ this.successCloseClick = new EventEmitter();
324
406
  c.detach();
325
407
  this.el = r.nativeElement;
326
- proxyOutputs(this, this.el, ['compareLinkClick', 'b2bConfiguratorSubmit', 'successCloseClick']);
327
408
  }
328
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetB2bConfigurator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
329
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetB2bConfigurator, selector: "tet-b2b-configurator", inputs: { stickyRefEl: "stickyRefEl", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
409
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetB2bConfigurator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
410
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetB2bConfigurator, isStandalone: false, selector: "tet-b2b-configurator", inputs: { stickyRefEl: "stickyRefEl", theme: "theme" }, outputs: { compareLinkClick: "compareLinkClick", b2bConfiguratorSubmit: "b2bConfiguratorSubmit", successCloseClick: "successCloseClick" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
330
411
  };
331
412
  TetB2bConfigurator = __decorate([
332
413
  ProxyCmp({
@@ -334,7 +415,7 @@ TetB2bConfigurator = __decorate([
334
415
  methods: ['setSubmitFormState']
335
416
  })
336
417
  ], TetB2bConfigurator);
337
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetB2bConfigurator, decorators: [{
418
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetB2bConfigurator, decorators: [{
338
419
  type: Component,
339
420
  args: [{
340
421
  selector: 'tet-b2b-configurator',
@@ -342,16 +423,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
342
423
  template: '<ng-content></ng-content>',
343
424
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
344
425
  inputs: ['stickyRefEl', 'theme'],
345
- }]
346
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
426
+ outputs: ['compareLinkClick', 'b2bConfiguratorSubmit', 'successCloseClick'],
427
+ standalone: false
428
+ }]
429
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { compareLinkClick: [{
430
+ type: Output
431
+ }], b2bConfiguratorSubmit: [{
432
+ type: Output
433
+ }], successCloseClick: [{
434
+ type: Output
435
+ }] } });
347
436
  let TetB2bConfiguratorCart = class TetB2bConfiguratorCart {
348
437
  constructor(c, r, z) {
349
438
  this.z = z;
350
439
  c.detach();
351
440
  this.el = r.nativeElement;
352
441
  }
353
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetB2bConfiguratorCart, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
354
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetB2bConfiguratorCart, selector: "tet-b2b-configurator-cart", inputs: { context: "context", data: "data", isCartEmpty: "isCartEmpty", isDesktopResolution: "isDesktopResolution", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
442
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetB2bConfiguratorCart, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
443
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetB2bConfiguratorCart, isStandalone: false, selector: "tet-b2b-configurator-cart", inputs: { context: "context", data: "data", isCartEmpty: "isCartEmpty", isDesktopResolution: "isDesktopResolution", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
355
444
  };
356
445
  TetB2bConfiguratorCart = __decorate([
357
446
  ProxyCmp({
@@ -359,7 +448,7 @@ TetB2bConfiguratorCart = __decorate([
359
448
  methods: ['changeBlockState']
360
449
  })
361
450
  ], TetB2bConfiguratorCart);
362
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetB2bConfiguratorCart, decorators: [{
451
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetB2bConfiguratorCart, decorators: [{
363
452
  type: Component,
364
453
  args: [{
365
454
  selector: 'tet-b2b-configurator-cart',
@@ -367,17 +456,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
367
456
  template: '<ng-content></ng-content>',
368
457
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
369
458
  inputs: ['context', 'data', 'isCartEmpty', 'isDesktopResolution', 'theme'],
459
+ standalone: false
370
460
  }]
371
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
461
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
372
462
  let TetBannerNav = class TetBannerNav {
373
463
  constructor(c, r, z) {
374
464
  this.z = z;
465
+ this.slideChange = new EventEmitter();
466
+ this.pauseStateChange = new EventEmitter();
375
467
  c.detach();
376
468
  this.el = r.nativeElement;
377
- proxyOutputs(this, this.el, ['slideChange', 'pauseStateChange']);
378
469
  }
379
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetBannerNav, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
380
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetBannerNav, selector: "tet-banner-nav", inputs: { duration: "duration", language: "language", mobileLayout: "mobileLayout", paused: "paused", slides: "slides", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
470
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetBannerNav, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
471
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetBannerNav, isStandalone: false, selector: "tet-banner-nav", inputs: { duration: "duration", language: "language", mobileLayout: "mobileLayout", paused: "paused", slides: "slides", theme: "theme" }, outputs: { slideChange: "slideChange", pauseStateChange: "pauseStateChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
381
472
  };
382
473
  TetBannerNav = __decorate([
383
474
  ProxyCmp({
@@ -385,7 +476,7 @@ TetBannerNav = __decorate([
385
476
  methods: ['pause', 'play', 'goTo', 'next', 'previous', 'getCurrentSlide']
386
477
  })
387
478
  ], TetBannerNav);
388
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetBannerNav, decorators: [{
479
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetBannerNav, decorators: [{
389
480
  type: Component,
390
481
  args: [{
391
482
  selector: 'tet-banner-nav',
@@ -393,23 +484,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
393
484
  template: '<ng-content></ng-content>',
394
485
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
395
486
  inputs: ['duration', 'language', 'mobileLayout', 'paused', 'slides', 'theme'],
396
- }]
397
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
487
+ outputs: ['slideChange', 'pauseStateChange'],
488
+ standalone: false
489
+ }]
490
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { slideChange: [{
491
+ type: Output
492
+ }], pauseStateChange: [{
493
+ type: Output
494
+ }] } });
398
495
  let TetBarGraph = class TetBarGraph {
399
496
  constructor(c, r, z) {
400
497
  this.z = z;
401
498
  c.detach();
402
499
  this.el = r.nativeElement;
403
500
  }
404
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetBarGraph, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
405
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetBarGraph, selector: "tet-bar-graph", inputs: { animationDuration: "animationDuration", data: "data", dataOrder: "dataOrder", labelPosition: "labelPosition", maxValue: "maxValue", minValue: "minValue", parentContainer: "parentContainer", size: "size", theme: "theme", valuePosition: "valuePosition", valueUnit: "valueUnit", withGrid: "withGrid" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
501
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetBarGraph, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
502
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetBarGraph, isStandalone: false, selector: "tet-bar-graph", inputs: { animationDuration: "animationDuration", data: "data", dataOrder: "dataOrder", labelPosition: "labelPosition", maxValue: "maxValue", minValue: "minValue", parentContainer: "parentContainer", size: "size", theme: "theme", valuePosition: "valuePosition", valueUnit: "valueUnit", withGrid: "withGrid" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
406
503
  };
407
504
  TetBarGraph = __decorate([
408
505
  ProxyCmp({
409
506
  inputs: ['animationDuration', 'data', 'dataOrder', 'labelPosition', 'maxValue', 'minValue', 'parentContainer', 'size', 'theme', 'valuePosition', 'valueUnit', 'withGrid']
410
507
  })
411
508
  ], TetBarGraph);
412
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetBarGraph, decorators: [{
509
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetBarGraph, decorators: [{
413
510
  type: Component,
414
511
  args: [{
415
512
  selector: 'tet-bar-graph',
@@ -417,24 +514,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
417
514
  template: '<ng-content></ng-content>',
418
515
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
419
516
  inputs: ['animationDuration', 'data', 'dataOrder', 'labelPosition', 'maxValue', 'minValue', 'parentContainer', 'size', 'theme', 'valuePosition', 'valueUnit', 'withGrid'],
517
+ standalone: false
420
518
  }]
421
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
519
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
422
520
  let TetBusinessLines = class TetBusinessLines {
423
521
  constructor(c, r, z) {
424
522
  this.z = z;
523
+ this.businessLineSelected = new EventEmitter();
425
524
  c.detach();
426
525
  this.el = r.nativeElement;
427
- proxyOutputs(this, this.el, ['businessLineSelected']);
428
526
  }
429
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetBusinessLines, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
430
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetBusinessLines, selector: "tet-business-lines", inputs: { addressKey: "addressKey", language: "language", showHeadings: "showHeadings" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
527
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetBusinessLines, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
528
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetBusinessLines, isStandalone: false, selector: "tet-business-lines", inputs: { addressKey: "addressKey", language: "language", showHeadings: "showHeadings" }, outputs: { businessLineSelected: "businessLineSelected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
431
529
  };
432
530
  TetBusinessLines = __decorate([
433
531
  ProxyCmp({
434
532
  inputs: ['addressKey', 'language', 'showHeadings']
435
533
  })
436
534
  ], TetBusinessLines);
437
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetBusinessLines, decorators: [{
535
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetBusinessLines, decorators: [{
438
536
  type: Component,
439
537
  args: [{
440
538
  selector: 'tet-business-lines',
@@ -442,17 +540,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
442
540
  template: '<ng-content></ng-content>',
443
541
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
444
542
  inputs: ['addressKey', 'language', 'showHeadings'],
543
+ outputs: ['businessLineSelected'],
544
+ standalone: false
445
545
  }]
446
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
546
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { businessLineSelected: [{
547
+ type: Output
548
+ }] } });
447
549
  let TetBusinessNavigation = class TetBusinessNavigation {
448
550
  constructor(c, r, z) {
449
551
  this.z = z;
552
+ this.menuClickEvent = new EventEmitter();
450
553
  c.detach();
451
554
  this.el = r.nativeElement;
452
- proxyOutputs(this, this.el, ['menu-click-event']);
453
555
  }
454
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetBusinessNavigation, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
455
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetBusinessNavigation, selector: "tet-business-navigation", inputs: { menuItems: "menuItems", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
556
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetBusinessNavigation, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
557
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetBusinessNavigation, isStandalone: false, selector: "tet-business-navigation", inputs: { menuItems: "menuItems", theme: "theme" }, outputs: { "menu-click-event": "menu-click-event", menuClickEvent: "menuClickEvent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
456
558
  };
457
559
  TetBusinessNavigation = __decorate([
458
560
  ProxyCmp({
@@ -460,7 +562,7 @@ TetBusinessNavigation = __decorate([
460
562
  methods: ['selectMenuItem']
461
563
  })
462
564
  ], TetBusinessNavigation);
463
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetBusinessNavigation, decorators: [{
565
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetBusinessNavigation, decorators: [{
464
566
  type: Component,
465
567
  args: [{
466
568
  selector: 'tet-business-navigation',
@@ -468,23 +570,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
468
570
  template: '<ng-content></ng-content>',
469
571
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
470
572
  inputs: ['menuItems', 'theme'],
573
+ outputs: ['menu-click-event'],
574
+ standalone: false
471
575
  }]
472
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
576
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { menuClickEvent: [{
577
+ type: Output
578
+ }] } });
473
579
  let TetBusinessRoundStepper = class TetBusinessRoundStepper {
474
580
  constructor(c, r, z) {
475
581
  this.z = z;
476
582
  c.detach();
477
583
  this.el = r.nativeElement;
478
584
  }
479
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetBusinessRoundStepper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
480
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetBusinessRoundStepper, selector: "tet-business-round-stepper", inputs: { layout: "layout", stepperData: "stepperData", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
585
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetBusinessRoundStepper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
586
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetBusinessRoundStepper, isStandalone: false, selector: "tet-business-round-stepper", inputs: { layout: "layout", stepperData: "stepperData", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
481
587
  };
482
588
  TetBusinessRoundStepper = __decorate([
483
589
  ProxyCmp({
484
590
  inputs: ['layout', 'stepperData', 'theme']
485
591
  })
486
592
  ], TetBusinessRoundStepper);
487
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetBusinessRoundStepper, decorators: [{
593
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetBusinessRoundStepper, decorators: [{
488
594
  type: Component,
489
595
  args: [{
490
596
  selector: 'tet-business-round-stepper',
@@ -492,24 +598,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
492
598
  template: '<ng-content></ng-content>',
493
599
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
494
600
  inputs: ['layout', 'stepperData', 'theme'],
601
+ standalone: false
495
602
  }]
496
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
603
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
497
604
  let TetBusinessSummaryCard = class TetBusinessSummaryCard {
498
605
  constructor(c, r, z) {
499
606
  this.z = z;
607
+ this.editButtonClick = new EventEmitter();
608
+ this.deleteButtonClick = new EventEmitter();
609
+ this.amountChange = new EventEmitter();
500
610
  c.detach();
501
611
  this.el = r.nativeElement;
502
- proxyOutputs(this, this.el, ['editButtonClick', 'deleteButtonClick', 'amountChange']);
503
612
  }
504
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetBusinessSummaryCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
505
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetBusinessSummaryCard, selector: "tet-business-summary-card", inputs: { context: "context", contractTerm: "contractTerm", currency: "currency", discountPrice: "discountPrice", language: "language", maxValue: "maxValue", minValue: "minValue", price: "price", productDescription: "productDescription", productName: "productName", stepperLabel: "stepperLabel", theme: "theme", value: "value", withStepper: "withStepper" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
613
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetBusinessSummaryCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
614
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetBusinessSummaryCard, isStandalone: false, selector: "tet-business-summary-card", inputs: { context: "context", contractTerm: "contractTerm", currency: "currency", discountPrice: "discountPrice", language: "language", maxValue: "maxValue", minValue: "minValue", price: "price", productDescription: "productDescription", productName: "productName", stepperLabel: "stepperLabel", theme: "theme", value: "value", withStepper: "withStepper" }, outputs: { editButtonClick: "editButtonClick", deleteButtonClick: "deleteButtonClick", amountChange: "amountChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
506
615
  };
507
616
  TetBusinessSummaryCard = __decorate([
508
617
  ProxyCmp({
509
618
  inputs: ['context', 'contractTerm', 'currency', 'discountPrice', 'language', 'maxValue', 'minValue', 'price', 'productDescription', 'productName', 'stepperLabel', 'theme', 'value', 'withStepper']
510
619
  })
511
620
  ], TetBusinessSummaryCard);
512
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetBusinessSummaryCard, decorators: [{
621
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetBusinessSummaryCard, decorators: [{
513
622
  type: Component,
514
623
  args: [{
515
624
  selector: 'tet-business-summary-card',
@@ -517,23 +626,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
517
626
  template: '<ng-content></ng-content>',
518
627
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
519
628
  inputs: ['context', 'contractTerm', 'currency', 'discountPrice', 'language', 'maxValue', 'minValue', 'price', 'productDescription', 'productName', 'stepperLabel', 'theme', 'value', 'withStepper'],
520
- }]
521
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
629
+ outputs: ['editButtonClick', 'deleteButtonClick', 'amountChange'],
630
+ standalone: false
631
+ }]
632
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { editButtonClick: [{
633
+ type: Output
634
+ }], deleteButtonClick: [{
635
+ type: Output
636
+ }], amountChange: [{
637
+ type: Output
638
+ }] } });
522
639
  let TetButton = class TetButton {
523
640
  constructor(c, r, z) {
524
641
  this.z = z;
525
642
  c.detach();
526
643
  this.el = r.nativeElement;
527
644
  }
528
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
529
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetButton, selector: "tet-button", inputs: { accessibilityLabel: "accessibilityLabel", clickCallback: "clickCallback", disabled: "disabled", elementId: "elementId", iconMode: "iconMode", iconName: "iconName", iconPosition: "iconPosition", size: "size", theme: "theme", type: "type", url: "url", urlTarget: "urlTarget" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
645
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetButton, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
646
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetButton, isStandalone: false, selector: "tet-button", inputs: { accessibilityLabel: "accessibilityLabel", clickCallback: "clickCallback", disabled: "disabled", elementId: "elementId", iconMode: "iconMode", iconName: "iconName", iconPosition: "iconPosition", size: "size", theme: "theme", type: "type", url: "url", urlTarget: "urlTarget" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
530
647
  };
531
648
  TetButton = __decorate([
532
649
  ProxyCmp({
533
650
  inputs: ['accessibilityLabel', 'clickCallback', 'disabled', 'elementId', 'iconMode', 'iconName', 'iconPosition', 'size', 'theme', 'type', 'url', 'urlTarget']
534
651
  })
535
652
  ], TetButton);
536
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetButton, decorators: [{
653
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetButton, decorators: [{
537
654
  type: Component,
538
655
  args: [{
539
656
  selector: 'tet-button',
@@ -541,23 +658,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
541
658
  template: '<ng-content></ng-content>',
542
659
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
543
660
  inputs: ['accessibilityLabel', 'clickCallback', 'disabled', 'elementId', 'iconMode', 'iconName', 'iconPosition', 'size', 'theme', 'type', 'url', 'urlTarget'],
661
+ standalone: false
544
662
  }]
545
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
663
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
546
664
  let TetCarousel = class TetCarousel {
547
665
  constructor(c, r, z) {
548
666
  this.z = z;
549
667
  c.detach();
550
668
  this.el = r.nativeElement;
551
669
  }
552
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetCarousel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
553
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetCarousel, selector: "tet-carousel", inputs: { buttonIconLeft: "buttonIconLeft", buttonIconRight: "buttonIconRight", label: "label", language: "language", maxDots: "maxDots", showButtons: "showButtons", showDots: "showDots", showGradient: "showGradient", swipeThreshold: "swipeThreshold", theme: "theme", transitionDuration: "transitionDuration", transitionTiming: "transitionTiming" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
670
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetCarousel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
671
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetCarousel, isStandalone: false, selector: "tet-carousel", inputs: { buttonIconLeft: "buttonIconLeft", buttonIconRight: "buttonIconRight", label: "label", language: "language", maxDots: "maxDots", showButtons: "showButtons", showDots: "showDots", showGradient: "showGradient", swipeThreshold: "swipeThreshold", theme: "theme", transitionDuration: "transitionDuration", transitionTiming: "transitionTiming" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
554
672
  };
555
673
  TetCarousel = __decorate([
556
674
  ProxyCmp({
557
675
  inputs: ['buttonIconLeft', 'buttonIconRight', 'label', 'language', 'maxDots', 'showButtons', 'showDots', 'showGradient', 'swipeThreshold', 'theme', 'transitionDuration', 'transitionTiming']
558
676
  })
559
677
  ], TetCarousel);
560
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetCarousel, decorators: [{
678
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetCarousel, decorators: [{
561
679
  type: Component,
562
680
  args: [{
563
681
  selector: 'tet-carousel',
@@ -565,17 +683,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
565
683
  template: '<ng-content></ng-content>',
566
684
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
567
685
  inputs: ['buttonIconLeft', 'buttonIconRight', 'label', 'language', 'maxDots', 'showButtons', 'showDots', 'showGradient', 'swipeThreshold', 'theme', 'transitionDuration', 'transitionTiming'],
686
+ standalone: false
568
687
  }]
569
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
688
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
570
689
  let TetCheckbox = class TetCheckbox {
571
690
  constructor(c, r, z) {
572
691
  this.z = z;
692
+ this.check = new EventEmitter();
573
693
  c.detach();
574
694
  this.el = r.nativeElement;
575
- proxyOutputs(this, this.el, ['check']);
576
695
  }
577
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
578
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetCheckbox, selector: "tet-checkbox", inputs: { checked: "checked", disabled: "disabled", error: "error", indeterminate: "indeterminate", label: "label", name: "name", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
696
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetCheckbox, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
697
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetCheckbox, isStandalone: false, selector: "tet-checkbox", inputs: { checked: "checked", disabled: "disabled", error: "error", indeterminate: "indeterminate", label: "label", name: "name", theme: "theme", value: "value" }, outputs: { check: "check" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
579
698
  };
580
699
  TetCheckbox = __decorate([
581
700
  ProxyCmp({
@@ -583,7 +702,7 @@ TetCheckbox = __decorate([
583
702
  methods: ['setChecked', 'setIndeterminate', 'setError']
584
703
  })
585
704
  ], TetCheckbox);
586
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetCheckbox, decorators: [{
705
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetCheckbox, decorators: [{
587
706
  type: Component,
588
707
  args: [{
589
708
  selector: 'tet-checkbox',
@@ -591,17 +710,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
591
710
  template: '<ng-content></ng-content>',
592
711
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
593
712
  inputs: ['checked', 'disabled', 'error', 'indeterminate', 'label', 'name', 'theme', 'value'],
713
+ outputs: ['check'],
714
+ standalone: false
594
715
  }]
595
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
716
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { check: [{
717
+ type: Output
718
+ }] } });
596
719
  let TetCloudApplicationFormDialog = class TetCloudApplicationFormDialog {
597
720
  constructor(c, r, z) {
598
721
  this.z = z;
722
+ this.submitted = new EventEmitter();
723
+ this.closeDialog = new EventEmitter();
724
+ this.openDialog = new EventEmitter();
599
725
  c.detach();
600
726
  this.el = r.nativeElement;
601
- proxyOutputs(this, this.el, ['submitted', 'closeDialog', 'openDialog']);
602
727
  }
603
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetCloudApplicationFormDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
604
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetCloudApplicationFormDialog, selector: "tet-cloud-application-form-dialog", inputs: { language: "language", loading: "loading", privacyPolicyLinkUrl: "privacyPolicyLinkUrl", showOverlay: "showOverlay", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
728
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetCloudApplicationFormDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
729
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetCloudApplicationFormDialog, isStandalone: false, selector: "tet-cloud-application-form-dialog", inputs: { language: "language", loading: "loading", privacyPolicyLinkUrl: "privacyPolicyLinkUrl", showOverlay: "showOverlay", theme: "theme" }, outputs: { submitted: "submitted", closeDialog: "closeDialog", openDialog: "openDialog" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
605
730
  };
606
731
  TetCloudApplicationFormDialog = __decorate([
607
732
  ProxyCmp({
@@ -609,7 +734,7 @@ TetCloudApplicationFormDialog = __decorate([
609
734
  methods: ['open', 'close']
610
735
  })
611
736
  ], TetCloudApplicationFormDialog);
612
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetCloudApplicationFormDialog, decorators: [{
737
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetCloudApplicationFormDialog, decorators: [{
613
738
  type: Component,
614
739
  args: [{
615
740
  selector: 'tet-cloud-application-form-dialog',
@@ -617,24 +742,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
617
742
  template: '<ng-content></ng-content>',
618
743
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
619
744
  inputs: ['language', 'loading', 'privacyPolicyLinkUrl', 'showOverlay', 'theme'],
620
- }]
621
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
745
+ outputs: ['submitted', 'closeDialog', 'openDialog'],
746
+ standalone: false
747
+ }]
748
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { submitted: [{
749
+ type: Output
750
+ }], closeDialog: [{
751
+ type: Output
752
+ }], openDialog: [{
753
+ type: Output
754
+ }] } });
622
755
  let TetCloudConfigurator = class TetCloudConfigurator {
623
756
  constructor(c, r, z) {
624
757
  this.z = z;
758
+ this.cloudCalculatorSubmit = new EventEmitter();
625
759
  c.detach();
626
760
  this.el = r.nativeElement;
627
- proxyOutputs(this, this.el, ['cloudCalculatorSubmit']);
628
761
  }
629
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetCloudConfigurator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
630
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetCloudConfigurator, selector: "tet-cloud-configurator", inputs: { containerSelector: "containerSelector", language: "language", selectOnFocus: "selectOnFocus", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
762
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetCloudConfigurator, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
763
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetCloudConfigurator, isStandalone: false, selector: "tet-cloud-configurator", inputs: { containerSelector: "containerSelector", language: "language", selectOnFocus: "selectOnFocus", theme: "theme" }, outputs: { cloudCalculatorSubmit: "cloudCalculatorSubmit" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
631
764
  };
632
765
  TetCloudConfigurator = __decorate([
633
766
  ProxyCmp({
634
767
  inputs: ['containerSelector', 'language', 'selectOnFocus', 'theme']
635
768
  })
636
769
  ], TetCloudConfigurator);
637
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetCloudConfigurator, decorators: [{
770
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetCloudConfigurator, decorators: [{
638
771
  type: Component,
639
772
  args: [{
640
773
  selector: 'tet-cloud-configurator',
@@ -642,24 +775,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
642
775
  template: '<ng-content></ng-content>',
643
776
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
644
777
  inputs: ['containerSelector', 'language', 'selectOnFocus', 'theme'],
778
+ outputs: ['cloudCalculatorSubmit'],
779
+ standalone: false
645
780
  }]
646
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
781
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { cloudCalculatorSubmit: [{
782
+ type: Output
783
+ }] } });
647
784
  let TetCompareCardV2 = class TetCompareCardV2 {
648
785
  constructor(c, r, z) {
649
786
  this.z = z;
787
+ this.cardLoaded = new EventEmitter();
788
+ this.productChanged = new EventEmitter();
650
789
  c.detach();
651
790
  this.el = r.nativeElement;
652
- proxyOutputs(this, this.el, ['cardLoaded', 'productChanged']);
653
791
  }
654
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetCompareCardV2, 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: "16.2.9", type: TetCompareCardV2, selector: "tet-compare-card-v2", inputs: { benefitTitle: "benefitTitle", benefits: "benefits", bestChoice: "bestChoice", bestChoiceText: "bestChoiceText", bestChoiceTextPosition: "bestChoiceTextPosition", bonuses: "bonuses", buttonTitle: "buttonTitle", cardBackgroundColor: "cardBackgroundColor", cardScript: "cardScript", cardType: "cardType", clickCallback: "clickCallback", colorIcons: "colorIcons", contractTerm: "contractTerm", currency: "currency", darkMode: "darkMode", dropdownOptions: "dropdownOptions", language: "language", linkOpenBlank: "linkOpenBlank", options: "options", secondaryLink: "secondaryLink", secondaryLinkOpenBlank: "secondaryLinkOpenBlank", secondaryLinkText: "secondaryLinkText", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
792
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetCompareCardV2, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
793
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetCompareCardV2, isStandalone: false, selector: "tet-compare-card-v2", inputs: { benefitTitle: "benefitTitle", benefits: "benefits", bestChoice: "bestChoice", bestChoiceText: "bestChoiceText", bestChoiceTextPosition: "bestChoiceTextPosition", bonuses: "bonuses", buttonTitle: "buttonTitle", cardBackgroundColor: "cardBackgroundColor", cardScript: "cardScript", cardType: "cardType", clickCallback: "clickCallback", colorIcons: "colorIcons", contractTerm: "contractTerm", currency: "currency", darkMode: "darkMode", dropdownOptions: "dropdownOptions", language: "language", linkOpenBlank: "linkOpenBlank", options: "options", secondaryLink: "secondaryLink", secondaryLinkOpenBlank: "secondaryLinkOpenBlank", secondaryLinkText: "secondaryLinkText", theme: "theme" }, outputs: { cardLoaded: "cardLoaded", productChanged: "productChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
656
794
  };
657
795
  TetCompareCardV2 = __decorate([
658
796
  ProxyCmp({
659
797
  inputs: ['benefitTitle', 'benefits', 'bestChoice', 'bestChoiceText', 'bestChoiceTextPosition', 'bonuses', 'buttonTitle', 'cardBackgroundColor', 'cardScript', 'cardType', 'clickCallback', 'colorIcons', 'contractTerm', 'currency', 'darkMode', 'dropdownOptions', 'language', 'linkOpenBlank', 'options', 'secondaryLink', 'secondaryLinkOpenBlank', 'secondaryLinkText', 'theme']
660
798
  })
661
799
  ], TetCompareCardV2);
662
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetCompareCardV2, decorators: [{
800
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetCompareCardV2, decorators: [{
663
801
  type: Component,
664
802
  args: [{
665
803
  selector: 'tet-compare-card-v2',
@@ -667,24 +805,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
667
805
  template: '<ng-content></ng-content>',
668
806
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
669
807
  inputs: ['benefitTitle', 'benefits', 'bestChoice', 'bestChoiceText', 'bestChoiceTextPosition', 'bonuses', 'buttonTitle', 'cardBackgroundColor', 'cardScript', 'cardType', 'clickCallback', 'colorIcons', 'contractTerm', 'currency', 'darkMode', 'dropdownOptions', 'language', 'linkOpenBlank', 'options', 'secondaryLink', 'secondaryLinkOpenBlank', 'secondaryLinkText', 'theme'],
670
- }]
671
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
808
+ outputs: ['cardLoaded', 'productChanged'],
809
+ standalone: false
810
+ }]
811
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { cardLoaded: [{
812
+ type: Output
813
+ }], productChanged: [{
814
+ type: Output
815
+ }] } });
672
816
  let TetContactForm = class TetContactForm {
673
817
  constructor(c, r, z) {
674
818
  this.z = z;
819
+ this.taskCreationSuccess = new EventEmitter();
820
+ this.taskCreationFailed = new EventEmitter();
675
821
  c.detach();
676
822
  this.el = r.nativeElement;
677
- proxyOutputs(this, this.el, ['taskCreationSuccess', 'taskCreationFailed']);
678
823
  }
679
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetContactForm, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
680
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetContactForm, selector: "tet-contact-form", inputs: { darkTheme: "darkTheme", language: "language", showInputLabel: "showInputLabel", showTitle: "showTitle", submitButtonProps: "submitButtonProps", subtitle: "subtitle", taskOptions: "taskOptions", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
824
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetContactForm, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
825
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetContactForm, isStandalone: false, selector: "tet-contact-form", inputs: { darkTheme: "darkTheme", language: "language", showInputLabel: "showInputLabel", showTitle: "showTitle", submitButtonProps: "submitButtonProps", subtitle: "subtitle", taskOptions: "taskOptions", theme: "theme" }, outputs: { taskCreationSuccess: "taskCreationSuccess", taskCreationFailed: "taskCreationFailed" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
681
826
  };
682
827
  TetContactForm = __decorate([
683
828
  ProxyCmp({
684
829
  inputs: ['darkTheme', 'language', 'showInputLabel', 'showTitle', 'submitButtonProps', 'subtitle', 'taskOptions', 'theme']
685
830
  })
686
831
  ], TetContactForm);
687
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetContactForm, decorators: [{
832
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetContactForm, decorators: [{
688
833
  type: Component,
689
834
  args: [{
690
835
  selector: 'tet-contact-form',
@@ -692,23 +837,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
692
837
  template: '<ng-content></ng-content>',
693
838
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
694
839
  inputs: ['darkTheme', 'language', 'showInputLabel', 'showTitle', 'submitButtonProps', 'subtitle', 'taskOptions', 'theme'],
695
- }]
696
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
840
+ outputs: ['taskCreationSuccess', 'taskCreationFailed'],
841
+ standalone: false
842
+ }]
843
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { taskCreationSuccess: [{
844
+ type: Output
845
+ }], taskCreationFailed: [{
846
+ type: Output
847
+ }] } });
697
848
  let TetContactInfo = class TetContactInfo {
698
849
  constructor(c, r, z) {
699
850
  this.z = z;
700
851
  c.detach();
701
852
  this.el = r.nativeElement;
702
853
  }
703
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetContactInfo, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
704
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetContactInfo, selector: "tet-contact-info", inputs: { contactBlocks: "contactBlocks" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
854
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetContactInfo, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
855
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetContactInfo, isStandalone: false, selector: "tet-contact-info", inputs: { contactBlocks: "contactBlocks" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
705
856
  };
706
857
  TetContactInfo = __decorate([
707
858
  ProxyCmp({
708
859
  inputs: ['contactBlocks']
709
860
  })
710
861
  ], TetContactInfo);
711
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetContactInfo, decorators: [{
862
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetContactInfo, decorators: [{
712
863
  type: Component,
713
864
  args: [{
714
865
  selector: 'tet-contact-info',
@@ -716,23 +867,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
716
867
  template: '<ng-content></ng-content>',
717
868
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
718
869
  inputs: ['contactBlocks'],
870
+ standalone: false
719
871
  }]
720
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
872
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
721
873
  let TetContainer = class TetContainer {
722
874
  constructor(c, r, z) {
723
875
  this.z = z;
724
876
  c.detach();
725
877
  this.el = r.nativeElement;
726
878
  }
727
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
728
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetContainer, selector: "tet-container", inputs: { highlightable: "highlightable", selected: "selected", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
879
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetContainer, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
880
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetContainer, isStandalone: false, selector: "tet-container", inputs: { highlightable: "highlightable", selected: "selected", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
729
881
  };
730
882
  TetContainer = __decorate([
731
883
  ProxyCmp({
732
884
  inputs: ['highlightable', 'selected', 'theme']
733
885
  })
734
886
  ], TetContainer);
735
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetContainer, decorators: [{
887
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetContainer, decorators: [{
736
888
  type: Component,
737
889
  args: [{
738
890
  selector: 'tet-container',
@@ -740,24 +892,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
740
892
  template: '<ng-content></ng-content>',
741
893
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
742
894
  inputs: ['highlightable', 'selected', 'theme'],
895
+ standalone: false
743
896
  }]
744
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
897
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
745
898
  let TetCustomerAssets = class TetCustomerAssets {
746
899
  constructor(c, r, z) {
747
900
  this.z = z;
901
+ this.assetSelected = new EventEmitter();
902
+ this.assetsUpdated = new EventEmitter();
903
+ this.customerNotFound = new EventEmitter();
748
904
  c.detach();
749
905
  this.el = r.nativeElement;
750
- proxyOutputs(this, this.el, ['assetSelected', 'assetsUpdated', 'customerNotFound']);
751
906
  }
752
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetCustomerAssets, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
753
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetCustomerAssets, selector: "tet-customer-assets", inputs: { accessToken: "accessToken", darkTheme: "darkTheme", groupByAddress: "groupByAddress", hideAssets: "hideAssets", loaderElementsCount: "loaderElementsCount", pid: "pid", salesforceAccountId: "salesforceAccountId", singleLoader: "singleLoader" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
907
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetCustomerAssets, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
908
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetCustomerAssets, isStandalone: false, selector: "tet-customer-assets", inputs: { accessToken: "accessToken", darkTheme: "darkTheme", groupByAddress: "groupByAddress", hideAssets: "hideAssets", loaderElementsCount: "loaderElementsCount", pid: "pid", salesforceAccountId: "salesforceAccountId", singleLoader: "singleLoader" }, outputs: { assetSelected: "assetSelected", assetsUpdated: "assetsUpdated", customerNotFound: "customerNotFound" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
754
909
  };
755
910
  TetCustomerAssets = __decorate([
756
911
  ProxyCmp({
757
912
  inputs: ['accessToken', 'darkTheme', 'groupByAddress', 'hideAssets', 'loaderElementsCount', 'pid', 'salesforceAccountId', 'singleLoader']
758
913
  })
759
914
  ], TetCustomerAssets);
760
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetCustomerAssets, decorators: [{
915
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetCustomerAssets, decorators: [{
761
916
  type: Component,
762
917
  args: [{
763
918
  selector: 'tet-customer-assets',
@@ -765,17 +920,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
765
920
  template: '<ng-content></ng-content>',
766
921
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
767
922
  inputs: ['accessToken', 'darkTheme', 'groupByAddress', 'hideAssets', 'loaderElementsCount', 'pid', 'salesforceAccountId', 'singleLoader'],
768
- }]
769
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
923
+ outputs: ['assetSelected', 'assetsUpdated', 'customerNotFound'],
924
+ standalone: false
925
+ }]
926
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { assetSelected: [{
927
+ type: Output
928
+ }], assetsUpdated: [{
929
+ type: Output
930
+ }], customerNotFound: [{
931
+ type: Output
932
+ }] } });
770
933
  let TetDatepicker = class TetDatepicker {
771
934
  constructor(c, r, z) {
772
935
  this.z = z;
936
+ this.dateChanged = new EventEmitter();
937
+ this.rangeDatesChanged = new EventEmitter();
773
938
  c.detach();
774
939
  this.el = r.nativeElement;
775
- proxyOutputs(this, this.el, ['dateChanged', 'rangeDatesChanged']);
776
940
  }
777
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetDatepicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
778
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetDatepicker, selector: "tet-datepicker", inputs: { date: "date", datepickerView: "datepickerView", isOpen: "isOpen", locale: "locale", overlayEffect: "overlayEffect", rangePickerMode: "rangePickerMode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
941
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetDatepicker, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
942
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetDatepicker, isStandalone: false, selector: "tet-datepicker", inputs: { date: "date", datepickerView: "datepickerView", isOpen: "isOpen", locale: "locale", overlayEffect: "overlayEffect", rangePickerMode: "rangePickerMode" }, outputs: { dateChanged: "dateChanged", rangeDatesChanged: "rangeDatesChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
779
943
  };
780
944
  TetDatepicker = __decorate([
781
945
  ProxyCmp({
@@ -783,7 +947,7 @@ TetDatepicker = __decorate([
783
947
  methods: ['toggleIsOpen']
784
948
  })
785
949
  ], TetDatepicker);
786
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetDatepicker, decorators: [{
950
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetDatepicker, decorators: [{
787
951
  type: Component,
788
952
  args: [{
789
953
  selector: 'tet-datepicker',
@@ -791,24 +955,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
791
955
  template: '<ng-content></ng-content>',
792
956
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
793
957
  inputs: ['date', 'datepickerView', 'isOpen', 'locale', 'overlayEffect', 'rangePickerMode'],
794
- }]
795
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
958
+ outputs: ['dateChanged', 'rangeDatesChanged'],
959
+ standalone: false
960
+ }]
961
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { dateChanged: [{
962
+ type: Output
963
+ }], rangeDatesChanged: [{
964
+ type: Output
965
+ }] } });
796
966
  let TetDatepickerHeader = class TetDatepickerHeader {
797
967
  constructor(c, r, z) {
798
968
  this.z = z;
969
+ this.internalDateChanged = new EventEmitter();
970
+ this.datepickerViewChanged = new EventEmitter();
799
971
  c.detach();
800
972
  this.el = r.nativeElement;
801
- proxyOutputs(this, this.el, ['internalDateChanged', 'datepickerViewChanged']);
802
973
  }
803
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetDatepickerHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
804
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetDatepickerHeader, selector: "tet-datepicker-header", inputs: { datepickerView: "datepickerView", internalDate: "internalDate", locale: "locale", selectedDate: "selectedDate" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
974
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetDatepickerHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
975
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetDatepickerHeader, isStandalone: false, selector: "tet-datepicker-header", inputs: { datepickerView: "datepickerView", internalDate: "internalDate", locale: "locale", selectedDate: "selectedDate" }, outputs: { internalDateChanged: "internalDateChanged", datepickerViewChanged: "datepickerViewChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
805
976
  };
806
977
  TetDatepickerHeader = __decorate([
807
978
  ProxyCmp({
808
979
  inputs: ['datepickerView', 'internalDate', 'locale', 'selectedDate']
809
980
  })
810
981
  ], TetDatepickerHeader);
811
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetDatepickerHeader, decorators: [{
982
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetDatepickerHeader, decorators: [{
812
983
  type: Component,
813
984
  args: [{
814
985
  selector: 'tet-datepicker-header',
@@ -816,24 +987,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
816
987
  template: '<ng-content></ng-content>',
817
988
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
818
989
  inputs: ['datepickerView', 'internalDate', 'locale', 'selectedDate'],
819
- }]
820
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
990
+ outputs: ['internalDateChanged', 'datepickerViewChanged'],
991
+ standalone: false
992
+ }]
993
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { internalDateChanged: [{
994
+ type: Output
995
+ }], datepickerViewChanged: [{
996
+ type: Output
997
+ }] } });
821
998
  let TetDatepickerMonthView = class TetDatepickerMonthView {
822
999
  constructor(c, r, z) {
823
1000
  this.z = z;
1001
+ this.internalDateChanged = new EventEmitter();
1002
+ this.dateChanged = new EventEmitter();
1003
+ this.datepickerClosed = new EventEmitter();
1004
+ this.rangeDateSet = new EventEmitter();
824
1005
  c.detach();
825
1006
  this.el = r.nativeElement;
826
- proxyOutputs(this, this.el, ['internalDateChanged', 'dateChanged', 'datepickerClosed', 'rangeDateSet']);
827
1007
  }
828
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetDatepickerMonthView, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
829
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetDatepickerMonthView, selector: "tet-datepicker-month-view", inputs: { internalDate: "internalDate", rangeDates: "rangeDates", rangePickerMode: "rangePickerMode", selectedDate: "selectedDate" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1008
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetDatepickerMonthView, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1009
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetDatepickerMonthView, isStandalone: false, selector: "tet-datepicker-month-view", inputs: { internalDate: "internalDate", rangeDates: "rangeDates", rangePickerMode: "rangePickerMode", selectedDate: "selectedDate" }, outputs: { internalDateChanged: "internalDateChanged", dateChanged: "dateChanged", datepickerClosed: "datepickerClosed", rangeDateSet: "rangeDateSet" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
830
1010
  };
831
1011
  TetDatepickerMonthView = __decorate([
832
1012
  ProxyCmp({
833
1013
  inputs: ['internalDate', 'rangeDates', 'rangePickerMode', 'selectedDate']
834
1014
  })
835
1015
  ], TetDatepickerMonthView);
836
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetDatepickerMonthView, decorators: [{
1016
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetDatepickerMonthView, decorators: [{
837
1017
  type: Component,
838
1018
  args: [{
839
1019
  selector: 'tet-datepicker-month-view',
@@ -841,24 +1021,35 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
841
1021
  template: '<ng-content></ng-content>',
842
1022
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
843
1023
  inputs: ['internalDate', 'rangeDates', 'rangePickerMode', 'selectedDate'],
844
- }]
845
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1024
+ outputs: ['internalDateChanged', 'dateChanged', 'datepickerClosed', 'rangeDateSet'],
1025
+ standalone: false
1026
+ }]
1027
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { internalDateChanged: [{
1028
+ type: Output
1029
+ }], dateChanged: [{
1030
+ type: Output
1031
+ }], datepickerClosed: [{
1032
+ type: Output
1033
+ }], rangeDateSet: [{
1034
+ type: Output
1035
+ }] } });
846
1036
  let TetDatepickerMultiYearView = class TetDatepickerMultiYearView {
847
1037
  constructor(c, r, z) {
848
1038
  this.z = z;
1039
+ this.internalDateChanged = new EventEmitter();
1040
+ this.datepickerViewChanged = new EventEmitter();
849
1041
  c.detach();
850
1042
  this.el = r.nativeElement;
851
- proxyOutputs(this, this.el, ['internalDateChanged', 'datepickerViewChanged']);
852
1043
  }
853
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetDatepickerMultiYearView, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
854
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetDatepickerMultiYearView, selector: "tet-datepicker-multi-year-view", inputs: { internalDate: "internalDate", selectedDate: "selectedDate" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1044
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetDatepickerMultiYearView, 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: "20.3.16", type: TetDatepickerMultiYearView, isStandalone: false, selector: "tet-datepicker-multi-year-view", inputs: { internalDate: "internalDate", selectedDate: "selectedDate" }, outputs: { internalDateChanged: "internalDateChanged", datepickerViewChanged: "datepickerViewChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
855
1046
  };
856
1047
  TetDatepickerMultiYearView = __decorate([
857
1048
  ProxyCmp({
858
1049
  inputs: ['internalDate', 'selectedDate']
859
1050
  })
860
1051
  ], TetDatepickerMultiYearView);
861
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetDatepickerMultiYearView, decorators: [{
1052
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetDatepickerMultiYearView, decorators: [{
862
1053
  type: Component,
863
1054
  args: [{
864
1055
  selector: 'tet-datepicker-multi-year-view',
@@ -866,24 +1057,31 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
866
1057
  template: '<ng-content></ng-content>',
867
1058
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
868
1059
  inputs: ['internalDate', 'selectedDate'],
869
- }]
870
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1060
+ outputs: ['internalDateChanged', 'datepickerViewChanged'],
1061
+ standalone: false
1062
+ }]
1063
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { internalDateChanged: [{
1064
+ type: Output
1065
+ }], datepickerViewChanged: [{
1066
+ type: Output
1067
+ }] } });
871
1068
  let TetDatepickerYearView = class TetDatepickerYearView {
872
1069
  constructor(c, r, z) {
873
1070
  this.z = z;
1071
+ this.internalDateChanged = new EventEmitter();
1072
+ this.datepickerViewChanged = new EventEmitter();
874
1073
  c.detach();
875
1074
  this.el = r.nativeElement;
876
- proxyOutputs(this, this.el, ['internalDateChanged', 'datepickerViewChanged']);
877
1075
  }
878
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetDatepickerYearView, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
879
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetDatepickerYearView, selector: "tet-datepicker-year-view", inputs: { internalDate: "internalDate", selectedDate: "selectedDate" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1076
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetDatepickerYearView, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1077
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetDatepickerYearView, isStandalone: false, selector: "tet-datepicker-year-view", inputs: { internalDate: "internalDate", selectedDate: "selectedDate" }, outputs: { internalDateChanged: "internalDateChanged", datepickerViewChanged: "datepickerViewChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
880
1078
  };
881
1079
  TetDatepickerYearView = __decorate([
882
1080
  ProxyCmp({
883
1081
  inputs: ['internalDate', 'selectedDate']
884
1082
  })
885
1083
  ], TetDatepickerYearView);
886
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetDatepickerYearView, decorators: [{
1084
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetDatepickerYearView, decorators: [{
887
1085
  type: Component,
888
1086
  args: [{
889
1087
  selector: 'tet-datepicker-year-view',
@@ -891,17 +1089,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
891
1089
  template: '<ng-content></ng-content>',
892
1090
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
893
1091
  inputs: ['internalDate', 'selectedDate'],
894
- }]
895
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1092
+ outputs: ['internalDateChanged', 'datepickerViewChanged'],
1093
+ standalone: false
1094
+ }]
1095
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { internalDateChanged: [{
1096
+ type: Output
1097
+ }], datepickerViewChanged: [{
1098
+ type: Output
1099
+ }] } });
896
1100
  let TetDialog = class TetDialog {
897
1101
  constructor(c, r, z) {
898
1102
  this.z = z;
1103
+ this.closeDialog = new EventEmitter();
1104
+ this.openDialog = new EventEmitter();
899
1105
  c.detach();
900
1106
  this.el = r.nativeElement;
901
- proxyOutputs(this, this.el, ['closeDialog', 'openDialog']);
902
1107
  }
903
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
904
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetDialog, selector: "tet-dialog", inputs: { closeOnEscape: "closeOnEscape", closeOnOverlayClick: "closeOnOverlayClick", footerDisplay: "footerDisplay", headerTitle: "headerTitle", hideCloseButton: "hideCloseButton", hideHeader: "hideHeader", isOpen: "isOpen", preventDefaultClose: "preventDefaultClose", showHeaderDivider: "showHeaderDivider", theme: "theme", titleId: "titleId" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1108
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1109
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetDialog, isStandalone: false, selector: "tet-dialog", inputs: { closeOnEscape: "closeOnEscape", closeOnOverlayClick: "closeOnOverlayClick", footerDisplay: "footerDisplay", headerTitle: "headerTitle", hideCloseButton: "hideCloseButton", hideHeader: "hideHeader", isOpen: "isOpen", preventDefaultClose: "preventDefaultClose", showHeaderDivider: "showHeaderDivider", theme: "theme", titleId: "titleId" }, outputs: { closeDialog: "closeDialog", openDialog: "openDialog" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
905
1110
  };
906
1111
  TetDialog = __decorate([
907
1112
  ProxyCmp({
@@ -909,7 +1114,7 @@ TetDialog = __decorate([
909
1114
  methods: ['open', 'close']
910
1115
  })
911
1116
  ], TetDialog);
912
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetDialog, decorators: [{
1117
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetDialog, decorators: [{
913
1118
  type: Component,
914
1119
  args: [{
915
1120
  selector: 'tet-dialog',
@@ -917,17 +1122,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
917
1122
  template: '<ng-content></ng-content>',
918
1123
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
919
1124
  inputs: ['closeOnEscape', 'closeOnOverlayClick', 'footerDisplay', 'headerTitle', 'hideCloseButton', 'hideHeader', 'isOpen', 'preventDefaultClose', 'showHeaderDivider', 'theme', 'titleId'],
920
- }]
921
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1125
+ outputs: ['closeDialog', 'openDialog'],
1126
+ standalone: false
1127
+ }]
1128
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { closeDialog: [{
1129
+ type: Output
1130
+ }], openDialog: [{
1131
+ type: Output
1132
+ }] } });
922
1133
  let TetDropdown = class TetDropdown {
923
1134
  constructor(c, r, z) {
924
1135
  this.z = z;
1136
+ this.optionSelected = new EventEmitter();
1137
+ this.optionChecked = new EventEmitter();
1138
+ this.optionsChanged = new EventEmitter();
925
1139
  c.detach();
926
1140
  this.el = r.nativeElement;
927
- proxyOutputs(this, this.el, ['optionSelected', 'optionChecked', 'optionsChanged']);
928
1141
  }
929
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
930
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetDropdown, selector: "tet-dropdown", inputs: { allowMultiple: "allowMultiple", buttonLabel: "buttonLabel", closeOnSelection: "closeOnSelection", disabled: "disabled", flexLayout: "flexLayout", label: "label", labelLogo: "labelLogo", labelLogoGrayscale: "labelLogoGrayscale", labelRight: "labelRight", labelRightColor: "labelRightColor", labelSubText: "labelSubText", options: "options", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1142
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetDropdown, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1143
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetDropdown, isStandalone: false, selector: "tet-dropdown", inputs: { allowMultiple: "allowMultiple", buttonLabel: "buttonLabel", closeOnSelection: "closeOnSelection", disabled: "disabled", flexLayout: "flexLayout", label: "label", labelLogo: "labelLogo", labelLogoGrayscale: "labelLogoGrayscale", labelRight: "labelRight", labelRightColor: "labelRightColor", labelSubText: "labelSubText", options: "options", theme: "theme" }, outputs: { optionSelected: "optionSelected", optionChecked: "optionChecked", optionsChanged: "optionsChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
931
1144
  };
932
1145
  TetDropdown = __decorate([
933
1146
  ProxyCmp({
@@ -935,7 +1148,7 @@ TetDropdown = __decorate([
935
1148
  methods: ['getSelectedOptions', 'selectOption']
936
1149
  })
937
1150
  ], TetDropdown);
938
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetDropdown, decorators: [{
1151
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetDropdown, decorators: [{
939
1152
  type: Component,
940
1153
  args: [{
941
1154
  selector: 'tet-dropdown',
@@ -943,24 +1156,32 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
943
1156
  template: '<ng-content></ng-content>',
944
1157
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
945
1158
  inputs: ['allowMultiple', 'buttonLabel', 'closeOnSelection', 'disabled', 'flexLayout', 'label', 'labelLogo', 'labelLogoGrayscale', 'labelRight', 'labelRightColor', 'labelSubText', 'options', 'theme'],
946
- }]
947
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1159
+ outputs: ['optionSelected', 'optionChecked', 'optionsChanged'],
1160
+ standalone: false
1161
+ }]
1162
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { optionSelected: [{
1163
+ type: Output
1164
+ }], optionChecked: [{
1165
+ type: Output
1166
+ }], optionsChanged: [{
1167
+ type: Output
1168
+ }] } });
948
1169
  let TetDynamicCard = class TetDynamicCard {
949
1170
  constructor(c, r, z) {
950
1171
  this.z = z;
1172
+ this.tetDynamicCardClickEvent = new EventEmitter();
951
1173
  c.detach();
952
1174
  this.el = r.nativeElement;
953
- proxyOutputs(this, this.el, ['tetDynamicCardClickEvent']);
954
1175
  }
955
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetDynamicCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
956
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetDynamicCard, selector: "tet-dynamic-card", inputs: { cardTitle: "cardTitle", dateTag: "dateTag", dateTagColorDark: "dateTagColorDark", dateTagColorLight: "dateTagColorLight", index: "index", isInCarousel: "isInCarousel", linkHref: "linkHref", linkNewTab: "linkNewTab", linkText: "linkText", pictureLayoutShiftPosition: "pictureLayoutShiftPosition", priceTagOptions: "priceTagOptions", size: "size", sizeChangeBreakpoint: "sizeChangeBreakpoint", subtitle: "subtitle", tags: "tags", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1176
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetDynamicCard, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1177
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetDynamicCard, isStandalone: false, selector: "tet-dynamic-card", inputs: { cardTitle: "cardTitle", dateTag: "dateTag", dateTagColorDark: "dateTagColorDark", dateTagColorLight: "dateTagColorLight", index: "index", isInCarousel: "isInCarousel", linkHref: "linkHref", linkNewTab: "linkNewTab", linkText: "linkText", pictureLayoutShiftPosition: "pictureLayoutShiftPosition", priceTagOptions: "priceTagOptions", size: "size", sizeChangeBreakpoint: "sizeChangeBreakpoint", subtitle: "subtitle", tags: "tags", theme: "theme" }, outputs: { tetDynamicCardClickEvent: "tetDynamicCardClickEvent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
957
1178
  };
958
1179
  TetDynamicCard = __decorate([
959
1180
  ProxyCmp({
960
1181
  inputs: ['cardTitle', 'dateTag', 'dateTagColorDark', 'dateTagColorLight', 'index', 'isInCarousel', 'linkHref', 'linkNewTab', 'linkText', 'pictureLayoutShiftPosition', 'priceTagOptions', 'size', 'sizeChangeBreakpoint', 'subtitle', 'tags', 'theme']
961
1182
  })
962
1183
  ], TetDynamicCard);
963
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetDynamicCard, decorators: [{
1184
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetDynamicCard, decorators: [{
964
1185
  type: Component,
965
1186
  args: [{
966
1187
  selector: 'tet-dynamic-card',
@@ -968,17 +1189,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
968
1189
  template: '<ng-content></ng-content>',
969
1190
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
970
1191
  inputs: ['cardTitle', 'dateTag', 'dateTagColorDark', 'dateTagColorLight', 'index', 'isInCarousel', 'linkHref', 'linkNewTab', 'linkText', 'pictureLayoutShiftPosition', 'priceTagOptions', 'size', 'sizeChangeBreakpoint', 'subtitle', 'tags', 'theme'],
1192
+ outputs: ['tetDynamicCardClickEvent'],
1193
+ standalone: false
971
1194
  }]
972
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1195
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { tetDynamicCardClickEvent: [{
1196
+ type: Output
1197
+ }] } });
973
1198
  let TetExpandableInput = class TetExpandableInput {
974
1199
  constructor(c, r, z) {
975
1200
  this.z = z;
1201
+ this.beforeStateChange = new EventEmitter();
1202
+ this.afterStateChange = new EventEmitter();
976
1203
  c.detach();
977
1204
  this.el = r.nativeElement;
978
- proxyOutputs(this, this.el, ['before-state-change', 'after-state-change']);
979
1205
  }
980
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetExpandableInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
981
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetExpandableInput, selector: "tet-expandable-input", inputs: { accessibilityLabel: "accessibilityLabel", animationDuration: "animationDuration", class: "class", closeInputText: "closeInputText", closedWidth: "closedWidth", darkMode: "darkMode", disabled: "disabled", error: "error", iconLeft: "iconLeft", iconRight: "iconRight", iconRightClickCallback: "iconRightClickCallback", manualValidation: "manualValidation", mode: "mode", placeholder: "placeholder", size: "size", theme: "theme", validators: "validators", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1206
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetExpandableInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1207
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetExpandableInput, isStandalone: false, selector: "tet-expandable-input", inputs: { accessibilityLabel: "accessibilityLabel", animationDuration: "animationDuration", class: "class", closeInputText: "closeInputText", closedWidth: "closedWidth", darkMode: "darkMode", disabled: "disabled", error: "error", iconLeft: "iconLeft", iconRight: "iconRight", iconRightClickCallback: "iconRightClickCallback", manualValidation: "manualValidation", mode: "mode", placeholder: "placeholder", size: "size", theme: "theme", validators: "validators", value: "value" }, outputs: { "before-state-change": "before-state-change", "after-state-change": "after-state-change", beforeStateChange: "beforeStateChange", afterStateChange: "afterStateChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
982
1208
  };
983
1209
  TetExpandableInput = __decorate([
984
1210
  ProxyCmp({
@@ -986,7 +1212,7 @@ TetExpandableInput = __decorate([
986
1212
  methods: ['getInputHtmlElement', 'getErrors', 'validateInput', 'setState', 'clear']
987
1213
  })
988
1214
  ], TetExpandableInput);
989
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetExpandableInput, decorators: [{
1215
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetExpandableInput, decorators: [{
990
1216
  type: Component,
991
1217
  args: [{
992
1218
  selector: 'tet-expandable-input',
@@ -994,16 +1220,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
994
1220
  template: '<ng-content></ng-content>',
995
1221
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
996
1222
  inputs: ['accessibilityLabel', 'animationDuration', 'class', 'closeInputText', 'closedWidth', 'darkMode', 'disabled', 'error', 'iconLeft', 'iconRight', 'iconRightClickCallback', 'manualValidation', 'mode', 'placeholder', 'size', 'theme', 'validators', 'value'],
997
- }]
998
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1223
+ outputs: ['before-state-change', 'after-state-change'],
1224
+ standalone: false
1225
+ }]
1226
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { beforeStateChange: [{
1227
+ type: Output
1228
+ }], afterStateChange: [{
1229
+ type: Output
1230
+ }] } });
999
1231
  let TetExpansionPanel = class TetExpansionPanel {
1000
1232
  constructor(c, r, z) {
1001
1233
  this.z = z;
1002
1234
  c.detach();
1003
1235
  this.el = r.nativeElement;
1004
1236
  }
1005
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetExpansionPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1006
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetExpansionPanel, selector: "tet-expansion-panel", inputs: { initialState: "initialState", toggleElement: "toggleElement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1237
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetExpansionPanel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1238
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetExpansionPanel, isStandalone: false, selector: "tet-expansion-panel", inputs: { initialState: "initialState", toggleElement: "toggleElement" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1007
1239
  };
1008
1240
  TetExpansionPanel = __decorate([
1009
1241
  ProxyCmp({
@@ -1011,7 +1243,7 @@ TetExpansionPanel = __decorate([
1011
1243
  methods: ['open', 'close', 'toggle', 'getState']
1012
1244
  })
1013
1245
  ], TetExpansionPanel);
1014
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetExpansionPanel, decorators: [{
1246
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetExpansionPanel, decorators: [{
1015
1247
  type: Component,
1016
1248
  args: [{
1017
1249
  selector: 'tet-expansion-panel',
@@ -1019,24 +1251,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1019
1251
  template: '<ng-content></ng-content>',
1020
1252
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1021
1253
  inputs: ['initialState', 'toggleElement'],
1254
+ standalone: false
1022
1255
  }]
1023
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1256
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1024
1257
  let TetFilter = class TetFilter {
1025
1258
  constructor(c, r, z) {
1026
1259
  this.z = z;
1260
+ this.filterChange = new EventEmitter();
1027
1261
  c.detach();
1028
1262
  this.el = r.nativeElement;
1029
- proxyOutputs(this, this.el, ['filterChange']);
1030
1263
  }
1031
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetFilter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1032
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetFilter, selector: "tet-filter", inputs: { clearFilterButtonTitle: "clearFilterButtonTitle", showClearFilterButton: "showClearFilterButton", tags: "tags", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1264
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetFilter, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1265
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetFilter, isStandalone: false, selector: "tet-filter", inputs: { clearFilterButtonTitle: "clearFilterButtonTitle", showClearFilterButton: "showClearFilterButton", tags: "tags", theme: "theme" }, outputs: { filterChange: "filterChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1033
1266
  };
1034
1267
  TetFilter = __decorate([
1035
1268
  ProxyCmp({
1036
1269
  inputs: ['clearFilterButtonTitle', 'showClearFilterButton', 'tags', 'theme']
1037
1270
  })
1038
1271
  ], TetFilter);
1039
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetFilter, decorators: [{
1272
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetFilter, decorators: [{
1040
1273
  type: Component,
1041
1274
  args: [{
1042
1275
  selector: 'tet-filter',
@@ -1044,23 +1277,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1044
1277
  template: '<ng-content></ng-content>',
1045
1278
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1046
1279
  inputs: ['clearFilterButtonTitle', 'showClearFilterButton', 'tags', 'theme'],
1280
+ outputs: ['filterChange'],
1281
+ standalone: false
1047
1282
  }]
1048
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1283
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { filterChange: [{
1284
+ type: Output
1285
+ }] } });
1049
1286
  let TetIcon = class TetIcon {
1050
1287
  constructor(c, r, z) {
1051
1288
  this.z = z;
1052
1289
  c.detach();
1053
1290
  this.el = r.nativeElement;
1054
1291
  }
1055
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1056
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetIcon, selector: "tet-icon", inputs: { accessibilityLabel: "accessibilityLabel", focusable: "focusable", name: "name", theme: "theme", type: "type", useDefaultColor: "useDefaultColor" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1292
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetIcon, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1293
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetIcon, isStandalone: false, selector: "tet-icon", inputs: { accessibilityLabel: "accessibilityLabel", focusable: "focusable", name: "name", theme: "theme", type: "type", useDefaultColor: "useDefaultColor" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1057
1294
  };
1058
1295
  TetIcon = __decorate([
1059
1296
  ProxyCmp({
1060
1297
  inputs: ['accessibilityLabel', 'focusable', 'name', 'theme', 'type', 'useDefaultColor']
1061
1298
  })
1062
1299
  ], TetIcon);
1063
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetIcon, decorators: [{
1300
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetIcon, decorators: [{
1064
1301
  type: Component,
1065
1302
  args: [{
1066
1303
  selector: 'tet-icon',
@@ -1068,23 +1305,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1068
1305
  template: '<ng-content></ng-content>',
1069
1306
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1070
1307
  inputs: ['accessibilityLabel', 'focusable', 'name', 'theme', 'type', 'useDefaultColor'],
1308
+ standalone: false
1071
1309
  }]
1072
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1310
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1073
1311
  let TetInlineMessage = class TetInlineMessage {
1074
1312
  constructor(c, r, z) {
1075
1313
  this.z = z;
1076
1314
  c.detach();
1077
1315
  this.el = r.nativeElement;
1078
1316
  }
1079
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetInlineMessage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1080
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetInlineMessage, selector: "tet-inline-message", inputs: { theme: "theme", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1317
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetInlineMessage, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1318
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetInlineMessage, isStandalone: false, selector: "tet-inline-message", inputs: { theme: "theme", variant: "variant" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1081
1319
  };
1082
1320
  TetInlineMessage = __decorate([
1083
1321
  ProxyCmp({
1084
1322
  inputs: ['theme', 'variant']
1085
1323
  })
1086
1324
  ], TetInlineMessage);
1087
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetInlineMessage, decorators: [{
1325
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetInlineMessage, decorators: [{
1088
1326
  type: Component,
1089
1327
  args: [{
1090
1328
  selector: 'tet-inline-message',
@@ -1092,16 +1330,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1092
1330
  template: '<ng-content></ng-content>',
1093
1331
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1094
1332
  inputs: ['theme', 'variant'],
1333
+ standalone: false
1095
1334
  }]
1096
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1335
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1097
1336
  let TetInput = class TetInput {
1098
1337
  constructor(c, r, z) {
1099
1338
  this.z = z;
1100
1339
  c.detach();
1101
1340
  this.el = r.nativeElement;
1102
1341
  }
1103
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1104
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetInput, selector: "tet-input", inputs: { accessibilityLabel: "accessibilityLabel", autocomplete: "autocomplete", class: "class", disabled: "disabled", error: "error", iconLeft: "iconLeft", iconLeftClickCallback: "iconLeftClickCallback", iconRight: "iconRight", iconRightClickCallback: "iconRightClickCallback", inputTabindex: "inputTabindex", isPhoneNumber: "isPhoneNumber", label: "label", manualValidation: "manualValidation", maxlength: "maxlength", placeholder: "placeholder", readonly: "readonly", theme: "theme", type: "type", validators: "validators", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1342
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1343
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetInput, isStandalone: false, selector: "tet-input", inputs: { accessibilityLabel: "accessibilityLabel", autocomplete: "autocomplete", class: "class", disabled: "disabled", error: "error", iconLeft: "iconLeft", iconLeftClickCallback: "iconLeftClickCallback", iconRight: "iconRight", iconRightClickCallback: "iconRightClickCallback", inputTabindex: "inputTabindex", isPhoneNumber: "isPhoneNumber", label: "label", manualValidation: "manualValidation", maxlength: "maxlength", placeholder: "placeholder", readonly: "readonly", theme: "theme", type: "type", validators: "validators", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1105
1344
  };
1106
1345
  TetInput = __decorate([
1107
1346
  ProxyCmp({
@@ -1109,7 +1348,7 @@ TetInput = __decorate([
1109
1348
  methods: ['getInputHtmlElement', 'getErrors', 'clearErrors', 'validateInput']
1110
1349
  })
1111
1350
  ], TetInput);
1112
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetInput, decorators: [{
1351
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetInput, decorators: [{
1113
1352
  type: Component,
1114
1353
  args: [{
1115
1354
  selector: 'tet-input',
@@ -1117,23 +1356,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1117
1356
  template: '<ng-content></ng-content>',
1118
1357
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1119
1358
  inputs: ['accessibilityLabel', 'autocomplete', 'class', 'disabled', 'error', 'iconLeft', 'iconLeftClickCallback', 'iconRight', 'iconRightClickCallback', 'inputTabindex', 'isPhoneNumber', 'label', 'manualValidation', 'maxlength', 'placeholder', 'readonly', 'theme', 'type', 'validators', 'value'],
1359
+ standalone: false
1120
1360
  }]
1121
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1361
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1122
1362
  let TetLabel = class TetLabel {
1123
1363
  constructor(c, r, z) {
1124
1364
  this.z = z;
1125
1365
  c.detach();
1126
1366
  this.el = r.nativeElement;
1127
1367
  }
1128
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1129
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetLabel, selector: "tet-label", inputs: { active: "active", labelTitle: "labelTitle", showIcon: "showIcon", theme: "theme", translateTitle: "translateTitle", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1368
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetLabel, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1369
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetLabel, isStandalone: false, selector: "tet-label", inputs: { active: "active", labelTitle: "labelTitle", showIcon: "showIcon", theme: "theme", translateTitle: "translateTitle", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1130
1370
  };
1131
1371
  TetLabel = __decorate([
1132
1372
  ProxyCmp({
1133
1373
  inputs: ['active', 'labelTitle', 'showIcon', 'theme', 'translateTitle', 'type']
1134
1374
  })
1135
1375
  ], TetLabel);
1136
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetLabel, decorators: [{
1376
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetLabel, decorators: [{
1137
1377
  type: Component,
1138
1378
  args: [{
1139
1379
  selector: 'tet-label',
@@ -1141,21 +1381,51 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1141
1381
  template: '<ng-content></ng-content>',
1142
1382
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1143
1383
  inputs: ['active', 'labelTitle', 'showIcon', 'theme', 'translateTitle', 'type'],
1384
+ standalone: false
1385
+ }]
1386
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1387
+ let TetLinkCardList = class TetLinkCardList {
1388
+ constructor(c, r, z) {
1389
+ this.z = z;
1390
+ this.linkClick = new EventEmitter();
1391
+ c.detach();
1392
+ this.el = r.nativeElement;
1393
+ }
1394
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetLinkCardList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1395
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetLinkCardList, isStandalone: false, selector: "tet-link-card-list", inputs: { items: "items", layout: "layout", placeholderCount: "placeholderCount", theme: "theme" }, outputs: { linkClick: "linkClick" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1396
+ };
1397
+ TetLinkCardList = __decorate([
1398
+ ProxyCmp({
1399
+ inputs: ['items', 'layout', 'placeholderCount', 'theme']
1400
+ })
1401
+ ], TetLinkCardList);
1402
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetLinkCardList, decorators: [{
1403
+ type: Component,
1404
+ args: [{
1405
+ selector: 'tet-link-card-list',
1406
+ changeDetection: ChangeDetectionStrategy.OnPush,
1407
+ template: '<ng-content></ng-content>',
1408
+ // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1409
+ inputs: ['items', 'layout', 'placeholderCount', 'theme'],
1410
+ outputs: ['linkClick'],
1411
+ standalone: false
1144
1412
  }]
1145
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1413
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { linkClick: [{
1414
+ type: Output
1415
+ }] } });
1146
1416
  let TetLoader = class TetLoader {
1147
1417
  constructor(c, r, z) {
1148
1418
  this.z = z;
1149
1419
  c.detach();
1150
1420
  this.el = r.nativeElement;
1151
1421
  }
1152
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetLoader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1153
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetLoader, selector: "tet-loader", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1422
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetLoader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1423
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetLoader, isStandalone: false, selector: "tet-loader", ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1154
1424
  };
1155
1425
  TetLoader = __decorate([
1156
1426
  ProxyCmp({})
1157
1427
  ], TetLoader);
1158
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetLoader, decorators: [{
1428
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetLoader, decorators: [{
1159
1429
  type: Component,
1160
1430
  args: [{
1161
1431
  selector: 'tet-loader',
@@ -1163,23 +1433,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1163
1433
  template: '<ng-content></ng-content>',
1164
1434
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1165
1435
  inputs: [],
1436
+ standalone: false
1166
1437
  }]
1167
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1438
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1168
1439
  let TetMenu = class TetMenu {
1169
1440
  constructor(c, r, z) {
1170
1441
  this.z = z;
1171
1442
  c.detach();
1172
1443
  this.el = r.nativeElement;
1173
1444
  }
1174
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1175
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetMenu, selector: "tet-menu", inputs: { active: "active", clickable: "clickable", darkMode: "darkMode", firstLevelIcon: "firstLevelIcon", firstLevelId: "firstLevelId", firstLevelLink: "firstLevelLink", firstLevelTitle: "firstLevelTitle", menuItemTheme: "menuItemTheme", showMenuItemAnimation: "showMenuItemAnimation", subLevels: "subLevels", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1445
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetMenu, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1446
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetMenu, isStandalone: false, selector: "tet-menu", inputs: { active: "active", clickable: "clickable", darkMode: "darkMode", firstLevelIcon: "firstLevelIcon", firstLevelId: "firstLevelId", firstLevelLink: "firstLevelLink", firstLevelTitle: "firstLevelTitle", menuItemTheme: "menuItemTheme", showMenuItemAnimation: "showMenuItemAnimation", subLevels: "subLevels", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1176
1447
  };
1177
1448
  TetMenu = __decorate([
1178
1449
  ProxyCmp({
1179
1450
  inputs: ['active', 'clickable', 'darkMode', 'firstLevelIcon', 'firstLevelId', 'firstLevelLink', 'firstLevelTitle', 'menuItemTheme', 'showMenuItemAnimation', 'subLevels', 'type']
1180
1451
  })
1181
1452
  ], TetMenu);
1182
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetMenu, decorators: [{
1453
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetMenu, decorators: [{
1183
1454
  type: Component,
1184
1455
  args: [{
1185
1456
  selector: 'tet-menu',
@@ -1187,23 +1458,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1187
1458
  template: '<ng-content></ng-content>',
1188
1459
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1189
1460
  inputs: ['active', 'clickable', 'darkMode', 'firstLevelIcon', 'firstLevelId', 'firstLevelLink', 'firstLevelTitle', 'menuItemTheme', 'showMenuItemAnimation', 'subLevels', 'type'],
1461
+ standalone: false
1190
1462
  }]
1191
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1463
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1192
1464
  let TetMenuMobile = class TetMenuMobile {
1193
1465
  constructor(c, r, z) {
1194
1466
  this.z = z;
1195
1467
  c.detach();
1196
1468
  this.el = r.nativeElement;
1197
1469
  }
1198
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetMenuMobile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1199
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetMenuMobile, selector: "tet-menu-mobile", inputs: { darkMode: "darkMode", firstLevelIcon: "firstLevelIcon", firstLevelId: "firstLevelId", firstLevelLink: "firstLevelLink", firstLevelTitle: "firstLevelTitle", highlightTheme: "highlightTheme", isActive: "isActive", showAnimation: "showAnimation", subLevels: "subLevels" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1470
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetMenuMobile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1471
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetMenuMobile, isStandalone: false, selector: "tet-menu-mobile", inputs: { darkMode: "darkMode", firstLevelIcon: "firstLevelIcon", firstLevelId: "firstLevelId", firstLevelLink: "firstLevelLink", firstLevelTitle: "firstLevelTitle", highlightTheme: "highlightTheme", isActive: "isActive", showAnimation: "showAnimation", subLevels: "subLevels" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1200
1472
  };
1201
1473
  TetMenuMobile = __decorate([
1202
1474
  ProxyCmp({
1203
1475
  inputs: ['darkMode', 'firstLevelIcon', 'firstLevelId', 'firstLevelLink', 'firstLevelTitle', 'highlightTheme', 'isActive', 'showAnimation', 'subLevels']
1204
1476
  })
1205
1477
  ], TetMenuMobile);
1206
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetMenuMobile, decorators: [{
1478
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetMenuMobile, decorators: [{
1207
1479
  type: Component,
1208
1480
  args: [{
1209
1481
  selector: 'tet-menu-mobile',
@@ -1211,24 +1483,26 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1211
1483
  template: '<ng-content></ng-content>',
1212
1484
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1213
1485
  inputs: ['darkMode', 'firstLevelIcon', 'firstLevelId', 'firstLevelLink', 'firstLevelTitle', 'highlightTheme', 'isActive', 'showAnimation', 'subLevels'],
1486
+ standalone: false
1214
1487
  }]
1215
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1488
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1216
1489
  let TetMultiStepDialog = class TetMultiStepDialog {
1217
1490
  constructor(c, r, z) {
1218
1491
  this.z = z;
1492
+ this.closeDialog = new EventEmitter();
1493
+ this.openDialog = new EventEmitter();
1219
1494
  c.detach();
1220
1495
  this.el = r.nativeElement;
1221
- proxyOutputs(this, this.el, ['closeDialog', 'openDialog']);
1222
1496
  }
1223
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetMultiStepDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1224
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetMultiStepDialog, selector: "tet-multi-step-dialog", inputs: { content: "content", dialogDataScreenKey: "dialogDataScreenKey", isOpen: "isOpen", language: "language", steps: "steps", tetDialogClass: "tetDialogClass", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1497
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetMultiStepDialog, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1498
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetMultiStepDialog, isStandalone: false, selector: "tet-multi-step-dialog", inputs: { content: "content", dialogDataScreenKey: "dialogDataScreenKey", isOpen: "isOpen", language: "language", steps: "steps", tetDialogClass: "tetDialogClass", theme: "theme" }, outputs: { closeDialog: "closeDialog", openDialog: "openDialog" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1225
1499
  };
1226
1500
  TetMultiStepDialog = __decorate([
1227
1501
  ProxyCmp({
1228
1502
  inputs: ['content', 'dialogDataScreenKey', 'isOpen', 'language', 'steps', 'tetDialogClass', 'theme']
1229
1503
  })
1230
1504
  ], TetMultiStepDialog);
1231
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetMultiStepDialog, decorators: [{
1505
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetMultiStepDialog, decorators: [{
1232
1506
  type: Component,
1233
1507
  args: [{
1234
1508
  selector: 'tet-multi-step-dialog',
@@ -1236,17 +1510,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1236
1510
  template: '<ng-content></ng-content>',
1237
1511
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1238
1512
  inputs: ['content', 'dialogDataScreenKey', 'isOpen', 'language', 'steps', 'tetDialogClass', 'theme'],
1239
- }]
1240
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1513
+ outputs: ['closeDialog', 'openDialog'],
1514
+ standalone: false
1515
+ }]
1516
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { closeDialog: [{
1517
+ type: Output
1518
+ }], openDialog: [{
1519
+ type: Output
1520
+ }] } });
1241
1521
  let TetNavigationMobile = class TetNavigationMobile {
1242
1522
  constructor(c, r, z) {
1243
1523
  this.z = z;
1524
+ this.mainDropdownToggle = new EventEmitter();
1244
1525
  c.detach();
1245
1526
  this.el = r.nativeElement;
1246
- proxyOutputs(this, this.el, ['mainDropdownToggle']);
1247
1527
  }
1248
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetNavigationMobile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1249
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetNavigationMobile, selector: "tet-navigation-mobile", inputs: { darkMode: "darkMode" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1528
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetNavigationMobile, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1529
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetNavigationMobile, isStandalone: false, selector: "tet-navigation-mobile", inputs: { darkMode: "darkMode" }, outputs: { mainDropdownToggle: "mainDropdownToggle" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1250
1530
  };
1251
1531
  TetNavigationMobile = __decorate([
1252
1532
  ProxyCmp({
@@ -1254,7 +1534,7 @@ TetNavigationMobile = __decorate([
1254
1534
  methods: ['showToggler', 'hideToggler', 'open', 'close']
1255
1535
  })
1256
1536
  ], TetNavigationMobile);
1257
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetNavigationMobile, decorators: [{
1537
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetNavigationMobile, decorators: [{
1258
1538
  type: Component,
1259
1539
  args: [{
1260
1540
  selector: 'tet-navigation-mobile',
@@ -1262,16 +1542,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1262
1542
  template: '<ng-content></ng-content>',
1263
1543
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1264
1544
  inputs: ['darkMode'],
1545
+ outputs: ['mainDropdownToggle'],
1546
+ standalone: false
1265
1547
  }]
1266
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1548
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { mainDropdownToggle: [{
1549
+ type: Output
1550
+ }] } });
1267
1551
  let TetNotification = class TetNotification {
1268
1552
  constructor(c, r, z) {
1269
1553
  this.z = z;
1270
1554
  c.detach();
1271
1555
  this.el = r.nativeElement;
1272
1556
  }
1273
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1274
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetNotification, selector: "tet-notification", inputs: { allowClose: "allowClose", animationDuration: "animationDuration", content: "content", headerTitle: "headerTitle", icon: "icon", theme: "theme", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1557
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetNotification, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1558
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetNotification, isStandalone: false, selector: "tet-notification", inputs: { allowClose: "allowClose", animationDuration: "animationDuration", content: "content", headerTitle: "headerTitle", icon: "icon", theme: "theme", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1275
1559
  };
1276
1560
  TetNotification = __decorate([
1277
1561
  ProxyCmp({
@@ -1279,7 +1563,7 @@ TetNotification = __decorate([
1279
1563
  methods: ['close']
1280
1564
  })
1281
1565
  ], TetNotification);
1282
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetNotification, decorators: [{
1566
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetNotification, decorators: [{
1283
1567
  type: Component,
1284
1568
  args: [{
1285
1569
  selector: 'tet-notification',
@@ -1287,17 +1571,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1287
1571
  template: '<ng-content></ng-content>',
1288
1572
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1289
1573
  inputs: ['allowClose', 'animationDuration', 'content', 'headerTitle', 'icon', 'theme', 'type'],
1574
+ standalone: false
1290
1575
  }]
1291
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1576
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1292
1577
  let TetNumberInput = class TetNumberInput {
1293
1578
  constructor(c, r, z) {
1294
1579
  this.z = z;
1580
+ this.inputValueChanged = new EventEmitter();
1295
1581
  c.detach();
1296
1582
  this.el = r.nativeElement;
1297
- proxyOutputs(this, this.el, ['inputValueChanged']);
1298
1583
  }
1299
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetNumberInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1300
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetNumberInput, selector: "tet-number-input", inputs: { accessibilityLabel: "accessibilityLabel", buttonAccessibilityLabel: "buttonAccessibilityLabel", completed: "completed", disabled: "disabled", error: "error", helperText: "helperText", label: "label", max: "max", min: "min", selectOnFocus: "selectOnFocus", suffixes: "suffixes", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1584
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetNumberInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1585
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetNumberInput, isStandalone: false, selector: "tet-number-input", inputs: { accessibilityLabel: "accessibilityLabel", buttonAccessibilityLabel: "buttonAccessibilityLabel", completed: "completed", disabled: "disabled", error: "error", helperText: "helperText", label: "label", max: "max", min: "min", selectOnFocus: "selectOnFocus", suffixes: "suffixes", theme: "theme", value: "value" }, outputs: { inputValueChanged: "inputValueChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1301
1586
  };
1302
1587
  TetNumberInput = __decorate([
1303
1588
  ProxyCmp({
@@ -1305,7 +1590,7 @@ TetNumberInput = __decorate([
1305
1590
  methods: ['getValue', 'resetSuffix']
1306
1591
  })
1307
1592
  ], TetNumberInput);
1308
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetNumberInput, decorators: [{
1593
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetNumberInput, decorators: [{
1309
1594
  type: Component,
1310
1595
  args: [{
1311
1596
  selector: 'tet-number-input',
@@ -1313,23 +1598,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1313
1598
  template: '<ng-content></ng-content>',
1314
1599
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1315
1600
  inputs: ['accessibilityLabel', 'buttonAccessibilityLabel', 'completed', 'disabled', 'error', 'helperText', 'label', 'max', 'min', 'selectOnFocus', 'suffixes', 'theme', 'value'],
1601
+ outputs: ['inputValueChanged'],
1602
+ standalone: false
1316
1603
  }]
1317
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1604
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { inputValueChanged: [{
1605
+ type: Output
1606
+ }] } });
1318
1607
  let TetPlaceholder = class TetPlaceholder {
1319
1608
  constructor(c, r, z) {
1320
1609
  this.z = z;
1321
1610
  c.detach();
1322
1611
  this.el = r.nativeElement;
1323
1612
  }
1324
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetPlaceholder, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1325
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetPlaceholder, selector: "tet-placeholder", inputs: { darkTheme: "darkTheme", height: "height", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1613
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetPlaceholder, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1614
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetPlaceholder, isStandalone: false, selector: "tet-placeholder", inputs: { darkTheme: "darkTheme", height: "height", width: "width" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1326
1615
  };
1327
1616
  TetPlaceholder = __decorate([
1328
1617
  ProxyCmp({
1329
1618
  inputs: ['darkTheme', 'height', 'width']
1330
1619
  })
1331
1620
  ], TetPlaceholder);
1332
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetPlaceholder, decorators: [{
1621
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetPlaceholder, decorators: [{
1333
1622
  type: Component,
1334
1623
  args: [{
1335
1624
  selector: 'tet-placeholder',
@@ -1337,23 +1626,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1337
1626
  template: '<ng-content></ng-content>',
1338
1627
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1339
1628
  inputs: ['darkTheme', 'height', 'width'],
1629
+ standalone: false
1340
1630
  }]
1341
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1631
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1342
1632
  let TetPriceView = class TetPriceView {
1343
1633
  constructor(c, r, z) {
1344
1634
  this.z = z;
1345
1635
  c.detach();
1346
1636
  this.el = r.nativeElement;
1347
1637
  }
1348
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetPriceView, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1349
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetPriceView, selector: "tet-price-view", inputs: { background: "background", centsPrice: "centsPrice", euroPrice: "euroPrice", font: "font", footerText: "footerText", footerTextType: "footerTextType", headingText: "headingText", priceType: "priceType", size: "size", staticColors: "staticColors", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1638
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetPriceView, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1639
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetPriceView, isStandalone: false, selector: "tet-price-view", inputs: { background: "background", centsPrice: "centsPrice", euroPrice: "euroPrice", font: "font", footerText: "footerText", footerTextType: "footerTextType", headingText: "headingText", priceType: "priceType", size: "size", staticColors: "staticColors", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1350
1640
  };
1351
1641
  TetPriceView = __decorate([
1352
1642
  ProxyCmp({
1353
1643
  inputs: ['background', 'centsPrice', 'euroPrice', 'font', 'footerText', 'footerTextType', 'headingText', 'priceType', 'size', 'staticColors', 'theme']
1354
1644
  })
1355
1645
  ], TetPriceView);
1356
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetPriceView, decorators: [{
1646
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetPriceView, decorators: [{
1357
1647
  type: Component,
1358
1648
  args: [{
1359
1649
  selector: 'tet-price-view',
@@ -1361,17 +1651,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1361
1651
  template: '<ng-content></ng-content>',
1362
1652
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1363
1653
  inputs: ['background', 'centsPrice', 'euroPrice', 'font', 'footerText', 'footerTextType', 'headingText', 'priceType', 'size', 'staticColors', 'theme'],
1654
+ standalone: false
1364
1655
  }]
1365
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1656
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1366
1657
  let TetRadio = class TetRadio {
1367
1658
  constructor(c, r, z) {
1368
1659
  this.z = z;
1660
+ this.check = new EventEmitter();
1369
1661
  c.detach();
1370
1662
  this.el = r.nativeElement;
1371
- proxyOutputs(this, this.el, ['check']);
1372
1663
  }
1373
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1374
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetRadio, selector: "tet-radio", inputs: { accessibilityLabel: "accessibilityLabel", checked: "checked", disabled: "disabled", inputAutofocus: "inputAutofocus", label: "label", name: "name", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1664
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetRadio, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1665
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetRadio, isStandalone: false, selector: "tet-radio", inputs: { accessibilityLabel: "accessibilityLabel", checked: "checked", disabled: "disabled", inputAutofocus: "inputAutofocus", label: "label", name: "name", theme: "theme", value: "value" }, outputs: { check: "check" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1375
1666
  };
1376
1667
  TetRadio = __decorate([
1377
1668
  ProxyCmp({
@@ -1379,7 +1670,7 @@ TetRadio = __decorate([
1379
1670
  methods: ['setChecked']
1380
1671
  })
1381
1672
  ], TetRadio);
1382
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetRadio, decorators: [{
1673
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetRadio, decorators: [{
1383
1674
  type: Component,
1384
1675
  args: [{
1385
1676
  selector: 'tet-radio',
@@ -1387,24 +1678,29 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1387
1678
  template: '<ng-content></ng-content>',
1388
1679
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1389
1680
  inputs: ['accessibilityLabel', 'checked', 'disabled', 'inputAutofocus', 'label', 'name', 'theme', 'value'],
1681
+ outputs: ['check'],
1682
+ standalone: false
1390
1683
  }]
1391
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1684
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { check: [{
1685
+ type: Output
1686
+ }] } });
1392
1687
  let TetRangeSlider = class TetRangeSlider {
1393
1688
  constructor(c, r, z) {
1394
1689
  this.z = z;
1690
+ this.sliderInput = new EventEmitter();
1691
+ this.sliderChange = new EventEmitter();
1395
1692
  c.detach();
1396
1693
  this.el = r.nativeElement;
1397
- proxyOutputs(this, this.el, ['slider-input', 'slider-change']);
1398
1694
  }
1399
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetRangeSlider, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1400
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetRangeSlider, selector: "tet-range-slider", inputs: { addButtonAccessibilityLabel: "addButtonAccessibilityLabel", dataPoints: "dataPoints", dataUnits: "dataUnits", defaultValue: "defaultValue", displayDataPoints: "displayDataPoints", inputMaxValue: "inputMaxValue", lockToDataPoint: "lockToDataPoint", maxValue: "maxValue", minValue: "minValue", numberInputAccessibilityLabel: "numberInputAccessibilityLabel", parentContainer: "parentContainer", reduceButtonAccessibilityLabel: "reduceButtonAccessibilityLabel", size: "size", sliderInputAccessibilityLabel: "sliderInputAccessibilityLabel", step: "step", theme: "theme", type: "type", withControls: "withControls", withCurrentStepCounter: "withCurrentStepCounter", withInput: "withInput" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1695
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetRangeSlider, 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: "20.3.16", type: TetRangeSlider, isStandalone: false, selector: "tet-range-slider", inputs: { addButtonAccessibilityLabel: "addButtonAccessibilityLabel", dataPoints: "dataPoints", dataUnits: "dataUnits", defaultValue: "defaultValue", displayDataPoints: "displayDataPoints", inputMaxValue: "inputMaxValue", lockToDataPoint: "lockToDataPoint", maxValue: "maxValue", minValue: "minValue", numberInputAccessibilityLabel: "numberInputAccessibilityLabel", parentContainer: "parentContainer", reduceButtonAccessibilityLabel: "reduceButtonAccessibilityLabel", size: "size", sliderInputAccessibilityLabel: "sliderInputAccessibilityLabel", step: "step", theme: "theme", type: "type", withControls: "withControls", withCurrentStepCounter: "withCurrentStepCounter", withInput: "withInput" }, outputs: { "slider-input": "slider-input", "slider-change": "slider-change", sliderInput: "sliderInput", sliderChange: "sliderChange" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1401
1697
  };
1402
1698
  TetRangeSlider = __decorate([
1403
1699
  ProxyCmp({
1404
1700
  inputs: ['addButtonAccessibilityLabel', 'dataPoints', 'dataUnits', 'defaultValue', 'displayDataPoints', 'inputMaxValue', 'lockToDataPoint', 'maxValue', 'minValue', 'numberInputAccessibilityLabel', 'parentContainer', 'reduceButtonAccessibilityLabel', 'size', 'sliderInputAccessibilityLabel', 'step', 'theme', 'type', 'withControls', 'withCurrentStepCounter', 'withInput']
1405
1701
  })
1406
1702
  ], TetRangeSlider);
1407
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetRangeSlider, decorators: [{
1703
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetRangeSlider, decorators: [{
1408
1704
  type: Component,
1409
1705
  args: [{
1410
1706
  selector: 'tet-range-slider',
@@ -1412,48 +1708,58 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1412
1708
  template: '<ng-content></ng-content>',
1413
1709
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1414
1710
  inputs: ['addButtonAccessibilityLabel', 'dataPoints', 'dataUnits', 'defaultValue', 'displayDataPoints', 'inputMaxValue', 'lockToDataPoint', 'maxValue', 'minValue', 'numberInputAccessibilityLabel', 'parentContainer', 'reduceButtonAccessibilityLabel', 'size', 'sliderInputAccessibilityLabel', 'step', 'theme', 'type', 'withControls', 'withCurrentStepCounter', 'withInput'],
1415
- }]
1416
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1711
+ outputs: ['slider-input', 'slider-change'],
1712
+ standalone: false
1713
+ }]
1714
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { sliderInput: [{
1715
+ type: Output
1716
+ }], sliderChange: [{
1717
+ type: Output
1718
+ }] } });
1417
1719
  let TetReferral = class TetReferral {
1418
1720
  constructor(c, r, z) {
1419
1721
  this.z = z;
1722
+ this.urlCopied = new EventEmitter();
1420
1723
  c.detach();
1421
1724
  this.el = r.nativeElement;
1422
- proxyOutputs(this, this.el, ['urlCopied']);
1423
1725
  }
1424
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetReferral, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1425
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetReferral, selector: "tet-referral", inputs: { data: "data", language: "language", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1726
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetReferral, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1727
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetReferral, isStandalone: false, selector: "tet-referral", inputs: { data: "data", language: "language", theme: "theme" }, outputs: { urlCopied: "urlCopied" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1426
1728
  };
1427
1729
  TetReferral = __decorate([
1428
1730
  ProxyCmp({
1429
1731
  inputs: ['data', 'language', 'theme']
1430
1732
  })
1431
1733
  ], TetReferral);
1432
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetReferral, decorators: [{
1734
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetReferral, decorators: [{
1433
1735
  type: Component,
1434
1736
  args: [{
1435
1737
  selector: 'tet-referral',
1436
1738
  changeDetection: ChangeDetectionStrategy.OnPush,
1437
1739
  template: '<ng-content></ng-content>',
1438
1740
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1439
- inputs: ['data', 'language', 'theme'],
1741
+ inputs: [{ name: 'data', required: true }, 'language', 'theme'],
1742
+ outputs: ['urlCopied'],
1743
+ standalone: false
1440
1744
  }]
1441
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1745
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { urlCopied: [{
1746
+ type: Output
1747
+ }] } });
1442
1748
  let TetRoundStepper = class TetRoundStepper {
1443
1749
  constructor(c, r, z) {
1444
1750
  this.z = z;
1445
1751
  c.detach();
1446
1752
  this.el = r.nativeElement;
1447
1753
  }
1448
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetRoundStepper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1449
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetRoundStepper, selector: "tet-round-stepper", inputs: { forcedColumn: "forcedColumn", hideIcons: "hideIcons", stepperData: "stepperData", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1754
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetRoundStepper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1755
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetRoundStepper, isStandalone: false, selector: "tet-round-stepper", inputs: { forcedColumn: "forcedColumn", hideIcons: "hideIcons", stepperData: "stepperData", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1450
1756
  };
1451
1757
  TetRoundStepper = __decorate([
1452
1758
  ProxyCmp({
1453
1759
  inputs: ['forcedColumn', 'hideIcons', 'stepperData', 'theme']
1454
1760
  })
1455
1761
  ], TetRoundStepper);
1456
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetRoundStepper, decorators: [{
1762
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetRoundStepper, decorators: [{
1457
1763
  type: Component,
1458
1764
  args: [{
1459
1765
  selector: 'tet-round-stepper',
@@ -1461,17 +1767,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1461
1767
  template: '<ng-content></ng-content>',
1462
1768
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1463
1769
  inputs: ['forcedColumn', 'hideIcons', 'stepperData', 'theme'],
1770
+ standalone: false
1464
1771
  }]
1465
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1772
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1466
1773
  let TetSelectionList = class TetSelectionList {
1467
1774
  constructor(c, r, z) {
1468
1775
  this.z = z;
1776
+ this.itemSelected = new EventEmitter();
1777
+ this.selectionListRendered = new EventEmitter();
1469
1778
  c.detach();
1470
1779
  this.el = r.nativeElement;
1471
- proxyOutputs(this, this.el, ['itemSelected', 'selectionListRendered']);
1472
1780
  }
1473
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetSelectionList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1474
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetSelectionList, selector: "tet-selection-list", inputs: { identifier: "identifier", itemRenderFunction: "itemRenderFunction", items: "items", multipleSelections: "multipleSelections", preSelectedItems: "preSelectedItems" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1781
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetSelectionList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1782
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetSelectionList, isStandalone: false, selector: "tet-selection-list", inputs: { identifier: "identifier", itemRenderFunction: "itemRenderFunction", items: "items", multipleSelections: "multipleSelections", preSelectedItems: "preSelectedItems" }, outputs: { itemSelected: "itemSelected", selectionListRendered: "selectionListRendered" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1475
1783
  };
1476
1784
  TetSelectionList = __decorate([
1477
1785
  ProxyCmp({
@@ -1479,7 +1787,7 @@ TetSelectionList = __decorate([
1479
1787
  methods: ['unsetSelectedItems', 'getSelectedItems']
1480
1788
  })
1481
1789
  ], TetSelectionList);
1482
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetSelectionList, decorators: [{
1790
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetSelectionList, decorators: [{
1483
1791
  type: Component,
1484
1792
  args: [{
1485
1793
  selector: 'tet-selection-list',
@@ -1487,16 +1795,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1487
1795
  template: '<ng-content></ng-content>',
1488
1796
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1489
1797
  inputs: ['identifier', 'itemRenderFunction', 'items', 'multipleSelections', 'preSelectedItems'],
1490
- }]
1491
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1798
+ outputs: ['itemSelected', 'selectionListRendered'],
1799
+ standalone: false
1800
+ }]
1801
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { itemSelected: [{
1802
+ type: Output
1803
+ }], selectionListRendered: [{
1804
+ type: Output
1805
+ }] } });
1492
1806
  let TetSpinner = class TetSpinner {
1493
1807
  constructor(c, r, z) {
1494
1808
  this.z = z;
1495
1809
  c.detach();
1496
1810
  this.el = r.nativeElement;
1497
1811
  }
1498
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1499
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetSpinner, selector: "tet-spinner", inputs: { size: "size", theme: "theme", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1812
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetSpinner, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1813
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetSpinner, isStandalone: false, selector: "tet-spinner", inputs: { size: "size", theme: "theme", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1500
1814
  };
1501
1815
  TetSpinner = __decorate([
1502
1816
  ProxyCmp({
@@ -1504,7 +1818,7 @@ TetSpinner = __decorate([
1504
1818
  methods: ['setProgress']
1505
1819
  })
1506
1820
  ], TetSpinner);
1507
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetSpinner, decorators: [{
1821
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetSpinner, decorators: [{
1508
1822
  type: Component,
1509
1823
  args: [{
1510
1824
  selector: 'tet-spinner',
@@ -1512,23 +1826,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1512
1826
  template: '<ng-content></ng-content>',
1513
1827
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1514
1828
  inputs: ['size', 'theme', 'type'],
1829
+ standalone: false
1515
1830
  }]
1516
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1831
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1517
1832
  let TetStepper = class TetStepper {
1518
1833
  constructor(c, r, z) {
1519
1834
  this.z = z;
1520
1835
  c.detach();
1521
1836
  this.el = r.nativeElement;
1522
1837
  }
1523
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetStepper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1524
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetStepper, selector: "tet-stepper", inputs: { stepperData: "stepperData" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1838
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetStepper, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1839
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetStepper, isStandalone: false, selector: "tet-stepper", inputs: { stepperData: "stepperData" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1525
1840
  };
1526
1841
  TetStepper = __decorate([
1527
1842
  ProxyCmp({
1528
1843
  inputs: ['stepperData']
1529
1844
  })
1530
1845
  ], TetStepper);
1531
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetStepper, decorators: [{
1846
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetStepper, decorators: [{
1532
1847
  type: Component,
1533
1848
  args: [{
1534
1849
  selector: 'tet-stepper',
@@ -1536,17 +1851,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1536
1851
  template: '<ng-content></ng-content>',
1537
1852
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1538
1853
  inputs: ['stepperData'],
1854
+ standalone: false
1539
1855
  }]
1540
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1856
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1541
1857
  let TetStepperInput = class TetStepperInput {
1542
1858
  constructor(c, r, z) {
1543
1859
  this.z = z;
1860
+ this.inputValueChanged = new EventEmitter();
1544
1861
  c.detach();
1545
1862
  this.el = r.nativeElement;
1546
- proxyOutputs(this, this.el, ['inputValueChanged']);
1547
1863
  }
1548
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetStepperInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1549
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetStepperInput, selector: "tet-stepper-input", inputs: { accessibilityLabel: "accessibilityLabel", language: "language", max: "max", min: "min", selectOnFocus: "selectOnFocus", step: "step", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1864
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetStepperInput, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1865
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetStepperInput, isStandalone: false, selector: "tet-stepper-input", inputs: { accessibilityLabel: "accessibilityLabel", language: "language", max: "max", min: "min", selectOnFocus: "selectOnFocus", step: "step", theme: "theme", value: "value" }, outputs: { inputValueChanged: "inputValueChanged" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1550
1866
  };
1551
1867
  TetStepperInput = __decorate([
1552
1868
  ProxyCmp({
@@ -1554,7 +1870,7 @@ TetStepperInput = __decorate([
1554
1870
  methods: ['getValue']
1555
1871
  })
1556
1872
  ], TetStepperInput);
1557
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetStepperInput, decorators: [{
1873
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetStepperInput, decorators: [{
1558
1874
  type: Component,
1559
1875
  args: [{
1560
1876
  selector: 'tet-stepper-input',
@@ -1562,23 +1878,27 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1562
1878
  template: '<ng-content></ng-content>',
1563
1879
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1564
1880
  inputs: ['accessibilityLabel', 'language', 'max', 'min', 'selectOnFocus', 'step', 'theme', 'value'],
1881
+ outputs: ['inputValueChanged'],
1882
+ standalone: false
1565
1883
  }]
1566
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1884
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { inputValueChanged: [{
1885
+ type: Output
1886
+ }] } });
1567
1887
  let TetStepperV2 = class TetStepperV2 {
1568
1888
  constructor(c, r, z) {
1569
1889
  this.z = z;
1570
1890
  c.detach();
1571
1891
  this.el = r.nativeElement;
1572
1892
  }
1573
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetStepperV2, 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: "16.2.9", type: TetStepperV2, selector: "tet-stepper-v2", inputs: { stepperData: "stepperData", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1893
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetStepperV2, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1894
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetStepperV2, isStandalone: false, selector: "tet-stepper-v2", inputs: { stepperData: "stepperData", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1575
1895
  };
1576
1896
  TetStepperV2 = __decorate([
1577
1897
  ProxyCmp({
1578
1898
  inputs: ['stepperData', 'theme']
1579
1899
  })
1580
1900
  ], TetStepperV2);
1581
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetStepperV2, decorators: [{
1901
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetStepperV2, decorators: [{
1582
1902
  type: Component,
1583
1903
  args: [{
1584
1904
  selector: 'tet-stepper-v2',
@@ -1586,23 +1906,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1586
1906
  template: '<ng-content></ng-content>',
1587
1907
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1588
1908
  inputs: ['stepperData', 'theme'],
1909
+ standalone: false
1589
1910
  }]
1590
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1911
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1591
1912
  let TetStepperV3 = class TetStepperV3 {
1592
1913
  constructor(c, r, z) {
1593
1914
  this.z = z;
1594
1915
  c.detach();
1595
1916
  this.el = r.nativeElement;
1596
1917
  }
1597
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetStepperV3, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1598
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetStepperV3, selector: "tet-stepper-v3", inputs: { stepperData: "stepperData", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1918
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetStepperV3, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1919
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetStepperV3, isStandalone: false, selector: "tet-stepper-v3", inputs: { stepperData: "stepperData", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1599
1920
  };
1600
1921
  TetStepperV3 = __decorate([
1601
1922
  ProxyCmp({
1602
1923
  inputs: ['stepperData', 'theme']
1603
1924
  })
1604
1925
  ], TetStepperV3);
1605
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetStepperV3, decorators: [{
1926
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetStepperV3, decorators: [{
1606
1927
  type: Component,
1607
1928
  args: [{
1608
1929
  selector: 'tet-stepper-v3',
@@ -1610,17 +1931,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1610
1931
  template: '<ng-content></ng-content>',
1611
1932
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1612
1933
  inputs: ['stepperData', 'theme'],
1934
+ standalone: false
1613
1935
  }]
1614
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1936
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1615
1937
  let TetSwitch = class TetSwitch {
1616
1938
  constructor(c, r, z) {
1617
1939
  this.z = z;
1940
+ this.check = new EventEmitter();
1618
1941
  c.detach();
1619
1942
  this.el = r.nativeElement;
1620
- proxyOutputs(this, this.el, ['check']);
1621
1943
  }
1622
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1623
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetSwitch, selector: "tet-switch", inputs: { accessibilityLabel: "accessibilityLabel", checked: "checked", disabled: "disabled", label: "label", name: "name", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1944
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetSwitch, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1945
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetSwitch, isStandalone: false, selector: "tet-switch", inputs: { accessibilityLabel: "accessibilityLabel", checked: "checked", disabled: "disabled", label: "label", name: "name", theme: "theme", value: "value" }, outputs: { check: "check" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1624
1946
  };
1625
1947
  TetSwitch = __decorate([
1626
1948
  ProxyCmp({
@@ -1628,7 +1950,7 @@ TetSwitch = __decorate([
1628
1950
  methods: ['setChecked']
1629
1951
  })
1630
1952
  ], TetSwitch);
1631
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetSwitch, decorators: [{
1953
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetSwitch, decorators: [{
1632
1954
  type: Component,
1633
1955
  args: [{
1634
1956
  selector: 'tet-switch',
@@ -1636,17 +1958,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1636
1958
  template: '<ng-content></ng-content>',
1637
1959
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1638
1960
  inputs: ['accessibilityLabel', 'checked', 'disabled', 'label', 'name', 'theme', 'value'],
1961
+ outputs: ['check'],
1962
+ standalone: false
1639
1963
  }]
1640
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1964
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { check: [{
1965
+ type: Output
1966
+ }] } });
1641
1967
  let TetTabContent = class TetTabContent {
1642
1968
  constructor(c, r, z) {
1643
1969
  this.z = z;
1970
+ this.tabSelected = new EventEmitter();
1644
1971
  c.detach();
1645
1972
  this.el = r.nativeElement;
1646
- proxyOutputs(this, this.el, ['tabSelected']);
1647
1973
  }
1648
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetTabContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1649
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetTabContent, selector: "tet-tab-content", inputs: { dataName: "dataName", defaultTab: "defaultTab", parentContainer: "parentContainer", useVisibility: "useVisibility" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1974
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetTabContent, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1975
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetTabContent, isStandalone: false, selector: "tet-tab-content", inputs: { dataName: "dataName", defaultTab: "defaultTab", parentContainer: "parentContainer", useVisibility: "useVisibility" }, outputs: { tabSelected: "tabSelected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1650
1976
  };
1651
1977
  TetTabContent = __decorate([
1652
1978
  ProxyCmp({
@@ -1654,7 +1980,7 @@ TetTabContent = __decorate([
1654
1980
  methods: ['init', 'selectTab']
1655
1981
  })
1656
1982
  ], TetTabContent);
1657
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetTabContent, decorators: [{
1983
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetTabContent, decorators: [{
1658
1984
  type: Component,
1659
1985
  args: [{
1660
1986
  selector: 'tet-tab-content',
@@ -1662,49 +1988,57 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1662
1988
  template: '<ng-content></ng-content>',
1663
1989
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1664
1990
  inputs: ['dataName', 'defaultTab', 'parentContainer', 'useVisibility'],
1991
+ outputs: ['tabSelected'],
1992
+ standalone: false
1665
1993
  }]
1666
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
1994
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { tabSelected: [{
1995
+ type: Output
1996
+ }] } });
1667
1997
  let TetTabHeader = class TetTabHeader {
1668
1998
  constructor(c, r, z) {
1669
1999
  this.z = z;
2000
+ this.tabSelected = new EventEmitter();
1670
2001
  c.detach();
1671
2002
  this.el = r.nativeElement;
1672
- proxyOutputs(this, this.el, ['tabSelected']);
1673
2003
  }
1674
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetTabHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1675
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetTabHeader, selector: "tet-tab-header", inputs: { autoplayDelay: "autoplayDelay", darkMode: "darkMode", dataName: "dataName", defaultTab: "defaultTab", hideActiveHeaderUnderline: "hideActiveHeaderUnderline", hideHeaderUnderline: "hideHeaderUnderline", position: "position", segmented: "segmented", sizing: "sizing", stopAutoplayOnContentHover: "stopAutoplayOnContentHover", stopAutoplayOnHeaderHover: "stopAutoplayOnHeaderHover", theme: "theme", type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2004
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetTabHeader, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
2005
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetTabHeader, isStandalone: false, selector: "tet-tab-header", inputs: { autoplayDelay: "autoplayDelay", dataName: "dataName", defaultTab: "defaultTab", hideActiveHeaderUnderline: "hideActiveHeaderUnderline", hideHeaderUnderline: "hideHeaderUnderline", position: "position", segmented: "segmented", sizing: "sizing", stopAutoplayOnContentHover: "stopAutoplayOnContentHover", stopAutoplayOnHeaderHover: "stopAutoplayOnHeaderHover", theme: "theme", type: "type" }, outputs: { tabSelected: "tabSelected" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1676
2006
  };
1677
2007
  TetTabHeader = __decorate([
1678
2008
  ProxyCmp({
1679
- inputs: ['autoplayDelay', 'darkMode', 'dataName', 'defaultTab', 'hideActiveHeaderUnderline', 'hideHeaderUnderline', 'position', 'segmented', 'sizing', 'stopAutoplayOnContentHover', 'stopAutoplayOnHeaderHover', 'theme', 'type'],
2009
+ inputs: ['autoplayDelay', 'dataName', 'defaultTab', 'hideActiveHeaderUnderline', 'hideHeaderUnderline', 'position', 'segmented', 'sizing', 'stopAutoplayOnContentHover', 'stopAutoplayOnHeaderHover', 'theme', 'type'],
1680
2010
  methods: ['toggleAutoplay', 'stopAutoplay', 'startAutoplay', 'selectTab']
1681
2011
  })
1682
2012
  ], TetTabHeader);
1683
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetTabHeader, decorators: [{
2013
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetTabHeader, decorators: [{
1684
2014
  type: Component,
1685
2015
  args: [{
1686
2016
  selector: 'tet-tab-header',
1687
2017
  changeDetection: ChangeDetectionStrategy.OnPush,
1688
2018
  template: '<ng-content></ng-content>',
1689
2019
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1690
- inputs: ['autoplayDelay', 'darkMode', 'dataName', 'defaultTab', 'hideActiveHeaderUnderline', 'hideHeaderUnderline', 'position', 'segmented', 'sizing', 'stopAutoplayOnContentHover', 'stopAutoplayOnHeaderHover', 'theme', 'type'],
2020
+ inputs: ['autoplayDelay', 'dataName', 'defaultTab', 'hideActiveHeaderUnderline', 'hideHeaderUnderline', 'position', 'segmented', 'sizing', 'stopAutoplayOnContentHover', 'stopAutoplayOnHeaderHover', 'theme', 'type'],
2021
+ outputs: ['tabSelected'],
2022
+ standalone: false
1691
2023
  }]
1692
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2024
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { tabSelected: [{
2025
+ type: Output
2026
+ }] } });
1693
2027
  let TetTable = class TetTable {
1694
2028
  constructor(c, r, z) {
1695
2029
  this.z = z;
1696
2030
  c.detach();
1697
2031
  this.el = r.nativeElement;
1698
2032
  }
1699
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1700
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetTable, selector: "tet-table", inputs: { caption: "caption", cellTextAlign: "cellTextAlign", fixedFirstColumn: "fixedFirstColumn", gappedColumnLayout: "gappedColumnLayout", tableData: "tableData", tableHeader: "tableHeader", tableHeaderColumnSpan: "tableHeaderColumnSpan", tableHeaderTextAlign: "tableHeaderTextAlign", tableHeaderWidth: "tableHeaderWidth", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2033
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetTable, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
2034
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetTable, isStandalone: false, selector: "tet-table", inputs: { caption: "caption", cellTextAlign: "cellTextAlign", fixedFirstColumn: "fixedFirstColumn", gappedColumnLayout: "gappedColumnLayout", tableData: "tableData", tableHeader: "tableHeader", tableHeaderColumnSpan: "tableHeaderColumnSpan", tableHeaderTextAlign: "tableHeaderTextAlign", tableHeaderWidth: "tableHeaderWidth", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1701
2035
  };
1702
2036
  TetTable = __decorate([
1703
2037
  ProxyCmp({
1704
2038
  inputs: ['caption', 'cellTextAlign', 'fixedFirstColumn', 'gappedColumnLayout', 'tableData', 'tableHeader', 'tableHeaderColumnSpan', 'tableHeaderTextAlign', 'tableHeaderWidth', 'theme']
1705
2039
  })
1706
2040
  ], TetTable);
1707
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetTable, decorators: [{
2041
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetTable, decorators: [{
1708
2042
  type: Component,
1709
2043
  args: [{
1710
2044
  selector: 'tet-table',
@@ -1712,23 +2046,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1712
2046
  template: '<ng-content></ng-content>',
1713
2047
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1714
2048
  inputs: ['caption', 'cellTextAlign', 'fixedFirstColumn', 'gappedColumnLayout', 'tableData', 'tableHeader', 'tableHeaderColumnSpan', 'tableHeaderTextAlign', 'tableHeaderWidth', 'theme'],
2049
+ standalone: false
1715
2050
  }]
1716
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2051
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1717
2052
  let TetTag = class TetTag {
1718
2053
  constructor(c, r, z) {
1719
2054
  this.z = z;
1720
2055
  c.detach();
1721
2056
  this.el = r.nativeElement;
1722
2057
  }
1723
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1724
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetTag, selector: "tet-tag", inputs: { active: "active", count: "count", disabled: "disabled", language: "language", showIcon: "showIcon", tagTitle: "tagTitle", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2058
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetTag, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
2059
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetTag, isStandalone: false, selector: "tet-tag", inputs: { active: "active", count: "count", disabled: "disabled", language: "language", showIcon: "showIcon", tagTitle: "tagTitle", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1725
2060
  };
1726
2061
  TetTag = __decorate([
1727
2062
  ProxyCmp({
1728
2063
  inputs: ['active', 'count', 'disabled', 'language', 'showIcon', 'tagTitle', 'theme']
1729
2064
  })
1730
2065
  ], TetTag);
1731
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetTag, decorators: [{
2066
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetTag, decorators: [{
1732
2067
  type: Component,
1733
2068
  args: [{
1734
2069
  selector: 'tet-tag',
@@ -1736,23 +2071,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1736
2071
  template: '<ng-content></ng-content>',
1737
2072
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1738
2073
  inputs: ['active', 'count', 'disabled', 'language', 'showIcon', 'tagTitle', 'theme'],
2074
+ standalone: false
1739
2075
  }]
1740
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2076
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1741
2077
  let TetTagGroup = class TetTagGroup {
1742
2078
  constructor(c, r, z) {
1743
2079
  this.z = z;
1744
2080
  c.detach();
1745
2081
  this.el = r.nativeElement;
1746
2082
  }
1747
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetTagGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1748
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetTagGroup, selector: "tet-tag-group", inputs: { language: "language", tags: "tags", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2083
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetTagGroup, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
2084
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetTagGroup, isStandalone: false, selector: "tet-tag-group", inputs: { language: "language", tags: "tags", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1749
2085
  };
1750
2086
  TetTagGroup = __decorate([
1751
2087
  ProxyCmp({
1752
2088
  inputs: ['language', 'tags', 'theme']
1753
2089
  })
1754
2090
  ], TetTagGroup);
1755
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetTagGroup, decorators: [{
2091
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetTagGroup, decorators: [{
1756
2092
  type: Component,
1757
2093
  args: [{
1758
2094
  selector: 'tet-tag-group',
@@ -1760,23 +2096,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1760
2096
  template: '<ng-content></ng-content>',
1761
2097
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1762
2098
  inputs: ['language', 'tags', 'theme'],
2099
+ standalone: false
1763
2100
  }]
1764
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2101
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1765
2102
  let TetTextList = class TetTextList {
1766
2103
  constructor(c, r, z) {
1767
2104
  this.z = z;
1768
2105
  c.detach();
1769
2106
  this.el = r.nativeElement;
1770
2107
  }
1771
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetTextList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1772
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetTextList, selector: "tet-text-list", inputs: { decimalPrefix: "decimalPrefix", decimalStart: "decimalStart", listIcon: "listIcon", listType: "listType", theme: "theme", withIcon: "withIcon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2108
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetTextList, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
2109
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetTextList, isStandalone: false, selector: "tet-text-list", inputs: { decimalPrefix: "decimalPrefix", decimalStart: "decimalStart", listIcon: "listIcon", listType: "listType", theme: "theme", withIcon: "withIcon" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1773
2110
  };
1774
2111
  TetTextList = __decorate([
1775
2112
  ProxyCmp({
1776
2113
  inputs: ['decimalPrefix', 'decimalStart', 'listIcon', 'listType', 'theme', 'withIcon']
1777
2114
  })
1778
2115
  ], TetTextList);
1779
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetTextList, decorators: [{
2116
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetTextList, decorators: [{
1780
2117
  type: Component,
1781
2118
  args: [{
1782
2119
  selector: 'tet-text-list',
@@ -1784,23 +2121,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1784
2121
  template: '<ng-content></ng-content>',
1785
2122
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1786
2123
  inputs: ['decimalPrefix', 'decimalStart', 'listIcon', 'listType', 'theme', 'withIcon'],
2124
+ standalone: false
1787
2125
  }]
1788
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2126
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1789
2127
  let TetTextarea = class TetTextarea {
1790
2128
  constructor(c, r, z) {
1791
2129
  this.z = z;
1792
2130
  c.detach();
1793
2131
  this.el = r.nativeElement;
1794
2132
  }
1795
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1796
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetTextarea, selector: "tet-textarea", inputs: { disabled: "disabled", errorMessages: "errorMessages", label: "label", placeholder: "placeholder", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2133
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetTextarea, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
2134
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetTextarea, isStandalone: false, selector: "tet-textarea", inputs: { disabled: "disabled", errorMessages: "errorMessages", label: "label", placeholder: "placeholder", theme: "theme", value: "value" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1797
2135
  };
1798
2136
  TetTextarea = __decorate([
1799
2137
  ProxyCmp({
1800
2138
  inputs: ['disabled', 'errorMessages', 'label', 'placeholder', 'theme', 'value']
1801
2139
  })
1802
2140
  ], TetTextarea);
1803
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetTextarea, decorators: [{
2141
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetTextarea, decorators: [{
1804
2142
  type: Component,
1805
2143
  args: [{
1806
2144
  selector: 'tet-textarea',
@@ -1808,24 +2146,25 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1808
2146
  template: '<ng-content></ng-content>',
1809
2147
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1810
2148
  inputs: ['disabled', 'errorMessages', 'label', 'placeholder', 'theme', 'value'],
2149
+ standalone: false
1811
2150
  }]
1812
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2151
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1813
2152
  let TetThankYouView = class TetThankYouView {
1814
2153
  constructor(c, r, z) {
1815
2154
  this.z = z;
2155
+ this.ctaButtonClick = new EventEmitter();
1816
2156
  c.detach();
1817
2157
  this.el = r.nativeElement;
1818
- proxyOutputs(this, this.el, ['ctaButtonClick']);
1819
2158
  }
1820
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetThankYouView, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1821
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetThankYouView, selector: "tet-thank-you-view", inputs: { ctaButtonDescription: "ctaButtonDescription", ctaButtonLabel: "ctaButtonLabel", ctaButtonSize: "ctaButtonSize", ctaButtonType: "ctaButtonType", mainBlockDescription: "mainBlockDescription", mainBlockIcon: "mainBlockIcon", mainBlockTitle: "mainBlockTitle", stepperData: "stepperData", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2159
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetThankYouView, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
2160
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetThankYouView, isStandalone: false, selector: "tet-thank-you-view", inputs: { ctaButtonDescription: "ctaButtonDescription", ctaButtonLabel: "ctaButtonLabel", ctaButtonSize: "ctaButtonSize", ctaButtonType: "ctaButtonType", mainBlockDescription: "mainBlockDescription", mainBlockIcon: "mainBlockIcon", mainBlockTitle: "mainBlockTitle", stepperData: "stepperData", theme: "theme" }, outputs: { ctaButtonClick: "ctaButtonClick" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1822
2161
  };
1823
2162
  TetThankYouView = __decorate([
1824
2163
  ProxyCmp({
1825
2164
  inputs: ['ctaButtonDescription', 'ctaButtonLabel', 'ctaButtonSize', 'ctaButtonType', 'mainBlockDescription', 'mainBlockIcon', 'mainBlockTitle', 'stepperData', 'theme']
1826
2165
  })
1827
2166
  ], TetThankYouView);
1828
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetThankYouView, decorators: [{
2167
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetThankYouView, decorators: [{
1829
2168
  type: Component,
1830
2169
  args: [{
1831
2170
  selector: 'tet-thank-you-view',
@@ -1833,24 +2172,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1833
2172
  template: '<ng-content></ng-content>',
1834
2173
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1835
2174
  inputs: ['ctaButtonDescription', 'ctaButtonLabel', 'ctaButtonSize', 'ctaButtonType', 'mainBlockDescription', 'mainBlockIcon', 'mainBlockTitle', 'stepperData', 'theme'],
2175
+ outputs: ['ctaButtonClick'],
2176
+ standalone: false
1836
2177
  }]
1837
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2178
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ctaButtonClick: [{
2179
+ type: Output
2180
+ }] } });
1838
2181
  let TetThankYouViewV2 = class TetThankYouViewV2 {
1839
2182
  constructor(c, r, z) {
1840
2183
  this.z = z;
2184
+ this.ctaButtonClick = new EventEmitter();
1841
2185
  c.detach();
1842
2186
  this.el = r.nativeElement;
1843
- proxyOutputs(this, this.el, ['ctaButtonClick']);
1844
2187
  }
1845
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetThankYouViewV2, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1846
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetThankYouViewV2, selector: "tet-thank-you-view-v2", inputs: { ctaButtonId: "ctaButtonId", ctaButtonLabel: "ctaButtonLabel", ctaButtonSize: "ctaButtonSize", ctaButtonTheme: "ctaButtonTheme", ctaButtonType: "ctaButtonType", icon: "icon", language: "language", mainBlockDescription: "mainBlockDescription", mainBlockTitle: "mainBlockTitle", stepperData: "stepperData", theme: "theme", translationGroup: "translationGroup" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2188
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetThankYouViewV2, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
2189
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetThankYouViewV2, isStandalone: false, selector: "tet-thank-you-view-v2", inputs: { ctaButtonId: "ctaButtonId", ctaButtonLabel: "ctaButtonLabel", ctaButtonSize: "ctaButtonSize", ctaButtonTheme: "ctaButtonTheme", ctaButtonType: "ctaButtonType", icon: "icon", language: "language", mainBlockDescription: "mainBlockDescription", mainBlockTitle: "mainBlockTitle", stepperData: "stepperData", theme: "theme", translationGroup: "translationGroup" }, outputs: { ctaButtonClick: "ctaButtonClick" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1847
2190
  };
1848
2191
  TetThankYouViewV2 = __decorate([
1849
2192
  ProxyCmp({
1850
2193
  inputs: ['ctaButtonId', 'ctaButtonLabel', 'ctaButtonSize', 'ctaButtonTheme', 'ctaButtonType', 'icon', 'language', 'mainBlockDescription', 'mainBlockTitle', 'stepperData', 'theme', 'translationGroup']
1851
2194
  })
1852
2195
  ], TetThankYouViewV2);
1853
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetThankYouViewV2, decorators: [{
2196
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetThankYouViewV2, decorators: [{
1854
2197
  type: Component,
1855
2198
  args: [{
1856
2199
  selector: 'tet-thank-you-view-v2',
@@ -1858,24 +2201,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1858
2201
  template: '<ng-content></ng-content>',
1859
2202
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1860
2203
  inputs: ['ctaButtonId', 'ctaButtonLabel', 'ctaButtonSize', 'ctaButtonTheme', 'ctaButtonType', 'icon', 'language', 'mainBlockDescription', 'mainBlockTitle', 'stepperData', 'theme', 'translationGroup'],
2204
+ outputs: ['ctaButtonClick'],
2205
+ standalone: false
1861
2206
  }]
1862
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2207
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ctaButtonClick: [{
2208
+ type: Output
2209
+ }] } });
1863
2210
  let TetThankYouViewV3 = class TetThankYouViewV3 {
1864
2211
  constructor(c, r, z) {
1865
2212
  this.z = z;
2213
+ this.ctaButtonClick = new EventEmitter();
1866
2214
  c.detach();
1867
2215
  this.el = r.nativeElement;
1868
- proxyOutputs(this, this.el, ['ctaButtonClick']);
1869
2216
  }
1870
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetThankYouViewV3, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1871
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetThankYouViewV3, selector: "tet-thank-you-view-v3", inputs: { ctaButtonId: "ctaButtonId", ctaButtonLabel: "ctaButtonLabel", ctaButtonSize: "ctaButtonSize", ctaButtonTheme: "ctaButtonTheme", ctaButtonType: "ctaButtonType", icon: "icon", language: "language", mainBlockDescription: "mainBlockDescription", mainBlockTitle: "mainBlockTitle", stepperData: "stepperData", theme: "theme", translationGroup: "translationGroup" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2217
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetThankYouViewV3, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
2218
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetThankYouViewV3, isStandalone: false, selector: "tet-thank-you-view-v3", inputs: { ctaButtonId: "ctaButtonId", ctaButtonLabel: "ctaButtonLabel", ctaButtonSize: "ctaButtonSize", ctaButtonTheme: "ctaButtonTheme", ctaButtonType: "ctaButtonType", icon: "icon", language: "language", mainBlockDescription: "mainBlockDescription", mainBlockTitle: "mainBlockTitle", stepperData: "stepperData", theme: "theme", translationGroup: "translationGroup" }, outputs: { ctaButtonClick: "ctaButtonClick" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1872
2219
  };
1873
2220
  TetThankYouViewV3 = __decorate([
1874
2221
  ProxyCmp({
1875
2222
  inputs: ['ctaButtonId', 'ctaButtonLabel', 'ctaButtonSize', 'ctaButtonTheme', 'ctaButtonType', 'icon', 'language', 'mainBlockDescription', 'mainBlockTitle', 'stepperData', 'theme', 'translationGroup']
1876
2223
  })
1877
2224
  ], TetThankYouViewV3);
1878
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetThankYouViewV3, decorators: [{
2225
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetThankYouViewV3, decorators: [{
1879
2226
  type: Component,
1880
2227
  args: [{
1881
2228
  selector: 'tet-thank-you-view-v3',
@@ -1883,16 +2230,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1883
2230
  template: '<ng-content></ng-content>',
1884
2231
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1885
2232
  inputs: ['ctaButtonId', 'ctaButtonLabel', 'ctaButtonSize', 'ctaButtonTheme', 'ctaButtonType', 'icon', 'language', 'mainBlockDescription', 'mainBlockTitle', 'stepperData', 'theme', 'translationGroup'],
2233
+ outputs: ['ctaButtonClick'],
2234
+ standalone: false
1886
2235
  }]
1887
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2236
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { ctaButtonClick: [{
2237
+ type: Output
2238
+ }] } });
1888
2239
  let TetTooltip = class TetTooltip {
1889
2240
  constructor(c, r, z) {
1890
2241
  this.z = z;
1891
2242
  c.detach();
1892
2243
  this.el = r.nativeElement;
1893
2244
  }
1894
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
1895
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.9", type: TetTooltip, selector: "tet-tooltip", inputs: { doNotShowOnHover: "doNotShowOnHover", hoverElement: "hoverElement", position: "position", targetElementSelector: "targetElementSelector", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2245
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetTooltip, deps: [{ token: i0.ChangeDetectorRef }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
2246
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.16", type: TetTooltip, isStandalone: false, selector: "tet-tooltip", inputs: { doNotShowOnHover: "doNotShowOnHover", hoverElement: "hoverElement", position: "position", targetElementSelector: "targetElementSelector", theme: "theme" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
1896
2247
  };
1897
2248
  TetTooltip = __decorate([
1898
2249
  ProxyCmp({
@@ -1900,7 +2251,7 @@ TetTooltip = __decorate([
1900
2251
  methods: ['show', 'hide', 'toggle']
1901
2252
  })
1902
2253
  ], TetTooltip);
1903
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetTooltip, decorators: [{
2254
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetTooltip, decorators: [{
1904
2255
  type: Component,
1905
2256
  args: [{
1906
2257
  selector: 'tet-tooltip',
@@ -1908,8 +2259,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
1908
2259
  template: '<ng-content></ng-content>',
1909
2260
  // eslint-disable-next-line @angular-eslint/no-inputs-metadata-property
1910
2261
  inputs: ['doNotShowOnHover', 'hoverElement', 'position', 'targetElementSelector', 'theme'],
2262
+ standalone: false
1911
2263
  }]
1912
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
2264
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }, { type: i0.ElementRef }, { type: i0.NgZone }] });
1913
2265
 
1914
2266
  const DIRECTIVES = [
1915
2267
  TetAccordion,
@@ -1955,6 +2307,7 @@ const DIRECTIVES = [
1955
2307
  TetInlineMessage,
1956
2308
  TetInput,
1957
2309
  TetLabel,
2310
+ TetLinkCardList,
1958
2311
  TetLoader,
1959
2312
  TetMenu,
1960
2313
  TetMenuMobile,
@@ -1993,19 +2346,18 @@ class TetComponentsAngularModule {
1993
2346
  return {
1994
2347
  ngModule: TetComponentsAngularModule,
1995
2348
  providers: [
1996
- {
1997
- provide: APP_INITIALIZER,
1998
- useFactory: () => () => defineCustomElements(window, { resourcesUrl }),
1999
- multi: true
2000
- }
2349
+ provideAppInitializer(() => {
2350
+ const initializerFn = (() => () => defineCustomElements(window, { resourcesUrl }))();
2351
+ return initializerFn();
2352
+ })
2001
2353
  ]
2002
2354
  };
2003
2355
  }
2004
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetComponentsAngularModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2005
- static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.9", ngImport: i0, type: TetComponentsAngularModule, declarations: [TetAccordion, TetAddressOffersFiltersProducts, TetAddressSearch, TetAssetAddresses, TetAssetAvailabilityAddresses, TetAutocomplete, TetAutocompleteDropdown, TetAvailabilityContactForm, TetB2bCheckOutForm, TetB2bCompareCard, TetB2bConfigurator, TetB2bConfiguratorCart, TetBannerNav, TetBarGraph, TetBusinessLines, TetBusinessNavigation, TetBusinessRoundStepper, TetBusinessSummaryCard, TetButton, TetCarousel, TetCheckbox, TetCloudApplicationFormDialog, TetCloudConfigurator, TetCompareCardV2, TetContactForm, TetContactInfo, TetContainer, TetCustomerAssets, TetDatepicker, TetDatepickerHeader, TetDatepickerMonthView, TetDatepickerMultiYearView, TetDatepickerYearView, TetDialog, TetDropdown, TetDynamicCard, TetExpandableInput, TetExpansionPanel, TetFilter, TetIcon, TetInlineMessage, TetInput, TetLabel, TetLoader, TetMenu, TetMenuMobile, TetMultiStepDialog, TetNavigationMobile, TetNotification, TetNumberInput, TetPlaceholder, TetPriceView, TetRadio, TetRangeSlider, TetReferral, TetRoundStepper, TetSelectionList, TetSpinner, TetStepper, TetStepperInput, TetStepperV2, TetStepperV3, TetSwitch, TetTabContent, TetTabHeader, TetTable, TetTag, TetTagGroup, TetTextList, TetTextarea, TetThankYouView, TetThankYouViewV2, TetThankYouViewV3, TetTooltip], exports: [TetAccordion, TetAddressOffersFiltersProducts, TetAddressSearch, TetAssetAddresses, TetAssetAvailabilityAddresses, TetAutocomplete, TetAutocompleteDropdown, TetAvailabilityContactForm, TetB2bCheckOutForm, TetB2bCompareCard, TetB2bConfigurator, TetB2bConfiguratorCart, TetBannerNav, TetBarGraph, TetBusinessLines, TetBusinessNavigation, TetBusinessRoundStepper, TetBusinessSummaryCard, TetButton, TetCarousel, TetCheckbox, TetCloudApplicationFormDialog, TetCloudConfigurator, TetCompareCardV2, TetContactForm, TetContactInfo, TetContainer, TetCustomerAssets, TetDatepicker, TetDatepickerHeader, TetDatepickerMonthView, TetDatepickerMultiYearView, TetDatepickerYearView, TetDialog, TetDropdown, TetDynamicCard, TetExpandableInput, TetExpansionPanel, TetFilter, TetIcon, TetInlineMessage, TetInput, TetLabel, TetLoader, TetMenu, TetMenuMobile, TetMultiStepDialog, TetNavigationMobile, TetNotification, TetNumberInput, TetPlaceholder, TetPriceView, TetRadio, TetRangeSlider, TetReferral, TetRoundStepper, TetSelectionList, TetSpinner, TetStepper, TetStepperInput, TetStepperV2, TetStepperV3, TetSwitch, TetTabContent, TetTabHeader, TetTable, TetTag, TetTagGroup, TetTextList, TetTextarea, TetThankYouView, TetThankYouViewV2, TetThankYouViewV3, TetTooltip] }); }
2006
- static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetComponentsAngularModule }); }
2356
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetComponentsAngularModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
2357
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "20.3.16", ngImport: i0, type: TetComponentsAngularModule, declarations: [TetAccordion, TetAddressOffersFiltersProducts, TetAddressSearch, TetAssetAddresses, TetAssetAvailabilityAddresses, TetAutocomplete, TetAutocompleteDropdown, TetAvailabilityContactForm, TetB2bCheckOutForm, TetB2bCompareCard, TetB2bConfigurator, TetB2bConfiguratorCart, TetBannerNav, TetBarGraph, TetBusinessLines, TetBusinessNavigation, TetBusinessRoundStepper, TetBusinessSummaryCard, TetButton, TetCarousel, TetCheckbox, TetCloudApplicationFormDialog, TetCloudConfigurator, TetCompareCardV2, TetContactForm, TetContactInfo, TetContainer, TetCustomerAssets, TetDatepicker, TetDatepickerHeader, TetDatepickerMonthView, TetDatepickerMultiYearView, TetDatepickerYearView, TetDialog, TetDropdown, TetDynamicCard, TetExpandableInput, TetExpansionPanel, TetFilter, TetIcon, TetInlineMessage, TetInput, TetLabel, TetLinkCardList, TetLoader, TetMenu, TetMenuMobile, TetMultiStepDialog, TetNavigationMobile, TetNotification, TetNumberInput, TetPlaceholder, TetPriceView, TetRadio, TetRangeSlider, TetReferral, TetRoundStepper, TetSelectionList, TetSpinner, TetStepper, TetStepperInput, TetStepperV2, TetStepperV3, TetSwitch, TetTabContent, TetTabHeader, TetTable, TetTag, TetTagGroup, TetTextList, TetTextarea, TetThankYouView, TetThankYouViewV2, TetThankYouViewV3, TetTooltip], exports: [TetAccordion, TetAddressOffersFiltersProducts, TetAddressSearch, TetAssetAddresses, TetAssetAvailabilityAddresses, TetAutocomplete, TetAutocompleteDropdown, TetAvailabilityContactForm, TetB2bCheckOutForm, TetB2bCompareCard, TetB2bConfigurator, TetB2bConfiguratorCart, TetBannerNav, TetBarGraph, TetBusinessLines, TetBusinessNavigation, TetBusinessRoundStepper, TetBusinessSummaryCard, TetButton, TetCarousel, TetCheckbox, TetCloudApplicationFormDialog, TetCloudConfigurator, TetCompareCardV2, TetContactForm, TetContactInfo, TetContainer, TetCustomerAssets, TetDatepicker, TetDatepickerHeader, TetDatepickerMonthView, TetDatepickerMultiYearView, TetDatepickerYearView, TetDialog, TetDropdown, TetDynamicCard, TetExpandableInput, TetExpansionPanel, TetFilter, TetIcon, TetInlineMessage, TetInput, TetLabel, TetLinkCardList, TetLoader, TetMenu, TetMenuMobile, TetMultiStepDialog, TetNavigationMobile, TetNotification, TetNumberInput, TetPlaceholder, TetPriceView, TetRadio, TetRangeSlider, TetReferral, TetRoundStepper, TetSelectionList, TetSpinner, TetStepper, TetStepperInput, TetStepperV2, TetStepperV3, TetSwitch, TetTabContent, TetTabHeader, TetTable, TetTag, TetTagGroup, TetTextList, TetTextarea, TetThankYouView, TetThankYouViewV2, TetThankYouViewV3, TetTooltip] }); }
2358
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetComponentsAngularModule }); }
2007
2359
  }
2008
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImport: i0, type: TetComponentsAngularModule, decorators: [{
2360
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.16", ngImport: i0, type: TetComponentsAngularModule, decorators: [{
2009
2361
  type: NgModule,
2010
2362
  args: [{
2011
2363
  declarations: [...DIRECTIVES],
@@ -2019,5 +2371,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.9", ngImpor
2019
2371
  * Generated bundle index. Do not edit.
2020
2372
  */
2021
2373
 
2022
- export { DIRECTIVES, TetAccordion, TetAddressOffersFiltersProducts, TetAddressSearch, TetAssetAddresses, TetAssetAvailabilityAddresses, TetAutocomplete, TetAutocompleteDropdown, TetAvailabilityContactForm, TetB2bCheckOutForm, TetB2bCompareCard, TetB2bConfigurator, TetB2bConfiguratorCart, TetBannerNav, TetBarGraph, TetBusinessLines, TetBusinessNavigation, TetBusinessRoundStepper, TetBusinessSummaryCard, TetButton, TetCarousel, TetCheckbox, TetCloudApplicationFormDialog, TetCloudConfigurator, TetCompareCardV2, TetComponentsAngularModule, TetContactForm, TetContactInfo, TetContainer, TetCustomerAssets, TetDatepicker, TetDatepickerHeader, TetDatepickerMonthView, TetDatepickerMultiYearView, TetDatepickerYearView, TetDialog, TetDropdown, TetDynamicCard, TetExpandableInput, TetExpansionPanel, TetFilter, TetIcon, TetInlineMessage, TetInput, TetLabel, TetLoader, TetMenu, TetMenuMobile, TetMultiStepDialog, TetNavigationMobile, TetNotification, TetNumberInput, TetPlaceholder, TetPriceView, TetRadio, TetRangeSlider, TetReferral, TetRoundStepper, TetSelectionList, TetSpinner, TetStepper, TetStepperInput, TetStepperV2, TetStepperV3, TetSwitch, TetTabContent, TetTabHeader, TetTable, TetTag, TetTagGroup, TetTextList, TetTextarea, TetThankYouView, TetThankYouViewV2, TetThankYouViewV3, TetTooltip };
2374
+ export { DIRECTIVES, TetAccordion, TetAddressOffersFiltersProducts, TetAddressSearch, TetAssetAddresses, TetAssetAvailabilityAddresses, TetAutocomplete, TetAutocompleteDropdown, TetAvailabilityContactForm, TetB2bCheckOutForm, TetB2bCompareCard, TetB2bConfigurator, TetB2bConfiguratorCart, TetBannerNav, TetBarGraph, TetBusinessLines, TetBusinessNavigation, TetBusinessRoundStepper, TetBusinessSummaryCard, TetButton, TetCarousel, TetCheckbox, TetCloudApplicationFormDialog, TetCloudConfigurator, TetCompareCardV2, TetComponentsAngularModule, TetContactForm, TetContactInfo, TetContainer, TetCustomerAssets, TetDatepicker, TetDatepickerHeader, TetDatepickerMonthView, TetDatepickerMultiYearView, TetDatepickerYearView, TetDialog, TetDropdown, TetDynamicCard, TetExpandableInput, TetExpansionPanel, TetFilter, TetIcon, TetInlineMessage, TetInput, TetLabel, TetLinkCardList, TetLoader, TetMenu, TetMenuMobile, TetMultiStepDialog, TetNavigationMobile, TetNotification, TetNumberInput, TetPlaceholder, TetPriceView, TetRadio, TetRangeSlider, TetReferral, TetRoundStepper, TetSelectionList, TetSpinner, TetStepper, TetStepperInput, TetStepperV2, TetStepperV3, TetSwitch, TetTabContent, TetTabHeader, TetTable, TetTag, TetTagGroup, TetTextList, TetTextarea, TetThankYouView, TetThankYouViewV2, TetThankYouViewV3, TetTooltip };
2023
2375
  //# sourceMappingURL=tet-tet-components-angular.mjs.map