{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/iL348ceKw97HmJ1dB0C2/RmKc3MqYCKyoVljapM0b/Gallery.js", "ssg:https://framerusercontent.com/modules/2p17URJwJqFdxkrhVYf4/g9KSEIgvVC5onl0iG6Np/WqPpenlCF.js"],
  "sourcesContent": ["// Welcome to Code in Framer\n// Get Started: https://www.framer.com/developers/\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,Data}from\"framer\";import{useState,useEffect,cloneElement,useRef}from\"react\";import{motion,AnimatePresence,wrap}from\"framer-motion\";const ZoomData=Data({scale:1,originX:\"50%\",originY:\"50%\",cursor:\"default\"});export default function LightboxAutoOpen(props){const{overlay,component,arrows,close,zoom,textStyles,showThumbnail,showPageCount,zoomEnabled,dragEnabled,imageRadius,startIndex,subtractStartIndex,maxContainerWidth}=props;const[loadedItems,setLoadedItems]=useState([]);const[[page,direction],setPage]=useState([0,0]);const pageRef=useRef(0);const[showComponent,setShowComponent]=useState(false);const[shouldZoom,setShouldZoom]=useState(false);const[isPhone,setPhone]=useState(false);const paginate=newDirection=>{setPage([pageRef.current+newDirection,newDirection]);};const mainRef=useRef(null);useEffect(()=>{pageRef.current=page;},[page]);const activeImageIndex=wrap(0,loadedItems.length,page);const skipToImage=imageId=>{let changeDirection;if(imageId>activeImageIndex){changeDirection=1;}else if(imageId<activeImageIndex){changeDirection=-1;}setPage([imageId,changeDirection]);};const handleKeyPagination=event=>{if(!event){return;}if(event.key===\"ArrowLeft\"){paginate(-1);}else if(event.key===\"ArrowRight\"){paginate(1);}else if(event.key===\"Escape\"){handleClose();}};const handleClose=()=>{if(overlay){overlay?.();}setShowComponent(false);};const handleZoom=event=>{if(!zoomEnabled||!shouldZoom)return;const bounds=event.currentTarget.getBoundingClientRect();const x=(event.clientX-bounds.left)/bounds.width*100;const y=(event.clientY-bounds.top)/bounds.height*100;ZoomData.originX=`${x}%`;ZoomData.originY=`${y}%`;ZoomData.scale=zoom.zoomAmount;ZoomData.cursor=\"zoom-in\";event.currentTarget.style.transformOrigin=`${ZoomData.originX} ${ZoomData.originY}`;event.currentTarget.style.transform=`scale(${ZoomData.scale})`;event.currentTarget.style.cursor=ZoomData.cursor;};useEffect(()=>{window.addEventListener(\"resize\",()=>{setPhone(!window.matchMedia(\"(min-width: 768px)\").matches);});window.addEventListener(\"keyup\",handleKeyPagination);setPhone(!window.matchMedia(\"(min-width: 768px)\").matches);return()=>{window.removeEventListener(\"resize\",null);window.removeEventListener(\"keyup\",handleKeyPagination);};},[]);useEffect(()=>{//console.log(mainRef)\nif(!mainRef.current||!showComponent)return;const body=document.getElementsByTagName(\"body\")[0];// get image data\nconst imageNode=mainRef.current.querySelectorAll(`img`);//console.log(imageNode)\n// get title data\nconst titleNode=mainRef.current.querySelectorAll(`.framer-text`);// responsive grid\nmainRef.current.firstChild.setAttribute(\"style\",`width: auto; max-width:${maxContainerWidth+\"px\"}; display: none`);const data=[];for(let i=0;i<(imageNode.length||titleNode.length);i++){data.push({image:imageNode[i]?.src||\"\",title:titleNode[i]?.innerText||\"\"});}// hide scrolling on modal popup\nif(showComponent){body.style.overflow=\"hidden\";body.style.height=\"100%\";}else{body.style.overflow=\"auto\";body.style.height=\"auto\";}//console.log(data)\nconst storedClick=localStorage.getItem(\"LightBoxAutoOpen_LastClickedAt\");if(storedClick){const entry=data.findIndex(d=>d.image===storedClick);if(entry){skipToImage(entry);localStorage.removeItem(\"LightBoxAutoOpen_LastClickedAt\");}}else{skipToImage(subtractStartIndex?startIndex-1:startIndex);}setLoadedItems(data);},[showComponent]);//swipe gesture\nconst swipeConfidenceThreshold=1e3;const swipePower=(offset,velocity)=>{return Math.abs(offset)*velocity;};const variants={open:{opacity:1,zIndex:20,width:\"100%\",height:\"100%\"},closed:{opacity:0,zIndex:0,width:\"100%\",height:\"100%\"}};const sliderVariants={enter:direction=>{return{x:0,opacity:0};},center:{zIndex:20,x:0,opacity:1},exit:direction=>{return{zIndex:0,x:0,opacity:0};}};useEffect(()=>{setShowComponent(true);return()=>{const body=document.getElementsByTagName(\"body\")[0];body.style.overflow=\"auto\";body.style.height=\"auto\";};},[]);return /*#__PURE__*/_jsxs(\"div\",{style:{width:\"100%\",height:\"100%\",display:\"flex\",color:textStyles.color},children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"fit-content\",height:\"fit-content\",color:\"#515151\"},children:component&&component[0]?/*#__PURE__*/cloneElement(component[0],{style:{...component[0].props.style,display:\"none\"},ref:mainRef}):\"Connect collection!\"}),/*#__PURE__*/_jsx(motion.div,{initial:false,animate:showComponent?\"open\":\"closed\",variants:variants,transition:{duration:.4,ease:[.56,.03,.12,1.04]},children:loadedItems.length>0&&showComponent&&/*#__PURE__*/_jsxs(\"div\",{style:{position:\"fixed\",inset:0,display:\"flex\",justifyContent:\"center\",alignItems:\"center\",perspective:\"3000px\",background:\"transparent\",zIndex:20},children:[/*#__PURE__*/_jsx(AnimatePresence,{initial:false,custom:direction,children:/*#__PURE__*/_jsx(motion.img,{src:loadedItems[activeImageIndex]?.image,custom:direction,initial:\"enter\",animate:\"center\",exit:\"exit\",transition:{x:{type:\"spring\",stiffness:300,damping:30},opacity:{duration:.4}},variants:sliderVariants,style:{width:\"auto\",maxWidth:\"100%\",height:\"auto\",maxHeight:\"78vh\",display:\"flex\",objectFit:\"contain\",objectPosition:\"center\",position:\"absolute\",margin:\"auto\",inset:0,padding:\"10px\",borderRadius:imageRadius,transformOrigin:`${ZoomData.originX} ${ZoomData.originY}`,transform:`scale(${ZoomData.scale})`,overflow:\"hidden\",cursor:ZoomData.cursor},onMouseMove:handleZoom,onMouseLeave:event=>{ZoomData.scale=1;ZoomData.originX=\"50%\";ZoomData.originY=\"50%\";ZoomData.cursor=dragEnabled?\"grab\":\"default\";event.currentTarget.style.transformOrigin=`${ZoomData.originX} ${ZoomData.originY}`;event.currentTarget.style.transform=`scale(${ZoomData.scale})`;event.currentTarget.style.cursor=ZoomData.cursor;},drag:dragEnabled?\"x\":null,dragConstraints:dragEnabled?{left:0,right:0}:null,dragElastic:dragEnabled?.01:null,onDragEnd:dragEnabled?(e,{offset,velocity})=>{const swipe=swipePower(offset.x,velocity.x);if(swipe<-swipeConfidenceThreshold){paginate(1);}else if(swipe>swipeConfidenceThreshold){paginate(-1);}}:null},page)}),/*#__PURE__*/_jsxs(\"div\",{style:{position:\"absolute\",inset:\"30px\",display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\"},children:[/*#__PURE__*/_jsx(\"div\",{onClick:()=>paginate(-1),style:{cursor:\"pointer\",zIndex:20},children:/*#__PURE__*/_jsx(\"div\",{style:{width:arrows.size+\"px\",display:\"flex\",color:arrows.color},dangerouslySetInnerHTML:{__html:arrows.leftIcon}})}),/*#__PURE__*/_jsx(\"div\",{onClick:()=>paginate(1),style:{cursor:\"pointer\",zIndex:20},children:/*#__PURE__*/_jsx(\"div\",{style:{width:arrows.size+\"px\",display:\"flex\",color:arrows.color},dangerouslySetInnerHTML:{__html:arrows.rightIcon}})})]}),showPageCount&&/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",top:0,left:\"20px\",display:\"flex\",padding:\"20px\",background:\"rgba(0,0,0,0.0)\",zIndex:20,...textStyles.font,fontSize:textStyles.fontSize,fontWeight:textStyles.fontWeight,letterSpacing:textStyles.letterSpacing,lineHeight:textStyles.lineHeight},children:activeImageIndex+1+\"/\"+loadedItems.length}),/*#__PURE__*/_jsxs(\"div\",{style:{position:\"absolute\",top:\"20px\",right:\"20px\",display:\"flex\",gap:\"20px\",cursor:\"pointer\",zIndex:20},children:[zoomEnabled&&/*#__PURE__*/_jsx(\"div\",{style:{width:zoom.size+\"px\",display:\"flex\",color:zoom.color},onClick:()=>{setShouldZoom(!shouldZoom);},dangerouslySetInnerHTML:{__html:shouldZoom?zoom.zoomOnIcon:zoom.zoomOffIcon}}),/*#__PURE__*/_jsx(\"div\",{style:{width:close.size+\"px\",display:\"flex\",color:close.color},onClick:()=>handleClose(),dangerouslySetInnerHTML:{__html:close.closeIcon}})]}),!showThumbnail||/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",bottom:0,left:0,right:0,display:isPhone?\"none\":\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",gap:\"10px\",background:\"rgba(0,0,0,0.0)\",zIndex:20,padding:\"10px\"},children:showThumbnail&&/*#__PURE__*/_jsx(\"div\",{style:{display:\"grid\",gridAutoFlow:\"column\",gap:\"10px\",maxWidth:\"100%\",overflow:\"overlay hidden\"},children:loadedItems.map((item,index)=>/*#__PURE__*/_jsx(\"div\",{onClick:()=>skipToImage(index),style:{width:\"100px\",height:\"100px\",opacity:`${index===activeImageIndex?1:.5}`},children:/*#__PURE__*/_jsx(\"img\",{src:item?.image,style:{width:\"100%\",height:\"100%\",objectFit:\"cover\",objectPosition:\"center\",borderRadius:\"10px\",cursor:\"pointer\"},alt:\"\"})},index))})})]})})]});}LightboxAutoOpen.defaultProps={component:[],maxContainerWidth:1e3,arrows:{leftIcon:`<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm0,192a88,88,0,1,1,88-88A88.1,88.1,0,0,1,128,216Zm48-88a8,8,0,0,1-8,8H107.31l18.35,18.34a8,8,0,0,1-11.32,11.32l-32-32a8,8,0,0,1,0-11.32l32-32a8,8,0,0,1,11.32,11.32L107.31,120H168A8,8,0,0,1,176,128Z\"></path></svg>`,rightIcon:`<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm0,192a88,88,0,1,1,88-88A88.1,88.1,0,0,1,128,216Zm45.66-93.66a8,8,0,0,1,0,11.32l-32,32a8,8,0,0,1-11.32-11.32L148.69,136H88a8,8,0,0,1,0-16h60.69l-18.35-18.34a8,8,0,0,1,11.32-11.32Z\"></path></svg>`,size:30,color:\"#041B25\"},close:{closeIcon:`<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" fill=\"currentColor\" viewBox=\"0 0 256 256\"><path d=\"M205.66,194.34a8,8,0,0,1-11.32,11.32L128,139.31,61.66,205.66a8,8,0,0,1-11.32-11.32L116.69,128,50.34,61.66A8,8,0,0,1,61.66,50.34L128,116.69l66.34-66.35a8,8,0,0,1,11.32,11.32L139.31,128Z\"></path></svg>`,size:30,color:\"#041B25\"},showThumbnail:true,showPageCount:true};addPropertyControls(LightboxAutoOpen,{overlay:{type:ControlType.EventHandler},component:{title:\"CMS Component\",type:ControlType.ComponentInstance,description:\"Note:\\n place the CMS collection list outside the frame, then only it will show in the dropdown list\"},startIndex:{type:ControlType.Number,defaultValue:0},subtractStartIndex:{type:ControlType.Boolean,defaultValue:false,description:\"Subtracts 1 from start index.\"},maxContainerWidth:{type:ControlType.Number,title:\"Grid Width\",max:3e3},arrows:{type:ControlType.Object,title:\"Nav Styles\",controls:{leftIcon:{type:ControlType.String,title:\"Left Icon\"},rightIcon:{type:ControlType.String,title:\"Right Icon\"},size:{type:ControlType.Number,title:\"Icon Size\"},color:{type:ControlType.Color,title:\"Icon Color\",description:\"Note: \\n if you want to replace default svg icon, please change 'fill' property to 'currentColor', then only icon color will be overide\"}}},textStyles:{type:ControlType.Object,controls:{color:{type:ControlType.Color,defaultValue:\"#000\"},font:{type:ControlType.Font},fontSize:{type:ControlType.Number,defaultValue:14},fontWeight:{type:ControlType.Enum,options:[\"100\",\"200\",\"300\",\"400\",\"500\",\"600\",\"700\",\"800\",\"900\"],defaultValue:\"400\"},lineHeight:{type:ControlType.Number,defaultValue:0},letterSpacing:{type:ControlType.Number,defaultValue:0}}},close:{type:ControlType.Object,title:\"Close Styles\",controls:{closeIcon:{type:ControlType.String,title:\"Close Icon\"},size:{type:ControlType.Number,title:\"Icon Size\"},color:{type:ControlType.Color,title:\"Icon Color\",description:\"Note: \\n if you want to replace default svg icon, please change 'fill' property to 'currentColor', then only icon color will be overide\"}}},zoom:{type:ControlType.Object,title:\"Zoom Styles\",controls:{zoomAmount:{type:ControlType.Number,defaultValue:2,min:1},zoomOffIcon:{type:ControlType.String,title:\"Zoom Off Icon\"},zoomOnIcon:{type:ControlType.String,title:\"Zoom On Icon\"},size:{type:ControlType.Number,title:\"Icon Size\"},color:{type:ControlType.Color,title:\"Icon Color\",description:\"Note: \\n if you want to replace default svg icon, please change 'fill' property to 'currentColor', then only icon color will be overide\"}}},imageRadius:{type:ControlType.Number,defaultValue:20},showThumbnail:{type:ControlType.Boolean,title:\"Thumbnail\",enabledTitle:\"Yes\",disabledTitle:\"No\"},showPageCount:{type:ControlType.Boolean,title:\"Page Count\",enabledTitle:\"Yes\",disabledTitle:\"No\"},zoomEnabled:{type:ControlType.Boolean,title:\"Zoom\",enabledTitle:\"Yes\",disabledTitle:\"No\"},dragEnabled:{type:ControlType.Boolean,title:\"Drag\",enabledTitle:\"Yes\",disabledTitle:\"No\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"LightboxAutoOpen\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Gallery.map", "// Generated by Framer (48da836)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={rDgdYWNqO:{hover:true}};const serializationHash=\"framer-uT0Cy\";const variantClassNames={rDgdYWNqO:\"framer-v-1xcyto2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translate(-50%, -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 getProps=({click,height,id,k_p,width,...props})=>{return{...props,pMatiYhZV:click??props.pMatiYhZV,Sw1xxezLs:k_p??props.Sw1xxezLs??{src:\"https://framerusercontent.com/images/uMrgXFwppfym66ZzZNsBFw2Xs78.jpg?scale-down-to=1024\"}};};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,pMatiYhZV,Sw1xxezLs,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"rDgdYWNqO\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapnb3wwy=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(pMatiYhZV){const res=await pMatiYhZV(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();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,background:{alt:\"\",fit:\"fill\"},className:cx(scopingClassNames,\"framer-1xcyto2\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"rDgdYWNqO\",onTap:onTapnb3wwy,ref:ref??ref1,style:{...style},...addPropertyOverrides({\"rDgdYWNqO-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||550)*.5000000000000002-((componentViewport?.height||550)-0)*1/2)),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(Sw1xxezLs)},className:\"framer-711gqc\",layoutDependency:layoutDependency,layoutId:\"L0kIf5SQN\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4pjyoo\",layoutDependency:layoutDependency,layoutId:\"lwb27dsEF\",style:{backgroundColor:\"rgba(0, 0, 0, 0.3)\",opacity:0},variants:{\"rDgdYWNqO-hover\":{opacity:1}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-w0qz58\",layoutDependency:layoutDependency,layoutId:\"UPO4hO2BY\",style:{backgroundColor:\"rgb(255, 255, 255)\",opacity:0},transformTemplate:transformTemplate1,variants:{\"rDgdYWNqO-hover\":{opacity:1}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-y07xfr\",\"data-framer-name\":\"Graphic\",fill:'var(--token-ae4f347b-b4c7-4379-ab50-a5c3f5b08569, rgb(33, 33, 33)) /* {\"name\":\"Black\"} */',intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"aJRWsULzC\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"m229.66 218.34-50.06-50.06a88.21 88.21 0 1 0-11.32 11.31l50.06 50.07a8 8 0 0 0 11.32-11.32ZM144 120h-24v24a8 8 0 0 1-16 0v-24H80a8 8 0 0 1 0-16h24V80a8 8 0 0 1 16 0v24h24a8 8 0 0 1 0 16Z\"/></svg>',withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uT0Cy.framer-1qojmfl, .framer-uT0Cy .framer-1qojmfl { display: block; }\",\".framer-uT0Cy.framer-1xcyto2 { cursor: pointer; height: 550px; overflow: hidden; position: relative; width: 561px; }\",\".framer-uT0Cy .framer-711gqc, .framer-uT0Cy .framer-4pjyoo { flex: none; height: 100%; left: calc(49.91087344028522% - 100% / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\".framer-uT0Cy .framer-w0qz58 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 16px; position: absolute; top: 50%; width: min-content; }\",\".framer-uT0Cy .framer-y07xfr { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 22px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-uT0Cy .framer-w0qz58 { gap: 0px; } .framer-uT0Cy .framer-w0qz58 > * { margin: 0px; margin-left: calc(96px / 2); margin-right: calc(96px / 2); } .framer-uT0Cy .framer-w0qz58 > :first-child { margin-left: 0px; } .framer-uT0Cy .framer-w0qz58 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 550\n * @framerIntrinsicWidth 561\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"RFuUUe98J\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"pMatiYhZV\":\"click\",\"Sw1xxezLs\":\"k_p\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerWqPpenlCF=withCSS(Component,css,\"framer-uT0Cy\");export default FramerWqPpenlCF;FramerWqPpenlCF.displayName=\"Gallery - Image\";FramerWqPpenlCF.defaultProps={height:550,width:561};addPropertyControls(FramerWqPpenlCF,{pMatiYhZV:{title:\"Click\",type:ControlType.EventHandler},Sw1xxezLs:{__defaultAssetReference:\"data:framer/asset-reference,uMrgXFwppfym66ZzZNsBFw2Xs78.jpg?originalFilename=2022+09_deczkifoto_%2876%29.jpg&preferredSize=medium\",__vekterDefault:{assetReference:\"data:framer/asset-reference,uMrgXFwppfym66ZzZNsBFw2Xs78.jpg?originalFilename=2022+09_deczkifoto_%2876%29.jpg&preferredSize=medium\"},title:\"K\\xe9p\",type:ControlType.ResponsiveImage}});addFonts(FramerWqPpenlCF,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWqPpenlCF\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"550\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"561\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RFuUUe98J\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"pMatiYhZV\\\":\\\"click\\\",\\\"Sw1xxezLs\\\":\\\"k_p\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./WqPpenlCF.map"],
  "mappings": "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",
  "names": ["init_ssg_sandbox_shims", "ZoomData", "Data", "LightboxAutoOpen", "props", "overlay", "component", "arrows", "close", "zoom", "textStyles", "showThumbnail", "showPageCount", "zoomEnabled", "dragEnabled", "imageRadius", "startIndex", "subtractStartIndex", "maxContainerWidth", "loadedItems", "setLoadedItems", "ye", "page", "direction", "setPage", "pageRef", "pe", "showComponent", "setShowComponent", "shouldZoom", "setShouldZoom", "isPhone", "setPhone", "paginate", "newDirection", "mainRef", "ue", "activeImageIndex", "wrap", "skipToImage", "imageId", "changeDirection", "handleKeyPagination", "event", "handleClose", "handleZoom", "bounds", "x", "y", "window", "body", "imageNode", "titleNode", "data", "i", "storedClick", "entry", "d", "swipeConfidenceThreshold", "swipePower", "offset", "velocity", "variants", "sliderVariants", "u", "p", "q", "motion", "AnimatePresence", "swipe", "item", "index", "addPropertyControls", "ControlType", "WqPpenlCF_exports", "__export", "__FramerMetadata__", "WqPpenlCF_default", "init_ssg_sandbox_shims", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "click", "height", "id", "k_p", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "pMatiYhZV", "Sw1xxezLs", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapnb3wwy", "args", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "SVG", "css", "FramerWqPpenlCF", "withCSS", "WqPpenlCF_default", "addPropertyControls", "ControlType", "addFonts", "__FramerMetadata__"]
}
