{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/IQzDFpniaD3AmKydBXP4/x7FoWpmsaQMkPPPV4d0t/PhoneNumberInput.js", "ssg:https://framerusercontent.com/modules/Kuwa4LRQnmmppaTnEydr/ZQOrHhdF4pWagjJ7UWUH/DataInput.js", "ssg:https://framerusercontent.com/modules/tN5l0aqIzWiUvVuvMcpG/eVR4ciDX9aFwTuYaSZt6/TextInput.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useState,useEffect,useRef}from\"react\";import{motion}from\"framer-motion\";import{Border,createBackground,parsePadding,fillProp,borderProp,shadowsProp,createId,HiddenInput}from\"https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/XUxkHAMs2Mc4avb6Yezq/FramerFormsShared.js\";/**\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n * @framerIntrinsicWidth 400\n * @framerDisableUnlink\n */export default function PhoneNumberInput(props){const{countryCodeOptions,border,shadows}=props;const id=props.id||createId();const isCanvas=RenderTarget.current()===RenderTarget.canvas;const hasCC=!!countryCodeOptions;const ccConnected=hasCC&&(countryCodeOptions===null||countryCodeOptions===void 0?void 0:countryCodeOptions.style)!==\"split\";const phoneFormat=props.format==\"custom\"?props.customFormat==\"\"?\"XXXXXXXXXX\":props.customFormat:props.format;const countryCodeFormat=hasCC?countryCodeOptions.format==\"custom\"?countryCodeOptions.customFormat==\"\"?\"X\":countryCodeOptions.customFormat:countryCodeOptions.format:\"\";const maxDigits=countXCharacters(phoneFormat);var _String;const defaultCountryCode=(_String=String(countryCodeOptions===null||countryCodeOptions===void 0?void 0:countryCodeOptions.defaultCountryCode))!==null&&_String!==void 0?_String:\"1\";const[countryCode,setCountryCode]=useState(defaultCountryCode);const[phoneNumber,setPhoneNumber]=useState(\"\");const[countryCodeFocused,setCountryCodeFocused]=useState(false);const[phoneNumberFocused,setPhoneNumberFocused]=useState(false);const[invalid,setInvalid]=useState(false);const countryCodeInputRef=useRef(null);const phoneNumberInputRef=useRef(null);const[pt,pr,pb,pl]=parsePadding(props.padding);const[tl,tr,br,bl]=parsePadding(props.radius);const[bwt,bwr,bwb,bwl]=parsePadding(border===null||border===void 0?void 0:border.width);useEffect(()=>{if(invalid){var _props_invalidEvent;(_props_invalidEvent=props.invalidEvent)===null||_props_invalidEvent===void 0?void 0:_props_invalidEvent.call(props);}},[invalid]);const isComplete=phoneNumber.length===maxDigits;function onPhoneNumberChange(event){const unformatted=unformatValue(event.target.value).substring(0,maxDigits);const formattedValue=formatPhoneNumber(phoneNumber,phoneFormat);if(!isLastCharacterANumber(formattedValue)&&event.target.value.length<formattedValue.length){setPhoneNumber(unformatted.slice(0,-1));}else{setPhoneNumber(unformatted);}}function onCountryCodeChange(event){const unformatted=unformatValue(event.target.value).substring(0,3);const formattedValue=formatCountryCode(countryCode,countryCodeFormat);if(!isLastCharacterANumber(formattedValue)&&event.target.value.length<formattedValue.length){setCountryCode(unformatted.slice(0,-1));}else{setCountryCode(unformatted);}}function onCountryCodeFocus(){var _props_focusEvent;setCountryCodeFocused(true);if(invalid){setInvalid(false);}const lastChar=countryCodeFormat.slice(-1);if(lastChar!=\"X\"&&lastChar!=\"x\"){const countryCodeInput=countryCodeInputRef.current;if(countryCodeInput){const formattedValue=formatCountryCode(countryCode,countryCodeFormat);const cursorPosition=Math.max(countryCodeFormat.lastIndexOf(\"X\"),countryCodeFormat.lastIndexOf(\"x\"))+countryCode.length;setTimeout(()=>countryCodeInput.setSelectionRange(cursorPosition,cursorPosition),5);}}(_props_focusEvent=props.focusEvent)===null||_props_focusEvent===void 0?void 0:_props_focusEvent.call(props);}function onPhoneNumberKeyDown(event){if(hasCC&&phoneNumber===\"\"){if(event.key===\"Backspace\"){var _countryCodeInputRef_current;(_countryCodeInputRef_current=countryCodeInputRef.current)===null||_countryCodeInputRef_current===void 0?void 0:_countryCodeInputRef_current.focus();}if(event.key===\"ArrowLeft\"){var _countryCodeInputRef_current1;(_countryCodeInputRef_current1=countryCodeInputRef.current)===null||_countryCodeInputRef_current1===void 0?void 0:_countryCodeInputRef_current1.focus();event.preventDefault();}}}function onCountryCodeKeyDown(event){if(hasCC){if(event.key===\"ArrowRight\"&&event.target.selectionStart===event.target.value.length){var _phoneNumberInputRef_current;(_phoneNumberInputRef_current=phoneNumberInputRef.current)===null||_phoneNumberInputRef_current===void 0?void 0:_phoneNumberInputRef_current.focus();event.preventDefault();}}}function onCountryCodeBlur(event){var _props_blurEvent;if(countryCode.length===0){setCountryCode(defaultCountryCode);}setCountryCodeFocused(false);(_props_blurEvent=props.blurEvent)===null||_props_blurEvent===void 0?void 0:_props_blurEvent.call(props);}function onPhoneNumberFocus(){var _props_focusEvent;setPhoneNumberFocused(true);(_props_focusEvent=props.focusEvent)===null||_props_focusEvent===void 0?void 0:_props_focusEvent.call(props);if(invalid){setInvalid(false);}}function onPhoneNumberBlur(){var _props_blurEvent;setPhoneNumberFocused(false);(_props_blurEvent=props.blurEvent)===null||_props_blurEvent===void 0?void 0:_props_blurEvent.call(props);}return /*#__PURE__*/_jsxs(\"div\",{id:id,style:{display:\"flex\",flexDirection:\"row\",gap:(countryCodeOptions===null||countryCodeOptions===void 0?void 0:countryCodeOptions.style)==\"split\"?countryCodeOptions.gap:0,...props.style},children:[/*#__PURE__*/_jsx(HiddenInput,{name:props.name,required:props.required||phoneNumber.length>0&&!isComplete,value:isComplete?hasCC?`+${countryCode} ${phoneNumber}`:phoneNumber:\"\",setInvalid:setInvalid}),hasCC&&/*#__PURE__*/_jsxs(motion.div,{animate:{...createBackground(props.fill,null,countryCodeFocused,invalid),boxShadow:invalid&&(shadows===null||shadows===void 0?void 0:shadows.invalid)||countryCodeFocused&&(shadows===null||shadows===void 0?void 0:shadows.focus)||(shadows===null||shadows===void 0?void 0:shadows.default)},style:{position:\"relative\",borderRadius:ccConnected?px(tl,0,0,bl):props.radius},initial:false,transition:props.transition,children:[/*#__PURE__*/_jsx(\"input\",{ref:countryCodeInputRef,value:formatCountryCode(isCanvas?countryCodeOptions.defaultCountryCode:countryCode,countryCodeFormat),onChange:onCountryCodeChange,onFocus:onCountryCodeFocus,onBlur:onCountryCodeBlur,onKeyDown:onCountryCodeKeyDown,placeholder:props.placeholder||replaceXWithNumbers(phoneFormat),style:{background:\"none\",border:\"none\",color:props.color,width:countryCodeOptions.width+pl,height:\"100%\",margin:0,display:\"block\",padding:px(pt,0,pb,pl),...props.font},\"data-framerforms-no-prefill\":true}),border&&/*#__PURE__*/_jsx(Border,{...border,borderColor:invalid&&(border===null||border===void 0?void 0:border.colorInvalid)||border.color,width:ccConnected?px(bwt,0,bwb,bwl):border.width,opacity:countryCodeFocused&&(border===null||border===void 0?void 0:border.colorFocus)?0:1,transition:props.transition}),(border===null||border===void 0?void 0:border.colorFocus)&&/*#__PURE__*/_jsx(Border,{...border,borderColor:border.colorFocus,width:border.width,opacity:countryCodeFocused?1:0,transition:props.transition})]}),/*#__PURE__*/_jsxs(motion.div,{animate:{...createBackground(props.fill,null,phoneNumberFocused,invalid),boxShadow:invalid&&(shadows===null||shadows===void 0?void 0:shadows.invalid)||phoneNumberFocused&&(shadows===null||shadows===void 0?void 0:shadows.focus)||(shadows===null||shadows===void 0?void 0:shadows.default)},style:{position:\"relative\",borderRadius:ccConnected?px(0,tr,br,0):props.radius,flex:1},initial:false,transition:props.transition,children:[/*#__PURE__*/_jsx(\"input\",{ref:phoneNumberInputRef,autoFocus:props.autoFocus,value:formatPhoneNumber(phoneNumber,phoneFormat),onChange:onPhoneNumberChange,onFocus:onPhoneNumberFocus,onBlur:onPhoneNumberBlur,onKeyDown:onPhoneNumberKeyDown,placeholder:props.placeholder||replaceXWithNumbers(phoneFormat),style:{background:\"none\",border:\"none\",color:props.color,margin:0,display:\"block\",padding:props.padding,width:\"100%\",height:\"100%\",textOverflow:\"ellipsis\",...props.font},\"data-framerforms-no-prefill\":true}),border&&/*#__PURE__*/_jsx(Border,{...border,borderColor:invalid&&(border===null||border===void 0?void 0:border.colorInvalid)||border.color,width:ccConnected?px(bwt,bwr,bwb,0):border.width,opacity:phoneNumberFocused&&(border===null||border===void 0?void 0:border.colorFocus)?0:1,transition:props.transition}),(border===null||border===void 0?void 0:border.colorFocus)&&/*#__PURE__*/_jsx(Border,{...border,borderColor:border.colorFocus,width:border.width,opacity:phoneNumberFocused?1:0,transition:props.transition})]}),(countryCodeOptions===null||countryCodeOptions===void 0?void 0:countryCodeOptions.style)==\"divider\"&&/*#__PURE__*/_jsx(motion.div,{animate:{opacity:(border===null||border===void 0?void 0:border.colorFocus)&&(countryCodeFocused||phoneNumberFocused)?0:1},style:{position:\"absolute\",width:countryCodeOptions.divider.width,left:countryCodeOptions.width+pl-Math.round(countryCodeOptions.divider.width/2),top:countryCodeOptions.divider.inset,bottom:countryCodeOptions.divider.inset,backgroundColor:countryCodeOptions.divider.color},initial:false,transition:props.transition}),/*#__PURE__*/_jsx(\"style\",{children:`\n            #${id} input::placeholder {\n                color: ${props.placeholderColor};\n            }\n            #${id} input:focus {\n                outline: none;\n            }`})]});}PhoneNumberInput.displayName=\"Phone Number Input\";addPropertyControls(PhoneNumberInput,{name:{type:ControlType.String,defaultValue:\"Phone Number\"},required:{type:ControlType.Boolean,defaultValue:false},autoFocus:{type:ControlType.Boolean,defaultValue:false,title:\"Auto-Focus\"},countryCodeOptions:{type:ControlType.Object,optional:true,defaultValue:{defaultCountryCode:1,format:\"+1\",width:40},title:\"Country Code\",controls:{defaultCountryCode:{title:\"Default\",type:ControlType.Number,min:0,max:999,step:1,defaultValue:1},format:{title:\"Format\",type:ControlType.Enum,defaultValue:\"+1\",options:[\"+X\",\"(X)\",\"(+X)\",\"X\",\"custom\"],optionTitles:[\"+1\",\"(1)\",\"(+1)\",\"1\",\"Custom Format\"]},customFormat:{title:\" \",type:ControlType.String,defaultValue:\"+X\",description:\"*X* -> country code\",hidden:props=>props.format!==\"custom\"},width:{type:ControlType.Number,defaultValue:45,min:1,step:1},style:{type:ControlType.Enum,defaultValue:\"divider\",options:[\"connected\",\"divider\",\"split\"],optionTitles:[\"Connected\",\"Divider\",\"Split\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},divider:{type:ControlType.Object,hidden:props=>props.style!==\"divider\",controls:{color:{type:ControlType.Color,defaultValue:\"rgba(136, 136, 136, 0.15)\"},width:{type:ControlType.Number,defaultValue:1,min:1,step:1,displayStepper:true},inset:{type:ControlType.Number,defaultValue:8,min:0,step:1,displayStepper:true}}},gap:{type:ControlType.Number,defaultValue:8,min:0,step:1,hidden:props=>props.style!==\"split\"}}},format:{type:ControlType.Enum,defaultValue:\"(XXX) XXX - XXXX\",options:[\"(XXX) XXX - XXXX\",\"(XXX) XXX-XXXX\",\"XXX-XXX-XXXX\",\"XXX.XXX.XXXX\",\"XXX XXX XXXX\",\"XXXXXXXXXXX\",\"XX XXXX XXXX\",\"custom\"],optionTitles:[\"(123) 456 - 7890\",\"(123) 456-7890\",\"123-456-7890\",\"123.456.7890\",\"123 456 7890\",\"1234567890\",\"12 3456 7890\",\"Custom Format\"]},customFormat:{title:\" \",type:ControlType.String,defaultValue:\"(XXX) XXX - XXXX\",description:\"*X* -> phone number\",hidden:props=>props.format!==\"custom\"},placeholder:{type:ControlType.String,defaultValue:\"\",placeholder:\"Auto\"},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:14,lineHeight:1.2}},color:{type:ControlType.Color,defaultValue:\"#999999\"},placeholderColor:{type:ControlType.Color,defaultValue:\"#999999\",title:\"Placeholder\"},fill:fillProp({invalid:true}),radius:{type:ControlType.BorderRadius,defaultValue:\"10px\"},padding:{type:ControlType.Padding,defaultValue:\"12px\"},border:borderProp({invalid:true}),shadows:shadowsProp(),transition:{type:ControlType.Transition,defaultValue:{type:false}},focusEvent:{type:ControlType.EventHandler,title:\"Focus\"},blurEvent:{type:ControlType.EventHandler,title:\"Blur\"},invalidEvent:{type:ControlType.EventHandler,title:\"Invalid\"}});function formatPhoneNumber(phoneNumber,format){if(!phoneNumber){return\"\";}let index=0// Tracks the position in the replacements string\n;let cutOffIndex=null// To determine where to slice the template after replacement\n;const result=format.replace(/[Xx]/g,(match,offset)=>{if(index<phoneNumber.length){return phoneNumber[index++];}else{if(phoneNumber.length<10&&cutOffIndex===null){// Set cut-off index at the first unmatched Xx after all replacements are used\ncutOffIndex=offset;}return\"\";}});// Slice the template to remove the part after the last valid replacement if necessary\nreturn cutOffIndex!==null?result.slice(0,cutOffIndex):result;}function replaceXWithNumbers(input){let count=1;return input.replace(/[Xx]/g,()=>{let number=count%10;if(number===0)number=0;count++;return number;});}function formatCountryCode(countryCode,format){return format.replace(/[Xx]/,countryCode);}function unformatValue(value){return value.replace(/\\D/g,\"\");}function isLastCharacterANumber(str){if(str.length===0)return false// Check if the string is empty\n;const lastChar=str[str.length-1]// Get the last character\n;return!isNaN(lastChar)&&!isNaN(parseFloat(lastChar))// Check if it's a numeric value\n;}const px=(a,b,c,d)=>`${a}px ${b}px ${c}px ${d}px`;function countXCharacters(str){// Convert the string to lowercase to count both 'X' and 'x'\nconst lowercaseStr=str.toLowerCase();// Use a regular expression to match 'x' characters\nconst xRegex=/x/g;// Use the match() method to find all occurrences of 'x'\nconst matches=lowercaseStr.match(xRegex);// Return the count of matches, or 0 if no matches found\nreturn matches?matches.length:0;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"PhoneNumberInput\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PhoneNumberInput.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useEffect,useState}from\"react\";import{HiddenComponentLabel}from\"https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/XUxkHAMs2Mc4avb6Yezq/FramerFormsShared.js\";/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight auto\n * @framerDisableUnlink\n */export default function DataInput(props){const{type}=props;const isCanvas=RenderTarget.current()===RenderTarget.canvas;const isOptimizing=typeof window===\"undefined\";const[value,setValue]=useState(\"\");let text=\"\";switch(type){case\"url\":text=\"Current URL\";break;case\"utmTags\":text=\"UTM Tags\";break;case\"urlParameter\":text=`${props.urlParameter} URL Parameter`;break;case\"referrerUrl\":text=\"Referrer URL\";break;}useEffect(()=>{switch(type){case\"url\":setValue(window.location.href);break;case\"utmTags\":const utms={};const queryParams=new URLSearchParams(window.location.search);queryParams.forEach((value,key)=>{// Check if the key starts with 'utm_' (indicating it's a UTM parameter)\nif(key.startsWith(\"utm_\")){utms[key]=value;}});setValue(utms);break;case\"urlParameter\":var _get;setValue((_get=new URLSearchParams(window.location.search).get(props.urlParameter))!==null&&_get!==void 0?_get:\"\");break;case\"referrerUrl\":setValue(document.referrer);break;}},[type,props.urlParameter]);return /*#__PURE__*/_jsx(HiddenComponentLabel,{text:text,subtext:\"Hidden Field\",children:!isCanvas&&/*#__PURE__*/_jsx(\"div\",{style:{display:\"hidden\"},children:type==\"utmTags\"?value?Object.keys(value).map(key=>/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:key,value:value[key],\"data-framerforms-no-prefill\":true})):null:/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:props.name,value:value,\"data-framerforms-no-prefill\":true})})});}DataInput.displayName=\"URL Data Collector\";addPropertyControls(DataInput,{type:{type:ControlType.Enum,options:[\"url\",\"utmTags\",\"referrerUrl\",\"urlParameter\"],optionTitles:[\"Current URL\",\"UTM Tags\",\"Referrer URL\",\"URL Parameter\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},name:{type:ControlType.String,defaultValue:\"Data\",hidden:props=>props.type==\"utmTags\"},urlParameter:{type:ControlType.String,defaultValue:\"\",placeholder:\"Parameter Name\",title:\"URL Param\",hidden:props=>props.type!==\"urlParameter\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"DataInput\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"\",\"framerSupportedLayoutHeight\":\"auto\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DataInput.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useState}from\"react\";import{motion}from\"framer\";import{createBackground,Border,parsePadding,fillProp,borderProp,shadowsProp,createId}from\"https://framerusercontent.com/modules/DwWOdDzQZGCuvkNlbUjZ/XUxkHAMs2Mc4avb6Yezq/FramerFormsShared.js\";/**\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n * @framerIntrinsicWidth 400\n * @framerDisableUnlink\n */export default function TextInput(props){const{type,textAreaHeight,shadows,border}=props;const id=props.id||createId();const Element=type==\"textArea\"?\"textarea\":\"input\";const[focused,setFocused]=useState(false);const[invalid,setInvalid]=useState(false);let attributes={};let styles={};if(type==\"textArea\"){const[pt,pr,pb,pl]=parsePadding(props.padding);const heightMode=textAreaHeight.mode;const autoHeightSupported=typeof CSS!==\"undefined\"?CSS.supports(\"field-sizing\",\"content\"):true;attributes.rows=heightMode==\"fixed\"?textAreaHeight.lines:1;styles={display:\"block\",minHeight:heightMode==\"auto\"&&!autoHeightSupported?`calc(${textAreaHeight.fallbackLines}lh + ${pt+pb}px)`:heightMode!==\"fixed\"?`calc(${textAreaHeight.minLines}lh + ${pt+pb}px)`:undefined,maxHeight:heightMode!==\"fixed\"?`calc(${textAreaHeight.maxLines}lh + ${pt+pb}px)`:undefined,fieldSizing:heightMode==\"auto\"&&autoHeightSupported?\"content\":undefined,resize:heightMode==\"resizable\"?\"vertical\":\"none\"};}const onFocus=()=>{var _props_focusEvent;setFocused(true);(_props_focusEvent=props.focusEvent)===null||_props_focusEvent===void 0?void 0:_props_focusEvent.call(props);if(invalid){setInvalid(false);}};const onBlur=()=>{var _props_blurEvent;setFocused(false);(_props_blurEvent=props.blurEvent)===null||_props_blurEvent===void 0?void 0:_props_blurEvent.call(props);};const onInvalid=event=>{var _props_invalidEvent;event.preventDefault();setInvalid(true);(_props_invalidEvent=props.invalidEvent)===null||_props_invalidEvent===void 0?void 0:_props_invalidEvent.call(props);};return /*#__PURE__*/_jsxs(motion.div,{id:id,onFocus:onFocus,onBlur:onBlur,animate:{...createBackground(props.fill,null,focused,invalid),boxShadow:invalid&&(shadows===null||shadows===void 0?void 0:shadows.invalid)||focused&&(shadows===null||shadows===void 0?void 0:shadows.focus)||(shadows===null||shadows===void 0?void 0:shadows.default),borderColor:invalid&&(border===null||border===void 0?void 0:border.colorInvalid)||focused&&(border===null||border===void 0?void 0:border.colorFocus)||(border===null||border===void 0?void 0:border.color)},style:{borderRadius:props.radius,overflow:type==\"textArea\"&&props.textAreaScrollbar==\"auto\"?\"hidden\":\"visible\",...props.style},initial:false,transition:props.transition,children:[/*#__PURE__*/_jsx(Element,{name:props.name,required:props.required,autoFocus:props.autoFocus,placeholder:props.placeholder,minLength:props.minLengthEnabled?props.minLength:undefined,maxLength:props.maxLengthEnabled?props.maxLength:undefined,defaultValue:props.value,onInvalid:onInvalid,style:{display:\"block\",padding:props.padding,color:props.color,background:\"none\",border:\"none\",textOverflow:\"ellipsis\",...styles,...props.font,...props.style},...attributes}),/*#__PURE__*/_jsx(Border,{...props.border,transition:props.transition}),/*#__PURE__*/_jsx(\"style\",{children:`#${id} ${Element}::placeholder {\n                    color: ${props.placeholderColor};\n                }\n                #${id} ${Element}:focus {\n                    appearance: none;\n                    outline: none;\n                    border: none;\n                    display: none;\n                }`}),type==\"textArea\"&&props.textAreaScrollbar==\"hidden\"&&/*#__PURE__*/_jsx(\"style\",{children:`#${id} textarea::-webkit-scrollbar {\n                        display: none; /* WebKit browsers (Chrome, Safari) */\n                    }\n                    #${id} textarea {\n                        -ms-overflow-style: none; /* IE and Edge */\n                        scrollbar-width: none; /* Firefox */\n                    }`})]});}TextInput.displayName=\"Text Input\";addPropertyControls(TextInput,{name:{type:ControlType.String,defaultValue:\"Text\"},required:{type:ControlType.Boolean,defaultValue:false},autoFocus:{type:ControlType.Boolean,defaultValue:false,title:\"Auto-Focus\"},minLengthEnabled:{type:ControlType.Boolean,defaultValue:false,title:\"Min Length\"},minLength:{type:ControlType.Number,defaultValue:100,min:0,step:1,displayStepper:true,title:\" \",hidden:props=>!props.minLengthEnabled},maxLengthEnabled:{type:ControlType.Boolean,defaultValue:false,title:\"Max Length\"},maxLength:{type:ControlType.Number,defaultValue:100,min:0,step:1,displayStepper:true,title:\" \",hidden:props=>!props.maxLengthEnabled},value:{type:ControlType.String,placeholder:\"Default Value\"},type:{type:ControlType.Enum,defaultValue:\"input\",options:[\"textArea\",\"input\"],optionTitles:[\"Yes\",\"No\"],displaySegmentedControl:true,title:\"Text Area\"},textAreaHeight:{type:ControlType.Object,title:\"Height\",controls:{mode:{type:ControlType.Enum,defaultValue:\"auto\",options:[\"auto\",\"resizable\",\"fixed\"],optionTitles:[\"Auto\",\"Resizable\",\"Fixed\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},minLines:{type:ControlType.Number,defaultValue:3,min:1,step:1,displayStepper:true,hidden:props=>props.mode===\"fixed\"},maxLines:{type:ControlType.Number,defaultValue:8,min:1,step:1,displayStepper:true,hidden:props=>props.mode===\"fixed\"},lines:{type:ControlType.Number,defaultValue:5,min:1,step:1,displayStepper:true,hidden:props=>props.mode!==\"fixed\"},fallbackLines:{type:ControlType.Number,defaultValue:5,min:1,step:1,title:\"Fallback\",description:\"Auto height is [not supported on all browsers](https://caniuse.com/mdn-css_properties_field-sizing_content). Fallback is used when auto height is not supported.\",hidden:props=>props.mode!==\"auto\"}},hidden:props=>props.type!=\"textArea\"},textAreaScrollbar:{type:ControlType.Enum,defaultValue:\"hidden\",options:[\"auto\",\"hidden\"],optionTitles:[\"Auto\",\"Hidden\"],displaySegmentedControl:true,title:\"Scrollbar\",hidden:props=>props.type!=\"textArea\"},placeholder:{type:ControlType.String,defaultValue:\"Write here...\"},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:14,lineHeight:1.2}},color:{type:ControlType.Color,defaultValue:\"#999999\"},placeholderColor:{type:ControlType.Color,defaultValue:\"#999999\",title:\"Placeholder\"},fill:fillProp(),radius:{type:ControlType.BorderRadius,defaultValue:\"10px\"},padding:{type:ControlType.Padding,defaultValue:\"12px\"},border:borderProp(),shadows:shadowsProp(),transition:{type:ControlType.Transition,defaultValue:{type:false}},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\":\"TextInput\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TextInput.map"],
  "mappings": "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",
  "names": ["PhoneNumberInput", "props", "countryCodeOptions", "border", "shadows", "id", "createId", "isCanvas", "RenderTarget", "hasCC", "ccConnected", "phoneFormat", "countryCodeFormat", "maxDigits", "countXCharacters", "_String", "defaultCountryCode", "countryCode", "setCountryCode", "ye", "phoneNumber", "setPhoneNumber", "countryCodeFocused", "setCountryCodeFocused", "phoneNumberFocused", "setPhoneNumberFocused", "invalid", "setInvalid", "countryCodeInputRef", "pe", "phoneNumberInputRef", "pt", "pr", "pb", "pl", "parsePadding", "tl", "tr", "br", "bl", "bwt", "bwr", "bwb", "bwl", "ue", "_props_invalidEvent", "isComplete", "onPhoneNumberChange", "event", "unformatted", "unformatValue", "formattedValue", "formatPhoneNumber", "isLastCharacterANumber", "onCountryCodeChange", "formatCountryCode", "onCountryCodeFocus", "_props_focusEvent", "lastChar", "countryCodeInput", "cursorPosition", "onPhoneNumberKeyDown", "_countryCodeInputRef_current", "_countryCodeInputRef_current1", "onCountryCodeKeyDown", "_phoneNumberInputRef_current", "onCountryCodeBlur", "_props_blurEvent", "onPhoneNumberFocus", "onPhoneNumberBlur", "u", "p", "HiddenInput", "motion", "createBackground", "px", "replaceXWithNumbers", "Border", "addPropertyControls", "ControlType", "fillProp", "borderProp", "shadowsProp", "format", "index", "cutOffIndex", "result", "match", "offset", "input", "count", "number", "value", "str", "a", "b", "c", "d", "lowercaseStr", "xRegex", "matches", "DataInput", "props", "type", "isCanvas", "RenderTarget", "isOptimizing", "window", "value", "setValue", "ye", "text", "ue", "utms", "key", "_get", "p", "HiddenComponentLabel", "addPropertyControls", "ControlType", "TextInput", "props", "type", "textAreaHeight", "shadows", "border", "id", "createId", "Element", "focused", "setFocused", "ye", "invalid", "setInvalid", "attributes", "styles", "pt", "pr", "pb", "pl", "parsePadding", "heightMode", "autoHeightSupported", "onFocus", "_props_focusEvent", "onBlur", "_props_blurEvent", "onInvalid", "event", "_props_invalidEvent", "u", "motion", "createBackground", "p", "Border", "addPropertyControls", "ControlType", "fillProp", "borderProp", "shadowsProp"]
}
