{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/iEq8iMGewbdUxupubbir/QywuzFK7ml19h1iYj337/Address.js", "ssg:https://framerusercontent.com/modules/yer12NHbwjSsmMdcfYsO/0mDxunJej3V7e0iivkzx/WRbVXnrw_.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import*as React from\"react\";import{Frame,addPropertyControls,ControlType}from\"framer\";async function fetchAdditions(area_code,house_number){const response=await fetch(`https://api.energyzero.nl/v2/metering-point/location/check?area_code=${area_code}&house_number=${house_number}`,{headers:{accept:\"application/json, text/plain, */*\",\"content-type\":\"application/json\"},referrerPolicy:\"strict-origin-when-cross-origin\",method:\"POST\",mode:\"cors\",credentials:\"omit\",body:\"{}\"});if(!response.ok){throw new Error(\"Failed to fetch additions\");}const data=await response.json();if(!data.house_additions.length){throw new Error(\"No additions found for this house number.\");}return data;}// Custom debounce function\nconst debounce=(func,delay)=>{let timeoutId;return(...args)=>{clearTimeout(timeoutId);timeoutId=setTimeout(()=>{func(...args);},delay);};};export function LocationCheckForm(props){var _result_house_additions;const[postcode,setPostcode]=React.useState(\"\");const[error,setError]=React.useState(\"\");const[houseNumber,setHouseNumber]=React.useState(\"\");const[result,setResult]=React.useState(null);const[selectedAddition,setSelectedAddition]=React.useState(\"\");const[loading,setLoading]=React.useState(false);const handleInitialSubmit=async(postcode,houseNumber)=>{setLoading(true);try{const result=await fetchAdditions(postcode,houseNumber);setResult(result);setError(\"\");if(result.house_additions.length===0){setError(\"No additions available for this address. Please proceed without selecting an addition.\");}else if(result.house_additions.length===1&&result.house_additions[0]!==\"\"){setSelectedAddition(result.house_additions[0]);}else{setSelectedAddition(\"Geen\");}}catch(error){setError(\"Het opgegeven adres is ongeldig\");}setTimeout(()=>{setLoading(false);},750);};// Wrap the API call with debounce\nconst debouncedFetchAdditionsApiCall=debounce(handleInitialSubmit,750);React.useEffect(()=>{setError(\"\")// Clear previous error\n;setResult(null)// Clear previous additions\n;// 1. Added regex to make sure postalCode is complete and valid\n// Normalize postal code to uppercase\nconst cleanPostcode=postcode.trim().toUpperCase();// 2. Added regex to make sure houseNumber is complete and valid\nconst cleanHouseNumber=parseInt(houseNumber.replace(/[^0-9]/g,\"\"),10);// Only save postal code if it's a valid postal code\nif(/^(?:\\d{0,3}|\\d{4}\\s?[A-Z]{0,2})$/.test(cleanPostcode)&&!isNaN(cleanHouseNumber)){debouncedFetchAdditionsApiCall(cleanPostcode,cleanHouseNumber);}},[houseNumber,postcode]);const handleFinalSubmit=()=>{let url=\"https://get.hegg.energy/entry/address?houseNumber=\"+houseNumber+\"&houseNumberAddition=\"+selectedAddition.replace(\"Geen\",\"\")+\"&postalCode=\"+postcode+\"&ref=widget\";window.location.href=url;};return /*#__PURE__*/_jsxs(Frame,{size:\"100%\",style:{background:\"none\",height:\"auto\",position:\"relative\"},children:[/*#__PURE__*/_jsxs(\"style\",{children:[` \n                ::placeholder { \n                    color: #D9D9D9; \n                }`,`\n                    select[disabled] {\n                        filter: opacity(0.75);\n                    }\n                `]}),/*#__PURE__*/_jsxs(\"div\",{style:{display:\"grid\",gridTemplateColumns:props.direction?\"1fr\":\"1fr 1fr\",// flexDirection: props.direction ? \"column\" : \"row\", // switch between column and row based on the direction toggle\ngap:\"24px\",padding:\"0\"},children:[/*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"row\",order:\"1\",gap:\"8px\",padding:\"0\"},children:[/*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\"},children:[/*#__PURE__*/_jsx(\"label\",{style:{position:\"absolute\",top:\"8px\",left:\"8px\",fontSize:\"12px\",fontFamily:\"'DIN Condensed Bold', 'DIN Condensed Bold Placeholder', sans-serif\",textTransform:\"uppercase\"},children:\"Postcode\"}),/*#__PURE__*/_jsx(\"input\",{type:\"text\",value:postcode,onChange:e=>{if(houseNumber!==\"\"){setHouseNumber(\"\");}setPostcode(e.target.value);},placeholder:\"1234AB\",style:{width:\"100%\",height:\"64px\",padding:\"18px 8px 8px 8px\",background:\"#fff\",color:\"#3e4836\",border:\"1px #ddd solid\",fontSize:\"24px\",fontStyle:\"normal\",fontWeight:\"400\",fontFamily:\"'PT Serif', 'PT Serif Placeholder', serif\"}})]}),/*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\"},children:[/*#__PURE__*/_jsx(\"label\",{style:{position:\"absolute\",top:\"8px\",left:\"8px\",fontSize:\"12px\",fontFamily:\"'DIN Condensed Bold', 'DIN Condensed Bold Placeholder', sans-serif\",textTransform:\"uppercase\"},children:\"Huisnummer\"}),/*#__PURE__*/_jsx(\"input\",{type:\"text\",value:houseNumber,onChange:e=>{setHouseNumber(e.target.value);},placeholder:\"12\",style:{width:\"100%\",height:\"64px\",padding:\"18px 8px 8px 8px\",background:\"#fff\",color:\"#3e4836\",border:\"1px #ddd solid\",fontSize:\"24px\",fontStyle:\"normal\",fontWeight:\"400\",fontFamily:\"'PT Serif', 'PT Serif Placeholder', serif\"}})]}),/*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\"},children:[/*#__PURE__*/_jsx(\"label\",{style:{position:\"absolute\",top:\"8px\",left:\"8px\",fontSize:\"12px\",fontFamily:\"'DIN Condensed Bold', 'DIN Condensed Bold Placeholder', sans-serif\",textTransform:\"uppercase\"},children:\"Toevoeging\"}),/*#__PURE__*/_jsx(\"select\",{onChange:e=>setSelectedAddition(e.target.value),value:selectedAddition,style:{width:\"64px\",height:\"64px\",padding:\"18px 8px 8px 8px\",background:\"#fff\",color:\"#3e4836\",border:\"1px #ddd solid\",fontSize:\"24px\",fontStyle:\"normal\",fontWeight:\"400\",fontFamily:\"'PT Serif', 'PT Serif Placeholder', serif\"},disabled:result&&result.house_additions.filter(ha=>ha!==\"\").length>=1?null:\"disabled\",children:result===null||result===void 0?void 0:(_result_house_additions=result.house_additions)===null||_result_house_additions===void 0?void 0:_result_house_additions.map((addition,index)=>addition===\"\"?/*#__PURE__*/_jsx(\"option\",{selected:true,children:\"Geen\"},index):/*#__PURE__*/_jsx(\"option\",{value:addition,children:addition},index))})]})]}),result||error&&!loading?/*#__PURE__*/_jsxs(\"div\",{style:{gridColumn:props.direction?\"span 1\":\"span 2\",order:props.direction?\"1\":\"4\",padding:\"12px\",borderRadius:\"999px\",background:\"#f5f5f5\",fontSize:\"14px\",fontStyle:\"normal\",fontWeight:\"400\",fontFamily:\"'PT Serif', 'PT Serif Placeholder', serif\"},children:[(result===null||result===void 0?void 0:result.street_name)&&(result===null||result===void 0?void 0:result.house_number)&&/*#__PURE__*/_jsxs(\"p\",{children:[result.street_name,\" \",result.house_number,selectedAddition&&selectedAddition!==\"Geen\"?\" \"+selectedAddition:\"\",\", \",postcode,\" \",result.city]}),error&&/*#__PURE__*/_jsx(\"p\",{children:error&&/*#__PURE__*/_jsx(\"div\",{children:error})})]}):null,/*#__PURE__*/_jsx(\"button\",{onClick:handleFinalSubmit,disabled:!selectedAddition,style:{order:\"3\",width:\"100%\",// appearance: \"none\",\npadding:\"12px 16px\",height:\"64px\",cursor:\"pointer\",backgroundColor:\"#3e4836\",color:\"#fff\",border:\"0\",borderRadius:\"999px\",fontSize:\"32px\",fontFamily:\"'DIN Condensed Bold', 'DIN Condensed Bold Placeholder', sans-serif\",textTransform:\"uppercase\"},children:props.buttonTitle})]})]});}addPropertyControls(LocationCheckForm,{direction:{type:ControlType.Boolean,title:\"Toggle\",enabledTitle:\"Vertical\",disabledTitle:\"Horizontal\"},buttonTitle:{type:ControlType.String,title:\"Button title\",defaultValue:\"Check jouw aanbod\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"LocationCheckForm\":{\"type\":\"reactComponent\",\"name\":\"LocationCheckForm\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Address.map", "// Generated by Framer (b2780b5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/mavLG2IA6e9IBgQ995gH/Si3dq5AzVvsRgST8iaHP/NRGhZVzFr.js\";const MaterialFonts=getFonts(Material);const SlideshowFonts=getFonts(Slideshow);const cycleOrder=[\"SkWnRTp7Y\",\"Y6pERHyLf\"];const serializationHash=\"framer-c5g3n\";const variantClassNames={SkWnRTp7Y:\"framer-v-gmhs9h\",Y6pERHyLf:\"framer-v-woah89\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Default:\"SkWnRTp7Y\",Slideshow:\"Y6pERHyLf\"};const getProps=({color,height,id,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,dek8kUS_s:(_ref=color!==null&&color!==void 0?color:props.dek8kUS_s)!==null&&_ref!==void 0?_ref:\"var(--token-51bf05cd-b74c-4e79-9337-f8897e9b61f6, rgb(62, 72, 54))\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"SkWnRTp7Y\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,dek8kUS_s,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"SkWnRTp7Y\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"Y6pERHyLf\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"Y6pERHyLf\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-gmhs9h\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"SkWnRTp7Y\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({Y6pERHyLf:{\"data-framer-name\":\"Slideshow\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cpazqb\",layoutDependency:layoutDependency,layoutId:\"MuRUwaMrb\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1by97ym\",layoutDependency:layoutDependency,layoutId:\"WuIFlKktg\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ybtobr-container\",layoutDependency:layoutDependency,layoutId:\"LAgDw2z1E-container\",children:/*#__PURE__*/_jsx(Material,{color:dek8kUS_s,height:\"100%\",iconSearch:\"Home\",iconSelection:\"SyncAlt\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"LAgDw2z1E\",layoutId:\"LAgDw2z1E\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1b91xp9\",\"data-styles-preset\":\"NRGhZVzFr\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-dek8kUS_s-WRbVXnrw_))\"},children:\"Wij regelen je overstap\"})}),className:\"framer-1frqwgp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gwUrY5qwp\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-dek8kUS_s-WRbVXnrw_)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-dek8kUS_s-WRbVXnrw_\":dek8kUS_s},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fz4ecv\",layoutDependency:layoutDependency,layoutId:\"HT9B0UV_g\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-82jbt1-container\",layoutDependency:layoutDependency,layoutId:\"lG82GuZb1-container\",children:/*#__PURE__*/_jsx(Material,{color:dek8kUS_s,height:\"100%\",iconSearch:\"Home\",iconSelection:\"Schedule\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"lG82GuZb1\",layoutId:\"lG82GuZb1\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1b91xp9\",\"data-styles-preset\":\"NRGhZVzFr\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-dek8kUS_s-WRbVXnrw_))\"},children:\"Altijd boetevrij opzegbaar\"})}),className:\"framer-pi7pmm\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oTPkumArb\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-dek8kUS_s-WRbVXnrw_)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-dek8kUS_s-WRbVXnrw_\":dek8kUS_s},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dilfmr\",layoutDependency:layoutDependency,layoutId:\"vqK_6704N\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-121pkt3-container\",layoutDependency:layoutDependency,layoutId:\"e_cmypt9o-container\",children:/*#__PURE__*/_jsx(Material,{color:dek8kUS_s,height:\"100%\",iconSearch:\"Home\",iconSelection:\"Payments\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"e_cmypt9o\",layoutId:\"e_cmypt9o\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1b91xp9\",\"data-styles-preset\":\"NRGhZVzFr\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-dek8kUS_s-WRbVXnrw_))\"},children:\"Gemiddeld 56% goedkoper\\xa0\"})}),className:\"framer-1840uuh\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"W9adTmRxp\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-dek8kUS_s-WRbVXnrw_)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-dek8kUS_s-WRbVXnrw_\":dek8kUS_s},verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dccfsr-container\",layoutDependency:layoutDependency,layoutId:\"PYkkoYpV3-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"top\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",id:\"PYkkoYpV3\",intervalControl:2.2,itemAmount:1,layoutId:\"PYkkoYpV3\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12sy32u\",layoutDependency:layoutDependency,layoutId:\"JHSaEtrwJ\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2mr1hw-container\",layoutDependency:layoutDependency,layoutId:\"zPaWIlljZ-container\",children:/*#__PURE__*/_jsx(Material,{color:dek8kUS_s,height:\"100%\",iconSearch:\"Home\",iconSelection:\"SyncAlt\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"zPaWIlljZ\",layoutId:\"zPaWIlljZ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1b91xp9\",\"data-styles-preset\":\"NRGhZVzFr\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-dek8kUS_s-WRbVXnrw_))\"},children:\"Wij regelen je overstap\"})}),className:\"framer-1vputaa\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cGWBNPdHS\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-dek8kUS_s-WRbVXnrw_)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-dek8kUS_s-WRbVXnrw_\":dek8kUS_s},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x82jq8\",layoutDependency:layoutDependency,layoutId:\"Uiwbnowxo\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jx4z5s-container\",layoutDependency:layoutDependency,layoutId:\"EFoHVZ1wb-container\",children:/*#__PURE__*/_jsx(Material,{color:dek8kUS_s,height:\"100%\",iconSearch:\"Home\",iconSelection:\"Schedule\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"EFoHVZ1wb\",layoutId:\"EFoHVZ1wb\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1b91xp9\",\"data-styles-preset\":\"NRGhZVzFr\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-dek8kUS_s-WRbVXnrw_))\"},children:\"Altijd boetevrij opzegbaar\"})}),className:\"framer-1563fz9\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"C79Mmx9M9\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-dek8kUS_s-WRbVXnrw_)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-dek8kUS_s-WRbVXnrw_\":dek8kUS_s},verticalAlignment:\"top\",withExternalLayout:true})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-c5g3n.framer-eup6s0, .framer-c5g3n .framer-eup6s0 { display: block; }\",\".framer-c5g3n.framer-gmhs9h { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1024px; }\",\".framer-c5g3n .framer-cpazqb { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-c5g3n .framer-1by97ym, .framer-c5g3n .framer-fz4ecv, .framer-c5g3n .framer-1dilfmr { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-c5g3n .framer-ybtobr-container, .framer-c5g3n .framer-82jbt1-container, .framer-c5g3n .framer-121pkt3-container, .framer-c5g3n .framer-2mr1hw-container, .framer-c5g3n .framer-jx4z5s-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-c5g3n .framer-1frqwgp, .framer-c5g3n .framer-pi7pmm, .framer-c5g3n .framer-1840uuh { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-c5g3n .framer-1dccfsr-container { flex: 1 0 0px; height: 24px; position: relative; width: 1px; }\",\".framer-c5g3n .framer-12sy32u, .framer-c5g3n .framer-x82jq8 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-c5g3n .framer-1vputaa, .framer-c5g3n .framer-1563fz9 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-c5g3n.framer-gmhs9h, .framer-c5g3n .framer-1by97ym, .framer-c5g3n .framer-fz4ecv, .framer-c5g3n .framer-1dilfmr, .framer-c5g3n .framer-12sy32u, .framer-c5g3n .framer-x82jq8 { gap: 0px; } .framer-c5g3n.framer-gmhs9h > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-c5g3n.framer-gmhs9h > :first-child, .framer-c5g3n .framer-1by97ym > :first-child, .framer-c5g3n .framer-fz4ecv > :first-child, .framer-c5g3n .framer-1dilfmr > :first-child, .framer-c5g3n .framer-12sy32u > :first-child, .framer-c5g3n .framer-x82jq8 > :first-child { margin-left: 0px; } .framer-c5g3n.framer-gmhs9h > :last-child, .framer-c5g3n .framer-1by97ym > :last-child, .framer-c5g3n .framer-fz4ecv > :last-child, .framer-c5g3n .framer-1dilfmr > :last-child, .framer-c5g3n .framer-12sy32u > :last-child, .framer-c5g3n .framer-x82jq8 > :last-child { margin-right: 0px; } .framer-c5g3n .framer-1by97ym > *, .framer-c5g3n .framer-fz4ecv > *, .framer-c5g3n .framer-1dilfmr > *, .framer-c5g3n .framer-12sy32u > *, .framer-c5g3n .framer-x82jq8 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",\".framer-c5g3n.framer-v-woah89.framer-gmhs9h { width: 256px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 1024\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Y6pERHyLf\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"dek8kUS_s\":\"color\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerWRbVXnrw_=withCSS(Component,css,\"framer-c5g3n\");export default FramerWRbVXnrw_;FramerWRbVXnrw_.displayName=\"Form / Benefits\";FramerWRbVXnrw_.defaultProps={height:24,width:1024};addPropertyControls(FramerWRbVXnrw_,{variant:{options:[\"SkWnRTp7Y\",\"Y6pERHyLf\"],optionTitles:[\"Default\",\"Slideshow\"],title:\"Variant\",type:ControlType.Enum},dek8kUS_s:{defaultValue:'var(--token-51bf05cd-b74c-4e79-9337-f8897e9b61f6, rgb(62, 72, 54)) /* {\"name\":\"HEGG-Green\"} */',title:\"Color\",type:ControlType.Color}});addFonts(FramerWRbVXnrw_,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...MaterialFonts,...SlideshowFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWRbVXnrw_\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1024\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Y6pERHyLf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"dek8kUS_s\\\":\\\"color\\\"}\",\"framerIntrinsicHeight\":\"24\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./WRbVXnrw_.map"],
  "mappings": "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",
  "names": ["init_ssg_sandbox_shims", "fetchAdditions", "area_code", "house_number", "response", "data", "debounce", "func", "delay", "timeoutId", "args", "LocationCheckForm", "props", "_result_house_additions", "postcode", "setPostcode", "ye", "error", "setError", "houseNumber", "setHouseNumber", "result", "setResult", "selectedAddition", "setSelectedAddition", "loading", "setLoading", "debouncedFetchAdditionsApiCall", "ue", "cleanPostcode", "cleanHouseNumber", "handleFinalSubmit", "url", "u", "Frame", "p", "e", "ha", "addition", "index", "addPropertyControls", "ControlType", "init_ssg_sandbox_shims", "MaterialFonts", "getFonts", "Icon", "SlideshowFonts", "Slideshow", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "color", "height", "id", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "dek8kUS_s", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerWRbVXnrw_", "withCSS", "WRbVXnrw_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
