{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/cBAATa4rFqWg5DsvosX6/1QZuGfhGAcWzuJIV55IG/HotspotCircle.js", "ssg:https://framerusercontent.com/modules/QV42eg821ewqXfDJnpvW/H5K7BQtPcTQcTazysOG3/OuYfpVn_7.js"],
  "sourcesContent": ["// Hotspot interaction circle with speech bubble tooltip, stable CSS pulse, and customizable layout\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useState}from\"react\";/**\n * Hotspot interaction circle with speech bubble tooltip, stable CSS pulse, and customizable layout\n *\n * @framerIntrinsicWidth 100\n * @framerIntrinsicHeight 100\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function HotspotCircle(props){const{color=\"#007AFF\",size=16,pulseColor=\"#007AFF\",pulseSize=48,pulseSpeed=1.5,pulseOffsetX=0,pulseOffsetY=0,hoverText=\"Interact\",textColor=\"#fff\",font,tooltipOffsetX=0,tooltipOffsetY=0,tooltipVisible=\"hover\",tooltipWidth=0,tooltipPadding=10,tooltipBorderRadius=16,tooltipBackground=\"#222\",tooltipShadow=true,tooltipArrowSize=12,tooltipBorder=false,tooltipBorderColor=\"#ddd\",tooltipBorderWidth=1,hotspotOffsetX=0,hotspotOffsetY=0,style}=props;const[isHovered,setIsHovered]=useState(false);const showTooltip=tooltipVisible===\"always\"||isHovered;// Main container style\nconst containerStyle={position:\"relative\",width:\"100%\",height:\"100%\",...style};// Calculate the hotspot center position\nconst hotspotCenterX=`calc(50% + ${hotspotOffsetX}px)`;const hotspotCenterY=`calc(50% + ${hotspotOffsetY}px)`;// Pulse style - now properly centered on hotspot\nconst pulseStyle={position:\"absolute\",width:pulseSize,height:pulseSize,left:hotspotCenterX,top:hotspotCenterY,transform:`translate(calc(-50% + ${pulseOffsetX}px), calc(-50% + ${pulseOffsetY}px))`,borderRadius:\"50%\",backgroundColor:pulseColor,opacity:.18,pointerEvents:\"none\",zIndex:0,animation:`hotspotPulse ${pulseSpeed}s linear infinite`};// Hotspot circle style\nconst hotspotStyle={position:\"absolute\",width:size,height:size,borderRadius:\"50%\",backgroundColor:color,left:hotspotCenterX,top:hotspotCenterY,transform:`translate(-50%, -50%) scale(${isHovered?1.15:1})`,cursor:\"pointer\",boxShadow:\"0 2px 8px rgba(0,0,0,0.10)\",zIndex:2,transition:\"transform 0.18s cubic-bezier(.4,0,.2,1)\"};// Tooltip style\nconst tooltipStyle={position:\"absolute\",background:tooltipBackground,color:textColor,borderRadius:tooltipBorderRadius,padding:`${tooltipPadding}px ${tooltipPadding*1.8}px`,fontSize:font?.fontSize||15,fontWeight:font?.variant||500,lineHeight:font?.lineHeight||1.2,letterSpacing:font?.letterSpacing,whiteSpace:\"nowrap\",boxShadow:tooltipShadow?\"0 2px 12px rgba(0,0,0,0.12)\":\"none\",border:tooltipBorder?`${tooltipBorderWidth}px solid ${tooltipBorderColor}`:\"none\",zIndex:10,pointerEvents:\"none\",opacity:showTooltip?1:0,transition:\"opacity 0.18s cubic-bezier(.4,0,.2,1)\",top:0,left:\"50%\",transform:`translate(-50%, calc(-100% - ${tooltipArrowSize*2}px)) translate(${tooltipOffsetX}px, ${tooltipOffsetY}px)`,width:tooltipWidth>0?`${tooltipWidth}px`:\"auto\",maxWidth:tooltipWidth>0?`${tooltipWidth}px`:\"none\",textAlign:tooltipWidth>0?\"center\":\"left\"};// Tooltip arrow component\nconst tooltipArrow=/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",left:\"50%\",top:\"100%\",width:tooltipArrowSize*2,height:tooltipArrowSize,transform:\"translateX(-50%)\",overflow:\"hidden\",pointerEvents:\"none\"},children:/*#__PURE__*/_jsx(\"svg\",{width:tooltipArrowSize*2,height:tooltipArrowSize,viewBox:`0 0 ${tooltipArrowSize*2} ${tooltipArrowSize}`,style:{display:\"block\"},children:/*#__PURE__*/_jsx(\"path\",{d:`M0,0 Q${tooltipArrowSize},${tooltipArrowSize} ${tooltipArrowSize*2},0`,fill:tooltipBackground,stroke:tooltipBorder?tooltipBorderColor:\"none\",strokeWidth:tooltipBorder?tooltipBorderWidth:0})})});return /*#__PURE__*/_jsxs(\"div\",{style:containerStyle,onMouseEnter:()=>setIsHovered(true),onMouseLeave:()=>setIsHovered(false),children:[/*#__PURE__*/_jsx(\"div\",{style:pulseStyle}),/*#__PURE__*/_jsx(\"div\",{style:hotspotStyle,\"aria-label\":hoverText,tabIndex:0,role:\"button\"}),/*#__PURE__*/_jsxs(\"div\",{style:tooltipStyle,children:[hoverText,tooltipArrow]}),/*#__PURE__*/_jsx(\"style\",{children:`\n                @keyframes hotspotPulse {\n                    0% {\n                        transform: translate(calc(-50% + ${pulseOffsetX}px), calc(-50% + ${pulseOffsetY}px)) scale(1);\n                        opacity: 0.18;\n                    }\n                    70% {\n                        transform: translate(calc(-50% + ${pulseOffsetX}px), calc(-50% + ${pulseOffsetY}px)) scale(2.8);\n                        opacity: 0;\n                    }\n                    100% {\n                        transform: translate(calc(-50% + ${pulseOffsetX}px), calc(-50% + ${pulseOffsetY}px)) scale(2.8);\n                        opacity: 0;\n                    }\n                }\n            `})]});}addPropertyControls(HotspotCircle,{// Hotspot Controls\ncolor:{type:ControlType.Color,title:\"Color\",defaultValue:\"#007AFF\"},size:{type:ControlType.Number,title:\"Size\",defaultValue:16,min:4,max:40,step:1,unit:\"px\"},pulseColor:{type:ControlType.Color,title:\"Pulse Color\",defaultValue:\"#007AFF\"},pulseSize:{type:ControlType.Number,title:\"Pulse Size\",defaultValue:48,min:20,max:200,step:1,unit:\"px\"},pulseSpeed:{type:ControlType.Number,title:\"Pulse Speed\",defaultValue:1.5,min:.5,max:5,step:.1,unit:\"s\"},// Pulse Offset\npulseOffsetX:{type:ControlType.Number,title:\"Pulse X Offset\",defaultValue:0,min:-100,max:100,step:1,unit:\"px\"},pulseOffsetY:{type:ControlType.Number,title:\"Pulse Y Offset\",defaultValue:0,min:-100,max:100,step:1,unit:\"px\"},// Tooltip Content\nhoverText:{type:ControlType.String,title:\"Tooltip Text\",defaultValue:\"Interact\"},textColor:{type:ControlType.Color,title:\"Text Color\",defaultValue:\"#fff\"},font:{type:ControlType.Font,title:\"Tooltip Font\",defaultValue:{fontSize:15,lineHeight:1.2},controls:\"extended\"},// Tooltip Appearance\ntooltipBackground:{type:ControlType.Color,title:\"Tooltip Background\",defaultValue:\"#222\"},tooltipBorderRadius:{type:ControlType.Number,title:\"Tooltip Radius\",defaultValue:16,min:0,max:50,step:1,unit:\"px\"},tooltipPadding:{type:ControlType.Number,title:\"Tooltip Padding\",defaultValue:10,min:4,max:30,step:1,unit:\"px\"},tooltipWidth:{type:ControlType.Number,title:\"Tooltip Width\",defaultValue:0,min:0,max:500,step:1,unit:\"px\",description:\"0 = auto width\"},tooltipShadow:{type:ControlType.Boolean,title:\"Tooltip Shadow\",defaultValue:true,enabledTitle:\"On\",disabledTitle:\"Off\"},tooltipArrowSize:{type:ControlType.Number,title:\"Arrow Size\",defaultValue:12,min:6,max:24,step:1,unit:\"px\"},// Tooltip Border\ntooltipBorder:{type:ControlType.Boolean,title:\"Tooltip Border\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"},tooltipBorderColor:{type:ControlType.Color,title:\"Border Color\",defaultValue:\"#ddd\",hidden:({tooltipBorder})=>!tooltipBorder},tooltipBorderWidth:{type:ControlType.Number,title:\"Border Width\",defaultValue:1,min:1,max:10,step:1,unit:\"px\",hidden:({tooltipBorder})=>!tooltipBorder},// Tooltip Position\ntooltipOffsetX:{type:ControlType.Number,title:\"Tooltip X Offset\",defaultValue:0,min:-100,max:100,step:1,unit:\"px\"},tooltipOffsetY:{type:ControlType.Number,title:\"Tooltip Y Offset\",defaultValue:0,min:-100,max:100,step:1,unit:\"px\"},// Hotspot Position\nhotspotOffsetX:{type:ControlType.Number,title:\"Hotspot X Offset\",defaultValue:0,min:-200,max:200,step:1,unit:\"px\"},hotspotOffsetY:{type:ControlType.Number,title:\"Hotspot Y Offset\",defaultValue:0,min:-200,max:200,step:1,unit:\"px\"},tooltipVisible:{type:ControlType.Enum,title:\"Tooltip Visibility\",options:[\"hover\",\"always\"],optionTitles:[\"On Hover\",\"Always\"],defaultValue:\"hover\",displaySegmentedControl:true}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"HotspotCircle\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"100\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"100\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./HotspotCircle.map", "// Generated by Framer (5b26096)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"mQ6x9VrAP\",\"Grm9Fps1c\"];const serializationHash=\"framer-Ym2k0\";const variantClassNames={Grm9Fps1c:\"framer-v-1g9t1gu\",mQ6x9VrAP:\"framer-v-1sft0v8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Default:\"mQ6x9VrAP\",Hover:\"Grm9Fps1c\"};const getProps=({click,height,id,text,tip,width,...props})=>{return{...props,GSC1WuhPU:text??props.GSC1WuhPU??\"One Apple Park Way,\",HRoNf4IN_:tip??props.HRoNf4IN_??\"Street\",hYggXVKwi:click??props.hYggXVKwi,variant:humanReadableVariantMap[props.variant]??props.variant??\"mQ6x9VrAP\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,GSC1WuhPU,hYggXVKwi,HRoNf4IN_,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"mQ6x9VrAP\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1x016e1=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(hYggXVKwi){const res=await hYggXVKwi(...args);if(res===false)return false;}});const onMouseEntern68em2=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"Grm9Fps1c\");});const onMouseLeaves182lg=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"mQ6x9VrAP\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1sft0v8\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"mQ6x9VrAP\",onMouseEnter:onMouseEntern68em2,onTap:onTap1x016e1,ref:refBinding,style:{...style},...addPropertyOverrides({Grm9Fps1c:{\"data-framer-name\":\"Hover\",onMouseLeave:onMouseLeaves182lg}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-s1psyr\",\"data-framer-name\":\"Tip Wrapper\",layoutDependency:layoutDependency,layoutId:\"lBKRzrMft\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ly31dv\",\"data-framer-name\":\"Tip\",layoutDependency:layoutDependency,layoutId:\"oug8RKHbv\",style:{opacity:0,scale:.5},variants:{Grm9Fps1c:{opacity:1,scale:1}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1opi9vp\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"ELLwiswCW\",style:{backgroundColor:\"rgb(12, 123, 252)\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"X19TRi1VSS1EaXNwbGF5LU1lZGl1bV9f\",\"--framer-font-family\":'\".SFNSDisplay-Medium\", \"SFProDisplay-Medium\", \"SFUIDisplay-Medium\", \".SFUIDisplay-Medium\", \"SF Pro Display\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"499\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255)))\"},children:\"Street\"})}),className:\"framer-1neh1k9\",fonts:[\"__SF-UI-Display-Medium__\"],layoutDependency:layoutDependency,layoutId:\"lERoOAvXT\",style:{\"--extracted-r6o4lv\":\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:HRoNf4IN_,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-q9zi6f\",\"data-framer-name\":\"Rec\",layoutDependency:layoutDependency,layoutId:\"Mt_od4iAZ\",style:{backgroundColor:\"var(--token-a042497d-749d-4d03-8d3a-78930210d354, rgb(0, 128, 255))\",rotate:45}})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-48xuyu\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"ZbubglZst\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"X19TRi1VSS1EaXNwbGF5LU1lZGl1bV9f\",\"--framer-font-family\":'\".SFNSDisplay-Medium\", \"SFProDisplay-Medium\", \"SFUIDisplay-Medium\", \".SFUIDisplay-Medium\", \"SF Pro Display\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"499\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255)))\"},children:\"One Apple Park Way,\"})}),className:\"framer-11cq1vc\",fonts:[\"__SF-UI-Display-Medium__\"],layoutDependency:layoutDependency,layoutId:\"BlhVz1Uym\",style:{\"--extracted-1of0zx5\":\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:GSC1WuhPU,variants:{Grm9Fps1c:{\"--extracted-1of0zx5\":\"rgb(12, 123, 252)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Grm9Fps1c:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"X19TRi1VSS1EaXNwbGF5LU1lZGl1bV9f\",\"--framer-font-family\":'\".SFNSDisplay-Medium\", \"SFProDisplay-Medium\", \"SFUIDisplay-Medium\", \".SFUIDisplay-Medium\", \"SF Pro Display\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"499\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(12, 123, 252))\"},children:\"One Apple Park Way,\"})})}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ym2k0.framer-1ndan5b, .framer-Ym2k0 .framer-1ndan5b { display: block; }\",\".framer-Ym2k0.framer-1sft0v8 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Ym2k0 .framer-s1psyr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; pointer-events: none; position: absolute; top: 0px; width: min-content; z-index: 1; }\",\".framer-Ym2k0 .framer-1ly31dv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Ym2k0 .framer-1opi9vp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 6px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-Ym2k0 .framer-1neh1k9, .framer-Ym2k0 .framer-11cq1vc { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-Ym2k0 .framer-q9zi6f { bottom: -3px; flex: none; height: 7px; left: calc(49.46236559139787% - 7px / 2); overflow: visible; position: absolute; width: 7px; z-index: 1; }\",\".framer-Ym2k0 .framer-48xuyu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Ym2k0.framer-v-1g9t1gu .framer-s1psyr { height: 118px; top: -78px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 324\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"Grm9Fps1c\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"GSC1WuhPU\":\"text\",\"hYggXVKwi\":\"click\",\"HRoNf4IN_\":\"tip\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerOuYfpVn_7=withCSS(Component,css,\"framer-Ym2k0\");export default FramerOuYfpVn_7;FramerOuYfpVn_7.displayName=\"Title Hover\";FramerOuYfpVn_7.defaultProps={height:40,width:324};addPropertyControls(FramerOuYfpVn_7,{variant:{options:[\"mQ6x9VrAP\",\"Grm9Fps1c\"],optionTitles:[\"Default\",\"Hover\"],title:\"Variant\",type:ControlType.Enum},GSC1WuhPU:{defaultValue:\"One Apple Park Way,\",displayTextArea:false,title:\"Text\",type:ControlType.String},hYggXVKwi:{title:\"Click\",type:ControlType.EventHandler},HRoNf4IN_:{defaultValue:\"Street\",displayTextArea:false,title:\"Tip\",type:ControlType.String}});addFonts(FramerOuYfpVn_7,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOuYfpVn_7\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"324\",\"framerVariables\":\"{\\\"GSC1WuhPU\\\":\\\"text\\\",\\\"hYggXVKwi\\\":\\\"click\\\",\\\"HRoNf4IN_\\\":\\\"tip\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Grm9Fps1c\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"40\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./OuYfpVn_7.map"],
  "mappings": "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",
  "names": ["init_ssg_sandbox_shims", "HotspotCircle", "props", "color", "size", "pulseColor", "pulseSize", "pulseSpeed", "pulseOffsetX", "pulseOffsetY", "hoverText", "textColor", "font", "tooltipOffsetX", "tooltipOffsetY", "tooltipVisible", "tooltipWidth", "tooltipPadding", "tooltipBorderRadius", "tooltipBackground", "tooltipShadow", "tooltipArrowSize", "tooltipBorder", "tooltipBorderColor", "tooltipBorderWidth", "hotspotOffsetX", "hotspotOffsetY", "style", "isHovered", "setIsHovered", "ye", "showTooltip", "containerStyle", "hotspotCenterX", "hotspotCenterY", "pulseStyle", "hotspotStyle", "tooltipStyle", "tooltipArrow", "p", "u", "addPropertyControls", "ControlType", "init_ssg_sandbox_shims", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "text", "tip", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "GSC1WuhPU", "hYggXVKwi", "HRoNf4IN_", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1x016e1", "args", "onMouseEntern68em2", "onMouseLeaves182lg", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText", "css", "FramerOuYfpVn_7", "withCSS", "OuYfpVn_7_default", "addPropertyControls", "ControlType", "addFonts"]
}
