{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/8SgkXhw2Pzxz3yiE5VTz/k9wXvO2TrcIVkJle8oDC/ThentyForm.js", "ssg:https://framerusercontent.com/modules/kjQe73LSHd086K2OQTTo/KXeS6zpgdKrebrYkfj84/kbiAQ0D4M.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useMemo,useState,useEffect,forwardRef}from\"react\";import{addPropertyControls,ControlType,withCSS}from\"framer\";import{motion,AnimatePresence}from\"framer-motion\";import{useForm}from\"react-hook-form\";import{thentyAuth}from\"https://cdn.thenty.io/beta/thenty-sdk.min.js\";import{useSSO}from\"https://framer.com/m/ThentyHelpers-I0Oh.js\";const formEndpoints={login:`/auth/members/login`,register:`/auth/members/register`,resetPassword:`/auth/members/reset`};const getRelativePath=url=>{if(url.startsWith(\"http\")){return url;}if(url.startsWith(\"/\")){return url;}return`/${url}`;};const InputElement=/*#__PURE__*/forwardRef(({tag=\"input\",rows,error,...props},ref)=>{const isTextArea=tag===\"textarea\";const InputTypeTag=tag;return /*#__PURE__*/_jsx(InputTypeTag,{rows:isTextArea?rows:undefined,className:`rhkt-members-input ${error?\" error\":\"\"}`,ref:ref,...props});});const Checkbox=/*#__PURE__*/forwardRef(({name,checked,labelText,font,...props},ref)=>{return /*#__PURE__*/_jsxs(\"label\",{className:\"rhkt-members-label\",style:{display:\"flex\",alignSelf:\"flex-start\",justifyContent:\"center\",alignItems:\"center\",cursor:\"pointer\",...font},children:[/*#__PURE__*/_jsxs(\"span\",{style:{position:\"relative\",display:\"flex\",alignItems:\"center\"},children:[/*#__PURE__*/_jsx(InputElement,{id:name,name:name,ref:ref,...props,type:\"checkbox\"}),/*#__PURE__*/_jsx(CheckMark,{isVisible:checked,className:\"checkbox-checkmark\"})]}),labelText&&/*#__PURE__*/_jsx(\"p\",{style:{marginLeft:16},children:labelText})]});});const TextInput=/*#__PURE__*/forwardRef(({name,labelText,font,...props},ref)=>{return /*#__PURE__*/_jsxs(_Fragment,{children:[labelText&&/*#__PURE__*/_jsx(\"label\",{className:\"rhkt-members-label\",htmlFor:name,style:{...font},children:/*#__PURE__*/_jsx(\"p\",{style:{marginBottom:8},children:labelText})}),/*#__PURE__*/_jsx(InputElement,{ref:ref,name:name,id:name,...props})]});});const PasswordInput=/*#__PURE__*/forwardRef(({name,labelText,font,...props},ref)=>{return /*#__PURE__*/_jsxs(_Fragment,{children:[labelText&&/*#__PURE__*/_jsx(\"label\",{className:\"rhkt-members-label\",htmlFor:name,style:{...font},children:/*#__PURE__*/_jsx(\"p\",{style:{marginBottom:8},children:labelText})}),/*#__PURE__*/_jsx(InputElement,{type:\"password\",ref:ref,id:name,name:name,...props})]});});const elementFromType={text:TextInput,number:TextInput,email:TextInput,password:PasswordInput,checkbox:Checkbox};/* Hooks */const useBorder=({borderRadius,customBorderRadius,topLeftRadius,topRightRadius,bottomRightRadius,bottomLeftRadius,borderColor,borderWidth})=>{const borderStyle=useMemo(()=>({border:`${borderWidth}px solid ${borderColor}`,borderRadius:customBorderRadius?`${topLeftRadius}px ${topRightRadius}px ${bottomRightRadius}px ${bottomLeftRadius}px`:`${borderRadius}px`}),[borderRadius,customBorderRadius,topLeftRadius,topRightRadius,bottomRightRadius,bottomLeftRadius,borderColor,borderWidth]);return borderStyle;};const useInputStyles=({color,inputBackground,customPadding,padding,paddingTop,paddingRight,paddingBottom,paddingLeft})=>{const inputStyles=useMemo(()=>({padding:customPadding?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`,background:inputBackground,color:color}),[color,inputBackground,customPadding,padding,paddingTop,paddingRight,paddingBottom,paddingLeft]);return inputStyles;};const useSubmitStyles=({borderWidth,borderColor})=>{const submitStyle=useMemo(()=>({border:`${borderWidth}px solid ${borderColor}`}),[borderWidth,borderColor]);return submitStyle;};/* COMPONENTS *//**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */const ThentyForm=withCSS(function ThentyForm(props){const[isSuccess,setIsSuccess]=useState(null);const[isError,setIsError]=useState(null);const[isLoading,setIsLoading]=useState(null);const{register,handleSubmit,watch,formState:{errors}}=useForm();const{colorPalette,border,submit,googleOAuth,successTextLabel,errorTextLabel,spacing,font,customPadding,paddingTop,paddingRight,paddingBottom,paddingLeft,padding,endpoint,fields,planIdOverride,customLoadingComponent,successEvent,requireConfirmPassword}=props;const{errorColor,focusColor,placeholderColor,inputBackground,color}=colorPalette;const paddingProps={customPadding,paddingTop,paddingRight,paddingBottom,paddingLeft,padding};const inputBorderStyle=useBorder(border);const inputStyle=useInputStyles({...colorPalette,...paddingProps});const submitButtonStyle=useSubmitStyles(submit);const googleSubmitButtonStyles=useSubmitStyles(googleOAuth);const containerTokens={\"--rhkt-members-inputs-focus-color\":focusColor,\"--rhkt-members-inputs-fill-color\":inputBackground,\"--rhkt-members-inputs-padding\":inputStyle.padding,\"--rhkt-members-inputs-border-radius\":inputBorderStyle.borderRadius,\"--rhkt-members-inputs-color\":color,\"--rhkt-members-input-border\":inputBorderStyle.border,\"--rhkt-members-inputs-error\":errorColor,\"--rhkt-members-button-fill-color\":submit.buttonFill,\"--rhkt-members-button-color\":submit.textColor,\"--rhkt-members-button-color-hover\":submit.hoverTextColor,\"--rhkt-members-button-fill-color-hover\":submit.hoverButtonFill,\"--rhkt-members-button-border\":submitButtonStyle.border,\"--rhkt-members-google-button-border\":googleSubmitButtonStyles.border,\"--rhkt-members-inputs-placeholder-color\":placeholderColor,\"--rhkt-members-inputs-placeholder-font-family\":font.fontFamily,\"--rhkt-members-inputs-placeholder-font-style\":font.fontStyle,\"--rhkt-members-inputs-placeholder-font-size\":font.fontSize,\"--rhkt-members-inputs-placeholder-font-weight\":font.fontWeight};useSSO(planIdOverride);const[urlParams,setUrlParams]=useState(null);const hasConfirmPasswordFieldIndex=useMemo(()=>{return fields.findIndex(x=>x.type===\"password\");},[fields]);const requiresConfirmPassword=useMemo(()=>{return(requireConfirmPassword===null||requireConfirmPassword===void 0?void 0:requireConfirmPassword.enabled)&&hasConfirmPasswordFieldIndex>-1;},[hasConfirmPasswordFieldIndex,requireConfirmPassword]);const inputFields=useMemo(()=>{const iF=fields;if(requiresConfirmPassword){const confirmPassword={...iF[hasConfirmPasswordFieldIndex],key:\"confirmPassword\",labelText:requireConfirmPassword===null||requireConfirmPassword===void 0?void 0:requireConfirmPassword.label,placeholderText:requireConfirmPassword===null||requireConfirmPassword===void 0?void 0:requireConfirmPassword.placeholder};iF.splice(hasConfirmPasswordFieldIndex+1,0,confirmPassword);}return iF;},[fields,hasConfirmPasswordFieldIndex,requireConfirmPassword,requiresConfirmPassword]);useEffect(()=>{var _window,_window_location,_window1;setUrlParams(((_window=window)===null||_window===void 0?void 0:_window.location)?new URLSearchParams((_window1=window)===null||_window1===void 0?void 0:(_window_location=_window1.location)===null||_window_location===void 0?void 0:_window_location.search):{});},[window]);const onSubmit=data=>{var _window_Rewardful,_window;setIsLoading(true);if(requiresConfirmPassword&&data[\"confirmPassword\"]!==data.password){setIsLoading(false);setIsSuccess(false);setIsError(\"Passwords don't match\");return;}thentyAuth.fetchGeneric(endpoint,\"POST\",{...data,...planIdOverride&&{planIdOverride},...urlParams.get(\"planID\")&&{planIdOverride:urlParams.get(\"planID\")},...((_window=window)===null||_window===void 0?void 0:(_window_Rewardful=_window.Rewardful)===null||_window_Rewardful===void 0?void 0:_window_Rewardful.referral)&&{rewardfulClientReferenceId:window.Rewardful.referral}}).then(responseBody=>{setIsLoading(false);setIsSuccess(true);setIsError(false);if(!endpoint.includes(\"reset\")){thentyAuth.setAuthorization(responseBody);setTimeout(()=>{window.open(getRelativePath(responseBody.redirect_url),\"_self\");},300);}}).catch(err=>{console.log(err);setIsLoading(false);setIsSuccess(false);setIsError(err.message);});};const onSSOSubmit=()=>{var _window_Rewardful,_window;thentyAuth.fetchGeneric(`/oauth/members/code/google`,\"POST\",{...planIdOverride&&{planIdOverride},...urlParams.get(\"planID\")&&{planIdOverride:urlParams.get(\"planID\")},...((_window=window)===null||_window===void 0?void 0:(_window_Rewardful=_window.Rewardful)===null||_window_Rewardful===void 0?void 0:_window_Rewardful.referral)&&{rewardfulClientReferenceId:window.Rewardful.referral}}).then(responseBody=>window.open(getRelativePath(responseBody.redirect_url),\"_self\"));};const initialValues=useMemo(()=>[...fields].reduce((next,field)=>{const key=field.key;var _field_value;return{...next,[key]:(_field_value=field.value)!==null&&_field_value!==void 0?_field_value:null};},{}),[fields]);if(isLoading){if(customLoadingComponent===null||customLoadingComponent===void 0?void 0:customLoadingComponent.length)return customLoadingComponent;return /*#__PURE__*/_jsx(motion.div,{style:{...containerTokens,position:\"relative\",width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",flexDirection:\"column\",...font},children:/*#__PURE__*/_jsx(Spinner,{size:\"large\"})});}if(isSuccess&&!isLoading){if(successEvent)return successEvent();return /*#__PURE__*/_jsx(motion.div,{style:{...containerTokens,position:\"relative\",width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",flexDirection:\"column\",...font,color},children:isSuccess?/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(CheckMark,{isVisible:true,size:\"large\",className:\"success-checkmark\"}),successTextLabel&&/*#__PURE__*/_jsx(\"p\",{style:{marginTop:16,...font,color:inputStyle.color},children:successTextLabel})]}):/*#__PURE__*/_jsx(Spinner,{size:\"large\"})});}return /*#__PURE__*/_jsxs(_Fragment,{children:[isError&&!isLoading&&errorTextLabel&&/*#__PURE__*/_jsx(\"div\",{style:{...inputBorderStyle,...inputStyle,color:errorColor,padding:customPadding?`${paddingTop}px 0px ${paddingBottom}px 0px`:`${padding}px 0px`,...font,background:\"transparent\",border:\"none\"},children:isError}),/*#__PURE__*/_jsxs(\"form\",{onSubmit:handleSubmit(onSubmit),className:\"rhkt-members\",style:{display:\"grid\",gridGap:spacing,gridTemplateColumns:\"1fr 1fr\",...containerTokens},children:[inputFields.map(({key,type,inputWidth,required,placeholderText,labelText,errorText,tag})=>{var _errors_key,_errors_key1;const isCheckbox=type===\"checkbox\";const isChecked=isCheckbox?watch(key,false):null;const Element=elementFromType[type];return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gridColumn:inputWidth},children:[/*#__PURE__*/_jsx(Element,{tag:\"input\",checked:isChecked,labelText:labelText,error:errors[key],placeholder:placeholderText,name:key,type:type,rows:1,font:font,...register(key,{...required&&{required:{value:required,message:errorText||\"required\"}}})}),(errors===null||errors===void 0?void 0:(_errors_key=errors[key])===null||_errors_key===void 0?void 0:_errors_key.message)&&/*#__PURE__*/_jsx(\"p\",{style:{margin:0,marginTop:8,color:errorColor,...font},children:String(errors===null||errors===void 0?void 0:(_errors_key1=errors[key])===null||_errors_key1===void 0?void 0:_errors_key1.message)})]},key);}),/*#__PURE__*/_jsx(motion.input,{type:\"submit\",value:submit.label,style:{cursor:\"pointer\",zIndex:1,borderRadius:inputBorderStyle.borderRadius,...font,padding:inputStyle.padding,gridColumn:\"auto / span 2\"},transition:{type:\"ease\",duration:.3},whileHover:{opacity:.8}})]}),googleOAuth.useGoogleOAuth&&/*#__PURE__*/_jsxs(\"button\",{className:\"google\",style:{marginTop:spacing,cursor:\"pointer\",zIndex:1,borderRadius:inputBorderStyle.borderRadius,...font,padding:inputStyle.padding,width:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",flexDirection:\"row\",gap:\"8px\",...googleSubmitButtonStyles},transition:{type:\"ease\",duration:.3},whileHover:{opacity:.8},onClick:onSSOSubmit,children:[googleOAuth.icon&&/*#__PURE__*/_jsx(\"img\",{src:googleOAuth.icon,style:{width:googleOAuth.iconWidth,height:googleOAuth.iconHeight}}),googleOAuth.label]})]});},[/* CSS Styles */`.rhkt-members textarea,\n      .rhkt-members button,\n      .rhkt-members input {\n        appearance: none;\n        line-height: 1.4em;\n        outline: none;\n        cursor: auto;\n                font-family: var(--rhkt-members-inputs-placeholder-font-family);\n        font-style: var(--rhkt-members-inputs-placeholder-font-style);\n        font-size: var(--rhkt-members-inputs-placeholder-font-size);\n        font-weight: var(--rhkt-members-inputs-placeholder-font-weight);\n      }`,`.rhkt-members input[type=checkbox]{\n        cursor: pointer;\n      }`,`.rhkt-members textarea {\n        resize: vertical;\n        min-height: 0\n      }`,`.rhkt-members-input {\n        text-overflow: ellipsis;\n        margin: 0;\n        border-radius: var(--rhkt-members-inputs-border-radius);\n        padding: var(--rhkt-members-inputs-padding);\n        background-color: var(--rhkt-members-inputs-fill-color);\n        color: var(--rhkt-members-inputs-color);\n        border: var(--rhkt-members-input-border);\n        outline: none\n      }`,`.rhkt-members-input:focus {\n        box-shadow: 0px 0px 0px 2px var(--rhkt-members-inputs-focus-color);\n      }\n      `,`.rhkt-members-input::placeholder {\n        color: var(--rhkt-members-inputs-placeholder-color);\n        font-family: var(--rhkt-members-inputs-placeholder-font-family);\n        font-style: var(--rhkt-members-inputs-placeholder-font-style);\n        font-size: var(--rhkt-members-inputs-placeholder-font-size);\n        font-weight: var(--rhkt-members-inputs-placeholder-font-weight);\n      }\n      `,`.rhkt-members-input.error {\n        box-shadow: 0px 0px 0px 2px var(--rhkt-members-inputs-error);\n      }\n      `,`.rhkt-members label p, .rhkt-members-label p {\n        margin: 0;\n        color: var(--rhkt-members-inputs-color);\n      }`,`.checkbox-checkmark {\n        color: var(--rhkt-members-inputs-color);\n        position: absolute;\n        top: 0;\n        left: 0;\n        right: 0;\n        bottom: 0;\n        pointer-events: none;\n        justify-content: center;\n        align-items: center;\n        display: flex;\n      }`,`.success-checkmark {\n        height: 60px;\n        width: 60px;\n        background: var(--rhkt-members-button-fill-color);\n        color: var(--rhkt-members-button-color);\n        border-radius: 50%;\n        display: flex;\n        justify-content: center;\n        align-items: center;\n      }`,`.rhkt-members input[type=\"submit\"] {\n        border: var(--rhkt-members-button-border);\n        background: var(--rhkt-members-button-fill-color);\n        color: var(--rhkt-members-button-color);\n      }`,`\n      .rhkt-members input[type=\"submit\"]:hover {\n        background: var(--rhkt-members-button-fill-color-hover);\n        color: var(--rhkt-members-button-color-hover)\n      }`,`.google {\n        border: var(--rhkt-members-google-button-border)\n      }`]);function CheckMark({isVisible,className,size=\"small\"}){const{width,height}={small:{width:14,height:14},large:{width:28,height:28}}[size];return /*#__PURE__*/_jsx(AnimatePresence,{children:isVisible&&/*#__PURE__*/_jsx(motion.div,{className:className,initial:{scale:0},animate:{scale:1},exit:{scale:0},transition:{duration:.3},children:/*#__PURE__*/_jsx(\"svg\",{style:{pointerEvents:\"none\"},xmlns:\"http://www.w3.org/2000/svg\",width:width,height:height,viewBox:\"0 0 28 28\",children:/*#__PURE__*/_jsx(\"path\",{style:{pointerEvents:\"none\"},d:\"M 2 14 L 10 22 L 26 6\",fill:\"transparent\",strokeWidth:\"4\",stroke:\"currentColor\",strokeLinecap:\"round\"})})})});}function Spinner({size=\"small\"}){const{width,height}={small:{width:16,height:16},large:{width:32,height:32}}[size];return /*#__PURE__*/_jsx(motion.div,{initial:{rotate:0},animate:{rotate:360},transition:{duration:2,repeat:Infinity},children:/*#__PURE__*/_jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",style:{height,width},viewBox:\"0 0 16 16\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",fill:\"currentColor\",opacity:\"0.2\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",fill:\"currentColor\"})]})});}/* CONFIG */ThentyForm.defaultProps={endpoint:\"login\",planIdOverride:null,colorPalette:{color:\"#000000\",placeholderColor:\"#00000050\",inputBackground:\"#E8E8E8\",errorColor:\"#C70000\",focusColor:\"#000000\"},border:{borderRadius:8,borderWidth:0,borderColor:\"#FAFAFA\",customBorderRadius:false},padding:15,customPadding:false,submit:{label:\"Sign Up\",buttonFill:\"#000000\",textColor:\"#FFFFFF\",hoverButtonFill:\"#ffffff\",hoverTextColor:\"#000000\",borderWidth:0,borderColor:\"#FAFAFA\"},successTextLabel:\"Success\",errorTextLabel:\"There was an error. Please try again\",spacing:15,googleOAuth:{useGoogleOAuth:false},requireConfirmPassword:{enabled:false}};const inputTypes=[\"checkbox\",\"email\",\"text\",\"password\",\"submit\",\"number\"];addPropertyControls(ThentyForm,{fields:{type:ControlType.Array,control:{type:ControlType.Object,controls:{key:{title:\"key\",type:ControlType.String,defaultValue:`input-${Math.random()}`},placeholderText:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"placeholder\"},type:{title:\"type\",type:ControlType.Enum,defaultValue:\"text\",options:inputTypes},inputWidth:{type:ControlType.Enum,title:\"Input Width\",options:[\"auto / span 1\",\"auto / span 2\"],optionTitles:[\"Half\",\"Full\"],defaultValue:\"auto / span 2\"},required:{type:ControlType.Boolean,title:\"Required\",defaultValue:true},labelText:{title:\"Label\",type:ControlType.String,defaultValue:\"\"},errorText:{title:\"Error\",type:ControlType.String,defaultValue:\"\"}}},defaultValue:[{key:\"email_address\",labelText:\"Email Address\",placeholderText:\"Your email address\"},{key:\"name\",type:\"text\",labelText:\"Name\",placeholderText:\"Your name\"},{key:\"password\",type:\"password\",labelText:\"Password\",placeholderText:\"Your password\"},{key:\"conditions\",type:\"checkbox\",labelText:\"I agree with the Terms & Conditions\"}]},endpoint:{title:\"Endpoint\",type:ControlType.Enum,optionTitles:Object.keys(formEndpoints),defaultValue:\"login\",options:Object.values(formEndpoints)},planIdOverride:{title:\"Product ID Override\",type:ControlType.String,defaultValue:null},colorPalette:{title:\"Color Palette\",type:ControlType.Object,controls:{color:{title:\"Label & Input Text\",type:ControlType.Color,defaultValue:\"#000000\"},placeholderColor:{title:\"Placeholder Text\",type:ControlType.Color,defaultValue:\"#00000050\"},inputBackground:{title:\"Input Background\",type:ControlType.Color,defaultValue:\"#E8E8E8\"},errorColor:{title:\"Validation Error Border/Text\",type:ControlType.Color,defaultValue:\"#C70000\"},focusColor:{title:\"Focus Border\",type:ControlType.Color,defaultValue:\"#000000\"}}},border:{title:\"Border\",type:ControlType.Object,controls:{borderRadius:{title:\"Radius\",type:ControlType.FusedNumber,toggleKey:\"customBorderRadius\",toggleTitles:[\"Radius\",\"Custom radius\"],valueKeys:[\"topLeftRadius\",\"topRightRadius\",\"bottomRightRadius\",\"bottomLeftRadius\"],valueLabels:[\"Top Left\",\"Top Right\",\"Bottom Right\",\"Bottom Left\"],min:0},borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:0,min:0},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#FAFAFA\"}}},submit:{title:\"Submit\",type:ControlType.Object,controls:{label:{title:\"Submit Button Label\",type:ControlType.String,defaultValue:\"Sign Up\"},buttonFill:{title:\"Button Fill\",type:ControlType.Color,defaultValue:\"#000000\"},textColor:{title:\"Text Color\",type:ControlType.Color,defaultValue:\"#FFFFFF\"},hoverButtonFill:{title:\"Hover Button Fill\",type:ControlType.Color,defaultValue:\"#ffffff\"},hoverTextColor:{title:\"Hover Text Color\",type:ControlType.Color,defaultValue:\"#000000\"},borderColor:{title:\"Border Color\",type:ControlType.Color,defaultValue:\"#FAFAFA\"},borderWidth:{title:\"Border Width\",type:ControlType.Number,displayStepper:true,defaultValue:0,min:0}}},successTextLabel:{title:\"Success Message\",placeholder:\"Success\",type:ControlType.String},errorTextLabel:{title:\"Fallback Error Message\",placeholder:\"There was an error. Please try again\",type:ControlType.String},spacing:{title:\"Spacing\",type:ControlType.Number,displayStepper:true,min:0},padding:{type:ControlType.FusedNumber,toggleKey:\"customPadding\",toggleTitles:[\"Padding\",\"Custom padding\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"Top\",\"Right\",\"Bottom\",\"Left\"],min:0,title:\"Input Inner Padding\"},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:14,lineHeight:1.5}},googleOAuth:{title:\"Google SSO\",type:ControlType.Object,controls:{useGoogleOAuth:{type:ControlType.Boolean,title:\"Enable Google SSO\",defaultValue:false,disabledTitle:\"False\",enabledTitle:\"True\"},label:{title:\"Submit Button Label\",type:ControlType.String,defaultValue:\"Sign up with Google\",hidden:({useGoogleOAuth})=>!useGoogleOAuth},buttonFill:{title:\"Button Fill\",type:ControlType.Color,defaultValue:\"#000000\",hidden:({useGoogleOAuth})=>!useGoogleOAuth},textColor:{title:\"Text Color\",type:ControlType.Color,defaultValue:\"#FFFFFF\",hidden:({useGoogleOAuth})=>!useGoogleOAuth},hoverButtonFill:{title:\"Hover Button Fill\",type:ControlType.Color,defaultValue:\"#ffffff\",hidden:({useGoogleOAuth})=>!useGoogleOAuth},hoverTextColor:{title:\"Hover Text Color\",type:ControlType.Color,defaultValue:\"#000000\",hidden:({useGoogleOAuth})=>!useGoogleOAuth},borderColor:{title:\"Border Color\",type:ControlType.Color,defaultValue:\"#FAFAFA\",hidden:({useGoogleOAuth})=>!useGoogleOAuth},borderWidth:{title:\"Border Width\",type:ControlType.Number,displayStepper:true,defaultValue:0,min:0,hidden:({useGoogleOAuth})=>!useGoogleOAuth},icon:{title:\"Google Icon\",type:ControlType.Image,defaultValue:\"https://developers.google.com/static/identity/images/branding_guideline_sample_dk_rd_sl.svg\",hidden:({useGoogleOAuth})=>!useGoogleOAuth},iconWidth:{title:\"Icon Width\",type:ControlType.Number,displayStepper:true,defaultValue:15,min:0,hidden:({icon})=>!icon},iconHeight:{title:\"Icon Height\",type:ControlType.Number,displayStepper:true,defaultValue:15,min:0,hidden:({icon})=>!icon}}},requireConfirmPassword:{title:\"Confirm password\",type:ControlType.Object,controls:{enabled:{title:\"Require confirm password\",type:ControlType.Boolean,defaultValue:false},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Confirm password\"},placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Confirm your password\"}}},customLoadingComponent:{title:\"Custom Loading Component\",type:ControlType.ComponentInstance},successEvent:{title:\"Success\",type:ControlType.EventHandler}});export default ThentyForm;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ThentyForm\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"any\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ThentyForm.map", "// Generated by Framer (e6f66e6)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-55h17 .framer-styles-preset-1cegodz:not(.rich-text-wrapper), .framer-55h17 .framer-styles-preset-1cegodz.rich-text-wrapper a { --framer-link-current-text-color: #ffffff; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: rgba(255, 255, 255, 0.75); --framer-link-hover-text-decoration: none; --framer-link-text-color: #ffffff; --framer-link-text-decoration: none; transition: color 0.3s cubic-bezier(0.44, 0, 0.56, 1) 0s; }\"];export const className=\"framer-55h17\";\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\"}}}"],
  "mappings": "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",
  "names": ["formEndpoints", "getRelativePath", "url", "InputElement", "Y", "tag", "rows", "error", "props", "ref", "p", "Checkbox", "name", "checked", "labelText", "font", "u", "CheckMark", "TextInput", "l", "PasswordInput", "elementFromType", "useBorder", "borderRadius", "customBorderRadius", "topLeftRadius", "topRightRadius", "bottomRightRadius", "bottomLeftRadius", "borderColor", "borderWidth", "se", "useInputStyles", "color", "inputBackground", "customPadding", "padding", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "useSubmitStyles", "ThentyForm", "withCSS", "isSuccess", "setIsSuccess", "ye", "isError", "setIsError", "isLoading", "setIsLoading", "register", "handleSubmit", "watch", "errors", "useForm", "colorPalette", "border", "submit", "googleOAuth", "successTextLabel", "errorTextLabel", "spacing", "endpoint", "fields", "planIdOverride", "customLoadingComponent", "successEvent", "requireConfirmPassword", "errorColor", "focusColor", "placeholderColor", "paddingProps", "inputBorderStyle", "inputStyle", "submitButtonStyle", "googleSubmitButtonStyles", "containerTokens", "useSSO", "urlParams", "setUrlParams", "hasConfirmPasswordFieldIndex", "x", "requiresConfirmPassword", "inputFields", "iF", "confirmPassword", "ue", "_window", "_window_location", "_window1", "window", "onSubmit", "data", "_window_Rewardful", "thentyAuth", "responseBody", "err", "onSSOSubmit", "initialValues", "next", "field", "key", "_field_value", "motion", "Spinner", "type", "inputWidth", "required", "placeholderText", "errorText", "_errors_key", "_errors_key1", "isChecked", "Element", "isVisible", "className", "size", "width", "height", "AnimatePresence", "inputTypes", "addPropertyControls", "ControlType", "useGoogleOAuth", "icon", "ThentyForm_default", "fontStore", "fonts", "css", "className"]
}
