@tet/tet-components 1.3.98-staging → 1.3.99-staging

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.
@@ -12,6 +12,12 @@ const TetCarousel = class {
12
12
  index.registerInstance(this, hostRef);
13
13
  this.draggedAnchor = null;
14
14
  this.dragMoved = false;
15
+ this.clickPreventAdded = false;
16
+ this.dragPointerStartX = 0;
17
+ this.preventClickOnDocument = (ev) => {
18
+ ev.preventDefault();
19
+ ev.stopPropagation();
20
+ };
15
21
  this.trackElement = null;
16
22
  this.dragStartX = 0;
17
23
  this.swipeStart = 0;
@@ -48,6 +54,8 @@ const TetCarousel = class {
48
54
  this.isDragging = true;
49
55
  this.dragStartX = e.screenX;
50
56
  this.dragMoved = false;
57
+ this.clickPreventAdded = false;
58
+ this.dragPointerStartX = e.screenX;
51
59
  this.swipeStart = this.dragOffset;
52
60
  document.body.style.userSelect = 'none';
53
61
  document.addEventListener('pointermove', this.onPointerMove);
@@ -66,7 +74,16 @@ const TetCarousel = class {
66
74
  var _a, _b, _c;
67
75
  if (!this.isDragging)
68
76
  return;
69
- this.dragMoved = true;
77
+ // Only consider this a move (and prevent clicks) when movement exceeds a small threshold.
78
+ const moveDistanceFromStart = Math.abs(e.screenX - this.dragPointerStartX);
79
+ if (!this.dragMoved && moveDistanceFromStart > 5) {
80
+ this.dragMoved = true;
81
+ if (!this.clickPreventAdded) {
82
+ // Add a capture-phase click listener that runs once to block the next click
83
+ document.addEventListener('click', this.preventClickOnDocument, { capture: true, once: true });
84
+ this.clickPreventAdded = true;
85
+ }
86
+ }
70
87
  const delta = e.screenX - this.dragStartX;
71
88
  let _dragOffset = this.dragOffset;
72
89
  _dragOffset += delta;
@@ -87,6 +104,12 @@ const TetCarousel = class {
87
104
  return;
88
105
  // Snap activeIndex when dragOffset passes threshold from last index position
89
106
  this.isDragging = false;
107
+ // Let the once:true capture handler auto-remove itself. Clear flag after a tick.
108
+ if (this.clickPreventAdded) {
109
+ setTimeout(() => {
110
+ this.clickPreventAdded = false;
111
+ }, 0);
112
+ }
90
113
  if (Math.abs(this.dragOffset - this.swipeStart) > this.swipeThreshold) {
91
114
  const indexOffsett = this.dragOffset < this.swipeStart ? 1 : -1;
92
115
  let index = this.activeIndex + indexOffsett;
@@ -100,9 +123,6 @@ const TetCarousel = class {
100
123
  }
101
124
  this.dragOffset = -(index * window.innerWidth);
102
125
  }
103
- else {
104
- this.dragOffset = -(this.activeIndex * window.innerWidth);
105
- }
106
126
  document.body.style.userSelect = '';
107
127
  document.removeEventListener('pointermove', this.onPointerMove);
108
128
  document.removeEventListener('pointerup', this.onPointerUp);
@@ -176,13 +196,17 @@ const TetCarousel = class {
176
196
  });
177
197
  anchors.forEach((a) => {
178
198
  a.addEventListener('focus', () => {
199
+ var _a, _b;
179
200
  const screenWidth = window.innerWidth;
180
201
  const rect = a.getBoundingClientRect();
181
202
  const trackRect = this.trackElement.getBoundingClientRect();
182
203
  let relativeLeft = rect.left - trackRect.left;
183
204
  const screenIdx = Math.floor(relativeLeft / screenWidth);
184
205
  this.activeIndex = Math.max(0, Math.min(screenIdx, this.screenCount - 1));
185
- this.dragOffset = -relativeLeft;
206
+ const totalWidth = ((_b = (_a = this.trackElement) === null || _a === void 0 ? void 0 : _a.querySelector('slot')) === null || _b === void 0 ? void 0 : _b.offsetWidth) || window.innerWidth;
207
+ if (totalWidth > screenWidth + relativeLeft) {
208
+ this.dragOffset = -relativeLeft;
209
+ }
186
210
  this.checkForLastScreen();
187
211
  });
188
212
  });
@@ -191,10 +215,10 @@ const TetCarousel = class {
191
215
  window.removeEventListener('resize', this.getScreenCount.bind(this));
192
216
  }
193
217
  render() {
194
- return (index.h(index.Host, { key: '9d5d17eb8407d5cf85f7d1da1ba976e099e0ca4a' }, index.h("div", { key: 'db301001e7a4e27f5bf2240d58ffca110b85bf23', class: { 'tet-carousel': true, [`${this.theme}`]: true }, ref: (el) => (this.container = el), part: "carousel" }, index.h("div", { key: '0771fc98d2118bea3c8a6c2bc3735bbaddbd4f00', class: "tet-carousel__container" }, index.h("div", { key: 'b2d6159c82a2dc92e75b553003d167eb5704fa77', class: "tet-carousel__track", ref: (el) => (this.trackElement = el), style: {
218
+ return (index.h(index.Host, { key: 'b9be9a9be46b553e914f8da303b5c3a5b84ed4a1' }, index.h("div", { key: '641e19a2e2639ced9b0f09bd54038b980803acea', class: { 'tet-carousel': true, [`${this.theme}`]: true }, ref: (el) => (this.container = el), part: "carousel" }, index.h("div", { key: '4ca0fbf3faa1adbc47618b44ad09a02570515158', class: "tet-carousel__container" }, index.h("div", { key: '4cc09e10479a99856584c0c4a0237785159f6a5f', class: "tet-carousel__track", ref: (el) => (this.trackElement = el), style: {
195
219
  transform: `translateX(${this.dragOffset}px)`,
196
220
  transition: this.isDragging ? 'none' : `transform ${this.transitionDuration}ms ${this.transitionTiming}`
197
- }, onPointerDown: this.onPointerDown, onMouseMove: this.onPointerMove, onPointerUp: this.onPointerUp, onMouseLeave: this.onPointerUp }, index.h("slot", { key: '5a694914d92cdc1240ebcd5695dc96bfd984f3f7' }))), index.h("div", { key: 'ecbabb88d417d7b988e621c7b58b622b6ebf39be', class: "tet-carousel__controls" }, this.showButtons && (index.h("div", { key: '999f31dec00863712eb22b84ed1851a382840e9d', class: "tet-carousel__buttons tet-carousel__buttons--mobile" }, index.h("tet-button", { key: '703ea759681f0deddceeae3d1a6cf2e02601c5ae', class: "tet-carousel__btn", theme: this.theme === 'light' ? 'dark' : 'light', "icon-name": this.buttonIconLeft, "icon-mode": true, onClick: this.handlePrev, "aria-label": "Previous", disabled: this.screenCount <= 1 || this.activeIndex === 0 }))), this.showDots && (index.h("div", { key: 'b47562c9a32e2c473f3877b2d5ef96e6aba5b94d', class: "tet-carousel__dots" }, Array.from({ length: this.screenCount }).map((_, idx) => (index.h("span", { class: `tet-carousel__dot${idx === this.activeIndex ? ' active' : ''}`, key: idx, onClick: () => this.handleDotClick(idx) }))))), this.showButtons && (index.h("div", { key: '7e42421d3e72ec427606f5ff0230ac43ceb87d24', class: "tet-carousel__buttons " }, index.h("tet-button", { key: '63d3de05405317d08b8ad0109a4b25f218ddcd33', class: "tet-carousel__buttons--desktop tet-carousel__btn ", theme: this.theme === 'light' ? 'dark' : 'light', "icon-name": this.buttonIconLeft, "icon-mode": true, onClick: this.handlePrev, "aria-label": "Previous", disabled: this.screenCount <= 1 || this.activeIndex === 0 }), index.h("tet-button", { key: '35807ee3df9f6c786a6b213b9b70097c12aba8fe', class: "tet-carousel__btn", theme: this.theme === 'light' ? 'dark' : 'light', "icon-name": this.buttonIconRight, "icon-mode": true, onClick: this.handleNext, "aria-label": "Next", disabled: this.screenCount <= 1 || this.activeIndex === this.screenCount - 1 })))))));
221
+ }, onPointerDown: this.onPointerDown, onMouseMove: this.onPointerMove, onPointerUp: this.onPointerUp, onMouseLeave: this.onPointerUp }, index.h("slot", { key: '6f7bcdc544e744a8c8622767e0177a3fcd7518fa' }))), index.h("div", { key: '8d7e212c2f09d64f6fa7fd2dfcb6e258e99b08e3', class: "tet-carousel__controls" }, this.showButtons && (index.h("div", { key: '241a2d941400913fbd0b9a14ad489fb7abc65383', class: "tet-carousel__buttons tet-carousel__buttons--mobile" }, index.h("tet-button", { key: 'c895194e59231388f609d44644426b24820072a0', class: "tet-carousel__btn", theme: this.theme === 'light' ? 'dark' : 'light', "icon-name": this.buttonIconLeft, "icon-mode": true, onClick: this.handlePrev, "aria-label": "Previous", disabled: this.screenCount <= 1 || this.activeIndex === 0 }))), this.showDots && (index.h("div", { key: 'a1f8a2bf24d8e4fff9cfeb23f22ea9fa445a6daf', class: "tet-carousel__dots" }, Array.from({ length: this.screenCount }).map((_, idx) => (index.h("span", { class: `tet-carousel__dot${idx === this.activeIndex ? ' active' : ''}`, key: idx, onClick: () => this.handleDotClick(idx) }))))), this.showButtons && (index.h("div", { key: '2acb82a55cc79b06f5820e601cf8782108f2f76a', class: "tet-carousel__buttons " }, index.h("tet-button", { key: '066207aa4478e2cfb243be2b8c6736075901bfaa', class: "tet-carousel__buttons--desktop tet-carousel__btn ", theme: this.theme === 'light' ? 'dark' : 'light', "icon-name": this.buttonIconLeft, "icon-mode": true, onClick: this.handlePrev, "aria-label": "Previous", disabled: this.screenCount <= 1 || this.activeIndex === 0 }), index.h("tet-button", { key: '9b0441b1e9bfa204480133814bc16c359de907ea', class: "tet-carousel__btn", theme: this.theme === 'light' ? 'dark' : 'light', "icon-name": this.buttonIconRight, "icon-mode": true, onClick: this.handleNext, "aria-label": "Next", disabled: this.screenCount <= 1 || this.activeIndex === this.screenCount - 1 })))))));
198
222
  }
199
223
  };
200
224
  TetCarousel.style = TetCarouselStyle0;
@@ -3,6 +3,12 @@ export class TetCarousel {
3
3
  constructor() {
4
4
  this.draggedAnchor = null;
5
5
  this.dragMoved = false;
6
+ this.clickPreventAdded = false;
7
+ this.dragPointerStartX = 0;
8
+ this.preventClickOnDocument = (ev) => {
9
+ ev.preventDefault();
10
+ ev.stopPropagation();
11
+ };
6
12
  this.trackElement = null;
7
13
  this.dragStartX = 0;
8
14
  this.swipeStart = 0;
@@ -39,6 +45,8 @@ export class TetCarousel {
39
45
  this.isDragging = true;
40
46
  this.dragStartX = e.screenX;
41
47
  this.dragMoved = false;
48
+ this.clickPreventAdded = false;
49
+ this.dragPointerStartX = e.screenX;
42
50
  this.swipeStart = this.dragOffset;
43
51
  document.body.style.userSelect = 'none';
44
52
  document.addEventListener('pointermove', this.onPointerMove);
@@ -57,7 +65,16 @@ export class TetCarousel {
57
65
  var _a, _b, _c;
58
66
  if (!this.isDragging)
59
67
  return;
60
- this.dragMoved = true;
68
+ // Only consider this a move (and prevent clicks) when movement exceeds a small threshold.
69
+ const moveDistanceFromStart = Math.abs(e.screenX - this.dragPointerStartX);
70
+ if (!this.dragMoved && moveDistanceFromStart > 5) {
71
+ this.dragMoved = true;
72
+ if (!this.clickPreventAdded) {
73
+ // Add a capture-phase click listener that runs once to block the next click
74
+ document.addEventListener('click', this.preventClickOnDocument, { capture: true, once: true });
75
+ this.clickPreventAdded = true;
76
+ }
77
+ }
61
78
  const delta = e.screenX - this.dragStartX;
62
79
  let _dragOffset = this.dragOffset;
63
80
  _dragOffset += delta;
@@ -78,6 +95,12 @@ export class TetCarousel {
78
95
  return;
79
96
  // Snap activeIndex when dragOffset passes threshold from last index position
80
97
  this.isDragging = false;
98
+ // Let the once:true capture handler auto-remove itself. Clear flag after a tick.
99
+ if (this.clickPreventAdded) {
100
+ setTimeout(() => {
101
+ this.clickPreventAdded = false;
102
+ }, 0);
103
+ }
81
104
  if (Math.abs(this.dragOffset - this.swipeStart) > this.swipeThreshold) {
82
105
  const indexOffsett = this.dragOffset < this.swipeStart ? 1 : -1;
83
106
  let index = this.activeIndex + indexOffsett;
@@ -91,9 +114,6 @@ export class TetCarousel {
91
114
  }
92
115
  this.dragOffset = -(index * window.innerWidth);
93
116
  }
94
- else {
95
- this.dragOffset = -(this.activeIndex * window.innerWidth);
96
- }
97
117
  document.body.style.userSelect = '';
98
118
  document.removeEventListener('pointermove', this.onPointerMove);
99
119
  document.removeEventListener('pointerup', this.onPointerUp);
@@ -167,6 +187,7 @@ export class TetCarousel {
167
187
  });
168
188
  anchors.forEach((a) => {
169
189
  a.addEventListener('focus', () => {
190
+ var _a, _b;
170
191
  const screenWidth = window.innerWidth;
171
192
  const rect = a.getBoundingClientRect();
172
193
  const trackRect = this.trackElement.getBoundingClientRect();
@@ -176,7 +197,10 @@ export class TetCarousel {
176
197
  index = Math.max(0, Math.min(index, this.screenCount - 1));
177
198
  const screenIdx = Math.floor(relativeLeft / screenWidth);
178
199
  this.activeIndex = Math.max(0, Math.min(screenIdx, this.screenCount - 1));
179
- this.dragOffset = -relativeLeft;
200
+ const totalWidth = ((_b = (_a = this.trackElement) === null || _a === void 0 ? void 0 : _a.querySelector('slot')) === null || _b === void 0 ? void 0 : _b.offsetWidth) || window.innerWidth;
201
+ if (totalWidth > screenWidth + relativeLeft) {
202
+ this.dragOffset = -relativeLeft;
203
+ }
180
204
  this.checkForLastScreen();
181
205
  });
182
206
  });
@@ -185,10 +209,10 @@ export class TetCarousel {
185
209
  window.removeEventListener('resize', this.getScreenCount.bind(this));
186
210
  }
187
211
  render() {
188
- return (h(Host, { key: '9d5d17eb8407d5cf85f7d1da1ba976e099e0ca4a' }, h("div", { key: 'db301001e7a4e27f5bf2240d58ffca110b85bf23', class: { 'tet-carousel': true, [`${this.theme}`]: true }, ref: (el) => (this.container = el), part: "carousel" }, h("div", { key: '0771fc98d2118bea3c8a6c2bc3735bbaddbd4f00', class: "tet-carousel__container" }, h("div", { key: 'b2d6159c82a2dc92e75b553003d167eb5704fa77', class: "tet-carousel__track", ref: (el) => (this.trackElement = el), style: {
212
+ return (h(Host, { key: 'b9be9a9be46b553e914f8da303b5c3a5b84ed4a1' }, h("div", { key: '641e19a2e2639ced9b0f09bd54038b980803acea', class: { 'tet-carousel': true, [`${this.theme}`]: true }, ref: (el) => (this.container = el), part: "carousel" }, h("div", { key: '4ca0fbf3faa1adbc47618b44ad09a02570515158', class: "tet-carousel__container" }, h("div", { key: '4cc09e10479a99856584c0c4a0237785159f6a5f', class: "tet-carousel__track", ref: (el) => (this.trackElement = el), style: {
189
213
  transform: `translateX(${this.dragOffset}px)`,
190
214
  transition: this.isDragging ? 'none' : `transform ${this.transitionDuration}ms ${this.transitionTiming}`
191
- }, onPointerDown: this.onPointerDown, onMouseMove: this.onPointerMove, onPointerUp: this.onPointerUp, onMouseLeave: this.onPointerUp }, h("slot", { key: '5a694914d92cdc1240ebcd5695dc96bfd984f3f7' }))), h("div", { key: 'ecbabb88d417d7b988e621c7b58b622b6ebf39be', class: "tet-carousel__controls" }, this.showButtons && (h("div", { key: '999f31dec00863712eb22b84ed1851a382840e9d', class: "tet-carousel__buttons tet-carousel__buttons--mobile" }, h("tet-button", { key: '703ea759681f0deddceeae3d1a6cf2e02601c5ae', class: "tet-carousel__btn", theme: this.theme === 'light' ? 'dark' : 'light', "icon-name": this.buttonIconLeft, "icon-mode": true, onClick: this.handlePrev, "aria-label": "Previous", disabled: this.screenCount <= 1 || this.activeIndex === 0 }))), this.showDots && (h("div", { key: 'b47562c9a32e2c473f3877b2d5ef96e6aba5b94d', class: "tet-carousel__dots" }, Array.from({ length: this.screenCount }).map((_, idx) => (h("span", { class: `tet-carousel__dot${idx === this.activeIndex ? ' active' : ''}`, key: idx, onClick: () => this.handleDotClick(idx) }))))), this.showButtons && (h("div", { key: '7e42421d3e72ec427606f5ff0230ac43ceb87d24', class: "tet-carousel__buttons " }, h("tet-button", { key: '63d3de05405317d08b8ad0109a4b25f218ddcd33', class: "tet-carousel__buttons--desktop tet-carousel__btn ", theme: this.theme === 'light' ? 'dark' : 'light', "icon-name": this.buttonIconLeft, "icon-mode": true, onClick: this.handlePrev, "aria-label": "Previous", disabled: this.screenCount <= 1 || this.activeIndex === 0 }), h("tet-button", { key: '35807ee3df9f6c786a6b213b9b70097c12aba8fe', class: "tet-carousel__btn", theme: this.theme === 'light' ? 'dark' : 'light', "icon-name": this.buttonIconRight, "icon-mode": true, onClick: this.handleNext, "aria-label": "Next", disabled: this.screenCount <= 1 || this.activeIndex === this.screenCount - 1 })))))));
215
+ }, onPointerDown: this.onPointerDown, onMouseMove: this.onPointerMove, onPointerUp: this.onPointerUp, onMouseLeave: this.onPointerUp }, h("slot", { key: '6f7bcdc544e744a8c8622767e0177a3fcd7518fa' }))), h("div", { key: '8d7e212c2f09d64f6fa7fd2dfcb6e258e99b08e3', class: "tet-carousel__controls" }, this.showButtons && (h("div", { key: '241a2d941400913fbd0b9a14ad489fb7abc65383', class: "tet-carousel__buttons tet-carousel__buttons--mobile" }, h("tet-button", { key: 'c895194e59231388f609d44644426b24820072a0', class: "tet-carousel__btn", theme: this.theme === 'light' ? 'dark' : 'light', "icon-name": this.buttonIconLeft, "icon-mode": true, onClick: this.handlePrev, "aria-label": "Previous", disabled: this.screenCount <= 1 || this.activeIndex === 0 }))), this.showDots && (h("div", { key: 'a1f8a2bf24d8e4fff9cfeb23f22ea9fa445a6daf', class: "tet-carousel__dots" }, Array.from({ length: this.screenCount }).map((_, idx) => (h("span", { class: `tet-carousel__dot${idx === this.activeIndex ? ' active' : ''}`, key: idx, onClick: () => this.handleDotClick(idx) }))))), this.showButtons && (h("div", { key: '2acb82a55cc79b06f5820e601cf8782108f2f76a', class: "tet-carousel__buttons " }, h("tet-button", { key: '066207aa4478e2cfb243be2b8c6736075901bfaa', class: "tet-carousel__buttons--desktop tet-carousel__btn ", theme: this.theme === 'light' ? 'dark' : 'light', "icon-name": this.buttonIconLeft, "icon-mode": true, onClick: this.handlePrev, "aria-label": "Previous", disabled: this.screenCount <= 1 || this.activeIndex === 0 }), h("tet-button", { key: '9b0441b1e9bfa204480133814bc16c359de907ea', class: "tet-carousel__btn", theme: this.theme === 'light' ? 'dark' : 'light', "icon-name": this.buttonIconRight, "icon-mode": true, onClick: this.handleNext, "aria-label": "Next", disabled: this.screenCount <= 1 || this.activeIndex === this.screenCount - 1 })))))));
192
216
  }
193
217
  static get is() { return "tet-carousel"; }
194
218
  static get encapsulation() { return "shadow"; }
@@ -12,6 +12,12 @@ const TetCarousel$1 = /*@__PURE__*/ proxyCustomElement(class TetCarousel extends
12
12
  this.__attachShadow();
13
13
  this.draggedAnchor = null;
14
14
  this.dragMoved = false;
15
+ this.clickPreventAdded = false;
16
+ this.dragPointerStartX = 0;
17
+ this.preventClickOnDocument = (ev) => {
18
+ ev.preventDefault();
19
+ ev.stopPropagation();
20
+ };
15
21
  this.trackElement = null;
16
22
  this.dragStartX = 0;
17
23
  this.swipeStart = 0;
@@ -48,6 +54,8 @@ const TetCarousel$1 = /*@__PURE__*/ proxyCustomElement(class TetCarousel extends
48
54
  this.isDragging = true;
49
55
  this.dragStartX = e.screenX;
50
56
  this.dragMoved = false;
57
+ this.clickPreventAdded = false;
58
+ this.dragPointerStartX = e.screenX;
51
59
  this.swipeStart = this.dragOffset;
52
60
  document.body.style.userSelect = 'none';
53
61
  document.addEventListener('pointermove', this.onPointerMove);
@@ -66,7 +74,16 @@ const TetCarousel$1 = /*@__PURE__*/ proxyCustomElement(class TetCarousel extends
66
74
  var _a, _b, _c;
67
75
  if (!this.isDragging)
68
76
  return;
69
- this.dragMoved = true;
77
+ // Only consider this a move (and prevent clicks) when movement exceeds a small threshold.
78
+ const moveDistanceFromStart = Math.abs(e.screenX - this.dragPointerStartX);
79
+ if (!this.dragMoved && moveDistanceFromStart > 5) {
80
+ this.dragMoved = true;
81
+ if (!this.clickPreventAdded) {
82
+ // Add a capture-phase click listener that runs once to block the next click
83
+ document.addEventListener('click', this.preventClickOnDocument, { capture: true, once: true });
84
+ this.clickPreventAdded = true;
85
+ }
86
+ }
70
87
  const delta = e.screenX - this.dragStartX;
71
88
  let _dragOffset = this.dragOffset;
72
89
  _dragOffset += delta;
@@ -87,6 +104,12 @@ const TetCarousel$1 = /*@__PURE__*/ proxyCustomElement(class TetCarousel extends
87
104
  return;
88
105
  // Snap activeIndex when dragOffset passes threshold from last index position
89
106
  this.isDragging = false;
107
+ // Let the once:true capture handler auto-remove itself. Clear flag after a tick.
108
+ if (this.clickPreventAdded) {
109
+ setTimeout(() => {
110
+ this.clickPreventAdded = false;
111
+ }, 0);
112
+ }
90
113
  if (Math.abs(this.dragOffset - this.swipeStart) > this.swipeThreshold) {
91
114
  const indexOffsett = this.dragOffset < this.swipeStart ? 1 : -1;
92
115
  let index = this.activeIndex + indexOffsett;
@@ -100,9 +123,6 @@ const TetCarousel$1 = /*@__PURE__*/ proxyCustomElement(class TetCarousel extends
100
123
  }
101
124
  this.dragOffset = -(index * window.innerWidth);
102
125
  }
103
- else {
104
- this.dragOffset = -(this.activeIndex * window.innerWidth);
105
- }
106
126
  document.body.style.userSelect = '';
107
127
  document.removeEventListener('pointermove', this.onPointerMove);
108
128
  document.removeEventListener('pointerup', this.onPointerUp);
@@ -176,13 +196,17 @@ const TetCarousel$1 = /*@__PURE__*/ proxyCustomElement(class TetCarousel extends
176
196
  });
177
197
  anchors.forEach((a) => {
178
198
  a.addEventListener('focus', () => {
199
+ var _a, _b;
179
200
  const screenWidth = window.innerWidth;
180
201
  const rect = a.getBoundingClientRect();
181
202
  const trackRect = this.trackElement.getBoundingClientRect();
182
203
  let relativeLeft = rect.left - trackRect.left;
183
204
  const screenIdx = Math.floor(relativeLeft / screenWidth);
184
205
  this.activeIndex = Math.max(0, Math.min(screenIdx, this.screenCount - 1));
185
- this.dragOffset = -relativeLeft;
206
+ const totalWidth = ((_b = (_a = this.trackElement) === null || _a === void 0 ? void 0 : _a.querySelector('slot')) === null || _b === void 0 ? void 0 : _b.offsetWidth) || window.innerWidth;
207
+ if (totalWidth > screenWidth + relativeLeft) {
208
+ this.dragOffset = -relativeLeft;
209
+ }
186
210
  this.checkForLastScreen();
187
211
  });
188
212
  });
@@ -191,10 +215,10 @@ const TetCarousel$1 = /*@__PURE__*/ proxyCustomElement(class TetCarousel extends
191
215
  window.removeEventListener('resize', this.getScreenCount.bind(this));
192
216
  }
193
217
  render() {
194
- return (h(Host, { key: '9d5d17eb8407d5cf85f7d1da1ba976e099e0ca4a' }, h("div", { key: 'db301001e7a4e27f5bf2240d58ffca110b85bf23', class: { 'tet-carousel': true, [`${this.theme}`]: true }, ref: (el) => (this.container = el), part: "carousel" }, h("div", { key: '0771fc98d2118bea3c8a6c2bc3735bbaddbd4f00', class: "tet-carousel__container" }, h("div", { key: 'b2d6159c82a2dc92e75b553003d167eb5704fa77', class: "tet-carousel__track", ref: (el) => (this.trackElement = el), style: {
218
+ return (h(Host, { key: 'b9be9a9be46b553e914f8da303b5c3a5b84ed4a1' }, h("div", { key: '641e19a2e2639ced9b0f09bd54038b980803acea', class: { 'tet-carousel': true, [`${this.theme}`]: true }, ref: (el) => (this.container = el), part: "carousel" }, h("div", { key: '4ca0fbf3faa1adbc47618b44ad09a02570515158', class: "tet-carousel__container" }, h("div", { key: '4cc09e10479a99856584c0c4a0237785159f6a5f', class: "tet-carousel__track", ref: (el) => (this.trackElement = el), style: {
195
219
  transform: `translateX(${this.dragOffset}px)`,
196
220
  transition: this.isDragging ? 'none' : `transform ${this.transitionDuration}ms ${this.transitionTiming}`
197
- }, onPointerDown: this.onPointerDown, onMouseMove: this.onPointerMove, onPointerUp: this.onPointerUp, onMouseLeave: this.onPointerUp }, h("slot", { key: '5a694914d92cdc1240ebcd5695dc96bfd984f3f7' }))), h("div", { key: 'ecbabb88d417d7b988e621c7b58b622b6ebf39be', class: "tet-carousel__controls" }, this.showButtons && (h("div", { key: '999f31dec00863712eb22b84ed1851a382840e9d', class: "tet-carousel__buttons tet-carousel__buttons--mobile" }, h("tet-button", { key: '703ea759681f0deddceeae3d1a6cf2e02601c5ae', class: "tet-carousel__btn", theme: this.theme === 'light' ? 'dark' : 'light', "icon-name": this.buttonIconLeft, "icon-mode": true, onClick: this.handlePrev, "aria-label": "Previous", disabled: this.screenCount <= 1 || this.activeIndex === 0 }))), this.showDots && (h("div", { key: 'b47562c9a32e2c473f3877b2d5ef96e6aba5b94d', class: "tet-carousel__dots" }, Array.from({ length: this.screenCount }).map((_, idx) => (h("span", { class: `tet-carousel__dot${idx === this.activeIndex ? ' active' : ''}`, key: idx, onClick: () => this.handleDotClick(idx) }))))), this.showButtons && (h("div", { key: '7e42421d3e72ec427606f5ff0230ac43ceb87d24', class: "tet-carousel__buttons " }, h("tet-button", { key: '63d3de05405317d08b8ad0109a4b25f218ddcd33', class: "tet-carousel__buttons--desktop tet-carousel__btn ", theme: this.theme === 'light' ? 'dark' : 'light', "icon-name": this.buttonIconLeft, "icon-mode": true, onClick: this.handlePrev, "aria-label": "Previous", disabled: this.screenCount <= 1 || this.activeIndex === 0 }), h("tet-button", { key: '35807ee3df9f6c786a6b213b9b70097c12aba8fe', class: "tet-carousel__btn", theme: this.theme === 'light' ? 'dark' : 'light', "icon-name": this.buttonIconRight, "icon-mode": true, onClick: this.handleNext, "aria-label": "Next", disabled: this.screenCount <= 1 || this.activeIndex === this.screenCount - 1 })))))));
221
+ }, onPointerDown: this.onPointerDown, onMouseMove: this.onPointerMove, onPointerUp: this.onPointerUp, onMouseLeave: this.onPointerUp }, h("slot", { key: '6f7bcdc544e744a8c8622767e0177a3fcd7518fa' }))), h("div", { key: '8d7e212c2f09d64f6fa7fd2dfcb6e258e99b08e3', class: "tet-carousel__controls" }, this.showButtons && (h("div", { key: '241a2d941400913fbd0b9a14ad489fb7abc65383', class: "tet-carousel__buttons tet-carousel__buttons--mobile" }, h("tet-button", { key: 'c895194e59231388f609d44644426b24820072a0', class: "tet-carousel__btn", theme: this.theme === 'light' ? 'dark' : 'light', "icon-name": this.buttonIconLeft, "icon-mode": true, onClick: this.handlePrev, "aria-label": "Previous", disabled: this.screenCount <= 1 || this.activeIndex === 0 }))), this.showDots && (h("div", { key: 'a1f8a2bf24d8e4fff9cfeb23f22ea9fa445a6daf', class: "tet-carousel__dots" }, Array.from({ length: this.screenCount }).map((_, idx) => (h("span", { class: `tet-carousel__dot${idx === this.activeIndex ? ' active' : ''}`, key: idx, onClick: () => this.handleDotClick(idx) }))))), this.showButtons && (h("div", { key: '2acb82a55cc79b06f5820e601cf8782108f2f76a', class: "tet-carousel__buttons " }, h("tet-button", { key: '066207aa4478e2cfb243be2b8c6736075901bfaa', class: "tet-carousel__buttons--desktop tet-carousel__btn ", theme: this.theme === 'light' ? 'dark' : 'light', "icon-name": this.buttonIconLeft, "icon-mode": true, onClick: this.handlePrev, "aria-label": "Previous", disabled: this.screenCount <= 1 || this.activeIndex === 0 }), h("tet-button", { key: '9b0441b1e9bfa204480133814bc16c359de907ea', class: "tet-carousel__btn", theme: this.theme === 'light' ? 'dark' : 'light', "icon-name": this.buttonIconRight, "icon-mode": true, onClick: this.handleNext, "aria-label": "Next", disabled: this.screenCount <= 1 || this.activeIndex === this.screenCount - 1 })))))));
198
222
  }
199
223
  static get style() { return TetCarouselStyle0; }
200
224
  }, [1, "tet-carousel", {
@@ -8,6 +8,12 @@ const TetCarousel = class {
8
8
  registerInstance(this, hostRef);
9
9
  this.draggedAnchor = null;
10
10
  this.dragMoved = false;
11
+ this.clickPreventAdded = false;
12
+ this.dragPointerStartX = 0;
13
+ this.preventClickOnDocument = (ev) => {
14
+ ev.preventDefault();
15
+ ev.stopPropagation();
16
+ };
11
17
  this.trackElement = null;
12
18
  this.dragStartX = 0;
13
19
  this.swipeStart = 0;
@@ -44,6 +50,8 @@ const TetCarousel = class {
44
50
  this.isDragging = true;
45
51
  this.dragStartX = e.screenX;
46
52
  this.dragMoved = false;
53
+ this.clickPreventAdded = false;
54
+ this.dragPointerStartX = e.screenX;
47
55
  this.swipeStart = this.dragOffset;
48
56
  document.body.style.userSelect = 'none';
49
57
  document.addEventListener('pointermove', this.onPointerMove);
@@ -62,7 +70,16 @@ const TetCarousel = class {
62
70
  var _a, _b, _c;
63
71
  if (!this.isDragging)
64
72
  return;
65
- this.dragMoved = true;
73
+ // Only consider this a move (and prevent clicks) when movement exceeds a small threshold.
74
+ const moveDistanceFromStart = Math.abs(e.screenX - this.dragPointerStartX);
75
+ if (!this.dragMoved && moveDistanceFromStart > 5) {
76
+ this.dragMoved = true;
77
+ if (!this.clickPreventAdded) {
78
+ // Add a capture-phase click listener that runs once to block the next click
79
+ document.addEventListener('click', this.preventClickOnDocument, { capture: true, once: true });
80
+ this.clickPreventAdded = true;
81
+ }
82
+ }
66
83
  const delta = e.screenX - this.dragStartX;
67
84
  let _dragOffset = this.dragOffset;
68
85
  _dragOffset += delta;
@@ -83,6 +100,12 @@ const TetCarousel = class {
83
100
  return;
84
101
  // Snap activeIndex when dragOffset passes threshold from last index position
85
102
  this.isDragging = false;
103
+ // Let the once:true capture handler auto-remove itself. Clear flag after a tick.
104
+ if (this.clickPreventAdded) {
105
+ setTimeout(() => {
106
+ this.clickPreventAdded = false;
107
+ }, 0);
108
+ }
86
109
  if (Math.abs(this.dragOffset - this.swipeStart) > this.swipeThreshold) {
87
110
  const indexOffsett = this.dragOffset < this.swipeStart ? 1 : -1;
88
111
  let index = this.activeIndex + indexOffsett;
@@ -96,9 +119,6 @@ const TetCarousel = class {
96
119
  }
97
120
  this.dragOffset = -(index * window.innerWidth);
98
121
  }
99
- else {
100
- this.dragOffset = -(this.activeIndex * window.innerWidth);
101
- }
102
122
  document.body.style.userSelect = '';
103
123
  document.removeEventListener('pointermove', this.onPointerMove);
104
124
  document.removeEventListener('pointerup', this.onPointerUp);
@@ -172,13 +192,17 @@ const TetCarousel = class {
172
192
  });
173
193
  anchors.forEach((a) => {
174
194
  a.addEventListener('focus', () => {
195
+ var _a, _b;
175
196
  const screenWidth = window.innerWidth;
176
197
  const rect = a.getBoundingClientRect();
177
198
  const trackRect = this.trackElement.getBoundingClientRect();
178
199
  let relativeLeft = rect.left - trackRect.left;
179
200
  const screenIdx = Math.floor(relativeLeft / screenWidth);
180
201
  this.activeIndex = Math.max(0, Math.min(screenIdx, this.screenCount - 1));
181
- this.dragOffset = -relativeLeft;
202
+ const totalWidth = ((_b = (_a = this.trackElement) === null || _a === void 0 ? void 0 : _a.querySelector('slot')) === null || _b === void 0 ? void 0 : _b.offsetWidth) || window.innerWidth;
203
+ if (totalWidth > screenWidth + relativeLeft) {
204
+ this.dragOffset = -relativeLeft;
205
+ }
182
206
  this.checkForLastScreen();
183
207
  });
184
208
  });
@@ -187,10 +211,10 @@ const TetCarousel = class {
187
211
  window.removeEventListener('resize', this.getScreenCount.bind(this));
188
212
  }
189
213
  render() {
190
- return (h(Host, { key: '9d5d17eb8407d5cf85f7d1da1ba976e099e0ca4a' }, h("div", { key: 'db301001e7a4e27f5bf2240d58ffca110b85bf23', class: { 'tet-carousel': true, [`${this.theme}`]: true }, ref: (el) => (this.container = el), part: "carousel" }, h("div", { key: '0771fc98d2118bea3c8a6c2bc3735bbaddbd4f00', class: "tet-carousel__container" }, h("div", { key: 'b2d6159c82a2dc92e75b553003d167eb5704fa77', class: "tet-carousel__track", ref: (el) => (this.trackElement = el), style: {
214
+ return (h(Host, { key: 'b9be9a9be46b553e914f8da303b5c3a5b84ed4a1' }, h("div", { key: '641e19a2e2639ced9b0f09bd54038b980803acea', class: { 'tet-carousel': true, [`${this.theme}`]: true }, ref: (el) => (this.container = el), part: "carousel" }, h("div", { key: '4ca0fbf3faa1adbc47618b44ad09a02570515158', class: "tet-carousel__container" }, h("div", { key: '4cc09e10479a99856584c0c4a0237785159f6a5f', class: "tet-carousel__track", ref: (el) => (this.trackElement = el), style: {
191
215
  transform: `translateX(${this.dragOffset}px)`,
192
216
  transition: this.isDragging ? 'none' : `transform ${this.transitionDuration}ms ${this.transitionTiming}`
193
- }, onPointerDown: this.onPointerDown, onMouseMove: this.onPointerMove, onPointerUp: this.onPointerUp, onMouseLeave: this.onPointerUp }, h("slot", { key: '5a694914d92cdc1240ebcd5695dc96bfd984f3f7' }))), h("div", { key: 'ecbabb88d417d7b988e621c7b58b622b6ebf39be', class: "tet-carousel__controls" }, this.showButtons && (h("div", { key: '999f31dec00863712eb22b84ed1851a382840e9d', class: "tet-carousel__buttons tet-carousel__buttons--mobile" }, h("tet-button", { key: '703ea759681f0deddceeae3d1a6cf2e02601c5ae', class: "tet-carousel__btn", theme: this.theme === 'light' ? 'dark' : 'light', "icon-name": this.buttonIconLeft, "icon-mode": true, onClick: this.handlePrev, "aria-label": "Previous", disabled: this.screenCount <= 1 || this.activeIndex === 0 }))), this.showDots && (h("div", { key: 'b47562c9a32e2c473f3877b2d5ef96e6aba5b94d', class: "tet-carousel__dots" }, Array.from({ length: this.screenCount }).map((_, idx) => (h("span", { class: `tet-carousel__dot${idx === this.activeIndex ? ' active' : ''}`, key: idx, onClick: () => this.handleDotClick(idx) }))))), this.showButtons && (h("div", { key: '7e42421d3e72ec427606f5ff0230ac43ceb87d24', class: "tet-carousel__buttons " }, h("tet-button", { key: '63d3de05405317d08b8ad0109a4b25f218ddcd33', class: "tet-carousel__buttons--desktop tet-carousel__btn ", theme: this.theme === 'light' ? 'dark' : 'light', "icon-name": this.buttonIconLeft, "icon-mode": true, onClick: this.handlePrev, "aria-label": "Previous", disabled: this.screenCount <= 1 || this.activeIndex === 0 }), h("tet-button", { key: '35807ee3df9f6c786a6b213b9b70097c12aba8fe', class: "tet-carousel__btn", theme: this.theme === 'light' ? 'dark' : 'light', "icon-name": this.buttonIconRight, "icon-mode": true, onClick: this.handleNext, "aria-label": "Next", disabled: this.screenCount <= 1 || this.activeIndex === this.screenCount - 1 })))))));
217
+ }, onPointerDown: this.onPointerDown, onMouseMove: this.onPointerMove, onPointerUp: this.onPointerUp, onMouseLeave: this.onPointerUp }, h("slot", { key: '6f7bcdc544e744a8c8622767e0177a3fcd7518fa' }))), h("div", { key: '8d7e212c2f09d64f6fa7fd2dfcb6e258e99b08e3', class: "tet-carousel__controls" }, this.showButtons && (h("div", { key: '241a2d941400913fbd0b9a14ad489fb7abc65383', class: "tet-carousel__buttons tet-carousel__buttons--mobile" }, h("tet-button", { key: 'c895194e59231388f609d44644426b24820072a0', class: "tet-carousel__btn", theme: this.theme === 'light' ? 'dark' : 'light', "icon-name": this.buttonIconLeft, "icon-mode": true, onClick: this.handlePrev, "aria-label": "Previous", disabled: this.screenCount <= 1 || this.activeIndex === 0 }))), this.showDots && (h("div", { key: 'a1f8a2bf24d8e4fff9cfeb23f22ea9fa445a6daf', class: "tet-carousel__dots" }, Array.from({ length: this.screenCount }).map((_, idx) => (h("span", { class: `tet-carousel__dot${idx === this.activeIndex ? ' active' : ''}`, key: idx, onClick: () => this.handleDotClick(idx) }))))), this.showButtons && (h("div", { key: '2acb82a55cc79b06f5820e601cf8782108f2f76a', class: "tet-carousel__buttons " }, h("tet-button", { key: '066207aa4478e2cfb243be2b8c6736075901bfaa', class: "tet-carousel__buttons--desktop tet-carousel__btn ", theme: this.theme === 'light' ? 'dark' : 'light', "icon-name": this.buttonIconLeft, "icon-mode": true, onClick: this.handlePrev, "aria-label": "Previous", disabled: this.screenCount <= 1 || this.activeIndex === 0 }), h("tet-button", { key: '9b0441b1e9bfa204480133814bc16c359de907ea', class: "tet-carousel__btn", theme: this.theme === 'light' ? 'dark' : 'light', "icon-name": this.buttonIconRight, "icon-mode": true, onClick: this.handleNext, "aria-label": "Next", disabled: this.screenCount <= 1 || this.activeIndex === this.screenCount - 1 })))))));
194
218
  }
195
219
  };
196
220
  TetCarousel.style = TetCarouselStyle0;
@@ -0,0 +1 @@
1
+ import{r as t,h as e,H as o}from"./p-67c5dc0a.js";const n=class{constructor(e){t(this,e),this.draggedAnchor=null,this.dragMoved=!1,this.clickPreventAdded=!1,this.dragPointerStartX=0,this.preventClickOnDocument=t=>{t.preventDefault(),t.stopPropagation()},this.trackElement=null,this.dragStartX=0,this.swipeStart=0,this.handlePrev=()=>{this.activeIndex>0&&(this.activeIndex-=1),this.dragOffset=-this.activeIndex*window.innerWidth},this.handleNext=()=>{this.activeIndex<this.screenCount-1&&(this.activeIndex+=1),this.dragOffset=-this.activeIndex*window.innerWidth,this.checkForLastScreen()},this.checkForLastScreen=()=>{var t,e,o;if(this.screenCount-1===this.activeIndex&&!this.isDragging){const n=(null===(t=this.container)||void 0===t?void 0:t.offsetWidth)||window.innerWidth,i=(null===(o=null===(e=this.trackElement)||void 0===e?void 0:e.querySelector("slot"))||void 0===o?void 0:o.offsetWidth)||window.innerWidth;this.dragOffset=-(i-n)}},this.handleDotClick=t=>{this.activeIndex=t,this.dragOffset=-t*window.innerWidth,this.checkForLastScreen()},this.onPointerDown=t=>{t.preventDefault(),t.stopPropagation(),t.stopImmediatePropagation(),this.isDragging=!0,this.dragStartX=t.screenX,this.dragMoved=!1,this.clickPreventAdded=!1,this.dragPointerStartX=t.screenX,this.swipeStart=this.dragOffset,document.body.style.userSelect="none",document.addEventListener("pointermove",this.onPointerMove),document.addEventListener("pointerup",this.onPointerUp);let e=t.target;for(this.draggedAnchor=null;e;){if("A"===e.tagName){this.draggedAnchor=e;break}e=e.parentElement}},this.onPointerMove=t=>{var e,o,n;if(!this.isDragging)return;const i=Math.abs(t.screenX-this.dragPointerStartX);!this.dragMoved&&i>5&&(this.dragMoved=!0,this.clickPreventAdded||(document.addEventListener("click",this.preventClickOnDocument,{capture:!0,once:!0}),this.clickPreventAdded=!0));let r=this.dragOffset;r+=t.screenX-this.dragStartX,this.dragStartX=t.screenX;const s=(null===(e=this.container)||void 0===e?void 0:e.offsetWidth)||window.innerWidth;-(((null===(n=null===(o=this.trackElement)||void 0===o?void 0:o.querySelector("slot"))||void 0===n?void 0:n.offsetWidth)||window.innerWidth)-s)<r&&r<0&&(this.dragOffset=r)},this.onPointerUp=t=>{var e,o,n;if(t.preventDefault(),t.stopPropagation(),t.stopImmediatePropagation(),this.isDragging){if(this.isDragging=!1,this.clickPreventAdded&&setTimeout((()=>{this.clickPreventAdded=!1}),0),Math.abs(this.dragOffset-this.swipeStart)>this.swipeThreshold){let t=this.activeIndex+(this.dragOffset<this.swipeStart?1:-1);if(t=Math.max(0,Math.min(t,this.screenCount-1)),this.activeIndex=t,this.screenCount-1===this.activeIndex&&!this.isDragging){const t=(null===(e=this.container)||void 0===e?void 0:e.offsetWidth)||window.innerWidth,i=(null===(n=null===(o=this.trackElement)||void 0===o?void 0:o.querySelector("slot"))||void 0===n?void 0:n.offsetWidth)||window.innerWidth;return void(this.dragOffset=-(i-t))}this.dragOffset=-t*window.innerWidth}if(document.body.style.userSelect="",document.removeEventListener("pointermove",this.onPointerMove),document.removeEventListener("pointerup",this.onPointerUp),this.draggedAnchor&&this.dragMoved){const t=e=>{var o;e.preventDefault(),e.stopPropagation(),null===(o=this.draggedAnchor)||void 0===o||o.removeEventListener("click",t,!0)};this.draggedAnchor.addEventListener("click",t,!0)}}},this.activeIndex=0,this.screenCount=0,this.totalItems=0,this.items=[],this.theme="light",this.isDragging=!1,this.dragOffset=0,this.showDots=!0,this.showButtons=!0,this.transitionDuration=500,this.swipeThreshold=32,this.transitionTiming="cubic-bezier(0.77,0,0.175,1)",this.buttonIconLeft="arrow-left",this.buttonIconRight="arrow-right",this.containerClass="",this.trackClass="",this.buttonClass="",this.dotClass=""}getScreenCount(){var t;const e=null===(t=this.container)||void 0===t?void 0:t.querySelector("slot");if(!e)return 1;const o=e.assignedElements?e.assignedElements():[];if(0===o.length)return 1;let n=0;o.forEach(((t,e)=>{n+=t.offsetWidth||0,this.items.push({id:e,width:t.offsetWidth||0})})),0===n&&(n=o.length*window.innerWidth);const i=window.innerWidth;this.totalItems=o.length,this.screenCount=Math.ceil(n/i)}componentDidLoad(){this.getScreenCount(),window.addEventListener("resize",this.getScreenCount.bind(this)),this.addAnchorFocusListeners()}addAnchorFocusListeners(){if(!this.trackElement)return;const t=this.trackElement.querySelector("slot");if(!t)return;const e=t.assignedElements?t.assignedElements():[];let o=[];e.forEach((t=>{"A"===t.tagName&&o.push(t),o=o.concat(Array.from(t.querySelectorAll("a")))})),o.forEach((t=>{t.addEventListener("focus",(()=>{var e,o;const n=window.innerWidth,i=t.getBoundingClientRect(),r=this.trackElement.getBoundingClientRect();let s=i.left-r.left;const f=Math.floor(s/n);this.activeIndex=Math.max(0,Math.min(f,this.screenCount-1)),((null===(o=null===(e=this.trackElement)||void 0===e?void 0:e.querySelector("slot"))||void 0===o?void 0:o.offsetWidth)||window.innerWidth)>n+s&&(this.dragOffset=-s),this.checkForLastScreen()}))}))}disconnectedCallback(){window.removeEventListener("resize",this.getScreenCount.bind(this))}render(){return e(o,{key:"b9be9a9be46b553e914f8da303b5c3a5b84ed4a1"},e("div",{key:"641e19a2e2639ced9b0f09bd54038b980803acea",class:{"tet-carousel":!0,[`${this.theme}`]:!0},ref:t=>this.container=t,part:"carousel"},e("div",{key:"4ca0fbf3faa1adbc47618b44ad09a02570515158",class:"tet-carousel__container"},e("div",{key:"4cc09e10479a99856584c0c4a0237785159f6a5f",class:"tet-carousel__track",ref:t=>this.trackElement=t,style:{transform:`translateX(${this.dragOffset}px)`,transition:this.isDragging?"none":`transform ${this.transitionDuration}ms ${this.transitionTiming}`},onPointerDown:this.onPointerDown,onMouseMove:this.onPointerMove,onPointerUp:this.onPointerUp,onMouseLeave:this.onPointerUp},e("slot",{key:"6f7bcdc544e744a8c8622767e0177a3fcd7518fa"}))),e("div",{key:"8d7e212c2f09d64f6fa7fd2dfcb6e258e99b08e3",class:"tet-carousel__controls"},this.showButtons&&e("div",{key:"241a2d941400913fbd0b9a14ad489fb7abc65383",class:"tet-carousel__buttons tet-carousel__buttons--mobile"},e("tet-button",{key:"c895194e59231388f609d44644426b24820072a0",class:"tet-carousel__btn",theme:"light"===this.theme?"dark":"light","icon-name":this.buttonIconLeft,"icon-mode":!0,onClick:this.handlePrev,"aria-label":"Previous",disabled:this.screenCount<=1||0===this.activeIndex})),this.showDots&&e("div",{key:"a1f8a2bf24d8e4fff9cfeb23f22ea9fa445a6daf",class:"tet-carousel__dots"},Array.from({length:this.screenCount}).map(((t,o)=>e("span",{class:"tet-carousel__dot"+(o===this.activeIndex?" active":""),key:o,onClick:()=>this.handleDotClick(o)})))),this.showButtons&&e("div",{key:"2acb82a55cc79b06f5820e601cf8782108f2f76a",class:"tet-carousel__buttons "},e("tet-button",{key:"066207aa4478e2cfb243be2b8c6736075901bfaa",class:"tet-carousel__buttons--desktop tet-carousel__btn ",theme:"light"===this.theme?"dark":"light","icon-name":this.buttonIconLeft,"icon-mode":!0,onClick:this.handlePrev,"aria-label":"Previous",disabled:this.screenCount<=1||0===this.activeIndex}),e("tet-button",{key:"9b0441b1e9bfa204480133814bc16c359de907ea",class:"tet-carousel__btn",theme:"light"===this.theme?"dark":"light","icon-name":this.buttonIconRight,"icon-mode":!0,onClick:this.handleNext,"aria-label":"Next",disabled:this.screenCount<=1||this.activeIndex===this.screenCount-1})))))}};n.style='@font-face{font-family:Avenir Next;src:url(assets/fonts/8e7462a9501f48c43c58f870188b3fb2.eot?#iefix);src:url(assets/fonts/8e7462a9501f48c43c58f870188b3fb2.eot?#iefix) format("eot"),url(assets/fonts/3c3e10968ffc97c2a52c5830f9886d1f.woff2) format("woff2"),url(assets/fonts/660fbf858d30d7685fa4b166080f5980.woff) format("woff"),url(assets/fonts/2b7748589092fd1a10b806abdfb562ff.ttf) format("truetype");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:Avenir Next;src:url(assets/fonts/d5e25ad69d0ea31f3b8f66d634ca40fe.eot?#iefix);src:url(assets/fonts/d5e25ad69d0ea31f3b8f66d634ca40fe.eot?#iefix) format("eot"),url(assets/fonts/aad36ecead30948bb30fe0ef818b749c.woff2) format("woff2"),url(assets/fonts/c437d7752feaf3f056bbf8613e898d3a.woff) format("woff"),url(assets/fonts/b8df4d02ef5de13a813917a85bc4a9c4.ttf) format("truetype");font-weight:400;font-style:italic;font-display:swap}@font-face{font-family:Avenir Next;src:url(assets/fonts/046190c9a2f724b925df848737b03819.eot?#iefix);src:url(assets/fonts/046190c9a2f724b925df848737b03819.eot?#iefix) format("eot"),url(assets/fonts/4d52f8276a74ea8efbad833ed790367c.woff2) format("woff2"),url(assets/fonts/a067695dd1b87e927f4056c040d84669.woff) format("woff"),url(assets/fonts/510a664af9771b72d4ce5e637109ca3c.ttf) format("truetype");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:Avenir Next;src:url(assets/fonts/0715de188f56c99aa615905f7e06292e.eot?#iefix);src:url(assets/fonts/0715de188f56c99aa615905f7e06292e.eot?#iefix) format("eot"),url(assets/fonts/63f5acc71d9852468683a4bfe824a28f.woff2) format("woff2"),url(assets/fonts/ed94c737da267752ce0abd79bb003ff6.woff) format("woff"),url(assets/fonts/6302f55a6dc6b12365177dc89b7d63cf.ttf) format("truetype");font-weight:500;font-style:italic;font-display:swap}@font-face{font-family:Avenir Next;src:url(assets/fonts/3f76abc23eef0596c499840db84213bb.eot?#iefix);src:url(assets/fonts/3f76abc23eef0596c499840db84213bb.eot?#iefix) format("eot"),url(assets/fonts/1fe7da97fe9dbe1349aca9b54b5fdf69.woff2) format("woff2"),url(assets/fonts/dacc6a84278e221422902af99579ada5.woff) format("woff"),url(assets/fonts/e530c573663a3a07243d303fbf7db508.ttf) format("truetype");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:Avenir Next;src:url(assets/fonts/75f8489ba53f19968feaa3e2eb78c569.eot?#iefix);src:url(assets/fonts/75f8489ba53f19968feaa3e2eb78c569.eot?#iefix) format("eot"),url(assets/fonts/93ec0034623fc696601ab99aba652d4c.woff2) format("woff2"),url(assets/fonts/d73c8eb1c13abe1237366aa3ee829a59.woff) format("woff"),url(assets/fonts/7b6dcef99f3f4b23346e23925ec8678f.ttf) format("truetype");font-weight:600;font-style:italic;font-display:swap}.tet-icon{font-family:Tet Icons;font-weight:400;font-style:normal;font-size:24px;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;speak:none;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale}@font-face{font-family:Tet Icons;src:url(assets/fonts/d2ce51cdcd0b9707af186f8d50023d23.eot);src:url(assets/fonts/d2ce51cdcd0b9707af186f8d50023d23.eot?#iefix) format("embedded-opentype"),url(assets/fonts/25f10ef322a1220b2e9e11db38b73892.woff2) format("woff2"),url(assets/fonts/fed75ac1edcf1c25cdd8612d2c365f9a.woff) format("woff"),url(assets/fonts/df7fbe67cabb13cb837172a73c46378a.ttf) format("truetype"),url(assets/fonts/5486d8c87e2abc6c13ed952a6cc96658.svg#tet-icons) format("svg");font-weight:400;font-style:normal}.tet-icon:before{content:"\\E84E"}.tet-icon--sm{font-size:1.125rem}.tet-icon--md{font-size:1.5rem}.tet-icon--lg{font-size:2.25rem}.tet-icon--xl{font-size:3rem}.tet-icon--xxl{font-size:4rem}.tet-icon--0{font-size:0}.tet-icon--1{font-size:.0625rem}.tet-icon--2{font-size:.125rem}.tet-icon--3{font-size:.1875rem}.tet-icon--4{font-size:.25rem}.tet-icon--5{font-size:.3125rem}.tet-icon--6{font-size:.375rem}.tet-icon--7{font-size:.4375rem}.tet-icon--8{font-size:.5rem}.tet-icon--9{font-size:.5625rem}.tet-icon--10{font-size:.625rem}.tet-icon--11{font-size:.6875rem}.tet-icon--12{font-size:.75rem}.tet-icon--13{font-size:.8125rem}.tet-icon--14{font-size:.875rem}.tet-icon--15{font-size:.9375rem}.tet-icon--16{font-size:1rem}.tet-icon--17{font-size:1.0625rem}.tet-icon--18{font-size:1.125rem}.tet-icon--19{font-size:1.1875rem}.tet-icon--20{font-size:1.25rem}.tet-icon--21{font-size:1.3125rem}.tet-icon--22{font-size:1.375rem}.tet-icon--23{font-size:1.4375rem}.tet-icon--24{font-size:1.5rem}.tet-icon--25{font-size:1.5625rem}.tet-icon--26{font-size:1.625rem}.tet-icon--27{font-size:1.6875rem}.tet-icon--28{font-size:1.75rem}.tet-icon--29{font-size:1.8125rem}.tet-icon--30{font-size:1.875rem}.tet-icon--31{font-size:1.9375rem}.tet-icon--32{font-size:2rem}.tet-icon--33{font-size:2.0625rem}.tet-icon--34{font-size:2.125rem}.tet-icon--35{font-size:2.1875rem}.tet-icon--36{font-size:2.25rem}.tet-icon--37{font-size:2.3125rem}.tet-icon--38{font-size:2.375rem}.tet-icon--39{font-size:2.4375rem}.tet-icon--40{font-size:2.5rem}.tet-icon--41{font-size:2.5625rem}.tet-icon--42{font-size:2.625rem}.tet-icon--43{font-size:2.6875rem}.tet-icon--44{font-size:2.75rem}.tet-icon--45{font-size:2.8125rem}.tet-icon--46{font-size:2.875rem}.tet-icon--47{font-size:2.9375rem}.tet-icon--48{font-size:3rem}.tet-icon--49{font-size:3.0625rem}.tet-icon--50{font-size:3.125rem}.tet-icon--51{font-size:3.1875rem}.tet-icon--52{font-size:3.25rem}.tet-icon--53{font-size:3.3125rem}.tet-icon--54{font-size:3.375rem}.tet-icon--55{font-size:3.4375rem}.tet-icon--56{font-size:3.5rem}.tet-icon--57{font-size:3.5625rem}.tet-icon--58{font-size:3.625rem}.tet-icon--59{font-size:3.6875rem}.tet-icon--60{font-size:3.75rem}.tet-icon--61{font-size:3.8125rem}.tet-icon--62{font-size:3.875rem}.tet-icon--63{font-size:3.9375rem}.tet-icon--64{font-size:4rem}.tet-icon--65{font-size:4.0625rem}.tet-icon--66{font-size:4.125rem}.tet-icon--67{font-size:4.1875rem}.tet-icon--68{font-size:4.25rem}.tet-icon--69{font-size:4.3125rem}.tet-icon--70{font-size:4.375rem}.tet-icon--71{font-size:4.4375rem}.tet-icon--72{font-size:4.5rem}.tet-icon--73{font-size:4.5625rem}.tet-icon--74{font-size:4.625rem}.tet-icon--75{font-size:4.6875rem}.tet-icon--76{font-size:4.75rem}.tet-icon--77{font-size:4.8125rem}.tet-icon--78{font-size:4.875rem}.tet-icon--79{font-size:4.9375rem}.tet-icon--80{font-size:5rem}.tet-icon--81{font-size:5.0625rem}.tet-icon--82{font-size:5.125rem}.tet-icon--83{font-size:5.1875rem}.tet-icon--84{font-size:5.25rem}.tet-icon--85{font-size:5.3125rem}.tet-icon--86{font-size:5.375rem}.tet-icon--87{font-size:5.4375rem}.tet-icon--88{font-size:5.5rem}.tet-icon--89{font-size:5.5625rem}.tet-icon--90{font-size:5.625rem}.tet-icon--91{font-size:5.6875rem}.tet-icon--92{font-size:5.75rem}.tet-icon--93{font-size:5.8125rem}.tet-icon--94{font-size:5.875rem}.tet-icon--95{font-size:5.9375rem}.tet-icon--96{font-size:6rem}.tet-icon--97{font-size:6.0625rem}.tet-icon--98{font-size:6.125rem}.tet-icon--99{font-size:6.1875rem}.tet-icon--100{font-size:6.25rem}.tet-icon--101{font-size:6.3125rem}.tet-icon__add:before{content:"\\E800"}.tet-icon__alert-circled:before{content:"\\E801"}.tet-icon__alert:before{content:"\\E802"}.tet-icon__bank:before{content:"\\E803"}.tet-icon__box:before{content:"\\E804"}.tet-icon__download:before{content:"\\E805"}.tet-icon__burger:before{content:"\\E806"}.tet-icon__cancel:before{content:"\\E807"}.tet-icon__printer:before{content:"\\E808"}.tet-icon__cart-add:before{content:"\\E809"}.tet-icon__cart-remove:before{content:"\\E80A"}.tet-icon__cart:before{content:"\\E80B"}.tet-icon__chat:before{content:"\\E80C"}.tet-icon__arrow-up:before{content:"\\E80D"}.tet-icon__calendar:before{content:"\\E80E"}.tet-icon__help-circled:before{content:"\\E80F"}.tet-icon__edit:before{content:"\\E810"}.tet-icon__external-link:before{content:"\\E811"}.tet-icon__gift:before{content:"\\E812"}.tet-icon__person:before{content:"\\E813"}.tet-icon__heart:before{content:"\\E814"}.tet-icon__language:before{content:"\\E815"}.tet-icon__help:before{content:"\\E816"}.tet-icon__home-1:before{content:"\\E817"}.tet-icon__location:before{content:"\\E818"}.tet-icon__home-3:before{content:"\\E819"}.tet-icon__chart-even:before{content:"\\E81A"}.tet-icon__info-2:before{content:"\\E81B"}.tet-icon__key:before{content:"\\E81C"}.tet-icon__info:before{content:"\\E81D"}.tet-icon__lock-opened:before{content:"\\E81E"}.tet-icon__lock-outlined:before{content:"\\E81F"}.tet-icon__lock:before{content:"\\E820"}.tet-icon__laptop-filled:before{content:"\\E821"}.tet-icon__mail:before{content:"\\E822"}.tet-icon__options:before{content:"\\E823"}.tet-icon__chart-uneven:before{content:"\\E824"}.tet-icon__mail-2:before{content:"\\E825"}.tet-icon__remove:before{content:"\\E826"}.tet-icon__mobile-filled:before{content:"\\E827"}.tet-icon__ilu-calendar-check:before{content:"\\E828"}.tet-icon__settings-outlined:before{content:"\\E829"}.tet-icon__tablet:before{content:"\\E82A"}.tet-icon__thumb-up:before{content:"\\E82B"}.tet-icon__ilu-purchase:before{content:"\\E82C"}.tet-icon__chart-even-outlined:before{content:"\\E82D"}.tet-icon__movie:before{content:"\\E82E"}.tet-icon__percent:before{content:"\\E82F"}.tet-icon__ilu-change-whenever:before{content:"\\E830"}.tet-icon__truck:before{content:"\\E831"}.tet-icon__zero:before{content:"\\E832"}.tet-icon__attach:before{content:"\\E833"}.tet-icon__cloud-done:before{content:"\\E834"}.tet-icon__cloud-download:before{content:"\\E835"}.tet-icon__cloud-upload:before{content:"\\E836"}.tet-icon__cloud:before{content:"\\E837"}.tet-icon__folder:before{content:"\\E838"}.tet-icon__remote:before{content:"\\E839"}.tet-icon__router:before{content:"\\E83A"}.tet-icon__shield-filled:before{content:"\\E83B"}.tet-icon__shield:before{content:"\\E83C"}.tet-icon__ilu-devices:before{content:"\\E83D"}.tet-icon__ilu-get-points:before{content:"\\E83E"}.tet-icon__tv:before{content:"\\E83F"}.tet-icon__ilu-internet:before{content:"\\E840"}.tet-icon__wifi-outlined:before{content:"\\E841"}.tet-icon__wifi:before{content:"\\E842"}.tet-icon__description-outlined:before{content:"\\E843"}.tet-icon__laptop:before{content:"\\E844"}.tet-icon__chart-uneven-outlined:before{content:"\\E845"}.tet-icon__meter:before{content:"\\E846"}.tet-icon__mobile:before{content:"\\E847"}.tet-icon__phone:before{content:"\\E848"}.tet-icon__plug-filled:before{content:"\\E849"}.tet-icon__plug:before{content:"\\E84A"}.tet-icon__print:before{content:"\\E84B"}.tet-icon__camera:before{content:"\\E84C"}.tet-icon__clock:before{content:"\\E84D"}.tet-icon__placeholder:before{content:"\\E84E"}.tet-icon__tv-filled:before{content:"\\E84F"}.tet-icon__arrow-down:before{content:"\\E850"}.tet-icon__arrow-left:before{content:"\\E851"}.tet-icon__arrow-right:before{content:"\\E852"}.tet-icon__description:before{content:"\\E853"}.tet-icon__login:before{content:"\\E854"}.tet-icon__check:before{content:"\\E855"}.tet-icon__chevron-down:before{content:"\\E856"}.tet-icon__chevron-left:before{content:"\\E857"}.tet-icon__chevron-right:before{content:"\\E858"}.tet-icon__chevron-up:before{content:"\\E859"}.tet-icon__close-circled:before{content:"\\E85A"}.tet-icon__close:before{content:"\\E85B"}.tet-icon__more-horizontal:before{content:"\\E85C"}.tet-icon__more-vertical:before{content:"\\E85D"}.tet-icon__refresh:before{content:"\\E85E"}.tet-icon__facebook:before{content:"\\E85F"}.tet-icon__instagram:before{content:"\\E860"}.tet-icon__linkedin:before{content:"\\E861"}.tet-icon__people:before{content:"\\E862"}.tet-icon__logout:before{content:"\\E863"}.tet-icon__share:before{content:"\\E864"}.tet-icon__twitter:before{content:"\\E865"}.tet-icon__cancel-filled:before{content:"\\E866"}.tet-icon__done:before{content:"\\E867"}.tet-icon__star-filled:before{content:"\\E868"}.tet-icon__star:before{content:"\\E869"}.tet-icon__clipboard:before{content:"\\E86A"}.tet-icon__ilu-calendar:before{content:"\\E86B"}.tet-icon__check-circled:before{content:"\\E86C"}.tet-icon__ilu-choose-channels:before{content:"\\E86D"}.tet-icon__search:before{content:"\\E86E"}.tet-icon__warning:before{content:"\\E86F"}.tet-icon__ilu-clock-1:before{content:"\\E870"}.tet-icon__ilu-fold:before{content:"\\E871"}.tet-icon__ilu-letter:before{content:"\\E872"}.tet-icon__ilu-pay:before{content:"\\E873"}.tet-icon__ilu-meter:before{content:"\\E874"}.tet-icon__ilu-sign:before{content:"\\E875"}.tet-icon__smart-watch-filled:before{content:"\\E876"}.tet-icon__washing-machine-filled:before{content:"\\E877"}.tet-icon__bullet:before{content:"\\E878"}.tet-icon__sound:before{content:"\\E879"}.tet-icon__dropdown:before{content:"\\E87A"}.tet-icon__mask-pass:before{content:"\\E87B"}.tet-icon__select:before{content:"\\E87C"}.tet-icon__text-area-sizing:before{content:"\\E87D"}.tet-icon__unmask-pass:before{content:"\\E87E"}.tet-icon__bullet-small:before{content:"\\E882"}.tet-icon__electric-bolt:before{content:"\\E880"}.tet-icon__sun:before{content:"\\E881"}:host{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit;padding:0;margin:0}:host{--color-gray-light:#cdd2de;--color-ta070:#f5f6f8;--color-ta080:#e6e8ee;--color-ta100:#cdd2de;--color-ta200:#9ba5be;--color-ta300:#69789c;--color-ta500:#1e356a;--color-ta600:#051d59;--color-tc090:#d6e6fd;--color-tc100:#d1dffe;--color-tc300:#75a1fb;--color-tc500:#1a70f6;--color-tc600:#0060f5;--color-td500:#00F1F2;--color-td600:#01cbe0;--color-tf600:#f53b2a;--color-tg300:#2b3036;--color-tg400:#1d2128;--color-tg500:#12171e;--color-tg600:#01050c;--color-th500:#f5f5f5;--color-ti500:#869198;--color-ti600:#aeb7bc;--text-font:Gilroy, serif;--text-color-darker:var(--color-ta600);--text-color-dark:var(--color-ta500);--text-color-dark-theme:var(--color-th500);--icons-font:Tet Icons, serif}.icon.tet-search{font-family:var(--icons-font);font-weight:400;font-style:normal;font-size:1.25rem;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;speak:none;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale}.icon.tet-search::before{content:"\\e86e"}.icon.tet-close-circled{font-family:var(--icons-font);font-weight:400;font-style:normal;font-size:1.25rem;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;speak:none;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale}.icon.tet-close-circled::before{content:"\\e85a"}.icon.tet-close{font-family:var(--icons-font);font-weight:400;font-style:normal;font-size:1.25rem;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;speak:none;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale}.icon.tet-close::before{content:"\\e85b"}.icon.tet-check-circled{font-family:var(--icons-font);font-weight:400;font-style:normal;font-size:1.25rem;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;speak:none;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale}.icon.tet-check-circled::before{content:"\\e86c"}.icon.tet-check{font-family:var(--icons-font);font-weight:400;font-style:normal;font-size:1.25rem;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;speak:none;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale}.icon.tet-check::before{content:"\\e855"}.icon.tet-chevron-up{font-family:var(--icons-font);font-weight:400;font-style:normal;font-size:1.25rem;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;speak:none;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale}.icon.tet-chevron-up::before{content:"\\e859"}.icon.tet-chevron-down{font-family:var(--icons-font);font-weight:400;font-style:normal;font-size:1.25rem;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;speak:none;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale}.icon.tet-chevron-down::before{content:"\\e856"}.icon.tet-clipboard{font-family:var(--icons-font);font-weight:400;font-style:normal;font-size:1.25rem;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;speak:none;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale}.icon.tet-clipboard::before{content:"\\e86a"}.icon.tet-info{font-family:var(--icons-font);font-weight:400;font-style:normal;font-size:1.25rem;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;speak:none;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale}.icon.tet-info::before{content:"\\e81d"}.icon.tet-done{font-family:var(--icons-font);font-weight:400;font-style:normal;font-size:1.25rem;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;speak:none;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale}.icon.tet-done::before{content:"\\e867"}@font-face{font-family:"Gilroy";font-style:normal;font-weight:400;font-display:swap;src:url("assets/fonts/Gilroy-W05-Medium.woff2") format("woff2"), url("assets/fonts/Gilroy-W05-Medium.woff") format("woff")}@font-face{font-family:"Gilroy";font-style:normal;font-weight:500;font-display:swap;src:url("assets/fonts/Gilroy-W05-Medium.woff2") format("woff2"), url("assets/fonts/Gilroy-W05-Medium.woff") format("woff")}@font-face{font-family:"Gilroy";font-style:normal;font-weight:600;font-display:swap;src:url("assets/fonts/Gilroy-W05-Semibold.woff2") format("woff2"), url("assets/fonts/Gilroy-W05-Semibold.woff") format("woff")}@font-face{font-family:"Gilroy";font-style:normal;font-weight:700;font-display:swap;src:url("assets/fonts/Gilroy-W05-Bold.woff2") format("woff2"), url("assets/fonts/Gilroy-W05-Bold.woff") format("woff")}@font-face{font-family:"Inter";font-style:normal;font-weight:400;font-display:swap;src:url("assets/fonts/Inter-Regular.woff2?v=3.19") format("woff2"), url("assets/fonts/Inter-Regular.woff?v=3.19") format("woff")}@font-face{font-family:"Inter";font-style:normal;font-weight:500;font-display:swap;src:url("assets/fonts/Inter-Medium.woff2?v=3.19") format("woff2"), url("assets/fonts/Inter-Medium.woff?v=3.19") format("woff")}@font-face{font-family:"Inter";font-style:normal;font-weight:600;font-display:swap;src:url("assets/fonts/Inter-SemiBold.woff2?v=3.19") format("woff2"), url("assets/fonts/Inter-SemiBold.woff?v=3.19") format("woff")}@font-face{font-family:"Gilroy";font-style:normal;font-weight:400;font-display:swap;src:url("assets/fonts/Gilroy-W05-Medium.woff2") format("woff2"), url("assets/fonts/Gilroy-W05-Medium.woff") format("woff")}@font-face{font-family:"Gilroy";font-style:normal;font-weight:500;font-display:swap;src:url("assets/fonts/Gilroy-W05-Medium.woff2") format("woff2"), url("assets/fonts/Gilroy-W05-Medium.woff") format("woff")}@font-face{font-family:"Gilroy";font-style:normal;font-weight:600;font-display:swap;src:url("assets/fonts/Gilroy-W05-Semibold.woff2") format("woff2"), url("assets/fonts/Gilroy-W05-Semibold.woff") format("woff")}@font-face{font-family:"Gilroy";font-style:normal;font-weight:700;font-display:swap;src:url("assets/fonts/Gilroy-W05-Bold.woff2") format("woff2"), url("assets/fonts/Gilroy-W05-Bold.woff") format("woff")}@font-face{font-family:"Inter";font-style:normal;font-weight:400;font-display:swap;src:url("assets/fonts/Inter-Regular.woff2?v=3.19") format("woff2"), url("assets/fonts/Inter-Regular.woff?v=3.19") format("woff")}@font-face{font-family:"Inter";font-style:normal;font-weight:500;font-display:swap;src:url("assets/fonts/Inter-Medium.woff2?v=3.19") format("woff2"), url("assets/fonts/Inter-Medium.woff?v=3.19") format("woff")}@font-face{font-family:"Inter";font-style:normal;font-weight:600;font-display:swap;src:url("assets/fonts/Inter-SemiBold.woff2?v=3.19") format("woff2"), url("assets/fonts/Inter-SemiBold.woff?v=3.19") format("woff")}:host{--font-family-fallback:Gilroy, Arial, sans-serif;--font-family-headline:Gilroy;--font-family-content:Inter, var(--font-family-fallback);font-family:var(--font-family-content)}:host{--carousel-background:transparent;--carousel-button-background:transparent;--carousel-button-border:2px solid var(--tc-border-primary);--carousel-button-border-disabled:2px solid var(--tc-button-border-disabled);--carousel-active-button-background:var(--tc-grey-110);--carousel-button-size:2.75rem;--carousel-button-icon-size:1.5rem;--carousel-button-icon-color:var(--tc-grey-110);--carousel-dot-size:1rem;--carousel-buttons-bottom:-1rem;--carousel-dot-background:transparent;--carousel-dot-border:1px solid var(--tc-grey-70);--carousel-dot-padding-top:1.875rem;--carousel-dot-active-background:var(--tc-layer-inverse-primary);--carousel-button-hover-background:var(--tc-button-secondary-background-hover);--carousel-dots-gap:0.5rem;--carousel-buttons-gap:1rem;--carousel-track-gap:0;--carousel-track-height:100%;--carousel-item-width:100%;--carousel-item-height:100%;--carousel-buttons-right:2rem;--carousel-dots-bottom:-1rem;display:inline-block;cursor:pointer;width:100%}.tet-carousel{position:relative;width:100%;background:var(--carousel-background)}.tet-carousel.dark{--carousel-dot-active-background:var(--tc-layer-inverse-primary-dark);--carousel-dot-border:1px solid var(--tc-grey-70-dark);--carousel-button-border:2px solid var(--tc-button-border-secondary-dark);--carousel-button-border-disabled:2px solid var(--tc-button-border-disabled-dark)}.tet-carousel__container{width:var(--carousel-item-width);max-width:var(--carousel-item-width);height:var(--carousel-track-height)}.tet-carousel__controls{display:flex;justify-content:end}.tet-carousel__track{display:flex;height:var(--carousel-track-height);will-change:transform;gap:var(--carousel-track-gap)}.tet-carousel__track>*{flex-shrink:0;display:flex;align-items:center;justify-content:center}.tet-carousel__buttons{position:absolute;right:0;bottom:var(--carousel-buttons-bottom);display:flex;flex-direction:row;gap:var(--carousel-buttons-gap);z-index:2}.tet-carousel__buttons--mobile{display:flex;left:0}.tet-carousel__buttons--desktop{display:none !important}.tet-carousel__btn{background:var(--carousel-button-background);border:none;border-radius:50%;box-shadow:var(--carousel-button-shadow);width:2.25rem;height:2.25rem;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background 0.2s, box-shadow 0.2s;outline:none}.tet-carousel__btn::part(button){--button-padding:0;--button-background:transparent;--button-width:var(--carousel-button-size);backdrop-filter:none;border:var(--carousel-button-border)}.tet-carousel__btn::part(button):disabled{--carousel-button-hover-background:transparent;border:var(--carousel-button-border-disabled);opacity:0.5;cursor:not-allowed}.tet-carousel__btn::part(button):hover{background-color:var(--carousel-button-hover-background)}.tet-carousel__btn.active{background:var(--carousel-active-button-background);box-shadow:var(--carousel-button-active-shadow)}.tet-carousel__btn tet-icon{--icon-size:var(--carousel-button-icon-size);--icon-color:var(--carousel-button-icon-color)}.tet-carousel__dots{display:flex;gap:var(--carousel-dots-gap);padding-top:var(--carousel-dot-padding-top);justify-content:center;flex:1}.tet-carousel__dot{width:var(--carousel-dot-size);height:var(--carousel-dot-size);border-radius:50%;background:var(--carousel-dot-background);cursor:pointer;transition:background 0.2s;border:var(--carousel-dot-border);z-index:2}.tet-carousel__dot:hover{background:var(--tc-button-secondary-background-hover)}.tet-carousel__dot.active{background:var(--carousel-dot-active-background);border:none}@media all and (min-width: 46.25rem){.tet-carousel__buttons--mobile{display:none}.tet-carousel__buttons--desktop{display:flex !important}.tet-carousel__btn{width:var(--carousel-button-size);height:var(--carousel-button-size)}}';export{n as tet_carousel}
@@ -1 +1 @@
1
- import{p as e,b as t}from"./p-67c5dc0a.js";export{s as setNonce}from"./p-67c5dc0a.js";import{g as a}from"./p-e1255160.js";(()=>{const t=import.meta.url,a={};return""!==t&&(a.resourcesUrl=new URL(".",t).href),e(a)})().then((async e=>(await a(),t(JSON.parse('[["p-7f4b0d9f",[[1,"tet-address-offers-view",{"language":[1],"addressKey":[1,"address-key"],"theme":[1],"userPersonalCode":[1,"user-personal-code"],"showAuthorizedAddresses":[4,"show-authorized-addresses"],"accessToken":[1,"access-token"],"noUserFound":[4,"no-user-found"],"callCenterTaskOptions":[16],"showContactForm":[1028,"show-contact-form"],"termText":[1,"term-text"],"formParameters":[1,"form-parameters"],"accessibilityLabel":[1,"accessibility-label"],"address":[32]},[[0,"assetAddressSelected","onAddressSelected"],[0,"customerNotFound","customerNotFound"],[0,"emptyCatalog","onEmptyCatalog"]],{"language":["onLanguageChange"]}]]],["p-94d85410",[[1,"tet-compare-cards-tab",{"data":[16],"forceColumn":[4,"force-column"],"layout":[1],"newUrlGeneratorStructure":[4,"new-url-generator-structure"],"theme":[1],"darkMode":[4,"dark-mode"],"isNetflixCard":[4,"is-netflix-card"],"darkHeader":[4,"dark-header"],"withProductFilters":[4,"with-product-filters"],"productDataLoaded":[32],"showLoader":[32],"productSACData":[32],"filteredProductCodes":[32]},[[0,"compareCardsDidRender","hideLoader"]],{"showLoader":["onDataChange"]}]]],["p-3f930a68",[[1,"tet-asset-addresses",{"accessToken":[1,"access-token"],"pid":[1],"salesforceAccountId":[1,"salesforce-account-id"],"theme":[1],"addressSearchLabel":[1,"address-search-label"],"addressSearchPlaceholder":[1,"address-search-placeholder"],"addresses":[32],"lastAddedKey":[32],"showLoader":[32],"isAddressSearchVisible":[32]},[[0,"addressSelected","onAddressSelected"]],{"pid":["loadAddressesOnPidChange"],"salesforceAccountId":["loadAddressesOnAccountIdChange"],"addresses":["onAddressesChange"]}]]],["p-ea8fa585",[[1,"tet-cloud-configurator",{"language":[1],"containerSelector":[1,"container-selector"],"theme":[1],"selectOnFocus":[4,"select-on-focus"],"isLoading":[32],"headerRef":[32],"footerRef":[32],"formValues":[32],"selectedTab":[32],"selectedPeriod":[32],"isFloatingSummary":[32],"isListExpanded":[32],"parentElement":[32]},null,{"isLoading":["onisLoadingChange"],"headerRef":["onHeaderRefChange"],"footerRef":["onFooterRefChange"],"selectedTab":["onSelectedTabChange"],"language":["onLanguageChange"]}]]],["p-485585a4",[[1,"tet-b2b-service-calculator",{"language":[1],"totalPrice":[32],"withItAdmin":[32],"withInPersonServiceSupport":[32],"unitCountSelected":[32]},[[0,"slider-input","onSliderInput"]],{"language":["onLanguageChange"],"withItAdmin":["onControlChange"],"withInPersonServiceSupport":["onControlChange"]}]]],["p-87ffd0eb",[[1,"tet-cloud-application-form-dialog",{"privacyPolicyLinkUrl":[1,"privacy-policy-link-url"],"loading":[4],"showOverlay":[4,"show-overlay"],"language":[1],"privacyPolicyError":[32],"open":[64],"close":[64]},null,{"language":["onLanguageChange"]}]]],["p-26f16ea5",[[1,"tet-contact-form",{"language":[1],"taskOptions":[16],"submitButtonProps":[16],"showTitle":[4,"show-title"],"showInputLabel":[4,"show-input-label"],"theme":[1],"darkTheme":[4,"dark-theme"],"subtitle":[1],"showLoader":[32]},null,{"language":["onLanguageChange"]}]]],["p-f5041281",[[1,"tet-customer-assets",{"accessToken":[1,"access-token"],"pid":[1],"singleLoader":[4,"single-loader"],"hideAssets":[4,"hide-assets"],"salesforceAccountId":[1,"salesforce-account-id"],"groupByAddress":[4,"group-by-address"],"loaderElementsCount":[2,"loader-elements-count"],"darkTheme":[4,"dark-theme"],"assets":[32],"showLoader":[32]},null,{"pid":["loadAssetsOnPidChange"],"salesforceAccountId":["loadAssetsOnAccountIdChange"],"assets":["onAssetsChange"]}]]],["p-03c4af95",[[1,"tet-datepicker",{"locale":[1],"overlayEffect":[4,"overlay-effect"],"rangePickerMode":[4,"range-picker-mode"],"isOpen":[1028,"is-open"],"date":[1040],"datepickerView":[1025,"datepicker-view"],"rangeDates":[32],"internalDate":[32],"toggleIsOpen":[64]},[[0,"dateChanged","handleDateChanged"],[0,"datepickerViewChanged","handleDatepickerViewChanged"],[0,"internalDateChanged","handleInternalDateChanged"],[0,"rangeDateSet","handleRangeDateSet"],[0,"datepickerClosed","handleDatepickerClosed"],[9,"resize","onWindowResize"],[9,"scroll","onWindowScroll"]],{"date":["handleDateChange"],"rangeDates":["handleRangeDateChange"]}]]],["p-197ee900",[[1,"tet-macd-view",{"language":[1],"theme":[1],"showErrorNotification":[1028,"show-error-notification"],"showLoader":[1028,"show-loader"],"loaderHeight":[1,"loader-height"],"accessToken":[1,"access-token"],"eventsOnly":[4,"events-only"],"hideUnavailable":[4,"hide-unavailable"],"assetId":[1025,"asset-id"],"accountNumber":[1026,"account-number"],"macdOrderTypes":[16],"ignoredMacdOrderTypes":[16],"suspendFn":[16],"changeOfPlanFn":[16],"promotionChangeFn":[16],"ceaseFn":[16],"modifyFn":[16]},null,{"language":["onLanguageChange"],"accessToken":["setAccessToken"],"macdOrderTypes":["setMacdOrderTypes"]}]]],["p-68746ae4",[[1,"tet-autocomplete-dropdown",{"options":[16],"defaultOption":[16],"noOptionsMessage":[1,"no-options-message"],"placeholder":[1],"label":[1],"theme":[1],"hasError":[4,"has-error"],"errorMessage":[1,"error-message"],"inputValue":[32],"clearInput":[64],"focusOnNativeInput":[64]}]]],["p-2ca80353",[[1,"tet-b2b-compare-card",{"theme":[1],"options":[16],"count":[2],"isSelected":[4,"is-selected"],"localCount":[32],"localIsSelected":[32],"isTablet":[32]},null,{"count":["syncCount"],"isSelected":["syncSelected"]}]]],["p-a08b5eb4",[[1,"tet-dynamic-card",{"theme":[1],"size":[1],"sizeChangeBreakpoint":[1,"size-change-breakpoint"],"isInCarousel":[4,"is-in-carousel"],"pictureLayoutShiftPosition":[1,"picture-layout-shift-position"],"cardTitle":[1,"card-title"],"subtitle":[1],"tags":[16],"dateTag":[1,"date-tag"],"dateTagColorLight":[1,"date-tag-color-light"],"dateTagColorDark":[1,"date-tag-color-dark"],"priceTagOptions":[16],"linkType":[1,"link-type"],"linkHref":[1,"link-href"],"linkText":[1,"link-text"],"linkNewTab":[4,"link-new-tab"],"modalId":[1,"modal-id"],"index":[2],"isFocused":[32],"originalSize":[32],"currentSize":[32]},null,{"theme":["onThemeChanged"],"size":["onSizeChange"]}]]],["p-6c7df4e7",[[1,"tet-filter",{"theme":[1],"clearFilterButtonTitle":[1,"clear-filter-button-title"],"showClearFilterButton":[4,"show-clear-filter-button"],"tags":[16],"filterState":[32]},null,{"tags":["tagsWatchHandler"]}]]],["p-1136da92",[[1,"tet-multi-step-dialog",{"content":[1],"steps":[16],"isOpen":[4,"is-open"],"dialogDataScreenKey":[1,"dialog-data-screen-key"],"tetDialogClass":[1,"tet-dialog-class"],"language":[1],"isKeydownFocus":[32]}]]],["p-df32fe4e",[[1,"tet-news-card-list",{"items":[16],"withControls":[4,"with-controls"],"scrollFullWidth":[4,"scroll-full-width"],"controlScrollAmount":[2,"control-scroll-amount"],"initialScrollAmount":[2,"initial-scroll-amount"],"disableScroll":[4,"disable-scroll"],"withScrollbar":[4,"with-scrollbar"],"withMouseDrag":[4,"with-mouse-drag"],"withVirtualScroll":[4,"with-virtual-scroll"],"theme":[1]}]]],["p-d37c404e",[[1,"tet-referral",{"theme":[1],"language":[1],"data":[1]},null,{"language":["onLanguageChange"]}]]],["p-48b5a7d3",[[1,"tet-thank-you-view",{"stepperData":[16],"theme":[1],"mainBlockIcon":[1,"main-block-icon"],"mainBlockTitle":[1,"main-block-title"],"mainBlockDescription":[1,"main-block-description"],"ctaButtonLabel":[1,"cta-button-label"],"ctaButtonSize":[1,"cta-button-size"],"ctaButtonDescription":[1,"cta-button-description"],"ctaButtonType":[1,"cta-button-type"]}]]],["p-d9668257",[[1,"tet-thank-you-view-v2",{"stepperData":[16],"icon":[1],"mainBlockTitle":[1,"main-block-title"],"mainBlockDescription":[1,"main-block-description"],"ctaButtonLabel":[1,"cta-button-label"],"ctaButtonId":[1,"cta-button-id"],"ctaButtonSize":[1,"cta-button-size"],"ctaButtonType":[1,"cta-button-type"],"ctaButtonTheme":[1,"cta-button-theme"],"language":[1],"translationGroup":[1,"translation-group"],"theme":[1]},null,{"language":["onLanguageChange"]}]]],["p-676b0b24",[[1,"tet-thank-you-view-v3",{"stepperData":[16],"icon":[1],"mainBlockTitle":[1,"main-block-title"],"mainBlockDescription":[1,"main-block-description"],"ctaButtonLabel":[1,"cta-button-label"],"ctaButtonId":[1,"cta-button-id"],"ctaButtonSize":[1,"cta-button-size"],"ctaButtonType":[1,"cta-button-type"],"ctaButtonTheme":[1,"cta-button-theme"],"language":[1],"translationGroup":[1,"translation-group"],"theme":[1]},null,{"language":["onLanguageChange"]}]]],["p-8549fb81",[[1,"tet-business-compare-card",{"mainTitle":[1,"main-title"],"bulletPoints":[16],"pricePrefix":[1,"price-prefix"],"price":[1],"currency":[1],"theme":[1],"hasContentInFooter":[32]}]]],["p-980f860c",[[1,"tet-carousel",{"theme":[1],"showDots":[4,"show-dots"],"showButtons":[4,"show-buttons"],"transitionDuration":[2,"transition-duration"],"swipeThreshold":[2,"swipe-threshold"],"transitionTiming":[1,"transition-timing"],"buttonIconLeft":[1,"button-icon-left"],"buttonIconRight":[1,"button-icon-right"],"containerClass":[1,"container-class"],"trackClass":[1,"track-class"],"buttonClass":[1,"button-class"],"dotClass":[1,"dot-class"],"activeIndex":[32],"screenCount":[32],"totalItems":[32],"items":[32],"isDragging":[32],"dragOffset":[32]}]]],["p-ead4025d",[[1,"tet-expandable-input",{"class":[1,"input-class"],"placeholder":[1,"input-placeholder"],"value":[1,"input-value"],"disabled":[4,"input-disabled"],"accessibilityLabel":[1,"accessibility-label"],"mode":[1],"closedWidth":[1,"closed-width"],"animationDuration":[2,"animation-duration"],"error":[4],"iconLeft":[1,"icon-left"],"iconRight":[1,"icon-right"],"iconRightClickCallback":[16],"validators":[16],"manualValidation":[4,"manual-validation"],"theme":[1],"size":[1],"closeInputText":[1,"close-input-text"],"darkMode":[4,"dark-mode"],"expanded":[32],"hasInputValue":[32],"getInputHtmlElement":[64],"getErrors":[64],"validateInput":[64],"setState":[64],"clear":[64]},[[0,"blur","onBlur"],[0,"focus","onFocus"]],{"mode":["onModeChange"],"size":["onSizeChange"]}]]],["p-ac6aaa07",[[2,"tet-table",{"caption":[1],"cellTextAlign":[1,"cell-text-align"],"tableHeader":[1,"table-header"],"tableHeaderTextAlign":[1,"table-header-text-align"],"tableHeaderColumnSpan":[2,"table-header-column-span"],"tableHeaderWidth":[1,"table-header-width"],"tableData":[1040],"gappedColumnLayout":[4,"gapped-column-layout"],"theme":[1],"normalizedColumns":[32]},null,{"tableData":["onTableDataChange"]}]]],["p-13f71bf4",[[1,"tet-accordion",{"isOpen":[1540,"is-open"],"theme":[1],"header":[1],"headerImageSrc":[1,"header-image-src"],"headerImageAlt":[1,"header-image-alt"],"withBorder":[4,"with-border"],"withAutoScroll":[4,"with-auto-scroll"],"breakpoint":[1],"headingTag":[1,"heading-tag"],"transparentBackground":[4,"transparent-background"],"open":[64],"close":[64],"toggle":[64],"getState":[64],"setState":[64]}]]],["p-dcf94caa",[[0,"tet-banner-nav",{"slides":[2],"duration":[2],"paused":[4],"mobileLayout":[4,"mobile-layout"],"theme":[1],"language":[1],"isPaused":[32],"currentSlide":[32],"firstLoad":[32],"pause":[64],"play":[64],"goTo":[64],"next":[64],"previous":[64],"getCurrentSlide":[64]},null,{"paused":["onPausedStateChange"],"language":["onLanguageChange"]}]]],["p-b3eaef40",[[1,"tet-business-lines",{"language":[1],"addressKey":[2,"address-key"],"showHeadings":[4,"show-headings"],"address":[32],"businessLines":[32]},null,{"language":["onLanguageChange"],"addressKey":["onAddressKeyChange"]}]]],["p-b6682ae8",[[0,"tet-business-round-stepper",{"stepperData":[16],"layout":[1],"theme":[1]}]]],["p-b0ad6fa8",[[1,"tet-inline-message",{"variant":[1],"theme":[1]}]]],["p-bc926fb5",[[1,"tet-label",{"labelTitle":[1,"label-title"],"translateTitle":[4,"translate-title"],"active":[4],"theme":[1],"type":[1],"showIcon":[4,"show-icon"]}]]],["p-0c2a6941",[[1,"tet-menu",{"type":[1],"active":[4],"clickable":[4],"firstLevelTitle":[1,"first-level-title"],"firstLevelId":[1,"first-level-id"],"firstLevelLink":[1,"first-level-link"],"firstLevelIcon":[1,"first-level-icon"],"subLevels":[16],"darkMode":[4,"dark-mode"],"isSubmenuLeft":[32]},[[9,"resize","onWindowResize"]]]]],["p-8ba094c1",[[1,"tet-menu-mobile",{"isActive":[4,"active"],"firstLevelTitle":[1,"first-level-title"],"firstLevelLink":[1,"first-level-link"],"firstLevelId":[1,"first-level-id"],"subLevels":[16],"darkMode":[4,"dark-mode"],"isExpanded":[32],"hasDropdownContent":[32],"subMenuState":[32]}]]],["p-e9954f34",[[1,"tet-navigation-mobile",{"darkMode":[4,"dark-mode"],"isTogglerExpanded":[32],"isTogglerVisible":[32],"showToggler":[64],"hideToggler":[64],"open":[64],"close":[64]},null,{"isTogglerExpanded":["onMenuToggle"]}]]],["p-a46f25c3",[[1,"tet-round-stepper",{"stepperData":[16],"forcedColumn":[4,"forced-column"],"hideIcons":[4,"hide-icons"],"theme":[1]},[[9,"resize","onResize"]]]]],["p-4a727593",[[1,"tet-tv-gift-list",{"header":[1],"listBulletIcon":[1,"list-bullet-icon"],"imageSource":[1,"image-source"],"list":[16],"containerSize":[32]},[[9,"resize","onWindowResize"]]]]],["p-ad723a83",[[1,"tet-bar-graph",{"parentContainer":[1040],"data":[16],"minValue":[2,"min-value"],"maxValue":[2,"max-value"],"valueUnit":[1,"value-unit"],"labelPosition":[1,"label-position"],"valuePosition":[1,"value-position"],"dataOrder":[1,"data-order"],"withGrid":[4,"with-grid"],"animationDuration":[2,"animation-duration"],"size":[1],"theme":[1],"displayData":[32],"componentSize":[32],"labelWidth":[32]},[[9,"resize","onWindowResize"]],{"size":["onSizeChange"],"dataOrder":["onDataOrderChange"],"data":["onDataChange"],"minValue":["onMinValueChange"],"maxValue":["onMaxValueChange"]}]]],["p-0fae2728",[[1,"tet-border-radius"]]],["p-96f2711a",[[1,"tet-business-card",{"mainTitle":[1,"main-title"],"subTitle":[1,"sub-title"],"infoText":[1,"info-text"],"type":[1],"theme":[1],"size":[32]}]]],["p-591e3ca4",[[1,"tet-colors",{"showVariables":[4,"show-variables"],"darkTheme":[4,"dark-theme"]}]]],["p-ac67729e",[[1,"tet-contact-info",{"contactBlocks":[16]}]]],["p-508d175a",[[1,"tet-expansion-panel",{"toggleElement":[1025,"toggle-element"],"initialState":[1,"initial-state"],"state":[32],"open":[64],"close":[64],"toggle":[64],"getState":[64]}]]],["p-11ea277a",[[1,"tet-font-weight"]]],["p-87f2a02b",[[1,"tet-fonts"]]],["p-01075934",[[0,"tet-grid"]]],["p-4062c7ca",[[1,"tet-layout"]]],["p-39d45208",[[1,"tet-link"]]],["p-8f5cd321",[[1,"tet-spacing"]]],["p-35c6bef5",[[1,"tet-textarea",{"value":[1],"label":[1],"placeholder":[1],"disabled":[4],"errorMessages":[16],"theme":[1],"isKeyboardFocus":[32],"focusVisible":[32]},[[8,"keydown","onKeyDown"],[9,"mousedown","onMouseDown"]]]]],["p-7a5830a7",[[1,"tet-tv-gift-block",{"headerTitle":[1,"header-title"],"headerImageSrc":[1,"header-image-src"],"footerTitle":[1,"footer-title"],"footerText":[1,"footer-text"],"containerSize":[32]},[[9,"resize","onWindowResize"]]]]],["p-f016eeee",[[1,"tet-icon",{"name":[1],"theme":[1],"type":[1],"useDefaultColor":[4,"use-default-color"],"accessibilityLabel":[1,"accessibility-label"],"focusable":[4]},null,{"name":["onNameChange"]}]]],["p-9d795baf",[[1,"tet-card-list",{"theme":[1],"withControls":[4,"with-controls"],"controlScrollAmount":[2,"control-scroll-amount"],"scrollFullWidth":[4,"scroll-full-width"],"initialScrollAmount":[2,"initial-scroll-amount"],"disableScroll":[4,"disable-scroll"],"withScrollbar":[4,"with-scrollbar"],"withOverflowOpacity":[4,"with-overflow-opacity"],"overflowOpacityMinWidth":[1,"overflow-opacity-min-width"],"withMouseDrag":[4,"with-mouse-drag"],"withVirtualScroll":[4,"with-virtual-scroll"],"withActiveElement":[4,"with-active-element"],"activeElementClass":[1,"active-element-class"],"scrollAnimationSpeed":[2,"scroll-animation-speed"],"iconPrev":[1,"icon-prev"],"iconNext":[1,"icon-next"],"controlVisibility":[32],"scrollThumbWidth":[32],"isSmallContainer":[32],"scrollListTo":[64],"scrollListBy":[64],"scrollListToElementCenter":[64]},[[9,"resize","onResize"]],{"withMouseDrag":["onWithMouseDragChange"],"disableScroll":["onDisableScrollChange"],"withControls":["onWithControlsChange"],"withOverflowOpacity":["onWithOverflowOpacityChange"],"withVirtualScroll":["onWithVirtualScrollChange"]}]]],["p-fe1f5799",[[1,"tet-number-input",{"label":[1],"theme":[1],"accessibilityLabel":[1,"accessibility-label"],"buttonAccessibilityLabel":[1,"button-accessibility-label"],"helperText":[1,"helper-text"],"suffixes":[16],"value":[1026],"min":[2],"max":[2],"disabled":[4],"error":[4],"completed":[4],"selectOnFocus":[4,"select-on-focus"],"suffix":[32],"isOpen":[32],"isValueHidden":[32],"isKeyboardFocus":[32],"getValue":[64],"resetSuffix":[64]},[[0,"keydown","onKeydown"],[8,"keydown","onTabKeydown"],[0,"focus","onFocus"],[8,"click","onClick"],[0,"input","inputChangeHandler"],[0,"blur","onBlur"]],{"suffix":["onSuffixChange"]}]]],["p-e9c467c4",[[1,"tet-notification",{"icon":[1],"headerTitle":[1,"header-title"],"content":[1],"type":[1],"allowClose":[4,"allow-close"],"theme":[1],"animationDuration":[2,"animation-duration"],"close":[64]}]]],["p-4a57690d",[[1,"tet-stepper-v2",{"stepperData":[16],"theme":[1]}]]],["p-fb60b92b",[[1,"tet-stepper-v3",{"stepperData":[16],"theme":[1]}]]],["p-0790dea0",[[1,"tet-price-view",{"background":[1],"font":[1],"size":[1],"headingText":[1,"heading-text"],"priceType":[1,"price-type"],"euroPrice":[1,"euro-price"],"centsPrice":[1,"cents-price"],"footerText":[1,"footer-text"],"footerTextType":[1,"footer-text-type"]}]]],["p-b3335236",[[1,"tet-stepper",{"stepperData":[16]}]]],["p-a05c7ddf",[[1,"tet-placeholder",{"width":[1],"height":[1],"darkTheme":[4,"dark-theme"]}]]],["p-b9905359",[[17,"tet-button",{"clickCallback":[16],"size":[1],"type":[1],"theme":[1],"disabled":[4],"iconMode":[4,"icon-mode"],"iconPosition":[1,"icon-position"],"iconName":[1,"icon-name"],"elementId":[1,"element-id"],"accessibilityLabel":[1,"accessibility-label"],"url":[1],"urlTarget":[1,"url-target"]}]]],["p-905bf6b2",[[1,"tet-compare-cards",{"data":[1040],"vatText":[1,"vat-text"],"forceColumn":[4,"force-column"],"theme":[1],"layout":[1],"cardScript":[1,"card-script"],"newUrlGeneratorStructure":[4,"new-url-generator-structure"],"changedProductCode":[1,"changed-product-code"],"isNetflixCard":[4,"is-netflix-card"],"darkMode":[4,"dark-mode"],"initializedState":[32],"showLoader":[32]},[[0,"optionSelected","onOptionSelected"]],{"data":["onDataChange"]}],[1,"tet-tab-content",{"dataName":[1,"data-name"],"defaultTab":[8,"default-tab"],"parentContainer":[16],"useVisibility":[4,"use-visibility"],"selectedId":[32],"previousDataName":[32],"previousParentContainer":[32],"theme":[32],"init":[64],"selectTab":[64]},null,{"dataName":["onDataNameChange"],"parentContainer":["onParentContainerChange"]}]]],["p-aea275f4",[[1,"tet-address-search",{"language":[1],"minSearchKeywordLength":[2,"min-search-keyword-length"],"placeholder":[1],"label":[1],"accessibilityLabel":[1,"accessibility-label"],"addressKey":[1,"address-key"],"newStyle":[4,"new-style"],"newFormsStyle":[4,"new-forms-style"],"redesignedStyle":[4,"redesigned-style"],"theme":[1],"manualAddressTriggers":[4,"manual-address-triggers"],"isInputInvalid":[4,"is-input-invalid"],"inputDisabled":[1028,"input-disabled"],"searchButtonText":[1,"search-button-text"],"closeButtonText":[1,"close-button-text"],"inputIconRight":[32],"inputValueLength":[32],"isLoading":[32],"isKeyboardFocus":[32],"focusVisible":[32],"elementActive":[32],"resetInputState":[64]},[[8,"keydown","onKeyDown"]],{"language":["onLanguageChanged"],"addressKey":["search"],"inputDisabled":["onInputDisabledStateChange"]}]]],["p-9a5c17c2",[[1,"tet-range-slider",{"parentContainer":[1040],"minValue":[2,"min-value"],"maxValue":[2,"max-value"],"inputMaxValue":[2,"input-max-value"],"defaultValue":[2,"default-value"],"step":[2],"dataPoints":[16],"displayDataPoints":[16],"lockToDataPoint":[4,"lock-to-data-point"],"type":[1],"withControls":[4,"with-controls"],"withInput":[4,"with-input"],"withCurrentStepCounter":[4,"with-current-step-counter"],"dataUnits":[1,"data-units"],"size":[1],"reduceButtonAccessibilityLabel":[1,"reduce-button-accessibility-label"],"addButtonAccessibilityLabel":[1,"add-button-accessibility-label"],"numberInputAccessibilityLabel":[1,"number-input-accessibility-label"],"sliderInputAccessibilityLabel":[1,"slider-input-accessibility-label"],"theme":[1],"currentValue":[32],"dataSet":[32],"containerSize":[32],"tooltipOffset":[32],"isSliding":[32],"isPointerDown":[32],"positions":[32]},[[9,"resize","onWindowResize"]],{"dataPoints":["onDataPointsChange"],"type":["onTypeChange"],"currentValue":["onCurrentValueChange"],"size":["onSizeChange"]}],[1,"tet-switch",{"theme":[1],"label":[1],"accessibilityLabel":[1,"accessibility-label"],"name":[1],"value":[8],"disabled":[4],"checked":[1540],"setChecked":[64]}]]],["p-be3b00a4",[[1,"tet-stepper-input",{"value":[1026],"theme":[1],"min":[2],"max":[2],"step":[2],"selectOnFocus":[4,"select-on-focus"],"accessibilityLabel":[1,"accessibility-label"],"language":[1],"getValue":[64]},[[0,"keydown","onKeydown"],[0,"focus","onFocus"],[0,"input","inputChangeHandler"]],{"language":["onLanguageChange"],"value":["onValueChange"]}]]],["p-8e4d05ef",[[1,"tet-text-list",{"listType":[1,"list-type"],"decimalStart":[2,"decimal-start"],"decimalPrefix":[1,"decimal-prefix"],"withIcon":[4,"with-icon"],"listIcon":[1,"list-icon"],"theme":[1]}]]],["p-8f0e5262",[[6,"tet-radio",{"theme":[1],"label":[1],"accessibilityLabel":[1,"accessibility-label"],"name":[1],"value":[8],"disabled":[4],"checked":[1540],"inputAutofocus":[4,"input-autofocus"],"setChecked":[64]},[[0,"keydown","onKeydown"]]]]],["p-da104dae",[[1,"tet-tab-header",{"theme":[1],"darkMode":[4,"dark-mode"],"type":[1],"position":[1],"sizing":[1],"defaultTab":[8,"default-tab"],"segmented":[4],"hideHeaderUnderline":[4,"hide-header-underline"],"hideActiveHeaderUnderline":[4,"hide-active-header-underline"],"autoplayDelay":[2,"autoplay-delay"],"stopAutoplayOnHeaderHover":[4,"stop-autoplay-on-header-hover"],"stopAutoplayOnContentHover":[4,"stop-autoplay-on-content-hover"],"dataName":[1,"data-name"],"selectedId":[32],"positions":[32],"autoplay":[32],"idSuffix":[32],"segmentAnimation":[32],"toggleAutoplay":[64],"stopAutoplay":[64],"startAutoplay":[64],"selectTab":[64]},null,{"hideActiveHeaderUnderline":["showActiveHeaderUnderline"],"autoplayDelay":["onAutoplayDelayChange"],"segmented":["onSegmentedChange"]}]]],["p-6bb8bea4",[[1,"tet-dialog",{"headerTitle":[1,"header-title"],"isOpen":[1540,"is-open"],"theme":[1],"closeOnOverlayClick":[4,"close-on-overlay-click"],"closeOnEscape":[4,"close-on-escape"],"preventDefaultClose":[4,"prevent-default-close"],"footerDisplay":[1,"footer-display"],"hideCloseButton":[4,"hide-close-button"],"showHeaderDivider":[4,"show-header-divider"],"hideHeader":[4,"hide-header"],"titleId":[1,"title-id"],"open":[64],"close":[64]},[[8,"keydown","handleKeyDown"]],{"isOpen":["onDialogOpenAction"]}]]],["p-2efe016c",[[1,"tet-tooltip",{"theme":[1],"targetElementSelector":[1,"target-element-selector"],"hoverElement":[16],"doNotShowOnHover":[4,"do-not-show-on-hover"],"position":[1],"positionState":[32],"showTooltip":[32],"show":[64],"hide":[64],"toggle":[64]},[[16,"touchmove","handleTouchmove"],[16,"wheel","handleWheel"],[16,"keydown","onKeydown"],[9,"resize","handleResize"]],{"position":["handlePositionChange"],"showTooltip":["onShowTooltipChange"]}]]],["p-61ef2ac7",[[1,"tet-loader"]]],["p-ac79a2a0",[[1,"tet-address-offers",{"addressKey":[8,"address-key"],"catalog":[16],"theme":[1],"darkMode":[4,"dark-mode"],"termText":[1,"term-text"],"formParameters":[1,"form-parameters"],"language":[1],"allowedTvProductCodes":[16],"showLoader":[32],"subcategoryProductFilters":[32]},null,{"addressKey":["onAddressKeyChange"],"language":["onLanguageChanged"]}],[1,"tet-availability-contact-form",{"language":[1],"taskOptions":[16],"submitButtonProps":[16],"showTitle":[4,"show-title"],"showInputLabel":[4,"show-input-label"],"theme":[1],"darkTheme":[4,"dark-theme"],"success":[1028],"showAvailabilityContactForm":[4,"show-availability-contact-form"],"subtitle":[1],"showLoader":[32]},[[0,"taskCreationSuccess","onSuccess"],[4,"emptyCatalog","onEmptyCatalog"]],{"language":["onLanguageChange"]}],[1,"tet-address-offers-filters",{"language":[1],"clearFilterButton":[4,"clear-filter-button"],"theme":[1]},null,{"language":["onLanguageChange"]}],[1,"tet-asset-availability-addresses",{"accessToken":[1,"access-token"],"pid":[1],"salesforceAccountId":[1,"salesforce-account-id"],"theme":[1],"addressSearchLabel":[1,"address-search-label"],"addressSearchPlaceholder":[1,"address-search-placeholder"],"addresses":[32],"lastAddedKey":[32],"showLoader":[32],"unselectAssetAddresses":[64]},null,{"pid":["loadAddressesOnPidChange"],"salesforceAccountId":["loadAddressesOnAccountIdChange"],"addresses":["onAddressesChange"]}]]],["p-f3d6e175",[[1,"tet-datepicker-header",{"locale":[1],"selectedDate":[16],"internalDate":[16],"datepickerView":[1,"datepicker-view"]}],[1,"tet-datepicker-month-view",{"rangeDates":[16],"selectedDate":[16],"internalDate":[16],"rangePickerMode":[4,"range-picker-mode"],"inRangeHoverDate":[32]},null,{"internalDate":["handleDateChange"]}],[1,"tet-datepicker-multi-year-view",{"selectedDate":[16],"internalDate":[16],"years":[32]},null,{"internalDate":["handleInternalDateChange"]}],[1,"tet-datepicker-year-view",{"selectedDate":[16],"internalDate":[16]}]]],["p-69fce42c",[[1,"tet-autocomplete",{"showOptionsOnEscapeClear":[4,"show-options-on-escape-clear"],"defaultOptions":[16],"optionsFilterAction":[16],"typingDebounceTime":[2,"typing-debounce-time"],"noOptionsMessage":[1,"no-options-message"],"noOptionsRenderFunction":[16],"clearCallback":[16],"finishedLoading":[16],"newStyle":[4,"new-style"],"highlightOptionsKeyword":[4,"highlight-options-keyword"],"darkTheme":[4,"dark-theme"],"optionsIcon":[1,"options-icon"],"redesignedStyle":[4,"redesigned-style"],"filteredOptions":[32],"activeOption":[32],"showOptions":[32],"showLoader":[32],"isKeyboardFocus":[32],"clear":[64],"focusOnNativeInput":[64],"selectOption":[64]},[[0,"click","onClick"],[8,"click","onWindowClick"],[9,"mousedown","onMouseDown"],[8,"activeComponentStateChanged","onComponentActiveStateChange"],[0,"keydown","handleKeyDown"],[0,"focusout","handleFocusOut"]]],[1,"tet-spinner",{"theme":[1],"size":[1],"type":[1],"previousProgress":[32],"setProgress":[64]},null,{"type":["onTypeChange"]}]]],["p-3dd6ba70",[[1,"tet-checkbox",{"theme":[1],"label":[1],"name":[1],"value":[8],"disabled":[4],"checked":[1540],"error":[1540],"indeterminate":[1540],"setChecked":[64],"setIndeterminate":[64],"setError":[64]},null,{"indeterminate":["updateIndeterminateState"]}]]],["p-3ebb7712",[[1,"tet-selection-list",{"items":[16],"preSelectedItems":[16],"multipleSelections":[4,"multiple-selections"],"itemRenderFunction":[16],"identifier":[1],"selectedItems":[32],"unsetSelectedItems":[64],"getSelectedItems":[64]},null,{"preSelectedItems":["onPreselectedItemsChanged"]}],[1,"tet-container",{"highlightable":[4],"selected":[4],"theme":[1]}]]],["p-314f8c96",[[6,"tet-input",{"isPhoneNumber":[4,"is-phone-number"],"class":[1,"input-class"],"placeholder":[1,"input-placeholder"],"type":[1,"input-type"],"value":[1,"input-value"],"disabled":[4,"input-disabled"],"readonly":[4,"input-readonly"],"error":[4],"label":[1],"accessibilityLabel":[1,"accessibility-label"],"iconLeft":[1,"icon-left"],"iconRight":[1,"icon-right"],"iconLeftClickCallback":[16],"iconRightClickCallback":[16],"validators":[16],"manualValidation":[4,"manual-validation"],"theme":[1],"autocomplete":[1],"maxlength":[1],"inputTabindex":[2,"input-tabindex"],"errorMessages":[32],"isKeyboardFocus":[32],"focusVisible":[32],"getInputHtmlElement":[64],"getErrors":[64],"clearErrors":[64],"validateInput":[64]},[[8,"keydown","onKeyDown"],[9,"mousedown","onMouseDown"]]]]],["p-bb7916dd",[[1,"tet-tag-group",{"language":[1],"tags":[16],"theme":[1]}],[1,"tet-tag",{"tagTitle":[1,"tag-title"],"count":[2],"active":[4],"theme":[1],"showIcon":[4,"show-icon"],"disabled":[4],"language":[1]},null,{"language":["onLanguageChange"]}]]],["p-8397c44f",[[1,"tet-address-offers-filters-products",{"language":[1],"clearFilterButton":[4,"clear-filter-button"],"theme":[1],"catalog":[16],"productCodes":[16],"category":[16],"subcategoryId":[1,"subcategory-id"],"availableTvProducts":[32],"activeTvFilters":[32]},null,{"language":["onLanguageChange"],"catalog":["onDataChange"],"category":["onDataChange"],"productCodes":["onProductCodesChanged"]}],[1,"tet-compare-card",{"clickCallback":[16],"index":[2],"cardType":[1,"card-type"],"theme":[1],"colorIcons":[4,"color-icons"],"fullHeight":[4,"full-height"],"bestChoice":[4,"best-choice"],"cardHeader":[1,"card-header"],"logo":[1],"image":[1],"thumbnail":[1],"thumbnailAlt":[1,"thumbnail-alt"],"language":[1],"options":[16],"minWideWidth":[2,"min-wide-width"],"cardList":[4,"card-list"],"cardBackgroundColor":[1,"card-background-color"],"cardScript":[1,"card-script"],"parentContainer":[16],"hideBestChoiceBorder":[4,"hide-best-choice-border"],"withBorder":[4,"with-border"],"priceShownVertically":[4,"price-shown-vertically"],"bestChoiceTextPosition":[1,"best-choice-text-position"],"bestChoiceTextFloating":[4,"best-choice-text-floating"],"secondaryLinkPosition":[1,"secondary-link-position"],"showBulletPoints":[4,"show-bullet-points"],"showSubTitle":[4,"show-sub-title"],"showHelper":[4,"show-helper"],"isNetflixCard":[4,"is-netflix-card"],"darkMode":[4,"dark-mode"],"currentCardType":[32]},[[0,"click","onClick"]]],[1,"tet-dropdown",{"label":[1],"labelLogo":[1,"label-logo"],"labelLogoGrayscale":[1,"label-logo-grayscale"],"labelRight":[1,"label-right"],"labelRightColor":[1,"label-right-color"],"labelSubText":[1,"label-sub-text"],"flexLayout":[4,"flex-layout"],"buttonLabel":[1,"button-label"],"allowMultiple":[4,"allow-multiple"],"closeOnSelection":[4,"close-on-selection"],"theme":[1],"options":[16],"disabled":[4],"selectedOptionIndexes":[32],"isOpen":[32],"isKeyboardFocus":[32],"getSelectedOptions":[64],"selectOption":[64]},[[8,"click","handleWindowClick"],[8,"focusout","handleFocusOut"]],{"options":["onOptionsChange"]}]]]]'),e))));
1
+ import{p as e,b as t}from"./p-67c5dc0a.js";export{s as setNonce}from"./p-67c5dc0a.js";import{g as a}from"./p-e1255160.js";(()=>{const t=import.meta.url,a={};return""!==t&&(a.resourcesUrl=new URL(".",t).href),e(a)})().then((async e=>(await a(),t(JSON.parse('[["p-7f4b0d9f",[[1,"tet-address-offers-view",{"language":[1],"addressKey":[1,"address-key"],"theme":[1],"userPersonalCode":[1,"user-personal-code"],"showAuthorizedAddresses":[4,"show-authorized-addresses"],"accessToken":[1,"access-token"],"noUserFound":[4,"no-user-found"],"callCenterTaskOptions":[16],"showContactForm":[1028,"show-contact-form"],"termText":[1,"term-text"],"formParameters":[1,"form-parameters"],"accessibilityLabel":[1,"accessibility-label"],"address":[32]},[[0,"assetAddressSelected","onAddressSelected"],[0,"customerNotFound","customerNotFound"],[0,"emptyCatalog","onEmptyCatalog"]],{"language":["onLanguageChange"]}]]],["p-94d85410",[[1,"tet-compare-cards-tab",{"data":[16],"forceColumn":[4,"force-column"],"layout":[1],"newUrlGeneratorStructure":[4,"new-url-generator-structure"],"theme":[1],"darkMode":[4,"dark-mode"],"isNetflixCard":[4,"is-netflix-card"],"darkHeader":[4,"dark-header"],"withProductFilters":[4,"with-product-filters"],"productDataLoaded":[32],"showLoader":[32],"productSACData":[32],"filteredProductCodes":[32]},[[0,"compareCardsDidRender","hideLoader"]],{"showLoader":["onDataChange"]}]]],["p-3f930a68",[[1,"tet-asset-addresses",{"accessToken":[1,"access-token"],"pid":[1],"salesforceAccountId":[1,"salesforce-account-id"],"theme":[1],"addressSearchLabel":[1,"address-search-label"],"addressSearchPlaceholder":[1,"address-search-placeholder"],"addresses":[32],"lastAddedKey":[32],"showLoader":[32],"isAddressSearchVisible":[32]},[[0,"addressSelected","onAddressSelected"]],{"pid":["loadAddressesOnPidChange"],"salesforceAccountId":["loadAddressesOnAccountIdChange"],"addresses":["onAddressesChange"]}]]],["p-ea8fa585",[[1,"tet-cloud-configurator",{"language":[1],"containerSelector":[1,"container-selector"],"theme":[1],"selectOnFocus":[4,"select-on-focus"],"isLoading":[32],"headerRef":[32],"footerRef":[32],"formValues":[32],"selectedTab":[32],"selectedPeriod":[32],"isFloatingSummary":[32],"isListExpanded":[32],"parentElement":[32]},null,{"isLoading":["onisLoadingChange"],"headerRef":["onHeaderRefChange"],"footerRef":["onFooterRefChange"],"selectedTab":["onSelectedTabChange"],"language":["onLanguageChange"]}]]],["p-485585a4",[[1,"tet-b2b-service-calculator",{"language":[1],"totalPrice":[32],"withItAdmin":[32],"withInPersonServiceSupport":[32],"unitCountSelected":[32]},[[0,"slider-input","onSliderInput"]],{"language":["onLanguageChange"],"withItAdmin":["onControlChange"],"withInPersonServiceSupport":["onControlChange"]}]]],["p-87ffd0eb",[[1,"tet-cloud-application-form-dialog",{"privacyPolicyLinkUrl":[1,"privacy-policy-link-url"],"loading":[4],"showOverlay":[4,"show-overlay"],"language":[1],"privacyPolicyError":[32],"open":[64],"close":[64]},null,{"language":["onLanguageChange"]}]]],["p-26f16ea5",[[1,"tet-contact-form",{"language":[1],"taskOptions":[16],"submitButtonProps":[16],"showTitle":[4,"show-title"],"showInputLabel":[4,"show-input-label"],"theme":[1],"darkTheme":[4,"dark-theme"],"subtitle":[1],"showLoader":[32]},null,{"language":["onLanguageChange"]}]]],["p-f5041281",[[1,"tet-customer-assets",{"accessToken":[1,"access-token"],"pid":[1],"singleLoader":[4,"single-loader"],"hideAssets":[4,"hide-assets"],"salesforceAccountId":[1,"salesforce-account-id"],"groupByAddress":[4,"group-by-address"],"loaderElementsCount":[2,"loader-elements-count"],"darkTheme":[4,"dark-theme"],"assets":[32],"showLoader":[32]},null,{"pid":["loadAssetsOnPidChange"],"salesforceAccountId":["loadAssetsOnAccountIdChange"],"assets":["onAssetsChange"]}]]],["p-03c4af95",[[1,"tet-datepicker",{"locale":[1],"overlayEffect":[4,"overlay-effect"],"rangePickerMode":[4,"range-picker-mode"],"isOpen":[1028,"is-open"],"date":[1040],"datepickerView":[1025,"datepicker-view"],"rangeDates":[32],"internalDate":[32],"toggleIsOpen":[64]},[[0,"dateChanged","handleDateChanged"],[0,"datepickerViewChanged","handleDatepickerViewChanged"],[0,"internalDateChanged","handleInternalDateChanged"],[0,"rangeDateSet","handleRangeDateSet"],[0,"datepickerClosed","handleDatepickerClosed"],[9,"resize","onWindowResize"],[9,"scroll","onWindowScroll"]],{"date":["handleDateChange"],"rangeDates":["handleRangeDateChange"]}]]],["p-197ee900",[[1,"tet-macd-view",{"language":[1],"theme":[1],"showErrorNotification":[1028,"show-error-notification"],"showLoader":[1028,"show-loader"],"loaderHeight":[1,"loader-height"],"accessToken":[1,"access-token"],"eventsOnly":[4,"events-only"],"hideUnavailable":[4,"hide-unavailable"],"assetId":[1025,"asset-id"],"accountNumber":[1026,"account-number"],"macdOrderTypes":[16],"ignoredMacdOrderTypes":[16],"suspendFn":[16],"changeOfPlanFn":[16],"promotionChangeFn":[16],"ceaseFn":[16],"modifyFn":[16]},null,{"language":["onLanguageChange"],"accessToken":["setAccessToken"],"macdOrderTypes":["setMacdOrderTypes"]}]]],["p-68746ae4",[[1,"tet-autocomplete-dropdown",{"options":[16],"defaultOption":[16],"noOptionsMessage":[1,"no-options-message"],"placeholder":[1],"label":[1],"theme":[1],"hasError":[4,"has-error"],"errorMessage":[1,"error-message"],"inputValue":[32],"clearInput":[64],"focusOnNativeInput":[64]}]]],["p-2ca80353",[[1,"tet-b2b-compare-card",{"theme":[1],"options":[16],"count":[2],"isSelected":[4,"is-selected"],"localCount":[32],"localIsSelected":[32],"isTablet":[32]},null,{"count":["syncCount"],"isSelected":["syncSelected"]}]]],["p-a08b5eb4",[[1,"tet-dynamic-card",{"theme":[1],"size":[1],"sizeChangeBreakpoint":[1,"size-change-breakpoint"],"isInCarousel":[4,"is-in-carousel"],"pictureLayoutShiftPosition":[1,"picture-layout-shift-position"],"cardTitle":[1,"card-title"],"subtitle":[1],"tags":[16],"dateTag":[1,"date-tag"],"dateTagColorLight":[1,"date-tag-color-light"],"dateTagColorDark":[1,"date-tag-color-dark"],"priceTagOptions":[16],"linkType":[1,"link-type"],"linkHref":[1,"link-href"],"linkText":[1,"link-text"],"linkNewTab":[4,"link-new-tab"],"modalId":[1,"modal-id"],"index":[2],"isFocused":[32],"originalSize":[32],"currentSize":[32]},null,{"theme":["onThemeChanged"],"size":["onSizeChange"]}]]],["p-6c7df4e7",[[1,"tet-filter",{"theme":[1],"clearFilterButtonTitle":[1,"clear-filter-button-title"],"showClearFilterButton":[4,"show-clear-filter-button"],"tags":[16],"filterState":[32]},null,{"tags":["tagsWatchHandler"]}]]],["p-1136da92",[[1,"tet-multi-step-dialog",{"content":[1],"steps":[16],"isOpen":[4,"is-open"],"dialogDataScreenKey":[1,"dialog-data-screen-key"],"tetDialogClass":[1,"tet-dialog-class"],"language":[1],"isKeydownFocus":[32]}]]],["p-df32fe4e",[[1,"tet-news-card-list",{"items":[16],"withControls":[4,"with-controls"],"scrollFullWidth":[4,"scroll-full-width"],"controlScrollAmount":[2,"control-scroll-amount"],"initialScrollAmount":[2,"initial-scroll-amount"],"disableScroll":[4,"disable-scroll"],"withScrollbar":[4,"with-scrollbar"],"withMouseDrag":[4,"with-mouse-drag"],"withVirtualScroll":[4,"with-virtual-scroll"],"theme":[1]}]]],["p-d37c404e",[[1,"tet-referral",{"theme":[1],"language":[1],"data":[1]},null,{"language":["onLanguageChange"]}]]],["p-48b5a7d3",[[1,"tet-thank-you-view",{"stepperData":[16],"theme":[1],"mainBlockIcon":[1,"main-block-icon"],"mainBlockTitle":[1,"main-block-title"],"mainBlockDescription":[1,"main-block-description"],"ctaButtonLabel":[1,"cta-button-label"],"ctaButtonSize":[1,"cta-button-size"],"ctaButtonDescription":[1,"cta-button-description"],"ctaButtonType":[1,"cta-button-type"]}]]],["p-d9668257",[[1,"tet-thank-you-view-v2",{"stepperData":[16],"icon":[1],"mainBlockTitle":[1,"main-block-title"],"mainBlockDescription":[1,"main-block-description"],"ctaButtonLabel":[1,"cta-button-label"],"ctaButtonId":[1,"cta-button-id"],"ctaButtonSize":[1,"cta-button-size"],"ctaButtonType":[1,"cta-button-type"],"ctaButtonTheme":[1,"cta-button-theme"],"language":[1],"translationGroup":[1,"translation-group"],"theme":[1]},null,{"language":["onLanguageChange"]}]]],["p-676b0b24",[[1,"tet-thank-you-view-v3",{"stepperData":[16],"icon":[1],"mainBlockTitle":[1,"main-block-title"],"mainBlockDescription":[1,"main-block-description"],"ctaButtonLabel":[1,"cta-button-label"],"ctaButtonId":[1,"cta-button-id"],"ctaButtonSize":[1,"cta-button-size"],"ctaButtonType":[1,"cta-button-type"],"ctaButtonTheme":[1,"cta-button-theme"],"language":[1],"translationGroup":[1,"translation-group"],"theme":[1]},null,{"language":["onLanguageChange"]}]]],["p-8549fb81",[[1,"tet-business-compare-card",{"mainTitle":[1,"main-title"],"bulletPoints":[16],"pricePrefix":[1,"price-prefix"],"price":[1],"currency":[1],"theme":[1],"hasContentInFooter":[32]}]]],["p-7a476dc5",[[1,"tet-carousel",{"theme":[1],"showDots":[4,"show-dots"],"showButtons":[4,"show-buttons"],"transitionDuration":[2,"transition-duration"],"swipeThreshold":[2,"swipe-threshold"],"transitionTiming":[1,"transition-timing"],"buttonIconLeft":[1,"button-icon-left"],"buttonIconRight":[1,"button-icon-right"],"containerClass":[1,"container-class"],"trackClass":[1,"track-class"],"buttonClass":[1,"button-class"],"dotClass":[1,"dot-class"],"activeIndex":[32],"screenCount":[32],"totalItems":[32],"items":[32],"isDragging":[32],"dragOffset":[32]}]]],["p-ead4025d",[[1,"tet-expandable-input",{"class":[1,"input-class"],"placeholder":[1,"input-placeholder"],"value":[1,"input-value"],"disabled":[4,"input-disabled"],"accessibilityLabel":[1,"accessibility-label"],"mode":[1],"closedWidth":[1,"closed-width"],"animationDuration":[2,"animation-duration"],"error":[4],"iconLeft":[1,"icon-left"],"iconRight":[1,"icon-right"],"iconRightClickCallback":[16],"validators":[16],"manualValidation":[4,"manual-validation"],"theme":[1],"size":[1],"closeInputText":[1,"close-input-text"],"darkMode":[4,"dark-mode"],"expanded":[32],"hasInputValue":[32],"getInputHtmlElement":[64],"getErrors":[64],"validateInput":[64],"setState":[64],"clear":[64]},[[0,"blur","onBlur"],[0,"focus","onFocus"]],{"mode":["onModeChange"],"size":["onSizeChange"]}]]],["p-ac6aaa07",[[2,"tet-table",{"caption":[1],"cellTextAlign":[1,"cell-text-align"],"tableHeader":[1,"table-header"],"tableHeaderTextAlign":[1,"table-header-text-align"],"tableHeaderColumnSpan":[2,"table-header-column-span"],"tableHeaderWidth":[1,"table-header-width"],"tableData":[1040],"gappedColumnLayout":[4,"gapped-column-layout"],"theme":[1],"normalizedColumns":[32]},null,{"tableData":["onTableDataChange"]}]]],["p-13f71bf4",[[1,"tet-accordion",{"isOpen":[1540,"is-open"],"theme":[1],"header":[1],"headerImageSrc":[1,"header-image-src"],"headerImageAlt":[1,"header-image-alt"],"withBorder":[4,"with-border"],"withAutoScroll":[4,"with-auto-scroll"],"breakpoint":[1],"headingTag":[1,"heading-tag"],"transparentBackground":[4,"transparent-background"],"open":[64],"close":[64],"toggle":[64],"getState":[64],"setState":[64]}]]],["p-dcf94caa",[[0,"tet-banner-nav",{"slides":[2],"duration":[2],"paused":[4],"mobileLayout":[4,"mobile-layout"],"theme":[1],"language":[1],"isPaused":[32],"currentSlide":[32],"firstLoad":[32],"pause":[64],"play":[64],"goTo":[64],"next":[64],"previous":[64],"getCurrentSlide":[64]},null,{"paused":["onPausedStateChange"],"language":["onLanguageChange"]}]]],["p-b3eaef40",[[1,"tet-business-lines",{"language":[1],"addressKey":[2,"address-key"],"showHeadings":[4,"show-headings"],"address":[32],"businessLines":[32]},null,{"language":["onLanguageChange"],"addressKey":["onAddressKeyChange"]}]]],["p-b6682ae8",[[0,"tet-business-round-stepper",{"stepperData":[16],"layout":[1],"theme":[1]}]]],["p-b0ad6fa8",[[1,"tet-inline-message",{"variant":[1],"theme":[1]}]]],["p-bc926fb5",[[1,"tet-label",{"labelTitle":[1,"label-title"],"translateTitle":[4,"translate-title"],"active":[4],"theme":[1],"type":[1],"showIcon":[4,"show-icon"]}]]],["p-0c2a6941",[[1,"tet-menu",{"type":[1],"active":[4],"clickable":[4],"firstLevelTitle":[1,"first-level-title"],"firstLevelId":[1,"first-level-id"],"firstLevelLink":[1,"first-level-link"],"firstLevelIcon":[1,"first-level-icon"],"subLevels":[16],"darkMode":[4,"dark-mode"],"isSubmenuLeft":[32]},[[9,"resize","onWindowResize"]]]]],["p-8ba094c1",[[1,"tet-menu-mobile",{"isActive":[4,"active"],"firstLevelTitle":[1,"first-level-title"],"firstLevelLink":[1,"first-level-link"],"firstLevelId":[1,"first-level-id"],"subLevels":[16],"darkMode":[4,"dark-mode"],"isExpanded":[32],"hasDropdownContent":[32],"subMenuState":[32]}]]],["p-e9954f34",[[1,"tet-navigation-mobile",{"darkMode":[4,"dark-mode"],"isTogglerExpanded":[32],"isTogglerVisible":[32],"showToggler":[64],"hideToggler":[64],"open":[64],"close":[64]},null,{"isTogglerExpanded":["onMenuToggle"]}]]],["p-a46f25c3",[[1,"tet-round-stepper",{"stepperData":[16],"forcedColumn":[4,"forced-column"],"hideIcons":[4,"hide-icons"],"theme":[1]},[[9,"resize","onResize"]]]]],["p-4a727593",[[1,"tet-tv-gift-list",{"header":[1],"listBulletIcon":[1,"list-bullet-icon"],"imageSource":[1,"image-source"],"list":[16],"containerSize":[32]},[[9,"resize","onWindowResize"]]]]],["p-ad723a83",[[1,"tet-bar-graph",{"parentContainer":[1040],"data":[16],"minValue":[2,"min-value"],"maxValue":[2,"max-value"],"valueUnit":[1,"value-unit"],"labelPosition":[1,"label-position"],"valuePosition":[1,"value-position"],"dataOrder":[1,"data-order"],"withGrid":[4,"with-grid"],"animationDuration":[2,"animation-duration"],"size":[1],"theme":[1],"displayData":[32],"componentSize":[32],"labelWidth":[32]},[[9,"resize","onWindowResize"]],{"size":["onSizeChange"],"dataOrder":["onDataOrderChange"],"data":["onDataChange"],"minValue":["onMinValueChange"],"maxValue":["onMaxValueChange"]}]]],["p-0fae2728",[[1,"tet-border-radius"]]],["p-96f2711a",[[1,"tet-business-card",{"mainTitle":[1,"main-title"],"subTitle":[1,"sub-title"],"infoText":[1,"info-text"],"type":[1],"theme":[1],"size":[32]}]]],["p-591e3ca4",[[1,"tet-colors",{"showVariables":[4,"show-variables"],"darkTheme":[4,"dark-theme"]}]]],["p-ac67729e",[[1,"tet-contact-info",{"contactBlocks":[16]}]]],["p-508d175a",[[1,"tet-expansion-panel",{"toggleElement":[1025,"toggle-element"],"initialState":[1,"initial-state"],"state":[32],"open":[64],"close":[64],"toggle":[64],"getState":[64]}]]],["p-11ea277a",[[1,"tet-font-weight"]]],["p-87f2a02b",[[1,"tet-fonts"]]],["p-01075934",[[0,"tet-grid"]]],["p-4062c7ca",[[1,"tet-layout"]]],["p-39d45208",[[1,"tet-link"]]],["p-8f5cd321",[[1,"tet-spacing"]]],["p-35c6bef5",[[1,"tet-textarea",{"value":[1],"label":[1],"placeholder":[1],"disabled":[4],"errorMessages":[16],"theme":[1],"isKeyboardFocus":[32],"focusVisible":[32]},[[8,"keydown","onKeyDown"],[9,"mousedown","onMouseDown"]]]]],["p-7a5830a7",[[1,"tet-tv-gift-block",{"headerTitle":[1,"header-title"],"headerImageSrc":[1,"header-image-src"],"footerTitle":[1,"footer-title"],"footerText":[1,"footer-text"],"containerSize":[32]},[[9,"resize","onWindowResize"]]]]],["p-f016eeee",[[1,"tet-icon",{"name":[1],"theme":[1],"type":[1],"useDefaultColor":[4,"use-default-color"],"accessibilityLabel":[1,"accessibility-label"],"focusable":[4]},null,{"name":["onNameChange"]}]]],["p-9d795baf",[[1,"tet-card-list",{"theme":[1],"withControls":[4,"with-controls"],"controlScrollAmount":[2,"control-scroll-amount"],"scrollFullWidth":[4,"scroll-full-width"],"initialScrollAmount":[2,"initial-scroll-amount"],"disableScroll":[4,"disable-scroll"],"withScrollbar":[4,"with-scrollbar"],"withOverflowOpacity":[4,"with-overflow-opacity"],"overflowOpacityMinWidth":[1,"overflow-opacity-min-width"],"withMouseDrag":[4,"with-mouse-drag"],"withVirtualScroll":[4,"with-virtual-scroll"],"withActiveElement":[4,"with-active-element"],"activeElementClass":[1,"active-element-class"],"scrollAnimationSpeed":[2,"scroll-animation-speed"],"iconPrev":[1,"icon-prev"],"iconNext":[1,"icon-next"],"controlVisibility":[32],"scrollThumbWidth":[32],"isSmallContainer":[32],"scrollListTo":[64],"scrollListBy":[64],"scrollListToElementCenter":[64]},[[9,"resize","onResize"]],{"withMouseDrag":["onWithMouseDragChange"],"disableScroll":["onDisableScrollChange"],"withControls":["onWithControlsChange"],"withOverflowOpacity":["onWithOverflowOpacityChange"],"withVirtualScroll":["onWithVirtualScrollChange"]}]]],["p-fe1f5799",[[1,"tet-number-input",{"label":[1],"theme":[1],"accessibilityLabel":[1,"accessibility-label"],"buttonAccessibilityLabel":[1,"button-accessibility-label"],"helperText":[1,"helper-text"],"suffixes":[16],"value":[1026],"min":[2],"max":[2],"disabled":[4],"error":[4],"completed":[4],"selectOnFocus":[4,"select-on-focus"],"suffix":[32],"isOpen":[32],"isValueHidden":[32],"isKeyboardFocus":[32],"getValue":[64],"resetSuffix":[64]},[[0,"keydown","onKeydown"],[8,"keydown","onTabKeydown"],[0,"focus","onFocus"],[8,"click","onClick"],[0,"input","inputChangeHandler"],[0,"blur","onBlur"]],{"suffix":["onSuffixChange"]}]]],["p-e9c467c4",[[1,"tet-notification",{"icon":[1],"headerTitle":[1,"header-title"],"content":[1],"type":[1],"allowClose":[4,"allow-close"],"theme":[1],"animationDuration":[2,"animation-duration"],"close":[64]}]]],["p-4a57690d",[[1,"tet-stepper-v2",{"stepperData":[16],"theme":[1]}]]],["p-fb60b92b",[[1,"tet-stepper-v3",{"stepperData":[16],"theme":[1]}]]],["p-0790dea0",[[1,"tet-price-view",{"background":[1],"font":[1],"size":[1],"headingText":[1,"heading-text"],"priceType":[1,"price-type"],"euroPrice":[1,"euro-price"],"centsPrice":[1,"cents-price"],"footerText":[1,"footer-text"],"footerTextType":[1,"footer-text-type"]}]]],["p-b3335236",[[1,"tet-stepper",{"stepperData":[16]}]]],["p-a05c7ddf",[[1,"tet-placeholder",{"width":[1],"height":[1],"darkTheme":[4,"dark-theme"]}]]],["p-b9905359",[[17,"tet-button",{"clickCallback":[16],"size":[1],"type":[1],"theme":[1],"disabled":[4],"iconMode":[4,"icon-mode"],"iconPosition":[1,"icon-position"],"iconName":[1,"icon-name"],"elementId":[1,"element-id"],"accessibilityLabel":[1,"accessibility-label"],"url":[1],"urlTarget":[1,"url-target"]}]]],["p-905bf6b2",[[1,"tet-compare-cards",{"data":[1040],"vatText":[1,"vat-text"],"forceColumn":[4,"force-column"],"theme":[1],"layout":[1],"cardScript":[1,"card-script"],"newUrlGeneratorStructure":[4,"new-url-generator-structure"],"changedProductCode":[1,"changed-product-code"],"isNetflixCard":[4,"is-netflix-card"],"darkMode":[4,"dark-mode"],"initializedState":[32],"showLoader":[32]},[[0,"optionSelected","onOptionSelected"]],{"data":["onDataChange"]}],[1,"tet-tab-content",{"dataName":[1,"data-name"],"defaultTab":[8,"default-tab"],"parentContainer":[16],"useVisibility":[4,"use-visibility"],"selectedId":[32],"previousDataName":[32],"previousParentContainer":[32],"theme":[32],"init":[64],"selectTab":[64]},null,{"dataName":["onDataNameChange"],"parentContainer":["onParentContainerChange"]}]]],["p-aea275f4",[[1,"tet-address-search",{"language":[1],"minSearchKeywordLength":[2,"min-search-keyword-length"],"placeholder":[1],"label":[1],"accessibilityLabel":[1,"accessibility-label"],"addressKey":[1,"address-key"],"newStyle":[4,"new-style"],"newFormsStyle":[4,"new-forms-style"],"redesignedStyle":[4,"redesigned-style"],"theme":[1],"manualAddressTriggers":[4,"manual-address-triggers"],"isInputInvalid":[4,"is-input-invalid"],"inputDisabled":[1028,"input-disabled"],"searchButtonText":[1,"search-button-text"],"closeButtonText":[1,"close-button-text"],"inputIconRight":[32],"inputValueLength":[32],"isLoading":[32],"isKeyboardFocus":[32],"focusVisible":[32],"elementActive":[32],"resetInputState":[64]},[[8,"keydown","onKeyDown"]],{"language":["onLanguageChanged"],"addressKey":["search"],"inputDisabled":["onInputDisabledStateChange"]}]]],["p-9a5c17c2",[[1,"tet-range-slider",{"parentContainer":[1040],"minValue":[2,"min-value"],"maxValue":[2,"max-value"],"inputMaxValue":[2,"input-max-value"],"defaultValue":[2,"default-value"],"step":[2],"dataPoints":[16],"displayDataPoints":[16],"lockToDataPoint":[4,"lock-to-data-point"],"type":[1],"withControls":[4,"with-controls"],"withInput":[4,"with-input"],"withCurrentStepCounter":[4,"with-current-step-counter"],"dataUnits":[1,"data-units"],"size":[1],"reduceButtonAccessibilityLabel":[1,"reduce-button-accessibility-label"],"addButtonAccessibilityLabel":[1,"add-button-accessibility-label"],"numberInputAccessibilityLabel":[1,"number-input-accessibility-label"],"sliderInputAccessibilityLabel":[1,"slider-input-accessibility-label"],"theme":[1],"currentValue":[32],"dataSet":[32],"containerSize":[32],"tooltipOffset":[32],"isSliding":[32],"isPointerDown":[32],"positions":[32]},[[9,"resize","onWindowResize"]],{"dataPoints":["onDataPointsChange"],"type":["onTypeChange"],"currentValue":["onCurrentValueChange"],"size":["onSizeChange"]}],[1,"tet-switch",{"theme":[1],"label":[1],"accessibilityLabel":[1,"accessibility-label"],"name":[1],"value":[8],"disabled":[4],"checked":[1540],"setChecked":[64]}]]],["p-be3b00a4",[[1,"tet-stepper-input",{"value":[1026],"theme":[1],"min":[2],"max":[2],"step":[2],"selectOnFocus":[4,"select-on-focus"],"accessibilityLabel":[1,"accessibility-label"],"language":[1],"getValue":[64]},[[0,"keydown","onKeydown"],[0,"focus","onFocus"],[0,"input","inputChangeHandler"]],{"language":["onLanguageChange"],"value":["onValueChange"]}]]],["p-8e4d05ef",[[1,"tet-text-list",{"listType":[1,"list-type"],"decimalStart":[2,"decimal-start"],"decimalPrefix":[1,"decimal-prefix"],"withIcon":[4,"with-icon"],"listIcon":[1,"list-icon"],"theme":[1]}]]],["p-8f0e5262",[[6,"tet-radio",{"theme":[1],"label":[1],"accessibilityLabel":[1,"accessibility-label"],"name":[1],"value":[8],"disabled":[4],"checked":[1540],"inputAutofocus":[4,"input-autofocus"],"setChecked":[64]},[[0,"keydown","onKeydown"]]]]],["p-da104dae",[[1,"tet-tab-header",{"theme":[1],"darkMode":[4,"dark-mode"],"type":[1],"position":[1],"sizing":[1],"defaultTab":[8,"default-tab"],"segmented":[4],"hideHeaderUnderline":[4,"hide-header-underline"],"hideActiveHeaderUnderline":[4,"hide-active-header-underline"],"autoplayDelay":[2,"autoplay-delay"],"stopAutoplayOnHeaderHover":[4,"stop-autoplay-on-header-hover"],"stopAutoplayOnContentHover":[4,"stop-autoplay-on-content-hover"],"dataName":[1,"data-name"],"selectedId":[32],"positions":[32],"autoplay":[32],"idSuffix":[32],"segmentAnimation":[32],"toggleAutoplay":[64],"stopAutoplay":[64],"startAutoplay":[64],"selectTab":[64]},null,{"hideActiveHeaderUnderline":["showActiveHeaderUnderline"],"autoplayDelay":["onAutoplayDelayChange"],"segmented":["onSegmentedChange"]}]]],["p-6bb8bea4",[[1,"tet-dialog",{"headerTitle":[1,"header-title"],"isOpen":[1540,"is-open"],"theme":[1],"closeOnOverlayClick":[4,"close-on-overlay-click"],"closeOnEscape":[4,"close-on-escape"],"preventDefaultClose":[4,"prevent-default-close"],"footerDisplay":[1,"footer-display"],"hideCloseButton":[4,"hide-close-button"],"showHeaderDivider":[4,"show-header-divider"],"hideHeader":[4,"hide-header"],"titleId":[1,"title-id"],"open":[64],"close":[64]},[[8,"keydown","handleKeyDown"]],{"isOpen":["onDialogOpenAction"]}]]],["p-2efe016c",[[1,"tet-tooltip",{"theme":[1],"targetElementSelector":[1,"target-element-selector"],"hoverElement":[16],"doNotShowOnHover":[4,"do-not-show-on-hover"],"position":[1],"positionState":[32],"showTooltip":[32],"show":[64],"hide":[64],"toggle":[64]},[[16,"touchmove","handleTouchmove"],[16,"wheel","handleWheel"],[16,"keydown","onKeydown"],[9,"resize","handleResize"]],{"position":["handlePositionChange"],"showTooltip":["onShowTooltipChange"]}]]],["p-61ef2ac7",[[1,"tet-loader"]]],["p-ac79a2a0",[[1,"tet-address-offers",{"addressKey":[8,"address-key"],"catalog":[16],"theme":[1],"darkMode":[4,"dark-mode"],"termText":[1,"term-text"],"formParameters":[1,"form-parameters"],"language":[1],"allowedTvProductCodes":[16],"showLoader":[32],"subcategoryProductFilters":[32]},null,{"addressKey":["onAddressKeyChange"],"language":["onLanguageChanged"]}],[1,"tet-availability-contact-form",{"language":[1],"taskOptions":[16],"submitButtonProps":[16],"showTitle":[4,"show-title"],"showInputLabel":[4,"show-input-label"],"theme":[1],"darkTheme":[4,"dark-theme"],"success":[1028],"showAvailabilityContactForm":[4,"show-availability-contact-form"],"subtitle":[1],"showLoader":[32]},[[0,"taskCreationSuccess","onSuccess"],[4,"emptyCatalog","onEmptyCatalog"]],{"language":["onLanguageChange"]}],[1,"tet-address-offers-filters",{"language":[1],"clearFilterButton":[4,"clear-filter-button"],"theme":[1]},null,{"language":["onLanguageChange"]}],[1,"tet-asset-availability-addresses",{"accessToken":[1,"access-token"],"pid":[1],"salesforceAccountId":[1,"salesforce-account-id"],"theme":[1],"addressSearchLabel":[1,"address-search-label"],"addressSearchPlaceholder":[1,"address-search-placeholder"],"addresses":[32],"lastAddedKey":[32],"showLoader":[32],"unselectAssetAddresses":[64]},null,{"pid":["loadAddressesOnPidChange"],"salesforceAccountId":["loadAddressesOnAccountIdChange"],"addresses":["onAddressesChange"]}]]],["p-f3d6e175",[[1,"tet-datepicker-header",{"locale":[1],"selectedDate":[16],"internalDate":[16],"datepickerView":[1,"datepicker-view"]}],[1,"tet-datepicker-month-view",{"rangeDates":[16],"selectedDate":[16],"internalDate":[16],"rangePickerMode":[4,"range-picker-mode"],"inRangeHoverDate":[32]},null,{"internalDate":["handleDateChange"]}],[1,"tet-datepicker-multi-year-view",{"selectedDate":[16],"internalDate":[16],"years":[32]},null,{"internalDate":["handleInternalDateChange"]}],[1,"tet-datepicker-year-view",{"selectedDate":[16],"internalDate":[16]}]]],["p-69fce42c",[[1,"tet-autocomplete",{"showOptionsOnEscapeClear":[4,"show-options-on-escape-clear"],"defaultOptions":[16],"optionsFilterAction":[16],"typingDebounceTime":[2,"typing-debounce-time"],"noOptionsMessage":[1,"no-options-message"],"noOptionsRenderFunction":[16],"clearCallback":[16],"finishedLoading":[16],"newStyle":[4,"new-style"],"highlightOptionsKeyword":[4,"highlight-options-keyword"],"darkTheme":[4,"dark-theme"],"optionsIcon":[1,"options-icon"],"redesignedStyle":[4,"redesigned-style"],"filteredOptions":[32],"activeOption":[32],"showOptions":[32],"showLoader":[32],"isKeyboardFocus":[32],"clear":[64],"focusOnNativeInput":[64],"selectOption":[64]},[[0,"click","onClick"],[8,"click","onWindowClick"],[9,"mousedown","onMouseDown"],[8,"activeComponentStateChanged","onComponentActiveStateChange"],[0,"keydown","handleKeyDown"],[0,"focusout","handleFocusOut"]]],[1,"tet-spinner",{"theme":[1],"size":[1],"type":[1],"previousProgress":[32],"setProgress":[64]},null,{"type":["onTypeChange"]}]]],["p-3dd6ba70",[[1,"tet-checkbox",{"theme":[1],"label":[1],"name":[1],"value":[8],"disabled":[4],"checked":[1540],"error":[1540],"indeterminate":[1540],"setChecked":[64],"setIndeterminate":[64],"setError":[64]},null,{"indeterminate":["updateIndeterminateState"]}]]],["p-3ebb7712",[[1,"tet-selection-list",{"items":[16],"preSelectedItems":[16],"multipleSelections":[4,"multiple-selections"],"itemRenderFunction":[16],"identifier":[1],"selectedItems":[32],"unsetSelectedItems":[64],"getSelectedItems":[64]},null,{"preSelectedItems":["onPreselectedItemsChanged"]}],[1,"tet-container",{"highlightable":[4],"selected":[4],"theme":[1]}]]],["p-314f8c96",[[6,"tet-input",{"isPhoneNumber":[4,"is-phone-number"],"class":[1,"input-class"],"placeholder":[1,"input-placeholder"],"type":[1,"input-type"],"value":[1,"input-value"],"disabled":[4,"input-disabled"],"readonly":[4,"input-readonly"],"error":[4],"label":[1],"accessibilityLabel":[1,"accessibility-label"],"iconLeft":[1,"icon-left"],"iconRight":[1,"icon-right"],"iconLeftClickCallback":[16],"iconRightClickCallback":[16],"validators":[16],"manualValidation":[4,"manual-validation"],"theme":[1],"autocomplete":[1],"maxlength":[1],"inputTabindex":[2,"input-tabindex"],"errorMessages":[32],"isKeyboardFocus":[32],"focusVisible":[32],"getInputHtmlElement":[64],"getErrors":[64],"clearErrors":[64],"validateInput":[64]},[[8,"keydown","onKeyDown"],[9,"mousedown","onMouseDown"]]]]],["p-bb7916dd",[[1,"tet-tag-group",{"language":[1],"tags":[16],"theme":[1]}],[1,"tet-tag",{"tagTitle":[1,"tag-title"],"count":[2],"active":[4],"theme":[1],"showIcon":[4,"show-icon"],"disabled":[4],"language":[1]},null,{"language":["onLanguageChange"]}]]],["p-8397c44f",[[1,"tet-address-offers-filters-products",{"language":[1],"clearFilterButton":[4,"clear-filter-button"],"theme":[1],"catalog":[16],"productCodes":[16],"category":[16],"subcategoryId":[1,"subcategory-id"],"availableTvProducts":[32],"activeTvFilters":[32]},null,{"language":["onLanguageChange"],"catalog":["onDataChange"],"category":["onDataChange"],"productCodes":["onProductCodesChanged"]}],[1,"tet-compare-card",{"clickCallback":[16],"index":[2],"cardType":[1,"card-type"],"theme":[1],"colorIcons":[4,"color-icons"],"fullHeight":[4,"full-height"],"bestChoice":[4,"best-choice"],"cardHeader":[1,"card-header"],"logo":[1],"image":[1],"thumbnail":[1],"thumbnailAlt":[1,"thumbnail-alt"],"language":[1],"options":[16],"minWideWidth":[2,"min-wide-width"],"cardList":[4,"card-list"],"cardBackgroundColor":[1,"card-background-color"],"cardScript":[1,"card-script"],"parentContainer":[16],"hideBestChoiceBorder":[4,"hide-best-choice-border"],"withBorder":[4,"with-border"],"priceShownVertically":[4,"price-shown-vertically"],"bestChoiceTextPosition":[1,"best-choice-text-position"],"bestChoiceTextFloating":[4,"best-choice-text-floating"],"secondaryLinkPosition":[1,"secondary-link-position"],"showBulletPoints":[4,"show-bullet-points"],"showSubTitle":[4,"show-sub-title"],"showHelper":[4,"show-helper"],"isNetflixCard":[4,"is-netflix-card"],"darkMode":[4,"dark-mode"],"currentCardType":[32]},[[0,"click","onClick"]]],[1,"tet-dropdown",{"label":[1],"labelLogo":[1,"label-logo"],"labelLogoGrayscale":[1,"label-logo-grayscale"],"labelRight":[1,"label-right"],"labelRightColor":[1,"label-right-color"],"labelSubText":[1,"label-sub-text"],"flexLayout":[4,"flex-layout"],"buttonLabel":[1,"button-label"],"allowMultiple":[4,"allow-multiple"],"closeOnSelection":[4,"close-on-selection"],"theme":[1],"options":[16],"disabled":[4],"selectedOptionIndexes":[32],"isOpen":[32],"isKeyboardFocus":[32],"getSelectedOptions":[64],"selectOption":[64]},[[8,"click","handleWindowClick"],[8,"focusout","handleFocusOut"]],{"options":["onOptionsChange"]}]]]]'),e))));
@@ -1,6 +1,9 @@
1
1
  export declare class TetCarousel {
2
2
  private draggedAnchor;
3
3
  private dragMoved;
4
+ private clickPreventAdded;
5
+ private dragPointerStartX;
6
+ private preventClickOnDocument;
4
7
  activeIndex: number;
5
8
  screenCount: number;
6
9
  totalItems: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tet/tet-components",
3
- "version": "v1.3.98-staging",
3
+ "version": "v1.3.99-staging",
4
4
  "description": "A Stencil-based Web Components library for reusable UI elements.",
5
5
  "homepage": "https://tet.lv",
6
6
  "main": "dist/index.cjs.js",
@@ -1 +0,0 @@
1
- import{r as t,h as e,H as o}from"./p-67c5dc0a.js";const n=class{constructor(e){t(this,e),this.draggedAnchor=null,this.dragMoved=!1,this.trackElement=null,this.dragStartX=0,this.swipeStart=0,this.handlePrev=()=>{this.activeIndex>0&&(this.activeIndex-=1),this.dragOffset=-this.activeIndex*window.innerWidth},this.handleNext=()=>{this.activeIndex<this.screenCount-1&&(this.activeIndex+=1),this.dragOffset=-this.activeIndex*window.innerWidth,this.checkForLastScreen()},this.checkForLastScreen=()=>{var t,e,o;if(this.screenCount-1===this.activeIndex&&!this.isDragging){const n=(null===(t=this.container)||void 0===t?void 0:t.offsetWidth)||window.innerWidth,i=(null===(o=null===(e=this.trackElement)||void 0===e?void 0:e.querySelector("slot"))||void 0===o?void 0:o.offsetWidth)||window.innerWidth;this.dragOffset=-(i-n)}},this.handleDotClick=t=>{this.activeIndex=t,this.dragOffset=-t*window.innerWidth,this.checkForLastScreen()},this.onPointerDown=t=>{t.preventDefault(),t.stopPropagation(),t.stopImmediatePropagation(),this.isDragging=!0,this.dragStartX=t.screenX,this.dragMoved=!1,this.swipeStart=this.dragOffset,document.body.style.userSelect="none",document.addEventListener("pointermove",this.onPointerMove),document.addEventListener("pointerup",this.onPointerUp);let e=t.target;for(this.draggedAnchor=null;e;){if("A"===e.tagName){this.draggedAnchor=e;break}e=e.parentElement}},this.onPointerMove=t=>{var e,o,n;if(!this.isDragging)return;this.dragMoved=!0;let i=this.dragOffset;i+=t.screenX-this.dragStartX,this.dragStartX=t.screenX;const r=(null===(e=this.container)||void 0===e?void 0:e.offsetWidth)||window.innerWidth;-(((null===(n=null===(o=this.trackElement)||void 0===o?void 0:o.querySelector("slot"))||void 0===n?void 0:n.offsetWidth)||window.innerWidth)-r)<i&&i<0&&(this.dragOffset=i)},this.onPointerUp=t=>{var e,o,n;if(t.preventDefault(),t.stopPropagation(),t.stopImmediatePropagation(),this.isDragging){if(this.isDragging=!1,Math.abs(this.dragOffset-this.swipeStart)>this.swipeThreshold){let t=this.activeIndex+(this.dragOffset<this.swipeStart?1:-1);if(t=Math.max(0,Math.min(t,this.screenCount-1)),this.activeIndex=t,this.screenCount-1===this.activeIndex&&!this.isDragging){const t=(null===(e=this.container)||void 0===e?void 0:e.offsetWidth)||window.innerWidth,i=(null===(n=null===(o=this.trackElement)||void 0===o?void 0:o.querySelector("slot"))||void 0===n?void 0:n.offsetWidth)||window.innerWidth;return void(this.dragOffset=-(i-t))}this.dragOffset=-t*window.innerWidth}else this.dragOffset=-this.activeIndex*window.innerWidth;if(document.body.style.userSelect="",document.removeEventListener("pointermove",this.onPointerMove),document.removeEventListener("pointerup",this.onPointerUp),this.draggedAnchor&&this.dragMoved){const t=e=>{var o;e.preventDefault(),e.stopPropagation(),null===(o=this.draggedAnchor)||void 0===o||o.removeEventListener("click",t,!0)};this.draggedAnchor.addEventListener("click",t,!0)}}},this.activeIndex=0,this.screenCount=0,this.totalItems=0,this.items=[],this.theme="light",this.isDragging=!1,this.dragOffset=0,this.showDots=!0,this.showButtons=!0,this.transitionDuration=500,this.swipeThreshold=32,this.transitionTiming="cubic-bezier(0.77,0,0.175,1)",this.buttonIconLeft="arrow-left",this.buttonIconRight="arrow-right",this.containerClass="",this.trackClass="",this.buttonClass="",this.dotClass=""}getScreenCount(){var t;const e=null===(t=this.container)||void 0===t?void 0:t.querySelector("slot");if(!e)return 1;const o=e.assignedElements?e.assignedElements():[];if(0===o.length)return 1;let n=0;o.forEach(((t,e)=>{n+=t.offsetWidth||0,this.items.push({id:e,width:t.offsetWidth||0})})),0===n&&(n=o.length*window.innerWidth);const i=window.innerWidth;this.totalItems=o.length,this.screenCount=Math.ceil(n/i)}componentDidLoad(){this.getScreenCount(),window.addEventListener("resize",this.getScreenCount.bind(this)),this.addAnchorFocusListeners()}addAnchorFocusListeners(){if(!this.trackElement)return;const t=this.trackElement.querySelector("slot");if(!t)return;const e=t.assignedElements?t.assignedElements():[];let o=[];e.forEach((t=>{"A"===t.tagName&&o.push(t),o=o.concat(Array.from(t.querySelectorAll("a")))})),o.forEach((t=>{t.addEventListener("focus",(()=>{const e=window.innerWidth,o=t.getBoundingClientRect(),n=this.trackElement.getBoundingClientRect();let i=o.left-n.left;const r=Math.floor(i/e);this.activeIndex=Math.max(0,Math.min(r,this.screenCount-1)),this.dragOffset=-i,this.checkForLastScreen()}))}))}disconnectedCallback(){window.removeEventListener("resize",this.getScreenCount.bind(this))}render(){return e(o,{key:"9d5d17eb8407d5cf85f7d1da1ba976e099e0ca4a"},e("div",{key:"db301001e7a4e27f5bf2240d58ffca110b85bf23",class:{"tet-carousel":!0,[`${this.theme}`]:!0},ref:t=>this.container=t,part:"carousel"},e("div",{key:"0771fc98d2118bea3c8a6c2bc3735bbaddbd4f00",class:"tet-carousel__container"},e("div",{key:"b2d6159c82a2dc92e75b553003d167eb5704fa77",class:"tet-carousel__track",ref:t=>this.trackElement=t,style:{transform:`translateX(${this.dragOffset}px)`,transition:this.isDragging?"none":`transform ${this.transitionDuration}ms ${this.transitionTiming}`},onPointerDown:this.onPointerDown,onMouseMove:this.onPointerMove,onPointerUp:this.onPointerUp,onMouseLeave:this.onPointerUp},e("slot",{key:"5a694914d92cdc1240ebcd5695dc96bfd984f3f7"}))),e("div",{key:"ecbabb88d417d7b988e621c7b58b622b6ebf39be",class:"tet-carousel__controls"},this.showButtons&&e("div",{key:"999f31dec00863712eb22b84ed1851a382840e9d",class:"tet-carousel__buttons tet-carousel__buttons--mobile"},e("tet-button",{key:"703ea759681f0deddceeae3d1a6cf2e02601c5ae",class:"tet-carousel__btn",theme:"light"===this.theme?"dark":"light","icon-name":this.buttonIconLeft,"icon-mode":!0,onClick:this.handlePrev,"aria-label":"Previous",disabled:this.screenCount<=1||0===this.activeIndex})),this.showDots&&e("div",{key:"b47562c9a32e2c473f3877b2d5ef96e6aba5b94d",class:"tet-carousel__dots"},Array.from({length:this.screenCount}).map(((t,o)=>e("span",{class:"tet-carousel__dot"+(o===this.activeIndex?" active":""),key:o,onClick:()=>this.handleDotClick(o)})))),this.showButtons&&e("div",{key:"7e42421d3e72ec427606f5ff0230ac43ceb87d24",class:"tet-carousel__buttons "},e("tet-button",{key:"63d3de05405317d08b8ad0109a4b25f218ddcd33",class:"tet-carousel__buttons--desktop tet-carousel__btn ",theme:"light"===this.theme?"dark":"light","icon-name":this.buttonIconLeft,"icon-mode":!0,onClick:this.handlePrev,"aria-label":"Previous",disabled:this.screenCount<=1||0===this.activeIndex}),e("tet-button",{key:"35807ee3df9f6c786a6b213b9b70097c12aba8fe",class:"tet-carousel__btn",theme:"light"===this.theme?"dark":"light","icon-name":this.buttonIconRight,"icon-mode":!0,onClick:this.handleNext,"aria-label":"Next",disabled:this.screenCount<=1||this.activeIndex===this.screenCount-1})))))}};n.style='@font-face{font-family:Avenir Next;src:url(assets/fonts/8e7462a9501f48c43c58f870188b3fb2.eot?#iefix);src:url(assets/fonts/8e7462a9501f48c43c58f870188b3fb2.eot?#iefix) format("eot"),url(assets/fonts/3c3e10968ffc97c2a52c5830f9886d1f.woff2) format("woff2"),url(assets/fonts/660fbf858d30d7685fa4b166080f5980.woff) format("woff"),url(assets/fonts/2b7748589092fd1a10b806abdfb562ff.ttf) format("truetype");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:Avenir Next;src:url(assets/fonts/d5e25ad69d0ea31f3b8f66d634ca40fe.eot?#iefix);src:url(assets/fonts/d5e25ad69d0ea31f3b8f66d634ca40fe.eot?#iefix) format("eot"),url(assets/fonts/aad36ecead30948bb30fe0ef818b749c.woff2) format("woff2"),url(assets/fonts/c437d7752feaf3f056bbf8613e898d3a.woff) format("woff"),url(assets/fonts/b8df4d02ef5de13a813917a85bc4a9c4.ttf) format("truetype");font-weight:400;font-style:italic;font-display:swap}@font-face{font-family:Avenir Next;src:url(assets/fonts/046190c9a2f724b925df848737b03819.eot?#iefix);src:url(assets/fonts/046190c9a2f724b925df848737b03819.eot?#iefix) format("eot"),url(assets/fonts/4d52f8276a74ea8efbad833ed790367c.woff2) format("woff2"),url(assets/fonts/a067695dd1b87e927f4056c040d84669.woff) format("woff"),url(assets/fonts/510a664af9771b72d4ce5e637109ca3c.ttf) format("truetype");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:Avenir Next;src:url(assets/fonts/0715de188f56c99aa615905f7e06292e.eot?#iefix);src:url(assets/fonts/0715de188f56c99aa615905f7e06292e.eot?#iefix) format("eot"),url(assets/fonts/63f5acc71d9852468683a4bfe824a28f.woff2) format("woff2"),url(assets/fonts/ed94c737da267752ce0abd79bb003ff6.woff) format("woff"),url(assets/fonts/6302f55a6dc6b12365177dc89b7d63cf.ttf) format("truetype");font-weight:500;font-style:italic;font-display:swap}@font-face{font-family:Avenir Next;src:url(assets/fonts/3f76abc23eef0596c499840db84213bb.eot?#iefix);src:url(assets/fonts/3f76abc23eef0596c499840db84213bb.eot?#iefix) format("eot"),url(assets/fonts/1fe7da97fe9dbe1349aca9b54b5fdf69.woff2) format("woff2"),url(assets/fonts/dacc6a84278e221422902af99579ada5.woff) format("woff"),url(assets/fonts/e530c573663a3a07243d303fbf7db508.ttf) format("truetype");font-weight:600;font-style:normal;font-display:swap}@font-face{font-family:Avenir Next;src:url(assets/fonts/75f8489ba53f19968feaa3e2eb78c569.eot?#iefix);src:url(assets/fonts/75f8489ba53f19968feaa3e2eb78c569.eot?#iefix) format("eot"),url(assets/fonts/93ec0034623fc696601ab99aba652d4c.woff2) format("woff2"),url(assets/fonts/d73c8eb1c13abe1237366aa3ee829a59.woff) format("woff"),url(assets/fonts/7b6dcef99f3f4b23346e23925ec8678f.ttf) format("truetype");font-weight:600;font-style:italic;font-display:swap}.tet-icon{font-family:Tet Icons;font-weight:400;font-style:normal;font-size:24px;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;speak:none;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale}@font-face{font-family:Tet Icons;src:url(assets/fonts/d2ce51cdcd0b9707af186f8d50023d23.eot);src:url(assets/fonts/d2ce51cdcd0b9707af186f8d50023d23.eot?#iefix) format("embedded-opentype"),url(assets/fonts/25f10ef322a1220b2e9e11db38b73892.woff2) format("woff2"),url(assets/fonts/fed75ac1edcf1c25cdd8612d2c365f9a.woff) format("woff"),url(assets/fonts/df7fbe67cabb13cb837172a73c46378a.ttf) format("truetype"),url(assets/fonts/5486d8c87e2abc6c13ed952a6cc96658.svg#tet-icons) format("svg");font-weight:400;font-style:normal}.tet-icon:before{content:"\\E84E"}.tet-icon--sm{font-size:1.125rem}.tet-icon--md{font-size:1.5rem}.tet-icon--lg{font-size:2.25rem}.tet-icon--xl{font-size:3rem}.tet-icon--xxl{font-size:4rem}.tet-icon--0{font-size:0}.tet-icon--1{font-size:.0625rem}.tet-icon--2{font-size:.125rem}.tet-icon--3{font-size:.1875rem}.tet-icon--4{font-size:.25rem}.tet-icon--5{font-size:.3125rem}.tet-icon--6{font-size:.375rem}.tet-icon--7{font-size:.4375rem}.tet-icon--8{font-size:.5rem}.tet-icon--9{font-size:.5625rem}.tet-icon--10{font-size:.625rem}.tet-icon--11{font-size:.6875rem}.tet-icon--12{font-size:.75rem}.tet-icon--13{font-size:.8125rem}.tet-icon--14{font-size:.875rem}.tet-icon--15{font-size:.9375rem}.tet-icon--16{font-size:1rem}.tet-icon--17{font-size:1.0625rem}.tet-icon--18{font-size:1.125rem}.tet-icon--19{font-size:1.1875rem}.tet-icon--20{font-size:1.25rem}.tet-icon--21{font-size:1.3125rem}.tet-icon--22{font-size:1.375rem}.tet-icon--23{font-size:1.4375rem}.tet-icon--24{font-size:1.5rem}.tet-icon--25{font-size:1.5625rem}.tet-icon--26{font-size:1.625rem}.tet-icon--27{font-size:1.6875rem}.tet-icon--28{font-size:1.75rem}.tet-icon--29{font-size:1.8125rem}.tet-icon--30{font-size:1.875rem}.tet-icon--31{font-size:1.9375rem}.tet-icon--32{font-size:2rem}.tet-icon--33{font-size:2.0625rem}.tet-icon--34{font-size:2.125rem}.tet-icon--35{font-size:2.1875rem}.tet-icon--36{font-size:2.25rem}.tet-icon--37{font-size:2.3125rem}.tet-icon--38{font-size:2.375rem}.tet-icon--39{font-size:2.4375rem}.tet-icon--40{font-size:2.5rem}.tet-icon--41{font-size:2.5625rem}.tet-icon--42{font-size:2.625rem}.tet-icon--43{font-size:2.6875rem}.tet-icon--44{font-size:2.75rem}.tet-icon--45{font-size:2.8125rem}.tet-icon--46{font-size:2.875rem}.tet-icon--47{font-size:2.9375rem}.tet-icon--48{font-size:3rem}.tet-icon--49{font-size:3.0625rem}.tet-icon--50{font-size:3.125rem}.tet-icon--51{font-size:3.1875rem}.tet-icon--52{font-size:3.25rem}.tet-icon--53{font-size:3.3125rem}.tet-icon--54{font-size:3.375rem}.tet-icon--55{font-size:3.4375rem}.tet-icon--56{font-size:3.5rem}.tet-icon--57{font-size:3.5625rem}.tet-icon--58{font-size:3.625rem}.tet-icon--59{font-size:3.6875rem}.tet-icon--60{font-size:3.75rem}.tet-icon--61{font-size:3.8125rem}.tet-icon--62{font-size:3.875rem}.tet-icon--63{font-size:3.9375rem}.tet-icon--64{font-size:4rem}.tet-icon--65{font-size:4.0625rem}.tet-icon--66{font-size:4.125rem}.tet-icon--67{font-size:4.1875rem}.tet-icon--68{font-size:4.25rem}.tet-icon--69{font-size:4.3125rem}.tet-icon--70{font-size:4.375rem}.tet-icon--71{font-size:4.4375rem}.tet-icon--72{font-size:4.5rem}.tet-icon--73{font-size:4.5625rem}.tet-icon--74{font-size:4.625rem}.tet-icon--75{font-size:4.6875rem}.tet-icon--76{font-size:4.75rem}.tet-icon--77{font-size:4.8125rem}.tet-icon--78{font-size:4.875rem}.tet-icon--79{font-size:4.9375rem}.tet-icon--80{font-size:5rem}.tet-icon--81{font-size:5.0625rem}.tet-icon--82{font-size:5.125rem}.tet-icon--83{font-size:5.1875rem}.tet-icon--84{font-size:5.25rem}.tet-icon--85{font-size:5.3125rem}.tet-icon--86{font-size:5.375rem}.tet-icon--87{font-size:5.4375rem}.tet-icon--88{font-size:5.5rem}.tet-icon--89{font-size:5.5625rem}.tet-icon--90{font-size:5.625rem}.tet-icon--91{font-size:5.6875rem}.tet-icon--92{font-size:5.75rem}.tet-icon--93{font-size:5.8125rem}.tet-icon--94{font-size:5.875rem}.tet-icon--95{font-size:5.9375rem}.tet-icon--96{font-size:6rem}.tet-icon--97{font-size:6.0625rem}.tet-icon--98{font-size:6.125rem}.tet-icon--99{font-size:6.1875rem}.tet-icon--100{font-size:6.25rem}.tet-icon--101{font-size:6.3125rem}.tet-icon__add:before{content:"\\E800"}.tet-icon__alert-circled:before{content:"\\E801"}.tet-icon__alert:before{content:"\\E802"}.tet-icon__bank:before{content:"\\E803"}.tet-icon__box:before{content:"\\E804"}.tet-icon__download:before{content:"\\E805"}.tet-icon__burger:before{content:"\\E806"}.tet-icon__cancel:before{content:"\\E807"}.tet-icon__printer:before{content:"\\E808"}.tet-icon__cart-add:before{content:"\\E809"}.tet-icon__cart-remove:before{content:"\\E80A"}.tet-icon__cart:before{content:"\\E80B"}.tet-icon__chat:before{content:"\\E80C"}.tet-icon__arrow-up:before{content:"\\E80D"}.tet-icon__calendar:before{content:"\\E80E"}.tet-icon__help-circled:before{content:"\\E80F"}.tet-icon__edit:before{content:"\\E810"}.tet-icon__external-link:before{content:"\\E811"}.tet-icon__gift:before{content:"\\E812"}.tet-icon__person:before{content:"\\E813"}.tet-icon__heart:before{content:"\\E814"}.tet-icon__language:before{content:"\\E815"}.tet-icon__help:before{content:"\\E816"}.tet-icon__home-1:before{content:"\\E817"}.tet-icon__location:before{content:"\\E818"}.tet-icon__home-3:before{content:"\\E819"}.tet-icon__chart-even:before{content:"\\E81A"}.tet-icon__info-2:before{content:"\\E81B"}.tet-icon__key:before{content:"\\E81C"}.tet-icon__info:before{content:"\\E81D"}.tet-icon__lock-opened:before{content:"\\E81E"}.tet-icon__lock-outlined:before{content:"\\E81F"}.tet-icon__lock:before{content:"\\E820"}.tet-icon__laptop-filled:before{content:"\\E821"}.tet-icon__mail:before{content:"\\E822"}.tet-icon__options:before{content:"\\E823"}.tet-icon__chart-uneven:before{content:"\\E824"}.tet-icon__mail-2:before{content:"\\E825"}.tet-icon__remove:before{content:"\\E826"}.tet-icon__mobile-filled:before{content:"\\E827"}.tet-icon__ilu-calendar-check:before{content:"\\E828"}.tet-icon__settings-outlined:before{content:"\\E829"}.tet-icon__tablet:before{content:"\\E82A"}.tet-icon__thumb-up:before{content:"\\E82B"}.tet-icon__ilu-purchase:before{content:"\\E82C"}.tet-icon__chart-even-outlined:before{content:"\\E82D"}.tet-icon__movie:before{content:"\\E82E"}.tet-icon__percent:before{content:"\\E82F"}.tet-icon__ilu-change-whenever:before{content:"\\E830"}.tet-icon__truck:before{content:"\\E831"}.tet-icon__zero:before{content:"\\E832"}.tet-icon__attach:before{content:"\\E833"}.tet-icon__cloud-done:before{content:"\\E834"}.tet-icon__cloud-download:before{content:"\\E835"}.tet-icon__cloud-upload:before{content:"\\E836"}.tet-icon__cloud:before{content:"\\E837"}.tet-icon__folder:before{content:"\\E838"}.tet-icon__remote:before{content:"\\E839"}.tet-icon__router:before{content:"\\E83A"}.tet-icon__shield-filled:before{content:"\\E83B"}.tet-icon__shield:before{content:"\\E83C"}.tet-icon__ilu-devices:before{content:"\\E83D"}.tet-icon__ilu-get-points:before{content:"\\E83E"}.tet-icon__tv:before{content:"\\E83F"}.tet-icon__ilu-internet:before{content:"\\E840"}.tet-icon__wifi-outlined:before{content:"\\E841"}.tet-icon__wifi:before{content:"\\E842"}.tet-icon__description-outlined:before{content:"\\E843"}.tet-icon__laptop:before{content:"\\E844"}.tet-icon__chart-uneven-outlined:before{content:"\\E845"}.tet-icon__meter:before{content:"\\E846"}.tet-icon__mobile:before{content:"\\E847"}.tet-icon__phone:before{content:"\\E848"}.tet-icon__plug-filled:before{content:"\\E849"}.tet-icon__plug:before{content:"\\E84A"}.tet-icon__print:before{content:"\\E84B"}.tet-icon__camera:before{content:"\\E84C"}.tet-icon__clock:before{content:"\\E84D"}.tet-icon__placeholder:before{content:"\\E84E"}.tet-icon__tv-filled:before{content:"\\E84F"}.tet-icon__arrow-down:before{content:"\\E850"}.tet-icon__arrow-left:before{content:"\\E851"}.tet-icon__arrow-right:before{content:"\\E852"}.tet-icon__description:before{content:"\\E853"}.tet-icon__login:before{content:"\\E854"}.tet-icon__check:before{content:"\\E855"}.tet-icon__chevron-down:before{content:"\\E856"}.tet-icon__chevron-left:before{content:"\\E857"}.tet-icon__chevron-right:before{content:"\\E858"}.tet-icon__chevron-up:before{content:"\\E859"}.tet-icon__close-circled:before{content:"\\E85A"}.tet-icon__close:before{content:"\\E85B"}.tet-icon__more-horizontal:before{content:"\\E85C"}.tet-icon__more-vertical:before{content:"\\E85D"}.tet-icon__refresh:before{content:"\\E85E"}.tet-icon__facebook:before{content:"\\E85F"}.tet-icon__instagram:before{content:"\\E860"}.tet-icon__linkedin:before{content:"\\E861"}.tet-icon__people:before{content:"\\E862"}.tet-icon__logout:before{content:"\\E863"}.tet-icon__share:before{content:"\\E864"}.tet-icon__twitter:before{content:"\\E865"}.tet-icon__cancel-filled:before{content:"\\E866"}.tet-icon__done:before{content:"\\E867"}.tet-icon__star-filled:before{content:"\\E868"}.tet-icon__star:before{content:"\\E869"}.tet-icon__clipboard:before{content:"\\E86A"}.tet-icon__ilu-calendar:before{content:"\\E86B"}.tet-icon__check-circled:before{content:"\\E86C"}.tet-icon__ilu-choose-channels:before{content:"\\E86D"}.tet-icon__search:before{content:"\\E86E"}.tet-icon__warning:before{content:"\\E86F"}.tet-icon__ilu-clock-1:before{content:"\\E870"}.tet-icon__ilu-fold:before{content:"\\E871"}.tet-icon__ilu-letter:before{content:"\\E872"}.tet-icon__ilu-pay:before{content:"\\E873"}.tet-icon__ilu-meter:before{content:"\\E874"}.tet-icon__ilu-sign:before{content:"\\E875"}.tet-icon__smart-watch-filled:before{content:"\\E876"}.tet-icon__washing-machine-filled:before{content:"\\E877"}.tet-icon__bullet:before{content:"\\E878"}.tet-icon__sound:before{content:"\\E879"}.tet-icon__dropdown:before{content:"\\E87A"}.tet-icon__mask-pass:before{content:"\\E87B"}.tet-icon__select:before{content:"\\E87C"}.tet-icon__text-area-sizing:before{content:"\\E87D"}.tet-icon__unmask-pass:before{content:"\\E87E"}.tet-icon__bullet-small:before{content:"\\E882"}.tet-icon__electric-bolt:before{content:"\\E880"}.tet-icon__sun:before{content:"\\E881"}:host{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit;padding:0;margin:0}:host{--color-gray-light:#cdd2de;--color-ta070:#f5f6f8;--color-ta080:#e6e8ee;--color-ta100:#cdd2de;--color-ta200:#9ba5be;--color-ta300:#69789c;--color-ta500:#1e356a;--color-ta600:#051d59;--color-tc090:#d6e6fd;--color-tc100:#d1dffe;--color-tc300:#75a1fb;--color-tc500:#1a70f6;--color-tc600:#0060f5;--color-td500:#00F1F2;--color-td600:#01cbe0;--color-tf600:#f53b2a;--color-tg300:#2b3036;--color-tg400:#1d2128;--color-tg500:#12171e;--color-tg600:#01050c;--color-th500:#f5f5f5;--color-ti500:#869198;--color-ti600:#aeb7bc;--text-font:Gilroy, serif;--text-color-darker:var(--color-ta600);--text-color-dark:var(--color-ta500);--text-color-dark-theme:var(--color-th500);--icons-font:Tet Icons, serif}.icon.tet-search{font-family:var(--icons-font);font-weight:400;font-style:normal;font-size:1.25rem;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;speak:none;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale}.icon.tet-search::before{content:"\\e86e"}.icon.tet-close-circled{font-family:var(--icons-font);font-weight:400;font-style:normal;font-size:1.25rem;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;speak:none;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale}.icon.tet-close-circled::before{content:"\\e85a"}.icon.tet-close{font-family:var(--icons-font);font-weight:400;font-style:normal;font-size:1.25rem;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;speak:none;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale}.icon.tet-close::before{content:"\\e85b"}.icon.tet-check-circled{font-family:var(--icons-font);font-weight:400;font-style:normal;font-size:1.25rem;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;speak:none;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale}.icon.tet-check-circled::before{content:"\\e86c"}.icon.tet-check{font-family:var(--icons-font);font-weight:400;font-style:normal;font-size:1.25rem;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;speak:none;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale}.icon.tet-check::before{content:"\\e855"}.icon.tet-chevron-up{font-family:var(--icons-font);font-weight:400;font-style:normal;font-size:1.25rem;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;speak:none;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale}.icon.tet-chevron-up::before{content:"\\e859"}.icon.tet-chevron-down{font-family:var(--icons-font);font-weight:400;font-style:normal;font-size:1.25rem;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;speak:none;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale}.icon.tet-chevron-down::before{content:"\\e856"}.icon.tet-clipboard{font-family:var(--icons-font);font-weight:400;font-style:normal;font-size:1.25rem;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;speak:none;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale}.icon.tet-clipboard::before{content:"\\e86a"}.icon.tet-info{font-family:var(--icons-font);font-weight:400;font-style:normal;font-size:1.25rem;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;speak:none;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale}.icon.tet-info::before{content:"\\e81d"}.icon.tet-done{font-family:var(--icons-font);font-weight:400;font-style:normal;font-size:1.25rem;display:inline-block;line-height:1;text-transform:none;letter-spacing:normal;word-wrap:normal;white-space:nowrap;direction:ltr;speak:none;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;-moz-osx-font-smoothing:grayscale}.icon.tet-done::before{content:"\\e867"}@font-face{font-family:"Gilroy";font-style:normal;font-weight:400;font-display:swap;src:url("assets/fonts/Gilroy-W05-Medium.woff2") format("woff2"), url("assets/fonts/Gilroy-W05-Medium.woff") format("woff")}@font-face{font-family:"Gilroy";font-style:normal;font-weight:500;font-display:swap;src:url("assets/fonts/Gilroy-W05-Medium.woff2") format("woff2"), url("assets/fonts/Gilroy-W05-Medium.woff") format("woff")}@font-face{font-family:"Gilroy";font-style:normal;font-weight:600;font-display:swap;src:url("assets/fonts/Gilroy-W05-Semibold.woff2") format("woff2"), url("assets/fonts/Gilroy-W05-Semibold.woff") format("woff")}@font-face{font-family:"Gilroy";font-style:normal;font-weight:700;font-display:swap;src:url("assets/fonts/Gilroy-W05-Bold.woff2") format("woff2"), url("assets/fonts/Gilroy-W05-Bold.woff") format("woff")}@font-face{font-family:"Inter";font-style:normal;font-weight:400;font-display:swap;src:url("assets/fonts/Inter-Regular.woff2?v=3.19") format("woff2"), url("assets/fonts/Inter-Regular.woff?v=3.19") format("woff")}@font-face{font-family:"Inter";font-style:normal;font-weight:500;font-display:swap;src:url("assets/fonts/Inter-Medium.woff2?v=3.19") format("woff2"), url("assets/fonts/Inter-Medium.woff?v=3.19") format("woff")}@font-face{font-family:"Inter";font-style:normal;font-weight:600;font-display:swap;src:url("assets/fonts/Inter-SemiBold.woff2?v=3.19") format("woff2"), url("assets/fonts/Inter-SemiBold.woff?v=3.19") format("woff")}@font-face{font-family:"Gilroy";font-style:normal;font-weight:400;font-display:swap;src:url("assets/fonts/Gilroy-W05-Medium.woff2") format("woff2"), url("assets/fonts/Gilroy-W05-Medium.woff") format("woff")}@font-face{font-family:"Gilroy";font-style:normal;font-weight:500;font-display:swap;src:url("assets/fonts/Gilroy-W05-Medium.woff2") format("woff2"), url("assets/fonts/Gilroy-W05-Medium.woff") format("woff")}@font-face{font-family:"Gilroy";font-style:normal;font-weight:600;font-display:swap;src:url("assets/fonts/Gilroy-W05-Semibold.woff2") format("woff2"), url("assets/fonts/Gilroy-W05-Semibold.woff") format("woff")}@font-face{font-family:"Gilroy";font-style:normal;font-weight:700;font-display:swap;src:url("assets/fonts/Gilroy-W05-Bold.woff2") format("woff2"), url("assets/fonts/Gilroy-W05-Bold.woff") format("woff")}@font-face{font-family:"Inter";font-style:normal;font-weight:400;font-display:swap;src:url("assets/fonts/Inter-Regular.woff2?v=3.19") format("woff2"), url("assets/fonts/Inter-Regular.woff?v=3.19") format("woff")}@font-face{font-family:"Inter";font-style:normal;font-weight:500;font-display:swap;src:url("assets/fonts/Inter-Medium.woff2?v=3.19") format("woff2"), url("assets/fonts/Inter-Medium.woff?v=3.19") format("woff")}@font-face{font-family:"Inter";font-style:normal;font-weight:600;font-display:swap;src:url("assets/fonts/Inter-SemiBold.woff2?v=3.19") format("woff2"), url("assets/fonts/Inter-SemiBold.woff?v=3.19") format("woff")}:host{--font-family-fallback:Gilroy, Arial, sans-serif;--font-family-headline:Gilroy;--font-family-content:Inter, var(--font-family-fallback);font-family:var(--font-family-content)}:host{--carousel-background:transparent;--carousel-button-background:transparent;--carousel-button-border:2px solid var(--tc-border-primary);--carousel-button-border-disabled:2px solid var(--tc-button-border-disabled);--carousel-active-button-background:var(--tc-grey-110);--carousel-button-size:2.75rem;--carousel-button-icon-size:1.5rem;--carousel-button-icon-color:var(--tc-grey-110);--carousel-dot-size:1rem;--carousel-buttons-bottom:-1rem;--carousel-dot-background:transparent;--carousel-dot-border:1px solid var(--tc-grey-70);--carousel-dot-padding-top:1.875rem;--carousel-dot-active-background:var(--tc-layer-inverse-primary);--carousel-button-hover-background:var(--tc-button-secondary-background-hover);--carousel-dots-gap:0.5rem;--carousel-buttons-gap:1rem;--carousel-track-gap:0;--carousel-track-height:100%;--carousel-item-width:100%;--carousel-item-height:100%;--carousel-buttons-right:2rem;--carousel-dots-bottom:-1rem;display:inline-block;cursor:pointer;width:100%}.tet-carousel{position:relative;width:100%;background:var(--carousel-background)}.tet-carousel.dark{--carousel-dot-active-background:var(--tc-layer-inverse-primary-dark);--carousel-dot-border:1px solid var(--tc-grey-70-dark);--carousel-button-border:2px solid var(--tc-button-border-secondary-dark);--carousel-button-border-disabled:2px solid var(--tc-button-border-disabled-dark)}.tet-carousel__container{width:var(--carousel-item-width);max-width:var(--carousel-item-width);height:var(--carousel-track-height)}.tet-carousel__controls{display:flex;justify-content:end}.tet-carousel__track{display:flex;height:var(--carousel-track-height);will-change:transform;gap:var(--carousel-track-gap)}.tet-carousel__track>*{flex-shrink:0;display:flex;align-items:center;justify-content:center}.tet-carousel__buttons{position:absolute;right:0;bottom:var(--carousel-buttons-bottom);display:flex;flex-direction:row;gap:var(--carousel-buttons-gap);z-index:2}.tet-carousel__buttons--mobile{display:flex;left:0}.tet-carousel__buttons--desktop{display:none !important}.tet-carousel__btn{background:var(--carousel-button-background);border:none;border-radius:50%;box-shadow:var(--carousel-button-shadow);width:2.25rem;height:2.25rem;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background 0.2s, box-shadow 0.2s;outline:none}.tet-carousel__btn::part(button){--button-padding:0;--button-background:transparent;--button-width:var(--carousel-button-size);backdrop-filter:none;border:var(--carousel-button-border)}.tet-carousel__btn::part(button):disabled{--carousel-button-hover-background:transparent;border:var(--carousel-button-border-disabled);opacity:0.5;cursor:not-allowed}.tet-carousel__btn::part(button):hover{background-color:var(--carousel-button-hover-background)}.tet-carousel__btn.active{background:var(--carousel-active-button-background);box-shadow:var(--carousel-button-active-shadow)}.tet-carousel__btn tet-icon{--icon-size:var(--carousel-button-icon-size);--icon-color:var(--carousel-button-icon-color)}.tet-carousel__dots{display:flex;gap:var(--carousel-dots-gap);padding-top:var(--carousel-dot-padding-top);justify-content:center;flex:1}.tet-carousel__dot{width:var(--carousel-dot-size);height:var(--carousel-dot-size);border-radius:50%;background:var(--carousel-dot-background);cursor:pointer;transition:background 0.2s;border:var(--carousel-dot-border);z-index:2}.tet-carousel__dot:hover{background:var(--tc-button-secondary-background-hover)}.tet-carousel__dot.active{background:var(--carousel-dot-active-background);border:none}@media all and (min-width: 46.25rem){.tet-carousel__buttons--mobile{display:none}.tet-carousel__buttons--desktop{display:flex !important}.tet-carousel__btn{width:var(--carousel-button-size);height:var(--carousel-button-size)}}';export{n as tet_carousel}