{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/tY7g1bSBIAcAFz8SaZMs/U6MycRtPgE8dMOpeRHMb/MagicFormPro.js", "ssg:https://framerusercontent.com/modules/PBur0P1p1NwxNYrmF5Al/lYHXspkkQULBWgvippYE/i3eXL4tiS.js", "ssg:https://framerusercontent.com/modules/7gE3fFwchnllELLiSspc/Vxga1xbkdldLUqCTZi6N/lZI8bkZvo.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import React,{useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";import*as PhosphorIcons from\"phosphor-react\";import{CheckCircle,Warning,Eye,EyeSlash,CaretDown,ArrowLeft,PaperPlaneTilt as Icon}from\"phosphor-react\";/*\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */ export function MagicFormPro(props){const[formValues,setFormValues]=React.useState({});const[validationErrors,setValidationErrors]=React.useState({});const[inputValues,setInputValues]=React.useState({});const[toastVisible,setToastVisible]=useState(false);const[fieldActive,setFieldActive]=useState({});const[showPassword,setShowPassword]=useState({});const[isHovered,setIsHovered]=useState(false);const[activeHoverField,setActiveHoverField]=useState(null);const[windowWidth,setWindowWidth]=React.useState(0) // Set initial state to 0\n;const[currentStep,setCurrentStep]=useState(1);const isHigherThanStep1=currentStep>1;React.useEffect(()=>{// Now we're in the browser, we can safely access `window`\nsetWindowWidth(window.innerWidth);const handleResize=()=>setWindowWidth(window.innerWidth);window.addEventListener(\"resize\",handleResize);// Don't forget to clean up the event listener on component unmount\nreturn()=>window.removeEventListener(\"resize\",handleResize);},[]) // Empty dependency array means this effect runs once on mount\n;const handleIconClick=()=>{};const handleFieldActive=(fieldName,isActive)=>{setFieldActive(prevState=>({...prevState,[fieldName]:isActive}));};const countries=[{code:\"US\",name:\"United States\",dialCode:\"+1\",flag:\"\uD83C\uDDFA\uD83C\uDDF8\"},{code:\"GB\",name:\"United Kingdom\",dialCode:\"+44\",flag:\"\uD83C\uDDEC\uD83C\uDDE7\"},{code:\"CA\",name:\"Canada\",dialCode:\"+1\",flag:\"\uD83C\uDDE8\uD83C\uDDE6\"},{code:\"AU\",name:\"Australia\",dialCode:\"+61\",flag:\"\uD83C\uDDE6\uD83C\uDDFA\"},{code:\"IN\",name:\"India\",dialCode:\"+91\",flag:\"\uD83C\uDDEE\uD83C\uDDF3\"},{code:\"CN\",name:\"China\",dialCode:\"+86\",flag:\"\uD83C\uDDE8\uD83C\uDDF3\"},{code:\"JP\",name:\"Japan\",dialCode:\"+81\",flag:\"\uD83C\uDDEF\uD83C\uDDF5\"},{code:\"DE\",name:\"Germany\",dialCode:\"+49\",flag:\"\uD83C\uDDE9\uD83C\uDDEA\"},{code:\"FR\",name:\"France\",dialCode:\"+33\",flag:\"\uD83C\uDDEB\uD83C\uDDF7\"},{code:\"IT\",name:\"Italy\",dialCode:\"+39\",flag:\"\uD83C\uDDEE\uD83C\uDDF9\"},{code:\"RU\",name:\"Russia\",dialCode:\"+7\",flag:\"\uD83C\uDDF7\uD83C\uDDFA\"},{code:\"BR\",name:\"Brazil\",dialCode:\"+55\",flag:\"\uD83C\uDDE7\uD83C\uDDF7\"},{code:\"ES\",name:\"Spain\",dialCode:\"+34\",flag:\"\uD83C\uDDEA\uD83C\uDDF8\"},{code:\"MX\",name:\"Mexico\",dialCode:\"+52\",flag:\"\uD83C\uDDF2\uD83C\uDDFD\"},{code:\"ZA\",name:\"South Africa\",dialCode:\"+27\",flag:\"\uD83C\uDDFF\uD83C\uDDE6\"},{code:\"NL\",name:\"Netherlands\",dialCode:\"+31\",flag:\"\uD83C\uDDF3\uD83C\uDDF1\"},{code:\"TR\",name:\"Turkey\",dialCode:\"+90\",flag:\"\uD83C\uDDF9\uD83C\uDDF7\"},{code:\"SA\",name:\"Saudi Arabia\",dialCode:\"+966\",flag:\"\uD83C\uDDF8\uD83C\uDDE6\"},{code:\"SE\",name:\"Sweden\",dialCode:\"+46\",flag:\"\uD83C\uDDF8\uD83C\uDDEA\"},{code:\"CH\",name:\"Switzerland\",dialCode:\"+41\",flag:\"\uD83C\uDDE8\uD83C\uDDED\"},{code:\"EG\",name:\"Egypt\",dialCode:\"+20\",flag:\"\uD83C\uDDEA\uD83C\uDDEC\"},{code:\"AR\",name:\"Argentina\",dialCode:\"+54\",flag:\"\uD83C\uDDE6\uD83C\uDDF7\"},{code:\"SG\",name:\"Singapore\",dialCode:\"+65\",flag:\"\uD83C\uDDF8\uD83C\uDDEC\"},{code:\"MY\",name:\"Malaysia\",dialCode:\"+60\",flag:\"\uD83C\uDDF2\uD83C\uDDFE\"}];const hasMoreSteps=()=>{const nextSteps=props.inputTypes.filter(input=>input.step===`Step ${currentStep+1}`);return nextSteps.length>0;};const getTotalSteps=()=>{const steps=props.inputTypes.map(input=>input.step);const uniqueSteps=[...new Set(steps)] // Remove duplicates\n;return uniqueSteps.length;};const goBackOneStep=()=>{console.log(\"goBackOneStep is called\") // Debugging line\n;if(currentStep>1){setCurrentStep(currentStep-1);}};const StepIndicator=({step,isCurrent,isCompleted})=>{let backgroundColor;if(isCurrent)backgroundColor=props.stepStyle.current;else if(isCompleted)backgroundColor=props.stepStyle.previous;else backgroundColor=props.stepStyle.next // Or any color for future steps\n;const handleClick=()=>{if(!isCurrent&&isCompleted)setCurrentStep(step);};return /*#__PURE__*/ _jsx(motion.div,{onClick:handleClick,style:{height:\"14px\",width:\"14px\",borderRadius:\"50%\",backgroundColor,margin:\"8px\",cursor:isCompleted?\"pointer\":\"default\"},whileHover:step<currentStep?{scale:1.25}:{}});};const Slider=({currentStep,totalSteps})=>{const progress=currentStep/totalSteps*100;return /*#__PURE__*/ _jsxs(\"div\",{style:{width:\"100%\"},children:[/*#__PURE__*/ _jsx(\"div\",{style:{height:\"10px\",width:\"100%\",backgroundColor:props.stepStyle.next,borderRadius:\"5px\"},children:/*#__PURE__*/ _jsx(\"div\",{style:{height:\"100%\",width:`${progress}%`,backgroundColor:props.stepStyle.current,borderRadius:\"5px\",transition:\"width 0.3s ease-in-out\"}})}),currentStep>1&&/*#__PURE__*/ _jsx(\"div\",{style:{marginTop:8,display:\"flex\",flexDirection:\"row\",alignItems:\"center\",justifyContent:\"space-between\"},children:/*#__PURE__*/ _jsxs(\"div\",{onClick:e=>{goBackOneStep();},style:{cursor:\"pointer\",display:\"flex\",flexDirection:\"row\",gap:4,alignItems:\"center\"},children:[/*#__PURE__*/ _jsx(ArrowLeft,{weight:\"bold\",style:{...props.stepStyle.font,color:props.stepStyle.current}}),/*#__PURE__*/ _jsx(\"p\",{style:{...props.stepStyle.font,color:props.stepStyle.current},children:\"Go back\"})]})}),\" \"]});};const buttonAlignmentStyles={Left:{alignSelf:\"flex-start\",width:\"auto\"},Right:{alignSelf:\"flex-end\",width:\"auto\"},Center:{alignSelf:\"center\",width:\"100%\"}}[props.buttonStyle.buttonAlignment||\"center\"];const validate=step=>{let errors={};props.inputTypes.forEach(field=>{// Only validate fields in the current step\nif(field.step===`Step ${step}`){if(field.required&&(!formValues[field.name]||formValues[field.name]===\"\")){errors={...errors,[field.name]:field.validationMessage||\"defaultError\"};}else if(field.type===\"email\"&&formValues[field.name]&&!validateEmail(formValues[field.name])){errors={...errors,[field.name]:\"Invalid email format\"};}}});setValidationErrors(prevErrors=>({...prevErrors,...errors}));return Object.keys(errors).length===0;};const validateEmail=email=>{// Email validation regular expression\nconst emailRegex=/^[\\w-]+(\\.[\\w-]+)*@([\\w-]+\\.)+[a-zA-Z]{2,7}$/;return emailRegex.test(email);};const handleSubmit=async event=>{event.preventDefault();if(hasMoreSteps()){// If there are more steps, validate the current step.\nif(validate(currentStep)){// If validation passes, increment the step.\nsetCurrentStep(currentStep+1);setValidationErrors({});}}else{// If there are no more steps, validate the last step.\nif(validate(currentStep)){// ...submission logic...\nlet submitUrl=\"\";if(props.formProvider===\"formspark\"){submitUrl=`https://submit-form.com/${props.formId}`;}else if(props.formProvider===\"formspree\"){submitUrl=`https://formspree.io/${props.formId}`;}else if(props.formProvider===\"messagebird\"){submitUrl=props.formId;}else if(props.formProvider===\"basin\"){submitUrl=`https://usebasin.com/f/${props.formId}`;}else if(props.formProvider===\"formcarry\"){submitUrl=`https://formcarry.com/s/${props.formId}`;}else if(props.formProvider===\"custom\"){submitUrl=props.formId;}else if(props.formProvider===\"zapier\"){submitUrl=props.formId;}if(submitUrl){try{const response=await fetch(submitUrl,{method:\"POST\",headers:{\"Content-Type\":props.formProvider===\"zapier\"?\"text/plain\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(formValues)});if(response.ok){// Form submission was successful\nhandleFormSuccess();}else{// Form submission failed\nconsole.log(\"Form submission failed\");}}catch(error){console.log(error);}}console.log(formValues);}}};const handleFormSuccess=()=>{// If the request was successful, clear the form\nsetFormValues({});setCurrentStep(1);if(props.success.afterSubmit===\"redirect\"){window.location.href=props.success.redirectURL;}else{setToastVisible(true);setTimeout(()=>setToastVisible(false),3e3);}};const handleChange=event=>{const{name,value,type,checked}=event.target;if(type===\"checkbox\"){const checkboxValues=formValues[name]||[];if(checked){checkboxValues.push(value);}else{const index=checkboxValues.indexOf(value);if(index>-1){checkboxValues.splice(index,1);}}setFormValues({...formValues,[name]:checkboxValues});}else{setFormValues({...formValues,[name]:value});}setValidationErrors({...validationErrors,[name]:\"\"});};const renderInputTypes=()=>{const inputsForStep=props.inputTypes.filter(input=>input.step===`Step ${currentStep}`);return inputsForStep.map((field,index)=>{const error=validationErrors[field.name];const ErrorMessage=({field,validationErrors,errorColor})=>{if(validationErrors[field.name]&&validationErrors[field.name]!==\"defaultError\"){return /*#__PURE__*/ _jsxs(\"div\",{style:{paddingTop:\"4px\",display:\"flex\",flexDirection:\"row\",justifyContent:\"start\",alignItems:\"center\",color:errorColor,gap:\"8px\"},children:[/*#__PURE__*/ _jsx(Warning,{size:\"18px\",weight:\"fill\",color:errorColor}),/*#__PURE__*/ _jsx(\"p\",{style:{fontSize:\"14px\"},children:validationErrors[field.name]})]});}return null // Return null if there's no need to render anything\n;};const defaultStyle={appearance:\"none\",borderStyle:\"solid\",outline:\"none\",\"::-moz-focus-inner\":{border:\"0\"},\"::-moz-focus-outer\":{border:\"0\"}};const defaultInputStyle={backgroundColor:activeHoverField===field.name?props.inputStyle.styling.extraColorStyles.hoverColor:props.inputStyle.styling.backgroundColor,borderWidth:props.inputStyle.styling.borderWidth.isMixed?`${props.inputStyle.styling.borderWidth.borderTopWidth}px ${props.inputStyle.styling.borderWidth.borderRightWidth}px ${props.inputStyle.styling.borderWidth.borderBottomWidth}px ${props.inputStyle.styling.borderWidth.borderLeftWidth}px`:`${props.inputStyle.styling.borderWidth.defaultValue}px`,outline:props.inputStyle.styling.extraColorStyles.useOutline===false?\"0px\":validationErrors[field.name]&&validationErrors[field.name]!==\"\"&&activeHoverField===field.name?`1.5px solid ${props.inputStyle.styling.extraColorStyles.errorColor}` // set error color if field is hovered and there are validation errors\n:!validationErrors[field.name]||validationErrors[field.name]===\"\"?fieldActive[field.name]?`1.5px solid ${props.inputStyle.styling.extraColorStyles.activeColor}` // set active color if field is active\n:activeHoverField===field.name?`1.5px solid ${props.inputStyle.styling.borderColor}` // set error color if\n:\"none\" // if field is neither active nor hovered\n:\"none\",borderColor:validationErrors[field.name]?props.inputStyle.styling.extraColorStyles.errorColor:fieldActive[field.name]?props.inputStyle.styling.extraColorStyles.activeColor:activeHoverField===field.name?props.inputStyle.styling.extraColorStyles.hoverBorderColor:props.inputStyle.styling.borderColor,paddingLeft:props.inputStyle.styling.iconPosition===\"left\"&&field.toggleIcon?parseInt(props.inputStyle.styling.paddingLeft)+parseInt(props.inputStyle.styling.iconSize)*1.5:props.inputStyle.styling.paddingLeft};const iconPadding={paddingLeft:props.inputStyle.styling.iconPosition===\"left\"&&field.toggleIcon?parseInt(props.inputStyle.styling.paddingLeft)+parseInt(props.inputStyle.styling.iconSize)*1.5:props.inputStyle.styling.paddingLeft};console.log(\"Checkbox BorderWidth:\",props.inputStyle.checkboxStyle.borderWidth);const radioStyle={padding:\"12px\",gap:\"12px\",borderColor:props.inputStyle.styling.borderColor,display:\"flex\",alignItems:\"center\",margin:\"0px\",borderRadius:props.inputStyle.checkboxStyle.borderRadius,borderStyle:\"solid\",borderWidth:props.inputStyle.checkboxStyle.borderWidth,marginBottom:props.inputStyle.checkboxStyle.marginBottom};const iconStyle={position:\"absolute\",top:\"50%\",transform:\"translateY(-50%)\"};const selectStyle={appearance:\"none\",backgroundImage:\"none\",backgroundRepeat:\"no-repeat\",\"&::-ms-expand\":{display:\"none\"}};const widthStyle=windowWidth<=420?{gridColumn:\"span 2\"}:field.width===\"50% Width\"?{gridColumn:\"span 1\"}:{gridColumn:\"span 2\"};const formStyle={display:\"flex\",flexDirection:\"column\"};const IconComponent=PhosphorIcons[field.icon];const renderInput=(type,field,showIcon=false,renderIcon)=>{const sharedStyles={...props.inputStyle.styling,...props.inputStyle.fontStyle,...props.inputStyle.fontStyle.font,...defaultStyle,paddingLeft:props.inputStyle.styling.paddingLeft};const widthStyle=windowWidth<=420?{gridColumn:\"span 2\"}:field.width===\"50% Width\"?{gridColumn:\"span 1\"}:{gridColumn:\"span 2\"};const inputType=type===\"password\"&&showPassword[field.name]?\"text\":type;const defaultIconComponent=showIcon?/*#__PURE__*/ _jsx(IconComponent,{style:{[props.inputStyle.styling.iconPosition]:props.inputStyle.styling.iconPosition===\"left\"?\"12px\":props.inputStyle.styling.paddingRight,...props.inputStyle.fontStyle,...iconStyle,color:props.inputStyle.styling.iconColor,fontSize:props.inputStyle.styling.iconSize}}):null;return /*#__PURE__*/ _jsxs(\"div\",{style:{...widthStyle,...formStyle},children:[field.showLabel&&/*#__PURE__*/ _jsxs(\"label\",{style:{...props.inputStyle.fontStyle.labelStyle.font,...props.inputStyle.fontStyle.labelStyle},htmlFor:field.name,children:[field.label,field.required?\" *\":\"\"]}),/*#__PURE__*/ _jsxs(\"div\",{style:{...widthStyle,...formStyle,position:\"relative\"},children:[/*#__PURE__*/ _jsx(\"input\",{type:inputType,name:field.name,value:formValues[field.name]||\"\",placeholder:`${field.placeholder}${field.showLabel?\"\":field.required?\" *\":\"\"}`,onChange:handleChange,onMouseEnter:()=>setActiveHoverField(field.name),onMouseLeave:()=>setActiveHoverField(null),onFocus:()=>{handleFieldActive(field.name,true);},onBlur:()=>{handleFieldActive(field.name,false);},style:{...sharedStyles,...defaultInputStyle,...iconPadding}}),field.toggleIcon&&(renderIcon?renderIcon():defaultIconComponent)]}),/*#__PURE__*/ _jsx(ErrorMessage,{field:field,validationErrors:validationErrors,errorColor:props.inputStyle.styling.extraColorStyles.errorColor})]});};const passwordIcon=()=>{return showPassword[field.name]?/*#__PURE__*/ _jsx(EyeSlash,{style:iconStyles,onClick:()=>setShowPassword({...showPassword,[field.name]:!showPassword[field.name]})}):/*#__PURE__*/ _jsx(Eye,{style:iconStyles,onClick:()=>setShowPassword({...showPassword,[field.name]:!showPassword[field.name]})});};const iconStyles={[props.inputStyle.styling.iconPosition]:props.inputStyle.styling.iconPosition===\"left\"?\"12px\":props.inputStyle.styling.paddingRight,...props.inputStyle.fontStyle,...iconStyle,color:props.inputStyle.styling.iconColor,fontSize:props.inputStyle.styling.iconSize};switch(field.type){case\"text\":return renderInput(\"text\",field,true);case\"email\":return renderInput(\"email\",field,true);case\"url\":return renderInput(\"url\",field,true);case\"password\":return renderInput(\"password\",field,false,passwordIcon);// Add this case in your switch statement.\ncase\"number\":return /*#__PURE__*/ _jsxs(\"div\",{style:{...widthStyle,...formStyle},children:[field.showLabel&&/*#__PURE__*/ _jsxs(\"label\",{style:{...props.inputStyle.fontStyle.labelStyle.font,...props.inputStyle.fontStyle.labelStyle},htmlFor:field.name,children:[field.label,field.required?\" *\":\"\"]}),/*#__PURE__*/ _jsx(\"div\",{style:{...widthStyle,...formStyle,position:\"relative\"},children:/*#__PURE__*/ _jsx(\"input\",{type:\"number\",name:field.name,value:formValues[field.name]||\"\",placeholder:`${field.placeholder}${field.showLabel?\"\":field.required?\" *\":\"\"}`,onChange:handleChange,onMouseEnter:()=>setActiveHoverField(field.name),onMouseLeave:()=>setActiveHoverField(null),onFocus:()=>{handleFieldActive(field.name,true);},onBlur:()=>{handleFieldActive(field.name,false);},style:{...props.inputStyle.styling,...props.inputStyle.fontStyle,...props.inputStyle.fontStyle.font,...defaultInputStyle,...defaultStyle,paddingLeft:props.inputStyle.styling.paddingLeft}})}),/*#__PURE__*/ _jsx(ErrorMessage,{field:field,validationErrors:validationErrors,errorColor:props.inputStyle.styling.extraColorStyles.errorColor})]});case\"date\":return /*#__PURE__*/ _jsxs(\"div\",{style:{...widthStyle,...formStyle},children:[field.showLabel&&/*#__PURE__*/ _jsxs(\"label\",{style:{...props.inputStyle.fontStyle.labelStyle.font,...props.inputStyle.fontStyle.labelStyle},htmlFor:field.name,children:[field.label,field.required?\" *\":\"\"]}),/*#__PURE__*/ _jsx(\"div\",{style:{...widthStyle,...formStyle,position:\"relative\"},children:/*#__PURE__*/ _jsx(\"input\",{type:\"date\",name:field.name,value:formValues[field.name]||\"\",placeholder:`${field.placeholder}${field.showLabel?\"\":field.required?\" *\":\"\"}`,onChange:handleChange,onMouseEnter:()=>setActiveHoverField(field.name),onMouseLeave:()=>setActiveHoverField(null),onFocus:()=>{handleFieldActive(field.name,true);},onBlur:()=>{handleFieldActive(field.name,false);},style:{...props.inputStyle.styling,...props.inputStyle.fontStyle,...props.inputStyle.fontStyle.font,...defaultInputStyle,...defaultStyle,...selectStyle,paddingLeft:props.inputStyle.styling.paddingLeft}})}),/*#__PURE__*/ _jsx(ErrorMessage,{field:field,validationErrors:validationErrors,errorColor:props.inputStyle.styling.extraColorStyles.errorColor})]});case\"radio\":return /*#__PURE__*/ _jsxs(\"div\",{style:{...widthStyle,...formStyle,gridColumn:\"span 2\"},children:[field.showLabel&&/*#__PURE__*/ _jsxs(\"label\",{style:{...props.inputStyle.fontStyle.labelStyle.font,...props.inputStyle.fontStyle.labelStyle},htmlFor:field.name,children:[field.label,field.required?\" *\":\"\"]}),field.options.map((option,optionIndex)=>{var ref;/*#__PURE__*/ return _jsx(\"label\",{htmlFor:option,children:/*#__PURE__*/ _jsxs(\"div\",{onMouseEnter:()=>setActiveHoverField(option),onMouseLeave:()=>setActiveHoverField(null),style:{backgroundColor:activeHoverField===field.name?props.inputStyle.styling.extraColorStyles.hoverColor:props.inputStyle.styling.backgroundColor,...activeHoverField===option&&formValues[field.name]!==option&&{outline:`1.5px solid ${props.inputStyle.styling.borderColor}`},...((ref=formValues[field.name])===null||ref===void 0?void 0:ref.includes(option))&&{outline:`1.5px solid ${props.inputStyle.styling.extraColorStyles.activeColor}`},...radioStyle},children:[/*#__PURE__*/ _jsx(\"input\",{type:\"radio\",id:option,name:field.name,value:option,checked:formValues[field.name]===option,onChange:handleChange,style:{flexShrink:0,width:props.inputStyle.checkboxStyle.size,height:props.inputStyle.checkboxStyle.size,marginTop:\"0px\",accentColor:props.inputStyle.checkboxStyle.accent,colorScheme:props.inputStyle.checkboxStyle.colorScheme}}),/*#__PURE__*/ _jsx(\"span\",{style:{paddingLeft:\"8px\",...props.inputStyle.checkboxStyle.font,color:props.inputStyle.checkboxStyle.color},children:option})]})},optionIndex);}),/*#__PURE__*/ _jsx(ErrorMessage,{field:field,validationErrors:validationErrors,errorColor:props.inputStyle.styling.extraColorStyles.errorColor})]});case\"select\":return /*#__PURE__*/ _jsxs(\"div\",{style:{...widthStyle,...formStyle},children:[field.showLabel&&/*#__PURE__*/ _jsxs(\"label\",{style:{...props.inputStyle.fontStyle.labelStyle.font,...props.inputStyle.fontStyle.labelStyle},htmlFor:field.name,children:[field.label,field.required?\" *\":\"\"]}),/*#__PURE__*/ _jsxs(\"div\",{style:{...widthStyle,...formStyle,position:\"relative\"},children:[/*#__PURE__*/ _jsxs(\"select\",{name:field.name,value:formValues[field.name]||\"\",onChange:handleChange,onMouseEnter:()=>setActiveHoverField(field.name),onMouseLeave:()=>setActiveHoverField(null),onFocus:()=>{handleFieldActive(field.name,true);},onBlur:()=>{handleFieldActive(field.name,false);},style:{gridColumn:\"span 2\",...props.inputStyle.styling,...props.inputStyle.fontStyle,...props.inputStyle.fontStyle.font,...defaultStyle,...defaultInputStyle,...selectStyle,paddingLeft:props.inputStyle.styling.paddingLeft},children:[/*#__PURE__*/ _jsx(\"option\",{value:\"\",children:`${field.placeholder}${field.showLabel?\"\":field.required?\" *\":\"\"}`}),field.options.map((option,optionIndex)=>/*#__PURE__*/ _jsx(\"option\",{value:option,children:option},optionIndex))]}),/*#__PURE__*/ _jsx(CaretDown,{style:{...props.inputStyle.fontStyle,...iconStyle,right:props.inputStyle.styling.paddingRight,color:props.inputStyle.styling.iconColor,fontSize:13,weight:\"bold\"}})]}),/*#__PURE__*/ _jsx(ErrorMessage,{field:field,validationErrors:validationErrors,errorColor:props.inputStyle.styling.extraColorStyles.errorColor})]});case\"textarea\":return /*#__PURE__*/ _jsxs(\"div\",{style:{...widthStyle,...formStyle},children:[field.showLabel&&/*#__PURE__*/ _jsxs(\"label\",{style:{...props.inputStyle.fontStyle.labelStyle.font,...props.inputStyle.fontStyle.labelStyle},htmlFor:field.name,children:[field.label,field.required?\" *\":\"\"]}),/*#__PURE__*/ _jsx(\"textarea\",{name:field.name,placeholder:`${field.placeholder}${field.showLabel?\"\":field.required?\" *\":\"\"}`,value:formValues[field.name]||\"\",onChange:handleChange,onMouseEnter:()=>setActiveHoverField(field.name),onMouseLeave:()=>setActiveHoverField(null),onFocus:()=>{handleFieldActive(field.name,true);},onBlur:()=>{handleFieldActive(field.name,false);},style:{resize:\"none\",gridColumn:\"span 2\",...props.inputStyle.styling,...props.inputStyle.fontStyle,...props.inputStyle.fontStyle.font,...defaultStyle,...defaultInputStyle,paddingLeft:props.inputStyle.styling.paddingLeft},rows:field.rows}),/*#__PURE__*/ _jsx(ErrorMessage,{field:field,validationErrors:validationErrors,errorColor:props.inputStyle.styling.extraColorStyles.errorColor})]});case\"checkbox\":return /*#__PURE__*/ _jsxs(\"div\",{style:{...widthStyle,...formStyle,gridColumn:\"span 2\"},children:[field.showLabel&&/*#__PURE__*/ _jsxs(\"label\",{style:{...props.inputStyle.fontStyle.labelStyle.font,...props.inputStyle.fontStyle.labelStyle},htmlFor:field.name,children:[field.label,field.required?\" *\":\"\"]}),field.options.map((option,optionIndex)=>{var ref,ref1;/*#__PURE__*/ return _jsx(\"label\",{htmlFor:option,children:/*#__PURE__*/ _jsxs(\"div\",{onMouseEnter:()=>setActiveHoverField(option),onMouseLeave:()=>setActiveHoverField(null),style:{backgroundColor:activeHoverField===field.name?props.inputStyle.styling.extraColorStyles.hoverColor:props.inputStyle.styling.backgroundColor,...activeHoverField===option&&formValues[field.name]!==option&&{outline:`1.5px solid ${props.inputStyle.styling.borderColor}`},...((ref=formValues[field.name])===null||ref===void 0?void 0:ref.includes(option))&&{outline:`1.5px solid ${props.inputStyle.styling.extraColorStyles.activeColor}`},...radioStyle},children:[/*#__PURE__*/ _jsx(\"input\",{type:\"checkbox\",id:option,name:field.name,value:option,checked:(ref1=formValues[field.name])===null||ref1===void 0?void 0:ref1.includes(option),onChange:handleChange,style:{flexShrink:0,width:props.inputStyle.checkboxStyle.size,height:props.inputStyle.checkboxStyle.size,marginTop:\"0px\",accentColor:props.inputStyle.checkboxStyle.accent,colorScheme:props.inputStyle.checkboxStyle.colorScheme}}),/*#__PURE__*/ _jsx(\"span\",{style:{paddingLeft:\"8px\",...props.inputStyle.checkboxStyle.font,color:props.inputStyle.checkboxStyle.color},children:option})]})},optionIndex);}),/*#__PURE__*/ _jsx(ErrorMessage,{field:field,validationErrors:validationErrors,errorColor:props.inputStyle.styling.extraColorStyles.errorColor})]});default:return null;}});};return /*#__PURE__*/ _jsxs(\"div\",{style:{display:\"flex\",height:\"100%\",alignItems:\"center\",justifyContent:\"center\"},children:[/*#__PURE__*/ _jsxs(\"form\",{onSubmit:handleSubmit,style:{width:\"100%\",height:\"100%\",justifyContent:\"space-between\",flexDirection:\"column\",display:toastVisible?\"none\":\"flex\",pointerEvents:toastVisible?\"none\":\"auto\",...props.containerStyle},transition:{duration:.3},children:[/*#__PURE__*/ _jsx(\"div\",{style:{...props.containerStyle,display:\"grid\",maxWidth:\"100%\",gridTemplateColumns:\"1fr 1fr\"},children:renderInputTypes()}),/*#__PURE__*/ _jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",width:\"100%\",...props.stepStyle},children:[/*#__PURE__*/ _jsxs(motion.button,{type:\"submit\",style:{cursor:\"pointer\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\",gap:8,appearance:\"none\",borderStyle:\"solid\",outline:\"none\",boxShadow:\"none\",\"::-moz-focus-inner\":{border:\"0\"},\"::-moz-focus-outer\":{border:\"0\"},...props.buttonStyle.fontStyle.font,...props.buttonStyle.fontStyle,...props.buttonStyle.styling,...buttonAlignmentStyles},whileTap:{scale:.99},whileHover:{backgroundColor:props.buttonStyle.styling.hoverColor},onClick:handleSubmit,children:[props.buttonStyle.styling.showIcon&&/*#__PURE__*/ _jsx(Icon,{}),\" \",hasMoreSteps()?props.buttonStyle.buttonNext:props.buttonStyle.buttonSubmit]}),getTotalSteps()>1&&/*#__PURE__*/ _jsx(\"div\",{style:{display:\"flex\",justifyContent:\"center\"},children:props.stepStyle.stepIndicatorType===\"slider\"?/*#__PURE__*/ _jsx(Slider,{currentStep:currentStep,totalSteps:getTotalSteps()}):Array.from({length:getTotalSteps()},(_,i)=>/*#__PURE__*/ _jsx(StepIndicator,{step:i+1,isCurrent:currentStep===i+1,isCompleted:currentStep>i+1},i+1))})]})]}),toastVisible&&/*#__PURE__*/ _jsxs(motion.div,{initial:{opacity:0,y:100},style:{display:\"flex\",alignItems:\"center\",justifyContent:\"center\",flexDirection:\"column\",marginTop:\"40px\",width:\"100%\"},animate:{opacity:1,y:0},transition:{duration:.3},children:[/*#__PURE__*/ _jsx(CheckCircle,{size:props.success.toastIcon,weight:\"fill\",color:props.success.iconColor}),/*#__PURE__*/ _jsxs(\"div\",{style:{textAlign:\"center\",marginTop:\"12px\"},children:[/*#__PURE__*/ _jsx(\"p\",{style:{...props.success.toastFontTitle.font,...props.success.toastFontTitle,paddingBottom:\"4px\"},children:props.success.messageTitle}),/*#__PURE__*/ _jsx(\"p\",{style:{...props.success.toastFontText.font,...props.success.toastFontText},children:props.success.messageText})]})]})]});}const iconNames=Object.keys(PhosphorIcons);addPropertyControls(MagicFormPro,{formProvider:{type:ControlType.Enum,title:\"Send to\",options:[\"formspark\",\"formspree\",\"formcarry\",\"basin\",\"zapier\",\"messagebird\",\"custom\",],optionTitles:[\"Formspark\",\"Formspree\",\"Formcarry\",\"Basin\",\"Zapier\",\"Messagebird\",\"Custom\",],defaultValue:\"formcarry\"},formId:{type:ControlType.String,title:\"ID/URL\",defaultValue:\"\",placeholder:\"mdovqgln\",description:\"Enter the ID or URL endpoint from your provider.\"},inputTypes:{type:ControlType.Array,propertyControl:{type:ControlType.Object,controls:{type:{type:ControlType.Enum,title:\"Input Type\",options:[\"text\",\"email\",\"number\",\"url\",\"date\",\"textarea\",\"password\",\"select\",\"radio\",\"checkbox\",],optionTitles:[\"Text input\",\"Email input\",\"Number input\",\"URL input\",\"Date input\",\"TextArea input\",\"Password input\",\"Dropdown\",\"Radio input\",\"Checkbox\",]},step:{type:ControlType.Enum,title:\"Step\",options:[\"Step 1\",\"Step 2\",\"Step 3\",\"Step 4\",\"Step 5\",\"Step 6\",],defaultValue:\"Step 1\"},name:{type:ControlType.String,title:\"Value\",placeholder:\"fieldName\",description:\"The value you enter here will be used in the response.\"},showLabel:{type:ControlType.Boolean,title:\"Display Label\",defaultValue:true},label:{type:ControlType.String,title:\"Label\",defaultValue:\"Label\",hidden(props){return!props.showLabel;}},placeholder:{type:ControlType.String,title:\"Placeholder\",defaultValue:\"Enter Text\",hidden:props=>[\"radio\",\"date\",\"checkbox\"].includes(props.type)},options:{type:ControlType.Array,title:\"Options\",defaultValue:[\"Option 1\",\"Option 2\"],hidden:props=>props.type!==\"radio\"&&props.type!==\"select\"&&props.type!==\"checkbox\",propertyControl:{type:ControlType.String}},rows:{type:ControlType.Number,title:\"Rows\",defaultValue:3,hidden:props=>props.type!==\"textarea\"},required:{type:ControlType.Boolean,title:\"Required\",defaultValue:false},validationMessage:{title:\"Validation Message\",type:ControlType.String,defaultValue:\"\",hidden:props=>props.required===false,description:\"Leave this field empty to only show error on the border\"},toggleIcon:{type:ControlType.Boolean,title:\"Show icon\",defaultValue:true,hidden:props=>[\"password\",\"number\",\"select\",\"textarea\",\"radio\",\"date\",\"checkbox\",].includes(props.type)},icon:{type:ControlType.Enum,title:\"Select icon\",options:iconNames,defaultValue:iconNames[0],hidden:props=>[\"password\",\"select\",\"number\",\"date\",\"textarea\",\"radio\",\"checkbox\",].includes(props.type)||!props.toggleIcon},width:{type:ControlType.Enum,title:\"Width\",options:[\"Full Width\",\"50% Width\"],optionTitles:[\"Full Width\",\"1/2 Width\"],defaultValue:\"Full Width\",displaySegmentedControl:true,segmentedControlDirection:\"horizontal\",hidden:props=>[\"radio\",\"checkbox\",\"textarea\"].includes(props.type),propertyControl:{type:ControlType.String}}}}},containerStyle:{type:ControlType.Object,title:\"Container\",controls:{gap:{type:ControlType.Number,title:\"Gap\",defaultValue:8}}},stepStyle:{type:ControlType.Object,title:\"Steps\",controls:{stepIndicatorType:{type:ControlType.Enum,title:\"Use\",options:[\"slider\",\"circle\"],optionTitles:[\"Slider\",\"Circle\"],defaultValue:\"slider\"},gap:{type:ControlType.Number,title:\"Gap\",defaultValue:16},current:{type:ControlType.Color,title:\"Current step\",defaultValue:\"#2266ff\"},previous:{type:ControlType.Color,title:\"Previous step\",defaultValue:\"#2266ff50\",hidden:props=>props.stepIndicatorType===\"slider\"},next:{type:ControlType.Color,title:\"Next step\",defaultValue:\"#eeeeee\"},font:{type:ControlType.Font,controls:\"extended\",hidden:props=>props.stepIndicatorType===\"circle\"}}},inputStyle:{type:ControlType.Object,title:\"Inputs\",controls:{styling:{type:ControlType.Object,title:\"Styling\",controls:{backgroundColor:{type:ControlType.Color,title:\"Background Color\",defaultValue:\"#fafafa\"},borderColor:{type:ControlType.Color,title:\"Border Color\",defaultValue:\"#dddddd\"},borderWidth:{type:ControlType.FusedNumber,title:\"Border width\",defaultValue:1,toggleKey:\"isMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"borderTopWidth\",\"borderRightWidth\",\"borderBottomWidth\",\"borderLeftWidth\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Border Radius\",defaultValue:10},padding:{type:ControlType.FusedNumber,title:\"Padding\",defaultValue:0,toggleKey:\"isMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},iconPosition:{type:ControlType.Enum,title:\"Position\",options:[\"left\",\"right\"],optionTitles:[\"Left\",\"Right\"],defaultValue:\"right\"},iconSize:{type:ControlType.Number,title:\"Icon size\",defaultValue:24,min:0,step:1},iconColor:{type:ControlType.Color,title:\"Icon Color\",defaultValue:\"#000000\"},extraColorStyles:{type:ControlType.Object,title:\"Active / Error\",controls:{hoverColor:{type:ControlType.Color,title:\"Hover bg Color\",defaultValue:\"#ffffff\"},hoverBorderColor:{type:ControlType.Color,title:\"Hover border\",defaultValue:\"#2266FF25\"},activeColor:{type:ControlType.Color,title:\"Active Color\",defaultValue:\"#2266ff\"},errorColor:{type:ControlType.Color,title:\"Error Color\",defaultValue:\"#ff0020\"},useOutline:{type:ControlType.Boolean,title:\"Use outline\",defaultValue:true,description:\"This will place a larger outline around the input when selected/hovered/error\"}}}}},checkboxStyle:{type:ControlType.Object,title:\"Checkbox/Radio\",controls:{font:{type:ControlType.Font,controls:\"extended\"},color:{type:ControlType.Color,title:\"Label color\",defaultValue:\"#000000\"},colorScheme:{type:ControlType.Enum,title:\"Mode\",options:[\"light\",\"dark\"],optionTitles:[\"Light\",\"Dark\"],defaultValue:\"light\",displaySegmentedControl:true,segmentedControlDirection:\"horizontal\"},accent:{type:ControlType.Color,title:\"Active color\",defaultValue:\"#2266ff\"},borderWidth:{type:ControlType.Number,title:\"Border Width\",defaultValue:1},borderRadius:{type:ControlType.Number,title:\"Border Radius\",defaultValue:10},size:{type:ControlType.Number,title:\"Size\",defaultValue:14,min:0,step:1},marginBottom:{type:ControlType.Number,title:\"Space between\",defaultValue:4}}},fontStyle:{type:ControlType.Object,title:\"Fonts\",controls:{font:{type:ControlType.Font,controls:\"extended\"},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#000000\"},labelStyle:{type:ControlType.Object,title:\"Label\",controls:{font:{type:ControlType.Font,controls:\"extended\"},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#828282\"},padding:{type:ControlType.FusedNumber,title:\"Padding\",defaultValue:0,toggleKey:\"isMixed\",toggleTitles:[\"All\",\"Individual\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0}}}}}}},buttonStyle:{type:ControlType.Object,title:\"Button\",controls:{buttonSubmit:{type:ControlType.String,title:\"Submit text\",defaultValue:\"Submit\"},buttonNext:{type:ControlType.String,title:\"Next step text\",defaultValue:\"Continue\"},buttonAlignment:{type:ControlType.Enum,options:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",title:\"Button Alignment\"},styling:{type:ControlType.Object,title:\"Styling\",controls:{borderRadius:{type:ControlType.Number,title:\"Border Radius\",defaultValue:10},backgroundColor:{type:ControlType.Color,title:\"Background Color\",defaultValue:\"#2266FF\"},borderColor:{type:ControlType.Color,title:\"Border Color\",defaultValue:\"#2266FF\"},borderWidth:{type:ControlType.Number,title:\"Border Width\",defaultValue:1},padding:{type:ControlType.Number,title:\"Padding\",defaultValue:16},marginTop:{type:ControlType.Number,title:\"Margin Top\",defaultValue:8},hoverColor:{type:ControlType.Color,title:\"Hover\",defaultValue:\"#2266FF\"},showIcon:{type:ControlType.Boolean,title:\"Show Icon\",defaultValue:true}}},fontStyle:{type:ControlType.Object,title:\"Font\",controls:{font:{type:ControlType.Font,controls:\"extended\"},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#ffffff\"}}}}},success:{type:ControlType.Object,title:\"Success\",controls:{afterSubmit:{title:\"On Success\",type:ControlType.Enum,options:[\"redirect\",\"toast\"],optionTitles:[\"Redirect to another page\",\"Show a toast message\",],defaultValue:\"toast\"},redirectURL:{title:\"Redirect URL\",type:ControlType.Link,hidden:props=>props.afterSubmit!==\"redirect\"},messageTitle:{type:ControlType.String,title:\"Title\",defaultValue:\"Thank you\",hidden:props=>props.success.afterSubmit!==\"toast\"},messageText:{type:ControlType.String,title:\"Body\",defaultValue:\"We will be in touch shortly\",hidden:props=>props.success.afterSubmit!==\"toast\"},toastIcon:{type:ControlType.Number,title:\"Size icon\",defaultValue:32},iconColor:{type:ControlType.Color,title:\"Color icon\",defaultValue:\"#2266ff\",hidden:props=>props.success.afterSubmit!==\"toast\"},toastFontTitle:{type:ControlType.Object,title:\"Title font\",controls:{font:{type:ControlType.Font,controls:\"extended\"},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#000000\"}}},toastFontText:{type:ControlType.Object,title:\"Text font\",controls:{font:{type:ControlType.Font,controls:\"extended\"},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#000000\"}}}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"MagicFormPro\":{\"type\":\"reactComponent\",\"name\":\"MagicFormPro\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MagicFormPro.map", "// Generated by Framer (013b13c)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-TmMP2 .framer-styles-preset-17rbnnq {  }\"];export const className=\"framer-TmMP2\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Playfair Display-500\"]);export const fonts=[{family:\"Playfair Display\",moduleAsset:{localModuleIdentifier:\"local-module:css/lZI8bkZvo:default\",url:\"https://fonts.gstatic.com/s/playfairdisplay/v36/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKd3vUDQZNLo_U2r.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/playfairdisplay/v36/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKd3vUDQZNLo_U2r.ttf\",weight:\"500\"}];export const css=['.framer-iutQB .framer-styles-preset-vkk02f:not(.rich-text-wrapper), .framer-iutQB .framer-styles-preset-vkk02f.rich-text-wrapper h3 { --framer-font-family: \"Playfair Display\", serif; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: -0.015625em; --framer-line-height: 130%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, #1b1b1b); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 768px) { .framer-iutQB .framer-styles-preset-vkk02f:not(.rich-text-wrapper), .framer-iutQB .framer-styles-preset-vkk02f.rich-text-wrapper h3 { --framer-font-family: \"Playfair Display\", serif; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: -0.015625em; --framer-line-height: 130%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, #1b1b1b); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 767px) and (min-width: 0px) { .framer-iutQB .framer-styles-preset-vkk02f:not(.rich-text-wrapper), .framer-iutQB .framer-styles-preset-vkk02f.rich-text-wrapper h3 { --framer-font-family: \"Playfair Display\", serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 500; --framer-letter-spacing: -0.015625em; --framer-line-height: 130%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-0c8fd507-faea-491a-8caf-ad6cd40c959b, #1b1b1b); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-iutQB\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MagicFormPro", "props", "formValues", "setFormValues", "e", "validationErrors", "setValidationErrors", "inputValues", "setInputValues", "toastVisible", "setToastVisible", "ye", "fieldActive", "setFieldActive", "showPassword", "setShowPassword", "isHovered", "setIsHovered", "activeHoverField", "setActiveHoverField", "windowWidth", "setWindowWidth", "currentStep", "setCurrentStep", "isHigherThanStep1", "window", "handleResize", "handleIconClick", "handleFieldActive", "fieldName", "isActive", "prevState", "countries", "hasMoreSteps", "input", "getTotalSteps", "steps", "goBackOneStep", "StepIndicator", "step", "isCurrent", "isCompleted", "backgroundColor", "handleClick", "p", "motion", "Slider", "totalSteps", "progress", "u", "Dr", "buttonAlignmentStyles", "validate", "errors", "field", "validateEmail", "prevErrors", "email", "handleSubmit", "event", "submitUrl", "handleFormSuccess", "error", "handleChange", "name", "value", "type", "checked", "checkboxValues", "index", "renderInputTypes", "ErrorMessage", "errorColor", "X0", "defaultStyle", "defaultInputStyle", "iconPadding", "radioStyle", "iconStyle", "selectStyle", "widthStyle", "formStyle", "IconComponent", "index_esm_exports", "renderInput", "showIcon", "renderIcon", "sharedStyles", "inputType", "defaultIconComponent", "passwordIcon", "Xj", "iconStyles", "Uj", "option", "optionIndex", "ref", "du", "ref1", "jB", "_", "i", "mm", "iconNames", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className"]
}
