{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/4TG0CA0xFC8r92HZNVLs/oNHmObL27xLBv67Gbys4/Input.js", "ssg:https://framerusercontent.com/modules/cMR2yWExHtVGqnnuJlD0/fHpNJofCv2c2j1qqmcCw/WhatsappForm.js", "ssg:https://framerusercontent.com/modules/A2AdsbMx9BC5klXGfp8Q/LFAQSooBhQWjpcevA6mQ/z2dFaBkoA.js", "ssg:https://framerusercontent.com/modules/o3xaaNtDNndFj6TWMKWJ/un93dCtIorUwrYk72K7H/FuseCMSFilterFullScreen.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";// @ts-ignore\nimport{ControlType,addPropertyControls,withCSS}from\"framer\";import{useCallback,useEffect,useRef,useMemo}from\"react\";import{fontStack,fontControls,fontSizeOptions,useOnEnter,useFontControls,useIsInPreview,usePadding,useRadius,paddingControl,borderRadiusControl,useControlledState}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useIsomorphicLayoutEffect}from\"https://framer.com/m/framer/useIsomorphicLayoutEffect.js@0.2.0\";/**\n * INPUT\n *\n * @framerIntrinsicWidth 260\n * @framerIntrinsicHeight 50\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */ export const Input=withCSS(function Input(props){const{placeholder,backgroundColor,textColor,border,borderWidth,password,onSubmit,onFocus,onBlur,value,textAlign,multiLine,placeholderColor,focused,inputStyle,caretColor,fontFamily,blurOnSubmit,disabled,keyboard,truncate,onChange,onValueChange,maxLength,lineHeight,enableLimit,isRTL,style}=props;const[inputValue,setValue]=useControlledState(value);const inputEle=useRef();const Tag=useMemo(()=>multiLine?\"textarea\":\"input\",[multiLine,]);const inPreview=useIsInPreview();const fontStyles=useFontControls(props);const paddingValue=usePadding(props);const borderRadius=useRadius(props);const handleChange=useCallback(event=>{const element=multiLine?event.nativeEvent.target:event.nativeEvent.target;const value=element.value;setValue(value);if(onChange)onChange(value);if(onValueChange)onValueChange(value);},[onChange,multiLine]);useOnEnter(()=>{if(inPreview&&focused)inputEle.current.focus();});useEffect(()=>{if(inPreview&&focused)inputEle.current.focus();},[focused]);useIsomorphicLayoutEffect(()=>{// I only want to control my own height is auto-sizing is enabled\nif(multiLine&&props.style.height!==\"100%\"){// Autosizing hack for multi-line textareas, may have perf impact\ninputEle.current.style.height=\"auto\";inputEle.current.style.height=inputEle.current.scrollHeight+\"px\";}},[inputValue,multiLine,style===null||style===void 0?void 0:style.height,placeholder]);return(/*#__PURE__*/ _jsx(Tag,{onChange:handleChange,ref:inputEle,value:inputValue,placeholder:placeholder,onKeyDown:e=>{if(e.keyCode===13){if(blurOnSubmit&&inputEle.current)inputEle.current.blur();if(onSubmit)onSubmit();}},disabled:disabled,onFocus:()=>{if(onFocus)onFocus();},onBlur:()=>{if(onBlur)onBlur();},maxLength:enableLimit?maxLength:524288,autoFocus:inPreview&&focused,className:\"framer-default-input\",rows:1,style:{\"--framer-default-input-border-width\":`${props.borderWidth}px`,\"--framer-default-input-border-color\":props.focusColor,\"--framer-default-input-placeholder-color\":props.placeholderColor,...baseInputStyles,color:textColor,backgroundColor,borderRadius,textAlign,lineHeight,caretColor,margin:0,display:\"flex\",height:\"auto\",padding:paddingValue,direction:isRTL?\"rtl\":\"ltr\",overflow:\"show\",textOverflow:truncate?\"ellipsis\":\"unset\",boxShadow:!inPreview&&focused?`inset 0 0 0 ${props.borderWidth}px ${props.focusColor}`:`inset 0 0 0 ${borderWidth}px ${border}`,...inputStyle,...style,...fontStyles},type:password?\"password\":\"text\",inputMode:keyboard}));},[\".framer-default-input { --framer-default-input-border-width: 1px; --framer-default-input-border-color: #09f; --framer-default-input-placeholder-color: #aaa; }\",\".framer-default-input:focus { box-shadow: inset 0 0 0 var(--framer-default-input-border-width) var(--framer-default-input-border-color) !important; }\",\".framer-default-input::placeholder { color: var(--framer-default-input-placeholder-color) !important; }\",]);Input.defaultProps={value:\"\",placeholder:\"Type something\u2026\",width:260,height:50,backgroundColor:\"#EBEBEB\",textColor:\"#333\",focusColor:\"#09F\",fontSize:16,fontWeight:400,borderRadius:8,lineHeight:1.4,padding:15,border:\"rgba(0,0,0,0)\",placeholderColor:\"#aaa\",borderWidth:1,truncate:false,alignment:\"left\",caretColor:\"#333\",multiLine:false,maxLength:10,password:false,keyboard:\"\"};addPropertyControls(Input,{placeholder:{type:ControlType.String,title:\"Placeholder\"},value:{type:ControlType.String,title:\"Value\"},textColor:{type:ControlType.Color,title:\"Text\"},caretColor:{type:ControlType.Color,title:\"Caret\"},placeholderColor:{type:ControlType.Color,title:\"Placeholder\"},backgroundColor:{type:ControlType.Color,title:\"Background\"},border:{type:ControlType.Color,title:\"Border\"},borderWidth:{type:ControlType.Number,title:\" \",min:1,max:5,displayStepper:true},focusColor:{type:ControlType.Color,title:\"Focus\"},focused:{type:ControlType.Boolean,title:\"Focused\",defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},...fontControls,fontSize:{...fontSizeOptions},lineHeight:{type:ControlType.Number,min:0,step:0.1,max:2,displayStepper:true},...paddingControl,...borderRadiusControl,textAlign:{title:\"Text Align\",type:ControlType.Enum,displaySegmentedControl:true,optionTitles:[\"Left\",\"Center\",\"Right\"],options:[\"left\",\"center\",\"right\"]},isRTL:{type:ControlType.Boolean,title:\"Direction\",enabledTitle:\"RTL\",disabledTitle:\"LTR\",defaultValue:false},disabled:{type:ControlType.Boolean,title:\"Disabled\",defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},multiLine:{type:ControlType.Boolean,title:\"Text Area\",defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},truncate:{type:ControlType.Boolean,title:\"Truncate\",defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\",hidden:({multiLine})=>multiLine},password:{type:ControlType.Boolean,title:\"Password\",hidden:({multiLine})=>multiLine,defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},enableLimit:{title:\"Limit\",type:ControlType.Boolean,displayStepper:true,defaultValue:false,disabledTitle:\"No\",enabledTitle:\"Yes\"},maxLength:{title:\" \",type:ControlType.Number,// @ts-ignore\ndefaultValue:Input.defaultProps.maxLength,displayStepper:true,min:1,hidden:({enableLimit})=>!enableLimit},keyboard:{type:ControlType.Enum,title:\"Keyboard\",defaultValue:\"\",options:[\"\",\"numeric\",\"tel\",\"decimal\",\"email\",\"url\",\"search\"],optionTitles:[\"Default\",\"Numeric\",\"Phone\",\"Decimal\",\"Email\",\"URL\",\"Search\",]},onChange:{type:ControlType.EventHandler},onSubmit:{type:ControlType.EventHandler},onFocus:{type:ControlType.EventHandler},onBlur:{type:ControlType.EventHandler}});const baseInputStyles={pointerEvents:\"auto\",border:\"none\",width:\"100%\",boxSizing:\"border-box\",outline:\"none\",resize:\"none\",margin:0,fontFamily:fontStack,WebkitTapHighlightColor:\"rgba(0, 0, 0, 0)\",WebkitAppearance:\"none\"};\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Input\":{\"type\":\"reactComponent\",\"name\":\"Input\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"50\",\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"260\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input.map", "import{jsx as t}from\"react/jsx-runtime\";import{createStore as r}from\"https://framer.com/m/framer/store.js@^1.0.0\";// Learn more: https://www.framer.com/docs/guides/overrides/\nlet n=r({prompt:\"\",clickCount:0,variant:\"default\"});export function onForm(r){return o=>{let[e,p]=n();return /*#__PURE__*/t(\"form\",{action:\"GET\",onSubmit:t=>{t.preventDefault();let r=`https://wa.me/5521964402480?text=${e.prompt}`;window.open(r,\"_blank\"),p({prompt:\"\",clickCount:0,variant:\"default\"});},children:/*#__PURE__*/t(r,{...o})});};}export function onInput(r){return o=>{let[e,p]=n();return /*#__PURE__*/t(r,{...o,onValueChange:t=>{p({...e,prompt:t});}});};}export function onSubmit(r){return o=>{let[e,p]=n();\"\"!==e.prompt&&e.prompt;let m=`https://wa.me/5521964402480?text=${e.prompt}`;return /*#__PURE__*/t(r,{...o,onClick:t=>{t.preventDefault(),1===e.clickCount?(// Verifica se \u00E9 o segundo clique\nwindow.open(m,\"_blank\"),p({prompt:\"\"})):p(t=>({...t,clickCount:e.clickCount+1,variant:\"open\"}));}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"onForm\":{\"type\":\"reactHoc\",\"name\":\"onForm\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"onSubmit\":{\"type\":\"reactHoc\",\"name\":\"onSubmit\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"onInput\":{\"type\":\"reactHoc\",\"name\":\"onInput\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./WhatsappForm.map", "// Generated by Framer (c60b0a0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Input}from\"https://framerusercontent.com/modules/4TG0CA0xFC8r92HZNVLs/oNHmObL27xLBv67Gbys4/Input.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import{onForm,onInput}from\"https://framerusercontent.com/modules/cMR2yWExHtVGqnnuJlD0/fHpNJofCv2c2j1qqmcCw/WhatsappForm.js\";const PhosphorFonts=getFonts(Phosphor);const InputFonts=getFonts(Input);const InputOnInput=onInput(Input);const MotionDivOnForm=onForm(motion.div);const cycleOrder=[\"jJURBZsH4\",\"iaY6hlZ53\",\"dJ3dVxvZz\"];const serializationHash=\"framer-7ySTc\";const variantClassNames={dJ3dVxvZz:\"framer-v-73sc7j\",iaY6hlZ53:\"framer-v-7e8mh\",jJURBZsH4:\"framer-v-e52vf3\"};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={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-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(React.Fragment);const humanReadableVariantMap={default:\"jJURBZsH4\",Mobile:\"dJ3dVxvZz\",open:\"iaY6hlZ53\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"jJURBZsH4\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jJURBZsH4\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap8suc3g=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"iaY6hlZ53\");});const onTap1aewyp2=activeVariantCallback(async(...args)=>{setVariant(\"jJURBZsH4\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"iaY6hlZ53\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"iaY6hlZ53\")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(MotionDivOnForm,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-e52vf3\",className,classNames),\"data-framer-name\":\"default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"jJURBZsH4\",onTap:onTap8suc3g,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({dJ3dVxvZz:{\"data-framer-name\":\"Mobile\"},iaY6hlZ53:{\"data-framer-name\":\"open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qhfdoj\",\"data-framer-name\":\"Whatsapp\",layoutDependency:layoutDependency,layoutId:\"uX_xUOwhf\",style:{backgroundColor:\"rgb(37, 211, 102)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50,boxShadow:\"0px 2px 32px 0px rgba(0, 0, 0, 0.1599999964237213), 0px 1px 6px 0px rgba(0, 0, 0, 0.05999999865889549)\"},transformTemplate:transformTemplate1,variants:{dJ3dVxvZz:{backgroundColor:\"rgb(38, 212, 102)\"}},...addPropertyOverrides({dJ3dVxvZz:{transformTemplate:transformTemplate2},iaY6hlZ53:{\"data-highlight\":true,onTap:onTap1aewyp2,transformTemplate:transformTemplate2}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-581qvs-container\",layoutDependency:layoutDependency,layoutId:\"SmbN0jJ_G-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-53685e26-addd-4820-9b65-fe6b74837a2e, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"WhatsappLogo\",id:\"SmbN0jJ_G\",layoutId:\"SmbN0jJ_G\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1puaote\",\"data-framer-name\":\"span.qlwapp-text\",layoutDependency:layoutDependency,layoutId:\"nCOhWeG26\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(255, 255, 255, 1))\"},children:\"Whatsapp\"})})}),className:\"framer-ixlifk\",\"data-framer-name\":\"Whatsapp\",fonts:[\"GF;Montserrat-600\"],layoutDependency:layoutDependency,layoutId:\"PJrHK0CPD\",style:{\"--extracted-1w3ko1f\":\"rgba(255, 255, 255, 1)\"},verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rwlpra\",\"data-framer-name\":\"Button Whatsapp - Hover\",layoutDependency:layoutDependency,layoutId:\"dxSGQyR0m\",style:{opacity:0},variants:{iaY6hlZ53:{opacity:1}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-das56h\",\"data-framer-name\":\"Frame 110\",layoutDependency:layoutDependency,layoutId:\"Rnut1A55X\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,boxShadow:\"0px 4px 6px 0px rgba(0, 0, 0, 0.05999999865889549)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"16px\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(73, 73, 73, 1))\"},children:\"Ol\\xe1 \uD83D\uDC4B, em que podemos auxili\\xe1-lo? Estamos prontos!\"})})}),className:\"framer-vn8lqh\",\"data-framer-name\":\"Ol\\xe1 \uD83D\uDC4B, como podemos te ajudar? Estamos dispon\\xedveis!\",fonts:[\"GF;Montserrat-500\"],layoutDependency:layoutDependency,layoutId:\"m7zIhkndO\",style:{\"--extracted-1w3ko1f\":\"rgba(73, 73, 73, 1)\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-cu3ebj\",\"data-framer-name\":\"Line 12\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:244,layoutDependency:layoutDependency,layoutId:\"ia2rRe9r4\",svg:'<svg width=\"244\" height=\"3\" viewBox=\"-1 -1 244 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"0.5\" x2=\"242\" y2=\"0.5\" stroke=\"#DCDCDC\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-okgjkg\",layoutDependency:layoutDependency,layoutId:\"L2v3sMTGk\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-x850t9-container\",layoutDependency:layoutDependency,layoutId:\"K6fQ8MR2R-container\",children:/*#__PURE__*/_jsx(InputOnInput,{backgroundColor:\"rgb(255, 255, 255)\",border:\"rgba(0, 0, 0, 0)\",borderRadius:8,borderWidth:1,bottomLeftRadius:8,bottomRightRadius:8,caretColor:\"rgb(51, 51, 51)\",disabled:false,enableLimit:false,focusColor:\"var(--token-53685e26-addd-4820-9b65-fe6b74837a2e, rgb(255, 255, 255))\",focused:false,font:false,fontFamily:\"\",fontSize:14,fontWeight:400,height:\"100%\",id:\"K6fQ8MR2R\",isMixedBorderRadius:false,isRTL:false,keyboard:\"\",layoutId:\"K6fQ8MR2R\",lineHeight:1,maxLength:10,multiLine:false,padding:15,paddingBottom:15,paddingLeft:6,paddingPerSide:true,paddingRight:15,paddingTop:15,password:false,placeholder:\"Escreva aqui sua mensagem...\",placeholderColor:\"rgb(170, 170, 170)\",style:{height:\"100%\",width:\"100%\"},textAlign:\"left\",textColor:\"rgb(51, 51, 51)\",topLeftRadius:8,topRightRadius:8,truncate:false,value:\"\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.button,{className:\"framer-163zgqj\",\"data-framer-name\":\"Submit\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"W5zkrD5BR\",children:isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-xj33x7\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:16,intrinsicWidth:19,layoutDependency:layoutDependency,layoutId:\"py1BcHn0v\",svg:'<svg width=\"19\" height=\"16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M17.123 6.231 2.433.136A1.749 1.749 0 0 0 .608.43a1.749 1.749 0 0 0-.553 1.764l1.308 5.128h6.402a.533.533 0 0 1 0 1.066H1.363L.055 13.516c-.165.65.047 1.325.553 1.764.508.44 1.207.55 1.825.294l14.69-6.095a1.731 1.731 0 0 0 1.084-1.624 1.73 1.73 0 0 0-1.084-1.624Z\" fill=\"#828282\"/></svg>',withExternalLayout:true})})]})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7ySTc.framer-1xoixkv, .framer-7ySTc .framer-1xoixkv { display: block; }\",\".framer-7ySTc.framer-e52vf3 { align-content: flex-end; align-items: flex-end; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-7ySTc .framer-1qhfdoj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 9px 23.229995727539062px 9px 24px; position: absolute; top: 50%; width: min-content; z-index: 4; }\",\".framer-7ySTc .framer-581qvs-container { flex: none; height: 19px; position: relative; width: 19px; }\",\".framer-7ySTc .framer-1puaote { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 1px 0px; position: relative; width: min-content; }\",\".framer-7ySTc .framer-ixlifk { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-7ySTc .framer-rwlpra { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-7ySTc .framer-das56h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 12px; position: relative; width: min-content; }\",\".framer-7ySTc .framer-vn8lqh { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 237px; word-break: break-word; word-wrap: break-word; }\",\".framer-7ySTc .framer-cu3ebj { flex: none; height: 3px; position: relative; width: 244px; }\",\".framer-7ySTc .framer-okgjkg { align-self: stretch; flex: none; height: 32px; overflow: visible; position: relative; width: auto; }\",\".framer-7ySTc .framer-x850t9-container { bottom: 0px; flex: none; left: calc(50.00000000000002% - 244px / 2); position: absolute; top: 0px; width: 244px; }\",\".framer-7ySTc .framer-163zgqj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1fr; justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 10px; top: calc(50.00000000000002% - 1fr / 2); width: 29px; }\",\".framer-7ySTc .framer-xj33x7 { aspect-ratio: 1.1875 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 19px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7ySTc.framer-e52vf3, .framer-7ySTc .framer-1qhfdoj, .framer-7ySTc .framer-1puaote, .framer-7ySTc .framer-rwlpra, .framer-7ySTc .framer-das56h, .framer-7ySTc .framer-163zgqj { gap: 0px; } .framer-7ySTc.framer-e52vf3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-7ySTc.framer-e52vf3 > :first-child, .framer-7ySTc .framer-1qhfdoj > :first-child, .framer-7ySTc .framer-rwlpra > :first-child { margin-left: 0px; } .framer-7ySTc.framer-e52vf3 > :last-child, .framer-7ySTc .framer-1qhfdoj > :last-child, .framer-7ySTc .framer-rwlpra > :last-child { margin-right: 0px; } .framer-7ySTc .framer-1qhfdoj > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-7ySTc .framer-1puaote > *, .framer-7ySTc .framer-163zgqj > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-7ySTc .framer-1puaote > :first-child, .framer-7ySTc .framer-das56h > :first-child, .framer-7ySTc .framer-163zgqj > :first-child { margin-top: 0px; } .framer-7ySTc .framer-1puaote > :last-child, .framer-7ySTc .framer-das56h > :last-child, .framer-7ySTc .framer-163zgqj > :last-child { margin-bottom: 0px; } .framer-7ySTc .framer-rwlpra > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-7ySTc .framer-das56h > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } }\",\".framer-7ySTc.framer-v-7e8mh.framer-e52vf3 { padding: 0px 60px 0px 0px; }\",\".framer-7ySTc.framer-v-7e8mh .framer-1qhfdoj { cursor: pointer; left: unset; order: 0; padding: 16px; right: 4px; top: 50%; z-index: 10; }\",\".framer-7ySTc.framer-v-7e8mh .framer-581qvs-container { height: 36px; width: 36px; }\",\".framer-7ySTc.framer-v-7e8mh .framer-rwlpra { order: 1; }\",\".framer-7ySTc.framer-v-7e8mh .framer-vn8lqh, .framer-7ySTc.framer-v-7e8mh .framer-cu3ebj { align-self: stretch; width: auto; }\",\".framer-7ySTc.framer-v-7e8mh .framer-okgjkg { align-content: center; align-items: center; align-self: unset; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; width: min-content; }\",\".framer-7ySTc.framer-v-7e8mh .framer-x850t9-container { bottom: unset; height: 32px; left: unset; position: relative; top: unset; width: 237px; }\",\".framer-7ySTc.framer-v-7e8mh .framer-163zgqj { align-self: stretch; height: auto; position: relative; right: unset; top: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7ySTc.framer-v-7e8mh .framer-okgjkg { gap: 0px; } .framer-7ySTc.framer-v-7e8mh .framer-okgjkg > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-7ySTc.framer-v-7e8mh .framer-okgjkg > :first-child { margin-left: 0px; } .framer-7ySTc.framer-v-7e8mh .framer-okgjkg > :last-child { margin-right: 0px; } }\",\".framer-7ySTc.framer-v-73sc7j .framer-1qhfdoj { left: unset; right: 24px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 109\n * @framerIntrinsicWidth 268\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"iaY6hlZ53\":{\"layout\":[\"auto\",\"auto\"]},\"dJ3dVxvZz\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerz2dFaBkoA=withCSS(Component,css,\"framer-7ySTc\");export default Framerz2dFaBkoA;Framerz2dFaBkoA.displayName=\"Whatsapp Button Floating\";Framerz2dFaBkoA.defaultProps={height:109,width:268};addPropertyControls(Framerz2dFaBkoA,{variant:{options:[\"jJURBZsH4\",\"iaY6hlZ53\",\"dJ3dVxvZz\"],optionTitles:[\"default\",\"open\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerz2dFaBkoA,[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w7Y3tcoqK5.woff2\",weight:\"600\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew7Y3tcoqK5.woff2\",weight:\"500\"}]},...PhosphorFonts,...InputFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerz2dFaBkoA\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"268\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"iaY6hlZ53\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"dJ3dVxvZz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"109\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./z2dFaBkoA.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import*as React from\"react\";import{//@ts-ignore\nQueryEngine,useLocaleInfo,//@ts-ignore\nuseQueryData}from\"framer\";const queryEngine=new QueryEngine;const useStore=createStore({prompt:\"\"});function debounce(func,wait){let timeout;return function(...args){clearTimeout(timeout);timeout=setTimeout(()=>func.apply(this,args),wait);};}export function onInput(Component){return props=>{const[store,setStore]=useStore();const handleValueChange=debounce(e=>{setStore({prompt:e});},500)// 500ms delay\n;return /*#__PURE__*/_jsx(Component,{...props,onChange:handleValueChange});};}const QueryData=({query,children})=>{const data=useQueryData(query);return children(data);};const generateQuery=()=>{};export function onCollectionList(Component){return props=>{const[store]=useStore();const[newProps,setProps]=React.useState(createNewProps(props,[]));const[filteredData,setFilteredData]=React.useState([]);const[count,setCount]=React.useState(0);const[notFound,setNotFound]=React.useState(false);const{activeLocale}=useLocaleInfo();const data=props.children.props.children.props.query.from.data;//@ts-ignore\nconst{type}=/*#__PURE__*/React.memo(useQueryData({from:{data,type:\"Collection\"},select:[{name:\"id\",type:\"Identifier\"},{name:\"d9WUTdWg3\",type:\"Identifier\"}],where:{left:{name:\"d9WUTdWg3\",type:\"Identifier\"},operator:\"or\",right:{type:\"LiteralValue\",value:\"Revestimento\"},type:\"BinaryOperation\"},locale:activeLocale}),[]);const newData=type;React.useEffect(()=>{setFilteredData(newData);console.log(filteredData);},[]);React.useEffect(()=>{console.log(newData);// if (store.prompt !== \"\") {\n//     const dataFiltradaPeloPromt = newData.filter((item) => {\n//         return item[\"d9WUTdWg3\"]\n//             .toLowerCase()\n//             .includes(store.prompt.toLowerCase())\n//     })\n//     console.log(dataFiltradaPeloPromt)\n//     // const filteredChildren = filterChild()\n//     // //setProps(filteredChildren)\n//     // console.log(filteredChildren)\n// }\n},[store.prompt]);const filterChild=()=>{if(store.prompt!==\"\"){return filtrarPorCorrespondenciaExata(props,store.prompt);}else{return props;}};return /*#__PURE__*/_jsx(Component,{...newProps});};}function filtrarPorCorrespondenciaExata(props,palavraChave){const data=props.children.props.children.props.query.from.data;// Filtrando o array 'data' para incluir somente itens que t\u00EAm uma correspond\u00EAncia exata\nconst dataFiltrada=data.filter(item=>{// Acessando o valor da chave 'd9WUTdWg3' e comparando com a 'palavraChave'\nconst valor=item[\"d9WUTdWg3\"];return valor.toLowerCase().includes(palavraChave.toLowerCase());});return createNewProps(props,dataFiltrada);}const createNewProps=(propsData,newData)=>{const props=propsData.children.props;const novasProps={...props,children:{...props.children,props:{...props.children.props,query:{...props.children.props.query,from:{...props.children.props.query.from,data:newData}}}}};return{...propsData,children:{...propsData.children,props:novasProps}};};\nexport const __FramerMetadata__ = {\"exports\":{\"onCollectionList\":{\"type\":\"reactHoc\",\"name\":\"onCollectionList\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"onInput\":{\"type\":\"reactHoc\",\"name\":\"onInput\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FuseCMSFilterFullScreen.map"],
  "mappings": "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",
  "names": ["Input", "withCSS", "props", "placeholder", "backgroundColor", "textColor", "border", "borderWidth", "password", "onSubmit", "onFocus", "onBlur", "value", "textAlign", "multiLine", "placeholderColor", "focused", "inputStyle", "caretColor", "fontFamily", "blurOnSubmit", "disabled", "keyboard", "truncate", "onChange", "onValueChange", "maxLength", "lineHeight", "enableLimit", "isRTL", "style", "inputValue", "setValue", "useControlledState", "inputEle", "pe", "Tag", "se", "inPreview", "useIsInPreview", "fontStyles", "useFontControls", "paddingValue", "usePadding", "borderRadius", "useRadius", "handleChange", "te", "event", "useOnEnter", "ue", "useIsomorphicLayoutEffect", "p", "e", "baseInputStyles", "addPropertyControls", "ControlType", "fontControls", "fontSizeOptions", "paddingControl", "borderRadiusControl", "fontStack", "n", "createStore", "onForm", "r", "o", "e", "p", "t", "window", "onInput", "PhosphorFonts", "getFonts", "Icon", "InputFonts", "Input", "InputOnInput", "onInput", "MotionDivOnForm", "onForm", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap8suc3g", "args", "onTap1aewyp2", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "SVG", "css", "Framerz2dFaBkoA", "withCSS", "z2dFaBkoA_default", "addPropertyControls", "ControlType", "addFonts", "queryEngine", "QueryEngine", "useStore", "createStore", "debounce", "func", "wait", "timeout", "args", "onInput", "Component", "props", "store", "setStore", "handleValueChange", "e", "p", "onCollectionList", "Component", "props", "store", "useStore", "newProps", "setProps", "ye", "createNewProps", "filteredData", "setFilteredData", "count", "setCount", "notFound", "setNotFound", "activeLocale", "useLocaleInfo", "data", "type", "X", "useQueryData", "newData", "ue", "filterChild", "filtrarPorCorrespondenciaExata", "p", "palavraChave", "dataFiltrada", "item", "propsData", "novasProps"]
}
