@mirweb/mir-web-components 0.17.104 → 0.17.106

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.
package/README.md CHANGED
@@ -15,6 +15,26 @@ npm install
15
15
 
16
16
  ```
17
17
 
18
+ ## How to add a new component
19
+
20
+ Create a new folder and file under /components
21
+
22
+ Import the component in App.vue ex:
23
+
24
+ ```bash
25
+ import frontpageHero from "@/components/blocks/frontpage-hero/frontpage-hero.vue";
26
+ ```
27
+
28
+ Import the global styles in App.vue
29
+
30
+ ```bash
31
+ @import "@/assets/main.scss";
32
+ ```
33
+
34
+ When the component is done, remember to export it under both index.ts and main.ts under /components
35
+
36
+ And please clean up the App.vue in the commit
37
+
18
38
  ## Development Server
19
39
 
20
40
  Start the development server
@@ -0,0 +1,5 @@
1
+ export * from "/home/runner/work/componentlibrary/componentlibrary/src/components/blocks/frontpage-hero/frontpage-hero.vue?vue&type=script&setup=true&lang.ts";
2
+ import "/home/runner/work/componentlibrary/componentlibrary/src/components/blocks/frontpage-hero/frontpage-hero.vue?vue&type=style&index=0&scoped=6dcefaba&lang.scss";
3
+ declare const _default: any;
4
+ export default _default;
5
+ //# sourceMappingURL=frontpage-hero.vue.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"frontpage-hero.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/blocks/frontpage-hero/frontpage-hero.vue"],"names":[],"mappings":"AACA,cAAc,gJAAgJ,CAAC;AAC/J,OAAO,8JAA8J,CAAC;;AAEtK,wBAA0F"}
@@ -35,6 +35,7 @@ export { default as BlockRichText } from "./blocks/rich-text/rich-text.vue";
35
35
  export { default as BlockRichTextColumns } from "./blocks/rich-text/rich-text-columns.vue";
36
36
  export { default as BlockTimeline } from "./blocks/timeline/timeline.vue";
37
37
  export { default as BlockVimeo } from "./blocks/vimeo/vimeo.vue";
38
+ export { default as BlockFrontPageHero } from "./blocks/frontpage-hero/frontpage-hero.vue";
38
39
  export { default as Organism404 } from "./organisms/404/404.vue";
39
40
  export { default as OrganismFilter } from "./organisms/filter/filter.vue";
40
41
  export { default as OrganismFooter } from "./organisms/footer/footer.vue";
@@ -37,6 +37,7 @@ import BlockTimeline from "../components/blocks/timeline/timeline.vue";
37
37
  import BlockCardDisplay from "../components/blocks/card-display/card-display.vue";
38
38
  import BlockVimeo from "../components/blocks/vimeo/vimeo.vue";
39
39
  import BlockPalletJack from "../components/blocks/pallet-jack/pallet-jack.vue";
40
+ import BlockFrontPageHero from "../components/blocks/frontpage-hero/frontpage-hero.vue";
40
41
  import Organism404 from "../components/organisms/404/404.vue";
41
42
  import OrganismFilter from "../components/organisms/filter/filter.vue";
42
43
  import OrganismFooter from "../components/organisms/footer/footer.vue";
@@ -48,4 +49,4 @@ declare const _default: {
48
49
  install: (app: App) => void;
49
50
  };
50
51
  export default _default;
51
- export { AtomButton, AtomCheckbox, AtomChip, AtomDropdown, AtomImage, AtomLabel, AtomLink, AtomRadioButton, AtomSelect, AtomSlider, AtomTextarea, AtomTextField, AtomVideo, MoleculeAddress, MoleculeBulletList, MoleculeCard, MoleculeEventCard, MoleculeModal, MoleculeTextCard, BlockFacts, BlockFeatures, BlockFormScript, BlockHeadline, BlockHero, BlockImage, BlockImageGallery, BlockLogoWall, BlockMicroStories, BlockPolicy, BlockProductHero, BlockPromo, BlockQuote, BlockRichText, BlockRichTextColumns, BlockTimeline, BlockCardDisplay, BlockVimeo, BlockPalletJack, Organism404, OrganismFilter, OrganismFooter, OrganismHeader, OrganismLanguageSwitcher, OrganismPagination, OrganismSearch, };
52
+ export { AtomButton, AtomCheckbox, AtomChip, AtomDropdown, AtomImage, AtomLabel, AtomLink, AtomRadioButton, AtomSelect, AtomSlider, AtomTextarea, AtomTextField, AtomVideo, MoleculeAddress, MoleculeBulletList, MoleculeCard, MoleculeEventCard, MoleculeModal, MoleculeTextCard, BlockFacts, BlockFeatures, BlockFormScript, BlockHeadline, BlockHero, BlockImage, BlockImageGallery, BlockLogoWall, BlockMicroStories, BlockPolicy, BlockProductHero, BlockPromo, BlockQuote, BlockRichText, BlockRichTextColumns, BlockTimeline, BlockCardDisplay, BlockVimeo, BlockPalletJack, BlockFrontPageHero, Organism404, OrganismFilter, OrganismFooter, OrganismHeader, OrganismLanguageSwitcher, OrganismPagination, OrganismSearch, };
@@ -1,6 +1,6 @@
1
1
  export * from "/home/runner/work/componentlibrary/componentlibrary/src/components/organisms/header/header.vue?vue&type=script&setup=true&lang.ts";
2
2
  import "/home/runner/work/componentlibrary/componentlibrary/src/components/organisms/header/header.vue?vue&type=style&index=0&lang.scss";
3
- import "/home/runner/work/componentlibrary/componentlibrary/src/components/organisms/header/header.vue?vue&type=style&index=1&scoped=415acd08&lang.scss";
3
+ import "/home/runner/work/componentlibrary/componentlibrary/src/components/organisms/header/header.vue?vue&type=style&index=1&scoped=d641eedd&lang.scss";
4
4
  declare const _default: any;
5
5
  export default _default;
6
6
  //# sourceMappingURL=header.vue.d.ts.map
@@ -1 +1 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue"),De=["aria-label"],Ie=e.defineComponent({__name:"button",props:{variant:{default:"primary"},ariaLabel:{default:"Button"},buttonText:{default:""}},setup(t){const o={primary:"primary",secondary:"secondary",close:"close",next:"next",previous:"previous"},r=t,a=e.computed(()=>o[r.variant]);return(l,i)=>(e.openBlock(),e.createElementBlock("button",{class:e.normalizeClass(["button","button--"+a.value]),"aria-label":l.ariaLabel},e.toDisplayString(a.value==="close"?"":l.buttonText),11,De))}}),u=(t,o)=>{const r=t.__vccOpts||t;for(const[a,l]of o)r[a]=l;return r},D=u(Ie,[["__scopeId","data-v-a3e038ec"]]),qe=t=>(e.pushScopeId("data-v-42c44141"),t=t(),e.popScopeId(),t),Le=["id","name","value","disabled","required"],Te=["for"],ze=qe(()=>e.createElementVNode("span",{class:"checkmark"},null,-1)),Ae=e.defineComponent({__name:"checkbox",props:{name:{default:"checkbox"},value:{type:[String,Number,Boolean],default:"value"},disabled:{type:Boolean,default:!1},id:{default:"checkbox"},required:{type:Boolean,default:!1}},emits:["input"],setup(t,{emit:o}){const r=o,a=l=>{const i=l.target;r("input",i.checked)};return(l,i)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["checkbox__wrapper",l.disabled?"disabled":""])},[e.createElementVNode("input",{id:l.id,type:"checkbox",name:l.name,value:l.value,disabled:l.disabled,required:l.required,class:"checkbox__checkbox",onChange:a},null,40,Le),e.createElementVNode("label",{for:l.id,class:e.normalizeClass(["checkbox__label",l.required?"required":""])},[ze,e.renderSlot(l.$slots,"default",{},void 0,!0)],10,Te)],2))}}),O=u(Ae,[["__scopeId","data-v-42c44141"]]),Pe=t=>(e.pushScopeId("data-v-08813346"),t=t(),e.popScopeId(),t),Me=["aria-label"],Fe=Pe(()=>e.createElementVNode("img",{src:"https://a.storyblok.com/f/230581/9x9/e4fb715dc9/close.svg?cv=1695125714598",alt:"close",class:"close-icon"},null,-1)),Oe=e.defineComponent({__name:"chip",props:{text:{default:""}},emits:["remove-chip"],setup(t){const o=t,r=e.computed(()=>`Chip: ${o.text}`);return(a,l)=>(e.openBlock(),e.createElementBlock("div",{class:"chip__wrapper",onClick:l[0]||(l[0]=i=>a.$emit("remove-chip"))},[e.createElementVNode("span",{class:"chip","aria-label":r.value},[e.createTextVNode(e.toDisplayString(a.text)+" ",1),Fe],8,Me)]))}}),R=u(Oe,[["__scopeId","data-v-08813346"]]),Re=["value"],He=["id"],je={class:"listbox__dropdown"},Ue=["id","aria-labelledby","aria-disabled"],Ke=["aria-labelledby","aria-activedescendant"],Ge=["aria-selected","data-value"],We=e.defineComponent({__name:"dropdown",props:{modelValue:{},label:{},options:{},name:{},placeholder:{default:"Choose a value"},showLabel:{type:Boolean,default:!1},required:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},variant:{default:"primary"}},emits:["update:modelValue"],setup(t,{emit:o}){const r={primary:"dropdown-dark-bg-primary",dark:"dropdown-dark dropdown-dark-bg-dark"},a=t,l=e.computed(()=>r[a.variant]),i=e.ref(null),s=e.ref(null),d=e.ref([]),h=e.ref(0),c=e.ref(""),f=e.ref(!0),k=e.ref(0),L=o,T=e.computed(()=>{const n=a.options.find(p=>p.value===a.modelValue);return n&&n.label}),E={beforeMount(n,p){n.clickOutsideEvent=function(_){n===_.target||n.contains(_.target)||p.value(_)},document.body.addEventListener("click",n.clickOutsideEvent)},unmounted(n){document.body.removeEventListener("click",n.clickOutsideEvent)}};function I(n){L("update:modelValue",n)}function z(n){var _;const p=n.target;p.getAttribute("role")==="option"&&(C(p),q(),(_=i.value)==null||_.focus())}function m(n){var _;const p=n.key;switch(p){case"ArrowUp":case"ArrowDown":{n.preventDefault();const v=a.options.findIndex(N=>N.value===a.modelValue);let b=v?d.value[v]:d.value[0];p==="ArrowUp"?v-1>=0&&(b=d.value[v-1]):v+1<=a.options.length&&(b=d.value[v+1]),b&&C(b);break}case"Home":case"PageUp":n.preventDefault(),Ve();break;case"End":case"PageDown":n.preventDefault(),Ne();break;case"Enter":case"Escape":n.preventDefault(),q(),(_=i.value)==null||_.focus();break;default:{const v=Ee(p);v&&C(v);break}}}function V(n){if(!a.disabled)switch(n.key){case"ArrowUp":case"ArrowDown":n.preventDefault(),F(),m(n);break}}function A(n){n&&n.removeAttribute("aria-selected")}function $(){h.value&&(clearTimeout(h.value),h.value=0),h.value=setTimeout(()=>{c.value="",h.value=0},500)}function Ee(n){let p="";(c.value===""||p!==n)&&(k.value=a.options.findIndex(v=>v.value===a.modelValue)),c.value=p===n?n:c.value+n,p=n,$();let _=M(k.value+1,a.options.length);return!_&&c.value.length===1&&(_=M(0,k.value)),k.value=(k.value+1)%a.options.length,_}function M(n,p){for(let _=n;_<p;_++)if(a.options[_].label&&a.options[_].label.toUpperCase().indexOf(c.value.toUpperCase())===0)return d.value[_];return null}function Ve(){C(d.value[0])}function C(n){var _,v;const p=n.getAttribute("data-value");if(a.modelValue){const b=a.options.findIndex(Ce=>Ce.value===a.modelValue),N=d.value[b];A(N)}if(n.setAttribute("aria-selected","true"),(_=s.value)==null||_.setAttribute("aria-activedescendant",p||""),I(p||""),s.value&&s.value.scrollHeight>s.value.clientHeight){const b=s.value.clientHeight+s.value.scrollTop,N=n.offsetTop+n.offsetHeight;N>b?s.value.scrollTop=N-((v=s.value)==null?void 0:v.clientHeight):n.offsetTop<s.value.scrollTop&&(s.value.scrollTop=n.offsetTop)}}function Ne(){var p;const n=(p=d.value)==null?void 0:p[a.options.length-1];C(n)}function q(){var n;f.value=!0,(n=i.value)==null||n.removeAttribute("aria-expanded")}function F(){var n,p;f.value=!1,(n=i.value)==null||n.setAttribute("aria-expanded","true"),(p=s.value)==null||p.focus()}function Se(){a.disabled||(f.value?F():q())}return(n,p)=>(e.openBlock(),e.createElementBlock("div",{ref:"listbox",class:"listbox__wrapper",value:n.modelValue},[e.createElementVNode("label",{id:`${n.name}-label`,class:e.normalizeClass([{"listbox__label--visually-hidden":!n.showLabel,"is-disabled":n.disabled,"is-required":n.required},"listbox__label"])},e.toDisplayString(n.label),11,He),e.withDirectives((e.openBlock(),e.createElementBlock("div",je,[e.createElementVNode("button",{id:`${n.name}-button-label`,ref_key:"listboxButton",ref:i,"aria-labelledby":`${n.name}-label ${n.name}-button-label`,type:"button","aria-haspopup":"listbox","aria-disabled":n.disabled,class:e.normalizeClass(["listbox__button",l.value]),onClick:Se,onKeydown:V},e.toDisplayString(n.modelValue?T.value:n.placeholder),43,Ue),e.withDirectives(e.createElementVNode("ul",{ref_key:"listboxNode",ref:s,"aria-labelledby":`${n.name}-label`,"aria-activedescendant":n.modelValue,tabindex:"0",role:"listbox",class:"listbox__list",onKeydown:m,onClick:z},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.options,(_,v)=>(e.openBlock(),e.createElementBlock("li",{key:`${n.name}-option-${v}`,ref_for:!0,ref_key:"listboxOptions",ref:d,"aria-selected":_.value===n.modelValue,"data-value":_.value,class:"listbox__option",role:"option"},e.toDisplayString(_.label),9,Ge))),128))],40,Ke),[[e.vShow,!f.value]])])),[[E,q]])],8,Re))}}),H=u(We,[["__scopeId","data-v-6a8da7a4"]]),Je={class:"image__wrapper"},Qe=e.defineComponent({__name:"image",props:{src:{default:void 0},srcset:{default:void 0},sizes:{default:void 0},alt:{default:void 0},width:{default:void 0},height:{default:"auto"},loading:{default:"auto"}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",Je,[e.renderSlot(o.$slots,"default",e.normalizeProps(e.guardReactiveProps(o.$attrs)))]))}}),y=u(Qe,[["__scopeId","data-v-e10217bd"]]),Ye={class:"label__wrapper"},Ze=["aria-label","label-dark"],Xe=e.defineComponent({__name:"label",props:{text:{},labelDark:{type:Boolean,default:!1}},setup(t){const o=t,r=e.computed(()=>`Label: ${o.text}`);return(a,l)=>(e.openBlock(),e.createElementBlock("div",Ye,[e.createElementVNode("span",{"aria-label":r.value,"label-dark":a.labelDark,class:e.normalizeClass(a.labelDark?"label--dark":"label--light")},e.toDisplayString(a.text),11,Ze)]))}}),w=u(Xe,[["__scopeId","data-v-7d9d3a8a"]]),xe={class:"link__wrapper"},g=e.defineComponent({__name:"link",props:{linkType:{default:"regular"},arrow:{type:Boolean,default:!1},underline:{default:"false"},disabled:{type:Boolean,default:!1}},setup(t){const o={primary:"mir-link--btn button button--primary",secondary:"mir-link--btn button button--secondary",secondary_dark:"mir-link--btn button button--secondary-dark",regular:"regular-link",regular_dark:"regular-link-dark",regular_light:"regular-link-light",regular_blue:"regular-link-blue"},r={hover:"underline-hover",true:"add-underline",false:"remove-underline"},a=t,l=e.computed(()=>o[a.linkType]),i=e.computed(()=>r[a.underline]),s=e.computed(()=>{const{...d}=e.toRefs(a);return d});return(d,h)=>(e.openBlock(),e.createElementBlock("div",xe,[e.createElementVNode("div",e.mergeProps(s.value,{class:["mir-link",[l.value,d.disabled?"disabled":"",i.value,d.arrow?"link-arrow":""]]}),[e.renderSlot(d.$slots,"default")],16)]))}}),et=t=>(e.pushScopeId("data-v-fa1bda9b"),t=t(),e.popScopeId(),t),tt=["id","name","value","checked","disabled","required"],ot=["for"],lt=et(()=>e.createElementVNode("span",{class:"radiomark"},null,-1)),at=e.defineComponent({__name:"radio-button",props:{name:{default:"radio"},value:{type:[String,Number,Boolean],default:"value"},checked:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},id:{default:"radio"},required:{type:Boolean,default:!1}},emits:["input"],setup(t,{emit:o}){const r=o,a=l=>{const i=l.target;r("input",i.checked)};return(l,i)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["radio__wrapper",l.disabled?"disabled":""])},[e.createElementVNode("input",{id:l.id,type:"radio",name:l.name,value:l.value,checked:l.checked,disabled:l.disabled,required:l.required,class:"radio__radio",onChange:a},null,40,tt),e.createElementVNode("label",{for:l.id,class:e.normalizeClass(["radio__label",l.required?"required":""])},[lt,e.renderSlot(l.$slots,"default",{},void 0,!0)],10,ot)],2))}}),j=u(at,[["__scopeId","data-v-fa1bda9b"]]),rt={class:"select__wrapper"},nt=["for"],st=["id","disabled","name","value"],it=["value"],dt=e.defineComponent({__name:"select",props:{id:{},name:{},options:{},modelValue:{},label:{},required:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},emits:["update:modelValue"],setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",rt,[e.createElementVNode("label",{for:o.id,class:e.normalizeClass([o.required?"required":"",o.disabled?"disabled":""])},e.toDisplayString(o.label),11,nt),e.createElementVNode("select",{id:o.id,class:e.normalizeClass(o.disabled?"disabled":""),disabled:o.disabled,name:o.name,value:o.modelValue,onChange:r[0]||(r[0]=a=>{o.$emit("update:modelValue",a.target.value),a.target.blur()})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.options,a=>(e.openBlock(),e.createElementBlock("option",{key:a.value,value:a.value},e.toDisplayString(a.text),9,it))),128))],42,st)]))}}),U=u(dt,[["__scopeId","data-v-d5c46463"]]),ct={class:"modal__wrapper"},ut=e.defineComponent({__name:"modal",props:{show:{type:Boolean,default:!1},searchBar:{type:Boolean,default:!1}},emits:["update:show"],setup(t,{emit:o}){const r=t,a=o,l=()=>{a("update:show",!r.show)};return(i,s)=>(e.openBlock(),e.createElementBlock("div",ct,[e.createVNode(e.Transition,{duration:300,name:"nested"},{default:e.withCtx(()=>[e.withDirectives(e.createElementVNode("div",{class:e.normalizeClass(["overlay",i.searchBar?"overlay-search":"overlay-default"]),ariaLabel:"modal",role:"dialog",onClick:l},[e.createElementVNode("div",{id:"modal",class:e.normalizeClass([i.searchBar?"search":""]),onClick:s[0]||(s[0]=e.withModifiers(()=>{},["stop"]))},[e.createElementVNode("div",null,[i.searchBar?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(D,{key:0,"aria-label":"close",variant:"close",onClick:l}))]),e.renderSlot(i.$slots,"default",{},void 0,!0)],2)],2),[[e.vShow,i.show]])]),_:3})]))}}),P=u(ut,[["__scopeId","data-v-80f0fb08"]]),mt={class:"slider__wrapper"},pt={class:"slider__label"},_t=["for"],ht=["aria-label"],ft={class:"slider__content"},vt=["id","name","value","min","step","max"],kt={class:"modal-information"},gt=e.defineComponent({__name:"slider",props:{label:{},id:{},name:{},modelValue:{},min:{},max:{},step:{default:"1"},variant:{default:"light"},information:{default:""},informationLabel:{default:"Additional information"}},emits:["update:modelValue"],setup(t,{emit:o}){const r=t,a=o,l=e.ref(r.modelValue),i=e.ref(),s=e.ref(!1),d=(c,f,k)=>(c-f)/(k-f)*100,h=c=>{var f;(f=i.value)==null||f.style.setProperty("--ProgressPercent",`${c}%`)};return e.watchEffect(()=>{if(i.value){a("update:modelValue",l.value);const c=d(l.value,r.min,r.max);let f=(50-c)/100;h(c+f)}}),(c,f)=>(e.openBlock(),e.createElementBlock("div",null,[e.createElementVNode("div",mt,[e.createElementVNode("div",pt,[e.createElementVNode("label",{for:c.id,class:e.normalizeClass([c.variant,""])},e.toDisplayString(c.label),11,_t),c.information?(e.openBlock(),e.createElementBlock("i",{key:0,role:"button",class:e.normalizeClass([c.variant,"slider__information"]),"aria-label":c.informationLabel,tabindex:"0","aria-haspopup":"dialog",onClick:f[0]||(f[0]=k=>s.value=!s.value),onKeyup:f[1]||(f[1]=e.withKeys(k=>s.value=!s.value,["enter"]))},null,42,ht)):e.createCommentVNode("",!0)]),e.createElementVNode("div",ft,[e.createElementVNode("span",{class:e.normalizeClass([c.variant,"slider__minmax"])},e.toDisplayString(c.min),3),e.createElementVNode("input",{id:c.id,ref_key:"slider",ref:i,type:"range",name:c.name,value:c.modelValue,min:c.min,step:c.step,max:c.max,class:e.normalizeClass(c.variant),onInput:f[2]||(f[2]=({target:k})=>l.value=parseFloat(k.value))},null,42,vt),e.createElementVNode("span",{class:e.normalizeClass([c.variant,"slider__minmax"])},e.toDisplayString(c.max),3)]),e.createElementVNode("span",{class:e.normalizeClass([c.variant,"slider__value"])},e.toDisplayString(c.modelValue),3)]),c.information?(e.openBlock(),e.createBlock(P,{key:0,show:s.value,"onUpdate:show":f[3]||(f[3]=k=>s.value=k)},{default:e.withCtx(()=>[e.createElementVNode("p",kt,e.toDisplayString(c.information),1)]),_:1},8,["show"])):e.createCommentVNode("",!0)]))}}),K=u(gt,[["__scopeId","data-v-24a83011"]]),yt={id:"textarea-wrapper"},bt=["for"],Bt=["id"],$t=["id","name","placeholder","required","disabled","maxlength","value"],wt={class:"textarea-info"},Et={key:0},Vt=e.defineComponent({__name:"textarea",props:{id:{default:""},name:{default:""},placeholder:{default:""},required:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},labelText:{default:""},maxLength:{default:void 0},modelValue:{default:void 0}},emits:["update:modelValue"],setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",yt,[e.createElementVNode("label",{for:o.id,class:e.normalizeClass({required:o.required})},e.toDisplayString(o.labelText)+e.toDisplayString(o.required?" *":""),11,bt),e.createElementVNode("div",{id:o.modelValue!==void 0&&o.modelValue.length===o.maxLength?"textarea-wrapper__inner":""},[e.createElementVNode("textarea",{id:o.id,rows:"10",cols:"50",name:o.name,placeholder:o.placeholder,required:o.required,disabled:o.disabled,maxlength:o.maxLength,value:o.modelValue,class:e.normalizeClass(o.modelValue!==void 0&&o.modelValue.length===o.maxLength?"reached-meter-limit":"border"),onInput:r[0]||(r[0]=a=>o.$emit("update:modelValue",a.target.value))},null,42,$t)],8,Bt),e.createElementVNode("div",wt,[e.createElementVNode("div",null,[o.modelValue!==void 0&&o.modelValue.length===o.maxLength?(e.openBlock(),e.createElementBlock("p",Et," Too many characters. Please make it shorter ")):e.createCommentVNode("",!0)]),e.createElementVNode("p",{class:e.normalizeClass(o.modelValue!==void 0&&o.modelValue.length===o.maxLength?"reached-meter-limit-meter":"")},e.toDisplayString(o.maxLength!==void 0&&o.modelValue!==void 0&&o.maxLength-o.modelValue.length>=0?o.modelValue.length:0)+" / "+e.toDisplayString(o.maxLength),3)])]))}}),G=u(Vt,[["__scopeId","data-v-220a973c"]]),Nt={class:"text-field__wrapper"},St=["for"],Ct={key:0},Dt=["id","type","value","placeholder","required","disabled","name"],It=["aria-expanded"],qt=["id","type","value","placeholder","required","disabled","name"],Lt={key:2,class:"search"},Tt={key:3,class:"errorMessage"},zt={key:4,class:"helperText"},At=e.defineComponent({__name:"text-field",props:{type:{default:"text"},fieldName:{default:""},modelValue:{},placeholder:{default:""},label:{default:""},id:{},disabled:{type:Boolean,default:!1},required:{type:Boolean,default:!1},invalid:{type:Boolean,default:!1},errorMessage:{default:""},helperText:{default:""},search:{type:Boolean,default:!1},valid:{type:Boolean,default:!1}},emits:["update:modelValue"],setup(t){const o={text:"text",email:"email",password:"password",number:"number",tel:"tel",url:"url",search:"search"},r=t,a=e.computed(()=>o[r.type]),l=e.ref(!0),i=e.computed(()=>l.value?"showPassword":"hidePassword"),s=e.computed(()=>l.value?"password":"text");return(d,h)=>(e.openBlock(),e.createElementBlock("div",Nt,[e.createElementVNode("label",{for:d.id,class:e.normalizeClass([d.required?"required":"",d.disabled?"disabled":"",d.search?"search":""])},e.toDisplayString(d.label),11,St),a.value==="password"?(e.openBlock(),e.createElementBlock("div",Ct,[e.createElementVNode("input",{id:d.id,ref:"passwordField",type:s.value,value:d.modelValue,placeholder:d.placeholder,required:d.required,disabled:d.disabled,name:d.fieldName,onInput:h[0]||(h[0]=c=>d.$emit("update:modelValue",c.target.value))},null,40,Dt),e.createElementVNode("i",{role:"button",class:e.normalizeClass([i.value]),"aria-controls":"password","aria-expanded":!l.value,onClick:h[1]||(h[1]=c=>l.value=!l.value)},null,10,It)])):(e.openBlock(),e.createElementBlock("input",{key:1,id:d.id,ref:"textField",type:a.value,value:d.modelValue,placeholder:d.placeholder,required:d.required,class:e.normalizeClass([d.invalid?"invalid":"",d.valid?"valid":"",d.search?"search":""]),disabled:d.disabled,name:d.fieldName,onInput:h[2]||(h[2]=c=>d.$emit("update:modelValue",c.target.value))},null,42,qt)),d.search?(e.openBlock(),e.createElementBlock("i",Lt)):e.createCommentVNode("",!0),d.errorMessage?(e.openBlock(),e.createElementBlock("strong",Tt,e.toDisplayString(d.errorMessage),1)):e.createCommentVNode("",!0),d.helperText?(e.openBlock(),e.createElementBlock("span",zt,e.toDisplayString(d.helperText),1)):e.createCommentVNode("",!0)]))}}),W=u(At,[["__scopeId","data-v-414b9435"]]),Pt={class:"video__wrapper"},Mt=["aria-label","controls","poster","width","height","autoplay","loop","muted","src"],Ft=["src","aria-label","title","width","height"],Ot=e.defineComponent({__name:"video",props:{play:{type:Boolean,default:!1},src:{},localVideo:{type:Boolean,default:!1},ariaLabel:{default:""},title:{default:""},controls:{type:Boolean,default:!0},poster:{default:""},width:{default:"100%"},height:{default:"auto"},autoplay:{type:Boolean,default:!1},loop:{type:Boolean,default:!1},muted:{type:Boolean,default:!1}},setup(t,{expose:o}){const r=t;let a=e.ref(null);return e.watchEffect(()=>{a.value&&(r.play?a.value.play():r.play||a.value.pause())}),o({resetVideo:()=>{a.value&&(a.value.currentTime=0,a.value.play())}}),(i,s)=>(e.openBlock(),e.createElementBlock("div",Pt,[i.localVideo?(e.openBlock(),e.createElementBlock("video",{key:0,ref_key:"videoRef",ref:a,"aria-label":i.ariaLabel,controls:i.controls,poster:i.poster,width:i.width,height:i.height,autoplay:i.autoplay,loop:i.loop,muted:i.muted,type:"video/mp4",playsinline:"",src:i.src},null,8,Mt)):(e.openBlock(),e.createElementBlock("iframe",{key:1,src:i.src,"aria-label":i.ariaLabel,title:i.title,width:i.width,height:i.height,frameborder:"0",allow:"autoplay; fullscreen",allowfullscreen:""},null,8,Ft))]))}}),S=u(Ot,[["__scopeId","data-v-c6a0feb6"]]),Rt={class:"address__wrapper"},Ht={class:"address__content"},jt={class:"address__flag"},Ut={class:"address__address"},Kt={class:"address__name"},Gt={key:0},Wt={class:"address__contact"},Jt=["href"],Qt=["href"],Yt=["href"],Zt=e.defineComponent({__name:"address",props:{name:{},company:{},addressLine1:{},addressLine2:{},addressLine3:{default:void 0},website:{default:void 0},phoneNumbers:{},email:{}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",Rt,[e.createElementVNode("div",Ht,[e.createElementVNode("div",jt,[e.renderSlot(o.$slots,"address-flag",{},void 0,!0)]),e.createElementVNode("div",Ut,[e.createElementVNode("p",Kt,e.toDisplayString(o.name),1),e.createElementVNode("p",null,e.toDisplayString(o.company),1),e.createElementVNode("p",null,e.toDisplayString(o.addressLine1),1),e.createElementVNode("p",null,e.toDisplayString(o.addressLine2),1),o.addressLine3?(e.openBlock(),e.createElementBlock("p",Gt,e.toDisplayString(o.addressLine3),1)):e.createCommentVNode("",!0)]),e.createElementVNode("div",Wt,[o.website?(e.openBlock(),e.createBlock(g,{key:0,underline:"false","link-type":"regular"},{default:e.withCtx(()=>[e.createElementVNode("a",{href:"https://"+o.website,class:"address__website"},e.toDisplayString(o.website),9,Jt)]),_:1})):e.createCommentVNode("",!0),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.phoneNumbers,a=>(e.openBlock(),e.createBlock(g,{key:a,underline:"false","link-type":"regular"},{default:e.withCtx(()=>[e.createElementVNode("a",{href:"tel:"+a,class:"address__phone"},e.toDisplayString(a),9,Qt)]),_:2},1024))),128)),e.createElementVNode("a",{href:"mailto:"+o.email,class:"address__email"},e.toDisplayString(o.email),9,Yt)])])]))}}),J=u(Zt,[["__scopeId","data-v-e1c72a18"]]),Xt=t=>(e.pushScopeId("data-v-a44fd57d"),t=t(),e.popScopeId(),t),xt={class:"bullet-list__wrapper"},eo=Xt(()=>e.createElementVNode("i",{class:"checkmark"},null,-1)),to=e.defineComponent({__name:"bullet-list",props:{list:{type:Array,required:!0,validator(t){return t.length<=5}},variant:{type:String,required:!1,default:"light",validator(t){return["light"].includes(t)}}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",xt,[e.createElementVNode("div",{class:e.normalizeClass(["bullet-list",t.variant])},[e.createElementVNode("ul",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.list,a=>(e.openBlock(),e.createElementBlock("li",{key:a},[eo,e.createTextVNode(" "+e.toDisplayString(a),1)]))),128))])],2)]))}}),Q=u(to,[["__scopeId","data-v-a44fd57d"]]),oo={class:"card__wrapper"},lo={key:2},ao={key:5},ro=e.defineComponent({__name:"card",props:{variant:{default:"product"},theme:{default:"light"},linkType:{default:"link"},headline:{default:""},paragraph:{default:""},size:{default:"small"},mediaType:{default:"image"},orientation:{default:"horizontal"},srcSet:{default:""},url:{default:""},imgSrc:{default:""},videoSrc:{default:""},arialabel:{default:""},poster:{default:""},labelText:{default:""},alt:{default:""}},emits:["clicked"],setup(t){const o=e.useSlots();let r=e.ref(!1);const a={small:{class:"card--small",width:"298",height:"186"},medium:{class:"card--medium",width:"432",height:"243"},large:{class:"card--large",width:"596",height:"335"}},l=t,i=e.computed(()=>a[l.size]);return(s,d)=>(e.openBlock(),e.createElementBlock("div",oo,[e.createElementVNode("div",{class:e.normalizeClass(["card",[s.theme==="dark"?"card--dark":"card--light",s.orientation==="vertical"?"vertical":"horizontal",i.value.class,s.size==="large"&&s.variant==="article"?"card--large-article":"",s.variant==="product"?"card--product":"card--article"]]),style:e.normalizeStyle([s.variant==="product"?"font-weight: 700":"font-weight: 300"]),onMouseover:d[0]||(d[0]=h=>e.isRef(r)?r.value=!0:r=!0),onMouseout:d[1]||(d[1]=h=>e.isRef(r)?r.value=!1:r=!1)},[s.mediaType==="image"?(e.openBlock(),e.createBlock(y,{key:0},{default:e.withCtx(()=>[e.renderSlot(s.$slots,"card-image",e.mergeProps({src:s.imgSrc,width:"596",height:"335",alt:s.alt,loading:"auto",sizes:"(min-width: 581px) 582px, 100vw"},{srcset:s.srcSet}))]),_:3})):(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(["video-card__wrapper",e.unref(r)===!0?"vimeoPlaying":""])},[e.createVNode(S,{play:e.unref(r),"local-video":!0,src:s.videoSrc,"aria-label":s.arialabel,controls:!1,poster:s.imgSrc,width:i.value.width,height:i.value.height,autoplay:!0,loop:!0,muted:!0},null,8,["play","src","aria-label","poster","width","height"])],2)),e.unref(o)["card-label"]?(e.openBlock(),e.createElementBlock("div",lo,[e.renderSlot(s.$slots,"card-label")])):e.createCommentVNode("",!0),s.variant==="product"?(e.openBlock(),e.createElementBlock("div",{key:3,class:e.normalizeClass(["card__headline",s.theme==="dark"?"regular-dark":"regular-blue"]),style:{"font-weight":"700"}},e.toDisplayString(s.headline),3)):(e.openBlock(),e.createElementBlock("div",{key:4,class:e.normalizeClass(["card__headline",s.theme==="dark"?"regular-dark":"regular-dark-blue"])},e.toDisplayString(s.headline),3)),s.variant==="product"?(e.openBlock(),e.createElementBlock("p",ao,e.toDisplayString(s.paragraph),1)):e.createCommentVNode("",!0)],38)]))}}),Y=u(ro,[["__scopeId","data-v-351c5fbb"]]),no=t=>(e.pushScopeId("data-v-2c394add"),t=t(),e.popScopeId(),t),so={class:"event__wrapper"},io={class:"event__headline"},co={class:"event__date-location"},uo=no(()=>e.createElementVNode("br",null,null,-1)),mo={class:"event__exhibitor"},po=e.defineComponent({__name:"event-card",props:{eventType:{type:String,required:!0},headline:{type:String,required:!0},dateTime:{type:String,required:!0},location:{type:String,required:!0},exhibitor:{type:String,required:!0}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",so,[e.createVNode(w,{"label-dark":!1,text:t.eventType?t.eventType:""},null,8,["text"]),e.createElementVNode("div",io,e.toDisplayString(t.headline),1),e.createElementVNode("div",co,[e.createTextVNode(e.toDisplayString(t.dateTime),1),uo,e.createTextVNode(e.toDisplayString(t.location),1)]),e.createElementVNode("div",mo,e.toDisplayString(t.exhibitor),1)]))}}),Z=u(po,[["__scopeId","data-v-2c394add"]]),_o={class:"text__wrapper"},ho={class:"text__headline"},fo={class:"text__paragraph"},vo=e.defineComponent({__name:"text-card",props:{label:{type:String,required:!0},headline:{type:String,required:!0},paragraph:{type:String,required:!0}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",_o,[e.createVNode(w,{"label-dark":!1,text:t.label?t.label:""},null,8,["text"]),e.createElementVNode("div",ho,e.toDisplayString(t.headline),1),e.createElementVNode("div",fo,[e.createElementVNode("p",null,e.toDisplayString(t.paragraph),1)])]))}}),X=u(vo,[["__scopeId","data-v-ebdea819"]]),ko={class:"facts__wrapper"},go={class:"facts__content"},yo={class:"facts__headline"},bo={class:"facts"},Bo={class:"fact__value"},$o={class:"fact__metric"},wo={key:0,class:"facts__link"},Eo=e.defineComponent({__name:"facts",props:{headline:{default:""},facts:{default:()=>[{value:"",metric:""},{value:"",metric:""},{value:"",metric:""}]},link:{default:()=>({title:"",url:""})}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",ko,[e.createElementVNode("div",go,[e.createElementVNode("h2",yo,e.toDisplayString(o.headline),1),e.createElementVNode("div",bo,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.facts,a=>(e.openBlock(),e.createElementBlock("div",{key:a.value+a.metric,class:"fact"},[e.createElementVNode("div",Bo,[e.createElementVNode("span",null,e.toDisplayString(a.value),1)]),e.createElementVNode("div",$o,[e.createElementVNode("span",null,e.toDisplayString(a.metric),1)])]))),128))]),o.link?(e.openBlock(),e.createElementBlock("div",wo,[e.createVNode(g,{"link-type":"regular_light",arrow:""},{default:e.withCtx(()=>[e.renderSlot(o.$slots,"facts-link",{},void 0,!0)]),_:3})])):e.createCommentVNode("",!0)])]))}}),x=u(Eo,[["__scopeId","data-v-d2b231d4"]]),Vo={class:"features__wrapper"},No={class:"features__content"},So={key:0,class:"features__headline"},Co={key:1,class:"features__body"},Do={class:"element__headline"},Io={class:"element__body"},qo=e.defineComponent({__name:"features",props:{headline:{default:""},body:{default:""},elements:{default:()=>[]}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",Vo,[e.createElementVNode("div",No,[o.headline?(e.openBlock(),e.createElementBlock("div",So,[e.createElementVNode("h2",null,e.toDisplayString(o.headline),1)])):e.createCommentVNode("",!0),o.body?(e.openBlock(),e.createElementBlock("div",Co,[e.renderSlot(o.$slots,"features-body",{},void 0,!0)])):e.createCommentVNode("",!0),e.createElementVNode("div",{class:e.normalizeClass(["features__elements",[o.elements.length===6?"features__elements--grid-6":""]])},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.elements,a=>(e.openBlock(),e.createElementBlock("div",{key:a.headline,class:"features__element"},[e.createVNode(y,{class:"element__icon"},{default:e.withCtx(()=>[e.renderSlot(o.$slots,"features-icon",e.normalizeProps(e.guardReactiveProps({src:a.icon.src,height:30,width:30,alt:a.icon.alt})),void 0,!0)]),_:2},1024),e.createElementVNode("p",Do,e.toDisplayString(a.headline),1),e.createElementVNode("p",Io,e.toDisplayString(a.body),1)]))),128))],2)])]))}}),ee=u(qo,[["__scopeId","data-v-57a22df7"]]),Lo={class:"form__wrapper"},To={class:"form__content"},zo={class:"form__information"},Ao={class:"form__headline"},Po={class:"form__body"},Mo={class:"form__script"},Fo=e.defineComponent({__name:"form-script",props:{headline:{type:String,default:""}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",Lo,[e.createElementVNode("div",To,[e.createElementVNode("div",zo,[e.createElementVNode("h2",Ao,e.toDisplayString(t.headline),1),e.createElementVNode("div",Po,[e.renderSlot(o.$slots,"form-body",{},void 0,!0)])]),e.createElementVNode("div",Mo,[e.renderSlot(o.$slots,"form-script",{},void 0,!0)])])]))}}),te=u(Fo,[["__scopeId","data-v-87a67c13"]]),Oo={class:"image__wrapper"},Ro={class:"image__content"},Ho={class:"image__image"},jo={class:"image__caption"},Uo=e.defineComponent({inheritAttrs:!1,__name:"image",props:{caption:{type:String,required:!1,default:""},src:{type:String,required:!0},alt:{type:String,required:!0}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",Oo,[e.createElementVNode("div",Ro,[e.createElementVNode("div",Ho,[e.createVNode(y,null,{default:e.withCtx(()=>[e.renderSlot(o.$slots,"image",e.normalizeProps(e.guardReactiveProps({width:984,height:554,src:t.src,alt:t.alt})))]),_:3})]),e.createElementVNode("p",jo,e.toDisplayString(t.caption),1)])]))}}),oe=u(Uo,[["__scopeId","data-v-79ce0bb6"]]),Ko={class:"gallery__large"},Go={key:0,class:"image image--large"},Wo={key:1,class:"video"},Jo={key:0,class:"body"},Qo=e.defineComponent({__name:"image-gallery",props:{mediaLarge:{},mediaType:{default:"image"},mediaSmall:{},body:{default:""},flipHorizontal:{type:Boolean,default:!1},flipVertical:{type:Boolean,default:!1},bgColor:{default:"white"}},setup(t){const o={white:"",light:"gallery__wrapper--light",dark:"gallery__wrapper--dark mirsaic--dark"},r=t,a=e.computed(()=>o[r.bgColor]);return(l,i)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["gallery__wrapper",a.value])},[e.createElementVNode("div",{class:e.normalizeClass(["gallery__content",l.flipHorizontal?"gallery__content--reverse":"gallery__content--default"])},[e.createElementVNode("div",Ko,[l.mediaLarge&&l.mediaType==="image"?(e.openBlock(),e.createElementBlock("div",Go,[e.createVNode(y,null,{default:e.withCtx(()=>[e.renderSlot(l.$slots,"image-large",e.normalizeProps(e.guardReactiveProps({width:617,height:530,src:l.mediaLarge.src,alt:l.mediaLarge.alt})))]),_:3})])):e.createCommentVNode("",!0),l.mediaLarge&&l.mediaType==="video"?(e.openBlock(),e.createElementBlock("div",Wo,[e.createVNode(S,{src:l.mediaLarge.src,"local-video":"","aria-label":l.mediaLarge.alt,controls:!1,height:"530",width:"617",autoplay:"",loop:"",muted:"",play:""},null,8,["src","aria-label"])])):e.createCommentVNode("",!0)]),e.createElementVNode("div",{style:e.normalizeStyle([l.mediaSmall.length===2?"grid-gap: 38px;":""]),class:e.normalizeClass(["gallery__small",l.flipVertical?"gallery__small--reverse":"gallery__small--default"])},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.mediaSmall,s=>(e.openBlock(),e.createElementBlock("div",{key:s.src+s.alt,class:"image image--small"},[e.createVNode(y,null,{default:e.withCtx(()=>[e.renderSlot(l.$slots,"image-small",e.normalizeProps(e.guardReactiveProps({width:328,height:246,src:s.src,alt:s.alt})))]),_:2},1024)]))),128)),l.mediaSmall.length<2?(e.openBlock(),e.createElementBlock("div",Jo,[e.createElementVNode("p",null,e.toDisplayString(l.body),1)])):e.createCommentVNode("",!0)],6)],2)],2))}}),le=u(Qo,[["__scopeId","data-v-0d271138"]]),Yo={class:"headline__wrapper"},Zo={class:"headline__h1"},Xo=e.defineComponent({__name:"headline",props:{headline:{type:String,required:!0},article:{type:Boolean,required:!1},subMenu:{type:Boolean,required:!1}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",Yo,[e.createElementVNode("div",{class:e.normalizeClass({"headline__content--article-and-submenu":t.article&&t.subMenu,"headline__content--article":t.article&&!t.subMenu,"headline__content--default headline__content--submenu":!t.article&&t.subMenu,"headline__content--default":!t.article&&!t.subMenu})},[e.createElementVNode("h1",Zo,e.toDisplayString(t.headline),1)],2)]))}}),ae=u(Xo,[["__scopeId","data-v-3ef1567e"]]),xo=t=>(e.pushScopeId("data-v-22f9be13"),t=t(),e.popScopeId(),t),el={class:"hero__wrapper"},tl={class:"hero__content"},ol={class:"hero__top"},ll={class:"hero__elements"},al={class:"hero__headline"},rl={class:"hero__link"},nl={class:"hero__video"},sl=xo(()=>e.createElementVNode("div",{class:"hero__gradient"},null,-1)),il={class:"hero__video__video"},dl={class:"hero__image"},cl=e.defineComponent({__name:"hero",props:{headline:{type:String,required:!0}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",el,[e.createElementVNode("div",tl,[e.createElementVNode("div",ol,[e.createElementVNode("div",ll,[e.createElementVNode("div",al,[e.createElementVNode("h1",null,e.toDisplayString(t.headline),1)]),e.createElementVNode("div",rl,[e.createVNode(g,{"link-type":"regular_light",arrow:""},{default:e.withCtx(()=>[e.renderSlot(o.$slots,"hero-link",{},void 0,!0)]),_:3})])])]),e.createElementVNode("div",nl,[sl,e.createElementVNode("div",il,[e.renderSlot(o.$slots,"hero-video",{},void 0,!0)]),e.createElementVNode("div",dl,[e.renderSlot(o.$slots,"hero-image",{},void 0,!0)])])])]))}}),re=u(cl,[["__scopeId","data-v-22f9be13"]]),ul={class:"logo-wall__wrapper"},ml={class:"logo-wall__content"},pl={key:0,class:"logo-wall__text"},_l={key:0},hl={key:1},fl={class:"logo-wall__logos"},vl={class:"logo-wall__link"},kl=e.defineComponent({__name:"logo-wall",props:{headline:{type:String,default:""},body:{type:String,default:""},logos:{type:Array,required:!0,validator:t=>t.length<=5}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",ul,[e.createElementVNode("div",ml,[t.headline||t.body?(e.openBlock(),e.createElementBlock("div",pl,[t.headline?(e.openBlock(),e.createElementBlock("h2",_l,e.toDisplayString(t.headline),1)):e.createCommentVNode("",!0),t.body?(e.openBlock(),e.createElementBlock("p",hl,e.toDisplayString(t.body),1)):e.createCommentVNode("",!0)])):e.createCommentVNode("",!0),e.createElementVNode("div",fl,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.logos,a=>(e.openBlock(),e.createElementBlock("div",{key:a.src+a.alt,class:"logo-wall__logo"},[e.createVNode(y,null,{default:e.withCtx(()=>[e.renderSlot(o.$slots,"logo-wall-logo",e.normalizeProps(e.guardReactiveProps({width:130,height:130,src:a.src,alt:a.alt})),void 0,!0)]),_:2},1024)]))),128))]),e.createElementVNode("div",vl,[e.createVNode(g,{"link-type":"regular_light",arrow:!0},{default:e.withCtx(()=>[e.renderSlot(o.$slots,"logo-wall-link",{},void 0,!0)]),_:3})])])]))}}),ne=u(kl,[["__scopeId","data-v-fd489289"]]),gl={class:"micro-stories__top"},yl={key:0,class:"headline"},bl={key:1,class:"body"},Bl={class:"micro-stories__splide"},se=e.defineComponent({__name:"micro-stories",props:{bgColor:{default:"blue"},headline:{default:""},body:{default:""}},setup(t){const o={white:"micro-stories__wrapper--white",blue:"micro-stories__wrapper--blue",dark:"micro-stories__wrapper--dark"},r=e.computed(()=>o[a.bgColor]),a=t;return(l,i)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["micro-stories__wrapper",r.value])},[e.createElementVNode("div",gl,[l.headline?(e.openBlock(),e.createElementBlock("div",yl,[e.createElementVNode("h2",null,e.toDisplayString(l.headline),1)])):e.createCommentVNode("",!0),l.body?(e.openBlock(),e.createElementBlock("div",bl,[e.createElementVNode("p",null,e.toDisplayString(l.body),1)])):e.createCommentVNode("",!0)]),e.createElementVNode("div",Bl,[e.renderSlot(l.$slots,"micro-stories-slides")]),e.renderSlot(l.$slots,"micro-stories-controls")],2))}}),$l={},wl={class:"policy__wrapper"},El={class:"policy__content"};function Vl(t,o){return e.openBlock(),e.createElementBlock("div",wl,[e.createElementVNode("div",El,[e.renderSlot(t.$slots,"default",{},void 0,!0)])])}const ie=u($l,[["render",Vl],["__scopeId","data-v-ea887d7a"]]),Nl={class:"card-display__wrapper"},Sl={key:0,class:"card__content"},Cl={key:0},Dl={key:1},Il={class:"card__cards"},ql=e.defineComponent({__name:"card-display",props:{headline:{type:String,default:""},paragraph:{type:String,default:""},bgColor:{type:String,default:"white"}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["card-display",t.bgColor==="blue"?"card-display--blue":"card-display--white"])},[e.createElementVNode("div",Nl,[t.headline||t.paragraph?(e.openBlock(),e.createElementBlock("div",Sl,[t.headline?(e.openBlock(),e.createElementBlock("h2",Cl,e.toDisplayString(t.headline),1)):e.createCommentVNode("",!0),t.paragraph?(e.openBlock(),e.createElementBlock("p",Dl,e.toDisplayString(t.paragraph),1)):e.createCommentVNode("",!0)])):e.createCommentVNode("",!0),e.createElementVNode("div",Il,[e.renderSlot(o.$slots,"card-display-cards",{},void 0,!0)])])],2))}}),de=u(ql,[["__scopeId","data-v-e8033cff"]]),Ll={class:"promo__content"},Tl=e.defineComponent({__name:"promo",props:{label:{default:""},linkText:{default:""},mediaType:{default:"image"},src:{},alt:{},fallbackImage:{},reverse:{type:Boolean,default:!1},variant:{default:"default"},linkType:{default:"link"},teaser:{type:Boolean,default:!1},multiply:{type:Boolean,default:!1}},setup(t){const o={dark:"promo__wrapper--dark",light:"promo__wrapper--light",default:"promo__wrapper--default"},r=t,a=e.computed(()=>o[r.variant]);return(l,i)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["promo__wrapper",a.value,l.teaser?"promo__wrapper--teaser":"",l.multiply?"promo__wrapper--multiply":""])},[e.createElementVNode("div",Ll,[l.mediaType==="image"?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(["promo__image",l.reverse?"promo__image--reverse":"promo__image--default"])},[e.createVNode(y,null,{default:e.withCtx(()=>[e.renderSlot(l.$slots,"promo-image",e.normalizeProps(e.guardReactiveProps({src:l.src,width:1920,alt:l.alt,height:1080})))]),_:3})],2)):e.createCommentVNode("",!0),l.mediaType==="video"?(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(["promo__video",l.reverse?"promo__video--reverse":"promo__video--default"])},[e.createVNode(S,{src:l.src,"local-video":"","aria-label":l.alt,controls:!1,autoplay:"",loop:"",muted:"",play:"",poster:l.fallbackImage},null,8,["src","aria-label","poster"])],2)):e.createCommentVNode("",!0),e.createElementVNode("div",{class:e.normalizeClass(["promo__text",l.reverse?"promo__text--reverse":"promo__text--default"])},[l.label?(e.openBlock(),e.createBlock(w,{key:0,text:l.label,"label-dark":l.variant==="dark"},null,8,["text","label-dark"])):e.createCommentVNode("",!0),e.createElementVNode("div",{class:e.normalizeClass(["promo__title",l.variant==="dark"?"promo__title--dark":""])},[e.renderSlot(l.$slots,"promo-headline")],2),l.linkType==="link"?(e.openBlock(),e.createBlock(g,{key:1,"link-type":l.variant==="dark"?"regular_dark":(l.variant==="light","regular_light"),arrow:""},{default:e.withCtx(()=>[e.renderSlot(l.$slots,"promo-link")]),_:3},8,["link-type"])):e.createCommentVNode("",!0),l.linkType==="button"?(e.openBlock(),e.createBlock(g,{key:2,"link-type":l.variant==="dark"?"secondary_dark":(l.variant==="light","secondary")},{default:e.withCtx(()=>[e.renderSlot(l.$slots,"promo-link")]),_:3},8,["link-type"])):e.createCommentVNode("",!0)],2)])],2))}}),ce=u(Tl,[["__scopeId","data-v-df54d965"]]),zl=t=>(e.pushScopeId("data-v-e3cc8e27"),t=t(),e.popScopeId(),t),Al={class:"quote__wrapper"},Pl={class:"quote__content"},Ml=zl(()=>e.createElementVNode("p",{class:"quote__quote-mark"},"“",-1)),Fl={class:"quote__quote"},Ol={class:"quote__quote-text"},Rl={class:"quote__author"},Hl={key:0,class:"quote__image"},jl={class:"quote__text"},Ul={class:"quote__author-name"},Kl={class:"quote__author-title"},Gl=e.defineComponent({__name:"quote",props:{quote:{type:String,required:!0},author:{type:String,required:!0},authorTitle:{type:String,required:!0},authorImage:{type:String,required:!1,default:void 0}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",Al,[e.createElementVNode("div",Pl,[Ml,e.createElementVNode("div",Fl,[e.createElementVNode("p",Ol,e.toDisplayString(t.quote),1),e.createElementVNode("div",Rl,[t.authorImage?(e.openBlock(),e.createElementBlock("div",Hl,[e.createVNode(y,null,{default:e.withCtx(()=>[e.renderSlot(o.$slots,"author-image",e.normalizeProps(e.guardReactiveProps({src:t.authorImage+"/m/100x100",width:60,height:60})))]),_:3})])):e.createCommentVNode("",!0),e.createElementVNode("div",jl,[e.createElementVNode("p",Ul,e.toDisplayString(t.author),1),e.createElementVNode("p",Kl,e.toDisplayString(t.authorTitle),1)])])])])]))}}),ue=u(Gl,[["__scopeId","data-v-e3cc8e27"]]),Wl={class:"rich-text__wrapper"},Jl={key:0,class:"rich-text__links"},Ql={key:0,class:"rich-text__bullet-list"},Yl=e.defineComponent({__name:"rich-text",props:{headline:{default:""},leftAligned:{type:Boolean,default:!1},links:{type:Boolean,default:!1},bulletList:{type:Boolean,default:!1},image:{type:Boolean,default:!1},imageClip:{type:Boolean,default:!0},bgColor:{default:"white"},label:{default:""}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["rich-text",o.bgColor==="blue"?"rich-text--blue":"rich-text--white"])},[e.createElementVNode("div",Wl,[o.label?(e.openBlock(),e.createBlock(w,{key:0,text:o.label,"label-dark":!1},null,8,["text"])):e.createCommentVNode("",!0),o.headline?(e.openBlock(),e.createElementBlock("h2",{key:1,class:e.normalizeClass(["rich-text__headline",o.leftAligned||o.bulletList||o.image?"rich-text__headline--left-aligned":"rich-text__headline--centered"])},e.toDisplayString(o.headline),3)):e.createCommentVNode("",!0),e.createElementVNode("div",{class:e.normalizeClass(["rich-text__content",o.leftAligned||o.bulletList||o.image?"rich-text__content--left-aligned":"rich-text__content--centered"])},[e.createElementVNode("div",{class:e.normalizeClass(["rich-text__body",o.bulletList||o.image?"rich-text__body--content-right":""])},[e.renderSlot(o.$slots,"rich-text-content"),o.links?(e.openBlock(),e.createElementBlock("div",Jl,[e.renderSlot(o.$slots,"rich-text-links")])):e.createCommentVNode("",!0)],2),o.bulletList?(e.openBlock(),e.createElementBlock("div",Ql,[e.renderSlot(o.$slots,"rich-text-bullet-list")])):e.createCommentVNode("",!0),o.image?(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(["rich-text__image",o.imageClip?"rich-text__image--clip":""])},[e.createVNode(y,null,{default:e.withCtx(()=>[e.renderSlot(o.$slots,"rich-text-image",e.normalizeProps(e.guardReactiveProps({width:865,height:307})))]),_:3})],2)):e.createCommentVNode("",!0)],2)])],2))}}),me=u(Yl,[["__scopeId","data-v-8bb69ea4"]]),Zl={},Xl={class:"rich-text"},xl={class:"rich-text__wrapper"},ea={class:"rich-text__content rich-text__content--left-aligned"},ta={class:"rich-text__body"};function oa(t,o){return e.openBlock(),e.createElementBlock("div",Xl,[e.createElementVNode("div",xl,[e.createElementVNode("div",ea,[e.createElementVNode("div",ta,[e.createElementVNode("div",null,[e.renderSlot(t.$slots,"rich-text-content-left",{},void 0,!0)]),e.createElementVNode("div",null,[e.renderSlot(t.$slots,"rich-text-content-right",{},void 0,!0)])])])])])}const pe=u(Zl,[["render",oa],["__scopeId","data-v-2881b194"]]),la=t=>(e.pushScopeId("data-v-e254e1e0"),t=t(),e.popScopeId(),t),aa={class:"timeline__wrapper"},ra={class:"timeline__content"},na={class:"timeline__items"},sa={class:"item__left"},ia=la(()=>e.createElementVNode("div",{class:"item__elements"},[e.createElementVNode("div",{class:"circle"}),e.createElementVNode("div",{class:"line"})],-1)),da={class:"item__right"},ca=["innerHTML"],ua=e.defineComponent({__name:"timeline",props:{timelineItems:{type:Array,required:!0}},setup(t){return e.onMounted(()=>{const o=document.querySelectorAll(".timeline__item"),r=new IntersectionObserver(a=>{a.forEach(l=>{l.isIntersecting&&(l.target.classList.add("visible"),l.target.classList.remove("faded"),r.unobserve(l.target))})},{threshold:1});o.forEach(a=>{r.observe(a)})}),(o,r)=>(e.openBlock(),e.createElementBlock("div",aa,[e.createElementVNode("div",ra,[e.createElementVNode("div",na,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.timelineItems,a=>(e.openBlock(),e.createElementBlock("div",{key:a.year,class:"timeline__item faded"},[e.createElementVNode("div",sa,e.toDisplayString(a.year),1),ia,e.createElementVNode("div",da,[e.createVNode(y,null,{default:e.withCtx(()=>[a.media.src?e.renderSlot(o.$slots,"timeline-image",e.normalizeProps(e.mergeProps({key:0},{src:a.media.src,alt:a.media.alt})),void 0,!0):e.createCommentVNode("",!0)]),_:2},1024),e.createElementVNode("div",{style:e.normalizeStyle([a.media.src?"":"margin-top: 0px"]),class:"rich-text",innerHTML:a.text},null,12,ca)])]))),128))])])]))}}),_e=u(ua,[["__scopeId","data-v-e254e1e0"]]),ma={class:"vimeo"},pa={class:"vimeo__wrapper"},_a={key:0,class:"vimeo__headline"},ha={key:1,class:"vimeo__description"},fa=e.defineComponent({__name:"vimeo",props:{headline:{type:String,default:""},description:{type:String,default:""}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",ma,[e.createElementVNode("div",pa,[t.headline?(e.openBlock(),e.createElementBlock("h2",_a,e.toDisplayString(t.headline),1)):e.createCommentVNode("",!0),e.renderSlot(o.$slots,"vimeo-content",{},void 0,!0),t.description?(e.openBlock(),e.createElementBlock("p",ha,e.toDisplayString(t.description),1)):e.createCommentVNode("",!0)])]))}}),he=u(fa,[["__scopeId","data-v-90a2b109"]]),va={class:"not-found__wrapper"},ka={class:"not-found__content"},ga={class:"not-found__headline"},ya={class:"not-found__body"},ba=e.defineComponent({__name:"404",props:{headline:{type:String,required:!0}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",va,[e.createElementVNode("div",ka,[e.createElementVNode("h1",ga,e.toDisplayString(t.headline),1),e.createElementVNode("div",ya,[e.renderSlot(o.$slots,"not-found-body",{},void 0,!0)])])]))}}),fe=u(ba,[["__scopeId","data-v-b829ca6c"]]),Ba={class:"filter__wrapper"},$a={class:"filter__content"},wa={class:"filter__dropdowns"},Ea={class:"filter__chips"},Va=e.defineComponent({__name:"filter",props:{hasChips:{type:Boolean,default:!1},removeAll:{type:String,default:"Remove all filters"}},emits:["clearFilters"],setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",Ba,[e.createElementVNode("div",$a,[e.createElementVNode("div",wa,[e.renderSlot(o.$slots,"filter-dropdowns")]),e.createElementVNode("div",Ea,[e.renderSlot(o.$slots,"filter-chips"),t.hasChips?(e.openBlock(),e.createElementBlock("button",{key:0,class:"filter__clear",onClick:r[0]||(r[0]=a=>o.$emit("clearFilters"))},e.toDisplayString(t.removeAll),1)):e.createCommentVNode("",!0)])])]))}}),ve=u(Va,[["__scopeId","data-v-31c1ba00"]]),B=t=>(e.pushScopeId("data-v-aa82b03d"),t=t(),e.popScopeId(),t),Na={class:"footer__wrapper"},Sa={class:"footer__content"},Ca={class:"footer__sections"},Da={class:"section__title"},Ia={class:"section__list"},qa={class:"section"},La=B(()=>e.createElementVNode("span",{class:"section__title"},"Mobile Industrial Robots A/S",-1)),Ta=B(()=>e.createElementVNode("span",null,"Emil Neckelmanns Vej 15F",-1)),za=B(()=>e.createElementVNode("span",null,"DK-5220 Odense SØ",-1)),Aa=B(()=>e.createElementVNode("span",null,"CVR: 35251235",-1)),Pa=B(()=>e.createElementVNode("br",null,null,-1)),Ma=B(()=>e.createElementVNode("a",{href:"mailto:mail@mir-robots.com"},"mail@mir-robots.com",-1)),Fa=B(()=>e.createElementVNode("a",{href:"tel:+4520377577"},"+45 20 377 577",-1)),Oa={class:"footer__bottom"},Ra={class:"copyright"},Ha={class:"footer__policy"},ja=B(()=>e.createElementVNode("i",{class:"change-region"},null,-1)),Ua={key:0,class:"footer__social"},Ka=["href","aria-label"],Ga={key:1,class:"footer__social"},Wa=["href","aria-label"],Ja=e.defineComponent({__name:"footer",props:{language:{default:""},footerSections:{default:()=>[]},privacyPolicy:{default:void 0},cookiePolicy:{default:void 0},socialMedia:{default:()=>[]},socialMediaChina:{default:()=>[]},changeRegion:{default:""}},emits:["changeRegionClicked"],setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",Na,[e.createElementVNode("footer",Sa,[e.createElementVNode("div",Ca,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.footerSections,a=>(e.openBlock(),e.createElementBlock("div",{key:a.title,class:"section"},[e.createElementVNode("span",Da,e.toDisplayString(a.title),1),e.createElementVNode("nav",null,[e.createElementVNode("ul",Ia,[e.renderSlot(o.$slots,"section-links",{links:a.links})])])]))),128)),e.createElementVNode("div",qa,[La,e.createElementVNode("address",null,[Ta,za,Aa,Pa,e.createVNode(g,{class:"footer__contact","link-type":"regular_light",underline:"false"},{default:e.withCtx(()=>[Ma]),_:1}),e.createVNode(g,{class:"footer__contact","link-type":"regular_light",underline:"false"},{default:e.withCtx(()=>[Fa]),_:1})])])]),e.createElementVNode("div",Oa,[e.createElementVNode("p",Ra," © Mobile Industrial Robots "+e.toDisplayString(new Date().getFullYear()),1),e.createElementVNode("div",Ha,[e.createElementVNode("button",{class:"footer__language-switcher",onClick:r[0]||(r[0]=a=>o.$emit("changeRegionClicked"))},[e.createElementVNode("span",null,[ja,e.createTextVNode(e.toDisplayString(o.changeRegion),1)])]),e.renderSlot(o.$slots,"footer-privacy-link"),e.renderSlot(o.$slots,"footer-cookie-link")]),o.language!=="zh"?(e.openBlock(),e.createElementBlock("div",Ua,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.socialMedia,a=>(e.openBlock(),e.createBlock(g,{key:a.title,underline:"false","link-type":"regular"},{default:e.withCtx(()=>[e.createElementVNode("a",{href:a.url,target:"_blank","aria-label":a.title},[e.createElementVNode("i",{width:"19",height:"14",class:e.normalizeClass(["footer__social--icon",[a.title?"bg-"+a.title:""]])},null,2)],8,Ka)]),_:2},1024))),128))])):(e.openBlock(),e.createElementBlock("div",Ga,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.socialMediaChina,a=>(e.openBlock(),e.createBlock(g,{key:a.title,underline:"false","link-type":"regular"},{default:e.withCtx(()=>[e.createElementVNode("a",{href:a.url,target:"_blank","aria-label":a.title},[e.createElementVNode("i",{width:"19",height:"14",class:e.normalizeClass(["footer__social--icon",[a.title?"bg-"+a.title:""]])},null,2)],8,Wa)]),_:2},1024))),128))]))])])]))}}),ke=u(Ja,[["__scopeId","data-v-aa82b03d"]]),Qa={class:"header__wrapper"},Ya={class:"nav-wrapper"},Za={class:"mir-link-logo"},Xa={class:"main-nav-items"},xa={key:0,id:"menu-dropdown",ref:"dropdownDiv"},er={key:0,src:"https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",alt:"dropdownarrow"},tr={key:1,src:"https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",alt:"dropdownarrow",style:{transform:"rotate(180deg)"}},or={class:"dropdown-content"},lr={class:"nav-search-wrapper"},ar=["src"],rr={key:1,id:"menu-portal-switcher",class:"portal-switcher-wrapper"},nr={key:0,src:"https://a.storyblok.com/f/230581/14x12/1b00a4a551/portal-switcher.svg?cv=1712916615032",alt:"portalswitchericon",width:"20",height:"20"},sr={key:1,src:"https://a.storyblok.com/f/230581/14x12/1b00a4a551/portal-switcher.svg?cv=1712916615032",alt:"portalswitchericon",width:"20",height:"20"},ir={class:"portal-switcher-content"},dr={key:2,id:"menu-profile-dropdown",class:"profile-dropdown-wrapper"},cr={key:0,src:"https://a.storyblok.com/f/230581/15x14/3b3253dd12/icon-user.svg?cv=1712916615014",alt:"profiledropdownicon",width:"20",height:"20"},ur={key:1,src:"https://a.storyblok.com/f/230581/15x14/3b3253dd12/icon-user.svg?cv=1712916615014",alt:"profiledropdownicon",width:"20",height:"20"},mr={class:"profile-dropdown-content"},pr={class:"mobile-logo-search-burger-wrapper"},_r={class:"mobile-mir-link-logo"},hr={class:"mobile-search-wrapper"},fr=["src"],vr=["src"],kr={class:"mobile-menu-content-wrapper"},gr={class:"mobile-dropdown-content"},yr=e.defineComponent({__name:"header",props:{burgerState:{type:Boolean,default:!1},showDropDown:{type:Boolean,default:!1},useDropdown:{type:Boolean,default:!1},showPortalSwitcherDropDown:{type:Boolean,default:!1},usePortalSwitcher:{type:Boolean,default:!1},showProfileDropDown:{type:Boolean,default:!1},useProfileDropdown:{type:Boolean,default:!1}},emits:["update:burgerState","update:showDropDown","update:showPortalSwitcherDropDown","update:showProfileDropDown","clickSearch"],setup(t,{expose:o,emit:r}){let a=null;const l=t;let i=e.ref(l.burgerState),s=e.ref(l.showDropDown),d=e.ref(l.showPortalSwitcherDropDown),h=e.ref(l.showProfileDropDown);e.watch(()=>l.burgerState,m=>i.value=m),e.watch(()=>l.showDropDown,m=>s.value=m),e.watch(()=>l.showPortalSwitcherDropDown,m=>d.value=m),e.watch(()=>l.showProfileDropDown,m=>h.value=m),e.onMounted(()=>{a=m=>{m.target.closest("#menu-dropdown")||(s.value=!1),m.target.closest("#menu-portal-switcher")||(d.value=!1),m.target.closest("#menu-profile-dropdown")||(h.value=!1)},window.addEventListener("click",a)}),e.onUnmounted(()=>{a!==null&&window.removeEventListener("click",a)});const c=r;function f(){s.value=!s.value,c("update:showDropDown",s.value)}function k(){d.value=!d.value,c("update:showPortalSwitcherDropDown",d.value)}function L(){h.value=!h.value,c("update:showProfileDropDown",h.value)}function T(){i.value=!i.value,c("update:burgerState",i.value)}let E=e.ref(null),I=e.ref(null);function z(){E.value&&E.value.blur()}return o({defocusSearchButton:z}),(m,V)=>(e.openBlock(),e.createElementBlock("div",Qa,[e.createElementVNode("nav",null,[e.createElementVNode("div",Ya,[e.createElementVNode("div",Za,[e.renderSlot(m.$slots,"link-logo",{},void 0,!0)]),e.createElementVNode("ul",Xa,[e.renderSlot(m.$slots,"main-nav-items",{},void 0,!0)]),t.useDropdown?(e.openBlock(),e.createElementBlock("div",xa,[e.createElementVNode("button",{class:"nav-dropdown-btn",onClick:f},[e.renderSlot(m.$slots,"dropdown-title",{},void 0,!0),e.unref(s)===!1?(e.openBlock(),e.createElementBlock("img",er)):(e.openBlock(),e.createElementBlock("img",tr))]),e.withDirectives(e.createElementVNode("div",or,[e.renderSlot(m.$slots,"dropdown-links",{},void 0,!0)],512),[[e.vShow,e.unref(s)]])],512)):e.createCommentVNode("",!0),e.createElementVNode("div",lr,[e.createElementVNode("button",{ref_key:"navSearchButton",ref:E,class:"search-icon",onClick:V[0]||(V[0]=A=>{var $;return m.$emit("clickSearch"),($=e.unref(E))==null?void 0:$.blur()})},[e.createElementVNode("img",{src:e.unref(i)===!0?"https://a.storyblok.com/f/230581/21x21/13f4ac189d/search-icon-white.svg?cv=1695125826080":"https://a.storyblok.com/f/230581/21x21/ebbdca38d3/search-icon.svg?cv=1695125825901",alt:"search icon",width:"20",height:"20"},null,8,ar)],512)]),t.usePortalSwitcher?(e.openBlock(),e.createElementBlock("div",rr,[e.createElementVNode("button",{class:"nav-portal-switcher-btn",onClick:k},[e.renderSlot(m.$slots,"portal-switcher-title",{},void 0,!0),e.unref(d)===!1?(e.openBlock(),e.createElementBlock("img",nr)):(e.openBlock(),e.createElementBlock("img",sr))]),e.withDirectives(e.createElementVNode("div",ir,[e.renderSlot(m.$slots,"portal-switcher-links",{},void 0,!0)],512),[[e.vShow,e.unref(d)]])])):e.createCommentVNode("",!0),t.useProfileDropdown?(e.openBlock(),e.createElementBlock("div",dr,[e.createElementVNode("button",{class:"nav-profile-dropdown-btn",onClick:L},[e.renderSlot(m.$slots,"porfile-dropdown-title",{},void 0,!0),e.unref(h)===!1?(e.openBlock(),e.createElementBlock("img",cr)):(e.openBlock(),e.createElementBlock("img",ur))]),e.withDirectives(e.createElementVNode("div",mr,[e.renderSlot(m.$slots,"profile-dropdown-links",{},void 0,!0)],512),[[e.vShow,e.unref(h)]])])):e.createCommentVNode("",!0)]),e.createElementVNode("div",{class:e.normalizeClass(["mobile-nav-wrapper",e.unref(i)===!0?"mirsaic-mobile-bg mirsaic--dark":""])},[e.createElementVNode("div",pr,[e.createElementVNode("div",_r,[e.renderSlot(m.$slots,"link-logo",{},void 0,!0)]),e.createElementVNode("div",hr,[e.createElementVNode("button",{ref_key:"mobileSearchButton",ref:I,class:"search-icon","aria-label":"Toggle search",onClick:V[1]||(V[1]=A=>{var $;return m.$emit("clickSearch"),($=e.unref(I))==null?void 0:$.blur()})},[e.createElementVNode("img",{src:e.unref(i)===!0?"https://a.storyblok.com/f/230581/21x21/13f4ac189d/search-icon-white.svg?cv=1695125826080":"https://a.storyblok.com/f/230581/21x21/ebbdca38d3/search-icon.svg?cv=1695125825901",alt:"search icon",width:"20",height:"20"},null,8,fr)],512)]),e.createElementVNode("button",{class:"mobile-burger-wrapper","aria-label":"Toggle menu",onClick:e.withModifiers(T,["prevent"])},[e.createElementVNode("img",{width:"20",height:"20",alt:"burger menu line icon",src:e.unref(i)===!0?"https://a.storyblok.com/f/230581/17x18/20e9329e46/close-white.svg":"https://a.storyblok.com/f/230581/23x14/739e917bca/burger-menu-line.svg"},null,8,vr)])]),e.withDirectives(e.createElementVNode("div",kr,[e.createElementVNode("ul",null,[e.renderSlot(m.$slots,"mobile-main-nav-items",{},void 0,!0)]),e.createElementVNode("ul",gr,[e.renderSlot(m.$slots,"mobile-dropdown-title",{},void 0,!0),e.renderSlot(m.$slots,"mobile-dropdown-links",{},void 0,!0)])],512),[[e.vShow,e.unref(i)]])],2)])]))}}),ge=u(yr,[["__scopeId","data-v-415acd08"]]),br={class:"language__wrapper"},Br={class:"language__content"},$r={class:"language__headline"},wr={class:"language__paragraph"},Er={class:"language__links"},Vr=e.defineComponent({__name:"language-switcher",props:{headline:{type:String,default:""},paragraph:{type:String,default:""}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",br,[e.createElementVNode("div",Br,[e.createElementVNode("h2",$r,e.toDisplayString(t.headline),1),e.createElementVNode("p",wr,e.toDisplayString(t.paragraph),1),e.createElementVNode("div",Er,[e.renderSlot(o.$slots,"language-links",{},void 0,!0)])])]))}}),ye=u(Vr,[["__scopeId","data-v-dc8cc97e"]]),Nr={class:"pagination__wrapper"},Sr={class:"pagination__content"},Cr=e.defineComponent({__name:"pagination",props:{isPreviousDisabled:{type:Boolean,required:!0},isNextDisabled:{type:Boolean,required:!0}},emits:["previous","next"],setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",Nr,[e.createElementVNode("div",Sr,[e.createVNode(D,{disabled:t.isPreviousDisabled,variant:"previous","aria-label":"previous",onClick:r[0]||(r[0]=a=>o.$emit("previous"))},null,8,["disabled"]),e.renderSlot(o.$slots,"pagination-numbers"),e.createVNode(D,{disabled:t.isNextDisabled,variant:"next","aria-label":"next",onClick:r[1]||(r[1]=a=>o.$emit("next"))},null,8,["disabled"])])]))}}),be=u(Cr,[["__scopeId","data-v-da6d07c9"]]),Dr={},Ir={class:"search__wrapper"};function qr(t,o){return e.openBlock(),e.createElementBlock("div",Ir,[e.renderSlot(t.$slots,"default",{class:"search__content"})])}const Be=u(Dr,[["render",qr],["__scopeId","data-v-623adb82"]]),Lr={class:"product-hero__wrapper"},Tr={class:"product-hero__content"},zr={class:"product-hero__headline"},Ar={class:"product-hero__video"},Pr={class:"product-hero__insignia"},Mr={key:0,class:"product-hero__logo"},Fr={key:1,class:"product-hero__certification"},Or=e.defineComponent({__name:"product-hero",props:{headline:{type:String,default:"",required:!0},videoSrc:{type:String,default:"",required:!0},ariaLabel:{type:String,default:"",required:!0},imgSrc:{type:String,default:"",required:!0},logoSrc:{type:String,default:"",required:!1},isCertified:{type:Boolean,default:!1,required:!1}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",Lr,[e.createElementVNode("div",Tr,[e.createElementVNode("div",zr,e.toDisplayString(t.headline),1),e.createElementVNode("div",Ar,[t.videoSrc!==""?(e.openBlock(),e.createBlock(S,{key:0,play:"","local-video":!0,src:t.videoSrc,"aria-label":t.ariaLabel,controls:!1,poster:t.imgSrc,autoplay:"",loop:"",muted:""},null,8,["src","aria-label","poster"])):(e.openBlock(),e.createBlock(e.unref(y),{key:1},{default:e.withCtx(()=>[e.renderSlot(o.$slots,"product-hero-image",{},void 0,!0)]),_:3})),e.createElementVNode("div",Pr,[t.logoSrc?(e.openBlock(),e.createElementBlock("div",Mr,[e.createVNode(e.unref(y),null,{default:e.withCtx(()=>[e.renderSlot(o.$slots,"product-hero-logo",{},void 0,!0)]),_:3})])):e.createCommentVNode("",!0),t.isCertified?(e.openBlock(),e.createElementBlock("div",Fr,[e.createVNode(e.unref(y),null,{default:e.withCtx(()=>[e.renderSlot(o.$slots,"product-hero-certification",{},void 0,!0)]),_:3})])):e.createCommentVNode("",!0)])])])]))}}),$e=u(Or,[["__scopeId","data-v-deab9c3a"]]),Rr={class:"promo__content"},Hr={class:"pallet-jack__media-wrap"},jr={class:"pallet-jack-link"},Ur={class:"pallet-jack__media-wrap__inner-wrap"},Kr={class:"pallet-jack__media-wrap__content-wrap"},Gr={class:"regular-blue"},Wr=e.defineComponent({__name:"pallet-jack",props:{label:{default:""},headline:{},linkText:{default:""},reverse:{type:Boolean,default:!1},variant:{default:"default"},linkType:{default:"link"},teaser:{type:Boolean,default:!1},shortDescription:{default:""},text:{default:""}},setup(t){const o={dark:"promo__wrapper--dark",light:"promo__wrapper--light",default:"promo__wrapper--default"},r=t,a=e.computed(()=>o[r.variant]);return(l,i)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["promo__wrapper",a.value,l.teaser?"promo__wrapper--teaser":""])},[e.createElementVNode("div",Rr,[e.createElementVNode("div",{class:e.normalizeClass(["promo__video",l.reverse?"promo__video--reverse":"promo__video--default"])},[e.createElementVNode("div",Hr,[e.createElementVNode("div",jr,[e.renderSlot(l.$slots,"pallet-jack-link")]),e.createElementVNode("div",Ur,[e.renderSlot(l.$slots,"pallet-jack-video")]),e.createElementVNode("div",Kr,[e.createElementVNode("h3",Gr,e.toDisplayString(l.headline),1),e.createElementVNode("p",null,e.toDisplayString(l.shortDescription),1)])])],2),e.createElementVNode("div",{class:e.normalizeClass(["promo__text",l.reverse?"promo__text--reverse":"promo__text--default"])},[l.label?(e.openBlock(),e.createBlock(w,{key:0,text:l.label,"label-dark":l.variant==="dark"},null,8,["text","label-dark"])):e.createCommentVNode("",!0),e.createElementVNode("div",{class:e.normalizeClass(["promo__title",l.variant==="dark"?"promo__title--dark":""])},[e.renderSlot(l.$slots,"promo-text")],2),l.linkType==="link"?(e.openBlock(),e.createBlock(g,{key:1,"link-type":l.variant==="dark"?"regular_dark":(l.variant==="light","regular_light"),arrow:""},{default:e.withCtx(()=>[e.renderSlot(l.$slots,"promo-link")]),_:3},8,["link-type"])):e.createCommentVNode("",!0),l.linkType==="button"?(e.openBlock(),e.createBlock(g,{key:2,"link-type":l.variant==="dark"?"secondary_dark":(l.variant==="light","secondary")},{default:e.withCtx(()=>[e.renderSlot(l.$slots,"promo-link")]),_:3},8,["link-type"])):e.createCommentVNode("",!0)],2)])],2))}}),we=u(Wr,[["__scopeId","data-v-00c0bad3"]]),Jr={install:t=>{t.component("AtomButton",D),t.component("AtomCheckbox",O),t.component("AtomChip",R),t.component("AtomDropdown",H),t.component("AtomImage",y),t.component("AtomLabel",w),t.component("AtomLink",g),t.component("AtomRadioButton",j),t.component("AtomSelect",U),t.component("AtomSlider",K),t.component("AtomTextarea",G),t.component("AtomTextField",W),t.component("AtomVideo",S),t.component("MoleculeAddress",J),t.component("MoleculeBulletList",Q),t.component("MoleculeCard",Y),t.component("MoleculeEventCard",Z),t.component("MoleculeModal",P),t.component("MoleculeTextCard",X),t.component("BlockFacts",x),t.component("BlockFeatures",ee),t.component("BlockFormScript",te),t.component("BlockHeadline",ae),t.component("BlockHero",re),t.component("BlockImage",oe),t.component("BlockImageGallery",le),t.component("BlockLogoWall",ne),t.component("BlockMicroStories",se),t.component("BlockPolicy",ie),t.component("BlockProductHero",$e),t.component("BlockPromo",ce),t.component("BlockQuote",ue),t.component("BlockRichText",me),t.component("BlockRichTextColumns",pe),t.component("BlockTimeline",_e),t.component("BlockCardDisplay",de),t.component("BlockVimeo",he),t.component("BlockPalletJack",we),t.component("Organism404",fe),t.component("OrganismFilter",ve),t.component("OrganismFooter",ke),t.component("OrganismHeader",ge),t.component("OrganismLanguageSwitcher",ye),t.component("OrganismPagination",be),t.component("OrganismSearch",Be)}};exports.AtomButton=D;exports.AtomCheckbox=O;exports.AtomChip=R;exports.AtomDropdown=H;exports.AtomImage=y;exports.AtomLabel=w;exports.AtomLink=g;exports.AtomRadioButton=j;exports.AtomSelect=U;exports.AtomSlider=K;exports.AtomTextField=W;exports.AtomTextarea=G;exports.AtomVideo=S;exports.BlockCardDisplay=de;exports.BlockFacts=x;exports.BlockFeatures=ee;exports.BlockFormScript=te;exports.BlockHeadline=ae;exports.BlockHero=re;exports.BlockImage=oe;exports.BlockImageGallery=le;exports.BlockLogoWall=ne;exports.BlockMicroStories=se;exports.BlockPalletJack=we;exports.BlockPolicy=ie;exports.BlockProductHero=$e;exports.BlockPromo=ce;exports.BlockQuote=ue;exports.BlockRichText=me;exports.BlockRichTextColumns=pe;exports.BlockTimeline=_e;exports.BlockVimeo=he;exports.MoleculeAddress=J;exports.MoleculeBulletList=Q;exports.MoleculeCard=Y;exports.MoleculeEventCard=Z;exports.MoleculeModal=P;exports.MoleculeTextCard=X;exports.Organism404=fe;exports.OrganismFilter=ve;exports.OrganismFooter=ke;exports.OrganismHeader=ge;exports.OrganismLanguageSwitcher=ye;exports.OrganismPagination=be;exports.OrganismSearch=Be;exports.default=Jr;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue"),Ie=["aria-label"],Le=e.defineComponent({__name:"button",props:{variant:{default:"primary"},ariaLabel:{default:"Button"},buttonText:{default:""}},setup(t){const o={primary:"primary",secondary:"secondary",close:"close",next:"next",previous:"previous"},r=t,a=e.computed(()=>o[r.variant]);return(l,i)=>(e.openBlock(),e.createElementBlock("button",{class:e.normalizeClass(["button","button--"+a.value]),"aria-label":l.ariaLabel},e.toDisplayString(a.value==="close"?"":l.buttonText),11,Ie))}}),u=(t,o)=>{const r=t.__vccOpts||t;for(const[a,l]of o)r[a]=l;return r},S=u(Le,[["__scopeId","data-v-a3e038ec"]]),qe=t=>(e.pushScopeId("data-v-42c44141"),t=t(),e.popScopeId(),t),Te=["id","name","value","disabled","required"],ze=["for"],Pe=qe(()=>e.createElementVNode("span",{class:"checkmark"},null,-1)),Ae=e.defineComponent({__name:"checkbox",props:{name:{default:"checkbox"},value:{type:[String,Number,Boolean],default:"value"},disabled:{type:Boolean,default:!1},id:{default:"checkbox"},required:{type:Boolean,default:!1}},emits:["input"],setup(t,{emit:o}){const r=o,a=l=>{const i=l.target;r("input",i.checked)};return(l,i)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["checkbox__wrapper",l.disabled?"disabled":""])},[e.createElementVNode("input",{id:l.id,type:"checkbox",name:l.name,value:l.value,disabled:l.disabled,required:l.required,class:"checkbox__checkbox",onChange:a},null,40,Te),e.createElementVNode("label",{for:l.id,class:e.normalizeClass(["checkbox__label",l.required?"required":""])},[Pe,e.renderSlot(l.$slots,"default",{},void 0,!0)],10,ze)],2))}}),O=u(Ae,[["__scopeId","data-v-42c44141"]]),Me=t=>(e.pushScopeId("data-v-08813346"),t=t(),e.popScopeId(),t),Fe=["aria-label"],Oe=Me(()=>e.createElementVNode("img",{src:"https://a.storyblok.com/f/230581/9x9/e4fb715dc9/close.svg?cv=1695125714598",alt:"close",class:"close-icon"},null,-1)),Re=e.defineComponent({__name:"chip",props:{text:{default:""}},emits:["remove-chip"],setup(t){const o=t,r=e.computed(()=>`Chip: ${o.text}`);return(a,l)=>(e.openBlock(),e.createElementBlock("div",{class:"chip__wrapper",onClick:l[0]||(l[0]=i=>a.$emit("remove-chip"))},[e.createElementVNode("span",{class:"chip","aria-label":r.value},[e.createTextVNode(e.toDisplayString(a.text)+" ",1),Oe],8,Fe)]))}}),R=u(Re,[["__scopeId","data-v-08813346"]]),He=["value"],je=["id"],Ue={class:"listbox__dropdown"},Ke=["id","aria-labelledby","aria-disabled"],Ge=["aria-labelledby","aria-activedescendant"],Je=["aria-selected","data-value"],We=e.defineComponent({__name:"dropdown",props:{modelValue:{},label:{},options:{},name:{},placeholder:{default:"Choose a value"},showLabel:{type:Boolean,default:!1},required:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},variant:{default:"primary"}},emits:["update:modelValue"],setup(t,{emit:o}){const r={primary:"dropdown-dark-bg-primary",dark:"dropdown-dark dropdown-dark-bg-dark"},a=t,l=e.computed(()=>r[a.variant]),i=e.ref(null),s=e.ref(null),d=e.ref([]),h=e.ref(0),c=e.ref(""),f=e.ref(!0),k=e.ref(0),q=o,T=e.computed(()=>{const n=a.options.find(p=>p.value===a.modelValue);return n&&n.label}),V={beforeMount(n,p){n.clickOutsideEvent=function(_){n===_.target||n.contains(_.target)||p.value(_)},document.body.addEventListener("click",n.clickOutsideEvent)},unmounted(n){document.body.removeEventListener("click",n.clickOutsideEvent)}};function I(n){q("update:modelValue",n)}function z(n){var _;const p=n.target;p.getAttribute("role")==="option"&&(D(p),L(),(_=i.value)==null||_.focus())}function m(n){var _;const p=n.key;switch(p){case"ArrowUp":case"ArrowDown":{n.preventDefault();const v=a.options.findIndex(N=>N.value===a.modelValue);let b=v?d.value[v]:d.value[0];p==="ArrowUp"?v-1>=0&&(b=d.value[v-1]):v+1<=a.options.length&&(b=d.value[v+1]),b&&D(b);break}case"Home":case"PageUp":n.preventDefault(),Ne();break;case"End":case"PageDown":n.preventDefault(),Se();break;case"Enter":case"Escape":n.preventDefault(),L(),(_=i.value)==null||_.focus();break;default:{const v=Ee(p);v&&D(v);break}}}function E(n){if(!a.disabled)switch(n.key){case"ArrowUp":case"ArrowDown":n.preventDefault(),F(),m(n);break}}function P(n){n&&n.removeAttribute("aria-selected")}function w(){h.value&&(clearTimeout(h.value),h.value=0),h.value=setTimeout(()=>{c.value="",h.value=0},500)}function Ee(n){let p="";(c.value===""||p!==n)&&(k.value=a.options.findIndex(v=>v.value===a.modelValue)),c.value=p===n?n:c.value+n,p=n,w();let _=M(k.value+1,a.options.length);return!_&&c.value.length===1&&(_=M(0,k.value)),k.value=(k.value+1)%a.options.length,_}function M(n,p){for(let _=n;_<p;_++)if(a.options[_].label&&a.options[_].label.toUpperCase().indexOf(c.value.toUpperCase())===0)return d.value[_];return null}function Ne(){D(d.value[0])}function D(n){var _,v;const p=n.getAttribute("data-value");if(a.modelValue){const b=a.options.findIndex(De=>De.value===a.modelValue),N=d.value[b];P(N)}if(n.setAttribute("aria-selected","true"),(_=s.value)==null||_.setAttribute("aria-activedescendant",p||""),I(p||""),s.value&&s.value.scrollHeight>s.value.clientHeight){const b=s.value.clientHeight+s.value.scrollTop,N=n.offsetTop+n.offsetHeight;N>b?s.value.scrollTop=N-((v=s.value)==null?void 0:v.clientHeight):n.offsetTop<s.value.scrollTop&&(s.value.scrollTop=n.offsetTop)}}function Se(){var p;const n=(p=d.value)==null?void 0:p[a.options.length-1];D(n)}function L(){var n;f.value=!0,(n=i.value)==null||n.removeAttribute("aria-expanded")}function F(){var n,p;f.value=!1,(n=i.value)==null||n.setAttribute("aria-expanded","true"),(p=s.value)==null||p.focus()}function Ce(){a.disabled||(f.value?F():L())}return(n,p)=>(e.openBlock(),e.createElementBlock("div",{ref:"listbox",class:"listbox__wrapper",value:n.modelValue},[e.createElementVNode("label",{id:`${n.name}-label`,class:e.normalizeClass([{"listbox__label--visually-hidden":!n.showLabel,"is-disabled":n.disabled,"is-required":n.required},"listbox__label"])},e.toDisplayString(n.label),11,je),e.withDirectives((e.openBlock(),e.createElementBlock("div",Ue,[e.createElementVNode("button",{id:`${n.name}-button-label`,ref_key:"listboxButton",ref:i,"aria-labelledby":`${n.name}-label ${n.name}-button-label`,type:"button","aria-haspopup":"listbox","aria-disabled":n.disabled,class:e.normalizeClass(["listbox__button",l.value]),onClick:Ce,onKeydown:E},e.toDisplayString(n.modelValue?T.value:n.placeholder),43,Ke),e.withDirectives(e.createElementVNode("ul",{ref_key:"listboxNode",ref:s,"aria-labelledby":`${n.name}-label`,"aria-activedescendant":n.modelValue,tabindex:"0",role:"listbox",class:"listbox__list",onKeydown:m,onClick:z},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.options,(_,v)=>(e.openBlock(),e.createElementBlock("li",{key:`${n.name}-option-${v}`,ref_for:!0,ref_key:"listboxOptions",ref:d,"aria-selected":_.value===n.modelValue,"data-value":_.value,class:"listbox__option",role:"option"},e.toDisplayString(_.label),9,Je))),128))],40,Ge),[[e.vShow,!f.value]])])),[[V,L]])],8,He))}}),H=u(We,[["__scopeId","data-v-6a8da7a4"]]),Qe={class:"image__wrapper"},Ye=e.defineComponent({__name:"image",props:{src:{default:void 0},srcset:{default:void 0},sizes:{default:void 0},alt:{default:void 0},width:{default:void 0},height:{default:"auto"},loading:{default:"auto"}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",Qe,[e.renderSlot(o.$slots,"default",e.normalizeProps(e.guardReactiveProps(o.$attrs)))]))}}),y=u(Ye,[["__scopeId","data-v-e10217bd"]]),Ze={class:"label__wrapper"},Xe=["aria-label","label-dark"],xe=e.defineComponent({__name:"label",props:{text:{},labelDark:{type:Boolean,default:!1}},setup(t){const o=t,r=e.computed(()=>`Label: ${o.text}`);return(a,l)=>(e.openBlock(),e.createElementBlock("div",Ze,[e.createElementVNode("span",{"aria-label":r.value,"label-dark":a.labelDark,class:e.normalizeClass(a.labelDark?"label--dark":"label--light")},e.toDisplayString(a.text),11,Xe)]))}}),$=u(xe,[["__scopeId","data-v-7d9d3a8a"]]),et={class:"link__wrapper"},g=e.defineComponent({__name:"link",props:{linkType:{default:"regular"},arrow:{type:Boolean,default:!1},underline:{default:"false"},disabled:{type:Boolean,default:!1}},setup(t){const o={primary:"mir-link--btn button button--primary",secondary:"mir-link--btn button button--secondary",secondary_dark:"mir-link--btn button button--secondary-dark",regular:"regular-link",regular_dark:"regular-link-dark",regular_light:"regular-link-light",regular_blue:"regular-link-blue"},r={hover:"underline-hover",true:"add-underline",false:"remove-underline"},a=t,l=e.computed(()=>o[a.linkType]),i=e.computed(()=>r[a.underline]),s=e.computed(()=>{const{...d}=e.toRefs(a);return d});return(d,h)=>(e.openBlock(),e.createElementBlock("div",et,[e.createElementVNode("div",e.mergeProps(s.value,{class:["mir-link",[l.value,d.disabled?"disabled":"",i.value,d.arrow?"link-arrow":""]]}),[e.renderSlot(d.$slots,"default")],16)]))}}),tt=t=>(e.pushScopeId("data-v-fa1bda9b"),t=t(),e.popScopeId(),t),ot=["id","name","value","checked","disabled","required"],lt=["for"],at=tt(()=>e.createElementVNode("span",{class:"radiomark"},null,-1)),rt=e.defineComponent({__name:"radio-button",props:{name:{default:"radio"},value:{type:[String,Number,Boolean],default:"value"},checked:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},id:{default:"radio"},required:{type:Boolean,default:!1}},emits:["input"],setup(t,{emit:o}){const r=o,a=l=>{const i=l.target;r("input",i.checked)};return(l,i)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["radio__wrapper",l.disabled?"disabled":""])},[e.createElementVNode("input",{id:l.id,type:"radio",name:l.name,value:l.value,checked:l.checked,disabled:l.disabled,required:l.required,class:"radio__radio",onChange:a},null,40,ot),e.createElementVNode("label",{for:l.id,class:e.normalizeClass(["radio__label",l.required?"required":""])},[at,e.renderSlot(l.$slots,"default",{},void 0,!0)],10,lt)],2))}}),j=u(rt,[["__scopeId","data-v-fa1bda9b"]]),nt={class:"select__wrapper"},st=["for"],it=["id","disabled","name","value"],dt=["value"],ct=e.defineComponent({__name:"select",props:{id:{},name:{},options:{},modelValue:{},label:{},required:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1}},emits:["update:modelValue"],setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",nt,[e.createElementVNode("label",{for:o.id,class:e.normalizeClass([o.required?"required":"",o.disabled?"disabled":""])},e.toDisplayString(o.label),11,st),e.createElementVNode("select",{id:o.id,class:e.normalizeClass(o.disabled?"disabled":""),disabled:o.disabled,name:o.name,value:o.modelValue,onChange:r[0]||(r[0]=a=>{o.$emit("update:modelValue",a.target.value),a.target.blur()})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.options,a=>(e.openBlock(),e.createElementBlock("option",{key:a.value,value:a.value},e.toDisplayString(a.text),9,dt))),128))],42,it)]))}}),U=u(ct,[["__scopeId","data-v-d5c46463"]]),ut={class:"modal__wrapper"},mt=e.defineComponent({__name:"modal",props:{show:{type:Boolean,default:!1},searchBar:{type:Boolean,default:!1}},emits:["update:show"],setup(t,{emit:o}){const r=t,a=o,l=()=>{a("update:show",!r.show)};return(i,s)=>(e.openBlock(),e.createElementBlock("div",ut,[e.createVNode(e.Transition,{duration:300,name:"nested"},{default:e.withCtx(()=>[e.withDirectives(e.createElementVNode("div",{class:e.normalizeClass(["overlay",i.searchBar?"overlay-search":"overlay-default"]),ariaLabel:"modal",role:"dialog",onClick:l},[e.createElementVNode("div",{id:"modal",class:e.normalizeClass([i.searchBar?"search":""]),onClick:s[0]||(s[0]=e.withModifiers(()=>{},["stop"]))},[e.createElementVNode("div",null,[i.searchBar?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(S,{key:0,"aria-label":"close",variant:"close",onClick:l}))]),e.renderSlot(i.$slots,"default",{},void 0,!0)],2)],2),[[e.vShow,i.show]])]),_:3})]))}}),A=u(mt,[["__scopeId","data-v-80f0fb08"]]),pt={class:"slider__wrapper"},_t={class:"slider__label"},ht=["for"],ft=["aria-label"],vt={class:"slider__content"},kt=["id","name","value","min","step","max"],gt={class:"modal-information"},yt=e.defineComponent({__name:"slider",props:{label:{},id:{},name:{},modelValue:{},min:{},max:{},step:{default:"1"},variant:{default:"light"},information:{default:""},informationLabel:{default:"Additional information"}},emits:["update:modelValue"],setup(t,{emit:o}){const r=t,a=o,l=e.ref(r.modelValue),i=e.ref(),s=e.ref(!1),d=(c,f,k)=>(c-f)/(k-f)*100,h=c=>{var f;(f=i.value)==null||f.style.setProperty("--ProgressPercent",`${c}%`)};return e.watchEffect(()=>{if(i.value){a("update:modelValue",l.value);const c=d(l.value,r.min,r.max);let f=(50-c)/100;h(c+f)}}),(c,f)=>(e.openBlock(),e.createElementBlock("div",null,[e.createElementVNode("div",pt,[e.createElementVNode("div",_t,[e.createElementVNode("label",{for:c.id,class:e.normalizeClass([c.variant,""])},e.toDisplayString(c.label),11,ht),c.information?(e.openBlock(),e.createElementBlock("i",{key:0,role:"button",class:e.normalizeClass([c.variant,"slider__information"]),"aria-label":c.informationLabel,tabindex:"0","aria-haspopup":"dialog",onClick:f[0]||(f[0]=k=>s.value=!s.value),onKeyup:f[1]||(f[1]=e.withKeys(k=>s.value=!s.value,["enter"]))},null,42,ft)):e.createCommentVNode("",!0)]),e.createElementVNode("div",vt,[e.createElementVNode("span",{class:e.normalizeClass([c.variant,"slider__minmax"])},e.toDisplayString(c.min),3),e.createElementVNode("input",{id:c.id,ref_key:"slider",ref:i,type:"range",name:c.name,value:c.modelValue,min:c.min,step:c.step,max:c.max,class:e.normalizeClass(c.variant),onInput:f[2]||(f[2]=({target:k})=>l.value=parseFloat(k.value))},null,42,kt),e.createElementVNode("span",{class:e.normalizeClass([c.variant,"slider__minmax"])},e.toDisplayString(c.max),3)]),e.createElementVNode("span",{class:e.normalizeClass([c.variant,"slider__value"])},e.toDisplayString(c.modelValue),3)]),c.information?(e.openBlock(),e.createBlock(A,{key:0,show:s.value,"onUpdate:show":f[3]||(f[3]=k=>s.value=k)},{default:e.withCtx(()=>[e.createElementVNode("p",gt,e.toDisplayString(c.information),1)]),_:1},8,["show"])):e.createCommentVNode("",!0)]))}}),K=u(yt,[["__scopeId","data-v-24a83011"]]),bt={id:"textarea-wrapper"},Bt=["for"],wt=["id"],$t=["id","name","placeholder","required","disabled","maxlength","value"],Vt={class:"textarea-info"},Et={key:0},Nt=e.defineComponent({__name:"textarea",props:{id:{default:""},name:{default:""},placeholder:{default:""},required:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},labelText:{default:""},maxLength:{default:void 0},modelValue:{default:void 0}},emits:["update:modelValue"],setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",bt,[e.createElementVNode("label",{for:o.id,class:e.normalizeClass({required:o.required})},e.toDisplayString(o.labelText)+e.toDisplayString(o.required?" *":""),11,Bt),e.createElementVNode("div",{id:o.modelValue!==void 0&&o.modelValue.length===o.maxLength?"textarea-wrapper__inner":""},[e.createElementVNode("textarea",{id:o.id,rows:"10",cols:"50",name:o.name,placeholder:o.placeholder,required:o.required,disabled:o.disabled,maxlength:o.maxLength,value:o.modelValue,class:e.normalizeClass(o.modelValue!==void 0&&o.modelValue.length===o.maxLength?"reached-meter-limit":"border"),onInput:r[0]||(r[0]=a=>o.$emit("update:modelValue",a.target.value))},null,42,$t)],8,wt),e.createElementVNode("div",Vt,[e.createElementVNode("div",null,[o.modelValue!==void 0&&o.modelValue.length===o.maxLength?(e.openBlock(),e.createElementBlock("p",Et," Too many characters. Please make it shorter ")):e.createCommentVNode("",!0)]),e.createElementVNode("p",{class:e.normalizeClass(o.modelValue!==void 0&&o.modelValue.length===o.maxLength?"reached-meter-limit-meter":"")},e.toDisplayString(o.maxLength!==void 0&&o.modelValue!==void 0&&o.maxLength-o.modelValue.length>=0?o.modelValue.length:0)+" / "+e.toDisplayString(o.maxLength),3)])]))}}),G=u(Nt,[["__scopeId","data-v-220a973c"]]),St={class:"text-field__wrapper"},Ct=["for"],Dt={key:0},It=["id","type","value","placeholder","required","disabled","name"],Lt=["aria-expanded"],qt=["id","type","value","placeholder","required","disabled","name"],Tt={key:2,class:"search"},zt={key:3,class:"errorMessage"},Pt={key:4,class:"helperText"},At=e.defineComponent({__name:"text-field",props:{type:{default:"text"},fieldName:{default:""},modelValue:{},placeholder:{default:""},label:{default:""},id:{},disabled:{type:Boolean,default:!1},required:{type:Boolean,default:!1},invalid:{type:Boolean,default:!1},errorMessage:{default:""},helperText:{default:""},search:{type:Boolean,default:!1},valid:{type:Boolean,default:!1}},emits:["update:modelValue"],setup(t){const o={text:"text",email:"email",password:"password",number:"number",tel:"tel",url:"url",search:"search"},r=t,a=e.computed(()=>o[r.type]),l=e.ref(!0),i=e.computed(()=>l.value?"showPassword":"hidePassword"),s=e.computed(()=>l.value?"password":"text");return(d,h)=>(e.openBlock(),e.createElementBlock("div",St,[e.createElementVNode("label",{for:d.id,class:e.normalizeClass([d.required?"required":"",d.disabled?"disabled":"",d.search?"search":""])},e.toDisplayString(d.label),11,Ct),a.value==="password"?(e.openBlock(),e.createElementBlock("div",Dt,[e.createElementVNode("input",{id:d.id,ref:"passwordField",type:s.value,value:d.modelValue,placeholder:d.placeholder,required:d.required,disabled:d.disabled,name:d.fieldName,onInput:h[0]||(h[0]=c=>d.$emit("update:modelValue",c.target.value))},null,40,It),e.createElementVNode("i",{role:"button",class:e.normalizeClass([i.value]),"aria-controls":"password","aria-expanded":!l.value,onClick:h[1]||(h[1]=c=>l.value=!l.value)},null,10,Lt)])):(e.openBlock(),e.createElementBlock("input",{key:1,id:d.id,ref:"textField",type:a.value,value:d.modelValue,placeholder:d.placeholder,required:d.required,class:e.normalizeClass([d.invalid?"invalid":"",d.valid?"valid":"",d.search?"search":""]),disabled:d.disabled,name:d.fieldName,onInput:h[2]||(h[2]=c=>d.$emit("update:modelValue",c.target.value))},null,42,qt)),d.search?(e.openBlock(),e.createElementBlock("i",Tt)):e.createCommentVNode("",!0),d.errorMessage?(e.openBlock(),e.createElementBlock("strong",zt,e.toDisplayString(d.errorMessage),1)):e.createCommentVNode("",!0),d.helperText?(e.openBlock(),e.createElementBlock("span",Pt,e.toDisplayString(d.helperText),1)):e.createCommentVNode("",!0)]))}}),J=u(At,[["__scopeId","data-v-414b9435"]]),Mt={class:"video__wrapper"},Ft=["aria-label","controls","poster","width","height","autoplay","loop","muted","src"],Ot=["src","aria-label","title","width","height"],Rt=e.defineComponent({__name:"video",props:{play:{type:Boolean,default:!1},src:{},localVideo:{type:Boolean,default:!1},ariaLabel:{default:""},title:{default:""},controls:{type:Boolean,default:!0},poster:{default:""},width:{default:"100%"},height:{default:"auto"},autoplay:{type:Boolean,default:!1},loop:{type:Boolean,default:!1},muted:{type:Boolean,default:!1}},setup(t,{expose:o}){const r=t;let a=e.ref(null);return e.watchEffect(()=>{a.value&&(r.play?a.value.play():r.play||a.value.pause())}),o({resetVideo:()=>{a.value&&(a.value.currentTime=0,a.value.play())}}),(i,s)=>(e.openBlock(),e.createElementBlock("div",Mt,[i.localVideo?(e.openBlock(),e.createElementBlock("video",{key:0,ref_key:"videoRef",ref:a,"aria-label":i.ariaLabel,controls:i.controls,poster:i.poster,width:i.width,height:i.height,autoplay:i.autoplay,loop:i.loop,muted:i.muted,type:"video/mp4",playsinline:"",src:i.src},null,8,Ft)):(e.openBlock(),e.createElementBlock("iframe",{key:1,src:i.src,"aria-label":i.ariaLabel,title:i.title,width:i.width,height:i.height,frameborder:"0",allow:"autoplay; fullscreen",allowfullscreen:""},null,8,Ot))]))}}),C=u(Rt,[["__scopeId","data-v-c6a0feb6"]]),Ht={class:"address__wrapper"},jt={class:"address__content"},Ut={class:"address__flag"},Kt={class:"address__address"},Gt={class:"address__name"},Jt={key:0},Wt={class:"address__contact"},Qt=["href"],Yt=["href"],Zt=["href"],Xt=e.defineComponent({__name:"address",props:{name:{},company:{},addressLine1:{},addressLine2:{},addressLine3:{default:void 0},website:{default:void 0},phoneNumbers:{},email:{}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",Ht,[e.createElementVNode("div",jt,[e.createElementVNode("div",Ut,[e.renderSlot(o.$slots,"address-flag",{},void 0,!0)]),e.createElementVNode("div",Kt,[e.createElementVNode("p",Gt,e.toDisplayString(o.name),1),e.createElementVNode("p",null,e.toDisplayString(o.company),1),e.createElementVNode("p",null,e.toDisplayString(o.addressLine1),1),e.createElementVNode("p",null,e.toDisplayString(o.addressLine2),1),o.addressLine3?(e.openBlock(),e.createElementBlock("p",Jt,e.toDisplayString(o.addressLine3),1)):e.createCommentVNode("",!0)]),e.createElementVNode("div",Wt,[o.website?(e.openBlock(),e.createBlock(g,{key:0,underline:"false","link-type":"regular"},{default:e.withCtx(()=>[e.createElementVNode("a",{href:"https://"+o.website,class:"address__website"},e.toDisplayString(o.website),9,Qt)]),_:1})):e.createCommentVNode("",!0),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.phoneNumbers,a=>(e.openBlock(),e.createBlock(g,{key:a,underline:"false","link-type":"regular"},{default:e.withCtx(()=>[e.createElementVNode("a",{href:"tel:"+a,class:"address__phone"},e.toDisplayString(a),9,Yt)]),_:2},1024))),128)),e.createElementVNode("a",{href:"mailto:"+o.email,class:"address__email"},e.toDisplayString(o.email),9,Zt)])])]))}}),W=u(Xt,[["__scopeId","data-v-e1c72a18"]]),xt=t=>(e.pushScopeId("data-v-a44fd57d"),t=t(),e.popScopeId(),t),eo={class:"bullet-list__wrapper"},to=xt(()=>e.createElementVNode("i",{class:"checkmark"},null,-1)),oo=e.defineComponent({__name:"bullet-list",props:{list:{type:Array,required:!0,validator(t){return t.length<=5}},variant:{type:String,required:!1,default:"light",validator(t){return["light"].includes(t)}}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",eo,[e.createElementVNode("div",{class:e.normalizeClass(["bullet-list",t.variant])},[e.createElementVNode("ul",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.list,a=>(e.openBlock(),e.createElementBlock("li",{key:a},[to,e.createTextVNode(" "+e.toDisplayString(a),1)]))),128))])],2)]))}}),Q=u(oo,[["__scopeId","data-v-a44fd57d"]]),lo={class:"card__wrapper"},ao={key:2},ro={key:5},no=e.defineComponent({__name:"card",props:{variant:{default:"product"},theme:{default:"light"},linkType:{default:"link"},headline:{default:""},paragraph:{default:""},size:{default:"small"},mediaType:{default:"image"},orientation:{default:"horizontal"},srcSet:{default:""},url:{default:""},imgSrc:{default:""},videoSrc:{default:""},arialabel:{default:""},poster:{default:""},labelText:{default:""},alt:{default:""}},emits:["clicked"],setup(t){const o=e.useSlots();let r=e.ref(!1);const a={small:{class:"card--small",width:"298",height:"186"},medium:{class:"card--medium",width:"432",height:"243"},large:{class:"card--large",width:"596",height:"335"}},l=t,i=e.computed(()=>a[l.size]);return(s,d)=>(e.openBlock(),e.createElementBlock("div",lo,[e.createElementVNode("div",{class:e.normalizeClass(["card",[s.theme==="dark"?"card--dark":"card--light",s.orientation==="vertical"?"vertical":"horizontal",i.value.class,s.size==="large"&&s.variant==="article"?"card--large-article":"",s.variant==="product"?"card--product":"card--article"]]),style:e.normalizeStyle([s.variant==="product"?"font-weight: 700":"font-weight: 300"]),onMouseover:d[0]||(d[0]=h=>e.isRef(r)?r.value=!0:r=!0),onMouseout:d[1]||(d[1]=h=>e.isRef(r)?r.value=!1:r=!1)},[s.mediaType==="image"?(e.openBlock(),e.createBlock(y,{key:0},{default:e.withCtx(()=>[e.renderSlot(s.$slots,"card-image",e.mergeProps({src:s.imgSrc,width:"596",height:"335",alt:s.alt,loading:"auto",sizes:"(min-width: 581px) 582px, 100vw"},{srcset:s.srcSet}))]),_:3})):(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(["video-card__wrapper",e.unref(r)===!0?"vimeoPlaying":""])},[e.createVNode(C,{play:e.unref(r),"local-video":!0,src:s.videoSrc,"aria-label":s.arialabel,controls:!1,poster:s.imgSrc,width:i.value.width,height:i.value.height,autoplay:!0,loop:!0,muted:!0},null,8,["play","src","aria-label","poster","width","height"])],2)),e.unref(o)["card-label"]?(e.openBlock(),e.createElementBlock("div",ao,[e.renderSlot(s.$slots,"card-label")])):e.createCommentVNode("",!0),s.variant==="product"?(e.openBlock(),e.createElementBlock("div",{key:3,class:e.normalizeClass(["card__headline",s.theme==="dark"?"regular-dark":"regular-blue"]),style:{"font-weight":"700"}},e.toDisplayString(s.headline),3)):(e.openBlock(),e.createElementBlock("div",{key:4,class:e.normalizeClass(["card__headline",s.theme==="dark"?"regular-dark":"regular-dark-blue"])},e.toDisplayString(s.headline),3)),s.variant==="product"?(e.openBlock(),e.createElementBlock("p",ro,e.toDisplayString(s.paragraph),1)):e.createCommentVNode("",!0)],38)]))}}),Y=u(no,[["__scopeId","data-v-351c5fbb"]]),so=t=>(e.pushScopeId("data-v-2c394add"),t=t(),e.popScopeId(),t),io={class:"event__wrapper"},co={class:"event__headline"},uo={class:"event__date-location"},mo=so(()=>e.createElementVNode("br",null,null,-1)),po={class:"event__exhibitor"},_o=e.defineComponent({__name:"event-card",props:{eventType:{type:String,required:!0},headline:{type:String,required:!0},dateTime:{type:String,required:!0},location:{type:String,required:!0},exhibitor:{type:String,required:!0}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",io,[e.createVNode($,{"label-dark":!1,text:t.eventType?t.eventType:""},null,8,["text"]),e.createElementVNode("div",co,e.toDisplayString(t.headline),1),e.createElementVNode("div",uo,[e.createTextVNode(e.toDisplayString(t.dateTime),1),mo,e.createTextVNode(e.toDisplayString(t.location),1)]),e.createElementVNode("div",po,e.toDisplayString(t.exhibitor),1)]))}}),Z=u(_o,[["__scopeId","data-v-2c394add"]]),ho={class:"text__wrapper"},fo={class:"text__headline"},vo={class:"text__paragraph"},ko=e.defineComponent({__name:"text-card",props:{label:{type:String,required:!0},headline:{type:String,required:!0},paragraph:{type:String,required:!0}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",ho,[e.createVNode($,{"label-dark":!1,text:t.label?t.label:""},null,8,["text"]),e.createElementVNode("div",fo,e.toDisplayString(t.headline),1),e.createElementVNode("div",vo,[e.createElementVNode("p",null,e.toDisplayString(t.paragraph),1)])]))}}),X=u(ko,[["__scopeId","data-v-ebdea819"]]),go={class:"facts__wrapper"},yo={class:"facts__content"},bo={class:"facts__headline"},Bo={class:"facts"},wo={class:"fact__value"},$o={class:"fact__metric"},Vo={key:0,class:"facts__link"},Eo=e.defineComponent({__name:"facts",props:{headline:{default:""},facts:{default:()=>[{value:"",metric:""},{value:"",metric:""},{value:"",metric:""}]},link:{default:()=>({title:"",url:""})}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",go,[e.createElementVNode("div",yo,[e.createElementVNode("h2",bo,e.toDisplayString(o.headline),1),e.createElementVNode("div",Bo,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.facts,a=>(e.openBlock(),e.createElementBlock("div",{key:a.value+a.metric,class:"fact"},[e.createElementVNode("div",wo,[e.createElementVNode("span",null,e.toDisplayString(a.value),1)]),e.createElementVNode("div",$o,[e.createElementVNode("span",null,e.toDisplayString(a.metric),1)])]))),128))]),o.link?(e.openBlock(),e.createElementBlock("div",Vo,[e.createVNode(g,{"link-type":"regular_light",arrow:""},{default:e.withCtx(()=>[e.renderSlot(o.$slots,"facts-link",{},void 0,!0)]),_:3})])):e.createCommentVNode("",!0)])]))}}),x=u(Eo,[["__scopeId","data-v-d2b231d4"]]),No={class:"features__wrapper"},So={class:"features__content"},Co={key:0,class:"features__headline"},Do={key:1,class:"features__body"},Io={class:"element__headline"},Lo={class:"element__body"},qo=e.defineComponent({__name:"features",props:{headline:{default:""},body:{default:""},elements:{default:()=>[]}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",No,[e.createElementVNode("div",So,[o.headline?(e.openBlock(),e.createElementBlock("div",Co,[e.createElementVNode("h2",null,e.toDisplayString(o.headline),1)])):e.createCommentVNode("",!0),o.body?(e.openBlock(),e.createElementBlock("div",Do,[e.renderSlot(o.$slots,"features-body",{},void 0,!0)])):e.createCommentVNode("",!0),e.createElementVNode("div",{class:e.normalizeClass(["features__elements",[o.elements.length===6?"features__elements--grid-6":""]])},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.elements,a=>(e.openBlock(),e.createElementBlock("div",{key:a.headline,class:"features__element"},[e.createVNode(y,{class:"element__icon"},{default:e.withCtx(()=>[e.renderSlot(o.$slots,"features-icon",e.normalizeProps(e.guardReactiveProps({src:a.icon.src,height:30,width:30,alt:a.icon.alt})),void 0,!0)]),_:2},1024),e.createElementVNode("p",Io,e.toDisplayString(a.headline),1),e.createElementVNode("p",Lo,e.toDisplayString(a.body),1)]))),128))],2)])]))}}),ee=u(qo,[["__scopeId","data-v-57a22df7"]]),To={class:"form__wrapper"},zo={class:"form__content"},Po={class:"form__information"},Ao={class:"form__headline"},Mo={class:"form__body"},Fo={class:"form__script"},Oo=e.defineComponent({__name:"form-script",props:{headline:{type:String,default:""}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",To,[e.createElementVNode("div",zo,[e.createElementVNode("div",Po,[e.createElementVNode("h2",Ao,e.toDisplayString(t.headline),1),e.createElementVNode("div",Mo,[e.renderSlot(o.$slots,"form-body",{},void 0,!0)])]),e.createElementVNode("div",Fo,[e.renderSlot(o.$slots,"form-script",{},void 0,!0)])])]))}}),te=u(Oo,[["__scopeId","data-v-87a67c13"]]),Ro={class:"image__wrapper"},Ho={class:"image__content"},jo={class:"image__image"},Uo={class:"image__caption"},Ko=e.defineComponent({inheritAttrs:!1,__name:"image",props:{caption:{type:String,required:!1,default:""},src:{type:String,required:!0},alt:{type:String,required:!0}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",Ro,[e.createElementVNode("div",Ho,[e.createElementVNode("div",jo,[e.createVNode(y,null,{default:e.withCtx(()=>[e.renderSlot(o.$slots,"image",e.normalizeProps(e.guardReactiveProps({width:984,height:554,src:t.src,alt:t.alt})))]),_:3})]),e.createElementVNode("p",Uo,e.toDisplayString(t.caption),1)])]))}}),oe=u(Ko,[["__scopeId","data-v-79ce0bb6"]]),Go={class:"gallery__large"},Jo={key:0,class:"image image--large"},Wo={key:1,class:"video"},Qo={key:0,class:"body"},Yo=e.defineComponent({__name:"image-gallery",props:{mediaLarge:{},mediaType:{default:"image"},mediaSmall:{},body:{default:""},flipHorizontal:{type:Boolean,default:!1},flipVertical:{type:Boolean,default:!1},bgColor:{default:"white"}},setup(t){const o={white:"",light:"gallery__wrapper--light",dark:"gallery__wrapper--dark mirsaic--dark"},r=t,a=e.computed(()=>o[r.bgColor]);return(l,i)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["gallery__wrapper",a.value])},[e.createElementVNode("div",{class:e.normalizeClass(["gallery__content",l.flipHorizontal?"gallery__content--reverse":"gallery__content--default"])},[e.createElementVNode("div",Go,[l.mediaLarge&&l.mediaType==="image"?(e.openBlock(),e.createElementBlock("div",Jo,[e.createVNode(y,null,{default:e.withCtx(()=>[e.renderSlot(l.$slots,"image-large",e.normalizeProps(e.guardReactiveProps({width:617,height:530,src:l.mediaLarge.src,alt:l.mediaLarge.alt})))]),_:3})])):e.createCommentVNode("",!0),l.mediaLarge&&l.mediaType==="video"?(e.openBlock(),e.createElementBlock("div",Wo,[e.createVNode(C,{src:l.mediaLarge.src,"local-video":"","aria-label":l.mediaLarge.alt,controls:!1,height:"530",width:"617",autoplay:"",loop:"",muted:"",play:""},null,8,["src","aria-label"])])):e.createCommentVNode("",!0)]),e.createElementVNode("div",{style:e.normalizeStyle([l.mediaSmall.length===2?"grid-gap: 38px;":""]),class:e.normalizeClass(["gallery__small",l.flipVertical?"gallery__small--reverse":"gallery__small--default"])},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.mediaSmall,s=>(e.openBlock(),e.createElementBlock("div",{key:s.src+s.alt,class:"image image--small"},[e.createVNode(y,null,{default:e.withCtx(()=>[e.renderSlot(l.$slots,"image-small",e.normalizeProps(e.guardReactiveProps({width:328,height:246,src:s.src,alt:s.alt})))]),_:2},1024)]))),128)),l.mediaSmall.length<2?(e.openBlock(),e.createElementBlock("div",Qo,[e.createElementVNode("p",null,e.toDisplayString(l.body),1)])):e.createCommentVNode("",!0)],6)],2)],2))}}),le=u(Yo,[["__scopeId","data-v-0d271138"]]),Zo={class:"headline__wrapper"},Xo={class:"headline__h1"},xo=e.defineComponent({__name:"headline",props:{headline:{type:String,required:!0},article:{type:Boolean,required:!1},subMenu:{type:Boolean,required:!1}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",Zo,[e.createElementVNode("div",{class:e.normalizeClass({"headline__content--article-and-submenu":t.article&&t.subMenu,"headline__content--article":t.article&&!t.subMenu,"headline__content--default headline__content--submenu":!t.article&&t.subMenu,"headline__content--default":!t.article&&!t.subMenu})},[e.createElementVNode("h1",Xo,e.toDisplayString(t.headline),1)],2)]))}}),ae=u(xo,[["__scopeId","data-v-3ef1567e"]]),el=t=>(e.pushScopeId("data-v-22f9be13"),t=t(),e.popScopeId(),t),tl={class:"hero__wrapper"},ol={class:"hero__content"},ll={class:"hero__top"},al={class:"hero__elements"},rl={class:"hero__headline"},nl={class:"hero__link"},sl={class:"hero__video"},il=el(()=>e.createElementVNode("div",{class:"hero__gradient"},null,-1)),dl={class:"hero__video__video"},cl={class:"hero__image"},ul=e.defineComponent({__name:"hero",props:{headline:{type:String,required:!0}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",tl,[e.createElementVNode("div",ol,[e.createElementVNode("div",ll,[e.createElementVNode("div",al,[e.createElementVNode("div",rl,[e.createElementVNode("h1",null,e.toDisplayString(t.headline),1)]),e.createElementVNode("div",nl,[e.createVNode(g,{"link-type":"regular_light",arrow:""},{default:e.withCtx(()=>[e.renderSlot(o.$slots,"hero-link",{},void 0,!0)]),_:3})])])]),e.createElementVNode("div",sl,[il,e.createElementVNode("div",dl,[e.renderSlot(o.$slots,"hero-video",{},void 0,!0)]),e.createElementVNode("div",cl,[e.renderSlot(o.$slots,"hero-image",{},void 0,!0)])])])]))}}),re=u(ul,[["__scopeId","data-v-22f9be13"]]),ml={class:"logo-wall__wrapper"},pl={class:"logo-wall__content"},_l={key:0,class:"logo-wall__text"},hl={key:0},fl={key:1},vl={class:"logo-wall__logos"},kl={class:"logo-wall__link"},gl=e.defineComponent({__name:"logo-wall",props:{headline:{type:String,default:""},body:{type:String,default:""},logos:{type:Array,required:!0,validator:t=>t.length<=5}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",ml,[e.createElementVNode("div",pl,[t.headline||t.body?(e.openBlock(),e.createElementBlock("div",_l,[t.headline?(e.openBlock(),e.createElementBlock("h2",hl,e.toDisplayString(t.headline),1)):e.createCommentVNode("",!0),t.body?(e.openBlock(),e.createElementBlock("p",fl,e.toDisplayString(t.body),1)):e.createCommentVNode("",!0)])):e.createCommentVNode("",!0),e.createElementVNode("div",vl,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.logos,a=>(e.openBlock(),e.createElementBlock("div",{key:a.src+a.alt,class:"logo-wall__logo"},[e.createVNode(y,null,{default:e.withCtx(()=>[e.renderSlot(o.$slots,"logo-wall-logo",e.normalizeProps(e.guardReactiveProps({width:130,height:130,src:a.src,alt:a.alt})),void 0,!0)]),_:2},1024)]))),128))]),e.createElementVNode("div",kl,[e.createVNode(g,{"link-type":"regular_light",arrow:!0},{default:e.withCtx(()=>[e.renderSlot(o.$slots,"logo-wall-link",{},void 0,!0)]),_:3})])])]))}}),ne=u(gl,[["__scopeId","data-v-fd489289"]]),yl={class:"micro-stories__top"},bl={key:0,class:"headline"},Bl={key:1,class:"body"},wl={class:"micro-stories__splide"},se=e.defineComponent({__name:"micro-stories",props:{bgColor:{default:"blue"},headline:{default:""},body:{default:""}},setup(t){const o={white:"micro-stories__wrapper--white",blue:"micro-stories__wrapper--blue",dark:"micro-stories__wrapper--dark"},r=e.computed(()=>o[a.bgColor]),a=t;return(l,i)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["micro-stories__wrapper",r.value])},[e.createElementVNode("div",yl,[l.headline?(e.openBlock(),e.createElementBlock("div",bl,[e.createElementVNode("h2",null,e.toDisplayString(l.headline),1)])):e.createCommentVNode("",!0),l.body?(e.openBlock(),e.createElementBlock("div",Bl,[e.createElementVNode("p",null,e.toDisplayString(l.body),1)])):e.createCommentVNode("",!0)]),e.createElementVNode("div",wl,[e.renderSlot(l.$slots,"micro-stories-slides")]),e.renderSlot(l.$slots,"micro-stories-controls")],2))}}),$l={},Vl={class:"policy__wrapper"},El={class:"policy__content"};function Nl(t,o){return e.openBlock(),e.createElementBlock("div",Vl,[e.createElementVNode("div",El,[e.renderSlot(t.$slots,"default",{},void 0,!0)])])}const ie=u($l,[["render",Nl],["__scopeId","data-v-ea887d7a"]]),Sl={class:"card-display__wrapper"},Cl={key:0,class:"card__content"},Dl={key:0},Il={key:1},Ll={class:"card__cards"},ql=e.defineComponent({__name:"card-display",props:{headline:{type:String,default:""},paragraph:{type:String,default:""},bgColor:{type:String,default:"white"}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["card-display",t.bgColor==="blue"?"card-display--blue":"card-display--white"])},[e.createElementVNode("div",Sl,[t.headline||t.paragraph?(e.openBlock(),e.createElementBlock("div",Cl,[t.headline?(e.openBlock(),e.createElementBlock("h2",Dl,e.toDisplayString(t.headline),1)):e.createCommentVNode("",!0),t.paragraph?(e.openBlock(),e.createElementBlock("p",Il,e.toDisplayString(t.paragraph),1)):e.createCommentVNode("",!0)])):e.createCommentVNode("",!0),e.createElementVNode("div",Ll,[e.renderSlot(o.$slots,"card-display-cards",{},void 0,!0)])])],2))}}),de=u(ql,[["__scopeId","data-v-e8033cff"]]),Tl={class:"promo__content"},zl=e.defineComponent({__name:"promo",props:{label:{default:""},linkText:{default:""},mediaType:{default:"image"},src:{},alt:{},fallbackImage:{},reverse:{type:Boolean,default:!1},variant:{default:"default"},linkType:{default:"link"},teaser:{type:Boolean,default:!1},multiply:{type:Boolean,default:!1}},setup(t){const o={dark:"promo__wrapper--dark",light:"promo__wrapper--light",default:"promo__wrapper--default"},r=t,a=e.computed(()=>o[r.variant]);return(l,i)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["promo__wrapper",a.value,l.teaser?"promo__wrapper--teaser":"",l.multiply?"promo__wrapper--multiply":""])},[e.createElementVNode("div",Tl,[l.mediaType==="image"?(e.openBlock(),e.createElementBlock("div",{key:0,class:e.normalizeClass(["promo__image",l.reverse?"promo__image--reverse":"promo__image--default"])},[e.createVNode(y,null,{default:e.withCtx(()=>[e.renderSlot(l.$slots,"promo-image",e.normalizeProps(e.guardReactiveProps({src:l.src,width:1920,alt:l.alt,height:1080})))]),_:3})],2)):e.createCommentVNode("",!0),l.mediaType==="video"?(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(["promo__video",l.reverse?"promo__video--reverse":"promo__video--default"])},[e.createVNode(C,{src:l.src,"local-video":"","aria-label":l.alt,controls:!1,autoplay:"",loop:"",muted:"",play:"",poster:l.fallbackImage},null,8,["src","aria-label","poster"])],2)):e.createCommentVNode("",!0),e.createElementVNode("div",{class:e.normalizeClass(["promo__text",l.reverse?"promo__text--reverse":"promo__text--default"])},[l.label?(e.openBlock(),e.createBlock($,{key:0,text:l.label,"label-dark":l.variant==="dark"},null,8,["text","label-dark"])):e.createCommentVNode("",!0),e.createElementVNode("div",{class:e.normalizeClass(["promo__title",l.variant==="dark"?"promo__title--dark":""])},[e.renderSlot(l.$slots,"promo-headline")],2),l.linkType==="link"?(e.openBlock(),e.createBlock(g,{key:1,"link-type":l.variant==="dark"?"regular_dark":(l.variant==="light","regular_light"),arrow:""},{default:e.withCtx(()=>[e.renderSlot(l.$slots,"promo-link")]),_:3},8,["link-type"])):e.createCommentVNode("",!0),l.linkType==="button"?(e.openBlock(),e.createBlock(g,{key:2,"link-type":l.variant==="dark"?"secondary_dark":(l.variant==="light","secondary")},{default:e.withCtx(()=>[e.renderSlot(l.$slots,"promo-link")]),_:3},8,["link-type"])):e.createCommentVNode("",!0)],2)])],2))}}),ce=u(zl,[["__scopeId","data-v-df54d965"]]),Pl=t=>(e.pushScopeId("data-v-e3cc8e27"),t=t(),e.popScopeId(),t),Al={class:"quote__wrapper"},Ml={class:"quote__content"},Fl=Pl(()=>e.createElementVNode("p",{class:"quote__quote-mark"},"“",-1)),Ol={class:"quote__quote"},Rl={class:"quote__quote-text"},Hl={class:"quote__author"},jl={key:0,class:"quote__image"},Ul={class:"quote__text"},Kl={class:"quote__author-name"},Gl={class:"quote__author-title"},Jl=e.defineComponent({__name:"quote",props:{quote:{type:String,required:!0},author:{type:String,required:!0},authorTitle:{type:String,required:!0},authorImage:{type:String,required:!1,default:void 0}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",Al,[e.createElementVNode("div",Ml,[Fl,e.createElementVNode("div",Ol,[e.createElementVNode("p",Rl,e.toDisplayString(t.quote),1),e.createElementVNode("div",Hl,[t.authorImage?(e.openBlock(),e.createElementBlock("div",jl,[e.createVNode(y,null,{default:e.withCtx(()=>[e.renderSlot(o.$slots,"author-image",e.normalizeProps(e.guardReactiveProps({src:t.authorImage+"/m/100x100",width:60,height:60})))]),_:3})])):e.createCommentVNode("",!0),e.createElementVNode("div",Ul,[e.createElementVNode("p",Kl,e.toDisplayString(t.author),1),e.createElementVNode("p",Gl,e.toDisplayString(t.authorTitle),1)])])])])]))}}),ue=u(Jl,[["__scopeId","data-v-e3cc8e27"]]),Wl={class:"rich-text__wrapper"},Ql={key:0,class:"rich-text__links"},Yl={key:0,class:"rich-text__bullet-list"},Zl=e.defineComponent({__name:"rich-text",props:{headline:{default:""},leftAligned:{type:Boolean,default:!1},links:{type:Boolean,default:!1},bulletList:{type:Boolean,default:!1},image:{type:Boolean,default:!1},imageClip:{type:Boolean,default:!0},bgColor:{default:"white"},label:{default:""}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["rich-text",o.bgColor==="blue"?"rich-text--blue":"rich-text--white"])},[e.createElementVNode("div",Wl,[o.label?(e.openBlock(),e.createBlock($,{key:0,text:o.label,"label-dark":!1},null,8,["text"])):e.createCommentVNode("",!0),o.headline?(e.openBlock(),e.createElementBlock("h2",{key:1,class:e.normalizeClass(["rich-text__headline",o.leftAligned||o.bulletList||o.image?"rich-text__headline--left-aligned":"rich-text__headline--centered"])},e.toDisplayString(o.headline),3)):e.createCommentVNode("",!0),e.createElementVNode("div",{class:e.normalizeClass(["rich-text__content",o.leftAligned||o.bulletList||o.image?"rich-text__content--left-aligned":"rich-text__content--centered"])},[e.createElementVNode("div",{class:e.normalizeClass(["rich-text__body",o.bulletList||o.image?"rich-text__body--content-right":""])},[e.renderSlot(o.$slots,"rich-text-content"),o.links?(e.openBlock(),e.createElementBlock("div",Ql,[e.renderSlot(o.$slots,"rich-text-links")])):e.createCommentVNode("",!0)],2),o.bulletList?(e.openBlock(),e.createElementBlock("div",Yl,[e.renderSlot(o.$slots,"rich-text-bullet-list")])):e.createCommentVNode("",!0),o.image?(e.openBlock(),e.createElementBlock("div",{key:1,class:e.normalizeClass(["rich-text__image",o.imageClip?"rich-text__image--clip":""])},[e.createVNode(y,null,{default:e.withCtx(()=>[e.renderSlot(o.$slots,"rich-text-image",e.normalizeProps(e.guardReactiveProps({width:865,height:307})))]),_:3})],2)):e.createCommentVNode("",!0)],2)])],2))}}),me=u(Zl,[["__scopeId","data-v-8bb69ea4"]]),Xl={},xl={class:"rich-text"},ea={class:"rich-text__wrapper"},ta={class:"rich-text__content rich-text__content--left-aligned"},oa={class:"rich-text__body"};function la(t,o){return e.openBlock(),e.createElementBlock("div",xl,[e.createElementVNode("div",ea,[e.createElementVNode("div",ta,[e.createElementVNode("div",oa,[e.createElementVNode("div",null,[e.renderSlot(t.$slots,"rich-text-content-left",{},void 0,!0)]),e.createElementVNode("div",null,[e.renderSlot(t.$slots,"rich-text-content-right",{},void 0,!0)])])])])])}const pe=u(Xl,[["render",la],["__scopeId","data-v-2881b194"]]),aa=t=>(e.pushScopeId("data-v-e254e1e0"),t=t(),e.popScopeId(),t),ra={class:"timeline__wrapper"},na={class:"timeline__content"},sa={class:"timeline__items"},ia={class:"item__left"},da=aa(()=>e.createElementVNode("div",{class:"item__elements"},[e.createElementVNode("div",{class:"circle"}),e.createElementVNode("div",{class:"line"})],-1)),ca={class:"item__right"},ua=["innerHTML"],ma=e.defineComponent({__name:"timeline",props:{timelineItems:{type:Array,required:!0}},setup(t){return e.onMounted(()=>{const o=document.querySelectorAll(".timeline__item"),r=new IntersectionObserver(a=>{a.forEach(l=>{l.isIntersecting&&(l.target.classList.add("visible"),l.target.classList.remove("faded"),r.unobserve(l.target))})},{threshold:1});o.forEach(a=>{r.observe(a)})}),(o,r)=>(e.openBlock(),e.createElementBlock("div",ra,[e.createElementVNode("div",na,[e.createElementVNode("div",sa,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.timelineItems,a=>(e.openBlock(),e.createElementBlock("div",{key:a.year,class:"timeline__item faded"},[e.createElementVNode("div",ia,e.toDisplayString(a.year),1),da,e.createElementVNode("div",ca,[e.createVNode(y,null,{default:e.withCtx(()=>[a.media.src?e.renderSlot(o.$slots,"timeline-image",e.normalizeProps(e.mergeProps({key:0},{src:a.media.src,alt:a.media.alt})),void 0,!0):e.createCommentVNode("",!0)]),_:2},1024),e.createElementVNode("div",{style:e.normalizeStyle([a.media.src?"":"margin-top: 0px"]),class:"rich-text",innerHTML:a.text},null,12,ua)])]))),128))])])]))}}),_e=u(ma,[["__scopeId","data-v-e254e1e0"]]),pa={class:"vimeo"},_a={class:"vimeo__wrapper"},ha={key:0,class:"vimeo__headline"},fa={key:1,class:"vimeo__description"},va=e.defineComponent({__name:"vimeo",props:{headline:{type:String,default:""},description:{type:String,default:""}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",pa,[e.createElementVNode("div",_a,[t.headline?(e.openBlock(),e.createElementBlock("h2",ha,e.toDisplayString(t.headline),1)):e.createCommentVNode("",!0),e.renderSlot(o.$slots,"vimeo-content",{},void 0,!0),t.description?(e.openBlock(),e.createElementBlock("p",fa,e.toDisplayString(t.description),1)):e.createCommentVNode("",!0)])]))}}),he=u(va,[["__scopeId","data-v-90a2b109"]]),ka={class:"academy-overview"},ga={class:"academy-overview__content-wrapper"},ya={class:"academy-overview__content"},ba={class:"academy-overview__title"},Ba={class:"academy-overview__description"},wa={key:0,class:"academy-overview__stats"},$a={class:"academy-overview__stats-row"},Va={class:"academy-overview__stat"},Ea={class:"academy-overview__value"},Na={class:"academy-overview__label"},Sa={class:"academy-overview__stat"},Ca={class:"academy-overview__value"},Da={class:"academy-overview__label"},Ia={class:"academy-overview__stat"},La={class:"academy-overview__value"},qa={class:"academy-overview__label"},Ta={key:1,class:"academy-overview__button-wrapper"},za=e.defineComponent({__name:"frontpage-hero",props:{hero:{default:()=>({headline:"Welcome back",description:"Explore our Academy - an education hub packed with x hours of free live and on-demand content.",lessonValue:0,lessonLabel:"Lessons Completed",minutesValue:0,minutesLabel:"Minutes spent",pointsValue:0,pointsLabel:"Points",showStats:!1})}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",ka,[e.createElementVNode("div",ga,[e.createElementVNode("div",ya,[e.createElementVNode("h1",ba,e.toDisplayString(o.hero.headline),1),e.createElementVNode("p",Ba,e.toDisplayString(o.hero.description),1),o.hero.showStats?(e.openBlock(),e.createElementBlock("div",wa,[e.createElementVNode("div",$a,[e.createElementVNode("div",Va,[e.createElementVNode("div",Ea,e.toDisplayString(o.hero.lessonValue),1),e.createElementVNode("div",Na,e.toDisplayString(o.hero.lessonLabel),1)]),e.createElementVNode("div",Sa,[e.createElementVNode("div",Ca,e.toDisplayString(o.hero.minutesValue),1),e.createElementVNode("div",Da,e.toDisplayString(o.hero.minutesLabel),1)]),e.createElementVNode("div",Ia,[e.createElementVNode("div",La,e.toDisplayString(o.hero.pointsValue),1),e.createElementVNode("div",qa,e.toDisplayString(o.hero.pointsLabel),1)])])])):e.createCommentVNode("",!0),o.hero.showStats?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("div",Ta,[e.createVNode(e.unref(S),{"aria-label":"sign in",variant:"primary","button-text":"Sign in"})]))])])]))}}),fe=u(za,[["__scopeId","data-v-6dcefaba"]]),Pa={class:"not-found__wrapper"},Aa={class:"not-found__content"},Ma={class:"not-found__headline"},Fa={class:"not-found__body"},Oa=e.defineComponent({__name:"404",props:{headline:{type:String,required:!0}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",Pa,[e.createElementVNode("div",Aa,[e.createElementVNode("h1",Ma,e.toDisplayString(t.headline),1),e.createElementVNode("div",Fa,[e.renderSlot(o.$slots,"not-found-body",{},void 0,!0)])])]))}}),ve=u(Oa,[["__scopeId","data-v-b829ca6c"]]),Ra={class:"filter__wrapper"},Ha={class:"filter__content"},ja={class:"filter__dropdowns"},Ua={class:"filter__chips"},Ka=e.defineComponent({__name:"filter",props:{hasChips:{type:Boolean,default:!1},removeAll:{type:String,default:"Remove all filters"}},emits:["clearFilters"],setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",Ra,[e.createElementVNode("div",Ha,[e.createElementVNode("div",ja,[e.renderSlot(o.$slots,"filter-dropdowns")]),e.createElementVNode("div",Ua,[e.renderSlot(o.$slots,"filter-chips"),t.hasChips?(e.openBlock(),e.createElementBlock("button",{key:0,class:"filter__clear",onClick:r[0]||(r[0]=a=>o.$emit("clearFilters"))},e.toDisplayString(t.removeAll),1)):e.createCommentVNode("",!0)])])]))}}),ke=u(Ka,[["__scopeId","data-v-31c1ba00"]]),B=t=>(e.pushScopeId("data-v-aa82b03d"),t=t(),e.popScopeId(),t),Ga={class:"footer__wrapper"},Ja={class:"footer__content"},Wa={class:"footer__sections"},Qa={class:"section__title"},Ya={class:"section__list"},Za={class:"section"},Xa=B(()=>e.createElementVNode("span",{class:"section__title"},"Mobile Industrial Robots A/S",-1)),xa=B(()=>e.createElementVNode("span",null,"Emil Neckelmanns Vej 15F",-1)),er=B(()=>e.createElementVNode("span",null,"DK-5220 Odense SØ",-1)),tr=B(()=>e.createElementVNode("span",null,"CVR: 35251235",-1)),or=B(()=>e.createElementVNode("br",null,null,-1)),lr=B(()=>e.createElementVNode("a",{href:"mailto:mail@mir-robots.com"},"mail@mir-robots.com",-1)),ar=B(()=>e.createElementVNode("a",{href:"tel:+4520377577"},"+45 20 377 577",-1)),rr={class:"footer__bottom"},nr={class:"copyright"},sr={class:"footer__policy"},ir=B(()=>e.createElementVNode("i",{class:"change-region"},null,-1)),dr={key:0,class:"footer__social"},cr=["href","aria-label"],ur={key:1,class:"footer__social"},mr=["href","aria-label"],pr=e.defineComponent({__name:"footer",props:{language:{default:""},footerSections:{default:()=>[]},privacyPolicy:{default:void 0},cookiePolicy:{default:void 0},socialMedia:{default:()=>[]},socialMediaChina:{default:()=>[]},changeRegion:{default:""}},emits:["changeRegionClicked"],setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",Ga,[e.createElementVNode("footer",Ja,[e.createElementVNode("div",Wa,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.footerSections,a=>(e.openBlock(),e.createElementBlock("div",{key:a.title,class:"section"},[e.createElementVNode("span",Qa,e.toDisplayString(a.title),1),e.createElementVNode("nav",null,[e.createElementVNode("ul",Ya,[e.renderSlot(o.$slots,"section-links",{links:a.links})])])]))),128)),e.createElementVNode("div",Za,[Xa,e.createElementVNode("address",null,[xa,er,tr,or,e.createVNode(g,{class:"footer__contact","link-type":"regular_light",underline:"false"},{default:e.withCtx(()=>[lr]),_:1}),e.createVNode(g,{class:"footer__contact","link-type":"regular_light",underline:"false"},{default:e.withCtx(()=>[ar]),_:1})])])]),e.createElementVNode("div",rr,[e.createElementVNode("p",nr," © Mobile Industrial Robots "+e.toDisplayString(new Date().getFullYear()),1),e.createElementVNode("div",sr,[e.createElementVNode("button",{class:"footer__language-switcher",onClick:r[0]||(r[0]=a=>o.$emit("changeRegionClicked"))},[e.createElementVNode("span",null,[ir,e.createTextVNode(e.toDisplayString(o.changeRegion),1)])]),e.renderSlot(o.$slots,"footer-privacy-link"),e.renderSlot(o.$slots,"footer-cookie-link")]),o.language!=="zh"?(e.openBlock(),e.createElementBlock("div",dr,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.socialMedia,a=>(e.openBlock(),e.createBlock(g,{key:a.title,underline:"false","link-type":"regular"},{default:e.withCtx(()=>[e.createElementVNode("a",{href:a.url,target:"_blank","aria-label":a.title},[e.createElementVNode("i",{width:"19",height:"14",class:e.normalizeClass(["footer__social--icon",[a.title?"bg-"+a.title:""]])},null,2)],8,cr)]),_:2},1024))),128))])):(e.openBlock(),e.createElementBlock("div",ur,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.socialMediaChina,a=>(e.openBlock(),e.createBlock(g,{key:a.title,underline:"false","link-type":"regular"},{default:e.withCtx(()=>[e.createElementVNode("a",{href:a.url,target:"_blank","aria-label":a.title},[e.createElementVNode("i",{width:"19",height:"14",class:e.normalizeClass(["footer__social--icon",[a.title?"bg-"+a.title:""]])},null,2)],8,mr)]),_:2},1024))),128))]))])])]))}}),ge=u(pr,[["__scopeId","data-v-aa82b03d"]]),_r={class:"header__wrapper"},hr={class:"nav-wrapper"},fr={class:"mir-link-logo"},vr={class:"main-nav-items"},kr={key:0,id:"menu-dropdown",ref:"dropdownDiv"},gr={key:0,src:"https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",alt:"dropdownarrow"},yr={key:1,src:"https://a.storyblok.com/f/230581/9x6/8cecdca15f/arrow-down.svg?cv=1695125714195",alt:"dropdownarrow",style:{transform:"rotate(180deg)"}},br={class:"dropdown-content"},Br={class:"nav-search-wrapper"},wr=["src"],$r={key:1,id:"menu-portal-switcher",class:"portal-switcher-wrapper"},Vr={key:0,src:"https://a.storyblok.com/f/230581/14x12/1b00a4a551/portal-switcher.svg?cv=1712916615032",alt:"portalswitchericon",width:"20",height:"20"},Er={key:1,src:"https://a.storyblok.com/f/230581/14x12/1b00a4a551/portal-switcher.svg?cv=1712916615032",alt:"portalswitchericon",width:"20",height:"20"},Nr={class:"portal-switcher-content"},Sr={key:2,id:"menu-profile-dropdown",class:"profile-dropdown-wrapper"},Cr={key:0,src:"https://a.storyblok.com/f/230581/15x14/3b3253dd12/icon-user.svg?cv=1712916615014",alt:"profiledropdownicon",width:"20",height:"20"},Dr={key:1,src:"https://a.storyblok.com/f/230581/15x14/3b3253dd12/icon-user.svg?cv=1712916615014",alt:"profiledropdownicon",width:"20",height:"20"},Ir={class:"profile-dropdown-content"},Lr={class:"mobile-logo-search-burger-wrapper"},qr={class:"mobile-mir-link-logo"},Tr={class:"mobile-search-wrapper"},zr=["src"],Pr=["src"],Ar={class:"mobile-menu-content-wrapper"},Mr={class:"mobile-dropdown-content"},Fr=e.defineComponent({__name:"header",props:{burgerState:{type:Boolean,default:!1},showDropDown:{type:Boolean,default:!1},useDropdown:{type:Boolean,default:!1},showPortalSwitcherDropDown:{type:Boolean,default:!1},usePortalSwitcher:{type:Boolean,default:!1},showProfileDropDown:{type:Boolean,default:!1},useProfileDropdown:{type:Boolean,default:!1}},emits:["update:burgerState","update:showDropDown","update:showPortalSwitcherDropDown","update:showProfileDropDown","clickSearch"],setup(t,{expose:o,emit:r}){let a=null;const l=t;let i=e.ref(l.burgerState),s=e.ref(l.showDropDown),d=e.ref(l.showPortalSwitcherDropDown),h=e.ref(l.showProfileDropDown);e.watch(()=>l.burgerState,m=>i.value=m),e.watch(()=>l.showDropDown,m=>s.value=m),e.watch(()=>l.showPortalSwitcherDropDown,m=>d.value=m),e.watch(()=>l.showProfileDropDown,m=>h.value=m),e.onMounted(()=>{a=m=>{m.target.closest("#menu-dropdown")||(s.value=!1),m.target.closest("#menu-portal-switcher")||(d.value=!1),m.target.closest("#menu-profile-dropdown")||(h.value=!1)},window.addEventListener("click",a)}),e.onUnmounted(()=>{a!==null&&window.removeEventListener("click",a)});const c=r;function f(){s.value=!s.value,c("update:showDropDown",s.value)}function k(){d.value=!d.value,c("update:showPortalSwitcherDropDown",d.value)}function q(){h.value=!h.value,c("update:showProfileDropDown",h.value)}function T(){i.value=!i.value,c("update:burgerState",i.value)}let V=e.ref(null),I=e.ref(null);function z(){V.value&&V.value.blur()}return o({defocusSearchButton:z}),(m,E)=>(e.openBlock(),e.createElementBlock("div",_r,[e.createElementVNode("nav",null,[e.createElementVNode("div",hr,[e.createElementVNode("div",fr,[e.renderSlot(m.$slots,"link-logo",{},void 0,!0)]),e.createElementVNode("ul",vr,[e.renderSlot(m.$slots,"main-nav-items",{},void 0,!0)]),t.useDropdown?(e.openBlock(),e.createElementBlock("div",kr,[e.createElementVNode("button",{class:"nav-dropdown-btn",onClick:f},[e.renderSlot(m.$slots,"dropdown-title",{},void 0,!0),e.unref(s)===!1?(e.openBlock(),e.createElementBlock("img",gr)):(e.openBlock(),e.createElementBlock("img",yr))]),e.withDirectives(e.createElementVNode("div",br,[e.renderSlot(m.$slots,"dropdown-links",{},void 0,!0)],512),[[e.vShow,e.unref(s)]])],512)):e.createCommentVNode("",!0),e.createElementVNode("div",Br,[e.createElementVNode("button",{ref_key:"navSearchButton",ref:V,class:"search-icon",onClick:E[0]||(E[0]=P=>{var w;return m.$emit("clickSearch"),(w=e.unref(V))==null?void 0:w.blur()})},[e.createElementVNode("img",{src:e.unref(i)===!0?"https://a.storyblok.com/f/230581/21x21/13f4ac189d/search-icon-white.svg?cv=1695125826080":"https://a.storyblok.com/f/230581/21x21/ebbdca38d3/search-icon.svg?cv=1695125825901",alt:"search icon",width:"20",height:"20"},null,8,wr)],512)]),t.usePortalSwitcher?(e.openBlock(),e.createElementBlock("div",$r,[e.createElementVNode("button",{class:"nav-portal-switcher-btn",onClick:k},[e.renderSlot(m.$slots,"portal-switcher-title",{},void 0,!0),e.unref(d)===!1?(e.openBlock(),e.createElementBlock("img",Vr)):(e.openBlock(),e.createElementBlock("img",Er))]),e.withDirectives(e.createElementVNode("div",Nr,[e.renderSlot(m.$slots,"portal-switcher-links",{},void 0,!0)],512),[[e.vShow,e.unref(d)]])])):e.createCommentVNode("",!0),t.useProfileDropdown?(e.openBlock(),e.createElementBlock("div",Sr,[e.createElementVNode("button",{class:"nav-profile-dropdown-btn",onClick:q},[e.renderSlot(m.$slots,"porfile-dropdown-title",{},void 0,!0),e.unref(h)===!1?(e.openBlock(),e.createElementBlock("img",Cr)):(e.openBlock(),e.createElementBlock("img",Dr))]),e.withDirectives(e.createElementVNode("div",Ir,[e.renderSlot(m.$slots,"profile-dropdown-links",{},void 0,!0)],512),[[e.vShow,e.unref(h)]])])):e.createCommentVNode("",!0)]),e.createElementVNode("div",{class:e.normalizeClass(["mobile-nav-wrapper",e.unref(i)===!0?"mirsaic-mobile-bg mirsaic--dark":""])},[e.createElementVNode("div",Lr,[e.createElementVNode("div",qr,[e.renderSlot(m.$slots,"link-logo",{},void 0,!0)]),e.createElementVNode("div",Tr,[e.createElementVNode("button",{ref_key:"mobileSearchButton",ref:I,class:"search-icon","aria-label":"Toggle search",onClick:E[1]||(E[1]=P=>{var w;return m.$emit("clickSearch"),(w=e.unref(I))==null?void 0:w.blur()})},[e.createElementVNode("img",{src:e.unref(i)===!0?"https://a.storyblok.com/f/230581/21x21/13f4ac189d/search-icon-white.svg?cv=1695125826080":"https://a.storyblok.com/f/230581/21x21/ebbdca38d3/search-icon.svg?cv=1695125825901",alt:"search icon",width:"20",height:"20"},null,8,zr)],512)]),e.createElementVNode("button",{class:"mobile-burger-wrapper","aria-label":"Toggle menu",onClick:e.withModifiers(T,["prevent"])},[e.createElementVNode("img",{width:"20",height:"20",alt:"burger menu line icon",src:e.unref(i)===!0?"https://a.storyblok.com/f/230581/17x18/20e9329e46/close-white.svg":"https://a.storyblok.com/f/230581/23x14/739e917bca/burger-menu-line.svg"},null,8,Pr)])]),e.withDirectives(e.createElementVNode("div",Ar,[e.createElementVNode("ul",null,[e.renderSlot(m.$slots,"mobile-main-nav-items",{},void 0,!0)]),e.createElementVNode("ul",Mr,[e.renderSlot(m.$slots,"mobile-dropdown-title",{},void 0,!0),e.renderSlot(m.$slots,"mobile-dropdown-links",{},void 0,!0)])],512),[[e.vShow,e.unref(i)]])],2)])]))}}),ye=u(Fr,[["__scopeId","data-v-d641eedd"]]),Or={class:"language__wrapper"},Rr={class:"language__content"},Hr={class:"language__headline"},jr={class:"language__paragraph"},Ur={class:"language__links"},Kr=e.defineComponent({__name:"language-switcher",props:{headline:{type:String,default:""},paragraph:{type:String,default:""}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",Or,[e.createElementVNode("div",Rr,[e.createElementVNode("h2",Hr,e.toDisplayString(t.headline),1),e.createElementVNode("p",jr,e.toDisplayString(t.paragraph),1),e.createElementVNode("div",Ur,[e.renderSlot(o.$slots,"language-links",{},void 0,!0)])])]))}}),be=u(Kr,[["__scopeId","data-v-dc8cc97e"]]),Gr={class:"pagination__wrapper"},Jr={class:"pagination__content"},Wr=e.defineComponent({__name:"pagination",props:{isPreviousDisabled:{type:Boolean,required:!0},isNextDisabled:{type:Boolean,required:!0}},emits:["previous","next"],setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",Gr,[e.createElementVNode("div",Jr,[e.createVNode(S,{disabled:t.isPreviousDisabled,variant:"previous","aria-label":"previous",onClick:r[0]||(r[0]=a=>o.$emit("previous"))},null,8,["disabled"]),e.renderSlot(o.$slots,"pagination-numbers"),e.createVNode(S,{disabled:t.isNextDisabled,variant:"next","aria-label":"next",onClick:r[1]||(r[1]=a=>o.$emit("next"))},null,8,["disabled"])])]))}}),Be=u(Wr,[["__scopeId","data-v-da6d07c9"]]),Qr={},Yr={class:"search__wrapper"};function Zr(t,o){return e.openBlock(),e.createElementBlock("div",Yr,[e.renderSlot(t.$slots,"default",{class:"search__content"})])}const we=u(Qr,[["render",Zr],["__scopeId","data-v-623adb82"]]),Xr={class:"product-hero__wrapper"},xr={class:"product-hero__content"},en={class:"product-hero__headline"},tn={class:"product-hero__video"},on={class:"product-hero__insignia"},ln={key:0,class:"product-hero__logo"},an={key:1,class:"product-hero__certification"},rn=e.defineComponent({__name:"product-hero",props:{headline:{type:String,default:"",required:!0},videoSrc:{type:String,default:"",required:!0},ariaLabel:{type:String,default:"",required:!0},imgSrc:{type:String,default:"",required:!0},logoSrc:{type:String,default:"",required:!1},isCertified:{type:Boolean,default:!1,required:!1}},setup(t){return(o,r)=>(e.openBlock(),e.createElementBlock("div",Xr,[e.createElementVNode("div",xr,[e.createElementVNode("div",en,e.toDisplayString(t.headline),1),e.createElementVNode("div",tn,[t.videoSrc!==""?(e.openBlock(),e.createBlock(C,{key:0,play:"","local-video":!0,src:t.videoSrc,"aria-label":t.ariaLabel,controls:!1,poster:t.imgSrc,autoplay:"",loop:"",muted:""},null,8,["src","aria-label","poster"])):(e.openBlock(),e.createBlock(e.unref(y),{key:1},{default:e.withCtx(()=>[e.renderSlot(o.$slots,"product-hero-image",{},void 0,!0)]),_:3})),e.createElementVNode("div",on,[t.logoSrc?(e.openBlock(),e.createElementBlock("div",ln,[e.createVNode(e.unref(y),null,{default:e.withCtx(()=>[e.renderSlot(o.$slots,"product-hero-logo",{},void 0,!0)]),_:3})])):e.createCommentVNode("",!0),t.isCertified?(e.openBlock(),e.createElementBlock("div",an,[e.createVNode(e.unref(y),null,{default:e.withCtx(()=>[e.renderSlot(o.$slots,"product-hero-certification",{},void 0,!0)]),_:3})])):e.createCommentVNode("",!0)])])])]))}}),$e=u(rn,[["__scopeId","data-v-deab9c3a"]]),nn={class:"promo__content"},sn={class:"pallet-jack__media-wrap"},dn={class:"pallet-jack-link"},cn={class:"pallet-jack__media-wrap__inner-wrap"},un={class:"pallet-jack__media-wrap__content-wrap"},mn={class:"regular-blue"},pn=e.defineComponent({__name:"pallet-jack",props:{label:{default:""},headline:{},linkText:{default:""},reverse:{type:Boolean,default:!1},variant:{default:"default"},linkType:{default:"link"},teaser:{type:Boolean,default:!1},shortDescription:{default:""},text:{default:""}},setup(t){const o={dark:"promo__wrapper--dark",light:"promo__wrapper--light",default:"promo__wrapper--default"},r=t,a=e.computed(()=>o[r.variant]);return(l,i)=>(e.openBlock(),e.createElementBlock("div",{class:e.normalizeClass(["promo__wrapper",a.value,l.teaser?"promo__wrapper--teaser":""])},[e.createElementVNode("div",nn,[e.createElementVNode("div",{class:e.normalizeClass(["promo__video",l.reverse?"promo__video--reverse":"promo__video--default"])},[e.createElementVNode("div",sn,[e.createElementVNode("div",dn,[e.renderSlot(l.$slots,"pallet-jack-link")]),e.createElementVNode("div",cn,[e.renderSlot(l.$slots,"pallet-jack-video")]),e.createElementVNode("div",un,[e.createElementVNode("h3",mn,e.toDisplayString(l.headline),1),e.createElementVNode("p",null,e.toDisplayString(l.shortDescription),1)])])],2),e.createElementVNode("div",{class:e.normalizeClass(["promo__text",l.reverse?"promo__text--reverse":"promo__text--default"])},[l.label?(e.openBlock(),e.createBlock($,{key:0,text:l.label,"label-dark":l.variant==="dark"},null,8,["text","label-dark"])):e.createCommentVNode("",!0),e.createElementVNode("div",{class:e.normalizeClass(["promo__title",l.variant==="dark"?"promo__title--dark":""])},[e.renderSlot(l.$slots,"promo-text")],2),l.linkType==="link"?(e.openBlock(),e.createBlock(g,{key:1,"link-type":l.variant==="dark"?"regular_dark":(l.variant==="light","regular_light"),arrow:""},{default:e.withCtx(()=>[e.renderSlot(l.$slots,"promo-link")]),_:3},8,["link-type"])):e.createCommentVNode("",!0),l.linkType==="button"?(e.openBlock(),e.createBlock(g,{key:2,"link-type":l.variant==="dark"?"secondary_dark":(l.variant==="light","secondary")},{default:e.withCtx(()=>[e.renderSlot(l.$slots,"promo-link")]),_:3},8,["link-type"])):e.createCommentVNode("",!0)],2)])],2))}}),Ve=u(pn,[["__scopeId","data-v-00c0bad3"]]),_n={install:t=>{t.component("AtomButton",S),t.component("AtomCheckbox",O),t.component("AtomChip",R),t.component("AtomDropdown",H),t.component("AtomImage",y),t.component("AtomLabel",$),t.component("AtomLink",g),t.component("AtomRadioButton",j),t.component("AtomSelect",U),t.component("AtomSlider",K),t.component("AtomTextarea",G),t.component("AtomTextField",J),t.component("AtomVideo",C),t.component("MoleculeAddress",W),t.component("MoleculeBulletList",Q),t.component("MoleculeCard",Y),t.component("MoleculeEventCard",Z),t.component("MoleculeModal",A),t.component("MoleculeTextCard",X),t.component("BlockFacts",x),t.component("BlockFeatures",ee),t.component("BlockFormScript",te),t.component("BlockHeadline",ae),t.component("BlockHero",re),t.component("BlockImage",oe),t.component("BlockImageGallery",le),t.component("BlockLogoWall",ne),t.component("BlockMicroStories",se),t.component("BlockPolicy",ie),t.component("BlockProductHero",$e),t.component("BlockPromo",ce),t.component("BlockQuote",ue),t.component("BlockRichText",me),t.component("BlockRichTextColumns",pe),t.component("BlockTimeline",_e),t.component("BlockCardDisplay",de),t.component("BlockVimeo",he),t.component("BlockPalletJack",Ve),t.component("BlockFrontPageHero",fe),t.component("Organism404",ve),t.component("OrganismFilter",ke),t.component("OrganismFooter",ge),t.component("OrganismHeader",ye),t.component("OrganismLanguageSwitcher",be),t.component("OrganismPagination",Be),t.component("OrganismSearch",we)}};exports.AtomButton=S;exports.AtomCheckbox=O;exports.AtomChip=R;exports.AtomDropdown=H;exports.AtomImage=y;exports.AtomLabel=$;exports.AtomLink=g;exports.AtomRadioButton=j;exports.AtomSelect=U;exports.AtomSlider=K;exports.AtomTextField=J;exports.AtomTextarea=G;exports.AtomVideo=C;exports.BlockCardDisplay=de;exports.BlockFacts=x;exports.BlockFeatures=ee;exports.BlockFormScript=te;exports.BlockFrontPageHero=fe;exports.BlockHeadline=ae;exports.BlockHero=re;exports.BlockImage=oe;exports.BlockImageGallery=le;exports.BlockLogoWall=ne;exports.BlockMicroStories=se;exports.BlockPalletJack=Ve;exports.BlockPolicy=ie;exports.BlockProductHero=$e;exports.BlockPromo=ce;exports.BlockQuote=ue;exports.BlockRichText=me;exports.BlockRichTextColumns=pe;exports.BlockTimeline=_e;exports.BlockVimeo=he;exports.MoleculeAddress=W;exports.MoleculeBulletList=Q;exports.MoleculeCard=Y;exports.MoleculeEventCard=Z;exports.MoleculeModal=A;exports.MoleculeTextCard=X;exports.Organism404=ve;exports.OrganismFilter=ke;exports.OrganismFooter=ge;exports.OrganismHeader=ye;exports.OrganismLanguageSwitcher=be;exports.OrganismPagination=Be;exports.OrganismSearch=we;exports.default=_n;