{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/p64C0n6xNEFY9NovSiJw/FramerFormsShared.js", "ssg:https://framerusercontent.com/modules/LLEq54aHhsZdY00ja9ye/53RI0AWF7S000bwQZraF/Slider.js", "ssg:https://framerusercontent.com/modules/8rCYxdlQtHFsIungL5nP/vdXjIiOlFRkbus4lJiDw/ZJFqkvIag.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{ControlType,RenderTarget,withCSS}from\"framer\";import{forwardRef,useEffect,useState,useRef,useId}from\"react\";import{motion}from\"framer-motion\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";// totalPages\n// pageHistory\n// logicConfig\n// isEndPage\n// previousPage()\n// nextPage()\nexport const useMultiStepFormStore=createStore({});export const HIDDEN_CLASS_NAME=\"framerforms-hidden\";const CANVAS_HIDDEN_CLASS_NAME=\"framerforms-canvas-hidden\";export const useInstanceId=()=>{const id=useId();const cleanId=id.replace(/:/g,\"\");const instanceId=`superfields-${cleanId}`;return instanceId;};export const HiddenInput=/*#__PURE__*/forwardRef(({name,required,value,setInvalid,onSetValueEvent,noPrefill=false,disabled=false},parentRef)=>{const internalRef=useRef(null);const ref=parentRef||internalRef;useEffect(()=>{if(ref.current){ref.current.addEventListener(\"framerFormsSetValue\",onSetValueEvent);}return()=>{if(ref.current){ref.current.removeEventListener(\"framerFormsSetValue\",onSetValueEvent);}};},[onSetValueEvent]);return /*#__PURE__*/_jsx(\"input\",{ref:ref,type:\"text\",\"data-framerforms-set-value-event\":!!onSetValueEvent,\"data-framerforms-no-prefill\":noPrefill,style:{position:\"absolute\",opacity:0,pointerEvents:\"none\",inset:0},tabIndex:-1,name:name,required:required,value:value,disabled:disabled,onInvalid:event=>{event.preventDefault();setInvalid(true);}});});const HideElementComponent=/*#__PURE__*/forwardRef(({},ref)=>{return /*#__PURE__*/_jsx(\"div\",{ref:ref,className:HIDDEN_CLASS_NAME});});export const HideElement=withCSS(HideElementComponent,[`div:has(> .${HIDDEN_CLASS_NAME}) { display: none; }`,`.${HIDDEN_CLASS_NAME} { display: none; }`],HIDDEN_CLASS_NAME);HideElement.displayName=\"FramerForms/Hide Element\";export const HiddenComponentLabel=/*#__PURE__*/forwardRef(({text,subtext=\"\",children=null,...otherProps},ref)=>{const isCanvas=RenderTarget.current()===RenderTarget.canvas;const id=useInstanceId();return isCanvas?/*#__PURE__*/_jsxs(\"div\",{\"data-framerforms\":true,...otherProps,ref:ref,className:CANVAS_HIDDEN_CLASS_NAME,style:{backgroundColor:\"rgba(187, 187, 187, 0.15)\",borderRadius:10,padding:\"12px 16px\",fontFamily:\"Inter\",fontWeight:500,fontSize:12,color:\"#999\",display:\"flex\",flexDirection:\"column\",gap:4,alignItems:\"center\",textAlign:\"center\",width:\"100%\",height:\"100%\",textWrap:\"nowrap\"},children:[children,text,subtext&&/*#__PURE__*/_jsx(\"span\",{style:{opacity:.7,whiteSpace:\"pre\",lineHeight:1.4},children:subtext}),/*#__PURE__*/_jsx(Border,{width:\"1px\",style:\"solid\",borderColor:\"rgba(136, 136, 136, 0.1)\"}),/*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:`\n                        [data-framer-component-container=\"true\"] div:has(> .${CANVAS_HIDDEN_CLASS_NAME}) {\n                            display: none !important;\n                        }`}})]}):/*#__PURE__*/_jsxs(\"div\",{...otherProps,ref:ref,className:HIDDEN_CLASS_NAME,children:[/*#__PURE__*/_jsx(HideElement,{}),children]});});HiddenComponentLabel.displayName=\"FramerForms/Hidden Component Label\";export function iconProp({size=16,buttonTitle=\"Icon\",controls={}}={}){return{type:ControlType.Object,buttonTitle,optional:true,defaultValue:{color:\"#999\",size},controls:{image:{type:ControlType.Image},color:{type:ControlType.Color,optional:true,defaultValue:\"#999\"},size:{type:ControlType.Number,defaultValue:size,min:1,step:1,displayStepper:true},...controls}};}export function Icon({image,color,size,style={},defaultImage}){return /*#__PURE__*/_jsx(\"div\",{style:{width:size,height:size,minWidth:size,minHeight:size,pointerEvents:\"none\",backgroundColor:color,backgroundImage:color?\"none\":image?`url('${image}')`:defaultImage,maskImage:image?`url('${image}')`:defaultImage,backgroundSize:\"contain\",backgroundPosition:\"center\",maskSize:\"contain\",maskPosition:\"center\",...style}});}Icon.displayName=\"FramerForms/Icon\";export function Border({width,style,transition=null,borderColor=\"inherit\",opacity=1}){return /*#__PURE__*/_jsx(motion.div,{animate:{borderColor,opacity},style:{position:\"absolute\",inset:0,borderWidth:width,borderStyle:style,borderRadius:\"inherit\",pointerEvents:\"none\"},initial:false,transition:transition});}Border.displayName=\"FramerForms/Border\";export function createBackground(fill,on=null,focused=null,invalid=null){if(fill){const onOff=typeof on==\"boolean\";if(fill.type==\"color\"){let color=invalid&&fill.colorInvalid||focused&&fill.colorFocus||(onOff?on?fill.colorOn:fill.colorOff:fill.color);return{backgroundColor:color,backgroundImage:\"none\"};}else{const colorA=invalid&&fill.colorAInvalid||focused&&fill.colorAFocus||(onOff?on?fill.colorAOn:fill.colorAOff:fill.colorA);const colorB=invalid&&fill.colorBInvalid||focused&&fill.colorBFocus||(onOff?on?fill.colorBOn:fill.colorBOff:fill.colorB);return{backgroundColor:\"none\",backgroundImage:`linear-gradient(${fill.gradientAngle}deg, ${colorB}, ${colorA})`};}}return{};}export function parsePadding(padding){if(typeof padding!==\"string\"){return[0,0,0,0];}const values=padding.split(\" \");const parsedValues=values.map(value=>parseInt(value.replace(\"px\",\"\"),10));switch(parsedValues.length){case 1:const p=parsedValues[0];return[p,p,p,p];case 4:return parsedValues;}return[0,0,0,0];}export function fillProp({onOff=false,focus=true,invalid=true,optional=false,hidden=null,color=\"rgba(187, 187, 187, 0.15)\",colorA=\"#BBB\",colorB=\"#676767\",colorOn=\"rgba(70, 160, 219, 0.2)\",colorAOn=\"#66C2FF\",colorBOn=\"#0099FF\",colorOff=\"rgba(187, 187, 187, 0.15)\",colorAOff=\"#BBB\",colorBOff=\"#676767\"}={}){return{type:ControlType.Object,optional,hidden,icon:\"color\",defaultValue:{type:\"color\",...onOff?{colorOn,colorOff}:{color,colorA,colorB}},controls:{type:{type:ControlType.Enum,defaultValue:\"color\",options:[\"color\",\"linearGradient\"],optionTitles:[\"Color\",\"Gradient\"],displaySegmentedControl:true},...onOff?{colorOn:{type:ControlType.Color,defaultValue:colorOn,hidden:props=>props.type!==\"color\"},colorOff:{type:ControlType.Color,defaultValue:colorOff,hidden:props=>props.type!==\"color\"}}:{color:{type:ControlType.Color,defaultValue:color,hidden:props=>props.type!==\"color\"}},...focus?{colorFocus:{type:ControlType.Color,optional:true,title:\"Focus\",hidden:props=>props.type!==\"color\"}}:{},...invalid?{colorInvalid:{type:ControlType.Color,optional:true,title:\"Invalid\",hidden:props=>props.type!==\"color\"}}:{},...onOff?{colorAOn:{type:ControlType.Color,defaultValue:colorAOn,title:\"Colors On\",hidden:props=>props.type!==\"linearGradient\"},colorBOn:{type:ControlType.Color,defaultValue:colorBOn,title:\" \",hidden:props=>props.type!==\"linearGradient\"},colorAOff:{type:ControlType.Color,defaultValue:colorAOff,title:\"Colors Off\",hidden:props=>props.type!==\"linearGradient\"},colorBOff:{type:ControlType.Color,defaultValue:colorBOff,title:\" \",hidden:props=>props.type!==\"linearGradient\"}}:{colorA:{type:ControlType.Color,defaultValue:colorA,title:\"Colors\",hidden:props=>props.type!==\"linearGradient\"},colorB:{type:ControlType.Color,defaultValue:colorB,title:\" \",hidden:props=>props.type!==\"linearGradient\"}},...focus?{colorAFocus:{type:ControlType.Color,optional:true,title:\"Focus\",hidden:props=>props.type!==\"linearGradient\"},colorBFocus:{type:ControlType.Color,optional:true,title:\" \",hidden:props=>props.type!==\"linearGradient\"}}:{},...invalid?{colorAInvalid:{type:ControlType.Color,optional:true,title:\"Invalid\",hidden:props=>props.type!==\"linearGradient\"},colorBInvalid:{type:ControlType.Color,optional:true,title:\" \",hidden:props=>props.type!==\"linearGradient\"}}:{},gradientAngle:{type:ControlType.Number,defaultValue:0,title:\"Angle\",step:1,min:0,max:360,unit:\"\\xb0\",hidden:props=>props.type!=\"linearGradient\"}}};}export function borderProp({onOff=false,focus=true,invalid=true,defaultValue=true,color=\"rgba(136, 136, 136, 0.1)\",colorOn=\"#0099FF\",colorOff=\"rgba(136, 136, 136, 0.1)\",colorFocus=\"#0099FF\",colorInvalid=\"#FF5A6F\",hidden=null}={}){return{type:ControlType.Object,optional:true,hidden,defaultValue:defaultValue?{color,colorOn,colorOff,colorFocus,colorInvalid,width:\"1px\"}:undefined,controls:{...onOff?{colorOn:{type:ControlType.Color,defaultValue:colorOn},colorOff:{type:ControlType.Color,defaultValue:colorOff}}:{color:{type:ControlType.Color,defaultValue:color}},...focus?{colorFocus:{type:ControlType.Color,defaultValue:colorFocus,optional:true,title:\"Focus\"}}:{},...invalid?{colorInvalid:{type:ControlType.Color,defaultValue:colorInvalid,optional:true,title:\"Invalid\"}}:{},width:{type:ControlType.Padding,defaultValue:\"1px\"},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}};}export function shadowsProp({invalid=true,onOff=false}={}){return{type:ControlType.Object,buttonTitle:\"Shadows\",optional:true,controls:{...onOff?{on:{type:ControlType.BoxShadow,defaultValue:\"rgba(0, 153, 255, 0.5) 0px 2px 4px 0px\"},off:{type:ControlType.BoxShadow,defaultValue:\"rgba(0, 0, 0, 0.25) 0px 2px 4px 0px\"}}:{default:{type:ControlType.BoxShadow,defaultValue:\"rgba(0, 0, 0, 0.25) 0px 2px 4px 0px\"}},focus:{type:ControlType.BoxShadow},invalid:invalid?{type:ControlType.BoxShadow}:null}};}export function useCanvasState(ref){const[totalPages,setTotalPages]=useState(1);useEffect(()=>{const element=ref.current;let pages=null;function updateState(){setTotalPages(pages?pages.children.length:1);}if(element){const multiStepForms=document.querySelectorAll(\"div[data-framerforms-multi-step-form]\");for(const multiStepForm of multiStepForms){const form=multiStepForm.closest(\"form\")||multiStepForm.parentElement.parentElement.parentElement;if(form&&isAncestor(form,element)){pages=form.querySelector(':scope > [data-framer-name=\"Pages\" i]');}}}updateState();if(pages){const observer=new MutationObserver((mutationsList,observer)=>{for(let mutation of mutationsList){if(mutation.type===\"childList\"){updateState();}}});observer.observe(pages,{childList:true});return()=>observer.disconnect();}},[]);return{page:0,totalPages};}export function isAncestor(ancestorElement,descendantElement){if(!ancestorElement||!descendantElement){return false;}let currentElement=descendantElement;while(currentElement!==null){if(currentElement===ancestorElement){return true;}currentElement=currentElement.parentElement;}return false;}export function getFormInfo(element){const form=element===null||element===void 0?void 0:element.closest(\"form\");let formId=null;let pages=null;if(form){formId=form.getAttribute(\"framerforms-id\");pages=form.querySelector(':scope > [data-framer-name=\"Pages\" i]');if(!formId){formId=uuid();form.setAttribute(\"framerforms-id\",formId);}}return{form,formId,pages};}function uuid(){let d=new Date().getTime()// Timestamp\n;let d2=performance&&performance.now&&performance.now()*1e3||0// Time in microseconds since page-load or 0 if unsupported\n;return\"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx\".replace(/[xy]/g,function(c){let r=Math.random()*16// random number between 0 and 16\n;if(d>0){// Use timestamp until depleted\nr=(d+r)%16|0;d=Math.floor(d/16);}else{// Use microseconds since page-load if supported\nr=(d2+r)%16|0;d2=Math.floor(d2/16);}return(c===\"x\"?r:r&3|8).toString(16);});}\nexport const __FramerMetadata__ = {\"exports\":{\"borderProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isAncestor\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"shadowsProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useInstanceId\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"parsePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"iconProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"getFormInfo\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"createBackground\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"HiddenComponentLabel\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"HideElement\":{\"type\":\"reactComponent\",\"name\":\"HideElement\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"fillProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"HIDDEN_CLASS_NAME\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Border\":{\"type\":\"reactComponent\",\"name\":\"Border\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"HiddenInput\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useCanvasState\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useMultiStepFormStore\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FramerFormsShared.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useState}from\"react\";import{useInstanceId}from\"https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/p64C0n6xNEFY9NovSiJw/FramerFormsShared.js\";/**\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n * @framerIntrinsicWidth 400\n * @framerDisableUnlink\n */export default function Slider(props){var _handle_border,_handle_border1;const{min,max,step,defaultValue,line,handle,label}=props;const id=useInstanceId();const isCanvas=RenderTarget.current()===RenderTarget.canvas;const[value,setValue]=useState(defaultValue);const[focused,setFocused]=useState(false);function onFocus(){var _props_focusEvent;setFocused(true);(_props_focusEvent=props.focusEvent)===null||_props_focusEvent===void 0?void 0:_props_focusEvent.call(props);}function onBlur(){var _props_blurEvent;setFocused(false);(_props_blurEvent=props.blurEvent)===null||_props_blurEvent===void 0?void 0:_props_blurEvent.call(props);}var _handle_border_color;const handleCSS=`appearance: none;\n        -webkit-appearance: none;\n        width: ${handle.size}px;\n        height: ${handle.size}px;\n        border-radius: ${handle.radius};\n        background-color: ${handle.fill};\n        box-sizing: border-box;\n        translate: 0 ${(-handle.size+line.height)/2-(line.border?Math.min(line.border.width,line.height/2):0)}px;\n        border-width: ${((_handle_border=handle.border)===null||_handle_border===void 0?void 0:_handle_border.width)||0}px;\n        border-style: ${handle.border?\"solid\":\"none\"};\n        border-color: ${(_handle_border_color=(_handle_border1=handle.border)===null||_handle_border1===void 0?void 0:_handle_border1.color)!==null&&_handle_border_color!==void 0?_handle_border_color:\"none\"};\n        box-shadow: ${handle.shadows};`;const lineCSS=`appearance: none;\n        -webkit-appearance: none;\n        height: ${line.height}px;`;const finalValue=isCanvas?defaultValue:value;const percent=getPercentage(finalValue,min,max);var _label_gap;return /*#__PURE__*/_jsxs(\"div\",{\"data-framerforms\":true,id:id,style:{display:\"flex\",flexDirection:(label===null||label===void 0?void 0:label.location)==\"right\"?\"row-reverse\":\"row\",gap:(_label_gap=label===null||label===void 0?void 0:label.gap)!==null&&_label_gap!==void 0?_label_gap:0,alignItems:\"center\",...props.style},children:[label&&/*#__PURE__*/_jsxs(\"p\",{style:{margin:0,minWidth:label.minWidth,color:label.fontColor,...label.font},children:[label.prefix,label.formatted?formatNumberToLocale(finalValue,label.locale):finalValue,label.suffix]}),/*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\",flex:1,height:Math.max(handle.size,line.height),display:\"flex\",flexDirection:\"row\",alignItems:\"center\"},children:[/*#__PURE__*/_jsx(\"div\",{style:{height:line.height,background:`linear-gradient(to right, ${line.leftFill} ${percent}%, ${line.rightFill} ${percent}%)`,boxShadow:line.shadows,borderRadius:line.radius,flex:1}}),/*#__PURE__*/_jsx(\"input\",{type:\"range\",name:props.name,min:min,max:max,step:step,value:finalValue,onChange:event=>setValue(Number(event.target.value)),onFocus:onFocus,onBlur:onBlur,style:{position:\"absolute\",inset:0,display:\"block\",appearance:\"none\",outline:\"none\",margin:0,cursor:\"pointer\",background:\"none\"}})]}),/*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:`\n                    #${id} input[type=range]::-webkit-slider-thumb {${handleCSS}}\n                    #${id} input[type=range]::-moz-range-thumb {${handleCSS}}\n\n                    #${id} input[type=range]::-webkit-slider-runnable-track {${lineCSS}}\n                    #${id} input[type=range]::-moz-range-track {${lineCSS}}\n                    #${id} input[type=range]::-moz-range-progress {${lineCSS}}`}})]});}addPropertyControls(Slider,{name:{type:ControlType.String,defaultValue:\"Slider\",placeholder:\"Name\",preventLocalization:true},defaultValue:{type:ControlType.Number,defaultValue:50,title:\"Default\"},min:{title:\"Min\",type:ControlType.Number,defaultValue:0},max:{title:\"Max\",type:ControlType.Number,defaultValue:100},step:{type:ControlType.Number,defaultValue:1},line:{type:ControlType.Object,buttonTitle:\"Style\",controls:{height:{type:ControlType.Number,defaultValue:4,min:1,step:1,displayStepper:true},leftFill:{type:ControlType.Color,defaultValue:\"#0099FF\"},rightFill:{type:ControlType.Color,defaultValue:\"rgba(187, 187, 187, 0.3)\"},radius:{type:ControlType.BorderRadius,defaultValue:\"2px\"},shadows:{type:ControlType.BoxShadow}}},handle:{type:ControlType.Object,buttonTitle:\"Style\",icon:\"boolean\",controls:{size:{type:ControlType.Number,defaultValue:16,min:0,step:1},fill:{type:ControlType.Color,defaultValue:\"#FFF\"},radius:{type:ControlType.BorderRadius,defaultValue:\"8px\"},border:{type:ControlType.Object,optional:true,controls:{color:{type:ControlType.Color,defaultValue:\"#222\"},width:{type:ControlType.Number,defaultValue:1,min:0,step:1,displayStepper:true},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}},shadows:{type:ControlType.BoxShadow,defaultValue:\"0px 4px 6px 0px rgba(0, 0, 0, 0.2)\"}}},label:{type:ControlType.Object,optional:true,controls:{location:{type:ControlType.Enum,defaultValue:\"left\",options:[\"left\",\"right\"],optionTitles:[\"Left\",\"Right\"],displaySegmentedControl:true},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:14,lineHeight:1.2}},fontColor:{type:ControlType.Color,defaultValue:\"#999999\",title:\"Color\"},formatted:{type:ControlType.Boolean,defaultValue:true},locale:{type:ControlType.String,defaultValue:\"\",placeholder:`Auto (${typeof navigator!==\"undefined\"?navigator.language:\"\"})`,hidden:props=>!props.formatted},minWidth:{type:ControlType.Number,defaultValue:24,min:0,step:1},gap:{type:ControlType.Number,defaultValue:10,min:0,step:1},prefix:{type:ControlType.String,defaultValue:\"\"},suffix:{type:ControlType.String,defaultValue:\"\"}}},focusEvent:{type:ControlType.EventHandler,title:\"Focus\"},blurEvent:{type:ControlType.EventHandler,title:\"Blur\"}});function getPercentage(value,min,max){// Ensure min is less than max by swapping if necessary\nif(min>max){[min,max]=[max,min];}// Clamp the value to be within the min and max range\nvalue=Math.max(min,Math.min(value,max));// Handle the edge case where min equals max to avoid division by zero\nif(min===max){return 100;}const percentage=(value-min)/(max-min)*100;return percentage;}function formatNumberToLocale(number,locale){if(typeof Intl!==\"undefined\"){const formatter=new Intl.NumberFormat(locale||typeof navigator!==\"undefined\"?navigator.language:\"en-us\");return formatter.format(number);}else{return number.toString();}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slider\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (66c1c8d)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,FormPlainTextInput,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const serializationHash=\"framer-9KOs9\";const variantClassNames={LopYn8HNj:\"framer-v-vjgqte\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=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 humanReadableEnumMap={\"Phone Number\":\"tel\",\"Text Area\":\"textarea\",Date:\"date\",Email:\"email\",Number:\"number\",Text:\"text\",Time:\"time\",URL:\"url\"};const getProps=({autoFill,autoFocus,height,hidden,id,max,maxLength,min,name1,placeholder,required,step,type,value,width,...props})=>{return{...props,b5NqQ5BWj:hidden??props.b5NqQ5BWj,K15Yh9hEb:value??props.K15Yh9hEb,KPPSOC5Bi:min??props.KPPSOC5Bi,n8QiJPzyE:maxLength??props.n8QiJPzyE??1e5,rtee3yC7u:step??props.rtee3yC7u??1,sjwwx9VCU:humanReadableEnumMap[type]??type??props.sjwwx9VCU??\"text\",Tp7i0gKXG:placeholder??props.Tp7i0gKXG,ueRgLu0gj:max??props.ueRgLu0gj??1e7,W9XARVWLL:autoFocus??props.W9XARVWLL,XJhd_brxl:autoFill??props.XJhd_brxl??true,XJuuQAaZI:name1??props.XJuuQAaZI,zldvbkrff:required??props.zldvbkrff??true};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,sjwwx9VCU,XJuuQAaZI,zldvbkrff,K15Yh9hEb,Tp7i0gKXG,KPPSOC5Bi,ueRgLu0gj,n8QiJPzyE,rtee3yC7u,W9XARVWLL,XJhd_brxl,b5NqQ5BWj,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"LopYn8HNj\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-vjgqte\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"LopYn8HNj\",ref:refBinding,style:{...style},children:/*#__PURE__*/_jsx(FormPlainTextInput,{autofillEnabled:XJhd_brxl,autoFocus:W9XARVWLL,className:\"framer-7712z2\",\"data-framer-name\":\"Input\",defaultValue:K15Yh9hEb,inputName:XJuuQAaZI,layoutDependency:layoutDependency,layoutId:\"eNKEJ68RG\",max:sjwwx9VCU===\"number\"?ueRgLu0gj:undefined,maxLength:n8QiJPzyE,min:sjwwx9VCU===\"number\"?KPPSOC5Bi:undefined,placeholder:Tp7i0gKXG,required:zldvbkrff,step:rtee3yC7u,style:{\"--framer-input-background\":\"var(--token-6a6d1399-e0d3-458b-9e29-96d27df1c9d2, rgba(255, 255, 255, 0.04))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"var(--token-4ee600e9-b261-4d58-ac71-46221076960e, rgba(255, 255, 255, 0.12))\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"6px\",\"--framer-input-border-radius-bottom-right\":\"6px\",\"--framer-input-border-radius-top-left\":\"6px\",\"--framer-input-border-radius-top-right\":\"6px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"dashed\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-0a4f1509-ff06-48e1-89b7-b63338bae98d, rgb(225, 217, 255))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-c2404f29-5d75-43ae-9091-9362defd9433, rgba(225, 217, 255, 0.6))\"},type:b5NqQ5BWj?\"hidden\":sjwwx9VCU})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9KOs9.framer-1pbszwr, .framer-9KOs9 .framer-1pbszwr { display: block; }\",\".framer-9KOs9.framer-vjgqte { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 55px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 319px; }\",'.framer-9KOs9 .framer-7712z2 { --framer-input-focused-background: var(--token-56c871dd-80bc-4031-b41d-333705d1391c, #090412); --framer-input-focused-border-color: var(--token-887a062b-1950-4b53-8345-97084bbfd553, #8666ff); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-focused-transition: all 0.1s cubic-bezier(0.44,0,0.56,1) 0s; --framer-input-font-family: \"Satoshi\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 16px; --framer-input-font-weight: 400; --framer-input-padding: 18px; flex: 1 0 0px; height: 100%; position: relative; width: 1px; }',\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9KOs9.framer-vjgqte { gap: 0px; } .framer-9KOs9.framer-vjgqte > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-9KOs9.framer-vjgqte > :first-child { margin-left: 0px; } .framer-9KOs9.framer-vjgqte > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 55\n * @framerIntrinsicWidth 319\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"sjwwx9VCU\":\"type\",\"XJuuQAaZI\":\"name1\",\"zldvbkrff\":\"required\",\"K15Yh9hEb\":\"value\",\"Tp7i0gKXG\":\"placeholder\",\"KPPSOC5Bi\":\"min\",\"ueRgLu0gj\":\"max\",\"n8QiJPzyE\":\"maxLength\",\"rtee3yC7u\":\"step\",\"W9XARVWLL\":\"autoFocus\",\"XJhd_brxl\":\"autoFill\",\"b5NqQ5BWj\":\"hidden\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZJFqkvIag=withCSS(Component,css,\"framer-9KOs9\");export default FramerZJFqkvIag;FramerZJFqkvIag.displayName=\"Field\";FramerZJFqkvIag.defaultProps={height:55,width:319};addPropertyControls(FramerZJFqkvIag,{sjwwx9VCU:{defaultValue:\"text\",options:[\"text\",\"textarea\",\"email\",\"number\",\"tel\",\"url\",\"date\",\"time\"],optionTitles:[\"Text\",\"Text Area\",\"Email\",\"Number\",\"Phone Number\",\"URL\",\"Date\",\"Time\"],title:\"Type\",type:ControlType.Enum},XJuuQAaZI:{defaultValue:\"\",title:\"Name\",type:ControlType.String},zldvbkrff:{defaultValue:true,title:\"Required\",type:ControlType.Boolean},K15Yh9hEb:{defaultValue:\"\",title:\"Value\",type:ControlType.String},Tp7i0gKXG:{defaultValue:\"\",title:\"Placeholder\",type:ControlType.String},KPPSOC5Bi:{defaultValue:0,displayStepper:true,title:\"Min\",type:ControlType.Number},ueRgLu0gj:{defaultValue:1e7,displayStepper:true,title:\"Max\",type:ControlType.Number},n8QiJPzyE:{defaultValue:1e5,displayStepper:true,title:\"Max Length\",type:ControlType.Number},rtee3yC7u:{defaultValue:1,title:\"Step\",type:ControlType.Number},W9XARVWLL:{defaultValue:false,title:\"Auto Focus\",type:ControlType.Boolean},XJhd_brxl:{defaultValue:true,title:\"Auto Fill\",type:ControlType.Boolean},b5NqQ5BWj:{defaultValue:false,title:\"Hidden\",type:ControlType.Boolean}});addFonts(FramerZJFqkvIag,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZJFqkvIag\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"319\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"sjwwx9VCU\\\":\\\"type\\\",\\\"XJuuQAaZI\\\":\\\"name1\\\",\\\"zldvbkrff\\\":\\\"required\\\",\\\"K15Yh9hEb\\\":\\\"value\\\",\\\"Tp7i0gKXG\\\":\\\"placeholder\\\",\\\"KPPSOC5Bi\\\":\\\"min\\\",\\\"ueRgLu0gj\\\":\\\"max\\\",\\\"n8QiJPzyE\\\":\\\"maxLength\\\",\\\"rtee3yC7u\\\":\\\"step\\\",\\\"W9XARVWLL\\\":\\\"autoFocus\\\",\\\"XJhd_brxl\\\":\\\"autoFill\\\",\\\"b5NqQ5BWj\\\":\\\"hidden\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"55\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZJFqkvIag.map"],
  "mappings": "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",
  "names": ["useMultiStepFormStore", "createStore", "HIDDEN_CLASS_NAME", "CANVAS_HIDDEN_CLASS_NAME", "useInstanceId", "ae", "HideElementComponent", "Y", "ref", "p", "HIDDEN_CLASS_NAME", "HideElement", "withCSS", "HiddenComponentLabel", "text", "subtext", "children", "otherProps", "isCanvas", "RenderTarget", "id", "useInstanceId", "u", "CANVAS_HIDDEN_CLASS_NAME", "Border", "Icon", "image", "color", "size", "style", "defaultImage", "p", "Border", "width", "transition", "borderColor", "opacity", "motion", "Slider", "props", "_handle_border", "_handle_border1", "min", "max", "step", "defaultValue", "line", "handle", "label", "id", "useInstanceId", "isCanvas", "RenderTarget", "value", "setValue", "ye", "focused", "setFocused", "onFocus", "_props_focusEvent", "onBlur", "_props_blurEvent", "_handle_border_color", "handleCSS", "lineCSS", "finalValue", "percent", "getPercentage", "_label_gap", "u", "formatNumberToLocale", "p", "event", "addPropertyControls", "ControlType", "navigator", "number", "locale", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "getProps", "autoFill", "autoFocus", "height", "hidden", "id", "max", "maxLength", "min", "name1", "placeholder", "required", "step", "type", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "sjwwx9VCU", "XJuuQAaZI", "zldvbkrff", "K15Yh9hEb", "Tp7i0gKXG", "KPPSOC5Bi", "ueRgLu0gj", "n8QiJPzyE", "rtee3yC7u", "W9XARVWLL", "XJhd_brxl", "b5NqQ5BWj", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "FormPlainTextInput2", "css", "FramerZJFqkvIag", "withCSS", "ZJFqkvIag_default", "addPropertyControls", "ControlType", "addFonts"]
}
