@tet/tet-components 1.4.26-testing → 1.4.27-testing

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.
@@ -76,6 +76,8 @@ const TetDynamicCard = class {
76
76
  }
77
77
  };
78
78
  getCardSize(width) {
79
+ if (this.isInCarousel)
80
+ return 'S';
79
81
  if (width < this.BREAKPOINTS.MOBILE)
80
82
  return 'XL';
81
83
  if (width < this.BREAKPOINTS.TABLET_SMALL)
@@ -88,10 +90,10 @@ const TetDynamicCard = class {
88
90
  }
89
91
  getMinWidth(width) {
90
92
  if (width < this.BREAKPOINTS.MOBILE) {
91
- return 'calc(var(--card-width-mobile)-2rem)';
93
+ return 'calc(var(--card-width-mobile) - 2rem)';
92
94
  }
93
95
  else if (width < this.BREAKPOINTS.TABLET) {
94
- return 'calc(var(--card-width-tablet)-2rem)';
96
+ return 'calc(var(--card-width-tablet) - 2rem)';
95
97
  }
96
98
  else if (width < this.BREAKPOINTS.DESKTOP) {
97
99
  return 'var(--card-width-tablet)';
@@ -195,12 +197,12 @@ const TetDynamicCard = class {
195
197
  } }, this.linkText)));
196
198
  }
197
199
  render() {
198
- return (index.h(index.Host, { key: '9da86c5862baa9430fe4010fea70f7b6f1fc7f95', class: {
200
+ return (index.h(index.Host, { key: 'f540861665cea83ffe29d147fefb2c471b0ab208', class: {
199
201
  'dynamic-card': true,
200
202
  'is-focused': this.isFocused
201
203
  }, "data-index": this.index, ref: (elm) => {
202
204
  this.rootElementRef = elm;
203
- } }, index.h("div", { key: 'd4de72fa7e431c5b29fe135007febc201fe8fe63', class: `card
205
+ } }, index.h("div", { key: 'f23d0b124407d6a30850d4faa6ecf2b5c42f4266', class: `card
204
206
  theme-${this.theme}
205
207
  size-${this.currentSize}
206
208
  position-${this.pictureLayoutShiftPosition}
@@ -208,7 +210,7 @@ const TetDynamicCard = class {
208
210
  `, onClick: this.handleClick, onKeyUp: (event) => {
209
211
  if (event.key === 'Enter')
210
212
  this.handleClick(event);
211
- }, tabindex: 0, part: "card", "aria-labelledby": this.cardTitle }, index.h("div", { key: '46e0c68ccb014ac2ceab45a306cff72321b8fa78', class: "image", part: "image" }, index.h("slot", { key: '247398a97c1bd98a15b0416409383a3af0227377', name: "image" }), this.renderPrice(), this.renderTags()), index.h("div", { key: '5baa6a07eb4bc12ab4dc02277cbaf7da63fb3680', class: "content-container" }, index.h("div", { key: '065754ef688f1704460285bc94254ffe1699bc1b', class: "content", part: "content" }, this.cardTitle && (index.h("h3", { key: '205c9250a605d3b2f1312773406cf14efa1a6a9c', class: "title", part: "title" }, this.cardTitle)), this.subtitle && (index.h("p", { key: 'c84f03750bb12d959555081a2675fedb1ad6396a', class: "subtitle", part: "subtitle" }, this.subtitle))), this.renderButton()))));
213
+ }, tabindex: 0, part: "card", "aria-labelledby": this.cardTitle }, index.h("div", { key: '77e5b8e5dac80f993f0cc8d75ebcb195b2769bb4', class: "image", part: "image" }, index.h("slot", { key: '27541049dba50e22365f349ee35dd9196f94b10c', name: "image" }), this.renderPrice(), this.renderTags()), index.h("div", { key: '4a9a76436b0da5944c2539fba57af9aa54fc00f5', class: "content-container" }, index.h("div", { key: 'f85d83b152037d75f01afd14992ad60da1e093c8', class: "content", part: "content" }, this.cardTitle && (index.h("h3", { key: '8a3226e1cb359f7107eb3b22621141222b97060e', class: "title", part: "title" }, this.cardTitle)), this.subtitle && (index.h("p", { key: '6ef1c7c4e815729a966c026ee95e94dc13b87ece', class: "subtitle", part: "subtitle" }, this.subtitle))), this.renderButton()))));
212
214
  }
213
215
  static get watchers() { return {
214
216
  "theme": ["onThemeChanged"],
@@ -78,6 +78,8 @@ export class TetDynamicCard {
78
78
  }
79
79
  };
80
80
  getCardSize(width) {
81
+ if (this.isInCarousel)
82
+ return 'S';
81
83
  if (width < this.BREAKPOINTS.MOBILE)
82
84
  return 'XL';
83
85
  if (width < this.BREAKPOINTS.TABLET_SMALL)
@@ -90,10 +92,10 @@ export class TetDynamicCard {
90
92
  }
91
93
  getMinWidth(width) {
92
94
  if (width < this.BREAKPOINTS.MOBILE) {
93
- return 'calc(var(--card-width-mobile)-2rem)';
95
+ return 'calc(var(--card-width-mobile) - 2rem)';
94
96
  }
95
97
  else if (width < this.BREAKPOINTS.TABLET) {
96
- return 'calc(var(--card-width-tablet)-2rem)';
98
+ return 'calc(var(--card-width-tablet) - 2rem)';
97
99
  }
98
100
  else if (width < this.BREAKPOINTS.DESKTOP) {
99
101
  return 'var(--card-width-tablet)';
@@ -197,12 +199,12 @@ export class TetDynamicCard {
197
199
  } }, this.linkText)));
198
200
  }
199
201
  render() {
200
- return (h(Host, { key: '9da86c5862baa9430fe4010fea70f7b6f1fc7f95', class: {
202
+ return (h(Host, { key: 'f540861665cea83ffe29d147fefb2c471b0ab208', class: {
201
203
  'dynamic-card': true,
202
204
  'is-focused': this.isFocused
203
205
  }, "data-index": this.index, ref: (elm) => {
204
206
  this.rootElementRef = elm;
205
- } }, h("div", { key: 'd4de72fa7e431c5b29fe135007febc201fe8fe63', class: `card
207
+ } }, h("div", { key: 'f23d0b124407d6a30850d4faa6ecf2b5c42f4266', class: `card
206
208
  theme-${this.theme}
207
209
  size-${this.currentSize}
208
210
  position-${this.pictureLayoutShiftPosition}
@@ -210,7 +212,7 @@ export class TetDynamicCard {
210
212
  `, onClick: this.handleClick, onKeyUp: (event) => {
211
213
  if (event.key === 'Enter')
212
214
  this.handleClick(event);
213
- }, tabindex: 0, part: "card", "aria-labelledby": this.cardTitle }, h("div", { key: '46e0c68ccb014ac2ceab45a306cff72321b8fa78', class: "image", part: "image" }, h("slot", { key: '247398a97c1bd98a15b0416409383a3af0227377', name: "image" }), this.renderPrice(), this.renderTags()), h("div", { key: '5baa6a07eb4bc12ab4dc02277cbaf7da63fb3680', class: "content-container" }, h("div", { key: '065754ef688f1704460285bc94254ffe1699bc1b', class: "content", part: "content" }, this.cardTitle && (h("h3", { key: '205c9250a605d3b2f1312773406cf14efa1a6a9c', class: "title", part: "title" }, this.cardTitle)), this.subtitle && (h("p", { key: 'c84f03750bb12d959555081a2675fedb1ad6396a', class: "subtitle", part: "subtitle" }, this.subtitle))), this.renderButton()))));
215
+ }, tabindex: 0, part: "card", "aria-labelledby": this.cardTitle }, h("div", { key: '77e5b8e5dac80f993f0cc8d75ebcb195b2769bb4', class: "image", part: "image" }, h("slot", { key: '27541049dba50e22365f349ee35dd9196f94b10c', name: "image" }), this.renderPrice(), this.renderTags()), h("div", { key: '4a9a76436b0da5944c2539fba57af9aa54fc00f5', class: "content-container" }, h("div", { key: 'f85d83b152037d75f01afd14992ad60da1e093c8', class: "content", part: "content" }, this.cardTitle && (h("h3", { key: '8a3226e1cb359f7107eb3b22621141222b97060e', class: "title", part: "title" }, this.cardTitle)), this.subtitle && (h("p", { key: '6ef1c7c4e815729a966c026ee95e94dc13b87ece', class: "subtitle", part: "subtitle" }, this.subtitle))), this.renderButton()))));
214
216
  }
215
217
  static get is() { return "tet-dynamic-card"; }
216
218
  static get encapsulation() { return "shadow"; }
@@ -77,6 +77,8 @@ const TetDynamicCard$1 = /*@__PURE__*/ proxyCustomElement(class TetDynamicCard e
77
77
  }
78
78
  };
79
79
  getCardSize(width) {
80
+ if (this.isInCarousel)
81
+ return 'S';
80
82
  if (width < this.BREAKPOINTS.MOBILE)
81
83
  return 'XL';
82
84
  if (width < this.BREAKPOINTS.TABLET_SMALL)
@@ -89,10 +91,10 @@ const TetDynamicCard$1 = /*@__PURE__*/ proxyCustomElement(class TetDynamicCard e
89
91
  }
90
92
  getMinWidth(width) {
91
93
  if (width < this.BREAKPOINTS.MOBILE) {
92
- return 'calc(var(--card-width-mobile)-2rem)';
94
+ return 'calc(var(--card-width-mobile) - 2rem)';
93
95
  }
94
96
  else if (width < this.BREAKPOINTS.TABLET) {
95
- return 'calc(var(--card-width-tablet)-2rem)';
97
+ return 'calc(var(--card-width-tablet) - 2rem)';
96
98
  }
97
99
  else if (width < this.BREAKPOINTS.DESKTOP) {
98
100
  return 'var(--card-width-tablet)';
@@ -196,12 +198,12 @@ const TetDynamicCard$1 = /*@__PURE__*/ proxyCustomElement(class TetDynamicCard e
196
198
  } }, this.linkText)));
197
199
  }
198
200
  render() {
199
- return (h(Host, { key: '9da86c5862baa9430fe4010fea70f7b6f1fc7f95', class: {
201
+ return (h(Host, { key: 'f540861665cea83ffe29d147fefb2c471b0ab208', class: {
200
202
  'dynamic-card': true,
201
203
  'is-focused': this.isFocused
202
204
  }, "data-index": this.index, ref: (elm) => {
203
205
  this.rootElementRef = elm;
204
- } }, h("div", { key: 'd4de72fa7e431c5b29fe135007febc201fe8fe63', class: `card
206
+ } }, h("div", { key: 'f23d0b124407d6a30850d4faa6ecf2b5c42f4266', class: `card
205
207
  theme-${this.theme}
206
208
  size-${this.currentSize}
207
209
  position-${this.pictureLayoutShiftPosition}
@@ -209,7 +211,7 @@ const TetDynamicCard$1 = /*@__PURE__*/ proxyCustomElement(class TetDynamicCard e
209
211
  `, onClick: this.handleClick, onKeyUp: (event) => {
210
212
  if (event.key === 'Enter')
211
213
  this.handleClick(event);
212
- }, tabindex: 0, part: "card", "aria-labelledby": this.cardTitle }, h("div", { key: '46e0c68ccb014ac2ceab45a306cff72321b8fa78', class: "image", part: "image" }, h("slot", { key: '247398a97c1bd98a15b0416409383a3af0227377', name: "image" }), this.renderPrice(), this.renderTags()), h("div", { key: '5baa6a07eb4bc12ab4dc02277cbaf7da63fb3680', class: "content-container" }, h("div", { key: '065754ef688f1704460285bc94254ffe1699bc1b', class: "content", part: "content" }, this.cardTitle && (h("h3", { key: '205c9250a605d3b2f1312773406cf14efa1a6a9c', class: "title", part: "title" }, this.cardTitle)), this.subtitle && (h("p", { key: 'c84f03750bb12d959555081a2675fedb1ad6396a', class: "subtitle", part: "subtitle" }, this.subtitle))), this.renderButton()))));
214
+ }, tabindex: 0, part: "card", "aria-labelledby": this.cardTitle }, h("div", { key: '77e5b8e5dac80f993f0cc8d75ebcb195b2769bb4', class: "image", part: "image" }, h("slot", { key: '27541049dba50e22365f349ee35dd9196f94b10c', name: "image" }), this.renderPrice(), this.renderTags()), h("div", { key: '4a9a76436b0da5944c2539fba57af9aa54fc00f5', class: "content-container" }, h("div", { key: 'f85d83b152037d75f01afd14992ad60da1e093c8', class: "content", part: "content" }, this.cardTitle && (h("h3", { key: '8a3226e1cb359f7107eb3b22621141222b97060e', class: "title", part: "title" }, this.cardTitle)), this.subtitle && (h("p", { key: '6ef1c7c4e815729a966c026ee95e94dc13b87ece', class: "subtitle", part: "subtitle" }, this.subtitle))), this.renderButton()))));
213
215
  }
214
216
  static get watchers() { return {
215
217
  "theme": ["onThemeChanged"],
@@ -72,6 +72,8 @@ const TetDynamicCard = class {
72
72
  }
73
73
  };
74
74
  getCardSize(width) {
75
+ if (this.isInCarousel)
76
+ return 'S';
75
77
  if (width < this.BREAKPOINTS.MOBILE)
76
78
  return 'XL';
77
79
  if (width < this.BREAKPOINTS.TABLET_SMALL)
@@ -84,10 +86,10 @@ const TetDynamicCard = class {
84
86
  }
85
87
  getMinWidth(width) {
86
88
  if (width < this.BREAKPOINTS.MOBILE) {
87
- return 'calc(var(--card-width-mobile)-2rem)';
89
+ return 'calc(var(--card-width-mobile) - 2rem)';
88
90
  }
89
91
  else if (width < this.BREAKPOINTS.TABLET) {
90
- return 'calc(var(--card-width-tablet)-2rem)';
92
+ return 'calc(var(--card-width-tablet) - 2rem)';
91
93
  }
92
94
  else if (width < this.BREAKPOINTS.DESKTOP) {
93
95
  return 'var(--card-width-tablet)';
@@ -191,12 +193,12 @@ const TetDynamicCard = class {
191
193
  } }, this.linkText)));
192
194
  }
193
195
  render() {
194
- return (h(Host, { key: '9da86c5862baa9430fe4010fea70f7b6f1fc7f95', class: {
196
+ return (h(Host, { key: 'f540861665cea83ffe29d147fefb2c471b0ab208', class: {
195
197
  'dynamic-card': true,
196
198
  'is-focused': this.isFocused
197
199
  }, "data-index": this.index, ref: (elm) => {
198
200
  this.rootElementRef = elm;
199
- } }, h("div", { key: 'd4de72fa7e431c5b29fe135007febc201fe8fe63', class: `card
201
+ } }, h("div", { key: 'f23d0b124407d6a30850d4faa6ecf2b5c42f4266', class: `card
200
202
  theme-${this.theme}
201
203
  size-${this.currentSize}
202
204
  position-${this.pictureLayoutShiftPosition}
@@ -204,7 +206,7 @@ const TetDynamicCard = class {
204
206
  `, onClick: this.handleClick, onKeyUp: (event) => {
205
207
  if (event.key === 'Enter')
206
208
  this.handleClick(event);
207
- }, tabindex: 0, part: "card", "aria-labelledby": this.cardTitle }, h("div", { key: '46e0c68ccb014ac2ceab45a306cff72321b8fa78', class: "image", part: "image" }, h("slot", { key: '247398a97c1bd98a15b0416409383a3af0227377', name: "image" }), this.renderPrice(), this.renderTags()), h("div", { key: '5baa6a07eb4bc12ab4dc02277cbaf7da63fb3680', class: "content-container" }, h("div", { key: '065754ef688f1704460285bc94254ffe1699bc1b', class: "content", part: "content" }, this.cardTitle && (h("h3", { key: '205c9250a605d3b2f1312773406cf14efa1a6a9c', class: "title", part: "title" }, this.cardTitle)), this.subtitle && (h("p", { key: 'c84f03750bb12d959555081a2675fedb1ad6396a', class: "subtitle", part: "subtitle" }, this.subtitle))), this.renderButton()))));
209
+ }, tabindex: 0, part: "card", "aria-labelledby": this.cardTitle }, h("div", { key: '77e5b8e5dac80f993f0cc8d75ebcb195b2769bb4', class: "image", part: "image" }, h("slot", { key: '27541049dba50e22365f349ee35dd9196f94b10c', name: "image" }), this.renderPrice(), this.renderTags()), h("div", { key: '4a9a76436b0da5944c2539fba57af9aa54fc00f5', class: "content-container" }, h("div", { key: 'f85d83b152037d75f01afd14992ad60da1e093c8', class: "content", part: "content" }, this.cardTitle && (h("h3", { key: '8a3226e1cb359f7107eb3b22621141222b97060e', class: "title", part: "title" }, this.cardTitle)), this.subtitle && (h("p", { key: '6ef1c7c4e815729a966c026ee95e94dc13b87ece', class: "subtitle", part: "subtitle" }, this.subtitle))), this.renderButton()))));
208
210
  }
209
211
  static get watchers() { return {
210
212
  "theme": ["onThemeChanged"],
@@ -0,0 +1 @@
1
+ import{r as t,c as e,h as i,H as r}from"./p-83f43fdd.js";const a=class{constructor(i){t(this,i),this.tetDynamicCardClickEvent=e(this,"tetDynamicCardClickEvent",7),this.theme="light",this.size="S",this.sizeChangeBreakpoint="None",this.isInCarousel=!1,this.pictureLayoutShiftPosition="left",this.cardTitle=void 0,this.subtitle=void 0,this.tags=void 0,this.dateTag=void 0,this.dateTagColorLight="black",this.dateTagColorDark="white",this.priceTagOptions={show:!1,background:"white"},this.linkHref=void 0,this.linkText=void 0,this.linkNewTab=!1,this.index=void 0,this.buttonColorTheme=void 0,this.buttonCustomColorCode=void 0,this.buttonCustomColorContentTone="light",this.isFocused=!1,this.originalSize=null,this.currentSize=null}onThemeChanged(t){"dark"===t?(this.dateTagColorRef?.classList.remove(`tag--${this.dateTagColorLight}`),this.dateTagColorRef?.classList.add(`tag--${this.dateTagColorDark}`)):(this.dateTagColorRef?.classList.remove(`tag--${this.dateTagColorDark}`),this.dateTagColorRef?.classList.add(`tag--${this.dateTagColorLight}`))}onSizeChange(){this.originalSize=this.size,this.resizeCard(window.innerWidth)}tetDynamicCardClickEvent;priceViewRef=null;buttonRef=null;dateTagColorRef=null;rootElementRef=null;BREAKPOINTS={MOBILE:768,TABLET_SMALL:1024,TABLET:1440,DESKTOP:1920};CARD_SIZES={standard:{S:"fit-content",M:"calc(50% - 0.75rem)",XL:"100%"},responsive:{mobile:"100%",tablet:"calc(100% - var(--card-width-tablet) - 1.5rem - 2px)",desktop:"calc(100% - var(--card-width-desktop) - 1.5rem - 2px)"}};getCardSize(t){return this.isInCarousel?"S":t<this.BREAKPOINTS.MOBILE?"XL":t<this.BREAKPOINTS.TABLET_SMALL?"M":("L"===this.originalSize||"M"===this.originalSize)&&t<this.BREAKPOINTS.TABLET&&"Tab"===this.sizeChangeBreakpoint?"S":this.originalSize}getMinWidth(t){return t<this.BREAKPOINTS.MOBILE?"calc(var(--card-width-mobile) - 2rem)":t<this.BREAKPOINTS.TABLET?"calc(var(--card-width-tablet) - 2rem)":t<this.BREAKPOINTS.DESKTOP?"var(--card-width-tablet)":"var(--card-width-desktop)"}getCardWidth(t,e){if(this.isInCarousel)return"fit-content";if(e<this.BREAKPOINTS.MOBILE)return this.CARD_SIZES.responsive.mobile;if(e<this.BREAKPOINTS.TABLET){if(("L"===this.originalSize||"M"===this.originalSize)&&"Tab"===this.sizeChangeBreakpoint)return"fit-content";if("M"===t)return this.CARD_SIZES.standard.M;if("L"===t)return this.CARD_SIZES.responsive.tablet}else if("L"===t)return e<this.BREAKPOINTS.DESKTOP?this.CARD_SIZES.responsive.tablet:this.CARD_SIZES.responsive.desktop;return this.CARD_SIZES.standard[t]||"fit-content"}resizeCard=t=>{this.currentSize=this.getCardSize(t),this.rootElementRef.style.minWidth=this.getMinWidth(t),this.rootElementRef.style.width=this.getCardWidth(this.currentSize,t)};resizeObserver=new ResizeObserver((()=>{const t=window.innerWidth;this.resizeCard(t),t<768?(this.priceViewRef?.setAttribute("size","S"),this.buttonRef?.setAttribute("size","small")):t<1920?(this.priceViewRef?.setAttribute("size","M"),this.buttonRef?.setAttribute("size","medium")):(this.priceViewRef?.setAttribute("size","M"),this.buttonRef?.setAttribute("size","large"))}));componentWillLoad(){this.originalSize=this.size,this.currentSize=this.size}componentDidLoad(){this.onThemeChanged(this.theme),this.resizeObserver.observe(window.document.body)}handleClick=t=>{if(t.composedPath().some((t=>t instanceof HTMLElement&&t.classList?.contains("button"))))this.tetDynamicCardClickEvent.emit();else if(this.buttonRef&&this.linkHref){const t=this.buttonRef.shadowRoot?.querySelector("button");t&&t.click()}};renderTags(){const t="dark"===this.theme?this.dateTagColorDark:this.dateTagColorLight;return i("div",{class:"tags-container",part:"tags"},this.tags?.length>0&&i("div",{class:"tags"},this.tags.map((t=>i("span",{class:"tag"},t)))),this.dateTag&&i("div",{class:"tags"},i("div",{class:`tag colored colored--${t}`,ref:t=>{this.dateTagColorRef=t}},i("span",{class:"date-tag-text"},this.dateTag))))}renderPrice(){return this.priceTagOptions?.show?i("div",{class:"price",part:"price"},i("tet-price-view",{ref:t=>{this.priceViewRef=t},font:this.priceTagOptions.font||"Gilroy, Arial, sans-serif",background:this.priceTagOptions.background,staticColors:this.priceTagOptions.isStatic,theme:this.theme,size:"S","heading-text":this.priceTagOptions.headingText,"price-type":this.priceTagOptions.priceType,"euro-price":this.priceTagOptions.euroPrice?.toString(),"cents-price":this.priceTagOptions.centsPrice?.toString(),"footer-text":this.priceTagOptions.footerText,"footer-text-type":this.priceTagOptions.footerTextType})):null}renderButton(){return this.linkText?i("div",{class:"button",part:"button"},i("tet-button",{type:"primary",size:"small",theme:this.theme,"color-theme":this.buttonColorTheme,"custom-color-code":this.buttonCustomColorCode,"custom-color-content-tone":this.buttonCustomColorContentTone,url:this.linkHref,"url-target":this.linkNewTab?"_blank":"_self","accessibility-label":this.linkText,ref:t=>{this.buttonRef=t}},this.linkText)):null}render(){return i(r,{key:"f540861665cea83ffe29d147fefb2c471b0ab208",class:{"dynamic-card":!0,"is-focused":this.isFocused},"data-index":this.index,ref:t=>{this.rootElementRef=t}},i("div",{key:"f23d0b124407d6a30850d4faa6ecf2b5c42f4266",class:`card\n theme-${this.theme}\n size-${this.currentSize}\n position-${this.pictureLayoutShiftPosition}\n carousel-${this.isInCarousel}\n `,onClick:this.handleClick,onKeyUp:t=>{"Enter"===t.key&&this.handleClick(t)},tabindex:0,part:"card","aria-labelledby":this.cardTitle},i("div",{key:"77e5b8e5dac80f993f0cc8d75ebcb195b2769bb4",class:"image",part:"image"},i("slot",{key:"27541049dba50e22365f349ee35dd9196f94b10c",name:"image"}),this.renderPrice(),this.renderTags()),i("div",{key:"4a9a76436b0da5944c2539fba57af9aa54fc00f5",class:"content-container"},i("div",{key:"f85d83b152037d75f01afd14992ad60da1e093c8",class:"content",part:"content"},this.cardTitle&&i("h3",{key:"8a3226e1cb359f7107eb3b22621141222b97060e",class:"title",part:"title"},this.cardTitle),this.subtitle&&i("p",{key:"6ef1c7c4e815729a966c026ee95e94dc13b87ece",class:"subtitle",part:"subtitle"},this.subtitle)),this.renderButton())))}static get watchers(){return{theme:["onThemeChanged"],size:["onSizeChange"]}}};a.style=":host{--image-type:cover;--image-background-color:var(--tc-background-white-black);--card-width-mobile:17.5rem;--card-height-mobile:27.75rem;--card-width-tablet:21.375rem;--card-height-tablet:33.875rem;--card-width-desktop:25.625rem;--card-height-desktop:39.5rem;--option-card-bg:var(--tc-background-white-black);--option-card-text:var(--tc-text-primary);--option-card-border:var(--tc-border-quaternary);display:block;font-family:var(--tet-font-family-primary)}.card{-webkit-user-drag:none;user-select:none;cursor:pointer;background:var(--tc-background-white-black);border-radius:1rem;border:0.0625rem solid var(--tc-border-quaternary);overflow:hidden;position:relative;display:flex;flex-direction:column;align-items:center;gap:1rem;margin:0 auto;min-width:var(--card-width-mobile);width:var(--card-width-mobile);height:var(--card-height-mobile);transition:box-shadow 0.15s ease}.card.size-S{width:var(--card-width-mobile);height:var(--card-height-mobile)}.card.size-XL,.card.size-L,.card.size-M{width:100%}.card:focus-visible{outline:0.125rem solid var(--tc-blue-40);outline-offset:0.125rem}.card:hover{box-shadow:0 4px 24px 0 rgba(0, 0, 0, 0.1), 0 1.5px 6px 0 rgba(0, 0, 0, 0.08)}.card:hover ::slotted(img){transform:scale(1.06)}.card:active{box-shadow:0 0 1px 0 rgba(12, 12, 14, 0.08), 0 1px 3px 0 rgba(12, 12, 14, 0.12)}.card:active ::slotted(img){transform:scale(1.01)}.content-container{display:flex;flex-direction:column;align-items:center;justify-content:center;width:100%;height:100%}.image{-webkit-user-drag:none;user-select:none;flex-shrink:0;width:100%;height:16.125rem;overflow:hidden;position:relative;background-color:var(--image-background-color)}.image ::slotted(img){transition:transform 0.3s ease;width:100%;height:100%;object-fit:var(--image-type);display:block}.price{position:absolute;bottom:0.75rem;right:0.75rem;z-index:1}.tags-container{position:absolute;top:0.75rem;left:0.75rem;display:flex;flex-direction:column;gap:0.25rem;z-index:1}.content{height:auto;padding:0 1rem;text-align:center}.title{margin:0;font-family:var(--font-family-fallback);font-size:1.25rem;font-weight:600;margin-bottom:0.5rem;color:var(--tc-text-primary);line-height:1.5rem;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;text-overflow:ellipsis;word-break:break-word;max-height:3rem}.subtitle{color:var(--tc-text-primary);text-align:center;font-family:var(--font-family-content);font-size:0.875rem;font-style:normal;font-weight:400;line-height:1.25rem;letter-spacing:-0.003125rem;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;text-overflow:ellipsis;word-break:break-word;max-height:2.5rem}.button{margin-top:auto;margin-bottom:1.5rem;width:fit-content;text-wrap:nowrap}.tags-container{position:absolute;top:0.75rem;left:0.75rem;display:flex;flex-direction:column;gap:0.25rem}.tags{display:flex;flex-wrap:wrap;gap:0.25rem}.tag{border:0.0625px solid var(--tc-border-tertiary);padding:0.1875rem 0.3125rem;border-radius:0.375rem;background:var(--tc-layer-primary);color:var(--tc-text-primary);font-family:var(--font-family-content);font-size:0.75rem;font-style:normal;font-weight:500;line-height:1rem}.tag.colored--white{background:var(--tc-layer-primary);color:var(--tc-text-primary);border:0.0625px solid var(--tc-border-tertiary)}.tag.colored--black{color:var(--tc-text-primary-dark);background:var(--tc-layer-primary-dark);border:0.0625px solid var(--tc-border-primary)}.tag.colored--yellow{background:var(--tc-yellow-20);color:var(--tc-text-primary);border:0.0625px solid var(--tc-border-tertiary)}.theme-dark{background:var(--tc-layer-primary-dark);border:0.0625rem solid var(--tc-border-quaternary-dark)}.theme-dark .title{color:var(--tc-text-primary-dark)}.theme-dark .subtitle{color:var(--tc-text-primary-dark)}.theme-dark .tag:not(.colored){color:var(--tc-text-primary-dark);background:var(--tc-layer-primary-dark);border:0.0625px solid var(--tc-border-primary)}@media all and (min-width: 48rem){.card{width:var(--card-width-tablet);height:var(--card-height-tablet)}.card.size-S{width:var(--card-width-tablet);height:var(--card-height-tablet)}.card.size-M{width:100%}.card.size-M .image{width:100%}.card.size-M.carousel-true{width:44rem}.card.size-XL,.card.size-L{width:100%;flex-direction:row;gap:0}.card.size-XL .image,.card.size-L .image{width:60%;height:100%}.card.size-XL .button,.card.size-L .button{margin-top:0}.card.size-XL.position-right,.card.size-L.position-right{flex-direction:row-reverse}.card.size-XL.carousel-true,.card.size-L.carousel-true{width:44rem}.image{width:var(--card-width-tablet);height:var(--card-width-tablet)}.title{font-size:1.5rem;line-height:1.75rem;max-height:3.5rem}.tag{font-size:0.875rem;line-height:1.25rem;letter-spacing:-0.003125rem}}@media all and (min-width: 90rem){.card.size-M{width:100%}.card.size-M.carousel-true{width:39.375rem}.card.size-L{width:100%;flex-direction:row;gap:0}.card.size-L .image{width:62%;height:100%}.card.size-L .button{margin-top:0}.card.size-L.position-right{flex-direction:row-reverse}.card.size-L.carousel-true{width:57.25rem}.card.size-XL .image{width:64%}.card.size-XL.carousel-true{width:80.25rem}}@media all and (min-width: 120rem){.card{width:var(--card-width-desktop);height:var(--card-height-desktop)}.card.size-S{width:var(--card-width-desktop);height:var(--card-height-desktop)}.card.size-L.carousel-true{width:83.125rem}.card.size-XL .image{width:72%}.card.size-XL.carousel-true{width:110.25rem}.image{width:var(--card-width-desktop);height:var(--card-width-desktop)}.title{font-size:1.75rem;line-height:2rem;max-height:4rem}.subtitle{font-size:1rem;line-height:1.5rem;letter-spacing:-0.00625rem;max-height:3rem}}";export{a as tet_dynamic_card}
@@ -1 +1 @@
1
- import{p as e,b as t}from"./p-83f43fdd.js";export{s as setNonce}from"./p-83f43fdd.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-0e2dbd84",[[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-f68450a4",[[1,"tet-b2b-configurator",{"theme":[1],"stickyRefEl":[1,"sticky-ref-el"],"referenceElement":[32],"isLoading":[32],"itemToRemove":[32],"checkoutAttempted":[32],"formState":[32],"activePrimaryCategoryId":[32],"activeSecondaryCategoryId":[32],"selectedPrimaryCards":[32],"selectedSecondaryCards":[32],"isDesktopResolution":[32],"setSubmitFormState":[64]},[[9,"resize","onResize"]],{"activePrimaryCategoryId":["resetSelectedPrimaryCards"],"activeSecondaryCategoryId":["resetSelectedSecondaryCards"]}]]],["p-7056a120",[[1,"tet-compare-cards-tab",{"data":[16],"forceColumn":[4,"force-column"],"layout":[1],"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-122f3d3c",[[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-c9f21fde",[[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-872bbccf",[[1,"tet-display",{"activeBreakpoint":[32],"exampleBaseDisplay":[32],"exampleBreakpoint":[32],"exampleBreakpointDisplay":[32],"exampleBreakpointEnabled":[32],"exampleJustify":[32],"exampleAlignItems":[32],"exampleFlexDirection":[32],"exampleFlexWrap":[32],"exampleOrderA":[32],"exampleOrderB":[32]}]]],["p-0f2d1a9c",[[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-a64e3e96",[[1,"tet-cloud-application-form-dialog",{"privacyPolicyLinkUrl":[1,"privacy-policy-link-url"],"loading":[4],"showOverlay":[4,"show-overlay"],"language":[1],"theme":[1],"privacyPolicyError":[32],"open":[64],"close":[64]},null,{"language":["onLanguageChange"]}]]],["p-7c7fb42f",[[1,"tet-compare-card-v2",{"clickCallback":[16],"cardType":[1,"card-type"],"theme":[1],"colorIcons":[4,"color-icons"],"bestChoice":[4,"best-choice"],"language":[1],"options":[16],"cardBackgroundColor":[1,"card-background-color"],"cardScript":[1,"card-script"],"bestChoiceTextPosition":[1,"best-choice-text-position"],"darkMode":[4,"dark-mode"],"bonuses":[16],"benefitTitle":[1,"benefit-title"],"benefits":[16],"contractTerm":[2,"contract-term"],"bestChoiceText":[1,"best-choice-text"],"currency":[1],"secondaryLink":[1,"secondary-link"],"secondaryLinkText":[1,"secondary-link-text"],"secondaryLinkOpenBlank":[4,"secondary-link-open-blank"],"buttonTitle":[1,"button-title"],"linkOpenBlank":[4,"link-open-blank"],"dropdownOptions":[16],"showLoader":[32],"selectedProductCode":[32],"selectedSwitchKeys":[32],"preselectedKeys":[32],"preselectedProductCode":[32],"allProductData":[32],"preselectedRemountId":[32]},[[0,"optionSelected","onOptionSelected"]]]]],["p-b0fc3440",[[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-2328b1d4",[[1,"tet-divider",{"exampleDividerClass":[32],"exampleDarkSurface":[32]}]]],["p-bcca51cc",[[1,"tet-position",{"examplePositionClass":[32]}]]],["p-3fc6a020",[[1,"tet-text",{"exampleAlignClass":[32],"exampleTransformClass":[32],"exampleDecorationClass":[32],"exampleFontStyleClass":[32],"exampleWhiteSpaceClass":[32],"exampleWordBreakClass":[32]}]]],["p-629a9a5d",[[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-efdef0e5",[[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-ae8ff573",[[1,"tet-feedback-form",{"theme":[1],"language":[1],"data":[16],"expanded":[32],"formError":[32],"characterCount":[32],"submissionData":[32],"submitted":[32]},null,{"language":["onLanguageChange"]}]]],["p-f16514db",[[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-4e58c5e2",[[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-4fec6598",[[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],"linkHref":[1,"link-href"],"linkText":[1,"link-text"],"linkNewTab":[4,"link-new-tab"],"index":[2],"buttonColorTheme":[1,"button-color-theme"],"buttonCustomColorCode":[1,"button-custom-color-code"],"buttonCustomColorContentTone":[1,"button-custom-color-content-tone"],"isFocused":[32],"originalSize":[32],"currentSize":[32]},null,{"theme":["onThemeChanged"],"size":["onSizeChange"]}]]],["p-76526271",[[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-fa446e53",[[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],"theme":[1],"isKeydownFocus":[32]}]]],["p-5e8466e6",[[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-62bcf382",[[1,"tet-referral",{"theme":[1],"language":[1],"data":[1]},null,{"language":["onLanguageChange"]}]]],["p-55be4b32",[[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-040c0f07",[[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-7de684c1",[[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-3a3fd77f",[[1,"tet-business-compare-card",{"mainTitle":[1,"main-title"],"bulletPoints":[16],"pricePrefix":[1,"price-prefix"],"price":[1],"currency":[1],"theme":[1],"hasContentInFooter":[32]}]]],["p-a0f6721c",[[1,"tet-carousel",{"theme":[1],"showDots":[4,"show-dots"],"showGradient":[4,"show-gradient"],"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"],"maxDots":[2,"max-dots"],"label":[1],"nudgeAnimationInterval":[2,"nudge-animation-interval"],"language":[1],"activeDotIndex":[32],"dotCount":[32],"totalItems":[32],"activeItem":[32],"isDragging":[32],"dragOffset":[32],"isNudgeAnimating":[32]},null,{"language":["onLanguageChange"],"showGradient":["checkGradient"],"dragOffset":["checkGradient"],"nudgeAnimationInterval":["onNudgeAnimIntervalChange"],"isNudgeAnimating":["onNudgeAnimationStateChange"]}]]],["p-46975ec4",[[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-9c36ecbd",[[1,"tet-floating-block",{"theme":[1],"header":[1],"content":[16]}]]],["p-7a3c1254",[[1,"tet-link-card-list",{"theme":[1],"layout":[1],"placeholderCount":[2,"placeholder-count"],"items":[16],"isSearchResult":[4,"is-search-result"]}]]],["p-73411459",[[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],"fixedFirstColumn":[4,"fixed-first-column"],"normalizedColumns":[32]},null,{"tableData":["onTableDataChange"]}]]],["p-8bfd498e",[[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-43c3b078",[[1,"tet-business-lines",{"language":[1],"addressKey":[2,"address-key"],"showHeadings":[4,"show-headings"],"address":[32],"businessLines":[32]},null,{"language":["onLanguageChange"],"addressKey":["onAddressKeyChange"]}]]],["p-9c837569",[[0,"tet-business-round-stepper",{"stepperData":[16],"layout":[1],"theme":[1]}]]],["p-1d0c3563",[[1,"tet-inline-message",{"variant":[1],"theme":[1]}]]],["p-bb7d4ae2",[[1,"tet-label",{"labelTitle":[1,"label-title"],"translateTitle":[4,"translate-title"],"active":[4],"theme":[1],"type":[1],"showIcon":[4,"show-icon"]}]]],["p-39796998",[[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"],"menuItemTheme":[1,"menu-item-theme"],"showMenuItemAnimation":[4,"show-menu-item-animation"],"subLevels":[16],"darkMode":[4,"dark-mode"],"isSubmenuLeft":[32]},[[9,"resize","onWindowResize"]]]]],["p-32ece6e1",[[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"],"highlightTheme":[1,"highlight-theme"],"showAnimation":[4,"show-animation"],"firstLevelIcon":[1,"first-level-icon"],"hideBottomBorder":[4,"hide-bottom-border"],"isExpanded":[32],"hasDropdownContent":[32],"subMenuState":[32]}]]],["p-f9a0b36a",[[1,"tet-navigation-mobile",{"darkMode":[4,"dark-mode"],"isTogglerExpanded":[32],"isTogglerVisible":[32],"showToggler":[64],"hideToggler":[64],"open":[64],"close":[64]},null,{"isTogglerExpanded":["onMenuToggle"]}]]],["p-2a43ccef",[[1,"tet-round-stepper",{"stepperData":[16],"forcedColumn":[4,"forced-column"],"hideIcons":[4,"hide-icons"],"theme":[1]},[[9,"resize","onResize"]]]]],["p-c13b2ba7",[[1,"tet-tv-gift-list",{"header":[1],"listBulletIcon":[1,"list-bullet-icon"],"imageSource":[1,"image-source"],"list":[16],"containerSize":[32]},[[9,"resize","onWindowResize"]]]]],["p-cde8057a",[[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-798aa31d",[[1,"tet-border-radius"]]],["p-f6916bfc",[[1,"tet-business-card",{"mainTitle":[1,"main-title"],"subTitle":[1,"sub-title"],"infoText":[1,"info-text"],"type":[1],"theme":[1],"size":[32]}]]],["p-cf479331",[[1,"tet-colors",{"showVariables":[4,"show-variables"],"darkTheme":[4,"dark-theme"],"isTokensExample":[4,"is-tokens-example"],"tokenSections":[32],"copiedToken":[32]},null,{"isTokensExample":["handleTokenSectionStateChange"],"darkTheme":["handleTokenSectionStateChange"]}]]],["p-b34e86ef",[[1,"tet-contact-info",{"contactBlocks":[16]}]]],["p-5391d594",[[1,"tet-counter",{"startValue":[2,"start-value"],"endValue":[2,"end-value"],"duration":[2],"delay":[2],"valueSteps":[2,"value-steps"],"stepValues":[16],"loopInterval":[2,"loop-interval"],"easing":[1],"easingConfig":[16],"disableAnimation":[4,"disable-animation"],"thousandSeparator":[4,"thousand-separator"],"startOnViewport":[4,"start-on-viewport"],"currentValue":[32],"restartCounter":[64]},null,{"startValue":["onCounterConfigChanged"],"endValue":["onCounterConfigChanged"],"duration":["onCounterConfigChanged"],"delay":["onCounterConfigChanged"],"valueSteps":["onCounterConfigChanged"],"stepValues":["onCounterConfigChanged"],"loopInterval":["onCounterConfigChanged"],"easing":["onCounterConfigChanged"],"easingConfig":["onCounterConfigChanged"],"disableAnimation":["onCounterConfigChanged"],"startOnViewport":["onCounterConfigChanged"]}]]],["p-e98108ba",[[1,"tet-expansion-panel",{"toggleElement":[1025,"toggle-element"],"initialState":[1,"initial-state"],"state":[32],"open":[64],"close":[64],"toggle":[64],"getState":[64]}]]],["p-6dde4d69",[[1,"tet-font-weight"]]],["p-a903f58f",[[1,"tet-fonts"]]],["p-028e8ace",[[0,"tet-grid"]]],["p-43fd6ff8",[[1,"tet-layout"]]],["p-d4dc17f5",[[1,"tet-link"]]],["p-b4ecbc40",[[1,"tet-snicker-card-badge",{"badgeTitle":[1,"badge-title"],"type":[1],"state":[1],"theme":[1]}]]],["p-75927057",[[1,"tet-spacing"]]],["p-ee3604eb",[[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-d5b72171",[[1,"tet-icon",{"name":[1],"theme":[1],"type":[1],"useDefaultColor":[4,"use-default-color"],"accessibilityLabel":[1,"accessibility-label"],"focusable":[4]},null,{"name":["onNameChange"]}]]],["p-33768388",[[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"]}]]],["p-81db4c30",[[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-5845a3dc",[[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-0d5562a1",[[1,"tet-stepper",{"stepperData":[16]}]]],["p-ce4b6943",[[1,"tet-stepper-v2",{"stepperData":[16],"theme":[1]}]]],["p-26b112a2",[[1,"tet-stepper-v3",{"stepperData":[16],"theme":[1]}]]],["p-ce850061",[[1,"tet-price-view",{"theme":[1],"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"],"staticColors":[4,"static-colors"]}]]],["p-33f2ed2e",[[1,"tet-textarea",{"value":[1],"label":[1],"placeholder":[1],"disabled":[4],"errorMessages":[16],"theme":[1],"maxLength":[8,"max-length"],"isKeyboardFocus":[32],"focusVisible":[32],"getValue":[64]},[[8,"keydown","onKeyDown"],[9,"mousedown","onMouseDown"]]]]],["p-5d70599c",[[1,"tet-placeholder",{"width":[1],"height":[1],"darkTheme":[4,"dark-theme"]}]]],["p-2738fbb7",[[1,"tet-checkbox",{"theme":[1],"label":[1],"accessibilityLabel":[1,"accessibility-label"],"name":[1],"value":[8],"disabled":[4],"unavailable":[4],"checked":[1540],"error":[1540],"indeterminate":[1540],"focusStyleOnContainer":[4,"focus-style-on-container"],"iconName":[1,"icon-name"],"labelFont":[1,"label-font"],"alignCenter":[4,"align-center"],"hasSlotIcon":[32],"setChecked":[64],"setIndeterminate":[64],"setError":[64]},null,{"indeterminate":["updateIndeterminateState"]}]]],["p-cf11c4cd",[[1,"tet-compare-cards",{"data":[1040],"vatText":[1,"vat-text"],"forceColumn":[4,"force-column"],"theme":[1],"layout":[1],"cardScript":[1,"card-script"],"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-d9560c74",[[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"],"alwaysExpanded":[4,"always-expanded"],"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"],[0,"focusout","onFocusOut"]],{"language":["onLanguageChanged"],"addressKey":["search"],"inputDisabled":["onInputDisabledStateChange"]}]]],["p-71018cb8",[[6,"tet-radio",{"theme":[1],"label":[1],"accessibilityLabel":[1,"accessibility-label"],"name":[1],"value":[8],"disabled":[4],"unavailable":[4],"checked":[1540],"error":[1540],"inputAutofocus":[4,"input-autofocus"],"focusStyleOnContainer":[4,"focus-style-on-container"],"iconName":[1,"icon-name"],"labelFont":[1,"label-font"],"alignCenter":[4,"align-center"],"hasSlotIcon":[32],"setChecked":[64],"setError":[64]},[[0,"keydown","onKeydown"]]]]],["p-4967b041",[[1,"tet-switch",{"theme":[1],"label":[1],"accessibilityLabel":[1,"accessibility-label"],"name":[1],"value":[8],"disabled":[4],"checked":[516],"labelFont":[1,"label-font"],"alignCenter":[4,"align-center"],"labelPosition":[1,"label-position"],"focusStyleOnContainer":[4,"focus-style-on-container"],"setChecked":[64]}]]],["p-79700f85",[[1,"tet-tab-header",{"theme":[1],"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-5533f71b",[[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-c10d5369",[[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-584f54a7",[[1,"tet-loader"]]],["p-0690732e",[[1,"tet-autocomplete",{"showOptionsOnEscapeClear":[4,"show-options-on-escape-clear"],"defaultOptions":[16],"optionsFilterAction":[16],"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]},[[1,"pointerup","onPointerUp"],[9,"pointerup","onWindowPointerUp"],[9,"mousedown","onMouseDown"],[8,"activeComponentStateChanged","onComponentActiveStateChange"],[0,"keydown","handleKeyDown"],[0,"focusout","handleFocusOut"]]]]],["p-c31236d5",[[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"]}],[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-00e4bbed",[[17,"tet-button",{"clickCallback":[16],"size":[1],"type":[1],"theme":[1],"colorTheme":[1,"color-theme"],"customColorCode":[1,"custom-color-code"],"customColorContentTone":[1,"custom-color-content-tone"],"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-f5d4d8c8",[[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"]]]]],["p-b822a377",[[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-4f5a19cb",[[1,"tet-stepper-input",{"theme":[1],"value":[1026],"min":[2],"max":[2],"step":[2],"size":[1],"disabled":[4],"label":[1],"displayMode":[1,"display-mode"],"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-f06fb66c",[[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-be3a10d0",[[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-09e92f79",[[1,"tet-accordion",{"isOpen":[1540,"is-open"],"theme":[1],"header":[1],"headerIconName":[1,"header-icon-name"],"headerImageSrc":[1,"header-image-src"],"headerImageAlt":[1,"header-image-alt"],"indicatorDirection":[1,"indicator-direction"],"withBorder":[4,"with-border"],"withAutoScroll":[4,"with-auto-scroll"],"breakpoint":[1],"headingTag":[1,"heading-tag"],"transparentBackground":[4,"transparent-background"],"isHeaderInteractive":[4,"is-header-interactive"],"open":[64],"close":[64],"toggle":[64],"getState":[64],"setState":[64]}]]],["p-5a6fc34c",[[1,"tet-b2b-check-out-form",{"language":[1],"theme":[1],"open":[64],"close":[64]},null,{"language":["onLanguageChange"]}],[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"]}],[1,"tet-business-summary-card",{"productName":[1,"product-name"],"price":[2],"productDescription":[1,"product-description"],"discountPrice":[2,"discount-price"],"currency":[1],"contractTerm":[2,"contract-term"],"theme":[1],"withStepper":[4,"with-stepper"],"value":[2],"minValue":[2,"min-value"],"maxValue":[2,"max-value"],"stepperLabel":[1,"stepper-label"],"context":[1],"language":[1]}],[1,"tet-b2b-configurator-cart",{"theme":[1],"data":[16],"isCartEmpty":[4,"is-cart-empty"],"context":[1],"isDesktopResolution":[4,"is-desktop-resolution"],"isAccordionOpen":[32],"isPrimaryBlockOpen":[32],"isSecondaryBlockOpen":[32],"primarySlotFilled":[32],"secondarySlotFilled":[32],"changeBlockState":[64]},null,{"isDesktopResolution":["openAccordionOnResolutionChange"],"isCartEmpty":["checkStickyClassOnCartEmptyChange"]}],[1,"tet-business-navigation",{"menuItems":[16],"theme":[1],"expandable":[4],"language":[1],"selectedItemId":[32],"mainMenuItemId":[32],"positions":[32],"expanded":[32],"openedMenuIds":[32],"selectMenuItem":[64]}]]],["p-7a3e4581",[[1,"tet-spinner",{"theme":[1],"size":[1],"type":[1],"previousProgress":[32],"setProgress":[64]},null,{"type":["onTypeChange"]}]]],["p-10e72480",[[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-ed044f47",[[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-6297692b",[[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"]]]]]]'),e))));
1
+ import{p as e,b as t}from"./p-83f43fdd.js";export{s as setNonce}from"./p-83f43fdd.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-0e2dbd84",[[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-f68450a4",[[1,"tet-b2b-configurator",{"theme":[1],"stickyRefEl":[1,"sticky-ref-el"],"referenceElement":[32],"isLoading":[32],"itemToRemove":[32],"checkoutAttempted":[32],"formState":[32],"activePrimaryCategoryId":[32],"activeSecondaryCategoryId":[32],"selectedPrimaryCards":[32],"selectedSecondaryCards":[32],"isDesktopResolution":[32],"setSubmitFormState":[64]},[[9,"resize","onResize"]],{"activePrimaryCategoryId":["resetSelectedPrimaryCards"],"activeSecondaryCategoryId":["resetSelectedSecondaryCards"]}]]],["p-7056a120",[[1,"tet-compare-cards-tab",{"data":[16],"forceColumn":[4,"force-column"],"layout":[1],"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-122f3d3c",[[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-c9f21fde",[[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-872bbccf",[[1,"tet-display",{"activeBreakpoint":[32],"exampleBaseDisplay":[32],"exampleBreakpoint":[32],"exampleBreakpointDisplay":[32],"exampleBreakpointEnabled":[32],"exampleJustify":[32],"exampleAlignItems":[32],"exampleFlexDirection":[32],"exampleFlexWrap":[32],"exampleOrderA":[32],"exampleOrderB":[32]}]]],["p-0f2d1a9c",[[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-a64e3e96",[[1,"tet-cloud-application-form-dialog",{"privacyPolicyLinkUrl":[1,"privacy-policy-link-url"],"loading":[4],"showOverlay":[4,"show-overlay"],"language":[1],"theme":[1],"privacyPolicyError":[32],"open":[64],"close":[64]},null,{"language":["onLanguageChange"]}]]],["p-7c7fb42f",[[1,"tet-compare-card-v2",{"clickCallback":[16],"cardType":[1,"card-type"],"theme":[1],"colorIcons":[4,"color-icons"],"bestChoice":[4,"best-choice"],"language":[1],"options":[16],"cardBackgroundColor":[1,"card-background-color"],"cardScript":[1,"card-script"],"bestChoiceTextPosition":[1,"best-choice-text-position"],"darkMode":[4,"dark-mode"],"bonuses":[16],"benefitTitle":[1,"benefit-title"],"benefits":[16],"contractTerm":[2,"contract-term"],"bestChoiceText":[1,"best-choice-text"],"currency":[1],"secondaryLink":[1,"secondary-link"],"secondaryLinkText":[1,"secondary-link-text"],"secondaryLinkOpenBlank":[4,"secondary-link-open-blank"],"buttonTitle":[1,"button-title"],"linkOpenBlank":[4,"link-open-blank"],"dropdownOptions":[16],"showLoader":[32],"selectedProductCode":[32],"selectedSwitchKeys":[32],"preselectedKeys":[32],"preselectedProductCode":[32],"allProductData":[32],"preselectedRemountId":[32]},[[0,"optionSelected","onOptionSelected"]]]]],["p-b0fc3440",[[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-2328b1d4",[[1,"tet-divider",{"exampleDividerClass":[32],"exampleDarkSurface":[32]}]]],["p-bcca51cc",[[1,"tet-position",{"examplePositionClass":[32]}]]],["p-3fc6a020",[[1,"tet-text",{"exampleAlignClass":[32],"exampleTransformClass":[32],"exampleDecorationClass":[32],"exampleFontStyleClass":[32],"exampleWhiteSpaceClass":[32],"exampleWordBreakClass":[32]}]]],["p-629a9a5d",[[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-efdef0e5",[[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-ae8ff573",[[1,"tet-feedback-form",{"theme":[1],"language":[1],"data":[16],"expanded":[32],"formError":[32],"characterCount":[32],"submissionData":[32],"submitted":[32]},null,{"language":["onLanguageChange"]}]]],["p-f16514db",[[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-4e58c5e2",[[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-da0fc55d",[[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],"linkHref":[1,"link-href"],"linkText":[1,"link-text"],"linkNewTab":[4,"link-new-tab"],"index":[2],"buttonColorTheme":[1,"button-color-theme"],"buttonCustomColorCode":[1,"button-custom-color-code"],"buttonCustomColorContentTone":[1,"button-custom-color-content-tone"],"isFocused":[32],"originalSize":[32],"currentSize":[32]},null,{"theme":["onThemeChanged"],"size":["onSizeChange"]}]]],["p-76526271",[[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-fa446e53",[[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],"theme":[1],"isKeydownFocus":[32]}]]],["p-5e8466e6",[[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-62bcf382",[[1,"tet-referral",{"theme":[1],"language":[1],"data":[1]},null,{"language":["onLanguageChange"]}]]],["p-55be4b32",[[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-040c0f07",[[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-7de684c1",[[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-3a3fd77f",[[1,"tet-business-compare-card",{"mainTitle":[1,"main-title"],"bulletPoints":[16],"pricePrefix":[1,"price-prefix"],"price":[1],"currency":[1],"theme":[1],"hasContentInFooter":[32]}]]],["p-a0f6721c",[[1,"tet-carousel",{"theme":[1],"showDots":[4,"show-dots"],"showGradient":[4,"show-gradient"],"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"],"maxDots":[2,"max-dots"],"label":[1],"nudgeAnimationInterval":[2,"nudge-animation-interval"],"language":[1],"activeDotIndex":[32],"dotCount":[32],"totalItems":[32],"activeItem":[32],"isDragging":[32],"dragOffset":[32],"isNudgeAnimating":[32]},null,{"language":["onLanguageChange"],"showGradient":["checkGradient"],"dragOffset":["checkGradient"],"nudgeAnimationInterval":["onNudgeAnimIntervalChange"],"isNudgeAnimating":["onNudgeAnimationStateChange"]}]]],["p-46975ec4",[[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-9c36ecbd",[[1,"tet-floating-block",{"theme":[1],"header":[1],"content":[16]}]]],["p-7a3c1254",[[1,"tet-link-card-list",{"theme":[1],"layout":[1],"placeholderCount":[2,"placeholder-count"],"items":[16],"isSearchResult":[4,"is-search-result"]}]]],["p-73411459",[[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],"fixedFirstColumn":[4,"fixed-first-column"],"normalizedColumns":[32]},null,{"tableData":["onTableDataChange"]}]]],["p-8bfd498e",[[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-43c3b078",[[1,"tet-business-lines",{"language":[1],"addressKey":[2,"address-key"],"showHeadings":[4,"show-headings"],"address":[32],"businessLines":[32]},null,{"language":["onLanguageChange"],"addressKey":["onAddressKeyChange"]}]]],["p-9c837569",[[0,"tet-business-round-stepper",{"stepperData":[16],"layout":[1],"theme":[1]}]]],["p-1d0c3563",[[1,"tet-inline-message",{"variant":[1],"theme":[1]}]]],["p-bb7d4ae2",[[1,"tet-label",{"labelTitle":[1,"label-title"],"translateTitle":[4,"translate-title"],"active":[4],"theme":[1],"type":[1],"showIcon":[4,"show-icon"]}]]],["p-39796998",[[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"],"menuItemTheme":[1,"menu-item-theme"],"showMenuItemAnimation":[4,"show-menu-item-animation"],"subLevels":[16],"darkMode":[4,"dark-mode"],"isSubmenuLeft":[32]},[[9,"resize","onWindowResize"]]]]],["p-32ece6e1",[[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"],"highlightTheme":[1,"highlight-theme"],"showAnimation":[4,"show-animation"],"firstLevelIcon":[1,"first-level-icon"],"hideBottomBorder":[4,"hide-bottom-border"],"isExpanded":[32],"hasDropdownContent":[32],"subMenuState":[32]}]]],["p-f9a0b36a",[[1,"tet-navigation-mobile",{"darkMode":[4,"dark-mode"],"isTogglerExpanded":[32],"isTogglerVisible":[32],"showToggler":[64],"hideToggler":[64],"open":[64],"close":[64]},null,{"isTogglerExpanded":["onMenuToggle"]}]]],["p-2a43ccef",[[1,"tet-round-stepper",{"stepperData":[16],"forcedColumn":[4,"forced-column"],"hideIcons":[4,"hide-icons"],"theme":[1]},[[9,"resize","onResize"]]]]],["p-c13b2ba7",[[1,"tet-tv-gift-list",{"header":[1],"listBulletIcon":[1,"list-bullet-icon"],"imageSource":[1,"image-source"],"list":[16],"containerSize":[32]},[[9,"resize","onWindowResize"]]]]],["p-cde8057a",[[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-798aa31d",[[1,"tet-border-radius"]]],["p-f6916bfc",[[1,"tet-business-card",{"mainTitle":[1,"main-title"],"subTitle":[1,"sub-title"],"infoText":[1,"info-text"],"type":[1],"theme":[1],"size":[32]}]]],["p-cf479331",[[1,"tet-colors",{"showVariables":[4,"show-variables"],"darkTheme":[4,"dark-theme"],"isTokensExample":[4,"is-tokens-example"],"tokenSections":[32],"copiedToken":[32]},null,{"isTokensExample":["handleTokenSectionStateChange"],"darkTheme":["handleTokenSectionStateChange"]}]]],["p-b34e86ef",[[1,"tet-contact-info",{"contactBlocks":[16]}]]],["p-5391d594",[[1,"tet-counter",{"startValue":[2,"start-value"],"endValue":[2,"end-value"],"duration":[2],"delay":[2],"valueSteps":[2,"value-steps"],"stepValues":[16],"loopInterval":[2,"loop-interval"],"easing":[1],"easingConfig":[16],"disableAnimation":[4,"disable-animation"],"thousandSeparator":[4,"thousand-separator"],"startOnViewport":[4,"start-on-viewport"],"currentValue":[32],"restartCounter":[64]},null,{"startValue":["onCounterConfigChanged"],"endValue":["onCounterConfigChanged"],"duration":["onCounterConfigChanged"],"delay":["onCounterConfigChanged"],"valueSteps":["onCounterConfigChanged"],"stepValues":["onCounterConfigChanged"],"loopInterval":["onCounterConfigChanged"],"easing":["onCounterConfigChanged"],"easingConfig":["onCounterConfigChanged"],"disableAnimation":["onCounterConfigChanged"],"startOnViewport":["onCounterConfigChanged"]}]]],["p-e98108ba",[[1,"tet-expansion-panel",{"toggleElement":[1025,"toggle-element"],"initialState":[1,"initial-state"],"state":[32],"open":[64],"close":[64],"toggle":[64],"getState":[64]}]]],["p-6dde4d69",[[1,"tet-font-weight"]]],["p-a903f58f",[[1,"tet-fonts"]]],["p-028e8ace",[[0,"tet-grid"]]],["p-43fd6ff8",[[1,"tet-layout"]]],["p-d4dc17f5",[[1,"tet-link"]]],["p-b4ecbc40",[[1,"tet-snicker-card-badge",{"badgeTitle":[1,"badge-title"],"type":[1],"state":[1],"theme":[1]}]]],["p-75927057",[[1,"tet-spacing"]]],["p-ee3604eb",[[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-d5b72171",[[1,"tet-icon",{"name":[1],"theme":[1],"type":[1],"useDefaultColor":[4,"use-default-color"],"accessibilityLabel":[1,"accessibility-label"],"focusable":[4]},null,{"name":["onNameChange"]}]]],["p-33768388",[[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"]}]]],["p-81db4c30",[[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-5845a3dc",[[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-0d5562a1",[[1,"tet-stepper",{"stepperData":[16]}]]],["p-ce4b6943",[[1,"tet-stepper-v2",{"stepperData":[16],"theme":[1]}]]],["p-26b112a2",[[1,"tet-stepper-v3",{"stepperData":[16],"theme":[1]}]]],["p-ce850061",[[1,"tet-price-view",{"theme":[1],"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"],"staticColors":[4,"static-colors"]}]]],["p-33f2ed2e",[[1,"tet-textarea",{"value":[1],"label":[1],"placeholder":[1],"disabled":[4],"errorMessages":[16],"theme":[1],"maxLength":[8,"max-length"],"isKeyboardFocus":[32],"focusVisible":[32],"getValue":[64]},[[8,"keydown","onKeyDown"],[9,"mousedown","onMouseDown"]]]]],["p-5d70599c",[[1,"tet-placeholder",{"width":[1],"height":[1],"darkTheme":[4,"dark-theme"]}]]],["p-2738fbb7",[[1,"tet-checkbox",{"theme":[1],"label":[1],"accessibilityLabel":[1,"accessibility-label"],"name":[1],"value":[8],"disabled":[4],"unavailable":[4],"checked":[1540],"error":[1540],"indeterminate":[1540],"focusStyleOnContainer":[4,"focus-style-on-container"],"iconName":[1,"icon-name"],"labelFont":[1,"label-font"],"alignCenter":[4,"align-center"],"hasSlotIcon":[32],"setChecked":[64],"setIndeterminate":[64],"setError":[64]},null,{"indeterminate":["updateIndeterminateState"]}]]],["p-cf11c4cd",[[1,"tet-compare-cards",{"data":[1040],"vatText":[1,"vat-text"],"forceColumn":[4,"force-column"],"theme":[1],"layout":[1],"cardScript":[1,"card-script"],"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-d9560c74",[[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"],"alwaysExpanded":[4,"always-expanded"],"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"],[0,"focusout","onFocusOut"]],{"language":["onLanguageChanged"],"addressKey":["search"],"inputDisabled":["onInputDisabledStateChange"]}]]],["p-71018cb8",[[6,"tet-radio",{"theme":[1],"label":[1],"accessibilityLabel":[1,"accessibility-label"],"name":[1],"value":[8],"disabled":[4],"unavailable":[4],"checked":[1540],"error":[1540],"inputAutofocus":[4,"input-autofocus"],"focusStyleOnContainer":[4,"focus-style-on-container"],"iconName":[1,"icon-name"],"labelFont":[1,"label-font"],"alignCenter":[4,"align-center"],"hasSlotIcon":[32],"setChecked":[64],"setError":[64]},[[0,"keydown","onKeydown"]]]]],["p-4967b041",[[1,"tet-switch",{"theme":[1],"label":[1],"accessibilityLabel":[1,"accessibility-label"],"name":[1],"value":[8],"disabled":[4],"checked":[516],"labelFont":[1,"label-font"],"alignCenter":[4,"align-center"],"labelPosition":[1,"label-position"],"focusStyleOnContainer":[4,"focus-style-on-container"],"setChecked":[64]}]]],["p-79700f85",[[1,"tet-tab-header",{"theme":[1],"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-5533f71b",[[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-c10d5369",[[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-584f54a7",[[1,"tet-loader"]]],["p-0690732e",[[1,"tet-autocomplete",{"showOptionsOnEscapeClear":[4,"show-options-on-escape-clear"],"defaultOptions":[16],"optionsFilterAction":[16],"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]},[[1,"pointerup","onPointerUp"],[9,"pointerup","onWindowPointerUp"],[9,"mousedown","onMouseDown"],[8,"activeComponentStateChanged","onComponentActiveStateChange"],[0,"keydown","handleKeyDown"],[0,"focusout","handleFocusOut"]]]]],["p-c31236d5",[[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"]}],[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-00e4bbed",[[17,"tet-button",{"clickCallback":[16],"size":[1],"type":[1],"theme":[1],"colorTheme":[1,"color-theme"],"customColorCode":[1,"custom-color-code"],"customColorContentTone":[1,"custom-color-content-tone"],"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-f5d4d8c8",[[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"]]]]],["p-b822a377",[[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-4f5a19cb",[[1,"tet-stepper-input",{"theme":[1],"value":[1026],"min":[2],"max":[2],"step":[2],"size":[1],"disabled":[4],"label":[1],"displayMode":[1,"display-mode"],"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-f06fb66c",[[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-be3a10d0",[[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-09e92f79",[[1,"tet-accordion",{"isOpen":[1540,"is-open"],"theme":[1],"header":[1],"headerIconName":[1,"header-icon-name"],"headerImageSrc":[1,"header-image-src"],"headerImageAlt":[1,"header-image-alt"],"indicatorDirection":[1,"indicator-direction"],"withBorder":[4,"with-border"],"withAutoScroll":[4,"with-auto-scroll"],"breakpoint":[1],"headingTag":[1,"heading-tag"],"transparentBackground":[4,"transparent-background"],"isHeaderInteractive":[4,"is-header-interactive"],"open":[64],"close":[64],"toggle":[64],"getState":[64],"setState":[64]}]]],["p-5a6fc34c",[[1,"tet-b2b-check-out-form",{"language":[1],"theme":[1],"open":[64],"close":[64]},null,{"language":["onLanguageChange"]}],[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"]}],[1,"tet-business-summary-card",{"productName":[1,"product-name"],"price":[2],"productDescription":[1,"product-description"],"discountPrice":[2,"discount-price"],"currency":[1],"contractTerm":[2,"contract-term"],"theme":[1],"withStepper":[4,"with-stepper"],"value":[2],"minValue":[2,"min-value"],"maxValue":[2,"max-value"],"stepperLabel":[1,"stepper-label"],"context":[1],"language":[1]}],[1,"tet-b2b-configurator-cart",{"theme":[1],"data":[16],"isCartEmpty":[4,"is-cart-empty"],"context":[1],"isDesktopResolution":[4,"is-desktop-resolution"],"isAccordionOpen":[32],"isPrimaryBlockOpen":[32],"isSecondaryBlockOpen":[32],"primarySlotFilled":[32],"secondarySlotFilled":[32],"changeBlockState":[64]},null,{"isDesktopResolution":["openAccordionOnResolutionChange"],"isCartEmpty":["checkStickyClassOnCartEmptyChange"]}],[1,"tet-business-navigation",{"menuItems":[16],"theme":[1],"expandable":[4],"language":[1],"selectedItemId":[32],"mainMenuItemId":[32],"positions":[32],"expanded":[32],"openedMenuIds":[32],"selectMenuItem":[64]}]]],["p-7a3e4581",[[1,"tet-spinner",{"theme":[1],"size":[1],"type":[1],"previousProgress":[32],"setProgress":[64]},null,{"type":["onTypeChange"]}]]],["p-10e72480",[[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-ed044f47",[[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-6297692b",[[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"]]]]]]'),e))));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tet/tet-components",
3
- "version": "v1.4.26-testing",
3
+ "version": "v1.4.27-testing",
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,c as e,h as i,H as r}from"./p-83f43fdd.js";const a=class{constructor(i){t(this,i),this.tetDynamicCardClickEvent=e(this,"tetDynamicCardClickEvent",7),this.theme="light",this.size="S",this.sizeChangeBreakpoint="None",this.isInCarousel=!1,this.pictureLayoutShiftPosition="left",this.cardTitle=void 0,this.subtitle=void 0,this.tags=void 0,this.dateTag=void 0,this.dateTagColorLight="black",this.dateTagColorDark="white",this.priceTagOptions={show:!1,background:"white"},this.linkHref=void 0,this.linkText=void 0,this.linkNewTab=!1,this.index=void 0,this.buttonColorTheme=void 0,this.buttonCustomColorCode=void 0,this.buttonCustomColorContentTone="light",this.isFocused=!1,this.originalSize=null,this.currentSize=null}onThemeChanged(t){"dark"===t?(this.dateTagColorRef?.classList.remove(`tag--${this.dateTagColorLight}`),this.dateTagColorRef?.classList.add(`tag--${this.dateTagColorDark}`)):(this.dateTagColorRef?.classList.remove(`tag--${this.dateTagColorDark}`),this.dateTagColorRef?.classList.add(`tag--${this.dateTagColorLight}`))}onSizeChange(){this.originalSize=this.size,this.resizeCard(window.innerWidth)}tetDynamicCardClickEvent;priceViewRef=null;buttonRef=null;dateTagColorRef=null;rootElementRef=null;BREAKPOINTS={MOBILE:768,TABLET_SMALL:1024,TABLET:1440,DESKTOP:1920};CARD_SIZES={standard:{S:"fit-content",M:"calc(50% - 0.75rem)",XL:"100%"},responsive:{mobile:"100%",tablet:"calc(100% - var(--card-width-tablet) - 1.5rem - 2px)",desktop:"calc(100% - var(--card-width-desktop) - 1.5rem - 2px)"}};getCardSize(t){return t<this.BREAKPOINTS.MOBILE?"XL":t<this.BREAKPOINTS.TABLET_SMALL?"M":("L"===this.originalSize||"M"===this.originalSize)&&t<this.BREAKPOINTS.TABLET&&"Tab"===this.sizeChangeBreakpoint?"S":this.originalSize}getMinWidth(t){return t<this.BREAKPOINTS.MOBILE?"calc(var(--card-width-mobile)-2rem)":t<this.BREAKPOINTS.TABLET?"calc(var(--card-width-tablet)-2rem)":t<this.BREAKPOINTS.DESKTOP?"var(--card-width-tablet)":"var(--card-width-desktop)"}getCardWidth(t,e){if(this.isInCarousel)return"fit-content";if(e<this.BREAKPOINTS.MOBILE)return this.CARD_SIZES.responsive.mobile;if(e<this.BREAKPOINTS.TABLET){if(("L"===this.originalSize||"M"===this.originalSize)&&"Tab"===this.sizeChangeBreakpoint)return"fit-content";if("M"===t)return this.CARD_SIZES.standard.M;if("L"===t)return this.CARD_SIZES.responsive.tablet}else if("L"===t)return e<this.BREAKPOINTS.DESKTOP?this.CARD_SIZES.responsive.tablet:this.CARD_SIZES.responsive.desktop;return this.CARD_SIZES.standard[t]||"fit-content"}resizeCard=t=>{this.currentSize=this.getCardSize(t),this.rootElementRef.style.minWidth=this.getMinWidth(t),this.rootElementRef.style.width=this.getCardWidth(this.currentSize,t)};resizeObserver=new ResizeObserver((()=>{const t=window.innerWidth;this.resizeCard(t),t<768?(this.priceViewRef?.setAttribute("size","S"),this.buttonRef?.setAttribute("size","small")):t<1920?(this.priceViewRef?.setAttribute("size","M"),this.buttonRef?.setAttribute("size","medium")):(this.priceViewRef?.setAttribute("size","M"),this.buttonRef?.setAttribute("size","large"))}));componentWillLoad(){this.originalSize=this.size,this.currentSize=this.size}componentDidLoad(){this.onThemeChanged(this.theme),this.resizeObserver.observe(window.document.body)}handleClick=t=>{if(t.composedPath().some((t=>t instanceof HTMLElement&&t.classList?.contains("button"))))this.tetDynamicCardClickEvent.emit();else if(this.buttonRef&&this.linkHref){const t=this.buttonRef.shadowRoot?.querySelector("button");t&&t.click()}};renderTags(){const t="dark"===this.theme?this.dateTagColorDark:this.dateTagColorLight;return i("div",{class:"tags-container",part:"tags"},this.tags?.length>0&&i("div",{class:"tags"},this.tags.map((t=>i("span",{class:"tag"},t)))),this.dateTag&&i("div",{class:"tags"},i("div",{class:`tag colored colored--${t}`,ref:t=>{this.dateTagColorRef=t}},i("span",{class:"date-tag-text"},this.dateTag))))}renderPrice(){return this.priceTagOptions?.show?i("div",{class:"price",part:"price"},i("tet-price-view",{ref:t=>{this.priceViewRef=t},font:this.priceTagOptions.font||"Gilroy, Arial, sans-serif",background:this.priceTagOptions.background,staticColors:this.priceTagOptions.isStatic,theme:this.theme,size:"S","heading-text":this.priceTagOptions.headingText,"price-type":this.priceTagOptions.priceType,"euro-price":this.priceTagOptions.euroPrice?.toString(),"cents-price":this.priceTagOptions.centsPrice?.toString(),"footer-text":this.priceTagOptions.footerText,"footer-text-type":this.priceTagOptions.footerTextType})):null}renderButton(){return this.linkText?i("div",{class:"button",part:"button"},i("tet-button",{type:"primary",size:"small",theme:this.theme,"color-theme":this.buttonColorTheme,"custom-color-code":this.buttonCustomColorCode,"custom-color-content-tone":this.buttonCustomColorContentTone,url:this.linkHref,"url-target":this.linkNewTab?"_blank":"_self","accessibility-label":this.linkText,ref:t=>{this.buttonRef=t}},this.linkText)):null}render(){return i(r,{key:"9da86c5862baa9430fe4010fea70f7b6f1fc7f95",class:{"dynamic-card":!0,"is-focused":this.isFocused},"data-index":this.index,ref:t=>{this.rootElementRef=t}},i("div",{key:"d4de72fa7e431c5b29fe135007febc201fe8fe63",class:`card\n theme-${this.theme}\n size-${this.currentSize}\n position-${this.pictureLayoutShiftPosition}\n carousel-${this.isInCarousel}\n `,onClick:this.handleClick,onKeyUp:t=>{"Enter"===t.key&&this.handleClick(t)},tabindex:0,part:"card","aria-labelledby":this.cardTitle},i("div",{key:"46e0c68ccb014ac2ceab45a306cff72321b8fa78",class:"image",part:"image"},i("slot",{key:"247398a97c1bd98a15b0416409383a3af0227377",name:"image"}),this.renderPrice(),this.renderTags()),i("div",{key:"5baa6a07eb4bc12ab4dc02277cbaf7da63fb3680",class:"content-container"},i("div",{key:"065754ef688f1704460285bc94254ffe1699bc1b",class:"content",part:"content"},this.cardTitle&&i("h3",{key:"205c9250a605d3b2f1312773406cf14efa1a6a9c",class:"title",part:"title"},this.cardTitle),this.subtitle&&i("p",{key:"c84f03750bb12d959555081a2675fedb1ad6396a",class:"subtitle",part:"subtitle"},this.subtitle)),this.renderButton())))}static get watchers(){return{theme:["onThemeChanged"],size:["onSizeChange"]}}};a.style=":host{--image-type:cover;--image-background-color:var(--tc-background-white-black);--card-width-mobile:17.5rem;--card-height-mobile:27.75rem;--card-width-tablet:21.375rem;--card-height-tablet:33.875rem;--card-width-desktop:25.625rem;--card-height-desktop:39.5rem;--option-card-bg:var(--tc-background-white-black);--option-card-text:var(--tc-text-primary);--option-card-border:var(--tc-border-quaternary);display:block;font-family:var(--tet-font-family-primary)}.card{-webkit-user-drag:none;user-select:none;cursor:pointer;background:var(--tc-background-white-black);border-radius:1rem;border:0.0625rem solid var(--tc-border-quaternary);overflow:hidden;position:relative;display:flex;flex-direction:column;align-items:center;gap:1rem;margin:0 auto;min-width:var(--card-width-mobile);width:var(--card-width-mobile);height:var(--card-height-mobile);transition:box-shadow 0.15s ease}.card.size-S{width:var(--card-width-mobile);height:var(--card-height-mobile)}.card.size-XL,.card.size-L,.card.size-M{width:100%}.card:focus-visible{outline:0.125rem solid var(--tc-blue-40);outline-offset:0.125rem}.card:hover{box-shadow:0 4px 24px 0 rgba(0, 0, 0, 0.1), 0 1.5px 6px 0 rgba(0, 0, 0, 0.08)}.card:hover ::slotted(img){transform:scale(1.06)}.card:active{box-shadow:0 0 1px 0 rgba(12, 12, 14, 0.08), 0 1px 3px 0 rgba(12, 12, 14, 0.12)}.card:active ::slotted(img){transform:scale(1.01)}.content-container{display:flex;flex-direction:column;align-items:center;justify-content:center;width:100%;height:100%}.image{-webkit-user-drag:none;user-select:none;flex-shrink:0;width:100%;height:16.125rem;overflow:hidden;position:relative;background-color:var(--image-background-color)}.image ::slotted(img){transition:transform 0.3s ease;width:100%;height:100%;object-fit:var(--image-type);display:block}.price{position:absolute;bottom:0.75rem;right:0.75rem;z-index:1}.tags-container{position:absolute;top:0.75rem;left:0.75rem;display:flex;flex-direction:column;gap:0.25rem;z-index:1}.content{height:auto;padding:0 1rem;text-align:center}.title{margin:0;font-family:var(--font-family-fallback);font-size:1.25rem;font-weight:600;margin-bottom:0.5rem;color:var(--tc-text-primary);line-height:1.5rem;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;text-overflow:ellipsis;word-break:break-word;max-height:3rem}.subtitle{color:var(--tc-text-primary);text-align:center;font-family:var(--font-family-content);font-size:0.875rem;font-style:normal;font-weight:400;line-height:1.25rem;letter-spacing:-0.003125rem;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;text-overflow:ellipsis;word-break:break-word;max-height:2.5rem}.button{margin-top:auto;margin-bottom:1.5rem;width:fit-content;text-wrap:nowrap}.tags-container{position:absolute;top:0.75rem;left:0.75rem;display:flex;flex-direction:column;gap:0.25rem}.tags{display:flex;flex-wrap:wrap;gap:0.25rem}.tag{border:0.0625px solid var(--tc-border-tertiary);padding:0.1875rem 0.3125rem;border-radius:0.375rem;background:var(--tc-layer-primary);color:var(--tc-text-primary);font-family:var(--font-family-content);font-size:0.75rem;font-style:normal;font-weight:500;line-height:1rem}.tag.colored--white{background:var(--tc-layer-primary);color:var(--tc-text-primary);border:0.0625px solid var(--tc-border-tertiary)}.tag.colored--black{color:var(--tc-text-primary-dark);background:var(--tc-layer-primary-dark);border:0.0625px solid var(--tc-border-primary)}.tag.colored--yellow{background:var(--tc-yellow-20);color:var(--tc-text-primary);border:0.0625px solid var(--tc-border-tertiary)}.theme-dark{background:var(--tc-layer-primary-dark);border:0.0625rem solid var(--tc-border-quaternary-dark)}.theme-dark .title{color:var(--tc-text-primary-dark)}.theme-dark .subtitle{color:var(--tc-text-primary-dark)}.theme-dark .tag:not(.colored){color:var(--tc-text-primary-dark);background:var(--tc-layer-primary-dark);border:0.0625px solid var(--tc-border-primary)}@media all and (min-width: 48rem){.card{width:var(--card-width-tablet);height:var(--card-height-tablet)}.card.size-S{width:var(--card-width-tablet);height:var(--card-height-tablet)}.card.size-M{width:100%}.card.size-M .image{width:100%}.card.size-M.carousel-true{width:44rem}.card.size-XL,.card.size-L{width:100%;flex-direction:row;gap:0}.card.size-XL .image,.card.size-L .image{width:60%;height:100%}.card.size-XL .button,.card.size-L .button{margin-top:0}.card.size-XL.position-right,.card.size-L.position-right{flex-direction:row-reverse}.card.size-XL.carousel-true,.card.size-L.carousel-true{width:44rem}.image{width:var(--card-width-tablet);height:var(--card-width-tablet)}.title{font-size:1.5rem;line-height:1.75rem;max-height:3.5rem}.tag{font-size:0.875rem;line-height:1.25rem;letter-spacing:-0.003125rem}}@media all and (min-width: 90rem){.card.size-M{width:100%}.card.size-M.carousel-true{width:39.375rem}.card.size-L{width:100%;flex-direction:row;gap:0}.card.size-L .image{width:62%;height:100%}.card.size-L .button{margin-top:0}.card.size-L.position-right{flex-direction:row-reverse}.card.size-L.carousel-true{width:57.25rem}.card.size-XL .image{width:64%}.card.size-XL.carousel-true{width:80.25rem}}@media all and (min-width: 120rem){.card{width:var(--card-width-desktop);height:var(--card-height-desktop)}.card.size-S{width:var(--card-width-desktop);height:var(--card-height-desktop)}.card.size-L.carousel-true{width:83.125rem}.card.size-XL .image{width:72%}.card.size-XL.carousel-true{width:110.25rem}.image{width:var(--card-width-desktop);height:var(--card-width-desktop)}.title{font-size:1.75rem;line-height:2rem;max-height:4rem}.subtitle{font-size:1rem;line-height:1.5rem;letter-spacing:-0.00625rem;max-height:3rem}}";export{a as tet_dynamic_card}