@ptcwebops/ptcw-design 6.2.33-beta → 6.2.35-beta

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (51) hide show
  1. package/dist/cjs/event-podcast-slider-example.cjs.entry.js +34 -50
  2. package/dist/cjs/loader.cjs.js +1 -1
  3. package/dist/cjs/ptc-announcement.cjs.entry.js +2 -2
  4. package/dist/cjs/ptc-close-icon_2.cjs.entry.js +2 -2
  5. package/dist/cjs/ptc-date.cjs.entry.js +1 -1
  6. package/dist/cjs/ptc-icon-component.cjs.entry.js +8 -2
  7. package/dist/cjs/ptc-minimized-nav.cjs.entry.js +2 -1
  8. package/dist/cjs/ptc-news.cjs.entry.js +2 -3
  9. package/dist/cjs/ptcw-design.cjs.js +1 -1
  10. package/dist/collection/components/organism-bundles/event-podcast-slider-example/event-podcast-slider-example.js +34 -50
  11. package/dist/collection/components/ptc-announcement/ptc-announcement.css +6 -0
  12. package/dist/collection/components/ptc-announcement/ptc-announcement.js +1 -1
  13. package/dist/collection/components/ptc-close-icon/ptc-close-icon.js +1 -1
  14. package/dist/collection/components/ptc-date/ptc-date.css +4 -0
  15. package/dist/collection/components/ptc-icon-component/ptc-icon-component.js +8 -2
  16. package/dist/collection/components/ptc-minimized-nav/ptc-minimized-nav.js +19 -1
  17. package/dist/collection/components/ptc-modal/ptc-modal.css +13 -2
  18. package/dist/collection/components/ptc-news/ptc-news.css +5 -0
  19. package/dist/collection/components/ptc-news/ptc-news.js +1 -19
  20. package/dist/custom-elements/index.js +53 -63
  21. package/dist/esm/event-podcast-slider-example.entry.js +34 -50
  22. package/dist/esm/loader.js +1 -1
  23. package/dist/esm/ptc-announcement.entry.js +2 -2
  24. package/dist/esm/ptc-close-icon_2.entry.js +2 -2
  25. package/dist/esm/ptc-date.entry.js +1 -1
  26. package/dist/esm/ptc-icon-component.entry.js +8 -2
  27. package/dist/esm/ptc-minimized-nav.entry.js +2 -1
  28. package/dist/esm/ptc-news.entry.js +2 -3
  29. package/dist/esm/ptcw-design.js +1 -1
  30. package/dist/ptcw-design/p-4b7f6258.entry.js +1 -0
  31. package/dist/ptcw-design/p-759f6457.entry.js +1 -0
  32. package/dist/ptcw-design/p-a412ff0a.entry.js +1 -0
  33. package/dist/ptcw-design/p-b209c116.entry.js +1 -0
  34. package/dist/ptcw-design/{p-071a6109.entry.js → p-d3ac3758.entry.js} +1 -1
  35. package/dist/ptcw-design/p-d74ccb19.entry.js +1 -0
  36. package/dist/ptcw-design/p-e2abc077.entry.js +1 -0
  37. package/dist/ptcw-design/ptcw-design.css +1 -1
  38. package/dist/ptcw-design/ptcw-design.esm.js +1 -1
  39. package/dist/types/components/ptc-minimized-nav/ptc-minimized-nav.d.ts +1 -0
  40. package/dist/types/components/ptc-mobile-select/mobile-select/dist/mobile-select.d.ts +209 -0
  41. package/dist/types/components/ptc-news/ptc-news.d.ts +0 -4
  42. package/dist/types/components.d.ts +2 -8
  43. package/dist/types/utils/eloqua.d.ts +9 -0
  44. package/package.json +1 -1
  45. package/readme.md +1 -1
  46. package/dist/ptcw-design/p-40b8c884.entry.js +0 -1
  47. package/dist/ptcw-design/p-876aec1e.entry.js +0 -1
  48. package/dist/ptcw-design/p-a114198f.entry.js +0 -1
  49. package/dist/ptcw-design/p-d7275289.entry.js +0 -1
  50. package/dist/ptcw-design/p-e2a935fa.entry.js +0 -1
  51. package/dist/ptcw-design/p-f4699d4e.entry.js +0 -1
@@ -2,13 +2,12 @@ import { Host, h } from '@stencil/core';
2
2
  export class PtcNews {
3
3
  constructor() {
4
4
  this.newsTag = undefined;
5
- this.newsDate = undefined;
6
5
  this.newsImage = undefined;
7
6
  this.newsImageAlt = undefined;
8
7
  this.newsDownloadUrl = undefined;
9
8
  }
10
9
  render() {
11
- return (h(Host, null, h("div", { class: "news-container" }, this.newsTag && h("span", { class: "news-tag" }, this.newsTag), h("slot", { name: "news-title" }), h("slot", { name: "news-secondary-title" }), this.newsDate && h("span", { class: "news-date" }, this.newsDate), h("slot", { name: "news-summary" }), this.getArticleImage(), h("div", { class: "news-content" }, h("slot", { name: "share-icons" }), h("slot", null)))));
10
+ return (h(Host, null, h("div", { class: "news-container" }, this.newsTag && h("span", { class: "news-tag" }, this.newsTag), h("slot", { name: "news-title" }), h("slot", { name: "news-secondary-title" }), h("slot", { name: "news-date" }), h("slot", { name: "news-summary" }), this.getArticleImage(), h("div", { class: "news-content" }, h("slot", { name: "share-icons" }), h("slot", null)))));
12
11
  }
13
12
  getArticleImage() {
14
13
  if (this.newsImage && this.newsDownloadUrl) {
@@ -49,23 +48,6 @@ export class PtcNews {
49
48
  "attribute": "news-tag",
50
49
  "reflect": false
51
50
  },
52
- "newsDate": {
53
- "type": "string",
54
- "mutable": false,
55
- "complexType": {
56
- "original": "string",
57
- "resolved": "string",
58
- "references": {}
59
- },
60
- "required": false,
61
- "optional": true,
62
- "docs": {
63
- "tags": [],
64
- "text": "News Date"
65
- },
66
- "attribute": "news-date",
67
- "reflect": false
68
- },
69
51
  "newsImage": {
70
52
  "type": "string",
71
53
  "mutable": false,
@@ -7701,62 +7701,46 @@ const EventPodcastSliderExample$1 = class extends HTMLElement$1 {
7701
7701
  this.__registerHost();
7702
7702
  }
7703
7703
  componentDidLoad() {
7704
- const swiperContainer = this.el.querySelector('.swiper-container');
7705
- const slides = swiperContainer.querySelectorAll('.swiper-slide');
7704
+ //const swiperContainer = this.el.querySelector('.swiper-container');
7705
+ //const slides = swiperContainer.querySelectorAll('.swiper-slide');
7706
7706
  // Define a desktop breakpoint
7707
- const isDesktop = window.matchMedia('(min-width: 992px)').matches;
7707
+ //const isDesktop = window.matchMedia('(min-width: 992px)').matches;
7708
7708
  setTimeout(() => {
7709
7709
  let list = this.el.querySelector('.event-slider-cards');
7710
- if (!isDesktop || slides.length >= 4) {
7711
- this.listSwp = new Swiper(list, {
7712
- // Customize options here
7713
- modules: [Navigation, Pagination, Scrollbar, Mousewheel],
7714
- slidesPerView: 'auto',
7715
- spaceBetween: 24,
7716
- //centeredSlides: true,
7717
- centeredSlidesBounds: true,
7718
- initialSlide: 0,
7719
- centerInsufficientSlides: false,
7720
- freeMode: true,
7721
- scrollbar: {
7722
- el: this.swiperPaginationRef,
7723
- draggable: true,
7724
- },
7725
- navigation: {
7726
- nextEl: this.swiperButtonNextRef,
7727
- prevEl: this.swiperButtonPrevRef,
7710
+ this.listSwp = new Swiper(list, {
7711
+ // Customize options here
7712
+ modules: [Navigation, Pagination, Scrollbar, Mousewheel],
7713
+ slidesPerView: 'auto',
7714
+ spaceBetween: 24,
7715
+ //centeredSlides: true,
7716
+ centeredSlidesBounds: true,
7717
+ initialSlide: 0,
7718
+ centerInsufficientSlides: false,
7719
+ freeMode: true,
7720
+ scrollbar: {
7721
+ el: this.swiperPaginationRef,
7722
+ draggable: true,
7723
+ },
7724
+ navigation: {
7725
+ nextEl: this.swiperButtonNextRef,
7726
+ prevEl: this.swiperButtonPrevRef,
7727
+ },
7728
+ mousewheel: {
7729
+ forceToAxis: true,
7730
+ sensitivity: 100,
7731
+ },
7732
+ breakpoints: {
7733
+ 992: {
7734
+ slidesPerView: 4,
7728
7735
  },
7729
- mousewheel: {
7730
- forceToAxis: true,
7731
- sensitivity: 100,
7736
+ 1200: {
7737
+ spaceBetween: 32,
7732
7738
  },
7733
- breakpoints: {
7734
- 992: {
7735
- slidesPerView: 4,
7736
- },
7737
- 1200: {
7738
- spaceBetween: 32,
7739
- },
7740
- 1400: {
7741
- spaceBetween: 40,
7742
- },
7739
+ 1400: {
7740
+ spaceBetween: 40,
7743
7741
  },
7744
- });
7745
- }
7746
- else {
7747
- const nextBtn = this.el.querySelector('.swiper-button-next');
7748
- const prevBtn = this.el.querySelector('.swiper-button-prev');
7749
- const scrollbar = this.el.querySelector('.swiper-scrollbar');
7750
- if (nextBtn) {
7751
- nextBtn.setAttribute('style', 'display: none;');
7752
- }
7753
- if (prevBtn) {
7754
- prevBtn.setAttribute('style', 'display: none;');
7755
- }
7756
- if (scrollbar) {
7757
- scrollbar.setAttribute('style', 'display: none;');
7758
- }
7759
- }
7742
+ },
7743
+ });
7760
7744
  }, 100);
7761
7745
  }
7762
7746
  render() {
@@ -8969,7 +8953,7 @@ const PtcAccordionItem$1 = class extends HTMLElement$1 {
8969
8953
  static get style() { return ptcAccordionItemCss; }
8970
8954
  };
8971
8955
 
8972
- const ptcAnnouncementCss = "h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{word-break:break-word;hyphens:manual;-webkit-hyphens:manual;-moz-hyphens:manual;-ms-hyphens:manual}@supports (hyphenate-limit-chars: 12 3 3){h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;hyphenate-limit-chars:12 3 3;hyphenate-limit-lines:2;hyphenate-limit-last:always;hyphenate-limit-zone:6%;-webkit-hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;-webkit-hyphenate-limit-chars:12 3 3;-webkit-hyphenate-limit-lines:2;-moz-hyphens:auto;-moz-hyphenate-limit-chars:12 3 3;-moz-hyphenate-limit-lines:2;-ms-hyphens:auto;-ms-hyphenate-limit-chars:12 3 3;-ms-hyphenate-limit-lines:2}}.ptc-container{padding-right:24px;padding-left:24px;margin-right:auto;margin-left:auto}@media only screen and (min-width: 1200px){.ptc-container{padding-left:0;padding-right:0;max-width:1136px}}@media only screen and (min-width: 1440px){.ptc-container{padding-left:0;padding-right:0;max-width:1200px}}.ptc-container-lg{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media only screen and (min-width: 480px){.ptc-container-lg{padding-left:var(--ptc-layout-spacing-03);padding-right:var(--ptc-layout-spacing-03)}}@media only screen and (min-width: 768px){.ptc-container-lg{padding-left:var(--ptc-layout-spacing-04);padding-right:var(--ptc-layout-spacing-04)}}@media only screen and (min-width: 992px){.ptc-container-lg{padding-left:var(--ptc-element-spacing-08);padding-right:var(--ptc-element-spacing-08)}}@media only screen and (min-width: 1980px){.ptc-container-lg{padding-left:0;padding-right:0;max-width:1900px}}.ptc-container-fluid{width:100%}:host{display:block}.announcement{width:100%;position:relative;background-color:var(--color-gray-02);z-index:860;background-size:cover;background-repeat:repeat-x;border-top:3px solid var(--color-green-07);box-shadow:var(--ptc-shadow-medium);z-index:999;display:none}.visible{display:block}::slotted([slot=seo-content]){display:none}.content-wrapper{display:flex;padding-top:var(--ptc-element-spacing-03);padding-bottom:var(--ptc-element-spacing-03);margin:0 auto;align-items:center;justify-content:space-between}@media only screen and (min-width: 768px){.content-wrapper{padding-top:var(--ptc-element-spacing-03);padding-bottom:var(--ptc-element-spacing-03)}}@media only screen and (min-width: 1200px){.content-wrapper{padding-top:var(--ptc-element-spacing-03);padding-bottom:var(--ptc-element-spacing-03);box-sizing:border-box}}@media screen and (min-width: 1400px){.content-wrapper{padding-top:var(--ptc-element-spacing-03);padding-bottom:var(--ptc-element-spacing-03)}}.left-content{max-width:calc(100% - 76px);display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-start;position:relative;word-break:break-word;hyphens:manual;-webkit-hyphens:manual;-moz-hyphens:manual;-ms-hyphens:manual}@supports (hyphenate-limit-chars: 12 3 3){.left-content{hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;hyphenate-limit-chars:12 3 3;hyphenate-limit-lines:2;hyphenate-limit-last:always;hyphenate-limit-zone:6%;-webkit-hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;-webkit-hyphenate-limit-chars:12 3 3;-webkit-hyphenate-limit-lines:2;-moz-hyphens:auto;-moz-hyphenate-limit-chars:12 3 3;-moz-hyphenate-limit-lines:2;-ms-hyphens:auto;-ms-hyphenate-limit-chars:12 3 3;-ms-hyphenate-limit-lines:2}}.title{font-family:Raleway;font-size:var(--ptc-font-size-x-small);font-weight:var(--ptc-font-weight-bold);line-height:var(--ptc-line-height-densest);letter-spacing:var(--ptc-letter-spacing-dense);text-align:left;color:var(--color-gray-10);margin-bottom:var(--ptc-element-spacing-02);max-width:100%}.description{font-family:Raleway;font-size:var(--ptc-font-size-x-small);font-weight:var(--ptc-font-weight-regular);line-height:normal;letter-spacing:var(--ptc-letter-spacing-normal);text-align:left;color:var(--color-gray-10);max-width:100%}.cta-link{color:var(--color-hyperlink);font-size:var(--ptc-font-size-x-small);-webkit-transition:color var(--ptc-transition-slow) var(--ptc-ease-inout);-o-transition:color var(--ptc-transition-slow) var(--ptc-ease-inout);transition:color var(--ptc-transition-slow) var(--ptc-ease-inout);font-weight:var(--ptc-font-weight-bold);text-decoration:underline;display:inline-block;vertical-align:middle;cursor:pointer;margin:5px 5px 5px 0}.cta-link::before{content:\"\";position:absolute;width:100%;height:100%;left:50%;top:50%;transform:translate(-50%, -50%);z-index:1}.cta-link:link{color:var(--color-hyperlink)}.cta-link:hover{color:var(--color-blue-08)}.cta-link:active{transition:none;color:var(--color-gray-09)}.cta-link:focus-visible{border-radius:var(--ptc-border-radius-standard);outline:5px solid var(--keyboard-nav-outline)}.bar-close{max-width:36px;cursor:pointer;margin-left:var(--ptc-element-spacing-08);position:relative}.bar-close::before{content:\"\";position:absolute;width:44px;height:44px;left:50%;top:50%;transform:translate(-50%, -50%);z-index:1}ptc-tooltip-v2.after-space::after{content:\" \"}@media only screen and (min-width: 992px){.cta-link{margin:0}.left-content{flex-direction:row;max-width:calc(100% - 58px);flex:1 1 1032px}.bar-close{max-width:18px}.bar-close::before{width:34px;height:34px}.title{margin-right:var(--ptc-element-spacing-04);margin-bottom:0;flex:0 1 auto;max-width:248px}.title.max-title{max-width:unset !important;flex:2 1 560px}.description{flex:1 1 768px}}";
8956
+ const ptcAnnouncementCss = "h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{word-break:break-word;hyphens:manual;-webkit-hyphens:manual;-moz-hyphens:manual;-ms-hyphens:manual}@supports (hyphenate-limit-chars: 12 3 3){h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;hyphenate-limit-chars:12 3 3;hyphenate-limit-lines:2;hyphenate-limit-last:always;hyphenate-limit-zone:6%;-webkit-hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;-webkit-hyphenate-limit-chars:12 3 3;-webkit-hyphenate-limit-lines:2;-moz-hyphens:auto;-moz-hyphenate-limit-chars:12 3 3;-moz-hyphenate-limit-lines:2;-ms-hyphens:auto;-ms-hyphenate-limit-chars:12 3 3;-ms-hyphenate-limit-lines:2}}.ptc-container{padding-right:24px;padding-left:24px;margin-right:auto;margin-left:auto}@media only screen and (min-width: 1200px){.ptc-container{padding-left:0;padding-right:0;max-width:1136px}}@media only screen and (min-width: 1440px){.ptc-container{padding-left:0;padding-right:0;max-width:1200px}}.ptc-container-lg{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media only screen and (min-width: 480px){.ptc-container-lg{padding-left:var(--ptc-layout-spacing-03);padding-right:var(--ptc-layout-spacing-03)}}@media only screen and (min-width: 768px){.ptc-container-lg{padding-left:var(--ptc-layout-spacing-04);padding-right:var(--ptc-layout-spacing-04)}}@media only screen and (min-width: 992px){.ptc-container-lg{padding-left:var(--ptc-element-spacing-08);padding-right:var(--ptc-element-spacing-08)}}@media only screen and (min-width: 1980px){.ptc-container-lg{padding-left:0;padding-right:0;max-width:1900px}}.ptc-container-fluid{width:100%}:host{display:block}.announcement{width:100%;position:relative;background-color:var(--color-gray-02);z-index:860;background-size:cover;background-repeat:repeat-x;border-top:3px solid var(--color-green-07);box-shadow:var(--ptc-shadow-medium);z-index:999;display:none}.visible{display:block}::slotted([slot=seo-content]){display:none}.content-wrapper{display:flex;padding-top:var(--ptc-element-spacing-03);padding-bottom:var(--ptc-element-spacing-03);margin:0 auto;align-items:center;justify-content:space-between}@media only screen and (min-width: 768px){.content-wrapper{padding-top:var(--ptc-element-spacing-03);padding-bottom:var(--ptc-element-spacing-03)}}@media only screen and (min-width: 1200px){.content-wrapper{padding-top:var(--ptc-element-spacing-03);padding-bottom:var(--ptc-element-spacing-03);box-sizing:border-box}}@media screen and (min-width: 1400px){.content-wrapper{padding-top:var(--ptc-element-spacing-03);padding-bottom:var(--ptc-element-spacing-03)}}.left-content{max-width:calc(100% - 76px);display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-start;position:relative;word-break:break-word;hyphens:manual;-webkit-hyphens:manual;-moz-hyphens:manual;-ms-hyphens:manual}@supports (hyphenate-limit-chars: 12 3 3){.left-content{hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;hyphenate-limit-chars:12 3 3;hyphenate-limit-lines:2;hyphenate-limit-last:always;hyphenate-limit-zone:6%;-webkit-hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;-webkit-hyphenate-limit-chars:12 3 3;-webkit-hyphenate-limit-lines:2;-moz-hyphens:auto;-moz-hyphenate-limit-chars:12 3 3;-moz-hyphenate-limit-lines:2;-ms-hyphens:auto;-ms-hyphenate-limit-chars:12 3 3;-ms-hyphenate-limit-lines:2}}.title{font-family:Raleway;font-size:var(--ptc-font-size-x-small);font-weight:var(--ptc-font-weight-bold);line-height:var(--ptc-line-height-densest);letter-spacing:var(--ptc-letter-spacing-dense);text-align:left;color:var(--color-gray-10);margin-bottom:var(--ptc-element-spacing-02);max-width:100%}.description{font-family:Raleway;font-size:var(--ptc-font-size-x-small);font-weight:var(--ptc-font-weight-regular);line-height:normal;letter-spacing:var(--ptc-letter-spacing-normal);text-align:left;color:var(--color-gray-10);max-width:100%}.cta-link{color:var(--color-hyperlink);font-size:var(--ptc-font-size-x-small);-webkit-transition:color var(--ptc-transition-slow) var(--ptc-ease-inout);-o-transition:color var(--ptc-transition-slow) var(--ptc-ease-inout);transition:color var(--ptc-transition-slow) var(--ptc-ease-inout);font-weight:var(--ptc-font-weight-bold);text-decoration:underline;display:inline-block;vertical-align:middle;cursor:pointer;margin:5px 5px 5px 0}.cta-link::before{content:\"\";position:absolute;width:100%;height:100%;left:50%;top:50%;transform:translate(-50%, -50%);z-index:1}.cta-link:link{color:var(--color-hyperlink)}.cta-link:hover{color:var(--color-blue-08)}.cta-link:active{transition:none;color:var(--color-gray-09)}.cta-link:focus-visible{border-radius:var(--ptc-border-radius-standard);outline:5px solid var(--keyboard-nav-outline)}.bar-close{max-width:36px;max-height:36px;cursor:pointer;margin-left:var(--ptc-element-spacing-08);position:relative}.bar-close::before{content:\"\";position:absolute;width:44px;height:44px;left:50%;top:50%;transform:translate(-50%, -50%);z-index:1}.bar-close:focus-visible{border-radius:var(--ptc-border-radius-standard);outline:5px solid var(--keyboard-nav-outline)}ptc-tooltip-v2.after-space::after{content:\" \"}@media only screen and (min-width: 992px){.cta-link{margin:0}.left-content{flex-direction:row;max-width:calc(100% - 58px);flex:1 1 1032px}.bar-close{max-width:18px;max-height:18px}.bar-close::before{width:34px;height:34px}.title{margin-right:var(--ptc-element-spacing-04);margin-bottom:0;flex:0 1 auto;max-width:248px}.title.max-title{max-width:unset !important;flex:2 1 560px}.description{flex:1 1 768px}}";
8973
8957
 
8974
8958
  const PtcAnnouncement$1 = class extends HTMLElement$1 {
8975
8959
  constructor() {
@@ -9027,7 +9011,7 @@ const PtcAnnouncement$1 = class extends HTMLElement$1 {
9027
9011
  //desktop view
9028
9012
  h$1("div", { class: "description" }, !!this.description ? (
9029
9013
  // <ptc-tooltip text-display="inline" max-length="165" z-index="z-2" description={this.description + ' '} position="bottom"></ptc-tooltip>
9030
- h$1("ptc-tooltip-v2", { "element-display": "inline", "max-length": "165", "z-index": "3", class: "after-space" }, this.description + ' ')) : null, !!this.linkText ? (h$1("a", { class: "cta-link mf-listen", href: this.linkUrl, title: (_b = this.linkTitle) !== null && _b !== void 0 ? _b : this.linkText, target: this.target, tabIndex: 0, id: "announcement-bar-cta" }, h$1("ptc-tooltip-v2", { "element-display": "inline-block", "max-length": "25", "z-index": "2", position: 'bottom', styles: ".tooltip-content.bottom{transform:translate(-20%, 12px)}.tooltip-text{text-decoration:underline;}" }, this.linkText))) : null))), h$1("icon-asset", { id: "announcement-bar-close", color: "inherit", name: "close-button-flat", type: "ptc", size: this.getIconSize(), onClick: this.closeClick, class: "bar-close mf-listen", focusOn: true, trackerId: "announcement-bar-close", onKeyDown: this.handleKeyClick })))));
9014
+ h$1("ptc-tooltip-v2", { "element-display": "inline", "max-length": "165", "z-index": "3", class: "after-space" }, this.description + ' ')) : null, !!this.linkText ? (h$1("a", { class: "cta-link mf-listen", href: this.linkUrl, title: (_b = this.linkTitle) !== null && _b !== void 0 ? _b : this.linkText, target: this.target, tabIndex: 0, id: "announcement-bar-cta" }, h$1("ptc-tooltip-v2", { "element-display": "inline-block", "max-length": "25", "z-index": "2", position: 'bottom', styles: ".tooltip-content.bottom{transform:translate(-20%, 12px)}.tooltip-text{text-decoration:underline;}" }, this.linkText))) : null))), h$1("icon-asset", { id: "announcement-bar-close", color: "inherit", name: "close-button-flat", type: "ptc", size: this.getIconSize(), onClick: this.closeClick, class: "bar-close mf-listen", focusOn: true, trackerId: "announcement-bar-close", onKeyDown: this.handleKeyClick, tabIndex: 0 })))));
9031
9015
  }
9032
9016
  getCssClassMap() {
9033
9017
  return {
@@ -10142,7 +10126,7 @@ const PtcCloseIcon$1 = class extends HTMLElement$1 {
10142
10126
  this.__attachShadow();
10143
10127
  }
10144
10128
  render() {
10145
- return (h$1(Host, null, h$1("div", { class: 'close-icon mf-listen', "tab-index": "0" }, h$1("svg", { xmlns: "http://www.w3.org/2000/svg", width: "14", height: "14", viewBox: "0 0 14 14", fill: "none", tabindex: 0 }, h$1("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M7.00089 8.4151L12.5876 14.0018L14.0018 12.5876L8.4151 7.00089L14.0018 1.41421L12.5876 0L7.00089 5.58667L1.41421 0L0 1.41421L5.58667 7.00089L0 12.5876L1.41421 14.0018L7.00089 8.4151Z", fill: "#20262A" })))));
10129
+ return (h$1(Host, null, h$1("div", { class: 'close-icon mf-listen', id: "modal-pop-up-close-icon" }, h$1("svg", { xmlns: "http://www.w3.org/2000/svg", width: "14", height: "14", viewBox: "0 0 14 14", fill: "none", tabindex: 0 }, h$1("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M7.00089 8.4151L12.5876 14.0018L14.0018 12.5876L8.4151 7.00089L14.0018 1.41421L12.5876 0L7.00089 5.58667L1.41421 0L0 1.41421L5.58667 7.00089L0 12.5876L1.41421 14.0018L7.00089 8.4151Z", fill: "#20262A" })))));
10146
10130
  }
10147
10131
  static get style() { return ptcCloseIconCss; }
10148
10132
  };
@@ -17893,7 +17877,7 @@ const PtcDataLookup$1 = class extends HTMLElement$1 {
17893
17877
  static get style() { return ptcDataLookupCss; }
17894
17878
  };
17895
17879
 
17896
- const ptcDateCss = "h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{word-break:break-word;hyphens:manual;-webkit-hyphens:manual;-moz-hyphens:manual;-ms-hyphens:manual}@supports (hyphenate-limit-chars: 12 3 3){h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;hyphenate-limit-chars:12 3 3;hyphenate-limit-lines:2;hyphenate-limit-last:always;hyphenate-limit-zone:6%;-webkit-hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;-webkit-hyphenate-limit-chars:12 3 3;-webkit-hyphenate-limit-lines:2;-moz-hyphens:auto;-moz-hyphenate-limit-chars:12 3 3;-moz-hyphenate-limit-lines:2;-ms-hyphens:auto;-ms-hyphenate-limit-chars:12 3 3;-ms-hyphenate-limit-lines:2}}:host{display:block}:host(.small) span{font-size:var(--ptc-font-size-xx-small)}:host(.medium) span{font-size:var(--ptc-font-size-x-small)}:host(.primary-grey){color:var(--color-primary-gray-new)}:host(.white) span{color:var(--color-white)}:host(.date-m-top){margin-top:var(--ptc-element-spacing-01)}";
17880
+ const ptcDateCss = "h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{word-break:break-word;hyphens:manual;-webkit-hyphens:manual;-moz-hyphens:manual;-ms-hyphens:manual}@supports (hyphenate-limit-chars: 12 3 3){h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;hyphenate-limit-chars:12 3 3;hyphenate-limit-lines:2;hyphenate-limit-last:always;hyphenate-limit-zone:6%;-webkit-hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;-webkit-hyphenate-limit-chars:12 3 3;-webkit-hyphenate-limit-lines:2;-moz-hyphens:auto;-moz-hyphenate-limit-chars:12 3 3;-moz-hyphenate-limit-lines:2;-ms-hyphens:auto;-ms-hyphenate-limit-chars:12 3 3;-ms-hyphenate-limit-lines:2}}:host{display:block}:host(.small) span{font-size:var(--ptc-font-size-xx-small)}:host(.medium) span{font-size:var(--ptc-font-size-x-small)}:host(.large) span{font-size:var(--ptc-font-size-small)}:host(.primary-grey){color:var(--color-primary-gray-new)}:host(.white) span{color:var(--color-white)}:host(.date-m-top){margin-top:var(--ptc-element-spacing-01)}";
17897
17881
 
17898
17882
  const PtcDate$1 = class extends HTMLElement$1 {
17899
17883
  constructor() {
@@ -20350,8 +20334,14 @@ const PtcIconComponent$1 = class extends HTMLElement$1 {
20350
20334
  }
20351
20335
  }
20352
20336
  setUpTabIndex() {
20353
- this.iconSwiper.slides.forEach(i => i.querySelectorAll("a").forEach(item => item.tabIndex = -1));
20354
- this.iconSwiper.slides[this.iconSwiper.activeIndex].querySelectorAll("a").forEach(item => item.tabIndex = 0);
20337
+ if (this.iconSwiper) {
20338
+ if (this.iconSwiper.slides) {
20339
+ this.iconSwiper.slides.forEach(i => i.querySelectorAll("a").forEach(item => item.tabIndex = -1));
20340
+ if (this.iconSwiper.slides[this.iconSwiper.activeIndex].querySelectorAll("a")) {
20341
+ this.iconSwiper.slides[this.iconSwiper.activeIndex].querySelectorAll("a").forEach(item => item.tabIndex = 0);
20342
+ }
20343
+ }
20344
+ }
20355
20345
  }
20356
20346
  render() {
20357
20347
  return (h$1(Host, { class: this.isMobile ? 'mobileView' : 'desktopView' }, h$1("div", { class: "icon-component-row" }, h$1("slot", null)), h$1("div", { class: "swiper-container", ref: el => this.swiperWrapperRef = el }, h$1("div", { class: "swiper-button-prev", ref: el => this.swiperButtonPrevRef = el, tabindex: 0, onClick: (e) => this.onPrevBtnClick(e), onKeyDown: (e) => this.onPrevBtnKeydown(e) }, h$1("svg", { width: "20", height: "20", viewBox: "0 0 14 20", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, h$1("path", { d: "M13.25 2.75L6 10L13.25 17.25L10.625 19.875L0.749999 10L10.625 0.125L13.25 2.75Z", fill: "#323B42" }))), h$1("div", { class: "swiper-button-next", ref: el => this.swiperButtonNextRef = el, tabindex: 0, onClick: (e) => this.onNextBtnClick(e), onKeyDown: (e) => this.onNextBtnKeydown(e) }, h$1("svg", { width: "20", height: "20", viewBox: "0 0 14 20", fill: "none", xmlns: "http://www.w3.org/2000/svg" }, h$1("path", { d: "M0.75 17.25L8 10L0.75 2.75L3.375 0.125L13.25 10L3.375 19.875L0.75 17.25Z", fill: "#323B42" }))), h$1("div", { class: "swiper-wrapper" }), h$1("div", { class: "swiper-pagination", ref: el => this.swiperPaginationRef = el }))));
@@ -21249,9 +21239,10 @@ const PtcMinimizedNav$1 = class extends HTMLElement$1 {
21249
21239
  this.imgSrc = '';
21250
21240
  this.imgAlt = 'PTC';
21251
21241
  this.navType = 'minimized-header';
21242
+ this.trackerId = undefined;
21252
21243
  }
21253
21244
  render() {
21254
- return (h$1(Host, null, this.navType == 'minimized-header' ? (h$1("div", { class: "minimized-header mf-listen" }, h$1("div", { class: "header" }, h$1("div", { class: "ptc-container" }, h$1("a", { class: "mini-navbar-logo", href: this.linkUrl, tabindex: "0" }, h$1("img", { src: this.imgSrc, alt: this.imgAlt })))))) : null, this.navType == 'minimized-footer' ? (h$1("div", { class: "ptc-min-footer mini-footer" }, h$1("div", { class: "min-footer-copyright-wrapper" }, h$1("ul", { class: "min-footer-nav-list min-footer-copyright-list" }, h$1("slot", null))))) : null));
21245
+ return (h$1(Host, null, this.navType == 'minimized-header' ? (h$1("div", { class: "minimized-header" }, h$1("div", { class: "header" }, h$1("div", { class: "ptc-container mf-listen", id: this.trackerId }, h$1("a", { class: "mini-navbar-logo", href: this.linkUrl, tabindex: "0" }, h$1("img", { src: this.imgSrc, alt: this.imgAlt })))))) : null, this.navType == 'minimized-footer' ? (h$1("div", { class: "ptc-min-footer mini-footer" }, h$1("div", { class: "min-footer-copyright-wrapper" }, h$1("ul", { class: "min-footer-nav-list min-footer-copyright-list" }, h$1("slot", null))))) : null));
21255
21246
  }
21256
21247
  static get style() { return ptcMinimizedNavCss; }
21257
21248
  };
@@ -21820,7 +21811,7 @@ const PtcMobileSelect$1 = class extends HTMLElement$1 {
21820
21811
  static get style() { return ptcMobileSelectCss; }
21821
21812
  };
21822
21813
 
21823
- const ptcModalCss = "h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{word-break:break-word;hyphens:manual;-webkit-hyphens:manual;-moz-hyphens:manual;-ms-hyphens:manual}@supports (hyphenate-limit-chars: 12 3 3){h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;hyphenate-limit-chars:12 3 3;hyphenate-limit-lines:2;hyphenate-limit-last:always;hyphenate-limit-zone:6%;-webkit-hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;-webkit-hyphenate-limit-chars:12 3 3;-webkit-hyphenate-limit-lines:2;-moz-hyphens:auto;-moz-hyphenate-limit-chars:12 3 3;-moz-hyphenate-limit-lines:2;-ms-hyphens:auto;-ms-hyphenate-limit-chars:12 3 3;-ms-hyphenate-limit-lines:2}}:host{display:block}.wrapper{position:absolute;width:100vw;height:100%;top:0;left:0;z-index:500001;display:none}.wrapper.fixed{position:fixed}.wrapper .modal-popup{margin:7.5rem auto 1rem;background-color:var(--color-white);box-shadow:var(--ptc-shadow-large);max-width:22.5625rem;width:80%;display:flex;flex-direction:column;align-items:flex-end;align-content:flex-end;z-index:50020;transform:translateY(-100%);position:relative}@media only screen and (min-width: 992px){.wrapper .modal-popup{max-width:29.125rem}}.wrapper .modal-popup.md{max-width:44.125rem}.wrapper .modal-popup.lg{max-width:56.25rem}.wrapper .modal-popup.xl{max-width:64.0625rem}.wrapper .modal-popup.fit-content{max-width:fit-content}.wrapper .modal-popup.max{width:calc(100% - 4rem);max-width:75rem;height:80vh;margin:auto;overflow:hidden}.wrapper .modal-popup.max .close{margin:var(--ptc-element-spacing-02)}.wrapper .modal-popup.max .modal-body iframe{height:100%}.wrapper .modal-popup.sm-modal{width:341px;max-width:341px}@media only screen and (max-width: 360px){.wrapper .modal-popup.sm-modal{max-width:100%;width:100%}}@media only screen and (min-width: 360px) and (max-width: 479.55px){.wrapper .modal-popup.sm-modal{max-width:360px;width:360px}}@media only screen and (min-width: 480px){.wrapper .modal-popup.sm-modal.modal-with-content{width:371px;max-width:371px}}@media only screen and (min-width: 360px) and (max-width: 479.55px){.wrapper .modal-popup.sm-modal.modal-with-content{max-width:360px;width:360px}}.wrapper .modal-popup .modal-body{width:100%}.wrapper .modal-popup .modal-body iframe{opacity:0;overflow:hidden;width:100%;border:0;transition:opacity var(--ptc-ease-inout) var(--ptc-transition-medium)}.wrapper .modal-popup .modal-body iframe.ready{opacity:1}.wrapper .modal-popup .modal-body.frame{overflow:hidden;overflow-y:hidden;overflow-x:hidden}.wrapper .modal-popup .modal-body.html{overflow:hidden}.wrapper .modal-popup.frame .modal-body{display:flex;flex:1;height:100%}.wrapper .modal-popup .close{margin-right:2px;margin-top:2px}.wrapper .modal-popup.shadow-scroller{max-height:calc(100vh - 220px)}@media only screen and (min-width: 992px){.wrapper .modal-popup.shadow-scroller{max-height:756px}}.wrapper .modal-popup.shadow-scroller .modal-header{transition:box-shadow ease-in-out 250ms;position:relative;min-height:57px;border-bottom:1px solid var(--color-gray-02);width:100%}.wrapper .modal-popup.shadow-scroller .modal-header .close{position:absolute;top:8px;right:8px;margin:0}.wrapper .modal-popup.shadow-scroller .modal-body{min-height:200px;overflow-x:hidden}.wrapper .modal-popup.shadow-scroller .modal-footer{transition:box-shadow ease-in-out 250ms;width:100%;min-height:60px;border-top:1px solid var(--color-gray-02);padding-top:1rem}.wrapper .modal-popup.shadow-scroller.scroll-top .modal-header{box-shadow:0px 4px 12px rgba(0, 0, 0, 0.12)}.wrapper .modal-popup.shadow-scroller.scroll-bottom .modal-footer{box-shadow:0px -8px 12px rgba(0, 0, 0, 0.12)}.wrapper.show{display:flex;align-items:flex-start}.wrapper.show .modal-popup{transform:translateY(0)}.wrapper.show .modal-popup.rounded{border-radius:var(--ptc-border-radius-standard)}.overlay{width:100vw;height:100vh;position:fixed;top:0;left:0;z-index:50010;display:block;background-color:rgba(0, 0, 0, 0.6)}:host(.standard) .modal-popup{border-radius:var(--ptc-border-radius-standard)}:host(.large) .modal-popup{border-radius:var(--ptc-border-radius-large)}:host(.pill) .modal-popup{border-radius:var(--ptc-border-radius-pill)}:host(.circle) .modal-popup{border-radius:var(--ptc-border-radius-circle)}:host(.enclose-modal) .modal-popup{max-height:calc(100vh - 180px)}:host(.enclose-modal) .modal-popup:not(.frame) .modal-body{overflow-y:auto}:host(.bio-modal) .wrapper.show{align-items:flex-start}@media only screen and (min-width: 768px){:host(.bio-modal) .wrapper.show{align-items:center}}:host(.bio-modal) .modal-popup{padding:30px 15px 30px 0;max-width:1200px;margin:20px auto 0 auto;max-height:calc(100vh - 180px);width:90%;height:100%}:host(.bio-modal) .modal-popup .modal-body{height:100%}@media only screen and (min-width: 768px){:host(.bio-modal) .modal-popup .modal-body{height:auto}}@media (max-height: 450px){:host(.bio-modal) .modal-popup .modal-body{height:100%}}@media only screen and (min-width: 768px){:host(.bio-modal) .modal-popup{max-height:none;width:80%;margin-top:0px;height:auto}}@media only screen and (min-width: 1440px){:host(.bio-modal) .modal-popup{max-width:1400px}}@media (max-height: 450px){:host(.bio-modal) .modal-popup{max-height:calc(100vh - 180px);height:100%}}:host(.bio-modal) .close{position:absolute;margin:0;right:8px;top:8px}:host(.bio-modal) .close svg .cls-1,:host(.bio-modal) .close svg .cls-2{fill:none;stroke-width:2px}:host(.bio-modal) .close svg .cls-1{stroke:#1c2439;stroke-linecap:square}:host(.bio-modal) .close svg .cls-2{stroke:#74c34d}:host(.bio-modal) .close svg path{transition:all ease-in-out 250ms}:host(.bio-modal) .close svg .cls-1:nth-child(1){transform:translate(175.5px, 135.5px)}:host(.bio-modal) .close svg .cls-1:nth-child(2){transform:translate(175.5px, 174.985px)}:host(.bio-modal) .close svg .cls-1:nth-child(3){transform:translate(215.5px, 141.393px)}:host(.bio-modal) .close svg .cls-1:nth-child(4){transform:translate(175.5px, 135.5px)}:host(.bio-modal) .close:hover svg .cls-1:nth-child(1){transform:translate(175.5px, 162px)}:host(.bio-modal) .close:hover svg .cls-1:nth-child(2){transform:translate(149px, 174.985px)}:host(.bio-modal) .close:hover svg .cls-1:nth-child(3){transform:translate(215.5px, 174px)}:host(.bio-modal) .close:hover svg .cls-1:nth-child(4){transform:translate(152.5px, 135.5px)}:host(.no-container) .wrapper .modal-popup.xl{max-width:80rem !important;background:transparent;box-shadow:none}:host(.no-container) .wrapper .modal-popup .close{display:none}:host(.video-modal) .modal-popup{margin:auto}@media (max-height: 768px){:host(.video-modal) .modal-popup.xl{max-width:56rem}}@media (max-height: 600px){:host(.video-modal) .modal-popup.xl{max-width:44rem}}@media (max-height: 500px){:host(.video-modal) .modal-popup.xl{max-width:35rem}}@media (max-height: 400px){:host(.video-modal) .modal-popup.xl{max-width:26rem}}:host(.event-listing) .wrapper .modal-popup{max-width:unset;width:calc(100% - 48px);top:50%;left:50%;transform:translate(-50%, -50%) !important;margin:0px;position:absolute}:host(.vh-center) .wrapper .modal-popup{top:50%;left:50%;transform:translate(-50%, -50%) !important;margin:0px auto;position:absolute}:host(.thank-you) .wrapper .modal-popup{max-width:calc(100% - 48px);width:100%}@media only screen and (min-width: 480px){:host(.thank-you) .wrapper .modal-popup{max-width:640px;width:80%}}:host(.thank-you) .wrapper .modal-popup .modal-body{padding:2px 24px 48px 24px;box-sizing:border-box}@media only screen and (min-width: 992px){:host(.thank-you) .wrapper .modal-popup .modal-body{padding:2px 48px 48px 48px}}:host .wrapper .event-list-header{display:flex;position:absolute;width:100%;height:118px;left:0;transform:translateY(-100%);border-radius:var(--ptc-border-radius-standard) var(--ptc-border-radius-standard) 0px 0px;align-items:center}:host .wrapper .event-list-header::before{content:\"\";position:absolute;left:0;width:100%;height:100%;border-radius:4px 4px 0px 0px;background:linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);z-index:1}:host .wrapper .event-list-header .text-wrapper{display:flex;padding:var(--ptc-element-spacing-06);gap:0.5em}:host .wrapper .event-list-header .text-wrapper span{display:inline-block;color:var(--color-white);font-family:var(--ptc-font-latin);font-size:var(--ptc-font-size-x-large);font-weight:var(--ptc-font-weight-medium);line-height:var(--ptc-line-height-densest);position:relative;z-index:2}:host .wrapper .event-list-header .text-wrapper span:first-of-type{font-weight:var(--ptc-font-weight-extrabold)}:host .wrapper .event-mobile-modal{border-top-left-radius:0px;border-top-right-radius:0px}:host .wrapper .bottom-close{text-align:center;margin:0 auto 40px auto}:host .wrapper .bottom-close span{cursor:pointer;color:var(--color-hyperlink);font-size:var(--ptc-font-size-small);font-weight:var(--ptc-font-weight-bold);text-decoration-line:underline;line-height:var(--ptc-line-height-densest)}:host .wrapper .bottom-close span:focus-visible{border-radius:var(--ptc-border-radius-standard);outline:5px solid var(--keyboard-nav-outline)}:host .wrapper .bottom-close span:hover{color:var(--color-blue-08)}";
21814
+ const ptcModalCss = "h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{word-break:break-word;hyphens:manual;-webkit-hyphens:manual;-moz-hyphens:manual;-ms-hyphens:manual}@supports (hyphenate-limit-chars: 12 3 3){h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;hyphenate-limit-chars:12 3 3;hyphenate-limit-lines:2;hyphenate-limit-last:always;hyphenate-limit-zone:6%;-webkit-hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;-webkit-hyphenate-limit-chars:12 3 3;-webkit-hyphenate-limit-lines:2;-moz-hyphens:auto;-moz-hyphenate-limit-chars:12 3 3;-moz-hyphenate-limit-lines:2;-ms-hyphens:auto;-ms-hyphenate-limit-chars:12 3 3;-ms-hyphenate-limit-lines:2}}:host{display:block}.wrapper{position:absolute;width:100vw;height:100%;top:0;left:0;z-index:500001;display:none}.wrapper.fixed{position:fixed}.wrapper .modal-popup{margin:7.5rem auto 1rem;background-color:var(--color-white);box-shadow:var(--ptc-shadow-large);max-width:22.5625rem;width:80%;display:flex;flex-direction:column;align-items:flex-end;align-content:flex-end;z-index:50020;transform:translateY(-100%);position:relative}@media only screen and (min-width: 992px){.wrapper .modal-popup{max-width:29.125rem}}.wrapper .modal-popup.md{max-width:44.125rem}.wrapper .modal-popup.lg{max-width:56.25rem}.wrapper .modal-popup.xl{max-width:64.0625rem}.wrapper .modal-popup.fit-content{max-width:fit-content}.wrapper .modal-popup.max{width:calc(100% - 4rem);max-width:75rem;height:80vh;margin:auto;overflow:hidden}.wrapper .modal-popup.max .close{margin:var(--ptc-element-spacing-02)}.wrapper .modal-popup.max .modal-body iframe{height:100%}.wrapper .modal-popup.sm-modal{width:341px;max-width:341px}@media only screen and (max-width: 360px){.wrapper .modal-popup.sm-modal{max-width:100%;width:100%}}@media only screen and (min-width: 360px) and (max-width: 479.55px){.wrapper .modal-popup.sm-modal{max-width:360px;width:360px}}@media only screen and (min-width: 480px){.wrapper .modal-popup.sm-modal.modal-with-content{width:371px;max-width:371px}}@media only screen and (min-width: 360px) and (max-width: 479.55px){.wrapper .modal-popup.sm-modal.modal-with-content{max-width:360px;width:360px}}.wrapper .modal-popup .modal-body{width:100%}.wrapper .modal-popup .modal-body iframe{opacity:0;overflow:hidden;width:100%;border:0;transition:opacity var(--ptc-ease-inout) var(--ptc-transition-medium)}.wrapper .modal-popup .modal-body iframe.ready{opacity:1}.wrapper .modal-popup .modal-body.frame{overflow:hidden;overflow-y:hidden;overflow-x:hidden}.wrapper .modal-popup .modal-body.html{overflow:hidden}.wrapper .modal-popup.frame .modal-body{display:flex;flex:1;height:100%}.wrapper .modal-popup .close{margin-right:2px;margin-top:2px}.wrapper .modal-popup.shadow-scroller{max-height:calc(100vh - 220px)}@media only screen and (min-width: 992px){.wrapper .modal-popup.shadow-scroller{max-height:756px}}.wrapper .modal-popup.shadow-scroller .modal-header{transition:box-shadow ease-in-out 250ms;position:relative;min-height:57px;border-bottom:1px solid var(--color-gray-02);width:100%}.wrapper .modal-popup.shadow-scroller .modal-header .close{position:absolute;top:8px;right:8px;margin:0}.wrapper .modal-popup.shadow-scroller .modal-body{min-height:200px;overflow-x:hidden}.wrapper .modal-popup.shadow-scroller .modal-footer{transition:box-shadow ease-in-out 250ms;width:100%;min-height:60px;border-top:1px solid var(--color-gray-02);padding-top:1rem}.wrapper .modal-popup.shadow-scroller.scroll-top .modal-header{box-shadow:0px 4px 12px rgba(0, 0, 0, 0.12)}.wrapper .modal-popup.shadow-scroller.scroll-bottom .modal-footer{box-shadow:0px -8px 12px rgba(0, 0, 0, 0.12)}.wrapper.show{display:flex;align-items:flex-start}.wrapper.show .modal-popup{transform:translateY(0)}.wrapper.show .modal-popup.rounded{border-radius:var(--ptc-border-radius-standard)}.overlay{width:100vw;height:100vh;position:fixed;top:0;left:0;z-index:50010;display:block;background-color:rgba(0, 0, 0, 0.6)}:host(.standard) .modal-popup{border-radius:var(--ptc-border-radius-standard)}:host(.large) .modal-popup{border-radius:var(--ptc-border-radius-large)}:host(.pill) .modal-popup{border-radius:var(--ptc-border-radius-pill)}:host(.circle) .modal-popup{border-radius:var(--ptc-border-radius-circle)}:host(.enclose-modal) .modal-popup{max-height:calc(100vh - 180px)}:host(.enclose-modal) .modal-popup:not(.frame) .modal-body{overflow-y:auto}:host(.bio-modal) .wrapper.show{align-items:flex-start}@media only screen and (min-width: 768px){:host(.bio-modal) .wrapper.show{align-items:center}}:host(.bio-modal) .modal-popup{padding:30px 15px 30px 0;max-width:1200px;margin:20px auto 0 auto;max-height:calc(100vh - 180px);width:90%;height:100%}:host(.bio-modal) .modal-popup .modal-body{height:100%}@media only screen and (min-width: 768px){:host(.bio-modal) .modal-popup .modal-body{height:auto}}@media (max-height: 450px){:host(.bio-modal) .modal-popup .modal-body{height:100%}}@media only screen and (min-width: 768px){:host(.bio-modal) .modal-popup{max-height:none;width:80%;margin-top:0px;height:auto}}@media only screen and (min-width: 1440px){:host(.bio-modal) .modal-popup{max-width:1400px}}@media (max-height: 450px){:host(.bio-modal) .modal-popup{max-height:calc(100vh - 180px);height:100%}}:host(.bio-modal) .close{position:absolute;margin:0;right:8px;top:8px}:host(.bio-modal) .close svg .cls-1,:host(.bio-modal) .close svg .cls-2{fill:none;stroke-width:2px}:host(.bio-modal) .close svg .cls-1{stroke:#1c2439;stroke-linecap:square}:host(.bio-modal) .close svg .cls-2{stroke:#74c34d}:host(.bio-modal) .close svg path{transition:all ease-in-out 250ms}:host(.bio-modal) .close svg .cls-1:nth-child(1){transform:translate(175.5px, 135.5px)}:host(.bio-modal) .close svg .cls-1:nth-child(2){transform:translate(175.5px, 174.985px)}:host(.bio-modal) .close svg .cls-1:nth-child(3){transform:translate(215.5px, 141.393px)}:host(.bio-modal) .close svg .cls-1:nth-child(4){transform:translate(175.5px, 135.5px)}:host(.bio-modal) .close:hover svg .cls-1:nth-child(1){transform:translate(175.5px, 162px)}:host(.bio-modal) .close:hover svg .cls-1:nth-child(2){transform:translate(149px, 174.985px)}:host(.bio-modal) .close:hover svg .cls-1:nth-child(3){transform:translate(215.5px, 174px)}:host(.bio-modal) .close:hover svg .cls-1:nth-child(4){transform:translate(152.5px, 135.5px)}:host(.no-container) .wrapper .modal-popup.xl{max-width:80rem !important;background:transparent;box-shadow:none}:host(.no-container) .wrapper .modal-popup .close{display:none}:host(.video-modal) .modal-popup{margin:auto}@media (max-height: 768px){:host(.video-modal) .modal-popup.xl{max-width:56rem}}@media (max-height: 600px){:host(.video-modal) .modal-popup.xl{max-width:44rem}}@media (max-height: 500px){:host(.video-modal) .modal-popup.xl{max-width:35rem}}@media (max-height: 400px){:host(.video-modal) .modal-popup.xl{max-width:26rem}}:host(.event-listing) .wrapper .modal-popup{max-width:unset;width:calc(100% - 48px);top:50%;left:50%;transform:translate(-50%, -50%) !important;margin:0px;position:absolute}:host(.vh-center) .wrapper .modal-popup{top:50%;left:50%;transform:translate(-50%, -50%) !important;margin:0px auto;position:absolute}:host(.thank-you) .wrapper .modal-popup{max-width:calc(100% - 48px);width:100%}@media only screen and (min-width: 480px){:host(.thank-you) .wrapper .modal-popup{max-width:640px;width:80%}}:host(.thank-you) .wrapper .modal-popup .modal-body{padding:2px 24px 48px 24px;box-sizing:border-box}@media only screen and (min-width: 992px){:host(.thank-you) .wrapper .modal-popup .modal-body{padding:2px 48px 48px 48px}}:host .wrapper .event-list-header{display:flex;position:absolute;width:100%;height:118px;left:0;transform:translateY(-100%);border-radius:var(--ptc-border-radius-standard) var(--ptc-border-radius-standard) 0px 0px;align-items:center;padding:var(--ptc-element-spacing-06);box-sizing:border-box}:host .wrapper .event-list-header::before{content:\"\";position:absolute;left:0;width:100%;height:100%;border-radius:4px 4px 0px 0px;background:linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 100%);z-index:1}:host .wrapper .event-list-header+.close{margin-top:0px;margin-right:0px;width:40px;height:40px;display:flex;justify-content:center;align-items:center}:host .wrapper .event-list-header .text-wrapper{display:flex;flex-wrap:wrap;column-gap:0.5em}:host .wrapper .event-list-header .text-wrapper span{display:inline-block;color:var(--color-white);font-family:var(--ptc-font-latin);font-size:var(--ptc-font-size-x-large);font-weight:var(--ptc-font-weight-medium);line-height:var(--ptc-line-height-densest);position:relative;z-index:2}:host .wrapper .event-list-header .text-wrapper span:first-of-type{font-weight:var(--ptc-font-weight-extrabold)}:host .wrapper .event-mobile-modal{border-top-left-radius:0px;border-top-right-radius:0px}:host .wrapper .bottom-close{text-align:center;margin:0 auto 40px auto}:host .wrapper .bottom-close span{cursor:pointer;color:var(--color-hyperlink);font-size:var(--ptc-font-size-small);font-weight:var(--ptc-font-weight-bold);text-decoration-line:underline;line-height:var(--ptc-line-height-densest)}:host .wrapper .bottom-close span:focus-visible{border-radius:var(--ptc-border-radius-standard);outline:5px solid var(--keyboard-nav-outline)}:host .wrapper .bottom-close span:hover{color:var(--color-blue-08)}";
21824
21815
 
21825
21816
  const PtcModal$1 = class extends HTMLElement$1 {
21826
21817
  constructor() {
@@ -22798,7 +22789,7 @@ const PtcNavTile$1 = class extends HTMLElement$1 {
22798
22789
  static get style() { return ptcNavTileCss; }
22799
22790
  };
22800
22791
 
22801
- const ptcNewsCss = "h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{word-break:break-word;hyphens:manual;-webkit-hyphens:manual;-moz-hyphens:manual;-ms-hyphens:manual}@supports (hyphenate-limit-chars: 12 3 3){h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;hyphenate-limit-chars:12 3 3;hyphenate-limit-lines:2;hyphenate-limit-last:always;hyphenate-limit-zone:6%;-webkit-hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;-webkit-hyphenate-limit-chars:12 3 3;-webkit-hyphenate-limit-lines:2;-moz-hyphens:auto;-moz-hyphenate-limit-chars:12 3 3;-moz-hyphenate-limit-lines:2;-ms-hyphens:auto;-ms-hyphenate-limit-chars:12 3 3;-ms-hyphenate-limit-lines:2}}:host{display:block}:host .news-container{max-width:990px;padding:30px 0;margin:auto}:host .news-tag{color:var(--color-gray-10);font-size:var(--ptc-font-size-small);line-height:var(--ptc-line-height-densest);display:inline-block}:host .news-date{margin-bottom:20px;display:inline-block;font-size:var(--ptc-font-size-small)}:host .news-content{padding-top:var(--ptc-element-spacing-08)}:host ptc-sticky-icons{display:none}@media only screen and (min-width: 992px){:host ptc-sticky-icons{display:block}}";
22792
+ const ptcNewsCss = "h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{word-break:break-word;hyphens:manual;-webkit-hyphens:manual;-moz-hyphens:manual;-ms-hyphens:manual}@supports (hyphenate-limit-chars: 12 3 3){h1,h2,h3,h4,h5,h6,p,ul,li,ptc-subnav,ptc-tab-list,ptc-link,ptc-square-card,.hyphenate-text,ptc-footer{hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;hyphenate-limit-chars:12 3 3;hyphenate-limit-lines:2;hyphenate-limit-last:always;hyphenate-limit-zone:6%;-webkit-hyphens:auto;-webkit-hyphenate-limit-before:3;-webkit-hyphenate-limit-after:3;-webkit-hyphenate-limit-chars:12 3 3;-webkit-hyphenate-limit-lines:2;-moz-hyphens:auto;-moz-hyphenate-limit-chars:12 3 3;-moz-hyphenate-limit-lines:2;-ms-hyphens:auto;-ms-hyphenate-limit-chars:12 3 3;-ms-hyphenate-limit-lines:2}}:host{display:block}:host .news-container{max-width:990px;padding:30px 0;margin:auto}:host .news-tag{color:var(--color-gray-10);font-size:var(--ptc-font-size-small);line-height:var(--ptc-line-height-densest);display:inline-block}:host .news-date{margin-bottom:20px;display:inline-block;font-size:var(--ptc-font-size-small)}:host .news-content{padding-top:var(--ptc-element-spacing-08)}:host ptc-sticky-icons{display:none}@media only screen and (min-width: 992px){:host ptc-sticky-icons{display:block}}ptc-news .news-date{font-size:var(--ptc-font-size-small);color:var(--color-gray-10)}";
22802
22793
 
22803
22794
  const PtcNews$1 = class extends HTMLElement$1 {
22804
22795
  constructor() {
@@ -22806,13 +22797,12 @@ const PtcNews$1 = class extends HTMLElement$1 {
22806
22797
  this.__registerHost();
22807
22798
  this.__attachShadow();
22808
22799
  this.newsTag = undefined;
22809
- this.newsDate = undefined;
22810
22800
  this.newsImage = undefined;
22811
22801
  this.newsImageAlt = undefined;
22812
22802
  this.newsDownloadUrl = undefined;
22813
22803
  }
22814
22804
  render() {
22815
- return (h$1(Host, null, h$1("div", { class: "news-container" }, this.newsTag && h$1("span", { class: "news-tag" }, this.newsTag), h$1("slot", { name: "news-title" }), h$1("slot", { name: "news-secondary-title" }), this.newsDate && h$1("span", { class: "news-date" }, this.newsDate), h$1("slot", { name: "news-summary" }), this.getArticleImage(), h$1("div", { class: "news-content" }, h$1("slot", { name: "share-icons" }), h$1("slot", null)))));
22805
+ return (h$1(Host, null, h$1("div", { class: "news-container" }, this.newsTag && h$1("span", { class: "news-tag" }, this.newsTag), h$1("slot", { name: "news-title" }), h$1("slot", { name: "news-secondary-title" }), h$1("slot", { name: "news-date" }), h$1("slot", { name: "news-summary" }), this.getArticleImage(), h$1("div", { class: "news-content" }, h$1("slot", { name: "share-icons" }), h$1("slot", null)))));
22816
22806
  }
22817
22807
  getArticleImage() {
22818
22808
  if (this.newsImage && this.newsDownloadUrl) {
@@ -33237,7 +33227,7 @@ const PtcJumbotron = /*@__PURE__*/proxyCustomElement(PtcJumbotron$1, [1,"ptc-jum
33237
33227
  const PtcLink = /*@__PURE__*/proxyCustomElement(PtcLink$1, [1,"ptc-link",{"disabled":[516],"external":[516],"href":[1],"target":[1],"linkTitle":[1,"link-title"],"theme":[1],"fontSize":[1,"font-size"],"fontWeight":[1,"font-weight"],"linkArea":[1,"link-area"],"seoCompatibilityMode":[4,"seo-compatibility-mode"],"styles":[1],"trackerId":[1,"tracker-id"],"tabNav":[2,"tab-nav"],"darkFocusState":[4,"dark-focus-state"]}]);
33238
33228
  const PtcList = /*@__PURE__*/proxyCustomElement(PtcList$1, [1,"ptc-list",{"listType":[1,"list-type"],"listItems":[16]}]);
33239
33229
  const PtcMediaCard = /*@__PURE__*/proxyCustomElement(PtcMediaCard$1, [1,"ptc-media-card",{"cardType":[1,"card-type"],"cardHref":[1,"card-href"],"target":[1],"rel":[1],"activeBackgroundImage":[1025,"active-background-image"],"activeBackgroundImageAlt":[1025,"active-background-image-alt"],"hoverBackgroundImage":[1025,"hover-background-image"],"heading":[1025],"headingTransform":[1025,"heading-transform"],"category":[1025],"ariaLabel":[1,"aria-label"],"iconImage":[1025,"icon-image"],"iconImageAlt":[1025,"icon-image-alt"],"trackerId":[1,"tracker-id"],"isHovered":[32],"isTabNavigated":[32]}]);
33240
- const PtcMinimizedNav = /*@__PURE__*/proxyCustomElement(PtcMinimizedNav$1, [1,"ptc-minimized-nav",{"linkUrl":[513,"link-url"],"imgSrc":[513,"img-src"],"imgAlt":[513,"img-alt"],"navType":[1,"nav-type"]}]);
33230
+ const PtcMinimizedNav = /*@__PURE__*/proxyCustomElement(PtcMinimizedNav$1, [1,"ptc-minimized-nav",{"linkUrl":[513,"link-url"],"imgSrc":[513,"img-src"],"imgAlt":[513,"img-alt"],"navType":[1,"nav-type"],"trackerId":[1,"tracker-id"]}]);
33241
33231
  const PtcMobileSelect = /*@__PURE__*/proxyCustomElement(PtcMobileSelect$1, [0,"ptc-mobile-select",{"triggerName":[1,"trigger-name"],"selectedText":[1,"selected-text"],"wheelData":[1040],"selectedId":[1,"selected-id"],"ensureBtnText":[1,"ensure-btn-text"],"cancelBtnText":[1,"cancel-btn-text"],"listTitle":[1,"list-title"],"notFoundPopupProceedButton":[8,"not-found-popup-proceed-button"]}]);
33242
33232
  const PtcModal = /*@__PURE__*/proxyCustomElement(PtcModal$1, [1,"ptc-modal",{"iframeUrl":[1025,"iframe-url"],"size":[1025],"customClass":[1025,"custom-class"],"show":[1028],"overlay":[1028],"fixed":[1028],"keepInViewport":[1028,"keep-in-viewport"],"closeOnBlur":[1028,"close-on-blur"],"rounded":[1028],"hideContainer":[1028,"hide-container"],"showHeaderFooter":[1028,"show-header-footer"],"borderRadius":[1025,"border-radius"],"isBioModal":[1028,"is-bio-modal"],"styles":[1],"modalType":[1,"modal-type"],"vhCenter":[4,"vh-center"],"headerOnlyBg":[1,"header-only-bg"],"headerOnlyText1":[1,"header-only-text-1"],"headerOnlyText2":[1,"header-only-text-2"],"bottomCloseBtn":[1,"bottom-close-btn"],"initialFocus":[4,"initial-focus"],"overlayHeight":[32],"openedByKeyboard":[32],"bodyOverflowSetting":[32]}]);
33243
33233
  const PtcModalQuiz = /*@__PURE__*/proxyCustomElement(PtcModalQuiz$1, [1,"ptc-modal-quiz",{"totalQuestions":[2,"total-questions"],"modalId":[1,"modal-id"],"currentQuestion":[32],"currentSelectedPriority":[32],"selectedPriorityRadio":[32],"answers":[32],"traversal":[32]}]);
@@ -33249,7 +33239,7 @@ const PtcNavSkipToContent = /*@__PURE__*/proxyCustomElement(PtcNavSkipToContent$
33249
33239
  const PtcNavSlider = /*@__PURE__*/proxyCustomElement(PtcNavSlider$1, [1,"ptc-nav-slider",{"sliderId":[1,"slider-id"],"leftBtnTrackerId":[1,"left-btn-tracker-id"],"rightBtnTrackerId":[1,"right-btn-tracker-id"]},[[0,"dropdownClickEvent","handledropdownClickEvent"]]]);
33250
33240
  const PtcNavSubmenu = /*@__PURE__*/proxyCustomElement(PtcNavSubmenu$1, [1,"ptc-nav-submenu",{"label":[1],"iconAssetName":[1025,"icon-asset-name"],"iconSrc":[1,"icon-src"],"labelTrackerId":[1,"label-tracker-id"],"dropdownTrackerId":[1,"dropdown-tracker-id"],"backBtnTrackerId":[1,"back-btn-tracker-id"]}]);
33251
33241
  const PtcNavTile = /*@__PURE__*/proxyCustomElement(PtcNavTile$1, [0,"ptc-nav-tile",{"navLinks":[16]}]);
33252
- const PtcNews = /*@__PURE__*/proxyCustomElement(PtcNews$1, [1,"ptc-news",{"newsTag":[1,"news-tag"],"newsDate":[1,"news-date"],"newsImage":[1,"news-image"],"newsImageAlt":[1,"news-image-alt"],"newsDownloadUrl":[1,"news-download-url"]}]);
33242
+ const PtcNews = /*@__PURE__*/proxyCustomElement(PtcNews$1, [1,"ptc-news",{"newsTag":[1,"news-tag"],"newsImage":[1,"news-image"],"newsImageAlt":[1,"news-image-alt"],"newsDownloadUrl":[1,"news-download-url"]}]);
33253
33243
  const PtcOfficeLocationCard = /*@__PURE__*/proxyCustomElement(PtcOfficeLocationCard$1, [1,"ptc-office-location-card",{"region":[1],"country":[1],"address":[1],"isContactEmpty":[4,"is-contact-empty"],"officeName":[1,"office-name"],"showFullAddressModal":[4,"show-full-address-modal"],"showFullAddressText":[1,"show-full-address-text"]}]);
33254
33244
  const PtcOfficeLocations = /*@__PURE__*/proxyCustomElement(PtcOfficeLocations$1, [1,"ptc-office-locations",{"regionListManual":[1,"region-list-manual"],"showMapText":[1,"show-map-text"],"hideMapText":[1,"hide-map-text"],"filtersText":[1,"filters-text"],"allRegionsText":[1,"all-regions-text"],"applyText":[1,"apply-text"],"clearText":[1,"clear-text"],"openRegion":[32],"isMobile":[32],"address":[32],"showMap":[32]},[[9,"resize","handleResize"],[8,"officeCardClicked","handleAddressClicked"]]]);
33255
33245
  const PtcOverlay = /*@__PURE__*/proxyCustomElement(PtcOverlay$1, [1,"ptc-overlay",{"filterColor":[1,"filter-color"],"borderRadius":[1,"border-radius"],"overlayZIndex":[1,"overlay-z-index"],"styles":[1]}]);
@@ -11,62 +11,46 @@ const EventPodcastSliderExample = class {
11
11
  registerInstance(this, hostRef);
12
12
  }
13
13
  componentDidLoad() {
14
- const swiperContainer = this.el.querySelector('.swiper-container');
15
- const slides = swiperContainer.querySelectorAll('.swiper-slide');
14
+ //const swiperContainer = this.el.querySelector('.swiper-container');
15
+ //const slides = swiperContainer.querySelectorAll('.swiper-slide');
16
16
  // Define a desktop breakpoint
17
- const isDesktop = window.matchMedia('(min-width: 992px)').matches;
17
+ //const isDesktop = window.matchMedia('(min-width: 992px)').matches;
18
18
  setTimeout(() => {
19
19
  let list = this.el.querySelector('.event-slider-cards');
20
- if (!isDesktop || slides.length >= 4) {
21
- this.listSwp = new Swiper(list, {
22
- // Customize options here
23
- modules: [Navigation, Pagination, Scrollbar, Mousewheel],
24
- slidesPerView: 'auto',
25
- spaceBetween: 24,
26
- //centeredSlides: true,
27
- centeredSlidesBounds: true,
28
- initialSlide: 0,
29
- centerInsufficientSlides: false,
30
- freeMode: true,
31
- scrollbar: {
32
- el: this.swiperPaginationRef,
33
- draggable: true,
20
+ this.listSwp = new Swiper(list, {
21
+ // Customize options here
22
+ modules: [Navigation, Pagination, Scrollbar, Mousewheel],
23
+ slidesPerView: 'auto',
24
+ spaceBetween: 24,
25
+ //centeredSlides: true,
26
+ centeredSlidesBounds: true,
27
+ initialSlide: 0,
28
+ centerInsufficientSlides: false,
29
+ freeMode: true,
30
+ scrollbar: {
31
+ el: this.swiperPaginationRef,
32
+ draggable: true,
33
+ },
34
+ navigation: {
35
+ nextEl: this.swiperButtonNextRef,
36
+ prevEl: this.swiperButtonPrevRef,
37
+ },
38
+ mousewheel: {
39
+ forceToAxis: true,
40
+ sensitivity: 100,
41
+ },
42
+ breakpoints: {
43
+ 992: {
44
+ slidesPerView: 4,
34
45
  },
35
- navigation: {
36
- nextEl: this.swiperButtonNextRef,
37
- prevEl: this.swiperButtonPrevRef,
46
+ 1200: {
47
+ spaceBetween: 32,
38
48
  },
39
- mousewheel: {
40
- forceToAxis: true,
41
- sensitivity: 100,
49
+ 1400: {
50
+ spaceBetween: 40,
42
51
  },
43
- breakpoints: {
44
- 992: {
45
- slidesPerView: 4,
46
- },
47
- 1200: {
48
- spaceBetween: 32,
49
- },
50
- 1400: {
51
- spaceBetween: 40,
52
- },
53
- },
54
- });
55
- }
56
- else {
57
- const nextBtn = this.el.querySelector('.swiper-button-next');
58
- const prevBtn = this.el.querySelector('.swiper-button-prev');
59
- const scrollbar = this.el.querySelector('.swiper-scrollbar');
60
- if (nextBtn) {
61
- nextBtn.setAttribute('style', 'display: none;');
62
- }
63
- if (prevBtn) {
64
- prevBtn.setAttribute('style', 'display: none;');
65
- }
66
- if (scrollbar) {
67
- scrollbar.setAttribute('style', 'display: none;');
68
- }
69
- }
52
+ },
53
+ });
70
54
  }, 100);
71
55
  }
72
56
  render() {