<html><head></head><body>{"version":3,"file":"accordion-Bm3Bz4rI.js","sources":["../../src/scripts/modules/accordion.ts"],"sourcesContent":["import { Component } from '@verndale/core';\n\nclass Accordion extends Component {\n  layout: string = 'block';\n\n  constructor(el: HTMLElement, layout?: string) {\n    super(el);\n    if (layout) {\n      this.layout = layout;\n    }\n  }\n\n  setupDefaults() {\n    this.dom = {\n      triggers: this.el.querySelectorAll('.accordion__item-trigger'),\n      panels: this.el.querySelectorAll('.accordion__item-panel')\n    };\n\n    this.initAccordion();\n  }\n\n  addListeners() {\n    (this.dom.triggers as NodeList).forEach(trigger =&gt;\n      trigger.addEventListener('click', this.handleClick.bind(this))\n    );\n  }\n\n  initAccordion() {\n    (this.dom.triggers as NodeListOf<htmlbuttonelement>).forEach(trigger =&gt; {\n      if (trigger.getAttribute('aria-expanded') === 'true') {\n        this.openItem(trigger);\n      }\n    });\n  }\n\n  handleClick(e: Event) {\n    const isCollapsable = this.el.dataset.isCollapsable === 'true';\n    const trigger = e.currentTarget as HTMLButtonElement;\n    if (isCollapsable) {\n      (this.dom.triggers as NodeListOf<htmlelement>).forEach(item =&gt; {\n        if (item.getAttribute('aria-expanded') === 'true') {\n          this.closeItem(item as HTMLButtonElement);\n        } else if (item.getAttribute('aria-expanded') === 'false' &amp;&amp; item === trigger) {\n          this.openItem(item as HTMLButtonElement);\n        }\n      });\n    } else {\n      if (trigger.getAttribute('aria-expanded') === 'true') {\n        this.closeItem(trigger);\n      } else {\n        this.openItem(trigger);\n      }\n    }\n  }\n\n  openItem(trigger: HTMLButtonElement) {\n    trigger.setAttribute('aria-expanded', 'true');\n\n    const panel = document.getElementById(trigger.getAttribute('aria-controls') as string);\n\n    if (panel) {\n      panel.removeAttribute('style');\n      panel.style.display = this.layout;\n      const pannelContent = panel.querySelector<htmlelement>('.accordion__item-content');\n\n      panel.style.height = `${pannelContent?.offsetHeight}px`;\n\n      setTimeout(() =&gt; {\n        panel.style.height = 'auto';\n        panel.style.display = this.layout;\n      }, 250);\n    }\n  }\n\n  closeItem(trigger: HTMLButtonElement) {\n    trigger.setAttribute('aria-expanded', 'false');\n\n    const panel = document.getElementById(trigger.getAttribute('aria-controls') as string);\n\n    if (panel) {\n      const pannelContent = panel.querySelector<htmlelement>('.accordion__item-content');\n      panel.style.height = `${pannelContent?.offsetHeight}px`;\n      setTimeout(() =&gt; (panel.style.height = '0px'));\n      setTimeout(() =&gt; (panel.style.display = 'none'), 500);\n    }\n  }\n}\n\nexport default Accordion;\n"],"names":["Accordion","Component","el","layout","__publicField","trigger","e","isCollapsable","item","panel","pannelContent"],"mappings":"iNAEA,MAAMA,UAAkBC,CAAU,CAGhC,YAAYC,EAAiBC,EAAiB,CAC5C,MAAMD,CAAE,EAHVE,EAAA,cAAiB,SAIXD,IACF,KAAK,OAASA,EAChB,CAGF,eAAgB,CACd,KAAK,IAAM,CACT,SAAU,KAAK,GAAG,iBAAiB,0BAA0B,EAC7D,OAAQ,KAAK,GAAG,iBAAiB,wBAAwB,CAC3D,EAEA,KAAK,cAAc,CAAA,CAGrB,cAAe,CACZ,KAAK,IAAI,SAAsB,QAAQE,GACtCA,EAAQ,iBAAiB,QAAS,KAAK,YAAY,KAAK,IAAI,CAAC,CAC/D,CAAA,CAGF,eAAgB,CACb,KAAK,IAAI,SAA2C,QAAmBA,GAAA,CAClEA,EAAQ,aAAa,eAAe,IAAM,QAC5C,KAAK,SAASA,CAAO,CACvB,CACD,CAAA,CAGH,YAAYC,EAAU,CACpB,MAAMC,EAAgB,KAAK,GAAG,QAAQ,gBAAkB,OAClDF,EAAUC,EAAE,cACdC,EACD,KAAK,IAAI,SAAqC,QAAgBC,GAAA,CACzDA,EAAK,aAAa,eAAe,IAAM,OACzC,KAAK,UAAUA,CAAyB,EAC/BA,EAAK,aAAa,eAAe,IAAM,SAAWA,IAASH,GACpE,KAAK,SAASG,CAAyB,CACzC,CACD,EAEGH,EAAQ,aAAa,eAAe,IAAM,OAC5C,KAAK,UAAUA,CAAO,EAEtB,KAAK,SAASA,CAAO,CAEzB,CAGF,SAASA,EAA4B,CAC3BA,EAAA,aAAa,gBAAiB,MAAM,EAE5C,MAAMI,EAAQ,SAAS,eAAeJ,EAAQ,aAAa,eAAe,CAAW,EAErF,GAAII,EAAO,CACTA,EAAM,gBAAgB,OAAO,EACvBA,EAAA,MAAM,QAAU,KAAK,OACrB,MAAAC,EAAgBD,EAAM,cAA2B,0BAA0B,EAEjFA,EAAM,MAAM,OAAS,GAAGC,GAAA,YAAAA,EAAe,YAAY,KAEnD,WAAW,IAAM,CACfD,EAAM,MAAM,OAAS,OACfA,EAAA,MAAM,QAAU,KAAK,QAC1B,GAAG,CAAA,CACR,CAGF,UAAUJ,EAA4B,CAC5BA,EAAA,aAAa,gBAAiB,OAAO,EAE7C,MAAMI,EAAQ,SAAS,eAAeJ,EAAQ,aAAa,eAAe,CAAW,EAErF,GAAII,EAAO,CACH,MAAAC,EAAgBD,EAAM,cAA2B,0BAA0B,EACjFA,EAAM,MAAM,OAAS,GAAGC,GAAA,YAAAA,EAAe,YAAY,KACnD,WAAW,IAAOD,EAAM,MAAM,OAAS,KAAM,EAC7C,WAAW,IAAOA,EAAM,MAAM,QAAU,OAAS,GAAG,CAAA,CACtD,CAEJ"}</htmlelement></htmlelement></htmlelement></htmlbuttonelement><style>
.hidden {
display: none;
}
</style>

<a href="http://www.ehulk.net"  class="hidden">Football-betting-platform-info@ehulk.net</a>
<a href="http://urhefn.tjttac.com" class="hidden">山特电子(深圳)有限公司</a>
<a href="http://www.hairstylescn.com"  class="hidden">bbin-customerservice@hairstylescn.com</a>
<a href="http://www.866045.com"  class="hidden">皇冠体育</a>
<a href="http://www.yezi-studio.com"  class="hidden">Venice-Macao-customerservice@yezi-studio.com</a>
<a href="http://web-sitemap.0478yigou.com" class="hidden">iHerb中文社区 </a>
<a href="http://joxmbl.madisonlawns.net" class="hidden">网站Alexa排名查询</a>
<a href="http://web-sitemap.88021y.com" class="hidden">中国科普网</a>
<a href="http://www.cceweb.net"  class="hidden">赌博网站推荐</a>
<a href="http://www.madeintlh.com"  class="hidden">新葡新京</a>
<a href="http://www.999lsm.net"  class="hidden">Sports-in-Sabah-help@999lsm.net</a>
<a href="http://www.xsdvoip.com"  class="hidden">足球外围平台</a>
<a href="http://www.beanslot.net"  class="hidden">Sabah-online-platform-support@beanslot.net</a>
<a href="http://www.yopin365.com"  class="hidden">Crown-Sports-billing@yopin365.com</a>
<a href="http://www.pf168shop.com"  class="hidden">Sabah-online-platform-media@pf168shop.com</a>
<a href="http://www.baoqiuyue.net"  class="hidden">威尼斯人娱乐城</a>
<a href="http://web-sitemap.9u15.com" class="hidden">华东在线</a>
<a href="http://www.iconfuture.net"  class="hidden">太阳城</a>
<a href="http://bvdcib.shizimiao.com" class="hidden">广东广雅中学</a>
<a href="http://www.castingmoldingmachine.com"  class="hidden">新葡京博彩</a>

<a href="https://es-la.facebook.com/public/✔️官方网址:la777.net✔️十大线上网赌平台-维基百科✔️官方网址:la777.net✔️十大线上网赌平台-维基百科.wny" class="hidden">好搜地图</a>
<a href="https://www.deep6gear.com/catalogsearch/result/?q=✔️官方网址:la777.net✔️全球十大赌博靠谱的平台.mzh" class="hidden">新浪高尔夫频道</a>
<a href="https://es-la.facebook.com/public/ag百家乐网址(中国)有限公司✔️最新网址:la55.net✔️.lvh" class="hidden">腾房网</a>
<a href="https://acrmc.com/search/✔️网址:ad11.net✔️ballbet贝博-维基百科✔️网址:ad11.net✔️ballbet贝博-维基百科.owz" class="hidden">永强岩土</a>
<a href="https://www.deep6gear.com/catalogsearch/result/?q=✔️最新网址:la55.net✔️万博体育manbetx官网平台介绍.axt" class="hidden">宁德职业技术学院</a>
<a href="https://m.facebook.com/public/bet9app苹果下载软件>>✔️网址:ad11.net✔️手输<<bet9app苹果下载软件>>✔️网址:ad11.net✔️手输<<.wxg" class="hidden">铁岭赶集网</a>
<a href="https://es-la.facebook.com/public/加拿大28回水(关于加拿大28回水的简介)✔️网址:ad11.net✔️" class="hidden">菏泽赶集网</a>
<a href="https://stock.adobe.com/search/images?k=葡萄京官方网站✔️官方网址:la777.net✔️" class="hidden">河北教育网</a>
<a href="https://tw.dictionary.yahoo.com/dictionary?p=ballbet贝博app下载登录平台介绍✔️网址:la666.net✔️" class="hidden">SNH48中国官方网站</a>
<a href="https://stock.adobe.com/search/images?k=目前十大跑分平台✔️官方网址:la777.net✔️目前十大跑分平台✔️官方网址:la777.net✔️.lez" class="hidden">城都商报电子报</a>

<a href="/sttcs/hot-news/Discoplacentalia.html" class="hidden">一呆短租</a>
<a href="/cn/iaomym-366509" class="hidden">融通环保</a>
<a href="/cn/gucxyl-375706" class="hidden">贡嘎雪</a>
<a href="/sitemap.xml" class="hidden">站点地图</a>


</body></html>