{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/mdboekOz3SVNYfwZPHBY/FramerFormsShared.js", "ssg:https://framerusercontent.com/modules/asydHDts5g0SLLYx4UPp/NFTPoc8dJTXrWQecr5kR/ButtonsInput.js", "ssg:https://framerusercontent.com/modules/byWB9JxTdOjIUcBVvJy1/s3AzAZp4HAOaiPBD90EJ/A1X_VEKpx.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{ControlType,RenderTarget,withCSS}from\"framer\";import{forwardRef,useEffect,useState,useRef}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 createId=()=>\"a\"+String(Math.floor(Math.random()*999999999));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=createId();return isCanvas?/*#__PURE__*/_jsxs(\"div\",{...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\",{children:`\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\":{\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"createBackground\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getFormInfo\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"shadowsProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"HiddenComponentLabel\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"HideElement\":{\"type\":\"reactComponent\",\"name\":\"HideElement\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"HiddenInput\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"HIDDEN_CLASS_NAME\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"borderProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useCanvasState\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isAncestor\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fillProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Border\":{\"type\":\"reactComponent\",\"name\":\"Border\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"createId\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"parsePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useMultiStepFormStore\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"iconProp\":{\"type\":\"function\",\"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,Image}from\"framer\";import{useState,useEffect,useRef}from\"react\";import{motion}from\"framer-motion\";import{Border,createBackground,fillProp,borderProp,shadowsProp,createId,HiddenInput,useMultiStepFormStore,getFormInfo}from\"https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/mdboekOz3SVNYfwZPHBY/FramerFormsShared.js\";/**\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n * @framerIntrinsicWidth 400\n * @framerDisableUnlink\n */export default function ButtonsInput(props){const{clickAction,options,textOptions,imageOptions,layout,border,shadows,valueSeparator}=props;const id=props.id||createId();const isCanvas=RenderTarget.current()===RenderTarget.canvas;const multiSelect=clickAction===\"nextPage\"?false:props.multiSelect;const[multiStepFormState,setMultiStepFormState]=useMultiStepFormStore();const[value,setValue]=useState([]);const[invalid,setInvalid]=useState(false);const[nextPageQueued,setNextPageQueued]=useState(false);const[formId,setFormId]=useState(null);const ref=useRef(null);const state=multiStepFormState[formId];useEffect(()=>{const newFormId=getFormInfo(ref.current).formId;if(!multiStepFormState[newFormId]){setMultiStepFormState({});}setFormId(newFormId);},[]);useEffect(()=>{if(invalid){var _props_invalidEvent;(_props_invalidEvent=props.invalidEvent)===null||_props_invalidEvent===void 0?void 0:_props_invalidEvent.call(props);}},[invalid]);useEffect(()=>{if(nextPageQueued){var _state_nextPage;state===null||state===void 0?void 0:(_state_nextPage=state.nextPage)===null||_state_nextPage===void 0?void 0:_state_nextPage.call(state);setNextPageQueued(false);}},[nextPageQueued]);function onSetValueEvent(event){setValue(multiSelect?event.detail.split(valueSeparator):[event.detail]);}const imageStyle={position:\"relative\",width:\"100%\",height:\"auto\",aspectRatio:imageOptions.aspectRatioMode==\"fixed\"?imageOptions.aspectRatio:undefined,borderRadius:imageOptions.radius,pointerEvents:\"none\",userSelect:\"none\",objectFit:\"cover\"};const rows=[];for(let i=0;i<options.length;i++){const option=options[i];const selected=multiSelect?value.includes(option.value):value.length===1&&value[0]===option.value;if(i%layout.columns==0){rows.push([]);}let layoutProps={};if(options.length%layout.columns==0||options.length-i>=layout.columns){layoutProps={flex:1};}else{layoutProps={flexBasis:`calc(${100/layout.columns}% - ${layout.gapH*(1-1/layout.columns)}px)`};}const color=invalid&&(textOptions===null||textOptions===void 0?void 0:textOptions.colorInvalid)||(selected?textOptions===null||textOptions===void 0?void 0:textOptions.colorOn:textOptions===null||textOptions===void 0?void 0:textOptions.colorOff);const boxShadow=invalid&&(shadows===null||shadows===void 0?void 0:shadows.invalid)||(selected?shadows===null||shadows===void 0?void 0:shadows.on:shadows===null||shadows===void 0?void 0:shadows.off);const borderColor=invalid&&(border===null||border===void 0?void 0:border.colorInvalid)||(selected?border===null||border===void 0?void 0:border.colorOn:border===null||border===void 0?void 0:border.colorOff);const onClick=()=>{if(multiSelect){setValue(selected?value.filter(v=>v!==option.value):[...value,option.value]);}else{setValue(selected?[]:[option.value]);}setInvalid(false);if(clickAction==\"nextPage\"){setNextPageQueued(true);}};var _textOptions_gap;rows[rows.length-1].push(/*#__PURE__*/_jsxs(motion.button,{type:\"button\",onClick:onClick,onKeyDown:event=>{if(event.key===\"Enter\"){onClick();}},onFocus:()=>{var _props_focusEvent;(_props_focusEvent=props.focusEvent)===null||_props_focusEvent===void 0?void 0:_props_focusEvent.call(props);if(invalid){setInvalid(false);}},onBlur:props.blurEvent,whileFocus:{...createBackground(props.fill,null,true,invalid),color:(textOptions===null||textOptions===void 0?void 0:textOptions.colorFocus)||color,boxShadow:(shadows===null||shadows===void 0?void 0:shadows.focus)||boxShadow,borderColor:(border===null||border===void 0?void 0:border.colorFocus)||borderColor},animate:{...createBackground(props.fill,selected,false,invalid),color,boxShadow,borderColor},style:{position:\"relative\",display:\"flex\",flexDirection:(textOptions===null||textOptions===void 0?void 0:textOptions.location)==\"bottom\"?\"column-reverse\":\"column\",gap:(_textOptions_gap=textOptions===null||textOptions===void 0?void 0:textOptions.gap)!==null&&_textOptions_gap!==void 0?_textOptions_gap:0,padding:props.padding,borderRadius:props.radius,cursor:\"pointer\",overflow:\"hidden\",outline:\"none\",border:\"none\",...textOptions.font,...layoutProps},initial:false,transition:props.transition,children:[textOptions&&/*#__PURE__*/_jsx(\"span\",{style:{minHeight:\"1lh\",width:\"100%\"},children:option.title}),option.image&&/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",flex:1,display:\"flex\",alignItems:imageOptions.alignV},children:isCanvas?/*#__PURE__*/_jsx(\"img\",{src:option.image.src,alt:option.image.alt||option.title||option.value,style:imageStyle}):/*#__PURE__*/_jsx(Image,{className:`${id}-image`,background:{fit:\"fill\",...option.image,alt:option.image.alt||option.title||option.value},style:imageStyle})}),border&&/*#__PURE__*/_jsx(Border,{...border,transition:props.transition})]},option.value));}return /*#__PURE__*/_jsxs(\"div\",{ref:ref,style:{display:\"flex\",flexDirection:\"column\",gap:layout.gapV,flex:1,userSelect:\"none\"},children:[/*#__PURE__*/_jsx(\"button\",{type:\"button\",style:{display:\"none\"}}),/*#__PURE__*/_jsx(HiddenInput,{name:props.name,required:props.required,value:value.join(valueSeparator),setInvalid:setInvalid,onSetValueEvent:onSetValueEvent}),rows.map((items,index)=>/*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexDirection:\"row\",gap:layout.gapH,width:\"100%\",alignItems:layout.height==\"fill\"?\"stretch\":layout.alignV,justifyContent:layout.alignH},children:items})),/*#__PURE__*/_jsx(\"style\",{children:`\n\t\t\t\t.${id}-image > div {\n\t\t\t\t\tposition: relative !important;\n\t\t\t\t\t${imageOptions.aspectRatioMode==\"fixed\"?\"height: 100%;\":\"\"}\n\t\t\t\t}\n\t\t\t`})]});}ButtonsInput.displayName=\"Buttons Input\";addPropertyControls(ButtonsInput,{name:{type:ControlType.String,defaultValue:\"Buttons\",placeholder:\"Name\"},required:{type:ControlType.Boolean,defaultValue:false},clickAction:{type:ControlType.Enum,defaultValue:\"select\",options:[\"select\",\"nextPage\"],optionTitles:[\"Select\",\"Go To Next Page\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},multiSelect:{type:ControlType.Boolean,defaultValue:false,title:\"Multi-Select\",hidden:props=>props.clickAction!==\"select\"},valueSeparator:{type:ControlType.String,defaultValue:\", \",hidden:props=>!props.multiSelect||props.clickAction!==\"select\"},options:{type:ControlType.Array,defaultValue:[{value:\"Option1\",title:\"Option 1\"},{value:\"Option2\",title:\"Option 2\"},{value:\"Option3\",title:\"Option 3\"}],control:{type:ControlType.Object,controls:{value:{type:ControlType.String,defaultValue:\"\"},title:{type:ControlType.String,defaultValue:\"\"},image:{type:ControlType.ResponsiveImage}}}},layout:{type:ControlType.Object,controls:{columns:{type:ControlType.Number,defaultValue:3,min:1,step:1,displayStepper:true},height:{type:ControlType.Enum,defaultValue:\"fit\",options:[\"fit\",\"fill\"],optionTitles:[\"Fit\",\"Fill\"],displaySegmentedControl:true,hidden:props=>props.columns==1},alignH:{type:ControlType.Enum,defaultValue:\"start\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],displaySegmentedControl:true,title:\"Align\",hidden:props=>props.columns==1},alignV:{type:ControlType.Enum,defaultValue:\"start\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Top\",\"Center\",\"Bottom\"],displaySegmentedControl:true,title:\" \",hidden:props=>props.columns==1||props.height==\"fill\"},gapH:{type:ControlType.Number,defaultValue:10,min:0,step:1,hidden:props=>props.columns==1},gapV:{type:ControlType.Number,defaultValue:10,min:0,step:1}}},textOptions:{type:ControlType.Object,optional:true,title:\"Text\",defaultValue:{location:\"top\",gap:10},controls:{location:{type:ControlType.Enum,defaultValue:\"top\",options:[\"top\",\"bottom\"],optionTitles:[\"Top\",\"Bottom\"],displaySegmentedControl:true},gap:{type:ControlType.Number,defaultValue:10,min:0,step:1},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:12,lineHeight:1,textAlign:\"center\"}},colorOn:{type:ControlType.Color,defaultValue:\"#0099FF\"},colorOff:{type:ControlType.Color,defaultValue:\"#999\"},colorFocus:{type:ControlType.Color,optional:true,title:\"Focus\"},colorInvalid:{type:ControlType.Color,optional:true,title:\"Invalid\"}}},imageOptions:{type:ControlType.Object,title:\"Images\",controls:{aspectRatioMode:{type:ControlType.Enum,defaultValue:\"auto\",options:[\"auto\",\"fixed\"],optionTitles:[\"Auto\",\"Fixed\"],displaySegmentedControl:true,title:\"Aspect Ratio\"},aspectRatio:{type:ControlType.String,defaultValue:\"1 / 1\",placeholder:\"Width / Height\",title:\" \",hidden:props=>props.aspectRatioMode!=\"fixed\"},alignV:{type:ControlType.Enum,defaultValue:\"center\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Top\",\"Center\",\"Bottom\"],optionIcons:[\"align-top\",\"align-middle\",\"align-bottom\"],displaySegmentedControl:true,title:\"Align\",hidden:props=>props.aspectRatioMode!=\"auto\"},radius:{type:ControlType.BorderRadius,defaultValue:\"0px\"}}},fill:fillProp({onOff:true,invalid:true}),radius:{type:ControlType.BorderRadius,defaultValue:\"10px\"},padding:{type:ControlType.Padding,defaultValue:\"10px\"},border:borderProp({onOff:true,invalid:true}),shadows:shadowsProp(),transition:{type:ControlType.Transition,defaultValue:{type:\"spring\",stiffness:1500,damping:70}},focusEvent:{type:ControlType.EventHandler,title:\"Focus\"},blurEvent:{type:ControlType.EventHandler,title:\"Blur\"},invalidEvent:{type:ControlType.EventHandler,title:\"Invalid\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ButtonsInput\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerDisableUnlink\":\"\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (99bc0fd)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={iZ4gT33XZ:{hover:true,pressed:true}};const cycleOrder=[\"iZ4gT33XZ\",\"vWrPaJdN5\",\"I5oE5yLN3\",\"jmtKP94gH\",\"fsrOVk5CS\"];const serializationHash=\"framer-26Tnw\";const variantClassNames={fsrOVk5CS:\"framer-v-1vpxpjl\",I5oE5yLN3:\"framer-v-1hqo314\",iZ4gT33XZ:\"framer-v-1xiunip\",jmtKP94gH:\"framer-v-na79vq\",vWrPaJdN5:\"framer-v-jboy9m\"};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={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;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:\"iZ4gT33XZ\",Disabled:\"I5oE5yLN3\",Error:\"fsrOVk5CS\",Loading:\"vWrPaJdN5\",Success:\"jmtKP94gH\"};const getProps=({click,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,N0kEh_3Nt:click!==null&&click!==void 0?click:props.N0kEh_3Nt,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"iZ4gT33XZ\"};};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,N0kEh_3Nt,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"iZ4gT33XZ\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1sspp5u=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(N0kEh_3Nt){const res=await N0kEh_3Nt(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"vWrPaJdN5\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"vWrPaJdN5\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];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.button,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1xiunip\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"iZ4gT33XZ\",onTap:onTap1sspp5u,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(51, 51, 51)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1,...style},variants:{\"iZ4gT33XZ-hover\":{backgroundColor:\"rgba(51, 51, 51, 0.85)\"},fsrOVk5CS:{backgroundColor:\"rgba(255, 34, 68, 0.15)\"},I5oE5yLN3:{opacity:.5}},...addPropertyOverrides({\"iZ4gT33XZ-hover\":{\"data-framer-name\":undefined},\"iZ4gT33XZ-pressed\":{\"data-framer-name\":undefined},fsrOVk5CS:{\"data-framer-name\":\"Error\"},I5oE5yLN3:{\"data-framer-name\":\"Disabled\"},jmtKP94gH:{\"data-framer-name\":\"Success\"},vWrPaJdN5:{\"data-framer-name\":\"Loading\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Submit\"})}),className:\"framer-i4s5si\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"X1zCxuRup\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{fsrOVk5CS:{\"--extracted-r6o4lv\":\"rgb(255, 34, 68)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fsrOVk5CS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 34, 68))\"},children:\"Something went wrong\"})})},jmtKP94gH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Thank you\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-arsj1q\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"LpsFflQms\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1bifdum\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"IyTkHsyAN\",style:{background:\"conic-gradient(from 180deg at 50% 50%, #4cf 0deg, #4cf 360deg)\",backgroundColor:\"rgb(68, 204, 255)\",mask:\"none\",WebkitMask:\"none\"},variants:{vWrPaJdN5:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, rgb(255, 255, 255) 342deg)\",backgroundColor:\"rgba(0, 0, 0, 0)\",mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dcg044\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"kklxhd11u\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-26Tnw.framer-1c9k1ye, .framer-26Tnw .framer-1c9k1ye { display: block; }\",\".framer-26Tnw.framer-1xiunip { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 240px; }\",\".framer-26Tnw .framer-i4s5si { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-26Tnw .framer-arsj1q { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-26Tnw .framer-1bifdum { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-26Tnw .framer-dcg044 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-26Tnw.framer-1xiunip { gap: 0px; } .framer-26Tnw.framer-1xiunip > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-26Tnw.framer-1xiunip > :first-child { margin-left: 0px; } .framer-26Tnw.framer-1xiunip > :last-child { margin-right: 0px; } }\",\".framer-26Tnw.framer-v-jboy9m .framer-1bifdum { overflow: hidden; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"vWrPaJdN5\":{\"layout\":[\"fixed\",\"fixed\"]},\"I5oE5yLN3\":{\"layout\":[\"fixed\",\"fixed\"]},\"jmtKP94gH\":{\"layout\":[\"fixed\",\"fixed\"]},\"fsrOVk5CS\":{\"layout\":[\"fixed\",\"fixed\"]},\"vsblZ_6tn\":{\"layout\":[\"fixed\",\"fixed\"]},\"cYQpcmfzG\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"N0kEh_3Nt\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerA1X_VEKpx=withCSS(Component,css,\"framer-26Tnw\");export default FramerA1X_VEKpx;FramerA1X_VEKpx.displayName=\"Button 2\";FramerA1X_VEKpx.defaultProps={height:40,width:240};addPropertyControls(FramerA1X_VEKpx,{variant:{options:[\"iZ4gT33XZ\",\"vWrPaJdN5\",\"I5oE5yLN3\",\"jmtKP94gH\",\"fsrOVk5CS\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum},N0kEh_3Nt:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerA1X_VEKpx,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerA1X_VEKpx\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"40\",\"framerVariables\":\"{\\\"N0kEh_3Nt\\\":\\\"click\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vWrPaJdN5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"I5oE5yLN3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jmtKP94gH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fsrOVk5CS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vsblZ_6tn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cYQpcmfzG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"240\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./A1X_VEKpx.map"],
  "mappings": "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",
  "names": ["useMultiStepFormStore", "createStore", "HIDDEN_CLASS_NAME", "CANVAS_HIDDEN_CLASS_NAME", "createId", "HiddenInput", "Y", "name", "required", "value", "setInvalid", "onSetValueEvent", "noPrefill", "disabled", "parentRef", "internalRef", "pe", "ref", "ue", "p", "event", "HideElementComponent", "HideElement", "withCSS", "HiddenComponentLabel", "text", "subtext", "children", "otherProps", "isCanvas", "RenderTarget", "id", "u", "Border", "Icon", "image", "color", "size", "style", "defaultImage", "p", "Border", "width", "transition", "borderColor", "opacity", "motion", "createBackground", "fill", "on", "focused", "invalid", "onOff", "colorA", "colorB", "fillProp", "onOff", "focus", "invalid", "optional", "hidden", "color", "colorA", "colorB", "colorOn", "colorAOn", "colorBOn", "colorOff", "colorAOff", "colorBOff", "ControlType", "props", "borderProp", "defaultValue", "colorFocus", "colorInvalid", "shadowsProp", "getFormInfo", "element", "form", "formId", "pages", "uuid", "d", "d2", "c", "r", "ButtonsInput", "props", "clickAction", "options", "textOptions", "imageOptions", "layout", "border", "shadows", "valueSeparator", "id", "createId", "isCanvas", "RenderTarget", "multiSelect", "multiStepFormState", "setMultiStepFormState", "useMultiStepFormStore", "value", "setValue", "ye", "invalid", "setInvalid", "nextPageQueued", "setNextPageQueued", "formId", "setFormId", "ref", "pe", "state", "ue", "newFormId", "getFormInfo", "_props_invalidEvent", "_state_nextPage", "onSetValueEvent", "event", "imageStyle", "rows", "i", "option", "selected", "layoutProps", "color", "boxShadow", "borderColor", "onClick", "v", "_textOptions_gap", "u", "motion", "_props_focusEvent", "createBackground", "p", "Image2", "Border", "HiddenInput", "items", "index", "addPropertyControls", "ControlType", "fillProp", "borderProp", "shadowsProp", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "N0kEh_3Nt", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1sspp5u", "args", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramerA1X_VEKpx", "withCSS", "A1X_VEKpx_default", "addPropertyControls", "ControlType", "addFonts"]
}
