{"version":3,"file":"../blocks/content_toggle/content-toggle.min.js","mappings":"mBAEAA,SAASC,iBAAiB,oBAAoB,WAC1C,IAAMC,EAAoBF,SAASG,cAAc,wBAEjD,GAAID,EAAmB,CACnB,IAAME,EAAWF,EAAkBG,iBAAiB,qBAC9CC,EAAYJ,EAAkBG,iBAAiB,sBAGjDD,EAASG,OAAS,GAAKD,EAAUC,OAAS,IAC1CH,EAAS,GAAGI,UAAUC,IAAI,UAC1BH,EAAU,GAAGE,UAAUC,IAAI,WAI/BL,EAASM,SAAQ,SAACC,EAASC,GACvBD,EAAQV,iBAAiB,SAAS,WAE9BG,EAASM,SAAQ,SAAAG,GACbA,EAAKL,UAAUM,OAAO,UACtBD,EAAKE,aAAa,gBAAiB,QACvC,IACAT,EAAUI,SAAQ,SAAAG,GACdA,EAAKL,UAAUM,OAAO,UACtBD,EAAKE,aAAa,SAAU,OAChC,IAGAC,KAAKR,UAAUC,IAAI,UACnBO,KAAKD,aAAa,gBAAiB,QACnCT,EAAUM,GAAOJ,UAAUC,IAAI,UAC/BH,EAAUM,GAAOK,gBAAgB,UACjCX,EAAUI,SAAQ,SAAAG,GAAI,OAAIA,EAAKE,aAAa,cAAe,OAAO,IAClET,EAAUM,GAAOG,aAAa,cAAe,QACjD,IAEAJ,EAAQV,iBAAiB,WAAW,SAAUiB,GAC1C,IAAIC,EAAWP,EACG,eAAdM,EAAME,IAAsBD,GAAYP,EAAQ,GAAKR,EAASG,OAC3C,cAAdW,EAAME,MAAqBD,GAAYP,EAAQ,EAAIR,EAASG,QAAUH,EAASG,QAExFH,EAASe,GAAUE,QACnBjB,EAASe,GAAUG,OACvB,GACJ,GACJ,CACJ,G","sources":["webpack://umbrellas/./blocks/content_toggle/content-toggle.js"],"sourcesContent":["import './content-toggle.scss';\n\ndocument.addEventListener('DOMContentLoaded', function() {\n const contentToggleWrap = document.querySelector('.content-toggle-wrap');\n \n if (contentToggleWrap) {\n const navItems = contentToggleWrap.querySelectorAll('.content-nav-item');\n const mainItems = contentToggleWrap.querySelectorAll('.content-main-item');\n\n // Activate first item by default\n if (navItems.length > 0 && mainItems.length > 0) {\n navItems[0].classList.add('active');\n mainItems[0].classList.add('active');\n }\n\n // Add click event listeners to nav items\n navItems.forEach((navItem, index) => {\n navItem.addEventListener('click', function () {\n // Remove active class and aria attributes from all items\n navItems.forEach(item => {\n item.classList.remove('active');\n item.setAttribute('aria-selected', 'false');\n });\n mainItems.forEach(item => {\n item.classList.remove('active');\n item.setAttribute('hidden', 'true');\n });\n\n // Add active class and aria attributes to the clicked nav item and corresponding main item\n this.classList.add('active');\n this.setAttribute('aria-selected', 'true');\n mainItems[index].classList.add('active');\n mainItems[index].removeAttribute('hidden');\n mainItems.forEach(item => item.setAttribute('aria-hidden', 'true'));\n mainItems[index].setAttribute('aria-hidden', 'false');\n });\n\n navItem.addEventListener('keydown', function (event) {\n let newIndex = index;\n if (event.key === 'ArrowRight') newIndex = (index + 1) % navItems.length;\n else if (event.key === 'ArrowLeft') newIndex = (index - 1 + navItems.length) % navItems.length;\n \n navItems[newIndex].focus();\n navItems[newIndex].click();\n });\n });\n }\n});"],"names":["document","addEventListener","contentToggleWrap","querySelector","navItems","querySelectorAll","mainItems","length","classList","add","forEach","navItem","index","item","remove","setAttribute","this","removeAttribute","event","newIndex","key","focus","click"],"sourceRoot":""}