{"version":3,"names":["Accordion","constructor","el","this","summary","querySelector","content","animation","isClosing","isExpanding","addEventListener","e","onClick","preventDefault","style","overflow","open","shrink","startHeight","offsetHeight","endHeight","cancel","animate","height","duration","easing","onfinish","onAnimationFinish","oncancel","window","requestAnimationFrame","expand","$","document","querySelectorAll","forEach","jQuery","$elements_to_stagger_fade","gsap","utils","toArray","length","set","opacity","y","ScrollTrigger","batch","start","end","onEnter","to","autoAlpha","stagger","$media_text_blocks","x","block","index","figure","delay","Custom_GS","_init","is_reinit","sliders","elem","instance","gutenslider","swiperInstance","allowTouchMove","pagination","$el","bullets","each","i","innerHTML","on","setTimeout","wi","width","panel","text","resize","func","timer","context","args","arguments","clearTimeout","apply","debounce","delegateTarget","parentElement","nextElementSibling","async","event","innerText","navigator","clipboard","writeText","alert","copyCode","mfp_gallery_block","magnificPopup","delegate","type","gallery","enabled","localStorage","setItem","remove","getItem","show","css","throttle","limit","inThrottle","click","removeClass","addClass","root","documentElement","$headerHeight","outerHeight","setProperty","lastScrollTop","st","pageYOffset","scrollTop","$offset_minimalView"],"sources":["../../vendor/js/waapi-animate-details.js","../../source/js/scrolltrigger.js","../../source/js/blocks/gutenslider.js","../../source/js/misc/dev-panel.js","../../source/js/misc/copy-pattern-demo.js","../../source/js/misc/magnific-init.js","../../source/js/misc/nu-cookies.js","../../source/js/main.js"],"sourcesContent":["class Accordion {\n constructor(el) {\n // Store the
element\n this.el = el;\n // Store the element\n this.summary = el.querySelector('summary');\n // Store the
element\n this.content = el.querySelector('.content');\n\n // Store the animation object (so we can cancel it if needed)\n this.animation = null;\n // Store if the element is closing\n this.isClosing = false;\n // Store if the element is expanding\n this.isExpanding = false;\n // Detect user clicks on the summary element\n this.summary.addEventListener('click', (e) => this.onClick(e));\n }\n\n onClick(e) {\n // Stop default behaviour from the browser\n e.preventDefault();\n // Add an overflow on the
to avoid content overflowing\n this.el.style.overflow = 'hidden';\n // Check if the element is being closed or is already closed\n if (this.isClosing || !this.el.open) {\n this.open();\n // Check if the element is being openned or is already open\n } else if (this.isExpanding || this.el.open) {\n this.shrink();\n }\n }\n\n shrink() {\n // Set the element as \"being closed\"\n this.isClosing = true;\n \n // Store the current height of the element\n const startHeight = `${this.el.offsetHeight}px`;\n // Calculate the height of the summary\n const endHeight = `${this.summary.offsetHeight}px`;\n \n // If there is already an animation running\n if (this.animation) {\n // Cancel the current animation\n this.animation.cancel();\n }\n \n // Start a WAAPI animation\n this.animation = this.el.animate({\n // Set the keyframes from the startHeight to endHeight\n height: [startHeight, endHeight]\n }, {\n duration: 300,\n easing: 'ease-in-out'\n });\n \n // When the animation is complete, call onAnimationFinish()\n this.animation.onfinish = () => this.onAnimationFinish(false);\n // If the animation is cancelled, isClosing variable is set to false\n this.animation.oncancel = () => this.isClosing = false;\n }\n\n open() {\n // Apply a fixed height on the element\n this.el.style.height = `${this.el.offsetHeight}px`;\n // Force the [open] attribute on the details element\n this.el.open = true;\n // Wait for the next frame to call the expand function\n window.requestAnimationFrame(() => this.expand());\n }\n\n expand() {\n // Set the element as \"being expanding\"\n this.isExpanding = true;\n // Get the current fixed height of the element\n const startHeight = `${this.el.offsetHeight}px`;\n // Calculate the open height of the element (summary height + content height)\n const endHeight = `${this.summary.offsetHeight + this.content.offsetHeight}px`;\n \n // If there is already an animation running\n if (this.animation) {\n // Cancel the current animation\n this.animation.cancel();\n }\n \n // Start a WAAPI animation\n this.animation = this.el.animate({\n // Set the keyframes from the startHeight to endHeight\n height: [startHeight, endHeight]\n }, {\n duration: 300,\n easing: 'ease-in-out'\n });\n // When the animation is complete, call onAnimationFinish()\n this.animation.onfinish = () => this.onAnimationFinish(true);\n // If the animation is cancelled, isExpanding variable is set to false\n this.animation.oncancel = () => this.isExpanding = false;\n }\n\n onAnimationFinish(open) {\n // Set the open attribute based on the parameter\n this.el.open = open;\n // Clear the stored animation\n this.animation = null;\n // Reset isClosing & isExpanding\n this.isClosing = false;\n this.isExpanding = false;\n // Remove the overflow hidden and the fixed height\n this.el.style.height = this.el.style.overflow = '';\n }\n}\n\ndocument.querySelectorAll('.wp-block-nu-blocks-accordion-item details').forEach((el) => {\n new Accordion(el);\n});\n\n","(function ($, window, document) {\n\t/* \n\t\tjQuery document ready\n\t*/\n\t//\n\t$(function () {\n\t\tlet $elements_to_stagger_fade = undefined;\n\t\t// create an array of elements that we would like to batch with the same staggered fade-in animation\n\t\t// (just syntactical sugar)\n\t\t$elements_to_stagger_fade = gsap.utils.toArray([\n\t\t\t\".nu__grid .grid-item\",\n\t\t\t\".wp-block-column > :only-child:not(.is-sticky-on-scroll)\",\n\t\t]);\n\n\t\tif ($elements_to_stagger_fade.length) {\n\t\t\t// set the initial state of the elements to faded-out and nudged-down\n\t\t\tgsap.set($elements_to_stagger_fade, { opacity: 0, y: 30 });\n\n\t\t\t// batch animation for all elements\n\t\t\tScrollTrigger.batch($elements_to_stagger_fade, {\n\t\t\t\tstart: \"top 85%\",\n\t\t\t\tend: \"bottom 15%\",\n\t\t\t\tduration: 0.6,\n\t\t\t\tonEnter: (batch) =>\n\t\t\t\t\tgsap.to(batch, { y: 0, autoAlpha: 1, stagger: 0.2 }),\n\t\t\t});\n\t\t}\n\n\t\tlet $media_text_blocks = gsap.utils.toArray([\".wp-block-media-text\"]);\n\n\t\tif ($media_text_blocks.length) {\n\t\t\t//\n\t\t\t// set the initial state of the elements to faded-out and nudged-down\n\t\t\tgsap.set(\".wp-block-media-text__media\", { y: 40, opacity: 0 });\n\t\t\tgsap.set(\".wp-block-media-text__content\", { x: 40, opacity: 0 });\n\n\t\t\tScrollTrigger.batch($media_text_blocks, {\n\t\t\t\tstart: \"top 85%\",\n\t\t\t\tend: \"bottom 15%\",\n\t\t\t\tonEnter: (batch) =>\n\t\t\t\t\tbatch.forEach((block, index) => {\n\t\t\t\t\t\tlet figure = block.querySelectorAll(\n\t\t\t\t\t\t\t\".wp-block-media-text__media\"\n\t\t\t\t\t\t);\n\t\t\t\t\t\tlet content = block.querySelectorAll(\n\t\t\t\t\t\t\t\".wp-block-media-text__content\"\n\t\t\t\t\t\t);\n\t\t\t\t\t\t//\n\t\t\t\t\t\tgsap.to(figure, {\n\t\t\t\t\t\t\tduration: 1.3,\n\t\t\t\t\t\t\topacity: 1,\n\t\t\t\t\t\t\ty: 0,\n\t\t\t\t\t\t\tdelay: 0.3,\n\t\t\t\t\t\t});\n\t\t\t\t\t\tgsap.to(content, { duration: 1.3, opacity: 1, x: 0 });\n\t\t\t\t\t}),\n\t\t\t});\n\t\t}\n\t});\n})(window.jQuery, window, document);\n","(function ($, window, document) {\n\t/**\n\t * ... code out here will run immediately on load\n\t */\n\tconst debounce = function (func, delay) {\n\t\tlet timer;\n\t\treturn function () {\n\t\t\t//anonymous function\n\t\t\tconst context = this;\n\t\t\tconst args = arguments;\n\t\t\tclearTimeout(timer);\n\t\t\ttimer = setTimeout(() => {\n\t\t\t\tfunc.apply(context, args);\n\t\t\t}, delay);\n\t\t};\n\t};\n\tconst throttle = (func, limit) => {\n\t\tlet inThrottle;\n\t\treturn function () {\n\t\t\tconst args = arguments;\n\t\t\tconst context = this;\n\t\t\tif (!inThrottle) {\n\t\t\t\tfunc.apply(context, args);\n\t\t\t\tinThrottle = true;\n\t\t\t\tsetTimeout(() => (inThrottle = false), limit);\n\t\t\t}\n\t\t};\n\t};\n\t/**\n\t *\n\t * ... code in here will run after jQuery says document is ready\n\t */\n\t$(function () {\n\t\tlet Custom_GS = {\n\t\t\t_init: function (is_reinit = undefined) {\n\t\t\t\tlet sliders = document.querySelectorAll(\n\t\t\t\t\t\".wp-block-eedee-block-gutenslider.patterns--sliders--red-buttons\"\n\t\t\t\t);\n\t\t\t\tif (!sliders.length) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tsliders.forEach((elem, index) => {\n\t\t\t\t\tlet instance = $(elem)[0].gutenslider.swiperInstance;\n\t\t\t\t\t// ? disable touchmove\n\t\t\t\t\tinstance.allowTouchMove = false;\n\t\t\t\t\t// ? add the dots\n\t\t\t\t\tlet $bullets = instance.pagination.$el[0];\n\t\t\t\t\t$(instance.pagination.bullets).each(function (i, el) {\n\t\t\t\t\t\tel.innerHTML = i + 1;\n\t\t\t\t\t});\n\t\t\t\t\tinstance.on(\"destroy\", function () {\n\t\t\t\t\t\t// ? re-init this whole function to re-normalize after a breakpoint or another reason this was destroyed\n\t\t\t\t\t\t// ? the timeout is kinda hacky... but idk how else to fix this right now\n\t\t\t\t\t\twindow.setTimeout(function () {\n\t\t\t\t\t\t\tCustom_GS._init((is_reinit = true));\n\t\t\t\t\t\t}, 16);\n\t\t\t\t\t});\n\t\t\t\t});\n\t\t\t\treturn;\n\t\t\t},\n\t\t};\n\t\tCustom_GS._init();\n\t});\n})(window.jQuery, window, document);\n","(function ($, window, document) {\n\t/**\n\t * ... code out here will run immediately on load\n\t */\n\tconst debounce = function (func, delay) {\n\t\tlet timer;\n\t\treturn function () {\n\t\t\t//anonymous function\n\t\t\tconst context = this;\n\t\t\tconst args = arguments;\n\t\t\tclearTimeout(timer);\n\t\t\ttimer = setTimeout(() => {\n\t\t\t\tfunc.apply(context, args);\n\t\t\t}, delay);\n\t\t};\n\t};\n\tconst throttle = (func, limit) => {\n\t\tlet inThrottle;\n\t\treturn function () {\n\t\t\tconst args = arguments;\n\t\t\tconst context = this;\n\t\t\tif (!inThrottle) {\n\t\t\t\tfunc.apply(context, args);\n\t\t\t\tinThrottle = true;\n\t\t\t\tsetTimeout(() => (inThrottle = false), limit);\n\t\t\t}\n\t\t};\n\t};\n\t/**\n\t *\n\t * ... code in here will run after jQuery says document is ready\n\t */\n\t$(function () {\n\t\tlet DebugPanel = document.querySelectorAll(\"#dev-debug-panel\");\n\n\t\tif (DebugPanel.length) {\n\t\t\t// do stuff now\n\t\t\tlet wi = $(window).width();\n\t\t\tlet panel = document.querySelectorAll(\"#dev-debug-panel\");\n\t\t\t//\n\t\t\t$(panel).text(\"Screen Current width: \" + wi + \"px.\");\n\n\t\t\t$(window).resize(\n\t\t\t\tdebounce(function () {\n\t\t\t\t\t//\n\t\t\t\t\tlet panel = document.querySelectorAll(\"#dev-debug-panel\");\n\t\t\t\t\tlet wi = $(window).width();\n\n\t\t\t\t\tif (wi < 600) {\n\t\t\t\t\t\t$(panel).text(\n\t\t\t\t\t\t\t'Screen width is \"Phone\". Current width: ' +\n\t\t\t\t\t\t\t\twi +\n\t\t\t\t\t\t\t\t\"px.\"\n\t\t\t\t\t\t);\n\t\t\t\t\t} else if (wi < 780) {\n\t\t\t\t\t\t$(panel).text(\n\t\t\t\t\t\t\t'Screen width is \"Small\". Current width: ' +\n\t\t\t\t\t\t\t\twi +\n\t\t\t\t\t\t\t\t\"px.\"\n\t\t\t\t\t\t);\n\t\t\t\t\t} else if (wi < 1024) {\n\t\t\t\t\t\t$(panel).text(\n\t\t\t\t\t\t\t'Screen width is \"Medium\". Current width: ' +\n\t\t\t\t\t\t\t\twi +\n\t\t\t\t\t\t\t\t\"px.\"\n\t\t\t\t\t\t);\n\t\t\t\t\t} else if (wi < 1280) {\n\t\t\t\t\t\t$(panel).text(\n\t\t\t\t\t\t\t'Screen width is \"Large\". Current width: ' +\n\t\t\t\t\t\t\t\twi +\n\t\t\t\t\t\t\t\t\"px.\"\n\t\t\t\t\t\t);\n\t\t\t\t\t} else if (wi < 1620) {\n\t\t\t\t\t\t$(panel).text(\n\t\t\t\t\t\t\t'Screen width is \"XLarge\". Current width: ' +\n\t\t\t\t\t\t\t\twi +\n\t\t\t\t\t\t\t\t\"px.\"\n\t\t\t\t\t\t);\n\t\t\t\t\t} else {\n\t\t\t\t\t\t$(panel).text(\n\t\t\t\t\t\t\t'Screen width is \"Huge\". Current width: ' +\n\t\t\t\t\t\t\t\twi +\n\t\t\t\t\t\t\t\t\"px.\"\n\t\t\t\t\t\t);\n\t\t\t\t\t}\n\t\t\t\t}, 20)\n\t\t\t);\n\t\t}\n\t});\n})(window.jQuery, window, document);\n","(function ($, window, document) {\n\t/**\n\t * ... code out here will run immediately on load\n\t */\n\tconst debounce = function (func, delay) {\n\t\tlet timer;\n\t\treturn function () {\n\t\t\t//anonymous function\n\t\t\tconst context = this;\n\t\t\tconst args = arguments;\n\t\t\tclearTimeout(timer);\n\t\t\ttimer = setTimeout(() => {\n\t\t\t\tfunc.apply(context, args);\n\t\t\t}, delay);\n\t\t};\n\t};\n\tconst throttle = (func, limit) => {\n\t\tlet inThrottle;\n\t\treturn function () {\n\t\t\tconst args = arguments;\n\t\t\tconst context = this;\n\t\t\tif (!inThrottle) {\n\t\t\t\tfunc.apply(context, args);\n\t\t\t\tinThrottle = true;\n\t\t\t\tsetTimeout(() => (inThrottle = false), limit);\n\t\t\t}\n\t\t};\n\t};\n\t/**\n\t *\n\t * ... code in here will run after jQuery says document is ready\n\t */\n\t$(function () {\n\t\tasync function copyCode(event) {\n\t\t\tlet code = event.delegateTarget.parentElement.nextElementSibling;\n\t\t\tlet text = code.innerText;\n\t\t\tawait navigator.clipboard.writeText(text);\n\t\t\talert(\"Pattern copied to clipboard, now paste it into your page!\");\n\t\t}\n\t\t$(\".wp-block-button.js__copyPattern\").on(\"click\", function (e) {\n\t\t\tif (!e.delegateTarget.parentElement.nextElementSibling) {\n\t\t\t\treturn;\n\t\t\t}\n\t\t\tcopyCode(e);\n\t\t});\n\t});\n})(window.jQuery, window, document);\n","(function ($, window, document) {\n\t/**\n\t * ... code out here will run immediately on load\n\t */\n\n\t/**\n\t *\n\t * ... code in here will run after jQuery says document is ready\n\t */\n\t$(function () {\n\t\t//\n\n\t\tconst mfp_gallery_block = $(\".wp-block-gallery.js__magnific\");\n\t\tconst mfp_image_block = $(\".wp-block-image.js__magnific\");\n\n\t\t//\n\t\t//\n\t\tmfp_image_block.magnificPopup({\n\t\t\tdelegate: \"a\",\n\t\t\ttype: \"image\",\n\t\t});\n\n\t\tmfp_gallery_block.each(function () {\n\t\t\t// the containers for all your galleries\n\t\t\t$(this).magnificPopup({\n\t\t\t\tdelegate: \"a\", // the selector for gallery item\n\t\t\t\ttype: \"image\",\n\t\t\t\tgallery: {\n\t\t\t\t\tenabled: true,\n\t\t\t\t},\n\t\t\t});\n\t\t});\n\n\t\t//\n\t});\n})(window.jQuery, window, document);\n","(function ($, window, document) {\n\t/**\n\t * ... code out here will run immediately on load\n\t */\n\n\t/**\n\t *\n\t * ... code in here will run after jQuery says document is ready\n\t */\n\t$(function () {\n\t\t//\n\n\t\t//\n\t\t//\n\t\t//\n\t\t//\n\t\t$(\"#nu__cookiewarning\").on(\n\t\t\t\"click\",\n\t\t\t\"button.cookies-accept\",\n\t\t\tfunction (e) {\n\t\t\t\tlocalStorage.setItem(\"acceptCookies\", \"true\");\n\t\t\t\t$(\"#nu__cookiewarning\").remove();\n\t\t\t}\n\t\t);\n\n\t\t//\n\t\t//\n\t\t//\n\t\t//\n\t\t$(\"#nu__cookiewarning\").on(\"click\", \"span.closeicon\", function (e) {\n\t\t\t$(\"#nu__cookiewarning\").remove();\n\t\t});\n\n\t\t//\n\t\t//\n\t\t//\n\t\tif (localStorage.getItem(\"acceptCookies\") !== \"true\") {\n\t\t\t$(\"#nu__cookiewarning\").show().css(\"display\", \"flex\");\n\t\t} else {\n\t\t\t$(\"#nu__cookiewarning\").remove();\n\t\t}\n\n\t\t//\n\t});\n})(window.jQuery, window, document);\n","import \"../../vendor/js/waapi-animate-details\";\nimport \"./scrolltrigger\";\nimport \"./blocks/gutenslider\";\nimport \"./misc/dev-panel\";\nimport \"./misc/copy-pattern-demo\";\nimport \"./misc/magnific-init\";\nimport \"./misc/nu-cookies\";\n(function ($, window, document) {\n\t/**\n\t * ... code out here will run immediately on load\n\t */\n\tconst debounce = function (func, delay) {\n\t\tlet timer;\n\t\treturn function () {\n\t\t\t//anonymous function\n\t\t\tconst context = this;\n\t\t\tconst args = arguments;\n\t\t\tclearTimeout(timer);\n\t\t\ttimer = setTimeout(() => {\n\t\t\t\tfunc.apply(context, args);\n\t\t\t}, delay);\n\t\t};\n\t};\n\tconst throttle = (func, limit) => {\n\t\tlet inThrottle;\n\t\treturn function () {\n\t\t\tconst args = arguments;\n\t\t\tconst context = this;\n\t\t\tif (!inThrottle) {\n\t\t\t\tfunc.apply(context, args);\n\t\t\t\tinThrottle = true;\n\t\t\t\tsetTimeout(() => (inThrottle = false), limit);\n\t\t\t}\n\t\t};\n\t};\n\n\t/**\n\t *\n\t * ... code in here will run after jQuery says document is ready\n\t */\n\t$(function () {\n\t\tif ($(\".jump-nav a\").length) {\n\t\t\t$(\".jump-nav a\").click(function () {\n\t\t\t\t$(\".jump-nav a.active\").removeClass(\"active\");\n\t\t\t\t$(this).addClass(\"active\");\n\t\t\t});\n\t\t}\n\n\t\tlet root = document.documentElement;\n\t\tlet $headerHeight = $(\"header.header\").outerHeight() + \"px\";\n\t\troot.style.setProperty(\"--nu--mainel--offset\", $headerHeight);\n\t\troot.style.setProperty(\n\t\t\t\"--nu--full--screen--height\",\n\t\t\t\"calc(100vh - \" + $headerHeight + \")\"\n\t\t);\n\n\t\twindow.addEventListener(\n\t\t\t\"resize\",\n\t\t\tdebounce(function () {\n\t\t\t\tlet root = document.documentElement;\n\t\t\t\tlet $headerHeight = $(\"header.header\").outerHeight() + \"px\";\n\t\t\t\troot.style.setProperty(\"--nu--mainel--offset\", $headerHeight);\n\t\t\t\troot.style.setProperty(\n\t\t\t\t\t\"--nu--full--screen--height\",\n\t\t\t\t\t\"calc(100vh - \" + $headerHeight + \")\"\n\t\t\t\t);\n\t\t\t}, 20),\n\t\t\tfalse\n\t\t);\n\n\t\t//\n\t\tvar lastScrollTop = 0;\n\t\twindow.addEventListener(\n\t\t\t\"scroll\",\n\t\t\tthrottle(function () {\n\t\t\t\tvar st =\n\t\t\t\t\twindow.pageYOffset || document.documentElement.scrollTop;\n\t\t\t\tlet $offset_minimalView = $(\"header.header\").outerHeight();\n\t\t\t\tif (st > lastScrollTop) {\n\t\t\t\t\tif (window.pageYOffset > $offset_minimalView) {\n\t\t\t\t\t\t$(\"body\").addClass(\"is-using-minimal-header-view\");\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tif (window.pageYOffset < $offset_minimalView) {\n\t\t\t\t\t\t$(\"body\").removeClass(\"is-using-minimal-header-view\");\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tlastScrollTop = st <= 0 ? 0 : st; // For Mobile or negative scrolling\n\t\t\t}, 10),\n\t\t\tfalse\n\t\t);\n\t});\n})(window.jQuery, window, document);\n"],"mappings":"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"}